You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
34 lines
681 B
34 lines
681 B
{
|
|
"name": "cache-manager",
|
|
"version": "0.3.0",
|
|
"description": "Cache module for Node.js",
|
|
"main": "index.js",
|
|
"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": ">=0.1.22",
|
|
"lru-cache": ">=2.3.0"
|
|
},
|
|
"devDependencies": {
|
|
"coveralls": "~2.3.0",
|
|
"istanbul": ">=0.1.29",
|
|
"jshint": ">=1.0.1",
|
|
"mocha": ">=1.8.1",
|
|
"optimist": ">=0.3.5",
|
|
"sinon": ">=1.5.2"
|
|
}
|
|
}
|
|
|