forked from redis/ioredis
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.43 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": "ioredis",
"version": "2.0.0",
"description": "A delightful, performance-focused Redis client for Node and io.js",
"main": "index.js",
"scripts": {
"test": "NODE_ENV=test mocha",
"test:cov": "NODE_ENV=test node ./node_modules/istanbul/lib/cli.js cover --preserve-comments ./node_modules/mocha/bin/_mocha -- -R spec",
"generate-docs": "jsdoc2md lib/redis.js lib/cluster/index.js lib/commander.js > API.md",
"bench": "matcha benchmarks/*.js"
},
"repository": {
"type": "git",
"url": "git://github.com/luin/ioredis.git"
},
"keywords": [
"redis",
"cluster",
"sentinel",
"pipelining"
],
"author": "luin <i@zihua.li> (http://zihua.li)",
"license": "MIT",
"dependencies": {
"bluebird": "^3.3.4",
"debug": "^2.2.0",
"double-ended-queue": "^2.1.0-0",
"flexbuffer": "0.0.6",
"lodash": "^4.8.2",
"redis-commands": "^1.2.0",
"redis-parser": "^1.3.0"
},
"devDependencies": {
"chai": "^3.5.0",
"codeclimate-test-reporter": "0.3.1",
"cz-conventional-changelog": "^1.1.5",
"istanbul": "^0.4.2",
"jsdoc": "^3.4.0",
"jsdoc-to-markdown": "^1.3.3",
"matcha": "^0.7.0",
"mocha": "^2.4.5",
"redis": "^2.4.2",
"server-destroy": "^1.0.1",
"sinon": "^1.17.3"
},
"engines": {
"node": ">= 0.10.16",
"iojs": ">= 1.0.0"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}