-
Notifications
You must be signed in to change notification settings - Fork 45
/
package.json
40 lines (40 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
{
"author": "Sreekanth <[email protected]>"
, "name": "redis-proxy"
, "description": "Proxy for redis servers, to manage redis clusters. Now supports read write splits"
, "version": "0.0.7"
, "repository": {
"type": "git"
, "url": "[email protected]:sreeix/redis-proxy.git"
}
, "bin": {
"redis-proxy": "./bin/redis-proxy"
}
, "main": "server.js"
, "preferGlobal": true
, "engines": { "node": ">= 0.4.7" }
, "node-version": ">0.4.7"
, "dependencies": {
"jade": "0.20.0"
, "express": "2.5.1"
, "underscore": "1.4.4"
, "async": "0.1.15"
, "winston": "0.6.2"
, "hiredis": ""
, "connection_pool": "0.0.2"
, "node-redis-raw": "0.1.1"
, "redis": "0.8.2"
}
, "devDependencies": {
"mocha": "0.0.8"
, "should": "0.3.2"
, "jshint":"0.5.5"
, "metrics":">=0.1.5"
}
, "scripts": {
"start": "node server.js"
, "console": "node"
, "test": "mocha --reporter dot --require should --ui bdd test/lib/*.js"
, "lint": " find . -not -path '*node_modules*' -and -name '*.js' -print0 | xargs -0 node_modules/.bin/jshint"
}
}