-
Notifications
You must be signed in to change notification settings - Fork 92
/
Copy pathpackage.json
56 lines (56 loc) · 1.16 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
{
"name": "c8",
"version": "2.0.0",
"description": "collect test coverage using v8's inspector",
"main": "index.js",
"bin": "./bin/c8.js",
"scripts": {
"test": "./bin/c8.js --reporter=html --reporter=text mocha ./test/*.js",
"posttest": "standard",
"release": "standard-version"
},
"standard": {
"ignore": [
"test/fixtures"
]
},
"keywords": [
"coverage",
"v8",
"test",
"istanbul",
"profiler",
"inspector"
],
"author": "Ben Coe <[email protected]>",
"license": "ISC",
"dependencies": {
"find-up": "^3.0.0",
"foreground-child": "^1.5.6",
"istanbul-lib-coverage": "^2.0.1",
"istanbul-lib-report": "^2.0.1",
"istanbul-reports": "^2.0.0",
"mkdirp": "^0.5.1",
"rimraf": "^2.6.2",
"test-exclude": "^5.0.0",
"uuid": "^3.3.2",
"v8-coverage-merge": "^1.1.2",
"v8-to-istanbul": "^1.2.0",
"yargs": "^12.0.2",
"yargs-parser": "^10.1.0"
},
"devDependencies": {
"chai": "^4.1.2",
"mocha": "^5.2.0",
"standard": "^12.0.1",
"standard-version": "^4.4.0"
},
"engines": {
"node": ">=10.10.0"
},
"files": [
"lib",
"bin",
"LICENSE"
]
}