You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 

59 lines
1.5 KiB

{
"name": "redis",
"version": "2.7.1",
"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": {
"double-ended-queue": "^2.1.0-0",
"redis-commands": "^1.2.0",
"redis-parser": "^2.5.0"
},
"engines": {
"node": ">=0.10.0"
},
"devDependencies": {
"bluebird": "^3.0.2",
"coveralls": "^2.11.2",
"intercept-stdout": "~0.1.2",
"eslint": "^3.5.0",
"metrics": "^0.1.9",
"mocha": "^3.1.2",
"nyc": "^8.3.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"
}
}