-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.45 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
{
"name": "vulnparty-server",
"author": "Kelly Kaoudis",
"email": "[email protected]",
"contributors": [],
"version": "0.1.0",
"license": "GPL-3.0",
"keywords": [
"greybox-testing",
"development",
"sandbox",
"vulnerable"
],
"description": "a cute (intentionally terrible, awful, no-good) JS web server",
"main": "server.js",
"private": "true",
"dependencies": {
"assert": "^2.0.0",
"axios": "^0.21.1",
"cors-anywhere": "^0.4.4",
"dns": "^0.1.2",
"express": "^4.17.1",
"ftp": "^0.3.10",
"http-proxy": "^1.18.1",
"netmask": "1.0.6",
"private-ip": "1.0.5",
"url": "^0.11.0",
"winston": "^3.3.3"
},
"scripts": {
"install test": "npm install --only=dev",
"test": "mocha test/*.js",
"start": "node server.js",
"lint": "eslint --config=./.eslintrc *.js",
"fix": "eslint --config=./.eslintrc --fix *.js"
},
"devDependencies": {
"@babel/core": "7.12.10",
"@babel/eslint-parser": "7.11.0",
"eslint": "7.5.0",
"eslint-config-prettier": "1.6.0",
"eslint-plugin-prettier": "2.1.2",
"eslint-plugin-security": "1.4.0",
"prettier": "2.0.2",
"prettier-eslint": "3.0.5"
},
"directories": {
"test": "test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kaoudis/vulnparty-js.git"
},
"bugs": {
"url": "https://github.com/kaoudis/vulnparty-js/issues"
},
"homepage": "https://github.com/kaoudis/vulnparty-js#readme"
}