-
Notifications
You must be signed in to change notification settings - Fork 91
/
package.json
75 lines (75 loc) · 1.75 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
{
"name": "c8",
"version": "10.1.2",
"description": "output coverage reports using Node.js' built in coverage",
"main": "./index.js",
"types": "./index.d.ts",
"bin": "./bin/c8.js",
"repository": {
"type": "git",
"url": "[email protected]:bcoe/c8.git"
},
"scripts": {
"test": "cross-env TS_NODE_SKIP_PROJECT=true node ./bin/c8.js mocha --timeout=10000 ./test/*.js",
"coverage": "cross-env TS_NODE_SKIP_PROJECT=true node ./bin/c8.js --check-coverage mocha --timeout=10000 ./test/*.js",
"test:snap": "cross-env CHAI_JEST_SNAPSHOT_UPDATE_ALL=true npm test",
"fix": "standard --fix",
"posttest": "standard"
},
"standard": {
"ignore": [
"test/fixtures"
]
},
"keywords": [
"coverage",
"v8",
"test",
"istanbul",
"profiler",
"inspector",
"node"
],
"author": "Ben Coe <[email protected]>",
"license": "ISC",
"dependencies": {
"@bcoe/v8-coverage": "^0.2.3",
"@istanbuljs/schema": "^0.1.3",
"find-up": "^5.0.0",
"foreground-child": "^3.1.1",
"istanbul-lib-coverage": "^3.2.0",
"istanbul-lib-report": "^3.0.1",
"istanbul-reports": "^3.1.6",
"test-exclude": "^7.0.1",
"v8-to-istanbul": "^9.0.0",
"yargs": "^17.7.2",
"yargs-parser": "^21.1.1"
},
"devDependencies": {
"@types/node": "^20.0.0",
"chai": "^4.3.6",
"chai-jest-snapshot": "^2.0.0",
"cross-env": "^7.0.3",
"mocha": "^9.2.2",
"standard": "^16.0.4",
"ts-node": "^10.7.0",
"typescript": "^5.0.0"
},
"peerDependencies": {
"monocart-coverage-reports": "^2"
},
"peerDependenciesMeta": {
"monocart-coverage-reports": {
"optional": true
}
},
"engines": {
"node": ">=18"
},
"files": [
"index.js",
"index.d.ts",
"lib",
"bin"
]
}