forked from istanbuljs/v8-to-istanbul
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.09 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
{
"name": "v8-to-istanbul",
"version": "9.2.0",
"description": "convert from v8 coverage format to istanbul's format",
"main": "index.js",
"types": "index.d.ts",
"scripts": {
"fix": "standard --fix",
"snapshot": "TAP_SNAPSHOT=1 tap test/*.js",
"test": "c8 --reporter=html --reporter=text tap --no-coverage test/*.js",
"posttest": "standard",
"coverage": "c8 report --check-coverage"
},
"repository": "istanbuljs/v8-to-istanbul",
"keywords": [
"istanbul",
"v8",
"coverage"
],
"standard": {
"ignore": [
"**/test/fixtures"
]
},
"author": "Ben Coe <[email protected]>",
"license": "ISC",
"dependencies": {
"@jridgewell/trace-mapping": "^0.3.12",
"@types/istanbul-lib-coverage": "^2.0.1",
"convert-source-map": "^2.0.0"
},
"devDependencies": {
"@types/node": "^20.0.0",
"c8": "^7.2.1",
"semver": "^7.3.2",
"should": "13.2.3",
"source-map": "^0.7.3",
"standard": "^17.0.0",
"tap": "^16.0.0"
},
"engines": {
"node": ">=10.12.0"
},
"files": [
"lib/*.js",
"index.js",
"index.d.ts"
]
}