-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
33 lines (33 loc) · 917 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
{
"name": "listening-processes",
"version": "1.2.0",
"description": "A simple NPM module for retrieving pertinent info on processes which are listening on local ports, and for killing those processes using shell commands `lsof`, `ps`, and `kill` in the background.",
"main": "listening-processes.js",
"repository": {
"type": "git",
"url": "https://github.com/matthewgonzalez/listening-processes"
},
"scripts": {
"test": "eslint . && jest"
},
"keywords": [
"listening",
"process",
"processes",
"tcp",
"port",
"kill"
],
"author": "Matthew Gonzalez",
"license": "MIT",
"devDependencies": {
"eslint": "^4.4.1",
"eslint-config-standard": "^10.2.1",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-node": "^5.1.1",
"eslint-plugin-promise": "^3.5.0",
"eslint-plugin-standard": "^3.0.1",
"jest": "^20.0.4"
},
"dependencies": {}
}