{"maintainers":[{"name":"dev","email":"simone.primarosa@gmail.com"}],"keywords":["ps-tree","ps","tree","ppid","pid","pidtree","pgrep","list","all","system","process","processes"],"dist-tags":{"latest":"0.6.0"},"author":{"name":"Simone Primarosa","email":"simonepri@outlook.com","url":"https://github.com/simonepri"},"description":"Cross platform children list of a PID","readme":"<h1 align=\"center\">\n  <b>pidtree</b>\n</h1>\n<p align=\"center\">\n  <!-- Version - npm -->\n  <a href=\"https://www.npmjs.com/package/pidtree\">\n    <img src=\"https://img.shields.io/npm/v/pidtree.svg\" alt=\"Latest version on npm\" />\n  </a>\n  <!-- Downloads - npm -->\n  <a href=\"https://npm-stat.com/charts.html?package=pidtree\">\n    <img src=\"https://img.shields.io/npm/dt/pidtree.svg\" alt=\"Downloads on npm\" />\n  </a>\n  <!-- License - MIT -->\n  <a href=\"https://github.com/simonepri/pidtree/tree/master/license\">\n    <img src=\"https://img.shields.io/github/license/simonepri/pidtree.svg\" alt=\"Project license\" />\n  </a>\n\n  <br/>\n\n  <!-- Lint -->\n  <a href=\"https://github.com/simonepri/pidtree/actions?query=workflow:lint+branch:master\">\n    <img src=\"https://github.com/simonepri/pidtree/workflows/lint/badge.svg?branch=master\" alt=\"Lint status\" />\n  </a>\n  <!-- Test - macOS -->\n  <a href=\"https://github.com/simonepri/pidtree/actions?query=workflow:test-macos+branch:master\">\n    <img src=\"https://github.com/simonepri/pidtree/workflows/test-macos/badge.svg?branch=master\" alt=\"Test macOS status\" />\n  </a>\n  <!-- Test - Ubuntu -->\n  <a href=\"https://github.com/simonepri/pidtree/actions?query=workflow:test-ubuntu+branch:master\">\n    <img src=\"https://github.com/simonepri/pidtree/workflows/test-ubuntu/badge.svg?branch=master\" alt=\"Test Ubuntu status\" />\n  </a>\n  <!-- Test - Windows -->\n  <a href=\"https://github.com/simonepri/pidtree/actions?query=workflow:test-windows+branch:master\">\n    <img src=\"https://github.com/simonepri/pidtree/workflows/test-windows/badge.svg?branch=master\" alt=\"Test Windows status\" />\n  </a>\n  <!-- Coverage - Codecov -->\n  <a href=\"https://codecov.io/gh/simonepri/pidtree\">\n    <img src=\"https://img.shields.io/codecov/c/github/simonepri/pidtree/master.svg\" alt=\"Codecov Coverage report\" />\n  </a>\n  <!-- DM - Snyk -->\n  <a href=\"https://snyk.io/test/github/simonepri/pidtree?targetFile=package.json\">\n    <img src=\"https://snyk.io/test/github/simonepri/pidtree/badge.svg?targetFile=package.json\" alt=\"Known Vulnerabilities\" />\n  </a>\n\n  <br/>\n\n  <!-- Code Style - XO-Prettier -->\n  <a href=\"https://github.com/xojs/xo\">\n    <img src=\"https://img.shields.io/badge/code_style-XO+Prettier-5ed9c7.svg\" alt=\"XO Code Style used\" />\n  </a>\n  <!-- Test Runner - AVA -->\n  <a href=\"https://github.com/avajs/ava\">\n    <img src=\"https://img.shields.io/badge/test_runner-AVA-fb3170.svg\" alt=\"AVA Test Runner used\" />\n  </a>\n  <!-- Test Coverage - Istanbul -->\n  <a href=\"https://github.com/istanbuljs/nyc\">\n    <img src=\"https://img.shields.io/badge/test_coverage-NYC-fec606.svg\" alt=\"Istanbul Test Coverage used\" />\n  </a>\n  <!-- Init - ni -->\n  <a href=\"https://github.com/simonepri/ni\">\n    <img src=\"https://img.shields.io/badge/initialized_with-ni-e74c3c.svg\" alt=\"NI Scaffolding System used\" />\n  </a>\n  <!-- Release - np -->\n  <a href=\"https://github.com/sindresorhus/np\">\n    <img src=\"https://img.shields.io/badge/released_with-np-6c8784.svg\" alt=\"NP Release System used\" />\n  </a>\n</p>\n<p align=\"center\">\n  🚸 Cross platform children list of a PID.\n\n  <br/>\n\n  <sub>\n    Coded with ❤️ by <a href=\"#authors\">Simone Primarosa</a>.\n  </sub>\n</p>\n\n## Synopsis\n\nThis package is really similar to [ps-tree][gh:ps-tree] but is faster, safer and\nprovides sub-children results.  \nFurthermore ps-tree is [unmaintained][gh:ps-tree-um].\n\nUuh, and a fancy [CLI](#cli) is also available!\n\n## Usage\n\n```js\nvar pidtree = require('pidtree')\n\n// Get childs of current process\npidtree(process.pid, function (err, pids) {\n  console.log(pids)\n  // => []\n})\n\n// Include the given pid in the result array\npidtree(process.pid, {root: true}, function (err, pids) {\n  console.log(pids)\n  // => [727]\n})\n\n// Get all the processes of the System (-1 is a special value of this package)\npidtree(-1, function (err, pids) {\n  console.log(pids)\n  // => [530, 42, ..., 41241]\n})\n\n// Include PPID in the results\npidtree(1, {advanced: true}, function (err, pids) {\n  console.log(pids)\n  // => [{ppid: 1, pid: 530}, {ppid: 1, pid: 42}, ..., {ppid: 1, pid: 41241}]\n})\n\n// If no callback is given it returns a promise instead\nconst pids = await pidtree(1)\nconsole.log(pids)\n// => [141, 42, ..., 15242]\n```\n\n## Compatibility\n\n| Linux | FreeBSD | NetBSD | SunOS | macOS | Win | AIX |\n| --- | --- | --- | --- | --- | --- | --- |\n| ✅ | ❓ | ❓ | ❓ | ✅ | ✅ | ❓ |\n\n✅ = Working\n❓ = Not tested but should work\n\nPlease if your platform is not supported [file an issue][new issue].\n\n## CLI\n\n<img src=\"https://github.com/simonepri/pidtree/raw/master/media/cli.gif\" alt=\"pidtree cli\" width=\"300\" align=\"right\"/>\nShow a tree of the processes inside your system inside your terminal.\n\n```bash\nnpx pidtree $PPID\n```\nJust replace `$PPID` with one of the pids inside your system.\n\nOr don't pass anything if you want all the pids inside your system.\n\n```bash\nnpx pidtree\n```\n\nTo display the output as a list, similar to the one produced from `pgrep -P $PID`,\npass the `--list` flag.\n\n```bash\nnpx pidtree --list\n```\n\n## API\n\n<a name=\"pidtree\"></a>\n\n## pidtree(pid, [options], [callback]) ⇒ <code>[Promise.&lt;Array.&lt;Object&gt;&gt;]</code>\nGet the list of children pids of the given pid.\n\n**Kind**: global function  \n**Returns**: <code>Promise.&lt;Array.&lt;Object&gt;&gt;</code> - Only when the callback is not provided.  \n**Access**: public  \n\n| Param | Type | Default | Description |\n| --- | --- | --- | --- |\n| pid | <code>Number</code> \\| <code>String</code> |  | A pid. If -1 will return all the pids. |\n| [options] | <code>Object</code> |  | Optional options object. |\n| [options.root] | <code>Boolean</code> | <code>false</code> | Include the provided pid in the list. Ignored if -1 is passed as pid. |\n| [callback] | <code>function</code> |  | Called when the list is ready. If not provided a promise is returned instead. |\n\n## Related\n\n- [pidusage][gh:pidusage] -\nCross-platform process cpu % and memory usage of a PID\n\n## Authors\n\n- **Simone Primarosa** - [simonepri][github:simonepri]\n\nSee also the list of [contributors][contributors] who participated in this project.\n\n## License\n\nThis project is licensed under the MIT License - see the [license][license] file for details.\n\n<!-- Links -->\n[new issue]: https://github.com/simonepri/pidtree/issues/new\n[license]: https://github.com/simonepri/pidtree/tree/master/license\n[contributors]: https://github.com/simonepri/pidtree/contributors\n\n[github:simonepri]: https://github.com/simonepri\n\n[gh:pidusage]: https://github.com/soyuka/pidusage\n[gh:ps-tree]: https://github.com/indexzero/ps-tree\n[gh:ps-tree-um]: https://github.com/indexzero/ps-tree/issues/30\n","repository":{"type":"git","url":"git+https://github.com/simonepri/pidtree.git"},"users":{"flumpus-dev":true},"bugs":{"url":"https://github.com/simonepri/pidtree/issues","email":"simonepri@outlook.com"},"license":"MIT","versions":{"0.1.1":{"name":"pidtree","version":"0.1.1","description":"Cross platform children list of a PID","license":"MIT","homepage":"http://github.com/simonpri/pidtree#readme","repository":{"type":"git","url":"git+https://github.com/simonpri/pidtree.git"},"bugs":{"url":"https://github.com/simonpri/pidtree/issues","email":"simonepri@outlook.com"},"author":{"name":"Simone Primarosa","email":"simonepri@outlook.com","url":"https://github.com/simonepri"},"contributors":[{"name":"Simone Primarosa","email":"simonepri@outlook.com","url":"https://github.com/simonepri"}],"keyboards":["ps-tree","ps","tree","ppid","pid","pidtree"],"main":"index.js","bin":{"pidtree":"./bin/pidtree.js"},"files":["bin","index.js"],"engines":{"node":">=0.10"},"scripts":{"update":"npm-check -u","release":"np","lint":"xo","test":"npm run lint&& nyc ava -m \"!*benchmark*\"","bench":"ava -m \"*benchmark*\""},"devDependencies":{"ava":"*","mockery":"^2.1.0","np":"*","npm-check":"*","nyc":"*","pify":"^3.0.0","string-to-stream":"^1.1.0","through":"^2.3.8","time-span":"^2.0.0","tree-kill":"^1.1.0","xo":"*"},"ava":{"verbose":true},"nyc":{"reporter":["lcovonly","text"]},"xo":{"prettier":true,"space":true,"rules":{"prefer-arrow-callback":0,"no-var":0}},"gitHead":"b5e442c0bc0e1535e8f2443041e29d2e71602ae4","_id":"pidtree@0.1.1","_npmVersion":"5.7.1","_nodeVersion":"8.9.4","_npmUser":{"name":"dev","email":"simonepri@outlook.com"},"dist":{"integrity":"sha512-G+Pv9mYtaIcgWPtAnwSVL/dn4D2FyqiGgYZkoxMtFFpyn1PgAMvfCtHfVQ8GTshtVRBs6D3tvEfJ0xNNhb4SCg==","shasum":"fc11f3a7153b57afe1d61c66659b111f59e7cee8","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/pidtree/-/pidtree-0.1.1.tgz","fileCount":5,"unpackedSize":7912,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCsc490SIC8W0h5214sdUC2D1LEdJNgMmSSGieVTH/7/wIhAMFSZDevqDihx25WMCqG5bdnM2RaOY7IPvJDNF5vILeM"}]},"maintainers":[{"name":"dev","email":"simonepri@outlook.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/pidtree_0.1.1_1521430616725_0.28021838554744694"},"_hasShrinkwrap":false},"0.1.2":{"name":"pidtree","version":"0.1.2","description":"Cross platform children list of a PID","license":"MIT","homepage":"http://github.com/simonpri/pidtree#readme","repository":{"type":"git","url":"git+https://github.com/simonpri/pidtree.git"},"bugs":{"url":"https://github.com/simonpri/pidtree/issues","email":"simonepri@outlook.com"},"author":{"name":"Simone Primarosa","email":"simonepri@outlook.com","url":"https://github.com/simonepri"},"contributors":[{"name":"Simone Primarosa","email":"simonepri@outlook.com","url":"https://github.com/simonepri"}],"keyboards":["ps-tree","ps","tree","ppid","pid","pidtree"],"main":"index.js","bin":{"pidtree":"./bin/pidtree.js"},"files":["bin","lib","index.js"],"engines":{"node":">=0.10"},"scripts":{"start":"node ./bin/pidtree.js","update":"npm-check -u","release":"np","lint":"xo","test":"npm run lint&& nyc ava -m \"!*benchmark*\"","bench":"ava -m \"*benchmark*\""},"devDependencies":{"ava":"*","mockery":"^2.1.0","np":"*","npm-check":"*","nyc":"*","pify":"^3.0.0","string-to-stream":"^1.1.0","through":"^2.3.8","time-span":"^2.0.0","tree-kill":"^1.1.0","xo":"*"},"ava":{"verbose":true},"nyc":{"reporter":["lcovonly","text"]},"xo":{"prettier":true,"space":true,"rules":{"prefer-arrow-callback":0,"no-var":0}},"gitHead":"7df78b353115ff9480565fa5b0abd0b90d108ba4","_id":"pidtree@0.1.2","_npmVersion":"5.7.1","_nodeVersion":"8.9.4","_npmUser":{"name":"dev","email":"simonepri@outlook.com"},"dist":{"integrity":"sha512-y/z1Pkt0zH2kAu2bkqhNxLSf7cTFkjTO0Cb2iywCDiL9m8XcX9cjPH8XaZuxRIhETFm6NE89g8INO/IStxD30g==","shasum":"0911a517eb082c002914a984c5622247786ef6c3","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/pidtree/-/pidtree-0.1.2.tgz","fileCount":9,"unpackedSize":14008,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIGvOgbvR+bx+8QxpLtcgpoenDCSGjTPLwU/7HGXmmiXZAiEA6S0O+52QiQdNb7prksiSpUsfMSXrBL41IRXikRfXDPw="}]},"maintainers":[{"name":"dev","email":"simonepri@outlook.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/pidtree_0.1.2_1521450960779_0.06898880572103905"},"_hasShrinkwrap":false},"0.1.3":{"name":"pidtree","version":"0.1.3","description":"Cross platform children list of a PID","license":"MIT","homepage":"http://github.com/simonpri/pidtree#readme","repository":{"type":"git","url":"git+https://github.com/simonpri/pidtree.git"},"bugs":{"url":"https://github.com/simonpri/pidtree/issues","email":"simonepri@outlook.com"},"author":{"name":"Simone Primarosa","email":"simonepri@outlook.com","url":"https://github.com/simonepri"},"contributors":[{"name":"Simone Primarosa","email":"simonepri@outlook.com","url":"https://github.com/simonepri"}],"keyboards":["ps-tree","ps","tree","ppid","pid","pidtree"],"main":"index.js","bin":{"pidtree":"./bin/pidtree.js"},"files":["bin","lib","index.js"],"engines":{"node":">=0.10"},"scripts":{"start":"node ./bin/pidtree.js","update":"npm-check -u","release":"np","lint":"xo","test":"npm run lint&& nyc ava -m \"!*benchmark*\"","bench":"ava -m \"*benchmark*\""},"devDependencies":{"ava":"*","mockery":"^2.1.0","np":"*","npm-check":"*","nyc":"*","pify":"^3.0.0","string-to-stream":"^1.1.0","through":"^2.3.8","time-span":"^2.0.0","tree-kill":"^1.1.0","xo":"*"},"ava":{"verbose":true},"nyc":{"reporter":["lcovonly","text"]},"xo":{"prettier":true,"space":true,"rules":{"prefer-arrow-callback":0,"no-var":0}},"gitHead":"afa1a9156c31e8add8b7440cf99011dbde3977b2","_id":"pidtree@0.1.3","_npmVersion":"5.7.1","_nodeVersion":"8.9.4","_npmUser":{"name":"dev","email":"simonepri@outlook.com"},"dist":{"integrity":"sha512-VRNuRQZKCYOm/MMneRsx6y1e1PkgiAqWLPdUM5wcKEBFBR6jbQA1M+yKtoH0mM/oCPVOFIyI7pDPoNJ4EyhPNQ==","shasum":"ff56aaacbf2fb949407826eaf1033d98a405cedb","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/pidtree/-/pidtree-0.1.3.tgz","fileCount":9,"unpackedSize":14104,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDHZGC6eTn5DcSsBMiJtnVKFThP7nsFhKX8D8nzfeX/uQIhAJnq3CwP6AEUCShQD10mz6AtRTFER9QsrVn/s94GoF8P"}]},"maintainers":[{"name":"dev","email":"simonepri@outlook.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/pidtree_0.1.3_1521451470522_0.44514729868167646"},"_hasShrinkwrap":false},"0.1.4":{"name":"pidtree","version":"0.1.4","description":"Cross platform children list of a PID","license":"MIT","homepage":"http://github.com/simonpri/pidtree#readme","repository":{"type":"git","url":"git+https://github.com/simonpri/pidtree.git"},"bugs":{"url":"https://github.com/simonpri/pidtree/issues","email":"simonepri@outlook.com"},"author":{"name":"Simone Primarosa","email":"simonepri@outlook.com","url":"https://github.com/simonepri"},"contributors":[{"name":"Simone Primarosa","email":"simonepri@outlook.com","url":"https://github.com/simonepri"}],"keyboards":["ps-tree","ps","tree","ppid","pid","pidtree","pgrep","list","all","system","process","processes"],"main":"index.js","bin":{"pidtree":"./bin/pidtree.js"},"files":["bin","lib","index.js"],"engines":{"node":">=0.10"},"scripts":{"start":"node ./bin/pidtree.js","update":"npm-check -u","release":"np","lint":"xo","test":"npm run lint&& nyc ava -m \"!*benchmark*\"","bench":"ava -m \"*benchmark*\""},"devDependencies":{"ava":"*","mockery":"^2.1.0","np":"*","npm-check":"*","nyc":"*","pify":"^3.0.0","string-to-stream":"^1.1.0","through":"^2.3.8","time-span":"^2.0.0","tree-kill":"^1.1.0","xo":"*"},"ava":{"verbose":true},"nyc":{"reporter":["lcovonly","text"]},"xo":{"prettier":true,"space":true,"rules":{"prefer-arrow-callback":0,"no-var":0}},"gitHead":"2984c31b9336ce77acdc1a15ad054ee76c8cd9d3","_id":"pidtree@0.1.4","_npmVersion":"5.7.1","_nodeVersion":"8.9.4","_npmUser":{"name":"dev","email":"simonepri@outlook.com"},"dist":{"integrity":"sha512-nVYWzpfHipRu+yi8by55w85ynKDoEeV/qaj1+Z8zPx/CIL0+yzerVzrmP6kE7XG1QTa+bcuGXdUCvycWY8bZmQ==","shasum":"9a44f82e9fba68fb082634a2acb93b6d51c0fd8d","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/pidtree/-/pidtree-0.1.4.tgz","fileCount":9,"unpackedSize":15186,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCjeyG0kPq/EbluDYovARLs7KtF0uBo5xkT6iLFVBmBiwIgTpZD0VXqx7nhaOoDj409vOboIcda7iTXOA8vWkVbfKQ="}]},"maintainers":[{"name":"dev","email":"simonepri@outlook.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/pidtree_0.1.4_1521457467965_0.6950929430935555"},"_hasShrinkwrap":false},"0.2.0":{"name":"pidtree","version":"0.2.0","description":"Cross platform children list of a PID","license":"MIT","homepage":"http://github.com/simonpri/pidtree#readme","repository":{"type":"git","url":"git+https://github.com/simonpri/pidtree.git"},"bugs":{"url":"https://github.com/simonpri/pidtree/issues","email":"simonepri@outlook.com"},"author":{"name":"Simone Primarosa","email":"simonepri@outlook.com","url":"https://github.com/simonepri"},"contributors":[{"name":"Simone Primarosa","email":"simonepri@outlook.com","url":"https://github.com/simonepri"}],"keyboards":["ps-tree","ps","tree","ppid","pid","pidtree","pgrep","list","all","system","process","processes"],"main":"index.js","bin":{"pidtree":"./bin/pidtree.js"},"files":["bin","lib","index.js"],"engines":{"node":">=0.10"},"scripts":{"start":"node ./bin/pidtree.js","update":"npm-check -u","release":"np","lint":"xo","test":"npm run lint&& nyc ava -m \"!*benchmark*\"","bench":"ava -m \"*benchmark*\""},"devDependencies":{"ava":"*","mockery":"^2.1.0","np":"*","npm-check":"*","nyc":"*","pify":"^3.0.0","string-to-stream":"^1.1.0","through":"^2.3.8","time-span":"^2.0.0","tree-kill":"^1.1.0","xo":"*"},"ava":{"verbose":true},"nyc":{"reporter":["lcovonly","text"]},"xo":{"prettier":true,"space":true,"rules":{"prefer-arrow-callback":0,"no-var":0}},"gitHead":"ce34172c3b5c9681ac145222d09bc42467613e72","_id":"pidtree@0.2.0","_npmVersion":"5.7.1","_nodeVersion":"8.9.4","_npmUser":{"name":"dev","email":"simonepri@outlook.com"},"dist":{"integrity":"sha512-veX/W5thA6DnAQVYFa2ZxNKeG5jB7Z8v1GF0tBJLGOfFdD7NhH+QwXr1A0HS4L2vhRdafodfjWQA9CkHUL8DgQ==","shasum":"17d63eb39009eb0a864dd2e153dfb1dd40e38b64","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/pidtree/-/pidtree-0.2.0.tgz","fileCount":9,"unpackedSize":15186,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDCCaPmAbtmrnTEM/zNZYXmMFnqCTfvnSgWTr3fIW+rEgIgUs56aRIbVBDtthBPyQ0OJFr0zpyYnOKZFneQVjFuzT0="}]},"maintainers":[{"name":"dev","email":"simonepri@outlook.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/pidtree_0.2.0_1521462152494_0.2637349888828089"},"_hasShrinkwrap":false},"0.3.0":{"name":"pidtree","version":"0.3.0","description":"Cross platform children list of a PID","license":"MIT","homepage":"http://github.com/simonepri/pidtree#readme","repository":{"type":"git","url":"git+https://github.com/simonepri/pidtree.git"},"bugs":{"url":"https://github.com/simonepri/pidtree/issues","email":"simonepri@outlook.com"},"author":{"name":"Simone Primarosa","email":"simonepri@outlook.com","url":"https://github.com/simonepri"},"contributors":[{"name":"Simone Primarosa","email":"simonepri@outlook.com","url":"https://github.com/simonepri"}],"keywords":["ps-tree","ps","tree","ppid","pid","pidtree","pgrep","list","all","system","process","processes"],"main":"index.js","bin":{"pidtree":"./bin/pidtree.js"},"files":["bin","lib","index.js"],"engines":{"node":">=0.10"},"scripts":{"start":"node ./bin/pidtree.js","update":"npm-check -u","release":"np","lint":"xo","test":"npm run lint&& nyc ava -m \"!*benchmark*\"","bench":"ava -m \"*benchmark*\"","coverage":"codecov"},"devDependencies":{"ava":"*","codecov":"*","mockery":"^2.1.0","np":"*","npm-check":"*","nyc":"*","pify":"^3.0.0","string-to-stream":"^1.1.0","through":"^2.3.8","time-span":"^2.0.0","tree-kill":"^1.1.0","xo":"*"},"ava":{"verbose":true},"nyc":{"reporter":["lcovonly","text"]},"xo":{"prettier":true,"space":true,"rules":{"prefer-arrow-callback":0,"no-var":0,"object-shorthand":0}},"gitHead":"b38c197597fc0f5c8e8a771e14dcee133558e504","_id":"pidtree@0.3.0","_npmVersion":"5.7.1","_nodeVersion":"8.9.4","_npmUser":{"name":"dev","email":"simonepri@outlook.com"},"dist":{"integrity":"sha512-9CT4NFlDcosssyg8KVFltgokyKZIFjoBxw8CTGy+5F38Y1eQWrt8tRayiUOXE+zVKQnYu5BR8JjCtvK3BcnBhg==","shasum":"f6fada10fccc9f99bf50e90d0b23d72c9ebc2e6b","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/pidtree/-/pidtree-0.3.0.tgz","fileCount":10,"unpackedSize":18885,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIFUpG0DlNDKlZDi3luoLyL+v4HOMo1q+CA0dVgb/yKWrAiEAnmzN3xDCTD6x6ET6SQMnNG6F4ZnisjeQj/yL8xuKfKs="}]},"maintainers":[{"name":"dev","email":"simonepri@outlook.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/pidtree_0.3.0_1521563737873_0.0031888813645817304"},"_hasShrinkwrap":false},"0.3.1":{"name":"pidtree","version":"0.3.1","description":"Cross platform children list of a PID","license":"MIT","homepage":"http://github.com/simonepri/pidtree#readme","repository":{"type":"git","url":"git+https://github.com/simonepri/pidtree.git"},"bugs":{"url":"https://github.com/simonepri/pidtree/issues","email":"simonepri@outlook.com"},"author":{"name":"Simone Primarosa","email":"simonepri@outlook.com","url":"https://github.com/simonepri"},"contributors":[{"name":"Simone Primarosa","email":"simonepri@outlook.com","url":"https://github.com/simonepri"}],"keywords":["ps-tree","ps","tree","ppid","pid","pidtree","pgrep","list","all","system","process","processes"],"main":"index.js","bin":{"pidtree":"bin/pidtree.js"},"engines":{"node":">=0.10"},"scripts":{"start":"node ./bin/pidtree.js","update":"npm-check -u","release":"np","lint":"xo","test":"nyc ava -m \"!*benchmark*\"","bench":"ava -m \"*benchmark*\"","coverage":"codecov"},"devDependencies":{"ava":"~0.25.0","codecov":"^3.6.5","mockery":"^2.1.0","np":"^2.20.1","npm-check":"^5.9.2","nyc":"^11.6.0","pify":"^3.0.0","string-to-stream":"^1.1.0","through":"^2.3.8","time-span":"^2.0.0","tree-kill":"^1.1.0","xo":"~0.20.3"},"ava":{"verbose":true},"nyc":{"reporter":["lcovonly","text"]},"xo":{"prettier":true,"space":true,"rules":{"prefer-destructuring":0,"prefer-arrow-callback":0,"no-var":0,"object-shorthand":0,"unicorn/no-for-loop":0,"unicorn/prefer-string-slice":0,"unicorn/string-content":0}},"gitHead":"d9834cd6eb736bbc6490833adb074c456fce9587","_id":"pidtree@0.3.1","_nodeVersion":"13.11.0","_npmVersion":"6.14.4","dist":{"integrity":"sha512-qQbW94hLHEqCg7nhby4yRC7G2+jYHY4Rguc2bjw7Uug4GIJuu1tvf2uHaZv5Q8zdt+WKJ6qK1FOI6amaWUo5FA==","shasum":"ef09ac2cc0533df1f3250ccf2c4d366b0d12114a","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/pidtree/-/pidtree-0.3.1.tgz","fileCount":10,"unpackedSize":19837,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJefTdBCRA9TVsSAnZWagAA24kQAImlWTl7mXmS5LlcLKGM\nqTJ6WOA32ErbArKfznYighe8yj6Izq/FLHfyKweInPIgbaYC1zGxkremx52m\ndpBR6awexm6mJoywbcfy5ZTub2itmiqRlW835RI0haVify262K31VEPKDWJR\n9wPqH+XBSiWkFcfGd8oX0KuqP4WDZ8Uyg1kv80m/sWbIMi7j2S5iDIuyCE8f\nXdd4m0MQn5JuolMau9qsQmPpujoP0dGqSDFvejXfW1Yd8L5SMgPhhBMQn2Nz\n/xzUO3X2Sar+aHpJBnurMmcaNTKDZL6bF4SIMwwP1/yY0EAXC6PPdHNofJO/\ndomv6PK0anKYhinUm68r7SgbgaTW6QNJ9LAMD2ylgc/bVRQ31L4I/NZb+zRR\nhShAtzZBh1syELi9jU9dUTRSOyfvCQv2PioIGiKY3GZ213aUnuNA4TPBc0wA\nnUPQEhKLjRscAksv22t02TwlVvIFQ/WkqLi7LPR8obXAjrhwJxTyum9Rw2oe\nIC4RE32cYH6xQjQIjgcjwyPuuQ7wzztq+eKO5oY2uc+sZRaUDbJiqxdJg1t/\npYDSbSWpQU2uyALieP8YYQXXc5mM2CfmgSnMX5bEBoz0PXgXfZTxl4FhicC+\nRVcgQrBFiphcBOZZuYJratC+SgGussxX9tJMrjFjycCJ0LnH3975Jddn5kWM\n/4sp\r\n=h7b+\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIDlIkBu2fwT1FY0apu1isDmlRs0f3pi8LXfE38MzpJf4AiAnPm170aSCeWafoO98I4oe0iMC7cn7FKs12ztucB7gZg=="}]},"maintainers":[{"name":"dev","email":"simonepri@outlook.com"}],"_npmUser":{"name":"dev","email":"simonepri@outlook.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/pidtree_0.3.1_1585264449007_0.08915524605096392"},"_hasShrinkwrap":false},"0.4.0":{"name":"pidtree","version":"0.4.0","description":"Cross platform children list of a PID","license":"MIT","homepage":"http://github.com/simonepri/pidtree#readme","repository":{"type":"git","url":"git+https://github.com/simonepri/pidtree.git"},"bugs":{"url":"https://github.com/simonepri/pidtree/issues","email":"simonepri@outlook.com"},"author":{"name":"Simone Primarosa","email":"simonepri@outlook.com","url":"https://github.com/simonepri"},"contributors":[{"name":"Simone Primarosa","email":"simonepri@outlook.com","url":"https://github.com/simonepri"}],"keywords":["ps-tree","ps","tree","ppid","pid","pidtree","pgrep","list","all","system","process","processes"],"main":"index.js","types":"index.d.ts","bin":{"pidtree":"bin/pidtree.js"},"engines":{"node":">=0.10"},"scripts":{"start":"node ./bin/pidtree.js","update":"npm-check -u","release":"np","lint":"xo","test":"nyc ava -m \"!*benchmark*\"","types":"tsd","bench":"ava -m \"*benchmark*\"","coverage":"codecov"},"devDependencies":{"ava":"~0.25.0","codecov":"^3.6.5","mockery":"^2.1.0","np":"^2.20.1","npm-check":"^5.9.2","nyc":"^11.6.0","pify":"^3.0.0","string-to-stream":"^1.1.0","through":"^2.3.8","time-span":"^2.0.0","tree-kill":"^1.1.0","tsd":"^0.11.0","xo":"~0.20.3"},"ava":{"verbose":true},"nyc":{"reporter":["lcovonly","text"]},"xo":{"prettier":true,"space":true,"rules":{"prefer-destructuring":0,"prefer-arrow-callback":0,"no-var":0,"object-shorthand":0,"unicorn/no-for-loop":0,"unicorn/prefer-string-slice":0,"unicorn/string-content":0}},"gitHead":"9778ce346759e0e271aa8ddb06da962b16c873c9","_id":"pidtree@0.4.0","_nodeVersion":"13.11.0","_npmVersion":"6.14.4","dist":{"integrity":"sha512-pGLtsfpWu421md4m6YKlg3aMI6zFoqfJ28QD4zE3ThQB+mKsAxPSaME/9taApTBsW+dnviIq0drxF7GGAm5+pA==","shasum":"d08edab26f3a608505b645b132079ef980bf4bf3","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/pidtree/-/pidtree-0.4.0.tgz","fileCount":11,"unpackedSize":21997,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJefTiSCRA9TVsSAnZWagAAYxsP/0iMutXAGmo6L93ZrnyD\nB6usCbJ/R36LvOxZCqMD7SY1SysO851naMzAoO08ZsmGoxN1tUq/bbPbwT2n\nbBYzFZ+ygxY0j3bcSOpktGCPqxXMZh7YMq25Ow42uiJSiUmK2aF0loQfa+2y\nJRvMTZvuYmmd0Sds8sqDc8UnSGuvpPIHHNDESYLirytiR9pFS2CXF4m7T2m+\n9lSnqbd4F6tflXceKpf/6ePe9wC0v6wlenwWFR2GTimx08a0fLLl0QtqGiTb\nBDnSnvbG7bmcH2r8jaFphF5J9mCkS159+/s/vuKiaEwWfM8/J4kISLqiI87E\nZG/cDpnf971E+sLSywjbZMOnKIu/z4O9X+nKhS85FwOD4coCT/ie1iYRlCMp\nhyTFvPf/N49oBDFxobuibSmFkL9FqjhTxenUEQ++6CAM3daaakM+psJ/+UD8\n7GAu1UgaIJGcBscp4kpotmoeL0jFdl7BLtu8qQYo1ZOSMTeeFNfdUsuSpfP7\nWJ4qP+IL3LPVrzLbez4CFhVoMCEWAzWQUtU1UBBxWiUHsyYc8BGePo46vgDQ\nZMuN1oeSZjDITrf3JlyAXKEsW+3jHMO7dtFdAIPEfYa/DHo793bqNhfNO3Kk\nx5zYqrkslQUmlse4VWjbtGE+jOOx0PM13m64LRENSaiN4ba9olplyhu3+cv4\nqt0c\r\n=Q/oc\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQC4deHOT8Gy9CPg8bqxNsVN0FsFgIfWVe3o7FGJZLVxhgIhALvNnATBPV2m5SFg0TcfMBW/CfQ7jxlY0ka4qmCmFvLZ"}]},"maintainers":[{"name":"dev","email":"simonepri@outlook.com"}],"_npmUser":{"name":"dev","email":"simonepri@outlook.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/pidtree_0.4.0_1585264785585_0.2542855684647085"},"_hasShrinkwrap":false},"0.5.0":{"name":"pidtree","version":"0.5.0","description":"Cross platform children list of a PID","license":"MIT","homepage":"http://github.com/simonepri/pidtree#readme","repository":{"type":"git","url":"git+https://github.com/simonepri/pidtree.git"},"bugs":{"url":"https://github.com/simonepri/pidtree/issues","email":"simonepri@outlook.com"},"author":{"name":"Simone Primarosa","email":"simonepri@outlook.com","url":"https://github.com/simonepri"},"contributors":[{"name":"Simone Primarosa","email":"simonepri@outlook.com","url":"https://github.com/simonepri"}],"keywords":["ps-tree","ps","tree","ppid","pid","pidtree","pgrep","list","all","system","process","processes"],"main":"index.js","types":"index.d.ts","bin":{"pidtree":"bin/pidtree.js"},"engines":{"node":">=0.10"},"scripts":{"start":"node ./bin/pidtree.js","update":"npm-check -u","release":"np","lint":"xo","test":"nyc ava -m \"!*benchmark*\"","types":"tsd","bench":"ava -m \"*benchmark*\"","coverage":"codecov"},"devDependencies":{"ava":"~0.25.0","codecov":"^3.6.5","mockery":"^2.1.0","np":"^2.20.1","npm-check":"^5.9.2","nyc":"^11.6.0","pify":"^3.0.0","string-to-stream":"^1.1.0","through":"^2.3.8","time-span":"^2.0.0","tree-kill":"^1.1.0","tsd":"^0.11.0","xo":"~0.20.3"},"ava":{"verbose":true},"nyc":{"reporter":["lcovonly","text"]},"xo":{"prettier":true,"space":true,"rules":{"prefer-destructuring":0,"prefer-arrow-callback":0,"no-var":0,"object-shorthand":0,"unicorn/no-for-loop":0,"unicorn/prefer-string-slice":0,"unicorn/string-content":0}},"gitHead":"42ccacb446d8376fe666d24ed81f686069d6ecff","_id":"pidtree@0.5.0","_nodeVersion":"13.11.0","_npmVersion":"6.14.4","dist":{"integrity":"sha512-9nxspIM7OpZuhBxPg73Zvyq7j1QMPMPsGKTqRc2XOaFQauDvoNz9fM1Wdkjmeo7l9GXOZiRs97sPkuayl39wjA==","shasum":"ad5fbc1de78b8a5f99d6fbdd4f6e4eee21d1aca1","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/pidtree/-/pidtree-0.5.0.tgz","fileCount":11,"unpackedSize":21998,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJelLnVCRA9TVsSAnZWagAAbHYP/i1ipmw8ybrSJR/ZOsMs\nPOC/sJU7E5yoQrfNR33KCCL1NWSrgnkAwBU7je+o/Y1B7A6XkHl6FmgBKOJ8\nn4xsal7hmVZM0detrfILm2GY58OzyRqgjMIAvydVoqq/hyjRrx8HSfRKXcEl\nuXxgi1aKIEYVWbf2dEG9NDzQmt+JGVzQWsmuWzUaS7F1appabcI1tDrt7/IC\n47SOoa/e8+MAodHcYxmSMq6FxxnYY0oz1pT4H6j7flOV2KD7YCo5abLeSaSU\nGDkYag3soN0wDLRQoHqNgHykiAHothhp5YdpzJxe/S4BRZepRD6SipBlWI+F\nUoqlw38EctqvCfzaZr8CDSAOrP7QGWfs4XYgKVFJO14RXpR97QeijJXRWi71\nmb74O/PyohMZxwqrAQEIaF9uolVGOPD4/y4+02ihA9SYOvh9rgzWgsymn7Zj\nGDxIl8vb6g81rGv476WAEHrMjMvsEnv6/246csqXS4AeEiwp9kMp4z4dekJR\n1rin7czwhTowyTrO8NdARCSu+ss9sETLENPi/ajSFH5Vji50fLvwikZtC0CY\nsA/LuHS6W3PNZwJ8fqJJzm0AAAQGZl7UFVbc9Nfi96WquVuKHztZzpI4YjX6\noLVjghoqvbFMzCvUb1Qd0h7VZkyp6u/k6GqcSM3AkAoX6yRZK3uS/LJ+97Z+\nZmwF\r\n=WhMX\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDYO/B/1J8dvurN1vf7sHWVNmL4dVoR1o7XJPHdl8OQMQIgK8EceVLxfadYf3T0Y+e48LPgMuyi1m5leOmyncUpGqs="}]},"maintainers":[{"name":"dev","email":"simonepri@outlook.com"}],"_npmUser":{"name":"dev","email":"simonepri@outlook.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/pidtree_0.5.0_1586805204709_0.14694612808741137"},"_hasShrinkwrap":false},"0.6.0":{"name":"pidtree","version":"0.6.0","description":"Cross platform children list of a PID","license":"MIT","homepage":"http://github.com/simonepri/pidtree#readme","repository":{"type":"git","url":"git+https://github.com/simonepri/pidtree.git"},"bugs":{"url":"https://github.com/simonepri/pidtree/issues","email":"simonepri@outlook.com"},"author":{"name":"Simone Primarosa","email":"simonepri@outlook.com","url":"https://github.com/simonepri"},"contributors":[{"name":"Simone Primarosa","email":"simonepri@outlook.com","url":"https://github.com/simonepri"}],"keywords":["ps-tree","ps","tree","ppid","pid","pidtree","pgrep","list","all","system","process","processes"],"main":"index.js","types":"index.d.ts","bin":{"pidtree":"bin/pidtree.js"},"engines":{"node":">=0.10"},"scripts":{"start":"node ./bin/pidtree.js","update":"npm-check -u","release":"np","lint":"xo","test":"nyc ava -m \"!*benchmark*\"","test:windows":"ava -m \"!*benchmark*\"","types":"tsd","bench":"ava -m \"*benchmark*\""},"devDependencies":{"ava":"~0.25.0","mockery":"^2.1.0","np":"^2.20.1","npm-check":"^5.9.2","nyc":"^11.6.0","pify":"^3.0.0","string-to-stream":"^1.1.0","through":"^2.3.8","time-span":"^2.0.0","tree-kill":"^1.1.0","tsd":"^0.11.0","xo":"~0.20.3"},"ava":{"verbose":true},"nyc":{"reporter":["lcovonly","text"]},"xo":{"prettier":true,"space":true,"rules":{"prefer-destructuring":0,"prefer-arrow-callback":0,"no-var":0,"object-shorthand":0,"unicorn/no-for-loop":0,"unicorn/prefer-string-slice":0,"unicorn/string-content":0}},"gitHead":"f0538145ae3966aca3e8a339fb24bb2118579df4","_id":"pidtree@0.6.0","_nodeVersion":"14.15.0","_npmVersion":"6.14.8","dist":{"integrity":"sha512-eG2dWTVw5bzqGRztnHExczNxt5VGsE6OwTeCG3fdUf9KBsZzO3R5OIIIzWR+iZA0NtZ+RDVdaoE2dK1cn6jH4g==","shasum":"90ad7b6d42d5841e69e0a2419ef38f8883aa057c","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/pidtree/-/pidtree-0.6.0.tgz","fileCount":11,"unpackedSize":23074,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQD7uz9NcVPgMpUV84MJREVr6lxLpa4UJs1EmV+reDFlpgIhAO/44XnS1hYfFxcRUeW6008Fr63+KLDuMgbm1wtT4HuZ"}],"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJinPeAACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmoLOQ/5AYzfzNi3Zf3sNA057tG2gGORjamT7SjXT9hl0A8PmAVWZkev\r\njRl5NI7b1HEkNMM3xBBVucuqrG7Ja+4LkvgY5VJBCSDbl0ZX3GjY2rgqZDZd\r\neylpyCthmyb02lUKb6bZnCSFdHhQlskOsxw7AvhkHsU0KdC27kw4xzVD8j7b\r\nTttq6u1alXM7GGcpD9Yfb0NmI4QwRbOfNYhpsniu/1MA56iqsqwjES3TL+fX\r\nuHLmbGi9+BPlB4eRQK2y3YwXpbD2+yRhss3WEww9PPsIiFR7lPnou5xRcQoV\r\nPY/zNXGEeOeqnFel7X6iYRuyMU/d8Z1kfS57mov6RAKoWtTzwmcJBAkiHLGl\r\nwqiA3HAp2rutvRCJuMtBHDUPlr2tjYl+JKqAzqbdte3oetQtbrK5egGQjw5Z\r\ndmhHWr571xfiVAdIBF4gJ1tJSvWafT4a0BmKb9foWk1Vc1ExKCnSuN4LSKyy\r\nljFgxGBWWgWTVxhMKxQwUCE7DRgyQxwoP/Yj6PHTkM9dr8bHp8MeaMAN8LTn\r\nYZ50dsiGk9eTIpYirjb2jCuIMmkX8qih7lB8pR/7jB7uCqSLWu7i2D1pJHPq\r\nt4tGMq7oR6GCGt4czgaNmhwxjSPyCP49e4RbnIaVyKRMv0+vfiRxjSzAppgY\r\n0prjvv0v0vWCERG81txYxFQc8JqB/ufY/zM=\r\n=Ix/V\r\n-----END PGP SIGNATURE-----\r\n"},"_npmUser":{"name":"dev","email":"simone.primarosa@gmail.com"},"directories":{},"maintainers":[{"name":"dev","email":"simone.primarosa@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/pidtree_0.6.0_1654454144072_0.04881872597802617"},"_hasShrinkwrap":false}},"name":"pidtree","time":{"created":"2018-03-19T03:36:56.724Z","0.1.1":"2018-03-19T03:36:56.777Z","modified":"2023-06-09T21:32:31.223Z","0.1.2":"2018-03-19T09:16:00.821Z","0.1.3":"2018-03-19T09:24:30.564Z","0.1.4":"2018-03-19T11:04:28.037Z","0.2.0":"2018-03-19T12:22:32.683Z","0.3.0":"2018-03-20T16:35:37.989Z","0.3.1":"2020-03-26T23:14:09.131Z","0.4.0":"2020-03-26T23:19:45.751Z","0.5.0":"2020-04-13T19:13:24.942Z","0.6.0":"2022-06-05T18:35:44.206Z"},"contributors":[{"name":"Simone Primarosa","email":"simonepri@outlook.com","url":"https://github.com/simonepri"}],"readmeFilename":"readme.md","homepage":"http://github.com/simonepri/pidtree#readme"}