-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 946 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 946 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
{
"name": "docker2vm",
"version": "0.1.0",
"private": true,
"description": "OCI-first container-to-VM image tooling",
"license": "MIT",
"type": "commonjs",
"bin": {
"oci2gondolin": "./dist/bin/oci2gondolin.js",
"dockerfile2gondolin": "./dist/bin/dockerfile2gondolin.js"
},
"scripts": {
"build": "rm -rf dist && tsc -p tsconfig.json",
"typecheck": "tsc -p tsconfig.json --noEmit",
"test": "bun test test/*.test.ts",
"test:integration": "bun test test/integration --timeout 300000 --max-concurrency 1",
"e2e:smoke": "bash ./scripts/e2e-smoke.sh",
"oci2gondolin": "bun run src/bin/oci2gondolin.ts",
"dockerfile2gondolin": "bun run src/bin/dockerfile2gondolin.ts"
},
"devDependencies": {
"@types/node": "^22.13.10",
"typescript": "^5.7.3"
},
"engines": {
"bun": ">=1.2.0"
},
"packageManager": "bun@1.3.6",
"dependencies": {
"@earendil-works/gondolin": "0.2.1"
}
}