-
-
Notifications
You must be signed in to change notification settings - Fork 362
/
Copy pathpackage.json
162 lines (162 loc) · 4.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
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
{
"name": "nyc",
"version": "10.1.1",
"description": "the Istanbul command line interface",
"main": "index.js",
"scripts": {
"bundle": "bundle-dependencies update",
"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 -t120 --no-cov -b ./test/build/*.js ./test/src/nyc-bin.js ./test/src/process-args.js",
"report": "node ./bin/nyc --temp-directory ./.self_coverage/ -r text -r lcov report",
"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",
"release": "standard-version"
},
"bin": {
"nyc": "./bin/nyc.js"
},
"files": [
"index.js",
"bin/*.js",
"lib/*.js",
"lib/commands/*.js",
"lib/instrumenters/*.js",
"!**/*covered.js"
],
"nyc": {
"exclude": [
"node_modules",
"bin",
"coverage",
"test/fixtures/coverage.js",
"test/build/*",
"test/nyc-test.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": "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",
"arrify": "^1.0.1",
"caching-transform": "^1.0.0",
"convert-source-map": "^1.3.0",
"debug-log": "^1.0.1",
"default-require-extensions": "^1.0.0",
"find-cache-dir": "^0.1.1",
"find-up": "^1.1.2",
"foreground-child": "^1.5.3",
"glob": "^7.0.6",
"istanbul-lib-coverage": "^1.0.1",
"istanbul-lib-hook": "^1.0.0",
"istanbul-lib-instrument": "^1.4.2",
"istanbul-lib-report": "^1.0.0-alpha.3",
"istanbul-lib-source-maps": "^1.1.0",
"istanbul-reports": "^1.0.0",
"md5-hex": "^1.2.0",
"merge-source-map": "^1.0.2",
"micromatch": "^2.3.11",
"mkdirp": "^0.5.0",
"resolve-from": "^2.0.0",
"rimraf": "^2.5.4",
"signal-exit": "^3.0.1",
"spawn-wrap": "1.2.4",
"test-exclude": "^3.3.0",
"yargs": "^6.6.0",
"yargs-parser": "^4.0.2"
},
"devDependencies": {
"any-path": "^1.3.0",
"bundle-dependencies": "^1.0.2",
"chai": "^3.0.0",
"coveralls": "^2.11.11",
"exists-sync": "0.0.4",
"forking-tap": "^0.1.1",
"is-windows": "^1.0.0",
"lodash": "^4.12.0",
"newline-regex": "^0.2.1",
"requirejs": "^2.3.0",
"sanitize-filename": "^1.5.3",
"sinon": "^1.15.3",
"source-map-support": "^0.4.6",
"split-lines": "^1.0.0",
"standard": "^8.0.0",
"standard-version": "^4.0.0",
"tap": "^9.0.3",
"which": "^1.2.11",
"zero-fill": "^2.2.3"
},
"repository": {
"type": "git",
"url": "[email protected]:istanbuljs/nyc.git"
},
"bundledDependencies": [
"archy",
"arrify",
"caching-transform",
"convert-source-map",
"debug-log",
"default-require-extensions",
"find-cache-dir",
"find-up",
"foreground-child",
"glob",
"istanbul-lib-coverage",
"istanbul-lib-hook",
"istanbul-lib-instrument",
"istanbul-lib-report",
"istanbul-lib-source-maps",
"istanbul-reports",
"md5-hex",
"merge-source-map",
"micromatch",
"mkdirp",
"resolve-from",
"rimraf",
"signal-exit",
"spawn-wrap",
"test-exclude",
"yargs",
"yargs-parser"
],
"greenkeeper": {
"ignore": [
"find-up"
]
}
}