forked from redis/node-redis
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.34 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
{
"name": "redis",
"version": "2.4.2",
"description": "Redis client library",
"keywords": [
"database",
"redis",
"transaction",
"pipelining",
"performance",
"queue"
],
"author": "Matt Ranney <[email protected]>",
"license": "MIT",
"main": "./index.js",
"scripts": {
"coveralls": "nyc report --reporter=text-lcov | coveralls",
"coverage": "nyc report --reporter=html",
"benchmark": "node benchmarks/multi_bench.js",
"test": "nyc ./node_modules/.bin/_mocha ./test/*.js ./test/commands/*.js --timeout=8000",
"pretest": "optional-dev-dependency hiredis",
"posttest": "jshint ."
},
"dependencies": {
"double-ended-queue": "^2.1.0-0",
"redis-commands": "^1.0.1"
},
"engines": {
"node": ">=0.10.0"
},
"devDependencies": {
"coveralls": "^2.11.2",
"jshint": "^2.8.0",
"metrics": "^0.1.9",
"mocha": "^2.3.2",
"nyc": "^3.2.2",
"optional-dev-dependency": "^1.1.0",
"tcp-port-used": "^0.1.2",
"uuid": "^2.0.1",
"win-spawn": "^2.0.0",
"bluebird": "^3.0.2"
},
"repository": {
"type": "git",
"url": "git://github.com/NodeRedis/node_redis.git"
},
"bugs": {
"url": "https://github.com/NodeRedis/node_redis/issues"
},
"homepage": "https://github.com/NodeRedis/node_redis",
"directories": {
"example": "examples",
"test": "test"
}
}