forked from redis/ioredis
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 1.85 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
{
"name": "ioredis",
"version": "4.9.5",
"description": "A robust, performance-focused and full-featured Redis client for Node.js.",
"main": "built/index.js",
"files": [
"built/"
],
"scripts": {
"test": "NODE_ENV=test mocha --timeout 8000 -r ts-node/register --exit",
"test:cov": "NODE_ENV=test node ./node_modules/istanbul/lib/cli.js cover --preserve-comments ./node_modules/mocha/bin/_mocha -- -r ts-node/register -R spec --exit",
"build": "rm -rf built && tsc",
"generate-docs": "jsdoc2md lib/redis.js lib/cluster/index.js lib/commander.js > API.md",
"prepublishOnly": "npm run build && npm test",
"bench": "matcha benchmarks/*.js",
"semantic-release": "semantic-release"
},
"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": {
"cluster-key-slot": "^1.0.6",
"debug": "^3.1.0",
"denque": "^1.1.0",
"lodash.defaults": "^4.2.0",
"lodash.flatten": "^4.4.0",
"redis-commands": "^1.5.0",
"redis-errors": "^1.2.0",
"redis-parser": "^3.0.0",
"standard-as-callback": "^2.0.1"
},
"devDependencies": {
"@semantic-release/changelog": "^3.0.0",
"@semantic-release/git": "^7.0.4",
"@types/node": "^10.11.5",
"@types/redis-errors": "1.2.0",
"bluebird": "^3.5.1",
"chai": "^3.5.0",
"cz-conventional-changelog": "^2.0.0",
"istanbul": "^0.4.2",
"jsdoc": "^3.4.0",
"jsdoc-to-markdown": "^4.0.1",
"mocha": "^5.2.0",
"server-destroy": "^1.0.1",
"sinon": "^1.17.3",
"ts-node": "^7.0.0",
"typescript": "^3.1.1"
},
"engines": {
"node": ">=6"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}