wallet-core/node_modules/lru-cache/package.json

34 lines
778 B
JSON
Raw Normal View History

2016-10-10 03:43:44 +02:00
{
2016-11-03 01:33:53 +01:00
"name": "lru-cache",
2016-10-10 03:43:44 +02:00
"description": "A cache object that deletes the least-recently-used items.",
2017-08-14 05:01:11 +02:00
"version": "4.1.1",
2016-11-03 01:33:53 +01:00
"author": "Isaac Z. Schlueter <i@izs.me>",
2016-10-10 03:43:44 +02:00
"keywords": [
"mru",
"lru",
"cache"
],
"scripts": {
2017-08-14 05:01:11 +02:00
"test": "tap test/*.js --100 -J",
"posttest": "standard test/*.js index.js",
"preversion": "npm test",
"postversion": "npm publish",
"postpublish": "git push origin --all; git push origin --tags"
2016-10-10 03:43:44 +02:00
},
2017-08-14 05:01:11 +02:00
"main": "index.js",
2016-11-03 01:33:53 +01:00
"repository": "git://github.com/isaacs/node-lru-cache.git",
"devDependencies": {
2017-08-14 05:01:11 +02:00
"benchmark": "^2.1.4",
2017-05-27 17:36:13 +02:00
"standard": "^5.4.1",
2017-08-14 05:01:11 +02:00
"tap": "^10.3.3"
2016-11-03 01:33:53 +01:00
},
2017-05-27 17:36:13 +02:00
"license": "ISC",
"dependencies": {
2017-08-14 05:01:11 +02:00
"pseudomap": "^1.0.2",
"yallist": "^2.1.2"
2017-05-27 17:36:13 +02:00
},
"files": [
2017-08-14 05:01:11 +02:00
"index.js"
2017-05-27 17:36:13 +02:00
]
2016-10-10 03:43:44 +02:00
}