-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
58 lines (58 loc) · 1.33 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
{
"name": "kill-port-process",
"version": "3.2.1",
"description": "Easily kill hanging processes on ports - on any platform!",
"main": "dist/lib/index.js",
"bin": {
"kill-port": "dist/bin/kill-port-process.js"
},
"types": "dist/lib/index.d.ts",
"scripts": {
"build": "tsc",
"eslint": "eslint . --ext .ts",
"lint": "npm run eslint",
"test": "mocha test/*.spec.ts",
"pretest": "npm run build",
"prepare": "npm run build && npm test",
"preversion": "npm run build && npm test",
"postversion": "git push && git push --tags"
},
"keywords": [
"process",
"kill",
"kill process",
"port",
"kill port",
"kill port process"
],
"author": "Daniel Hillmann",
"license": "ISC",
"dependencies": {
"get-them-args": "1.3.2",
"pid-from-port": "1.1.3"
},
"devDependencies": {
"@types/chai": "4.3.17",
"@types/mocha": "10.0.10",
"@types/node": "22.13.1",
"@types/pid-from-port": "1.1.2",
"@typescript-eslint/eslint-plugin": "8.23.0",
"@typescript-eslint/parser": "8.23.0",
"chai": "4.5.0",
"eslint": "9.20.0",
"mocha": "11.1.0",
"ts-node": "10.9.2",
"typescript": "5.7.3"
},
"repository": {
"type": "git",
"url": "https://github.com/hilleer/kill-port-process"
},
"bugs": {
"url": "https://github.com/hilleer/kill-port-process/issues",
"email": "hiller@live.dk"
},
"engines": {
"node": ">=16"
}
}