forked from deepstreamIO/deepstream.io-cache-redis
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 931 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 931 Bytes
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
{
"name": "deepstream.io-cache-redis",
"version": "1.1.0",
"description": "Redis cache connector for deepstream.io",
"main": "src/cache-connector.js",
"scripts": {
"test": "mocha",
"coverage": "istanbul cover node_modules/mocha/bin/_mocha",
"lint": "eslint \"src/**/*.js\" \"test/**/*.js\"",
"ci": "npm run coverage"
},
"repository": {
"type": "git",
"url": "https://github.com/deepstreamIO/deepstream.io-cache-redis.git"
},
"author": "deepstreamHub GmbH",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/deepstreamIO/deepstream.io-cache-redis/issues"
},
"homepage": "http://deepstream.io",
"dependencies": {
"ioredis": "^3.1.1"
},
"devDependencies": {
"chai": "^4.0.2",
"coveralls": "^2.13.1",
"istanbul": "^0.4.5",
"mocha": "^3.4.2",
"eslint-config-deepstream": ">=2.2.1"
},
"eslintConfig": {
"extends": "deepstream"
}
}