-
-
Notifications
You must be signed in to change notification settings - Fork 359
/
package.json
123 lines (123 loc) · 3.05 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
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
{
"name": "nyc",
"version": "14.1.1",
"description": "the Istanbul command line interface",
"main": "index.js",
"scripts": {
"lint": "standard",
"pretest": "npm run lint && npm run clean && npm run instrument",
"test": "tap -t360 --no-cov -b test/*.js",
"snap": "cross-env TAP_SNAPSHOT=1 npm test",
"posttest": "npm run report",
"clean": "rimraf ./.nyc_output ./node_modules/.cache ./.self_coverage ./test/fixtures/.nyc_output ./test/fixtures/node_modules/.cache ./self-coverage",
"instrument": "node ./build-self-coverage.js",
"report": "node ./bin/nyc report --temp-dir ./.self_coverage/ -r text -r lcov",
"release": "standard-version"
},
"bin": {
"nyc": "./bin/nyc.js"
},
"files": [
"index.js",
"bin/*.js",
"lib/**/*.js"
],
"nyc": {
"exclude": [
"node_modules",
"coverage",
"self-coverage",
"test/fixtures/coverage.js",
"test/build/*",
"test/src/*",
"test/nyc.js",
"test/process-args.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": "Mark Wubben",
"website": "https://novemberborn.net"
},
{
"name": "James Talmage",
"website": "https://twitter.com/jamestalmage"
},
{
"name": "Krishnan Anantheswaran",
"website": "https://github.com/gotwarlost"
}
],
"author": "Ben Coe <[email protected]>",
"license": "ISC",
"dependencies": {
"archy": "^1.0.0",
"caching-transform": "^3.0.2",
"convert-source-map": "^1.6.0",
"cp-file": "^6.2.0",
"find-cache-dir": "^2.1.0",
"find-up": "^3.0.0",
"foreground-child": "^1.5.6",
"glob": "^7.1.3",
"istanbul-lib-coverage": "^2.0.5",
"istanbul-lib-hook": "^2.0.7",
"istanbul-lib-instrument": "^3.3.0",
"istanbul-lib-report": "^2.0.8",
"istanbul-lib-source-maps": "^3.0.6",
"istanbul-reports": "^2.2.4",
"js-yaml": "^3.13.1",
"make-dir": "^2.1.0",
"merge-source-map": "^1.1.0",
"resolve-from": "^4.0.0",
"rimraf": "^2.6.3",
"signal-exit": "^3.0.2",
"spawn-wrap": "^1.4.2",
"test-exclude": "^5.2.3",
"uuid": "^3.3.2",
"yargs": "^13.2.2",
"yargs-parser": "^13.0.0"
},
"devDependencies": {
"any-path": "^1.3.0",
"chai": "^4.2.0",
"coveralls": "^3.0.3",
"cross-env": "^5.2.0",
"is-windows": "^1.0.2",
"lodash": "^4.17.11",
"newline-regex": "^0.2.1",
"pify": "^4.0.1",
"requirejs": "^2.3.6",
"sanitize-filename": "^1.6.1",
"source-map-support": "^0.5.12",
"standard": "^12.0.1",
"standard-version": "^5.0.2",
"strip-indent": "^2.0.0",
"tap": "^12.6.5",
"which": "^1.3.1",
"zero-fill": "^2.2.3"
},
"engines": {
"node": ">=6"
},
"repository": {
"type": "git",
"url": "[email protected]:istanbuljs/nyc.git"
}
}