-
Notifications
You must be signed in to change notification settings - Fork 44
/
package.json
63 lines (63 loc) · 1.21 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
58
59
60
61
62
63
{
"name": "find-process",
"version": "1.4.7",
"description": "find process info by port/pid/name etc.",
"main": "index.js",
"types": "index.d.ts",
"scripts": {
"test": "mocha test/*.test.js && standard",
"lint": "standard --fix && npm-ensure -t deps"
},
"bin": {
"find-process": "bin/find-process.js"
},
"ensure": {
"deps": {
"checkDirs": [
"lib/*",
"bin/*",
"*.js"
]
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/yibn2008/find-process.git"
},
"keywords": [
"node",
"process",
"pid",
"port"
],
"standard": {
"globals": [
"describe",
"beforeEach",
"afterEach",
"it"
],
"ignore": [
"/node_modules",
"/doc",
"/example",
"/test"
]
},
"author": "zoujie <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/yibn2008/find-process/issues"
},
"homepage": "https://github.com/yibn2008/find-process#readme",
"dependencies": {
"chalk": "^4.0.0",
"commander": "^5.1.0",
"loglevel": "^1.8.0"
},
"devDependencies": {
"mocha": "^7.2.0",
"npm-ensure": "^1.2.0",
"standard": "^14.3.4"
}
}