-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.1 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
{
"name": "riak-river-proxy",
"version": "0.0.1",
"description": "Proxy point for clients. Handles authentication and load balancing to client riak clusters.",
"main": "index.js",
"private": true,
"scripts": {
"test": "NODE_ENV=TESTING ./node_modules/.bin/mocha -R spec --recursive",
"start-all": "node ./start.js all",
"start-admin": "node ./start.js admin",
"start-proxy": "node ./start.js proxy"
},
"repository": {
"type": "git",
"url": "git://github.com/wlaurance/riak-river-proxy.git"
},
"keywords": [
"proxy",
"for",
"riak",
"river",
"instances"
],
"author": "Will S Laurance",
"license": "None",
"readmeFilename": "README.md",
"gitHead": "f3291f1c68083c2fa1946389a66c62ee68bf357f",
"bugs": {
"url": "https://github.com/wlaurance/riak-river-proxy/issues"
},
"dependencies": {
"http-proxy": "~0.10.3",
"redis": "~0.9.0",
"express": "~3.4.3",
"async": "~0.2.9",
"uuid": "~1.4.1"
},
"devDependencies": {
"mocha": "~1.12.1",
"should": "~1.2.2",
"request": "~2.27.0",
"portfinder": "~0.2.1"
}
}