forked from apify/ps-tree
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.54 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
{
"name": "@apify/ps-tree",
"version": "1.1.3",
"description": "Get all children of a pid",
"license": "MIT",
"homepage": "https://github.com/apifytech/ps-tree",
"repository": "https://github.com/apifytech/ps-tree",
"bugs": {
"url": "https://github.com/apifytech/ps-tree/issues"
},
"author": "Charlie Robbins <[email protected]>",
"contributors": [
"Zhuohuan LI <[email protected]> (https://github.com/zixia)",
"Simone Primarosa <[email protected]> (https://github.com/simonepri)"
],
"keyboards": [
"ps-tree",
"ps",
"tree",
"ppid",
"pid"
],
"main": "index.js",
"bin": {
"ps-tree": "./bin/ps-tree.js"
},
"files": [
"bin",
"index.js"
],
"engines": {
"node": ">= 0.10"
},
"scripts": {
"_comment": "https://github.com/gotwarlost/istanbul#usage-on-windows",
"test": "istanbul cover node_modules/tape/bin/tape test/test.js test/direct.js",
"coverage": "npm test && istanbul check-coverage --statements 100 --functions 100 --lines 100 --branches 100",
"codeclimate": "cross-env CODECLIMATE_REPO_TOKEN=84436b4f13c70ace9c62e7f04928bf23c234eb212c0232d39d7fb1535beb2da5 codeclimate < coverage/lcov.info"
},
"dependencies": {
"event-stream": "3.3.4"
},
"devDependencies": {
"chalk": "^1.0.0",
"codeclimate-test-reporter": "0.0.4",
"cross-env": "^1.0.8",
"istanbul": "^0.3.20",
"pre-commit": "0.0.9",
"precommit": "^1.1.5",
"tape": "^3.0.3",
"tree-kill": "^1.1.0"
},
"pre-commit": [
"coverage",
"codeclimate"
]
}