-
-
Notifications
You must be signed in to change notification settings - Fork 113
/
package.json
105 lines (105 loc) · 2.35 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
{
"name": "juice-shop-ctf-cli",
"version": "11.0.0",
"description": "Capture-the-Flag (CTF) environment setup tools for OWASP Juice Shop",
"keywords": [
"web security",
"web application security",
"webappsec",
"owasp",
"pentest",
"pentesting",
"security",
"vulnerable",
"vulnerability",
"broken",
"capture the flag",
"ctf",
"ctfd",
"fbctf",
"rtb",
"cli"
],
"homepage": "https://owasp-juice.shop",
"bugs": {
"url": "https://github.com/juice-shop/juice-shop-ctf/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/juice-shop/juice-shop-ctf.git"
},
"license": "MIT",
"author": "Bjoern Kimminich <[email protected]> (https://kimminich.de)",
"contributors": [
"Bjoern Kimminich",
"Jannik Hollenbach",
"greenkeeper[bot]",
"Josh Grossman",
"Simon Basset",
"JuiceShopBot",
"ElJeffe",
"dependabot[bot]",
"Jamie McCrindle",
"whitesource-bolt-for-github[bot]"
],
"main": "index.js",
"bin": {
"juice-shop-ctf": "bin/juice-shop-ctf.js"
},
"scripts": {
"coverage": "nyc report --reporter=lcov",
"e2e": "nyc --reporter=text mocha test/e2e --slow=25000 --timeout=45000",
"lint": "standard",
"lint:fix": "standard --fix",
"test": "nyc --reporter=html --reporter=text mocha test/unit"
},
"nyc": {
"report-dir": "./build/reports/coverage"
},
"dependencies": {
"joi": "^17.13.3",
"bcryptjs": "^2.4.3",
"bluebird": "^3.7.2",
"colors": "1.4.0",
"dateformat": "^4.6.3",
"inquirer": "^8.2.6",
"js-yaml": "^4.1.0",
"jssha": "^3.3.1",
"node-zip": "^1.1.1",
"path": "^0.12.7",
"request": "^2.88.2",
"request-promise": "^4.2.6",
"turndown": "^7.2.0",
"xmlbuilder": "^15.1.1",
"yargs": "^17.7.2"
},
"devDependencies": {
"ava": "^6.1.3",
"chai": "^4.5.0",
"chai-as-promised": "^7.1.2",
"chai-spies": "^1.1.0",
"chai-subset": "^1.6.0",
"chai-things": "^0.2.0",
"inquirer-test": "^2.0.1",
"lockfile": "^1.0.4",
"mocha": "^10.7.3",
"nyc": "^17.1.0",
"rewire": "^7.0.0",
"standard": "^17.1.2"
},
"engines": {
"node": "18 - 22"
},
"preferGlobal": true,
"standard": {
"env": [
"node",
"mocha"
],
"globals": [
"it",
"describe",
"beforeEach"
]
}
}