-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
42 lines (42 loc) · 1.28 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
{
"name": "istanbul-diff",
"version": "2.0.0",
"description": "Diffs istanbul json summary coverage reports",
"main": "lib/index.js",
"bin": "bin/cli.js",
"dependencies": {
"chalk": "^2.4.2",
"jsondiffpatch": "^0.3.11",
"lodash": "^4.17.4",
"lodash-deep": "^2.0.0",
"minimist": "^1.2.0",
"nicejob": "^1.0.0",
"omit-deep-lodash": "^1.1.4"
},
"devDependencies": {
"chai": "^4.2.0",
"mocha": "^6.1.4"
},
"scripts": {
"test": "mocha",
"test-cover": "istanbul cover --report html --report json-summary node_modules/.bin/_mocha",
"sample-inc": "./bin/cli.js test/data/coverage-summary.2.json test/data/coverage-summary.1.json",
"sample-dec": "./bin/cli.js test/data/coverage-summary.1.json test/data/coverage-summary.2.json --nofail",
"sample-same": "./bin/cli.js test/data/coverage-summary.1.json test/data/coverage-summary.1.json",
"sample-single": "./bin/cli.js test/data/coverage-summary.1.json"
},
"keywords": [
"istanbul",
"coverage"
],
"repository": {
"type": "git",
"url": "git+https://github.com/moos/istanbul-diff.git"
},
"author": "Moos",
"license": "MIT",
"bugs": {
"url": "https://github.com/moos/istanbul-diff/issues"
},
"homepage": "https://github.com/moos/istanbul-diff#readme"
}