forked from stdarg/tcp-port-used
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 loc) · 897 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
{
"name": "tcp-port-used",
"version": "1.0.0",
"description": "A simple Node.js module to check if a TCP port is already bound.",
"main": "index.js",
"types": "index.d.ts",
"scripts": {
"test": "./node_modules/.bin/mocha --reporter=list ./test.js"
},
"repository": {
"type": "git",
"url": "git://github.com/stdarg/tcp-port-used.git"
},
"keywords": [
"tcp",
"port",
"available",
"free",
"check",
"networking"
],
"author": "Edmond Meinfelder",
"license": "MIT",
"bugs": {
"url": "https://github.com/stdargtcp-port-used/issues"
},
"homepage": "https://github.com/stdarg/tcp-port-used",
"dependencies": {
"debug": "3.1.0",
"is2": "2.0.1"
},
"devDependencies": {
"mocha": "5.2.0"
},
"typeScriptVersion": "3.1.2"
}