-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.24 KB
/
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
33
34
35
36
37
38
39
40
41
42
43
44
45
{
"name": "@vendii/circleci-coverage-github-reporter",
"version": "1.0.6",
"description": "Report Jest/Istanbul coverage statistics from CircleCI to GitHub",
"main": "index.js",
"repository": "https://github.com/vendii-tech/circleci-coverage-github-reporter",
"author": "Rud Wangrungarun <[email protected]>",
"license": "MIT",
"bin": {
"circleci-coverage-github-reporter": "./src/cli.js"
},
"scripts": {
"lint": "standard",
"test": "cross-env NODE_ENV=test jest",
"test-dev": "cross-env NODE_ENV=test jest --watch --onlyChanged",
"test-ci": "cross-env NODE_ENV=test TEST_REPORT_PATH=coverage jest --coverage --ci --silent",
"precommit": "lint-staged"
},
"lint-staged": {
"*.js": [
"standard"
]
},
"dependencies": {
"args": "^3.0.8",
"circle-github-bot": "^0.4.0",
"cross-env": "^5.1.1",
"istanbul-lib-coverage": "^1.1.1",
"istanbul-lib-report": "^1.1.2",
"pad": "^2.0.3"
},
"devDependencies": {
"husky": "^0.14.3",
"jest": "^22.0.0",
"jest-junit-reporter": "^1.1.0",
"lint-staged": "^6.0.0",
"standard": "^10.0.3"
},
"jest": {
"collectCoverageFrom": [
"src/**/*.js"
],
"testResultsProcessor": "./node_modules/jest-junit-reporter"
}
}