-
Notifications
You must be signed in to change notification settings - Fork 116
Expand file tree
/
Copy pathpackage.json
More file actions
99 lines (99 loc) · 3.25 KB
/
package.json
File metadata and controls
99 lines (99 loc) · 3.25 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
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
{
"name": "docker-security-playground",
"description": "A playground platform for the penetration testing students",
"version": "3.11.1",
"private": true,
"keywords": [
"docker"
],
"scripts": {
"eslint": " ./node_modules/eslint/bin/eslint.js app ",
"start": "node index.js | node_modules/.bin/bunyan",
"uninstall": "node scripts/uninstall.js",
"update": "sh scripts/update.sh",
"clean_logs": "node logs/clean_logs.js",
"labs-upload": "node scripts/labs-upload.js",
"test_on": "node scripts/enable_test_mode.js",
"install_dsp": "node scripts/install_dsp.js",
"test_off": "node scripts/disable_test_mode.js",
"test": "nyc mocha test/data test/util",
"test_api": "mocha test/api",
"test_util": "mocha test/util/test_util.js test/util/appChecker_test.js",
"test_health": "mocha test/util/healthState_test.js --no-timeouts | ./node_modules/.bin/bunyan ",
"test_labstate": "mocha test/util/lab_state_test.js",
"test_data": "mocha test/data",
"test_sync": "mocha test/util/ws_synchronize_test.js --no-timeouts",
"test_install": "mocha test/util/ws_install_test.js test/util/installation_test.js --no-timeouts"
},
"dependencies": {
"app-root-path": "^3.1.0",
"async": "^3.2.5",
"body-parser": "^1.20.2",
"bunyan": "^1.8.15",
"bunyan-request-logger": "^0.2.5",
"busboy": "^1.6.0",
"command-exists": "^1.2.9",
"connect-busboy": "1.0.0",
"connect-multiparty": "^2.2.0",
"copy-dir": "^1.3.0",
"cp-file": "^9.1.0",
"dot-object": "^2.1.5",
"errors": "^0.3.0",
"executable": "^4.1.1",
"express": "^4.19.2",
"express-error-handler": "^1.1.0",
"file-type": "^16.5.4",
"forever": "^4.0.3",
"formidable": "^3.5.1",
"fs-extra": "^11.2.0",
"help-nodejs": "^0.6.0",
"homedir": "^0.6.0",
"is-valid-path": "^0.1.1",
"joi": "^14.3.1",
"js-yaml": "^4.1.0",
"json-fs-converter": "^1.5.0",
"jsonfile": "^6.1.0",
"method-override": "^3.0.0",
"mocha": "^10.4.0",
"multer": "^1.4.5-lts.1",
"ncp": "^2.0.0",
"node-cmd": "^5.0.0",
"node-stream-zip": "^1.15.0",
"path-exists": "^4.0.0",
"ps-node": "^0.1.6",
"q": "^1.5.1",
"randomstring": "^1.3.0",
"recursive-readdir": "^2.2.3",
"request": "^2.88.2",
"rereadable-stream": "^1.4.6",
"dockerode": "^4.0.9",
"rimraf": "^5.0.5",
"simple-git": "^3.24.0",
"socket.io": "^2.5.0",
"spyfs": "^1.0.2",
"stampit": "^4.3.2",
"underscore": "^1.13.6",
"unzipper": "^0.10.14",
"valid-url": "^1.0.9",
"walker": "^1.0.8",
"zip-dir": "^2.0.0"
},
"devDependencies": {
"all-contributors-cli": "^6.26.1",
"chai": "^4.4.1",
"chai-fs": "^2.0.0",
"chai-http": "^4.4.0",
"chai-json": "^1.0.0",
"chai-things": "^0.2.0",
"eslint": "^8.57.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-google": "^0.14.0",
"eslint-config-hapi": "^12.0.0",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-n": "^16.6.2",
"eslint-plugin-promise": "^6.1.1",
"nyc": "^15.1.0"
},
"packageManager": "yarn@1.22.22+sha512.a6b2f7906b721bba3d67d4aff083df04dad64c399707841b7acf00f6b133b7ac24255f2652fa22ae3534329dc6180534e98d17432037ff6fd140556e2bb3137e"
}