forked from adrian-codecov/another-test
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
32 lines (32 loc) · 754 Bytes
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
{
"name": "test-repo",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo hello",
"testOne": "jest ./flag1",
"testTwo": "jest ./flag2",
"testFrontend": "jest ./frontend",
"testWords": "jest ./words",
"testTemples": "jest ./temples",
"testAll": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/adrian-codecov/test-repo.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/adrian-codecov/test-repo/issues"
},
"homepage": "https://github.com/adrian-codecov/test-repo#readme",
"dependencies": {
"jest": "^27.0.6"
},
"jest": {
"collectCoverage": true,
"coverageDirectory": "./coverage/"
}
}