forked from juice-shop/juice-shop
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
146 lines (146 loc) · 3.74 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
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
{
"name": "juice-shop",
"version": "3.2.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", "Aaron Edwards", "Alec Brooks", "Dinis Cruz", "Timo Pagel", "Gorka Vicente", "Alvaro Viebrantz",
"Johanna A", "Stephen OBrien", "Joe Butler", "Abhishek bundela", "ninoseki", "Jannik Hollenbach"
],
"private": true,
"keywords": [
"web security",
"web application security",
"webappsec",
"owasp",
"pentest",
"pentesting",
"security",
"vulnerable",
"vulnerability",
"broken",
"bodgeit"
],
"dependencies": {
"body-parser": "~1.17",
"bower": "~1.8",
"colors": "~1.1",
"config": "~1.26",
"cookie-parser": "~1.4",
"cors": "~2.8",
"errorhandler": "~1.5",
"express": "~4.15",
"express-jwt": "~5.3",
"fs-extra": "^3.0.0",
"glob": "~5.0",
"grunt": "~1.0",
"grunt-angular-templates": "~1.1",
"grunt-cli": "~1.2",
"grunt-contrib-clean": "~1.1",
"grunt-contrib-compress": "~1.4",
"grunt-contrib-concat": "~1.0",
"grunt-contrib-uglify": "~2.3",
"grunt-text-replace": "~0.4",
"hashids": "~1.1",
"helmet": "~3.6",
"html-entities": "~1.2",
"js-yaml": "~3.8.2",
"jsonwebtoken": "~7.4",
"jssha": "~2.3",
"morgan": "~1.8",
"multer": "~1.3",
"pdfkit": "~0.8",
"replace": "~0.3",
"request": "~2.81.0",
"sanitize-html": "1.4.2",
"sequelize": "~1.7",
"sequelize-restful": "~0.4",
"serve-favicon": "~2.4",
"serve-index": "~1.8",
"socket.io": "~1.7",
"sqlite3": "3.1",
"z85": "~0.0"
},
"devDependencies": {
"codeclimate-test-reporter": "~0.4",
"cross-spawn": "~5.1",
"form-data": "~1.0",
"frisby": "~0.8",
"http-server": "~0.10",
"istanbul": "~0.4",
"jasmine-node": "~1.14",
"jasmine-reporters": "~1.0",
"karma": "~1.1",
"karma-chrome-launcher": "~1.0",
"karma-cli": "~1.0",
"karma-coverage": "~1.1",
"karma-firefox-launcher": "~1.0",
"karma-jasmine": "~0.1",
"karma-junit-reporter": "~1.2",
"karma-phantomjs-launcher": "~1.0",
"karma-safari-launcher": "~1.0",
"lcov-result-merger": "~1.2",
"phantomjs-prebuilt": "~2.1",
"protractor": "~4.0",
"shelljs": "~0.7",
"socket.io-client": "~1.7",
"standard": "~8.6",
"stryker": "~0",
"stryker-api": "~0",
"stryker-html-reporter": "~0",
"stryker-jasmine": "~0",
"stryker-karma-runner": "~0"
},
"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": "bower install && grunt minify && grunt docker",
"start": "node app",
"test": "standard && 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",
"stryker": "stryker run stryker.conf.js"
},
"engines": {
"node": "~4 ~6 ~7"
},
"standard": {
"ignore": [
"/app/private/**"
],
"env": [
"jasmine",
"node",
"browser"
],
"globals": [
"angular",
"$",
"browser",
"protractor",
"it",
"xit",
"element",
"by",
"expect",
"describe",
"jasmine",
"inject",
"spyOn",
"beforeEach",
"afterEach"
]
}
}