UNPKG

@fluidware-it/healthz-server

Version:

Simple http server to expose an healthz endpoint

60 lines (59 loc) 1.63 kB
{ "name": "@fluidware-it/healthz-server", "version": "0.1.0", "main": "build/src/index.js", "module": "build/esm/index.js", "esnext": "build/esnext/index.js", "types": "build/src/index.d.ts", "publishConfig": { "access": "public" }, "scripts": { "prepack": "npm run compile", "compile": "npm run clean && tsc --build tsconfig.json tsconfig.esm.json tsconfig.esnext.json", "clean": "tsc --build --clean tsconfig.json tsconfig.esm.json tsconfig.esnext.json", "lint": "eslint", "lint:fix": "eslint --fix", "preversion": "npm run lint && npm run test", "test": "jest" }, "keywords": [ "server", "healthz" ], "author": "Michele (macno) Azzolari", "license": "ISC", "description": "Simple http server to expose an healthz endpoint", "devDependencies": { "@eslint/js": "9.18.0", "@types/jest": "29.5.14", "@typescript-eslint/eslint-plugin": "8.19.1", "@typescript-eslint/parser": "8.19.1", "eslint": "9.18.0", "eslint-config-prettier": "9.1.0", "eslint-plugin-n": "17.15.1", "eslint-plugin-prettier": "5.2.1", "globals": "14.0.0", "jest": "29.7.0", "prettier": "3.4.2", "ts-jest": "29.2.5", "ts-node": "10.9.2", "typescript": "5.7.3", "typescript-eslint": "8.19.1" }, "files": [ "build/esm/**/*.js", "build/esm/**/*.js.map", "build/esm/**/*.d.ts", "build/esnext/**/*.js", "build/esnext/**/*.js.map", "build/esnext/**/*.d.ts", "build/src/**/*.js", "build/src/**/*.js.map", "build/src/**/*.d.ts" ], "engineStrict": true, "engines": { "node": ">=20" } }