-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.46 KB
/
Copy pathpackage.json
File metadata and controls
57 lines (57 loc) · 1.46 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
{
"name": "opsctrl-daemon",
"version": "1.0.0",
"description": "Kubernetes Pod monitoring and failure detection daemon with automated diagnosis",
"main": "dist/index.js",
"scripts": {
"build": "tsc",
"dev": "npm run build && ts-node src/index.ts",
"start": "node dist/index.js",
"watch": "tsc --watch",
"clean": "rm -rf dist",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"docker:build": "./scripts/build-docker.sh",
"docker:run": "docker-compose up -d",
"docker:stop": "docker-compose down",
"docker:logs": "docker-compose logs -f",
"k8s:deploy": "kubectl apply -f k8s-daemonset.yaml",
"k8s:delete": "kubectl delete -f k8s-daemonset.yaml",
"setup": "./scripts/setup-env.sh"
},
"keywords": [
"kubernetes",
"monitoring",
"pods",
"diagnosis",
"devops",
"sre"
],
"author": "Orchide Irakoze Sr",
"license": "MIT",
"dependencies": {
"@kubernetes/client-node": "^1.2.0",
"axios": "^1.11.0",
"chalk": "^4.1.2",
"class-transformer": "^0.5.1",
"class-validator": "^0.14.2",
"dotenv": "^17.2.1",
"joi": "^18.0.0",
"reflect-metadata": "^0.2.2"
},
"devDependencies": {
"@types/jest": "^30.0.0",
"@types/node": "^20.0.0",
"jest": "^30.0.5",
"ts-jest": "^29.4.1",
"ts-node": "^10.9.0",
"typescript": "^5.0.0"
},
"engines": {
"node": ">=20.0.0"
},
"overrides": {
"glob": "^10.5.0"
}
}