-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
44 lines (44 loc) · 952 Bytes
/
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
{
"name": "node-codis",
"version": "1.1.0",
"description": "Codis client for node",
"main": "./dist/index.js",
"scripts": {
"dev": "tsc -p . --watch",
"build": "tsc -p .",
"test": "echo 'no test now'"
},
"keywords": [
"codis",
"redis",
"ioredis",
"node",
"cluster",
"datebase",
"nodejs",
"client"
],
"types": "dist/index.d.ts",
"typings": "dist/index.d.ts",
"author": "guahao inc",
"license": "MIT",
"engines": {
"node": ">=6"
},
"homepage": "https://github.com/wefront/node-codis",
"dependencies": {
"@types/ioredis": "^4.0.19",
"@types/node-zookeeper-client": "^0.2.6",
"@types/redis": "^2.8.10",
"debug": "^4.1.1",
"ioredis": "^4.14.1",
"lodash": "^4.17.11",
"node-zookeeper-client": "^0.2.3",
"redis": "^2.8.0"
},
"devDependencies": {
"@types/debug": "^4.1.2",
"@types/lodash": "^4.14.121",
"typescript": "^3.1.3"
}
}