-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 882 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 882 Bytes
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
{
"name": "load-randomizer",
"version": "0.0.1",
"description": "NodeJS based HTTP request forwarding server designed to emulate the behavior of a load balancer",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node index.js",
"start:watch": "nodemon index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/theflazer/load-randomizer.git"
},
"keywords": [
"proxy",
"forward",
"nodejs",
"load",
"balancer",
"randomizer"
],
"author": "Varun Vasudevan",
"license": "ISC",
"bugs": {
"url": "https://github.com/theflazer/load-randomizer/issues"
},
"homepage": "https://github.com/theflazer/load-randomizer#readme",
"dependencies": {
"express": "^4.15.4",
"lodash": "^4.17.4",
"ngrok": "^2.2.17",
"request": "^2.81.0"
}
}