-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1.24 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
{
"name": "node-healthz",
"version": "2.0.2",
"description": "The \"health-checkup\" npm package simplifies the process of implementing health checks in Node.js applications, allowing you to ensure the reliability and availability of your system components effortlessly.",
"keywords": [
"nodejs",
"health-check",
"health",
"utility",
"status"
],
"homepage": "https://github.com/AckeeCZ/node-healthz",
"bugs": {
"url": "https://github.com/AckeeCZ/node-healthz/issues"
},
"license": "MIT",
"author": "Jiri Smolik <[email protected]>",
"main": "dist/index.js",
"files": [
"dist/*"
],
"scripts": {
"prepublish": "npm run build",
"build": "esbuild src/index.ts --bundle --minify --platform=node --outfile=dist/index.js && tsc",
"test": "node --require ts-node/register --require source-map-support/register --test **/*.test.ts"
},
"repository": "git+https://github.com/AckeeCZ/node-healthz.git",
"engines": {
"node": ">=18"
},
"devDependencies": {
"@types/express": "^4.17.21",
"@types/node": "^20.12.8",
"esbuild": "^0.20.2",
"express": "^4.21.1",
"prettier": "3.2.5",
"source-map-support": "^0.5.21",
"ts-node": "^10.9.2",
"typescript": "^5.4.5"
}
}