-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
49 lines (49 loc) · 1.29 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-coverage-meta",
"version": "0.0.0",
"private": true,
"description": "Meta package for the `v8-coverage` packages.",
"author": "Charles Samborski <[email protected]> (https://demurgos.net)",
"license": "MIT",
"repository": {
"type": "git",
"url": "git://github.com/demurgos/v8-coverage.git"
},
"scripts": {
"clean": "rimraf \"./@(ts|node)/@(lib|main|test)\"",
"build:test": "tsc --build test.tsconfig.json",
"test": "yarn run build:test && c8 -- mocha \"./@(ts|node)/test/**/*.spec.mjs\"",
"test:rust": "cargo tarpaulin --count --out lcov --out html --output-dir ./coverage/rust || cargo test"
},
"engines": {
"node": "^12.20.0 || >=14.13.1"
},
"packageManager": "[email protected]",
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.10.2",
"@typescript-eslint/parser": "^5.10.2",
"benchmark": "^2.1.4",
"c8": "^7.11.0",
"codecov": "^3.8.3",
"eslint": "^8.8.0",
"eslint-plugin-simple-import-sort": "^7.0.0",
"fs-extra": "^10.0.0",
"mocha": "^9.2.0",
"replace-ext": "^2.0.0",
"rimraf": "^3.0.2",
"typescript": "^4.6.0-dev.20220206"
},
"workspaces": {
"packages": [
"packages/*",
"node",
"ts"
]
},
"c8": {
"reporter": [
"lcovonly",
"text"
]
}
}