forked from cayasso/cacheman-redis
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 751 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 751 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
36
37
38
{
"name": "cacheman-redis",
"version": "2.0.0",
"description": "Redis standalone caching library for Node.JS and also cache engine for Cacheman",
"author": "Jonathan Brumley <cayasso@gmail.com>",
"main": "./src/index",
"scripts": {
"test": "mocha --exit"
},
"repository": {
"type": "git",
"url": "git://github.com/cayasso/cacheman-redis.git"
},
"keywords": [
"cache",
"redis",
"caching",
"store",
"ttl",
"cacheman"
],
"license": "MIT",
"devDependencies": {
"mocha": "*",
"pre-commit": "1.2.2",
"redis": "^2.8.0"
},
"dependencies": {
"each": "1.2.1",
"parse-redis-url": "0.0.2"
},
"peerDependencies": {
"redis": "2.x"
},
"pre-commit": [
"test"
]
}