wishthis/node_modules/lru-cache/package.json

37 lines
942 B
JSON
Raw Normal View History

2022-01-21 08:28:41 +00:00
{
2022-04-08 10:55:35 +00:00
"name": "lru-cache",
2022-01-21 08:28:41 +00:00
"description": "A cache object that deletes the least-recently-used items.",
2022-04-08 10:55:35 +00:00
"version": "4.1.5",
"author": "Isaac Z. Schlueter <i@izs.me>",
2022-01-21 08:28:41 +00:00
"keywords": [
"mru",
"lru",
"cache"
],
"scripts": {
2022-04-08 10:55:35 +00:00
"test": "tap test/*.js --100 -J",
"snap": "TAP_SNAPSHOT=1 tap test/*.js -J",
"posttest": "standard test/*.js index.js",
2022-01-21 08:28:41 +00:00
"coveragerport": "tap --coverage-report=html",
"lintfix": "standard --fix test/*.js index.js",
2022-02-23 16:41:13 +00:00
"preversion": "npm test",
2022-04-08 10:55:35 +00:00
"postversion": "npm publish --tag=legacy",
"postpublish": "git push origin --all; git push origin --tags"
},
"main": "index.js",
"repository": "git://github.com/isaacs/node-lru-cache.git",
"devDependencies": {
"benchmark": "^2.1.4",
"standard": "^12.0.1",
"tap": "^12.1.0"
},
"license": "ISC",
"dependencies": {
"pseudomap": "^1.0.2",
"yallist": "^2.1.2"
2022-01-21 08:28:41 +00:00
},
2022-04-08 10:55:35 +00:00
"files": [
"index.js"
]
2022-01-21 08:28:41 +00:00
}