forked from chrisallenlane/drek
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.44 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
{
"name": "drek",
"version": "1.0.3",
"description": "A static-code-analysis tool that can be used to perform security-focused code reviews. It enables an auditor to swiftly map the attack-surface of a large application, with an emphasis on identifying development anti-patterns and footguns.",
"homepage": "https://github.com/chrisallenlane/drek",
"author": {
"name": "Chris Allen Lane",
"email": "[email protected]"
},
"license": "MIT",
"scripts": {
"less": "lessc app/static/app.less app/static/app.css",
"lint": "jshint app test",
"test": "tape 'test/*.js' | faucet"
},
"jshintConfig": {
"esnext": true,
"expr": true,
"laxbreak": true
},
"dependencies": {
"docopt": "0.6.2",
"ejs": "^2.5.6",
"expand-tilde": "^2.0.2",
"glob": "^7.1.2",
"json2csv": "^3.7.3",
"lodash": "^4.17.4",
"moment": "^2.18.1",
"node-prismjs": "^0.1.0",
"prismjs": "^1.6.0",
"rc": "^1.2.1",
"uuid-v4": "^0.1.0",
"xmlbuilder": "^9.0.1",
"yamljs": "^0.3.0"
},
"devDependencies": {
"faucet": "0.0.1",
"jshint": "2.9.5",
"less": "^2.7.2",
"tape": "^4.6.3"
},
"keywords": [
"security",
"static-code-analysis"
],
"repository": {
"type": "git",
"url": "https://github.com/chrisallenlane/drek"
},
"bugs": {
"url": "https://github.com/chrisallenlane/drek/issues"
},
"bin": {
"drek": "app/index.js"
},
"main": "app/index.js"
}