-
Notifications
You must be signed in to change notification settings - Fork 78
/
package.json
47 lines (47 loc) · 1.05 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
{
"name" : "bouncy",
"description" : "Bounce HTTP requests around for a load balancer or http host router completely transparently",
"version" : "0.3.1",
"repository" : {
"type" : "git",
"url" : "git://github.com/substack/bouncy.git"
},
"main" : "index.js",
"bin" : {
"bouncy" : "bin/bouncy.js"
},
"keywords" : [
"http",
"parse",
"bounce",
"load",
"balancer",
"host",
"route",
"router",
"transparent"
],
"directories" : {
"lib" : ".",
"example" : "example",
"test" : "test"
},
"scripts" : {
"test" : "tap test/*.js"
},
"devDependencies" : {
"tap" : "0.0.x",
"lazy" : "1.0.x",
"websocket-server" : "1.4.x",
"websocket-client" : "1.0.x"
},
"engines" : {
"node" : ">=0.4.0"
},
"license" : "MIT",
"author" : {
"name" : "James Halliday",
"email" : "mail@substack.net",
"url" : "http://substack.net"
}
}