orionsoft-react-scripts
Version:
Orionsoft Configuration and scripts for Create React App.
30 lines (29 loc) • 680 B
JSON
{
"name": "lru-cache",
"description": "A cache object that deletes the least-recently-used items.",
"version": "4.0.1",
"author": "Isaac Z. Schlueter <i@izs.me>",
"keywords": [
"mru",
"lru",
"cache"
],
"scripts": {
"test": "tap test --branches=100 --functions=100 --lines=100 --statements=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": "^5.1.1"
},
"license": "ISC",
"dependencies": {
"pseudomap": "^1.0.1",
"yallist": "^2.0.0"
},
"files": [
"lib/lru-cache.js"
]
}