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