-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
49 lines (49 loc) · 1.36 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
46
47
48
49
{
"name": "coverage-on-diff",
"version": "0.0.3",
"description": "A tool to get code coverage on new lines added based on a diff",
"main": "index.js",
"scripts": {
"eslint": "node ./node_modules/eslint/bin/eslint .",
"test": "npm run eslint && npm run test:mocha",
"test:mocha": "./node_modules/nyc/bin/nyc.js --reporter=text-summary ./node_modules/.bin/mocha 'test/**/test*.js'",
"prepare": "./node_modules/nyc/bin/nyc.js --check-coverage --lines 100 --functions 100 --branches 100 npm test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/classy-org/coverage-on-diff.git"
},
"bin": {
"coverageOnDiff": "./bin/cli.js"
},
"author": "[email protected]",
"license": "MIT",
"dependencies": {
"chalk": "^2.4.1",
"fs": "0.0.1-security",
"lodash": "^4.17.11",
"parse-diff": "^0.5.1",
"path": "^0.12.7",
"table": "^5.1.0",
"yargs": "^17.1.1"
},
"devDependencies": {
"eslint": "^5.9.0",
"eslint-config-google": "^0.11.0",
"mocha": "^9.1.0",
"nyc": "^15.1.0",
"rewire": "^4.0.1",
"should": "^13.2.3",
"should-sinon": "0.0.6",
"sinon": "^7.1.1"
},
"bugs": {
"url": "https://github.com/classy-org/coverage-on-diff/issues"
},
"homepage": "https://github.com/classy-org/coverage-on-diff#readme",
"keywords": [
"coverage",
"diff",
"test"
]
}