forked from jaredwray/cacheable
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 798 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
{
"name": "cache-manager",
"version": "3.6.0",
"description": "Cache module for Node.js",
"main": "index.js",
"files": [
"index.js",
"/examples",
"/lib"
],
"scripts": {
"test": "make"
},
"repository": {
"type": "git",
"url": "https://github.com/BryanDonovan/node-cache-manager.git"
},
"keywords": [
"cache",
"redis",
"lru-cache",
"memory cache",
"multiple cache"
],
"author": "Bryan Donovan",
"license": "MIT",
"dependencies": {
"async": "3.2.0",
"lodash": "^4.17.21",
"lru-cache": "6.0.0"
},
"devDependencies": {
"coveralls": "3.1.0",
"es6-promise": "^4.2.8",
"eslint": "7.7.0",
"jsdoc": "3.6.5",
"mocha": "8.1.1",
"nyc": "15.1.0",
"optimist": "0.6.1",
"sinon": "9.0.3"
}
}