122 lines
4.6 KiB
JSON
122 lines
4.6 KiB
JSON
{
|
|
"_args": [
|
|
[
|
|
{
|
|
"raw": "tree-kill@^1.1.0",
|
|
"scope": null,
|
|
"escapedName": "tree-kill",
|
|
"name": "tree-kill",
|
|
"rawSpec": "^1.1.0",
|
|
"spec": ">=1.1.0 <2.0.0",
|
|
"type": "range"
|
|
},
|
|
"/Volumes/2009-SSD/GT2/GT2-iOS/node_modules/xdl"
|
|
]
|
|
],
|
|
"_from": "tree-kill@>=1.1.0 <2.0.0",
|
|
"_id": "tree-kill@1.2.0",
|
|
"_inCache": true,
|
|
"_location": "/tree-kill",
|
|
"_nodeVersion": "8.5.0",
|
|
"_npmOperationalInternal": {
|
|
"host": "s3://npm-registry-packages",
|
|
"tmp": "tmp/tree-kill-1.2.0.tgz_1505860955114_0.22414045105688274"
|
|
},
|
|
"_npmUser": {
|
|
"name": "wmhilton",
|
|
"email": "wmhilton@gmail.com"
|
|
},
|
|
"_npmVersion": "5.3.0",
|
|
"_phantomChildren": {},
|
|
"_requested": {
|
|
"raw": "tree-kill@^1.1.0",
|
|
"scope": null,
|
|
"escapedName": "tree-kill",
|
|
"name": "tree-kill",
|
|
"rawSpec": "^1.1.0",
|
|
"spec": ">=1.1.0 <2.0.0",
|
|
"type": "range"
|
|
},
|
|
"_requiredBy": [
|
|
"/xdl"
|
|
],
|
|
"_resolved": "https://registry.npmjs.org/tree-kill/-/tree-kill-1.2.0.tgz",
|
|
"_shasum": "5846786237b4239014f05db156b643212d4c6f36",
|
|
"_shrinkwrap": null,
|
|
"_spec": "tree-kill@^1.1.0",
|
|
"_where": "/Volumes/2009-SSD/GT2/GT2-iOS/node_modules/xdl",
|
|
"author": {
|
|
"name": "Peteris Krumins",
|
|
"email": "peteris.krumins@gmail.com",
|
|
"url": "http://www.catonmat.net"
|
|
},
|
|
"bin": {
|
|
"tree-kill": "cli.js"
|
|
},
|
|
"bugs": {
|
|
"url": "https://github.com/pkrumins/node-tree-kill/issues"
|
|
},
|
|
"contributors": [
|
|
{
|
|
"name": "Todd Wolfson",
|
|
"email": "todd@twolfson.com",
|
|
"url": "http://twolfson.com/"
|
|
},
|
|
{
|
|
"name": "William Hilton",
|
|
"email": "wmhilton@gmail.com",
|
|
"url": "http://wmhilton.com/"
|
|
},
|
|
{
|
|
"name": "Fabrício Matté",
|
|
"url": "http://ultcombo.js.org/"
|
|
}
|
|
],
|
|
"dependencies": {},
|
|
"description": "kill trees of processes",
|
|
"devDependencies": {
|
|
"mocha": "^2.2.5"
|
|
},
|
|
"directories": {},
|
|
"dist": {
|
|
"integrity": "sha512-DlX6dR0lOIRDFxI0mjL9IYg6OTncLm/Zt+JiBhE5OlFcAR8yc9S7FFXU9so0oda47frdM/JFsk7UjNt9vscKcg==",
|
|
"shasum": "5846786237b4239014f05db156b643212d4c6f36",
|
|
"tarball": "https://registry.npmjs.org/tree-kill/-/tree-kill-1.2.0.tgz"
|
|
},
|
|
"gitHead": "92ead1111360eb54432e9f4f65f49bfb5ee6cca2",
|
|
"homepage": "https://github.com/pkrumins/node-tree-kill",
|
|
"keywords": [
|
|
"tree",
|
|
"trees",
|
|
"process",
|
|
"processes",
|
|
"kill",
|
|
"signal"
|
|
],
|
|
"license": "MIT",
|
|
"main": "index.js",
|
|
"maintainers": [
|
|
{
|
|
"name": "pkrumins",
|
|
"email": "peteris.krumins@gmail.com"
|
|
},
|
|
{
|
|
"name": "wmhilton",
|
|
"email": "wmhilton@gmail.com"
|
|
}
|
|
],
|
|
"name": "tree-kill",
|
|
"optionalDependencies": {},
|
|
"readme": "Tree Kill\n=========\n\nKill all processes in the process tree, including the root process.\n\nExamples\n=======\n\nKill all the descendent processes of the process with pid `1`, including the process with pid `1` itself:\n```js\nvar kill = require('tree-kill');\nkill(1);\n```\n\nSend a signal other than SIGTERM.:\n```js\nvar kill = require('tree-kill');\nkill(1, 'SIGKILL');\n```\n\nRun a callback when done killing the processes. Passes an error argument if there was an error.\n```js\nvar kill = require('tree-kill');\nkill(1, 'SIGKILL', function(err) {\n // Do things\n});\n```\n\nYou can also install tree-kill globally and use it as a command:\n```sh\ntree-kill 1 # sends SIGTERM to process 1 and its descendents\ntree-kill 1 SIGTERM # same\ntree-kill 1 SIGKILL # sends KILL instead of TERMINATE\n```\n\nMethods\n=======\n\n## require('tree-kill')(pid, [signal], [callback]);\n\nSends signal `signal` to all children processes of the process with pid `pid`, including `pid`. Signal defaults to `SIGTERM`.\n\nFor Linux, this uses `ps -o pid --no-headers --ppid PID` to find the parent pids of `PID`.\n\nFor Darwin/OSX, this uses `pgrep -P PID` to find the parent pids of `PID`.\n\nFor Windows, this uses `'taskkill /pid PID /T /F'` to kill the process tree. Note that on Windows, sending the different kinds of POSIX signals is not possible.\n\nInstall\n=======\n\nWith [npm](https://npmjs.org) do:\n\n```\nnpm install tree-kill\n```\n\nLicense\n=======\n\nMIT\n\nChangelog\n=========\n\n## [1.2.0] - 2017-19-09\n### Added\n- TypeScript definitions\n### Changed\n- `kill(pid, callback)` works. Before you had to use `kill(pid, signal, callback)`\n\n## [1.1.0] - 2016-05-13\n### Added\n- A `tree-kill` CLI\n\n## [1.0.0] - 2015-09-17\n### Added\n- optional callback\n- Darwin support\n",
|
|
"readmeFilename": "README.md",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git://github.com/pkrumins/node-tree-kill.git"
|
|
},
|
|
"scripts": {
|
|
"test": "mocha"
|
|
},
|
|
"types": "index.d.ts",
|
|
"version": "1.2.0"
|
|
}
|