-
-
Notifications
You must be signed in to change notification settings - Fork 27
Expand file tree
/
Copy pathpackage.json
More file actions
121 lines (121 loc) · 3.06 KB
/
package.json
File metadata and controls
121 lines (121 loc) · 3.06 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
{
"name": "poku",
"version": "4.1.0",
"description": "🐷 Poku makes testing easy for Node.js, Bun, Deno, and you at the same time.",
"main": "./lib/modules/index.js",
"exports": {
".": "./lib/modules/index.js",
"./plugins": "./lib/modules/plugins.js"
},
"license": "MIT",
"bin": {
"poku": "./lib/bin/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/wellwelwel/poku.git"
},
"homepage": "https://poku.io",
"bugs": {
"url": "https://github.com/wellwelwel/poku/issues"
},
"author": "https://github.com/wellwelwel",
"funding": {
"type": "github",
"url": "https://github.com/sponsors/wellwelwel"
},
"files": [
"lib"
],
"engines": {
"node": ">=16.x.x",
"bun": ">=1.x.x",
"deno": ">=2.x.x",
"typescript": ">=5.x.x"
},
"scripts": {
"test": "tsx src/bin/index.ts test/unit test/integration test/e2e",
"test:bun": "bun src/bin/index.ts test/unit test/integration test/e2e",
"test:deno": "deno run -A src/bin/index.ts --denoAllow=all test/unit test/integration test/e2e",
"pretest:coverage": "tsx tools/build/c8-file.ts",
"test:coverage": "c8 --experimental-monocart npm test",
"posttest:coverage": "rm -rf ./.nycrc.json",
"test:docker:node": "bun test/ci.test.ts",
"clear": "rm -rf lib ci coverage .temp test-src test-tests",
"prebuild": "npm run clear",
"build": "tsc && cd test && tsc",
"postbuild": "tsx tools/compatibility/comments.ts && tsx tools/build/version.ts && cp test/__fixtures__/e2e/server/package.json ci/test/__fixtures__/e2e/server/package.json && rm -f ./lib/@types/*.js ./lib/bin/*.ts && chmod +x lib/bin/index.js",
"lint": "biome lint --error-on-warnings && prettier --check .",
"lint:fix": "biome lint --write && prettier --write .github/workflows/*.yml . && npm --prefix website run lint:fix",
"update": "pu && npm i && npm update && (npm audit fix || true)",
"postupdate": "npm run lint:fix",
"benchmark": "npm --prefix benchmark start"
},
"devDependencies": {
"@biomejs/biome": "^2.4.6",
"@ianvs/prettier-plugin-sort-imports": "^4.7.1",
"@pokujs/docker": "^1.0.0",
"@types/node": "^25.3.3",
"c8": "^11.0.0",
"jsonc.min": "^1.1.0",
"monocart-coverage-reports": "^2.12.9",
"packages-update": "^2.0.0",
"prettier": "^3.8.1",
"tsx": "^4.21.0",
"typescript": "^5.9.3"
},
"overrides": {
"yargs": "^18.0.0"
},
"keywords": [
"🐷",
"test",
"runner",
"assert",
"assertion",
"testing",
"node",
"bun",
"deno",
"typescript",
"tsx",
"run",
"cli",
"unit",
"integration",
"e2e",
"end-to-end",
"tdd",
"bdd",
"watch",
"jest",
"mocha",
"chai",
"vitest",
"ava",
"uvu",
"tap",
"tape",
"karma",
"supertest",
"dotenv",
"filter",
"exclude",
"list",
"files",
"env",
"kill",
"container",
"process",
"port",
"cross-platform",
"commonjs",
"cjs",
"esmodules",
"esm",
"mjs",
"runtime",
"poku",
"pokujs"
]
}