forked from hawkeyesec/scanner-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.52 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
51
52
53
54
55
56
57
58
59
60
61
{
"name": "hawkeye-scanner",
"description": "A container that runs some scans on your app",
"version": "0.0.0",
"homepage": "https://github.com/Stono/hawkeye",
"author": {
"name": "Karl Stoney",
"email": "[email protected]",
"url": "https://karlstoney.com"
},
"repository": {
"type": "git",
"url": "git://github.com/Stono/hawkeye.git"
},
"bugs": {
"url": "https://github.com/Stono//issues"
},
"main": "index",
"engines": {
"node": ">= 6.11.1"
},
"scripts": {
"test": "./node_modules/grunt/bin/grunt mochaTest",
"start": "node ./bin/hawkeye",
"example": "node ./bin/hawkeye-scan -t test/samples/nodejs"
},
"bin": {
"hawkeye": "./bin/hawkeye"
},
"devDependencies": {
"deride": "1.2.0",
"grunt": "1.0.2",
"grunt-contrib-jshint": "1.1.0",
"grunt-contrib-watch": "1.1.0",
"grunt-mocha-istanbul": "5.0.2",
"grunt-mocha-test": "0.13.3",
"istanbul": "0.4.5",
"mocha": "5.2.0",
"mocha-jenkins-reporter": "0.3.12",
"should": "13.2.1"
},
"keywords": [],
"license": "Apache-2.0",
"dependencies": {
"async": "2.6.1",
"colors": "1.3.0",
"command-exists": "1.2.6",
"commander": "2.15.1",
"console.table": "git+https://github.com/Stono/console.table.git",
"debug": "3.1.0",
"glob": "7.1.2",
"is-valid-path": "^0.1.1",
"istextorbinary": "^2.1.0",
"lodash": "4.17.10",
"npm-check-updates": "2.14.2",
"nsp": "3.2.1",
"request": "2.87.0",
"semver": "5.5.0",
"xml2js": "^0.4.19"
}
}