-
Notifications
You must be signed in to change notification settings - Fork 40
/
package.json
41 lines (41 loc) · 915 Bytes
/
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
{
"name": "kill-port",
"version": "2.0.1",
"description": "Kill 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",
"lint": "standard --fix",
"precommit": "npm test",
"check": "npm-check -u"
},
"keywords": [
"port",
"process",
"kill",
"kill-port",
"port"
],
"dependencies": {
"get-them-args": "1.3.2",
"shell-exec": "1.0.2"
},
"devDependencies": {
"jest": "28.1.0",
"npm-check": "^5.9.2",
"standard": "17.0.0"
}
}