-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.4 KB
/
Copy pathpackage.json
File metadata and controls
42 lines (42 loc) · 1.4 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
{
"name": "k8s",
"version": "1.0.0",
"description": "A from-scratch reimplementation of Kubernetes' core APIs in pure Node.js — compatible with the real kubectl CLI and standard Kubernetes YAML.",
"main": "index.js",
"scripts": {
"setup": "./scripts/setup.sh",
"start": "./scripts/start.sh",
"start:legacy": "./start.sh",
"test": "node ./test/test.js",
"test:smoke": "node ./test/boot-clean.js",
"test:proto": "node ./test/proto-roundtrip.js",
"test:wire": "node ./test/wire-matrix.js",
"test:rv": "node ./test/resource-version.js",
"test:workload": "node ./test/workload.js",
"test:pods": "node ./test/pod-features.js",
"test:sched": "node ./test/scheduling.js",
"test:store": "node ./test/store.js",
"test:portability": "node ./test/portability.js",
"test:services": "node ./test/services.js",
"test:all": "node ./test/all.js"
},
"author": "Seth Wheeler <23089578+Megapixel99@users.noreply.github.com>",
"license": "MIT",
"dependencies": {
"@wesleytodd/openapi": "^1.0.0",
"axios": "^1.6.8",
"docker-cli-js": "^2.10.0",
"dotenv": "^16.4.5",
"express": "^4.19.1",
"istextorbinary": "^9.5.0",
"luxon": "^3.4.4",
"mongoose": "^8.2.3",
"node-cleanup": "^2.1.2",
"portfinder": "^1.0.32",
"protobufjs": "^7.3.0",
"selfsigned": "^2.4.1",
"slashes": "^3.0.12",
"uuid": "^9.0.1",
"yaml": "^2.4.2"
}
}