forked from DockerSecurityPlayground/DSP
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
89 lines (89 loc) · 2.77 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
{
"name": "docker-security-playground",
"description": "A playground platform for the penetration testing students",
"version": "2.2.4",
"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",
"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": "^2.0.1",
"async": "^2.2.0",
"body-parser": "1.x",
"bunyan": "^1.8.10",
"bunyan-request-logger": "^2.0.0",
"chai-json": "^0.1.0",
"command-exists": "^1.2.8",
"copy-dir": "^0.3.0",
"cp-file": "^5.0.0",
"dot-object": "^1.7.1",
"errors": "^0.3.0",
"express": "^4.16.4",
"express-error-handler": "^1.1.0",
"forever": "^0.15.3",
"help-nodejs": "^0.6.0",
"homedir": "^0.6.0",
"is-valid-path": "^0.1.1",
"joi": "^13.5.2",
"js-yaml": "^3.8.3",
"jsonfile": "^4.0.0",
"method-override": "^2.3.8",
"multer": "^1.4.1",
"mydockerjs": "^2.3.0",
"ncp": "^2.0.0",
"node-cmd": "^3.0.0",
"node-pty": "^0.7.4",
"path-exists": "^3.0.0",
"q": "^1.5.0",
"randomstring": "^1.1.5",
"request": "^2.87.0",
"rimraf": "^2.6.1",
"simple-git": "^1.107.0",
"socket.io": "^2.2.0",
"stampit": "^3.1.2",
"underscore": "^1.8.3",
"walker": "^1.0.7",
"zip-dir": "^1.0.2"
},
"devDependencies": {
"chai": "^4.1.2",
"chai-fs": "^1.0.0",
"chai-http": "^4.2.0",
"chai-json": "^0.1.0",
"chai-things": "^0.2.0",
"eslint": "^4.10.0",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-config-google": "^0.9.1",
"eslint-config-hapi": "^11.1.0",
"eslint-config-standard": "^10.2.1",
"eslint-plugin-hapi": "^4.0.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-node": "^5.2.1",
"eslint-plugin-promise": "^3.5.0",
"eslint-plugin-standard": "^3.0.1",
"gulp": "^4.0.0",
"jshint": "^2.9.6",
"nyc": "^11.2.1",
"prompt": "^1.0.0",
"ws": "3.3.2",
"zombie": "^6.1.4"
}
}