forked from milewski/cross-port-killer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) · 1.51 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
64
{
"name": "cross-port-killer",
"version": "0.0.0-development",
"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",
"bin": {
"kill-port": "source/cli.js"
},
"scripts": {
"prepare": "npm run build && npm test",
"build": "tsc",
"commit": "git-cz",
"prepush": "npm test",
"pretest": "npm run build",
"test": "mocha --no-timeouts",
"semantic-release": "semantic-release pre && npm publish && semantic-release post"
},
"repository": {
"type": "git",
"url": "https://github.com/milewski/cross-port-killer.git"
},
"files": [
"source/*.js",
"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": "^2.2.41",
"@types/node": "^8.0.14",
"cz-conventional-changelog": "^2.0.0",
"expect.js": "^0.3.1",
"http-server": "^0.10.0",
"husky": "^0.14.3",
"mocha": "^3.4.2",
"ps-list": "^3.1.0",
"semantic-release": "^6.3.6",
"typescript": "^2.4.2"
},
"dependencies": {},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
}
}