recacheman
Version:
Small and efficient cache provider for Node.JS with In-memory, File, Redis and MongoDB engines
46 lines (45 loc) • 1.07 kB
JSON
{
"name": "recacheman",
"version": "3.0.0",
"description": "Small and efficient cache provider for Node.JS with In-memory, File, Redis and MongoDB engines",
"author": "Jonathan Brumley <cayasso@gmail.com>",
"contributors": [
"M Abd Aziz Alfian <aalfiann@gmail.com>"
],
"main": "./dist/index.js",
"types": "./lib/index.d.ts",
"scripts": {
"build": "node build.mjs",
"test": "npm run test:typescript && npm run build && c8 --reporter=html --reporter=text --reporter=text-summary mocha --exit",
"test:typescript": "tsd"
},
"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": {
"@types/node": "^22.15.18",
"c8": "^10.1.3",
"esbuild": "^0.25.4",
"mocha": "^11.3.0",
"tsd": "^0.32.0"
},
"dependencies": {
"ms": "^2.1.3",
"recacheman-memory": "^2.1.0"
}
}