forked from tiaanduplessis/kill-port
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.01 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
{
"name": "kill-port",
"version": "1.4.0",
"description": "Kill the process running on given port",
"license": "MIT",
"main": "index.js",
"repository": {
"type": "git",
"url": "https://github.com/tiaanduplessis/kill-port.git"
},
"homepage": "https://github.com/tiaanduplessis/kill-port",
"bugs": "https://github.com/tiaanduplessis/kill-port/issues",
"author": "Tiaan du Plessis",
"bin": {
"kill-port": "cli.js"
},
"scripts": {
"start": "npm run dev",
"pretest": "npm run lint",
"test": "jest --env=node",
"test:watch": "npm test -- --watch",
"coverage": "npm test -- --coverage",
"lint": "standard --fix",
"precommit": "npm test"
},
"keywords": [
"port",
"process",
"kill",
"kill-port",
"port"
],
"dependencies": {
"get-them-args": "^1.3.1",
"shell-exec": "^1.0.2"
},
"devDependencies": {
"husky": "^2.2.0",
"jest": "^24.7.1",
"standard": "^12.0.1"
},
"standard": {
"env": {
"jest": true
}
}
}