-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 996 Bytes
/
package.json
File metadata and controls
46 lines (46 loc) · 996 Bytes
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
{
"name": "darness",
"version": "0.0.0",
"description": "Docker based testing harness",
"bin": {
"darness": "dist/main.js"
},
"main": "dist/index.js",
"scripts": {
"test": "vitest",
"build": "tsc -p tsconfig.bin.json"
},
"repository": {
"type": "git",
"url": "git+https://github.com/NovaCove/darness.git"
},
"files": [
"dist"
],
"keywords": [
"Docker",
"testing",
"harness"
],
"author": "Trey Tacon <ttacon@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/novacove/darness/issues"
},
"homepage": "https://github.com/novacove/darness#readme",
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@tsconfig/node22": "^22.0.0",
"@types/dockerode": "^3.3.32",
"@types/node": "^22.10.2",
"tsx": "^4.19.3",
"typescript": "^5.7.2",
"vitest": "^2.1.8"
},
"dependencies": {
"commander": "^13.1.0",
"dockerode": "^4.0.2",
"tar": "^7.4.3",
"zod": "^3.24.2"
}
}