nodejs-health-checker
Version:
Simple Nodejs package to simplify applications based in Node, to trace the healthy of the pods
94 lines (93 loc) • 2.6 kB
JSON
{
"name": "nodejs-health-checker",
"version": "2.0.4",
"type": "module",
"description": "Simple Nodejs package to simplify applications based in Node, to trace the healthy of the pods",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"default": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"author": "Gritzko D. Kleiner <gritzkoo@hotmail.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/gritzkoo/nodejs-health-checker.git"
},
"keywords": [
"nodejs",
"typescript",
"healthcheck",
"health-check",
"health-checker",
"healthchecker",
"pods"
],
"bugs": {
"url": "https://github.com/gritzkoo/nodejs-health-checker/issues"
},
"homepage": "https://github.com/gritzkoo/nodejs-health-checker#readme",
"engines": {
"node": ">=18.0.0"
},
"scripts": {
"dev": "nodemon --watch \"src/\" --exec \"ts-node src/index.ts\" -e ts",
"test": "NODE_OPTIONS=--experimental-vm-modules jest --forceExit --testTimeout=60000",
"test:coverage": "npm run clean:coverage && NODE_OPTIONS=--experimental-vm-modules jest --collect-coverage --forceExit --testTimeout=60000",
"format": "eslint --fix \"src/**/*.ts\" \"tests/**/*.ts\"",
"lint": "eslint \"src/**/*.ts\" \"tests/**/*.ts\"",
"build": "npm run clean:dist && tsc",
"clean:dist": "rm -rf dist",
"clean:coverage": "rm -rf coverage"
},
"devDependencies": {
"@aws-sdk/client-dynamodb": "^3.716.0",
"@types/jest": "^29.5.14",
"@types/memcached": "^2.2.10",
"@types/node": "^22.10.5",
"@types/redis": "^4.0.11",
"@typescript-eslint/eslint-plugin": "^8.56.1",
"@typescript-eslint/parser": "^8.56.1",
"eslint": "^9.39.4",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.5",
"jest": "^29.7.0",
"memcache": "^1.4.0",
"mysql2": "^3.11.5",
"pg": "^8.13.1",
"prettier": "^3.8.1",
"redis": "^6.0.0",
"sequelize": "^6.37.8",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.18.0",
"typescript": "^5.7.3"
},
"peerDependencies": {
"@aws-sdk/client-dynamodb": "^3.716.0",
"memcache": "^1.4.0",
"redis": "^6.0.0",
"sequelize": "^6.37.8"
},
"peerDependenciesMeta": {
"redis": {
"optional": true
},
"sequelize": {
"optional": true
},
"memcache": {
"optional": true
},
"@aws-sdk/client-dynamodb": {
"optional": true
}
},
"files": [
"dist"
]
}