kill-sync
Version:
Cross-platform kill command. Supports recusive/tree-kill in a synchronous manner.
59 lines (58 loc) • 1.36 kB
JSON
{
"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.1",
"files": [
"dist"
],
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"scripts": {
"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/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",
"jest": "^29.7.0",
"ts-node": "^10.9.1",
"typescript": "^5.2.2"
}
}