This repository has been archived by the owner on Jun 9, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 89
/
Copy pathpackage.json
89 lines (89 loc) · 2.08 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
{
"name": "@hawkeyesec/scanner-cli",
"description": "A project security, vulnerability and general risk highlighting tool",
"version": "1.8.1",
"license": "Apache-2.0",
"keywords": [],
"homepage": "https://github.com/Stono/hawkeye",
"author": {
"name": "Karl Stoney",
"email": "me@karlstoney.com",
"url": "https://karlstoney.com"
},
"contributors": [
{
"name": "Felix Hammerl",
"email": "felix.hammerl@gmail.com",
"url": "https://felixhammerl.com"
}
],
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git://github.com/Stono/hawkeye.git"
},
"bugs": {
"url": "https://github.com/Stono/issues"
},
"main": "index",
"engines": {
"node": ">= 8.9.0"
},
"scripts": {
"preversion": "npm test",
"postversion": "git push && git push --tags",
"start": "node ./bin/hawkeye",
"example": "node ./bin/hawkeye-scan -t test/samples/nodejs",
"watch": "nodemon --watch . --exec 'npm test'",
"test": "npx npm-run-all test:lint test:unit",
"test:lint": "npx standard",
"test:lint:fix": "npx standard --fix",
"test:unit": "NODE_ENV=testing npx mocha 'lib/**/*-unit.js' -R 'spec' testutils.js"
},
"bin": {
"hawkeye": "./bin/hawkeye"
},
"dependencies": {
"colors": "^1.4.0",
"command-exists": "^1.2.8",
"commander": "^4.1.1",
"console.table": "^0.10.0",
"glob": "^7.1.6",
"is-valid-path": "^0.1.1",
"istextorbinary": "^3.3.0",
"lodash": "^4.17.20",
"semver": "^7.1.3",
"superagent": "^5.2.1",
"tmp": "^0.1.0",
"xml2js": "^0.4.23"
},
"devDependencies": {
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"mocha": "^7.2.0",
"nock": "^12.0.0",
"nodemon": "^2.0.2",
"npm-run-all": "^4.1.5",
"pre-commit": "^1.2.2",
"sinon": "^8.1.1",
"sinon-chai": "^3.4.0",
"standard": "^14.3.1"
},
"standard": {
"globals": [
"describe",
"it",
"before",
"beforeEach",
"afterEach",
"after",
"expect",
"sinon"
]
},
"pre-commit": [
"test"
]
}