-
-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
120 lines (120 loc) · 3.5 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
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
{
"name": "poku",
"version": "2.7.1",
"description": "🐷 Poku makes testing easy for Node.js, Bun, Deno, and you at the same time.",
"main": "./lib/modules/index.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": ">=8.17.0",
"bun": ">=1.0.0",
"deno": ">=1.30.0",
"typescript": ">=4.7.2"
},
"scripts": {
"test": "npm run test:parallel && npm run test:sequential",
"test:bun": "npm run test:bun:parallel && npm run test:bun:sequential",
"test:deno": "npm run test:deno:parallel && npm run test:deno:sequential",
"test:sequential": "tsx src/bin/index.ts test/unit test/integration test/e2e",
"test:parallel": "tsx src/bin/index.ts -p test/unit test/integration test/e2e",
"test:bun:sequential": "bun src/bin/index.ts --bun test/unit test/integration test/e2e",
"test:bun:parallel": "bun src/bin/index.ts --bun -p test/unit test/integration test/e2e",
"test:deno:sequential": "tsx src/bin/index.ts --deno --denoAllow=all test/unit test/integration test/e2e",
"test:deno:parallel": "tsx src/bin/index.ts --deno --denoAllow=all -p test/unit test/integration test/e2e",
"pretest:c8": "tsx tools/build/c8-file.ts",
"test:c8": "c8 --experimental-monocart tsx test/c8.test.ts",
"posttest:c8": "rm -rf ./.nycrc.json",
"test:docker:node": "tsx 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/node.ts && 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 && npm run build:deno && chmod +x lib/bin/index.js",
"build:deno": "tsc -p tsconfig.mjs.json",
"postbuild:deno": "tsx tools/build/check-deno-polyfill.ts",
"lint": "npx @biomejs/biome lint && prettier --check .",
"lint:fix": "npx @biomejs/biome lint --write && prettier --write .github/workflows/*.yml .",
"update": "pu minor && npm i && (npm audit fix || true)",
"postupdate": "npm run lint:fix",
"benchmark": "cd benchmark && npm ci && npm start"
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@types/node": "^22.9.3",
"c8": "^10.1.2",
"jsonc.min": "^1.1.0",
"monocart-coverage-reports": "^2.11.3",
"packages-update": "^2.0.0",
"prettier": "^3.3.3",
"tsx": "4.19.2",
"typescript": "^5.7.2"
},
"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"
]
}