-
Notifications
You must be signed in to change notification settings - Fork 15
/
package.json
50 lines (50 loc) · 1.03 KB
/
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
38
39
40
41
42
43
44
45
46
47
48
49
50
{
"name": "grab.js",
"version": "2.1.0",
"description": "zgrab in node.js",
"keywords": [
"banner",
"fingerprinting",
"scan",
"security"
],
"main": "lib/",
"scripts": {
"test": "mocha tests",
"test-cov": "istanbul cover --report html _mocha -- -R spec tests/*.js",
"test-travis": "istanbul cover --report lcovonly _mocha -- -R spec tests/*.js"
},
"bin": {
"grab.js": "./cli.js"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/ChiChou/grab.js.git"
},
"author": "CodeColorist",
"license": "GPL-2.0",
"files": [
"lib",
"nmap/parsers/",
"nmap/payloads",
"cli.js",
"LICENSE",
"README.md"
],
"bugs": {
"url": "https://github.com/ChiChou/grab.js/issues"
},
"homepage": "https://github.com/ChiChou/grab.js#readme",
"devDependencies": {
"chai": "^3.5.0",
"coveralls": "^2.11.9",
"istanbul": "^0.4.3",
"mocha": "^2.4.5"
},
"engines": {
"node": ">=4.0"
},
"dependencies": {
"commander": "^2.9.0"
}
}