2019-05-16 15:10:22 +02:00
|
|
|
{
|
2023-07-10 02:49:01 +02:00
|
|
|
"name": "@push.rocks/smartexit",
|
2025-12-15 15:58:52 +00:00
|
|
|
"version": "1.0.24",
|
2019-05-16 15:10:22 +02:00
|
|
|
"private": false,
|
2024-04-18 13:36:09 +02:00
|
|
|
"description": "A library for managing graceful shutdowns of Node.js processes by handling cleanup operations, including terminating child processes.",
|
2021-07-27 13:42:13 +02:00
|
|
|
"main": "dist_ts/index.js",
|
|
|
|
|
"typings": "dist_ts/index.d.ts",
|
2019-05-16 15:10:22 +02:00
|
|
|
"author": "Lossless GmbH",
|
|
|
|
|
"license": "MIT",
|
|
|
|
|
"scripts": {
|
|
|
|
|
"test": "(tstest test/)",
|
2023-09-11 10:29:01 +02:00
|
|
|
"build": "(tsbuild --web)",
|
|
|
|
|
"buildDocs": "tsdoc"
|
2019-05-16 15:10:22 +02:00
|
|
|
},
|
|
|
|
|
"devDependencies": {
|
2025-12-15 15:58:52 +00:00
|
|
|
"@git.zone/tsbuild": "^4.0.2",
|
|
|
|
|
"@git.zone/tsrun": "^2.0.1",
|
|
|
|
|
"@git.zone/tstest": "^3.1.3",
|
|
|
|
|
"@types/node": "^24.0.3"
|
2019-05-16 15:10:22 +02:00
|
|
|
},
|
2019-05-16 18:48:45 +02:00
|
|
|
"dependencies": {
|
2025-12-15 15:58:52 +00:00
|
|
|
"@push.rocks/lik": "^6.2.2",
|
2024-04-18 13:26:02 +02:00
|
|
|
"@push.rocks/smartdelay": "^3.0.5",
|
2025-12-15 15:58:52 +00:00
|
|
|
"@push.rocks/smartpromise": "^4.2.3",
|
2024-04-18 13:26:02 +02:00
|
|
|
"tree-kill": "^1.2.2"
|
2021-07-27 13:42:13 +02:00
|
|
|
},
|
|
|
|
|
"browserslist": [
|
|
|
|
|
"last 1 chrome versions"
|
|
|
|
|
],
|
|
|
|
|
"files": [
|
|
|
|
|
"ts/**/*",
|
|
|
|
|
"ts_web/**/*",
|
|
|
|
|
"dist/**/*",
|
|
|
|
|
"dist_*/**/*",
|
|
|
|
|
"dist_ts/**/*",
|
|
|
|
|
"dist_ts_web/**/*",
|
|
|
|
|
"assets/**/*",
|
|
|
|
|
"cli.js",
|
|
|
|
|
"npmextra.json",
|
|
|
|
|
"readme.md"
|
2023-09-11 10:29:01 +02:00
|
|
|
],
|
2024-04-14 17:33:39 +02:00
|
|
|
"type": "module",
|
|
|
|
|
"keywords": [
|
2024-04-18 13:26:02 +02:00
|
|
|
"Node.js",
|
2024-04-18 13:36:09 +02:00
|
|
|
"TypeScript",
|
2024-04-18 13:26:02 +02:00
|
|
|
"process management",
|
2024-04-18 13:36:09 +02:00
|
|
|
"graceful shutdown",
|
|
|
|
|
"cleanup operations",
|
2024-04-18 13:26:02 +02:00
|
|
|
"child process termination",
|
2024-04-18 13:36:09 +02:00
|
|
|
"signal handling",
|
|
|
|
|
"library",
|
|
|
|
|
"npm package",
|
|
|
|
|
"async cleanup",
|
|
|
|
|
"module",
|
|
|
|
|
"SIGINT handling",
|
|
|
|
|
"uncaught exception management",
|
|
|
|
|
"process exit management"
|
2024-05-29 14:12:57 +02:00
|
|
|
],
|
|
|
|
|
"homepage": "https://code.foss.global/push.rocks/smartexit",
|
|
|
|
|
"repository": {
|
|
|
|
|
"type": "git",
|
|
|
|
|
"url": "https://code.foss.global/push.rocks/smartexit.git"
|
|
|
|
|
}
|
2025-12-15 15:58:52 +00:00
|
|
|
}
|