UNPKG

1.87 kBJSONView Raw
1{
2 "name": "redis",
3 "version": "3.0.1",
4 "description": "A high performance Redis client.",
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 "contributors": [
18 {
19 "name": "Mike Diarmid (Salakar)",
20 "url": "https://github.com/salakar"
21 },
22 {
23 "name": "Ruben Bridgewater (BridgeAR)",
24 "url": "https://github.com/BridgeAR"
25 }
26 ],
27 "license": "MIT",
28 "main": "./index.js",
29 "scripts": {
30 "coveralls": "nyc report --reporter=text-lcov | coveralls",
31 "coverage": "nyc report --reporter=html",
32 "benchmark": "node benchmarks/multi_bench.js",
33 "test": "nyc --cache mocha ./test/*.js ./test/commands/*.js --timeout=8000",
34 "lint": "eslint . --fix && npm run coverage",
35 "compare": "node benchmarks/diff_multi_bench_output.js beforeBench.txt afterBench.txt"
36 },
37 "dependencies": {
38 "denque": "^1.4.1",
39 "redis-commands": "^1.5.0",
40 "redis-errors": "^1.2.0",
41 "redis-parser": "^3.0.0"
42 },
43 "engines": {
44 "node": ">=6"
45 },
46 "devDependencies": {
47 "prettier": "^1.19.1",
48 "bluebird": "^3.7.2",
49 "coveralls": "^2.11.2",
50 "eslint": "^6.8.0",
51 "intercept-stdout": "~0.1.2",
52 "metrics": "^0.1.21",
53 "mocha": "^4.1.0",
54 "nyc": "^14.1.1",
55 "tcp-port-used": "^1.0.1",
56 "uuid": "^3.4.0",
57 "cross-spawn": "^6.0.5"
58 },
59 "repository": {
60 "type": "git",
61 "url": "git://github.com/NodeRedis/node-redis.git"
62 },
63 "bugs": {
64 "url": "https://github.com/NodeRedis/node-redis/issues"
65 },
66 "homepage": "https://github.com/NodeRedis/node-redis",
67 "directories": {
68 "example": "examples",
69 "test": "test"
70 },
71 "funding": {
72 "type": "opencollective",
73 "url": "https://opencollective.com/node-redis"
74 }
75}