-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
59 lines (59 loc) · 1.58 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
{
"name": "cross-port-killer",
"version": "1.4.0",
"description": "Kill the process running on a given TCP port on Windows, Linux and Mac",
"keywords": [
"port",
"process",
"kill",
"kill-port",
"cross-platform",
"windows",
"linux",
"mac"
],
"main": "source/index.js",
"types": "source/index.d.ts",
"bin": {
"kill-port": "source/cli.js"
},
"scripts": {
"prepare": "npm run build && npm test",
"build": "tsc",
"precommit": "npm run prettier",
"prepush": "npm test",
"pretest": "npm run build",
"test": "mocha --no-timeouts",
"prettier": "prettier \"*/**/*.ts\" --config .prettierrc --write && git add ."
},
"repository": {
"type": "git",
"url": "https://github.com/milewski/cross-port-killer.git"
},
"files": [
"source/*.js",
"source/*.d.ts",
"test"
],
"author": {
"name": "Rafael Milewski",
"email": "rafael.milewski@gmail.com",
"url": "https://github.com/milewski"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/milewski/cross-port-killer/issues"
},
"homepage": "https://github.com/milewski/cross-port-killer",
"devDependencies": {
"@types/mocha": "^9.0.0",
"@types/node": "^17.0.8",
"expect.js": "^0.3.1",
"http-server": "^14.1.0",
"husky": "^7.0.4",
"mocha": "^9.1.3",
"prettier": "^2.5.1",
"ps-list": "^7.2.0",
"typescript": "^4.5.4"
}
}