-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 1.81 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 1.81 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
{
"name": "@pokujs/docker",
"version": "1.0.0",
"private": false,
"description": "🐳 A minimal API to assist tests that require containers or tests that run inside containers.",
"main": "./lib/index.js",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/pokujs/docker.git"
},
"homepage": "https://poku.io/docs/documentation/helpers/containers",
"bugs": {
"url": "https://github.com/pokujs/docker/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": ">=1.x.x",
"typescript": ">=5.x.x"
},
"scripts": {
"test": "poku",
"test:bun": "bun poku",
"test:deno": "deno run -A npm:poku@canary --denoAllow=all",
"test:coverage": "c8 --experimental-monocart npm test",
"build": "tsc",
"lint": "biome lint --error-on-warnings && prettier --check .",
"lint:fix": "biome lint --write && prettier --write .github/workflows/*.yml .",
"update": "pu minor && npm i && (npm audit fix || true)",
"postupdate": "npm run lint:fix"
},
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@ianvs/prettier-plugin-sort-imports": "^4.7.0",
"@types/node": "^24.10.1",
"c8": "^10.1.3",
"monocart-coverage-reports": "^2.12.9",
"packages-update": "^2.0.0",
"poku": "^3.0.3-canary.ffab4562",
"prettier": "^3.6.2",
"tsx": "^4.20.6",
"typescript": "^5.9.3"
},
"publishConfig": {
"access": "public"
},
"keywords": [
"🐷",
"poku",
"pokujs",
"testing",
"testcontainers",
"integration",
"e2e",
"end-to-end",
"docker",
"docker-compose",
"dockerfile",
"container",
"containers"
]
}