-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
65 lines (65 loc) · 1.49 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
{
"name": "c8",
"version": "3.5.0",
"description": "output coverage reports using Node.js' built in coverage",
"main": "index.js",
"bin": "./bin/c8.js",
"repository": {
"type": "git",
"url": "[email protected]:bcoe/c8.git"
},
"scripts": {
"test": "node ./bin/c8.js --reporter=html --reporter=text mocha --timeout=4000 ./test/*.js",
"test:snap": "CHAI_JEST_SNAPSHOT_UPDATE_ALL=true npm test",
"posttest": "standard",
"coverage": "./bin/c8.js report --reporter=html --reporter=text-lcov | coveralls",
"release": "standard-version"
},
"standard": {
"ignore": [
"test/fixtures"
]
},
"keywords": [
"coverage",
"v8",
"test",
"istanbul",
"profiler",
"inspector",
"node"
],
"author": "Ben Coe <[email protected]>",
"license": "ISC",
"dependencies": {
"@bcoe/v8-coverage": "^0.1.0",
"find-up": "^3.0.0",
"foreground-child": "^1.5.6",
"furi": "^1.3.0",
"istanbul-lib-coverage": "^2.0.1",
"istanbul-lib-report": "^2.0.1",
"istanbul-reports": "^2.0.0",
"rimraf": "^2.6.2",
"test-exclude": "^5.0.0",
"uuid": "^3.3.2",
"v8-to-istanbul": "^2.0.4",
"yargs": "^13.1.0",
"yargs-parser": "^10.1.0"
},
"devDependencies": {
"chai": "^4.2.0",
"chai-jest-snapshot": "^2.0.0",
"coveralls": "^3.0.3",
"mocha": "^5.2.0",
"standard": "^12.0.1",
"standard-version": "^5.0.2"
},
"engines": {
"node": ">=10.12.0"
},
"files": [
"lib",
"bin",
"LICENSE"
]
}