-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
43 lines (43 loc) · 960 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
{
"name": "cache-service",
"version": "1.3.9",
"description": "A tiered caching solution for node.",
"main": "cacheService.js",
"dependencies": {
"cache-service-cache-module": "1.x"
},
"devDependencies": {
"cache-service-memcached": "^1.0.0-beta.1",
"cache-service-node-cache": "1.1.0",
"cache-service-redis": "1.1.0",
"expect": "1.6.0",
"memcached-mock": "^0.1.0",
"mocha": "2.2.4",
"proxyquire": "^1.7.11",
"redis-js": "0.0.12-6"
},
"scripts": {
"test": "bin/tests"
},
"repository": {
"type": "git",
"url": "https://github.com/jpodwys/cache-service"
},
"author": "Joe Podwys",
"license": "MIT",
"bugs": {
"url": "https://github.com/jpodwys/cache-service/issues"
},
"homepage": "https://github.com/jpodwys/cache-service",
"directories": {
"test": "test"
},
"keywords": [
"cache",
"node",
"redis",
"memcached",
"node-cache",
"tiered"
]
}