-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
51 lines (51 loc) · 1.4 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
48
49
50
51
{
"name": "kubernetes-health",
"version": "1.0.0",
"description": "Helper library for implementing Kubernetes heath checks and graceful HTTP shutdown in Node applications",
"repository": {
"type": "git",
"url": "https://github.com/jacobwgillespie/kubernetes-health.git"
},
"homepage": "https://github.com/jacobwgillespie/kubernetes-health",
"funding": {
"type": "GitHub",
"url": "https://github.com/sponsors/jacobwgillespie"
},
"author": {
"name": "Jacob Gillespie",
"email": "[email protected]"
},
"license": "MIT",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"keywords": [
"kubernetes",
"liveness",
"readiness"
],
"scripts": {
"build": "tsc",
"fmt": "prettier --write .",
"fmt:check": "prettier --check .",
"generate:docs": "typedoc --out docs --excludePrivate --entryDocument ../README.md --hideBreadcrumbs --gitRevision main --githubPages false src/index.ts",
"type-check": "tsc --noEmit",
"watch": "tsc --watch"
},
"devDependencies": {
"@tsconfig/node12": "^1.0.9",
"@types/node": "^12",
"prettier": "^2.6.1",
"prettier-plugin-organize-imports": "^2.3.4",
"prettier-plugin-pkg": "^0.11.1",
"typedoc": "^0.22.13",
"typedoc-plugin-markdown": "^3.11.14",
"typescript": "^4.6.3"
},
"publishConfig": {
"access": "public"
},
"sideEffects": false
}