UNPKG

kill-sync

Version:

Cross-platform kill command. Supports recusive/tree-kill in a synchronous manner.

65 lines (64 loc) 1.54 kB
{ "name": "kill-sync", "author": "Khiet Tam Nguyen", "license": "MIT", "description": "Cross-platform kill command. Supports recusive/tree-kill in a synchronous manner.", "repository": { "type": "git", "url": "https://github.com/nktnet1/kill-sync" }, "version": "1.0.3", "files": [ "dist" ], "main": "dist/cjs/index.js", "module": "dist/esm/index.js", "scripts": { "start": "ts-node tests/app/server", "test": "jest", "tc": "jest --coverage", "lint": "eslint './**/*.ts'", "lf": "eslint --fix './**/*.ts'", "tsc": "tsc --noEmit", "build": "rm -rf dist && npm run build:esm && npm run build:cjs", "build:esm": "tsc", "build:cjs": "tsc --module CommonJS --outDir dist/cjs", "prepublishOnly": "npm run build" }, "keywords": [ "nodejs", "sync", "synchronous", "process", "processes", "terminate", "kill", "kill-sync", "tree", "trees", "taskkill", "pid", "ps", "recursive", "tree-kill", "tree-kill-sync", "signal", "comp1531" ], "devDependencies": { "@types/express": "^4.17.20", "@types/jest": "^29.5.7", "@types/node": "^20.8.10", "@typescript-eslint/eslint-plugin": "^6.9.1", "@typescript-eslint/parser": "^6.9.1", "eslint": "^8.53.0", "eslint-plugin-jest": "^27.6.0", "express": "^4.18.2", "jest": "^29.7.0", "slync": "^1.0.2", "sync-request-curl": "^2.1.9", "ts-jest": "^29.1.1", "ts-node": "^10.9.1", "typescript": "^5.2.2" } }