UNPKG

kubernetes-health

Version:

Helper library for implementing Kubernetes heath checks and graceful HTTP shutdown in Node applications

52 lines (51 loc) 1.44 kB
{ "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": "jacobwgillespie@gmail.com" }, "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 }