-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
183 lines (183 loc) · 4.7 KB
/
package.json
File metadata and controls
183 lines (183 loc) · 4.7 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
{
"name": "@pokujs/coverage",
"private": false,
"version": "0.10.0",
"description": "☔️ The world's first V8 and JSC coverage tool to generate reports for Node.js, Bun, Deno, and TypeScript at the same time.",
"type": "module",
"main": "./lib/index.js",
"module": "./lib/index.js",
"types": "./lib/index.d.ts",
"exports": {
".": {
"types": "./lib/index.d.ts",
"import": "./lib/index.js",
"require": "./lib/index.cjs",
"default": "./lib/index.js"
},
"./vitest": {
"default": "./lib/integrations/vitest.js"
},
"./jest": {
"default": "./lib/integrations/jest.cjs"
}
},
"bin": {
"coverage": "./lib/bin/cli.js"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/pokujs/coverage.git"
},
"homepage": "https://poku.io/docs/documentation/helpers/coverage",
"bugs": {
"url": "https://github.com/pokujs/coverage/issues"
},
"author": "https://github.com/wellwelwel",
"funding": {
"type": "github",
"url": "https://github.com/sponsors/wellwelwel"
},
"files": [
"lib",
"resources"
],
"engines": {
"node": ">=18.x.x"
},
"scripts": {
"build": "tsx tools/build.mts",
"typecheck": "tsc && tsc -p test && tsc -p tools && tsc -p .claude/skills",
"build:snapshots": "cross-env UPDATE_SNAPSHOTS=1 npm test",
"postbuild:snapshots": "tsx tools/postbuild-snapshots.mts",
"lint": "prettier --check .",
"lint:types": "bash scripts/lint-types.sh",
"lint:fix": "prettier --write .github/workflows/*.yml .",
"pretest": "npm run build",
"test": "poku",
"test:node": "poku -t=\"node:\"",
"test:bun": "bun --bun poku -t=\"bun:\"",
"update": "pu && npm i && npm update && (npm audit fix || true)",
"postupdate": "npm run lint:fix",
"pg:node": "npm --prefix playground/node test",
"pg:vitest": "npm --prefix playground/vitest test",
"pg:mocha": "npm --prefix playground/mocha test",
"pg:ava": "npm --prefix playground/ava test",
"pg:jest": "npm --prefix playground/jest test",
"pg:poku:js:node": "npm --prefix playground/js run test:node",
"pg:poku:js:bun": "npm --prefix playground/js run test:bun",
"pg:poku:js:deno": "npm --prefix playground/js run test:deno",
"pg:poku:ts:node": "npm --prefix playground/ts run test:node",
"pg:poku:ts:bun": "npm --prefix playground/ts run test:bun",
"pg:poku:ts:deno": "npm --prefix playground/ts run test:deno",
"pg:deno": "cd playground/deno && deno task test",
"pg:bun": "npm --prefix playground/bun run test",
"pg:ts:node": "npm --prefix playground/ts-lab run test:node",
"pg:ts:bun": "npm --prefix playground/ts-lab run test:bun",
"pg:ts:deno": "npm --prefix playground/ts-lab run test:deno"
},
"peerDependencies": {
"poku": "^4.3.0",
"typescript": "^5.9.3 || ^6.0.3",
"vitest": "^4.0.0",
"jest": "^30.0.0"
},
"peerDependenciesMeta": {
"poku": {
"optional": true
},
"typescript": {
"optional": true
},
"vitest": {
"optional": true
},
"jest": {
"optional": true
}
},
"dependencies": {
"acorn": "^8.16.0",
"jsonc.min": "^1.1.2",
"toml.min": "^1.0.0",
"yaml.min": "^1.0.0"
},
"devDependencies": {
"@ianvs/prettier-plugin-sort-imports": "^4.7.1",
"@jest/reporters": "^30.4.1",
"@jest/test-result": "^30.4.1",
"@jest/types": "^30.4.1",
"@jridgewell/trace-mapping": "^0.3.31",
"@sveltejs/acorn-typescript": "^1.0.9",
"@types/lcov-parse": "^1.0.2",
"@types/node": "^25.6.2",
"cross-env": "^10.1.0",
"domhandler": "^6.0.1",
"dts-bundle-generator": "^9.5.1",
"esbuild": "^0.28.0",
"fast-xml-parser": "^5.7.3",
"htmlparser2": "^12.0.0",
"jest-resolve": "^30.4.1",
"lcov-parse": "^1.0.0",
"packages-update": "^2.0.0",
"poku": "^4.3.0",
"prettier": "^3.8.3",
"tsx": "^4.21.0",
"typescript": "^6.0.3",
"vitest": "^4.1.5"
},
"publishConfig": {
"access": "public"
},
"keywords": [
"🐷",
"poku",
"pokujs",
"testing",
"plugin",
"coverage",
"v8",
"jsc",
"javascriptcore",
"lcov",
"istanbul",
"javascript",
"node",
"bun",
"deno",
"typescript",
"tsx",
"jsx",
"cross-runtime",
"cross-platform",
"interoperability",
"codecov",
"codacy",
"sonar",
"lcovonly",
"text-lcov",
"text-summary",
"teamcity",
"json",
"json-summary",
"cobertura",
"clover",
"none",
"text",
"yaml",
"yml",
"toml",
"jsonc",
"nyc",
"c8",
"monocart-coverage-reports",
"monocart",
"one-double-zero",
"vitest",
"jest",
"mocha",
"ava",
"type",
"types"
]
}