forked from cristianstaicu/SecBench.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.02 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
{
"name": "vulnerabilities4js",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cristianstaicu/vulnerabilities4js.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/cristianstaicu/vulnerabilities4js/issues"
},
"devDependencies": {
"husky": "^4.3.0",
"jest": "^26.4.2",
"lint-staged": "^10.5.0",
"prettier": "2.1.2"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"**/*": "prettier --write --ignore-unknown"
},
"homepage": "https://github.com/cristianstaicu/vulnerabilities4js#readme",
"dependencies": {
"command-injection": "./command-injection/",
"escodegen": "^2.0.0",
"esprima": "^4.0.1",
"estraverse": "^5.3.0",
"path-traversal": "./path-traversal/",
"prototype-pollution": "./prototype-pollution/",
"redos": "./redos/"
}
}