forked from redis/ioredis
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
73 lines (73 loc) · 1.91 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "ioredis",
"version": "3.2.2",
"description": "A delightful, performance-focused Redis client for Node and io.js",
"main": "index.js",
"files": [
"index.js",
"lib/"
],
"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 <[email protected]> (http://zihua.li)",
"license": "MIT",
"dependencies": {
"bluebird": "^3.3.4",
"cluster-key-slot": "^1.0.6",
"debug": "^3.1.0",
"denque": "^1.1.0",
"flexbuffer": "0.0.6",
"lodash.assign": "^4.2.0",
"lodash.bind": "^4.2.1",
"lodash.clone": "^4.5.0",
"lodash.clonedeep": "^4.5.0",
"lodash.defaults": "^4.2.0",
"lodash.difference": "^4.5.0",
"lodash.flatten": "^4.4.0",
"lodash.foreach": "^4.5.0",
"lodash.isempty": "^4.4.0",
"lodash.keys": "^4.2.0",
"lodash.noop": "^3.0.1",
"lodash.partial": "^4.2.1",
"lodash.pick": "^4.4.0",
"lodash.sample": "^4.2.1",
"lodash.shuffle": "^4.2.0",
"lodash.values": "^4.3.0",
"redis-commands": "^1.2.0",
"redis-parser": "^2.4.0"
},
"devDependencies": {
"chai": "^3.5.0",
"codeclimate-test-reporter": "^0.5.0",
"cz-conventional-changelog": "^2.0.0",
"istanbul": "^0.4.2",
"jsdoc": "^3.4.0",
"jsdoc-to-markdown": "^4.0.1",
"mocha": "^3.1.1",
"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"
}
}
}