forked from OWASP/NodeGoat
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.3 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
{
"name": "owasp-nodejs-goat",
"version": "1.3.0",
"description": "A tool to learn OWASP Top 10 for node.js developers",
"main": "server.js",
"dependencies": {
"bcrypt-nodejs": "0.0.3",
"body-parser": "^1.12.4",
"consolidate": "^0.12.1",
"csurf": "^1.8.2",
"dont-sniff-mimetype": "^0.1.0",
"express": "^4.12.3",
"express-session": "^1.11.2",
"forever": "^0.14.1",
"helmet": "^0.9.0",
"mongodb": "^2.0.31",
"serve-favicon": "^2.2.0",
"swig": "^1.4.2",
"underscore": "^1.8.3",
"validator": "^3.39.0"
},
"engines": {
"node": "0.12.x",
"npm": "2.7.x"
},
"scripts": {
"start": "node server.js",
"test": "node node_modules/grunt-cli/bin/grunt test"
},
"devDependencies": {
"async": "^1.5.0",
"chromedriver": "^2.19.0",
"grunt": "^0.4.5",
"grunt-cli": "^0.1.13",
"grunt-concurrent": "^1.0.0",
"grunt-contrib-jshint": "^0.11.2",
"grunt-contrib-watch": "^0.6.1",
"grunt-env": "latest",
"grunt-jsbeautifier": "^0.2.10",
"grunt-mocha-test": "^0.12.7",
"grunt-nodemon": "^0.4.0",
"grunt-retire": "^0.3.10",
"mocha": "^2.2.4",
"selenium-webdriver": "2.47.0",
"should": "^7.1.1",
"zaproxy": "^0.2.0"
},
"repository": "https://github.com/OWASP/NodejsGoat",
"license": "Apache 2.0"
}