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