-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.38 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.38 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
{
"name": "node-healthz",
"version": "2.1.0",
"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 <jiri.smolik@ackee.cz>",
"main": "dist/index.js",
"files": [
"dist/*"
],
"scripts": {
"prepublish": "pnpm 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"
},
"packageManager": "pnpm@10.27.0",
"devEngines": {
"packageManager": {
"name": "pnpm@10.27.0",
"onFail": "error"
}
},
"devDependencies": {
"@types/express": "^5.0.0",
"@types/node": "^20.12.8",
"esbuild": "^0.25.1",
"express": "^4.21.2",
"prettier": "3.2.5",
"source-map-support": "^0.5.21",
"ts-node": "^10.9.2",
"typescript": "^5.8.2"
}
}