charlike
Version:
Small, fast, simple and streaming project scaffolder for myself, but not only. Supports hundreds of template engines through the @JSTransformers API or if you want custom `render` function passed through options
30 lines (29 loc) • 626 B
JSON
{
"name": "lru-cache",
"description": "A cache object that deletes the least-recently-used items.",
"version": "4.0.2",
"author": "Isaac Z. Schlueter <i@izs.me>",
"keywords": [
"mru",
"lru",
"cache"
],
"scripts": {
"test": "tap test --100",
"posttest": "standard test/*.js lib/*.js"
},
"main": "lib/lru-cache.js",
"repository": "git://github.com/isaacs/node-lru-cache.git",
"devDependencies": {
"standard": "^5.4.1",
"tap": "^8.0.1"
},
"license": "ISC",
"dependencies": {
"pseudomap": "^1.0.1",
"yallist": "^2.0.0"
},
"files": [
"lib/lru-cache.js"
]
}