-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 1.13 KB
/
package.json
File metadata and controls
34 lines (34 loc) · 1.13 KB
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
{
"name": "broken-access-control-lab",
"version": "1.0.0",
"description": "A hands-on CTF-style lab for learning Broken Access Control (OWASP A01:2021)",
"main": "src/app.js",
"scripts": {
"start": "node src/app.js",
"dev": "nodemon src/app.js",
"test": "jest --runInBand --forceExit",
"test:01": "jest exercises/01-idor --runInBand --forceExit --verbose",
"test:02": "jest exercises/02-escalation --runInBand --forceExit --verbose",
"test:03": "jest exercises/03-jwt-abuse --runInBand --forceExit --verbose",
"test:04": "jest exercises/04-context-bypass --runInBand --forceExit --verbose",
"test:05": "jest exercises/05-multitenant --runInBand --forceExit --verbose",
"test:watch": "jest --watch --runInBand"
},
"keywords": ["security", "ctf", "owasp", "access-control", "education"],
"license": "MIT",
"dependencies": {
"express": "^4.18.2",
"jsonwebtoken": "8.5.1",
"bcryptjs": "^2.4.3"
},
"devDependencies": {
"jest": "^29.7.0",
"supertest": "^6.3.4",
"nodemon": "^3.0.2"
},
"jest": {
"testEnvironment": "node",
"testTimeout": 10000,
"verbose": true
}
}