forked from juice-shop/juice-shop
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
104 lines (103 loc) · 3.1 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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
{
"name": "juice-shop",
"version": "2.3.0",
"description": "An intentionally insecure Javascript Web Application",
"homepage": "https://www.owasp.org/index.php/OWASP_Juice_Shop_Project",
"author": "Bjoern Kimminich <[email protected]> (https://www.owasp.org/index.php/User:Bjoern_Kimminich)",
"contributors": [
"Bjoern Kimminich"
],
"private": true,
"keywords": [
"web security",
"web application security",
"webappsec",
"owasp",
"pentest",
"pentesting",
"security",
"vulnerable",
"vulnerability",
"broken",
"bodgeit"
],
"dependencies": {
"sequelize": "~1.7",
"sqlite3": "3.1",
"express": "~4.14",
"errorhandler": "~1.4",
"cookie-parser": "~1.4",
"serve-index": "~1.8",
"serve-favicon": "~2.3",
"body-parser": "~1.15",
"sequelize-restful": "~0.4",
"morgan": "~1.7",
"sanitize-html": "1.4.2",
"express-jwt": "~3.4",
"jsonwebtoken": "~7.1",
"helmet": "~2.1",
"pdfkit": "~0.7",
"z85": "~0.0",
"glob": "~5.0",
"colors": "~1.1",
"grunt": "~0.4",
"grunt-cli": "~0.1",
"grunt-angular-templates": "~1.0",
"grunt-contrib-uglify": "~1.0",
"grunt-contrib-concat": "~1.0",
"grunt-contrib-clean": "~1.0",
"grunt-contrib-compress": "~1.3",
"bower": "~1.7",
"saucelabs": "~1.2"
},
"devDependencies": {
"frisby": "~0.8",
"jasmine-node": "~1.14",
"karma": "~1.1",
"karma-cli": "~1.0",
"karma-junit-reporter": "~1.1",
"karma-coverage": "~1.1",
"karma-chrome-launcher": "~1.0",
"karma-sauce-launcher": "~1.0",
"karma-firefox-launcher": "~1.0",
"karma-safari-launcher": "~1.0",
"karma-phantomjs-launcher": "~1.0",
"karma-jasmine": "~0.1",
"protractor": "~4.0",
"jasmine-reporters": "~1.0",
"http-server": "~0.9",
"shelljs": "~0.7",
"win-spawn": "~2.0",
"codeclimate-test-reporter": "~0.3",
"istanbul": "~0.4",
"lcov-result-merger": "~1.2",
"grunt-retire": "~0.3",
"grunt-zaproxy": "~0.1",
"grunt-exec": "~0.4",
"phantomjs-prebuilt": "~2.1"
},
"peerDependencies": {
"phantomjs-prebuilt": "~2.1"
},
"repository": {
"type": "git",
"url": "https://github.com/bkimminich/juice-shop.git"
},
"bugs": {
"url": "https://github.com/bkimminich/juice-shop/issues"
},
"license": "MIT",
"scripts": {
"postinstall": "node bower_install.js && node grunt_minify.js",
"start": "node app",
"test": "karma start karma.conf.js && istanbul cover ./test/serverTests.js",
"preupdate-webdriver": "npm install",
"update-webdriver": "webdriver-manager update",
"preprotractor": "npm run update-webdriver",
"protractor": "node test/e2eTests.js"
},
"subdomain": "juice-shop",
"engines": {
"node": ">=4 <7"
}
}