-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.32 KB
/
package.json
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
{
"name": "nodejs-health-checker-lw",
"version": "1.0.1",
"description": "The main purpose of this package is to substitute nodejs-health-checker package and standardize the liveness and readiness actions for Nodejs applications running in Kubernetes deployments, without adding complexity and extra package installs.",
"main": "dist/index.js",
"scripts": {
"test": "jest",
"test:coverage": "jest --collect-coverage",
"build": "rm -rf dist;tsc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/gritzkoo/nodejs-health-checker-lw.git"
},
"keywords": [
"healthcheck",
"health-check",
"health-checker",
"healthchecker",
"liveness",
"livenessProbe",
"readiness",
"readinessProbe",
"k8s-probes",
"pods"
],
"author": "Gritzko D. Kleiner",
"license": "MIT",
"bugs": {
"url": "https://github.com/gritzkoo/nodejs-health-checker-lw/issues"
},
"homepage": "https://github.com/gritzkoo/nodejs-health-checker-lw#readme",
"devDependencies": {
"@types/jest": "^28.1.8",
"@typescript-eslint/eslint-plugin": "^5.53.0",
"@typescript-eslint/parser": "^5.53.0",
"eslint": "^8.34.0",
"jest": "^28.1.3",
"ts-jest": "^28.0.8",
"ts-node": "^10.9.1",
"tslib": "^2.5.0",
"typescript": "^4.9.5"
},
"files": [
"dist/**/*"
]
}