forked from redis/node-redis
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.45 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
{
"name": "redis",
"version": "2.8.0",
"description": "Redis client library",
"keywords": [
"database",
"redis",
"transaction",
"pipelining",
"performance",
"queue",
"nodejs",
"pubsub",
"backpressure"
],
"author": "Matt Ranney <mjr@ranney.com>",
"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 --cache mocha ./test/*.js ./test/commands/*.js --timeout=8000",
"lint": "eslint . --fix && npm run coverage",
"compare": "node benchmarks/diff_multi_bench_output.js beforeBench.txt afterBench.txt"
},
"dependencies": {
"denque": "^1.2.3",
"redis-commands": "^1.2.0",
"redis-parser": "^2.6.0"
},
"engines": {
"node": ">=0.10.0"
},
"devDependencies": {
"bluebird": "^3.0.2",
"coveralls": "^2.11.2",
"eslint": "^4.2.0",
"intercept-stdout": "~0.1.2",
"metrics": "^0.1.9",
"mocha": "^3.1.2",
"nyc": "^10.0.0",
"tcp-port-used": "^0.1.2",
"uuid": "^2.0.1",
"win-spawn": "^2.0.0"
},
"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"
}
}