forked from istanbuljs/nyc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
106 lines (106 loc) · 2.7 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
{
"name": "nyc",
"version": "5.1.0",
"description": "a code coverage tool that works well with subprocesses.",
"main": "index.js",
"scripts": {
"pretest": "standard",
"test": "npm run cover",
"clean": "rimraf ./.nyc_output ./node_modules/.cache ./.self_coverage ./test/fixtures/.nyc_output ./test/fixtures/node_modules/.cache *covered.js ./lib/*covered.js",
"build": "node ./build-tests",
"instrument": "node ./build-self-coverage.js",
"run-tests": "tap --no-cov -b ./test/build/*.js ./test/src/source-map-cache.js",
"report": "istanbul report --include=./.self_coverage/*.json lcov text",
"cover": "npm run clean && npm run build && npm run instrument && npm run run-tests && npm run report",
"dev": "npm run clean && npm run build && npm run run-tests"
},
"bin": {
"nyc": "./bin/nyc.js"
},
"files": [
"index.js",
"bin/*.js",
"lib/*.js",
"!**/*covered.js"
],
"config": {
"nyc": {
"exclude": [
"node_modules",
"bin",
"coverage",
"test/fixtures/coverage.js",
"test/build/*",
"test/nyc-test.js",
"test/source-map-cache.js",
"index.covered.js",
"test/fixtures/_generateCoverage.js"
]
}
},
"standard": {
"ignore": [
"**/fixtures/**",
"**/test/build/*"
]
},
"keywords": [
"coverage",
"reporter",
"subprocess",
"testing"
],
"contributors": [
{
"name": "Isaac Schlueter",
"website": "https://github.com/isaacs"
},
{
"name": "Ollie Buck",
"website": "https://github.com/shackpank"
}
],
"author": "Ben Coe <[email protected]>",
"license": "ISC",
"dependencies": {
"append-transform": "^0.2.0",
"arrify": "^1.0.1",
"caching-transform": "^1.0.0",
"convert-source-map": "^1.1.2",
"foreground-child": "^1.3.0",
"glob": "^6.0.2",
"istanbul": "^0.4.1",
"md5-hex": "^1.2.0",
"micromatch": "~2.1.6",
"mkdirp": "^0.5.0",
"resolve-from": "^2.0.0",
"rimraf": "^2.5.0",
"signal-exit": "^2.1.1",
"source-map": "^0.5.3",
"spawn-wrap": "^1.1.0",
"strip-bom": "^2.0.0",
"yargs": "^3.15.0"
},
"devDependencies": {
"any-path": "^1.3.0",
"chai": "^3.0.0",
"coveralls": "^2.11.4",
"forking-tap": "^0.1.1",
"is-windows": "^0.1.0",
"lodash": "^3.10.0",
"newline-regex": "^0.2.1",
"sanitize-filename": "^1.5.3",
"sinon": "^1.15.3",
"source-map-fixtures": "^0.4.0",
"source-map-support": "^0.4.0",
"split-lines": "^1.0.0",
"standard": "^5.2.1",
"tap": "^2.3.5",
"win-spawn": "^2.0.0",
"zero-fill": "^2.2.1"
},
"repository": {
"type": "git",
"url": "[email protected]:bcoe/nyc.git"
}
}