-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.43 KB
/
package.json
File metadata and controls
38 lines (38 loc) · 1.43 KB
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
{
"name": "node-port-check",
"version": "2.0.1",
"description": "Check if a TCP port is in use and tries to return an incremented version of your port if it's found available.",
"main": "lib/index",
"typings": "lib/index",
"scripts": {
"tsc:watch": "tsc --watch",
"generate:readme": "node ./readme/index.js",
"deployDev": "tsc --listEmittedFiles && npm run test && npm run generate:readme && git add -A && git commit -a -m \"deploy tsc build\" && npm version patch && git pull --progress -v --no-rebase \"origin\" && git push --tags --progress \"origin\" master:master",
"test-simple": "node test/example_1_simple.js",
"test-multiple-ports": "node test/example_2_multiple_ports.js",
"test-multiple-ports-part-2": "node test/example_3_multiple_ports_part_2.js",
"test-check-port": "node test/example_4_check_port.js"
},
"keywords": [
"node",
"port check",
"check port",
"free port",
"available port"
],
"repository": {
"type": "git",
"url": "git+https://github.com/darklightcode/node-port-check.git"
},
"author": "darklightcode <https://github.com/darklightcode> (https://github.com/darklightcode)",
"license": "MIT",
"bugs": {
"url": "https://github.com/darklightcode/node-port-check/issues"
},
"homepage": "https://github.com/darklightcode/node-port-check#readme",
"devDependencies": {
"@types/node": "^10.3.4",
"semver": "^5.5.0",
"typescript": "^2.9.2"
}
}