wishthis/node_modules/lru-cache/package.json

35 lines
705 B
JSON
Raw Permalink 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.",
2023-08-17 09:47:40 +00:00
"version": "6.0.0",
2022-04-08 10:55:35 +00:00
"author": "Isaac Z. Schlueter <i@izs.me>",
2022-01-21 08:28:41 +00:00
"keywords": [
"mru",
"lru",
"cache"
],
"scripts": {
2023-08-17 09:47:40 +00:00
"test": "tap",
"snap": "tap",
2022-02-23 16:41:13 +00:00
"preversion": "npm test",
2023-08-17 09:47:40 +00:00
"postversion": "npm publish",
"prepublishOnly": "git push origin --follow-tags"
2022-04-08 10:55:35 +00:00
},
"main": "index.js",
"repository": "git://github.com/isaacs/node-lru-cache.git",
"devDependencies": {
"benchmark": "^2.1.4",
2023-08-17 09:47:40 +00:00
"tap": "^14.10.7"
2022-04-08 10:55:35 +00:00
},
"license": "ISC",
"dependencies": {
2023-08-17 09:47:40 +00:00
"yallist": "^4.0.0"
2022-01-21 08:28:41 +00:00
},
2022-04-08 10:55:35 +00:00
"files": [
"index.js"
2023-08-17 09:47:40 +00:00
],
"engines": {
"node": ">=10"
}
2022-01-21 08:28:41 +00:00
}