-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 819 Bytes
/
package.json
File metadata and controls
40 lines (40 loc) · 819 Bytes
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
{
"name": "carat",
"version": "0.4.1",
"description": "Scans NodeJS programs for vulnerabilities. ",
"main": "index.js",
"bin": {
"carat": "./bin/carat"
},
"scripts": {
"validate": "npm ls",
"test": "./node_modules/lab/bin/lab -a code -Lvf",
"check": "./bin/carat index.js"
},
"author": "Caleb",
"license": "ISC",
"repository": "coder13/carat",
"engines": {
"node": "^4.x"
},
"dependencies": {
"chalk": "^1.0.0",
"debug": "^2.2.0",
"escodegen": "^1.7.0",
"espect": "^0.1.2",
"espree": "^2.2.5",
"lodash": "^3.10.1",
"prettyjson": "^1.1.1",
"resolve": "^1.1.6",
"yargs": "^3.9.0"
},
"devDependencies": {
"code": "^1.5.0",
"git-validate": "^2.1.0",
"lab": "^6.2.0"
},
"pre-commit": [
"validate",
"test"
]
}