-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathpackage.json
50 lines (50 loc) · 1.11 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
{
"name" : "loadfire",
"version" : "3.0.1",
"description" : "A clean and simple load balancer",
"keywords": [
"reverse",
"proxy",
"http",
"http-proxy",
"load",
"balancer",
"load-balancer"
],
"main" : "./index.js",
"bin": {
"loadfire": "./bin/loadfire"
},
"directories" : {
"lib" : "./lib"
},
"dependencies" : {
"connect": "2.11.0",
"http-proxy" : "1.0.2",
"optimist": "0.3.0",
"underscore": "1.4.4",
"q": "0.9.6",
"event-stream": "3.1.0",
"qplus": "0.1.0"
},
"scripts" : {
"start" : "node bin/loadfire"
},
"engines" : {
"node" : ">=0.8.0"
},
"engineStrict": true,
"license": "MIT",
"author" : {
"name" : "Aaron O'Mullan",
"email" : "[email protected]",
"url" : "https://friendco.de"
},
"maintainer" : [
"Aaron O'Mullan <[email protected]>"
],
"repository": {
"type": "git",
"url": "https://github.com/FriendCode/loadfire.git"
}
}