UNPKG

1.5 kBJSONView Raw
1{
2 "name": "redis",
3 "version": "2.8.0",
4 "description": "Redis client library",
5 "keywords": [
6 "database",
7 "redis",
8 "transaction",
9 "pipelining",
10 "performance",
11 "queue",
12 "nodejs",
13 "pubsub",
14 "backpressure"
15 ],
16 "author": "Matt Ranney <mjr@ranney.com>",
17 "license": "MIT",
18 "main": "./index.js",
19 "scripts": {
20 "coveralls": "nyc report --reporter=text-lcov | coveralls",
21 "coverage": "nyc report --reporter=html",
22 "benchmark": "node benchmarks/multi_bench.js",
23 "test": "nyc --cache mocha ./test/*.js ./test/commands/*.js --timeout=8000",
24 "lint": "eslint . --fix && npm run coverage",
25 "compare": "node benchmarks/diff_multi_bench_output.js beforeBench.txt afterBench.txt"
26 },
27 "dependencies": {
28 "double-ended-queue": "^2.1.0-0",
29 "redis-commands": "^1.2.0",
30 "redis-parser": "^2.6.0"
31 },
32 "engines": {
33 "node": ">=0.10.0"
34 },
35 "devDependencies": {
36 "bluebird": "^3.0.2",
37 "coveralls": "^2.11.2",
38 "eslint": "^4.2.0",
39 "intercept-stdout": "~0.1.2",
40 "metrics": "^0.1.9",
41 "mocha": "^3.1.2",
42 "nyc": "^10.0.0",
43 "tcp-port-used": "^0.1.2",
44 "uuid": "^2.0.1",
45 "win-spawn": "^2.0.0"
46 },
47 "repository": {
48 "type": "git",
49 "url": "git://github.com/NodeRedis/node_redis.git"
50 },
51 "bugs": {
52 "url": "https://github.com/NodeRedis/node_redis/issues"
53 },
54 "homepage": "https://github.com/NodeRedis/node_redis",
55 "directories": {
56 "example": "examples",
57 "test": "test"
58 }
59}