-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
47 lines (47 loc) · 1.17 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
{
"name": "recacheman",
"version": "2.3.5",
"description": "Small and efficient cache provider for Node.JS with In-memory, Redis and MongoDB engines",
"author": "Jonathan Brumley <cayasso@gmail.com>",
"main": "./dist/index.js",
"types": "./lib/index.d.ts",
"scripts": {
"coverage": "nyc report --reporter=text-lcov | coveralls",
"build": "babel lib -d dist",
"test": "npm run build && nyc --reporter=html --reporter=text mocha --require @babel/register"
},
"repository": {
"type": "git",
"url": "git://github.com/aalfiann/recacheman.git"
},
"keywords": [
"cache",
"file",
"redis",
"memory",
"mongodb",
"caching",
"mongo",
"store",
"ttl",
"middleware",
"bucket"
],
"license": "MIT",
"devDependencies": {
"@babel/cli": "^7.12.10",
"@babel/core": "^7.12.10",
"@babel/preset-env": "^7.12.11",
"@babel/register": "^7.12.10",
"babel-plugin-add-module-exports": "^1.0.4",
"bluebird": "^3.1.5",
"coveralls": "^3.1.1",
"mocha": "^10.2.0",
"mocha-lcov-reporter": "^1.3.0",
"nyc": "^15.1.0"
},
"dependencies": {
"ms": "^2.1.3",
"recacheman-memory": "^1.1.0"
}
}