-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.3 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.3 KB
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
{
"name": "testem-code-coverage",
"version": "0.2.0",
"description": "Code coverage middleware for testem",
"keywords": [
"coverage",
"quality",
"testem",
"testing",
"tests"
],
"license": "MIT",
"author": "NullVoxPopuli",
"repository": {
"type": "git",
"url": "git@github.com:NullVoxPopuli/testem-code-coverage.git"
},
"files": [
"src"
],
"type": "module",
"imports": {
"#utils": "./src/utils.js",
"#v8/*": "./src/v8/*"
},
"exports": {
".": "./src/testem/middleware.js",
"./runtime": "./src/testem/runtime.js"
},
"scripts": {
"format": "oxfmt",
"format:check": "oxfmt --check",
"lint": "oxlint && pnpm format:check",
"lint:fix": "oxlint --fix && oxfmt",
"test": "vitest run",
"test:watch": "vitest"
},
"dependencies": {
"@jridgewell/trace-mapping": "^0.3.31",
"acorn": "^8.16.0",
"chrome-remote-interface": "^0.34.0",
"istanbul-lib-coverage": "^3.2.2",
"istanbul-lib-report": "^3.0.1",
"istanbul-reports": "^3.2.0",
"picomatch": "^4.0.3",
"v8-to-istanbul": "^9.3.0"
},
"devDependencies": {
"oxfmt": "latest",
"oxlint": "latest",
"release-plan": "^0.17.4",
"vitest": "^4.0.18"
},
"engines": {
"node": "^22.19.0 || ^24.0.0"
},
"packageManager": "pnpm@10.31.0"
}