-
Notifications
You must be signed in to change notification settings - Fork 26
/
package.json
37 lines (37 loc) · 851 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
37
{
"name": "node-nmap",
"version": "4.0.0",
"description": "Interfaces with locally installed NMAP",
"main": "index.js",
"scripts": {
"test": "./node_modules/.bin/mocha --reporter spec",
"app": "node app.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Johnhhorton/node-nmap.git"
},
"keywords": [
"nmap",
"network",
"scan"
],
"author": "John H Horton",
"license": "MIT",
"bugs": {
"url": "https://github.com/Johnhhorton/node-nmap/issues"
},
"licenses": [{
"type": "MIT",
"url": "https://github.com/brentertz/scapegoat/blob/master/LICENSE-MIT"
}],
"homepage": "https://github.com/Johnhhorton/node-nmap#readme",
"dependencies": {
"queued-up": "^2.0.2",
"xml2js": "^0.4.15"
},
"devDependencies": {
"chai": "^3.4.0",
"mocha": "^2.3.3"
}
}