memory-cache-ttl
Version:
A simple in-memory cache with Time To Live functionality
64 lines (63 loc) • 1.34 kB
JSON
{
"name": "memory-cache-ttl",
"version": "1.0.52",
"repository": {
"type": "git",
"url": "git@github.com:tiborv/memory-cache-ttl.git"
},
"description": "A simple in-memory cache with Time To Live functionality",
"main": "./dist",
"scripts": {
"cover": "nyc report --reporter=lcov && codecov",
"build": "BABEL_ENV=production babel src --out-dir dist",
"lint": "standard",
"test": "npm run lint && nyc ava"
},
"author": "Tibor Vukovic <m@tib.im>",
"keywords": [
"cache",
"simple",
"ttl",
"memory"
],
"license": "BSD-2-Clause",
"devDependencies": {
"ava": "^0.21.0",
"babel-cli": "^6.24.1",
"babel-plugin-add-module-exports": "~0.2.1",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"babel-register": "^6.24.1",
"benchmark": "^2.1.4",
"bluebird": "^3.5.0",
"codecov": "^2.2.0",
"nyc": "^11.0.3",
"require-new": "^1.1.1",
"standard": "^10.0.2"
},
"files": [
"dist/"
],
"babel": {
"presets": [
"es2015",
"stage-0"
],
"plugins": [
"add-module-exports"
]
},
"ava": {
"files": [
"test/**/*.js"
],
"tap": true,
"require": [
"babel-register"
],
"babel": "inherit"
},
"dependencies": {
"object-sizeof": "^1.2.0"
}
}