-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 1.71 KB
/
package.json
File metadata and controls
78 lines (78 loc) · 1.71 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "@pokujs/c8",
"private": false,
"version": "1.2.0",
"description": "☔️ A Poku plugin for V8 code coverage using c8.",
"main": "./lib/index.js",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/pokujs/c8.git"
},
"homepage": "https://poku.io",
"bugs": {
"url": "https://github.com/pokujs/c8/issues"
},
"author": "https://github.com/wellwelwel",
"funding": {
"type": "github",
"url": "https://github.com/pokujs/c8?sponsor=1"
},
"files": [
"lib"
],
"engines": {
"node": ">=18.x.x"
},
"scripts": {
"pretest": "npm run build",
"test": "poku --sequential test/e2e",
"prebuild": "rm -rf lib",
"build": "tsc",
"lint": "prettier --check .",
"lint:fix": "prettier --write .github/workflows/*.yml .",
"update": "pu minor && npm i && (npm audit fix || true)",
"postupdate": "npm run lint:fix"
},
"dependencies": {
"c8": "^10.1.3",
"jsonc.min": "^1.1.2",
"toml.min": "^1.0.0",
"yaml.min": "^1.0.0"
},
"peerDependencies": {
"monocart-coverage-reports": "^2.12.9",
"poku": "^4.1.0"
},
"peerDependenciesMeta": {
"monocart-coverage-reports": {
"optional": true
}
},
"devDependencies": {
"@ianvs/prettier-plugin-sort-imports": "^4.7.1",
"@types/node": "^25.5.0",
"monocart-coverage-reports": "^2.12.9",
"packages-update": "^2.0.0",
"poku": "^4.1.0",
"prettier": "^3.8.1",
"tsx": "^4.21.0",
"typescript": "^6.0.2"
},
"publishConfig": {
"access": "public"
},
"keywords": [
"🐷",
"poku",
"pokujs",
"testing",
"plugin",
"coverage",
"c8",
"v8",
"istanbul",
"monocart",
"codecov"
]
}