-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.1 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.1 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
39
40
41
{
"name": "portastic",
"version": "1.0.1",
"description": "Pure javascript swiss knife for port management",
"main": "index.js",
"scripts": {
"test": "mocha --tdd --bail test/**/*-test.js",
"travis": "./node_modules/.bin/istanbul cover ./node_modules/.bin/_mocha --report lcovonly -- -R spec test/**/*-test.js && cat ./coverage/lcov.info | ./node_modules/.bin/coveralls && rm -rf ./coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/alanhoff/node-portastic.git"
},
"keywords": [
"port",
"management",
"open ports",
"find open",
"interface"
],
"author": "Alan Hoffmeister <alanhoffmeister@gmail.com>",
"license": "ISC",
"bugs": {
"url": "https://github.com/alanhoff/node-portastic/issues"
},
"bin": {
"portastic": "./bin/portastic"
},
"homepage": "https://github.com/alanhoff/node-portastic#readme",
"dependencies": {
"bluebird": "^2.9.34",
"commander": "^2.8.1",
"debug": "^2.2.0"
},
"devDependencies": {
"chai": "^3.2.0",
"coveralls": "^2.11.4",
"istanbul": "^0.3.17",
"mocha": "^2.2.5"
}
}