-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.03 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.03 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
{
"name" : "notyfire",
"version" : "0.0.1",
"description" : "A clean and simple load balancer",
"keywords": [
"reverse",
"proxy",
"http",
"http-proxy",
"load",
"balancer",
"load-balancer"
],
"main" : "./index.js",
"bin": {
"notyfire": "./bin/notyfire"
},
"directories" : {
"lib" : "./lib"
},
"dependencies" : {
"underscore": "1.4.2",
"optimist": "0.3.7",
"redis" : "0.7.3",
"socket.io": "0.9.16",
"readable-stream": "1.0.2"
},
"scripts" : {
"start" : "node bin/notyfire"
},
"engines" : {
"node" : "0.8.x"
},
"engineStrict": true,
"author" : {
"name" : "Aaron O'Mullan",
"email" : "aaron.omullan@gmail.com",
"url" : "http://friendco.de"
},
"maintainer" : [
"Aaron O'Mullan <aaron.omullan@gmail.com>"
],
"repository": {
"type": "git",
"url": "git@friendco.de:friendcode/notyfire.git"
}
}