forked from istanbuljs/nyc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
108 lines (108 loc) · 2.67 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
{
"name": "nyc",
"version": "15.1.0",
"description": "the Istanbul command line interface",
"main": "index.js",
"scripts": {
"lint": "standard",
"pretest": "npm run lint && npm run clean && npm run instrument",
"test": "tap",
"snap": "npm test -- --snapshot",
"posttest": "npm run report",
"clean": "node ./npm-run-clean.js",
"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"
],
"standard": {
"ignore": [
"/tap-snapshots/",
"**/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": {
"@istanbuljs/load-nyc-config": "^1.0.0",
"@istanbuljs/schema": "^0.1.2",
"caching-transform": "^4.0.0",
"convert-source-map": "^1.7.0",
"decamelize": "^1.2.0",
"find-cache-dir": "^3.2.0",
"find-up": "^4.1.0",
"foreground-child": "^2.0.0",
"get-package-type": "^0.1.0",
"glob": "^7.1.6",
"istanbul-lib-coverage": "^3.0.0",
"istanbul-lib-hook": "^3.0.0",
"istanbul-lib-instrument": "^4.0.0",
"istanbul-lib-processinfo": "^2.0.2",
"istanbul-lib-report": "^3.0.0",
"istanbul-lib-source-maps": "^4.0.0",
"istanbul-reports": "^3.0.2",
"make-dir": "^3.0.0",
"node-preload": "^0.2.1",
"p-map": "^3.0.0",
"process-on-spawn": "^1.0.0",
"resolve-from": "^5.0.0",
"rimraf": "^3.0.0",
"signal-exit": "^3.0.2",
"spawn-wrap": "^2.0.0",
"test-exclude": "^6.0.0",
"yargs": "^15.0.2"
},
"devDependencies": {
"any-path": "^1.3.0",
"coveralls": "^3.0.9",
"is-windows": "^1.0.2",
"requirejs": "^2.3.6",
"source-map-support": "^0.5.16",
"standard": "^14.3.1",
"standard-version": "^9.0.0",
"tap": "^14.10.5",
"uuid": "^3.4.0",
"which": "^2.0.2"
},
"engines": {
"node": ">=8.9"
},
"homepage": "https://istanbul.js.org/",
"bugs": "https://github.com/istanbuljs/nyc/issues",
"repository": {
"type": "git",
"url": "[email protected]:istanbuljs/nyc.git"
}
}