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

30 lines
626 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-05-27 17:36:13 +02:00
"version": "4.0.2",
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-05-27 17:36:13 +02:00
"test": "tap test --100",
"posttest": "standard test/*.js lib/*.js"
2016-10-10 03:43:44 +02:00
},
2016-11-03 01:33:53 +01:00
"main": "lib/lru-cache.js",
"repository": "git://github.com/isaacs/node-lru-cache.git",
"devDependencies": {
2017-05-27 17:36:13 +02:00
"standard": "^5.4.1",
"tap": "^8.0.1"
2016-11-03 01:33:53 +01:00
},
2017-05-27 17:36:13 +02:00
"license": "ISC",
"dependencies": {
"pseudomap": "^1.0.1",
"yallist": "^2.0.0"
},
"files": [
"lib/lru-cache.js"
]
2016-10-10 03:43:44 +02:00
}