forked from hipache/hipache
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
72 lines (72 loc) · 1.71 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"name": "hipache",
"version": "0.4.0",
"description": "Complete high-scaled reverse-proxy solution",
"keywords": [
"reverse",
"proxy",
"http",
"http-proxy"
],
"homepage": "https://github.com/dotcloud/hipache",
"bugs": {
"url": "https://github.com/dotcloud/hipache/issues",
"email": "[email protected]"
},
"license": "MIT",
"main": "./bin/hipache",
"bin": {
"hipache": "./bin/hipache"
},
"directories": {
"lib": "./lib"
},
"dependencies": {
"http-proxy": "1.0.2",
"redis": "0.10.x",
"lru-cache": "2.5.x",
"minimist": "0.0.8"
},
"devDependencies": {
"mocha": "1.x",
"jshint": "2.x",
"gulp": "^3.5.5",
"gulp-mocha": "^0.4.1",
"gulp-eslint": "^0.1.5",
"gulp-jshint": "^1.5.0",
"jshint-stylish": "^0.1.5",
"gulp-util": "^2.2.14",
"chai": "^1.9.0",
"istanbul": "^0.2.6",
"npmlog": "^0.0.6",
"memcached": "^0.2.8",
"node-etcd": "^2.0.10",
"ws": "^0.4.31",
"coveralls": "^2.10.0",
"connect": "^2.14.3"
},
"scripts": {
"start": "./bin/hipache",
"test": "istanbul test _mocha --report html -- test/**/*.js --reporter spec",
"coveralls": "istanbul cover _mocha --report lcovonly -- test/**/*.js -R spec && cat ./coverage/lcov.info | coveralls && rm -rf ./coverage",
"hint": "gulp hint"
},
"engines": {
"node": ">=0.10.0",
"npm": ">=1.0.0"
},
"engineStrict": true,
"author": {
"name": "Sam Alba",
"email": "[email protected]",
"url": "http://www.dotcloud.com/"
},
"maintainer": [
"Sam Alba <[email protected]>",
"Olivier Gambier <[email protected]>"
],
"repository": {
"type": "git",
"url": "http://github.com/dotcloud/hipache.git"
}
}