-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 887 Bytes
/
Copy pathpackage.json
File metadata and controls
36 lines (36 loc) · 887 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
{
"type": "module",
"name": "podkiller-cli",
"version": "1.0.0",
"description": "We kill k8 pods",
"main": "index.js",
"bin": {
"podkiller": "./bin/commander.js"
},
"scripts": {
"start": "minikube start && npm run db",
"stop": "minikube stop",
"cm": "NODE_NO_WARNINGS=1 node bin/commander.js",
"db": "lsof -ti :3000 | xargs kill -9 2>/dev/null || true && nodemon --watch src/server.js --ignore reports/ src/server.js & xdg-open http://localhost:3000"
},
"keywords": [
"chaos",
"kubernetes",
"cli",
"devops"
],
"author": "Team Chaos Panda",
"license": "MIT",
"dependencies": {
"@kubernetes/client-node": "^1.3.0",
"axios": "^1.11.0",
"chalk": "^5.4.1",
"commander": "^14.0.0",
"express": "^5.1.0",
"inquirer": "^12.9.2",
"ws": "^8.18.3"
},
"devDependencies": {
"nodemon": "^3.1.10"
}
}