-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.23 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.23 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
48
49
50
51
52
{
"name": "sundry",
"version": "0.3.3",
"description": "A dynamically configurable, load balancing, reverse proxy.",
"main": "index.js",
"scripts": {
"start": "node index.js",
"test": "NODE_ENV=test mocha --ui bdd --reporter spec",
"hint": "jshint ./**/*.js",
"generateCA": "./npm_scripts/generateCA.sh"
},
"preferGlobal": "true",
"bin": {
"sundry": "cli/index.js"
},
"repository": {
"type": "git",
"url": "git://github.com/PaperElectron/Sundry.git"
},
"keywords": [
"router",
"http",
"proxy",
"round-robin"
],
"author": "Jim <monstertke@paperelectron.com> (http://paperelectron.com/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/PaperElectron/Sundry/issues"
},
"homepage": "https://github.com/PaperElectron/Sundry",
"dependencies": {
"bluebird": "^2.9.30",
"chalk": "^0.5.1",
"commander": "^2.6.0",
"cookies": "^0.5.0",
"hiredis": "^0.4.0",
"http-proxy": "^1.8.1",
"inquirer": "^0.8.5",
"lodash": "^3.1.0",
"mkdirp": "^0.5.1",
"redis": "^0.12.1",
"sha.js": "^2.4.2",
"var": "^0.1.3"
},
"devDependencies": {
"chai": "^2.0.0",
"jshint": "^2.6.0",
"mocha": "^2.1.0",
"rimraf": "^2.2.8"
}
}