-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
36 lines (36 loc) · 895 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
{
"name": "redis-connection",
"version": "5.4.1",
"description": "Re-use a single or pool of redis connections across several modules/files in your app.",
"main": "index.js",
"scripts": {
"test": "./node_modules/.bin/istanbul cover ./node_modules/tape/bin/tape ./test/*.test.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dwyl/redis-connection.git"
},
"keywords": [
"redis",
"connection",
"single",
"multiple",
"re-useable",
"global"
],
"author": "@nelsonic & friends @dwylhq",
"license": "GPL-2.0",
"bugs": {
"url": "https://github.com/dwyl/redis-connection/issues"
},
"homepage": "https://github.com/dwyl/redis-connection#readme",
"dependencies": {
"redis": "^2.8.0"
},
"devDependencies": {
"decache": "^4.1.0",
"env2": "^2.2.0",
"istanbul": "^0.4.5",
"tape": "^4.8.0"
}
}