forked from lagden/keyv-redis
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
55 lines (55 loc) · 1.14 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
{
"name": "@keyv/redis",
"version": "1.3.8",
"description": "Redis storage adapter for Keyv",
"main": "src/index.js",
"scripts": {
"test": "xo && nyc ava",
"coverage": "nyc report --reporter=text-lcov | coveralls"
},
"xo": {
"extends": "xo-lukechilds"
},
"ava": {
"require": [
"requirable"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/lukechilds/keyv-redis.git"
},
"keywords": [
"redis",
"keyv",
"storage",
"adapter",
"key",
"value",
"store",
"cache",
"ttl"
],
"author": "Luke Childs <[email protected]> (http://lukechilds.co.uk)",
"license": "MIT",
"bugs": {
"url": "https://github.com/lukechilds/keyv-redis/issues"
},
"homepage": "https://github.com/lukechilds/keyv-redis",
"dependencies": {
"pify": "3.0.0",
"redis": "2.8.0"
},
"devDependencies": {
"ava": "^0.25.0",
"coveralls": "^3.0.0",
"delay": "^2.0.0",
"eslint-config-xo-lukechilds": "^1.0.0",
"keyv": "*",
"@keyv/test-suite": "^1.3.0",
"nyc": "^11.0.3",
"requirable": "^1.0.4",
"this": "^1.0.2",
"xo": "^0.20.1"
}
}