-
-
Notifications
You must be signed in to change notification settings - Fork 358
/
Copy pathpackage.json
94 lines (94 loc) · 2.38 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
{
"name": "nyc",
"version": "5.0.0",
"description": "a code coverage tool that works well with subprocesses.",
"main": "index.js",
"scripts": {
"clean": "rm -rf ./.nyc_output && rm -rf ./test/fixtures/.nyc_output && rm -f ./index.covered.js ./lib/source-map-cache.covered.js && rm -rf ./self_coverage",
"build": "node ./build-tests",
"pretest": "standard",
"test": "npm run cover",
"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",
"instrument": "node ./instrument-index.js",
"report": "istanbul report --include=self_coverage/*.json lcov text",
"run-tests": "tap -b ./test/built-*.js ./test/source-map-cache.js"
},
"bin": {
"nyc": "./bin/nyc.js"
},
"config": {
"nyc": {
"exclude": [
"node_modules",
"bin",
"coverage",
"test/fixtures/coverage.js",
"test/built-*",
"test/nyc-test.js",
"test/source-map-cache.js",
"index.covered.js",
"test/fixtures/_generateCoverage.js"
]
}
},
"standard": {
"ignore": [
"**/fixtures/**",
"**/build-tests.js",
"**/test/built-*"
]
},
"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 <ben@npmjs.com>",
"license": "ISC",
"dependencies": {
"convert-source-map": "^1.1.2",
"foreground-child": "^1.3.0",
"glob": "^5.0.14",
"istanbul": "^0.4.1",
"lodash": "^3.10.0",
"micromatch": "~2.1.6",
"mkdirp": "^0.5.0",
"rimraf": "^2.4.2",
"signal-exit": "^2.1.1",
"source-map": "^0.5.3",
"spawn-wrap": "^1.0.1",
"strip-bom": "^2.0.0",
"yargs": "^3.15.0"
},
"devDependencies": {
"chai": "^3.0.0",
"coveralls": "^2.11.4",
"del": "^2.2.0",
"inline-source-map-comment": "^1.0.5",
"recast": "^0.10.39",
"sinon": "^1.15.3",
"source-map-fixtures": "^0.2.0",
"source-map-support": "^0.4.0",
"standard": "^5.2.1",
"tap": "^1.3.4"
},
"bundleDependencies": [
"spawn-wrap"
],
"repository": {
"type": "git",
"url": "git@github.com:bcoe/nyc.git"
}
}