@unboundedsystems/node-graceful
Version:
Graceful process exit manager. allows waiting on multiple async services.
48 lines (47 loc) • 1.16 kB
JSON
{
"name": "@unboundedsystems/node-graceful",
"version": "3.0.0-unb.2",
"description": "Graceful process exit manager. allows waiting on multiple async services.",
"main": "index.js",
"repository": {
"type": "git",
"url": "https://github.com/mrbar42/node-graceful.git"
},
"keywords": [
"graceful",
"exit",
"signal",
"sigterm",
"SIGINT",
"SIGHUP",
"shutdown",
"graceful exit",
"uncaught",
"uncaughtException",
"unhandledRejection",
"terminate",
"stop",
"process"
],
"scripts": {
"test:unit": "node tests/runner",
"test:unit-ts": "ts-node tests/wait-for-multiple-promise.ts",
"test:lint": "tsc --noEmit && tslint -c tslint.json --fix tests/*.ts",
"test": "npm run test:lint && npm run test:unit && npm run test:unit-ts",
"build": "tsc --build tsconfig.json",
"prepublishOnly": "npm run test && npm run build"
},
"files": [
"index.d.ts",
"index.js",
"README.md"
],
"author": "mrbar42",
"license": "MIT",
"devDependencies": {
"@types/node": "8.10.48",
"ts-node": "^8.5.2",
"tslint": "^5.20.1",
"typescript": "3.6.x"
}
}