UNPKG

753 BJSONView Raw
1{
2 "name": "lru-cache",
3 "description": "A cache object that deletes the least-recently-used items.",
4 "version": "7.2.1",
5 "publishConfig": {
6 "tag": "v7.2-backport"
7 },
8 "author": "Isaac Z. Schlueter <i@izs.me>",
9 "keywords": [
10 "mru",
11 "lru",
12 "cache"
13 ],
14 "scripts": {
15 "test": "tap",
16 "snap": "tap",
17 "preversion": "npm test",
18 "postversion": "npm publish",
19 "prepublishOnly": "git push origin --follow-tags"
20 },
21 "main": "index.js",
22 "repository": "git://github.com/isaacs/node-lru-cache.git",
23 "devDependencies": {
24 "benchmark": "^2.1.4",
25 "tap": "^15.1.6"
26 },
27 "license": "ISC",
28 "files": [
29 "index.js"
30 ],
31 "engines": {
32 "node": ">=12"
33 },
34 "tap": {
35 "coverage-map": "map.js"
36 }
37}