forked from hipache/hipache
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
45 lines (45 loc) · 1.08 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
{
"name" : "hipache",
"version" : "0.2.3",
"description" : "Complete high-scaled reverse-proxy solution",
"keywords": [
"reverse",
"proxy",
"http",
"http-proxy"
],
"main" : "./bin/hipache",
"bin": {
"hipache": "./bin/hipache"
},
"directories" : {
"lib" : "./lib"
},
"dependencies" : {
"http-proxy" : "git://github.com/samalba/node-http-proxy",
"redis" : "0.8.x",
"lru-cache": "2.2.x",
"optimist": "0.3.x"
},
"scripts" : {
"start" : "node bin/hipache",
"test" : "nodeunit test/test_*.js",
"jshint": "jshint --config jshint.json -- bin/hipache lib/*.js"
},
"engines" : {
"node" : ">= 0.8.0"
},
"engineStrict": true,
"author" : {
"name" : "Samuel Alba",
"email" : "[email protected]",
"url" : "http://www.dotcloud.com/"
},
"maintainer" : [
"Sam Alba <[email protected]>"
],
"repository": {
"type": "git",
"url": "https://github.com/dotcloud/hipache.git"
}
}