package.json 1.1 KB

1234567891011121314151617181920212223242526272829303132333435
  1. {
  2. "name": "lru-cache",
  3. "description": "A cache object that deletes the least-recently-used items.",
  4. "version": "5.1.1",
  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. "snap": "TAP_SNAPSHOT=1 tap test/*.js -J",
  14. "coveragerport": "tap --coverage-report=html",
  15. "preversion": "npm test",
  16. "postversion": "npm publish",
  17. "postpublish": "git push origin --all; git push origin --tags"
  18. },
  19. "main": "index.js",
  20. "repository": "git://github.com/isaacs/node-lru-cache.git",
  21. "devDependencies": {
  22. "benchmark": "^2.1.4",
  23. "tap": "^12.1.0"
  24. },
  25. "license": "ISC",
  26. "dependencies": {
  27. "yallist": "^3.0.2"
  28. },
  29. "files": [
  30. "index.js"
  31. ],
  32. "__npminstall_done": "Thu Dec 24 2020 20:20:33 GMT+0800 (CST)",
  33. "_from": "lru-cache@5.1.1",
  34. "_resolved": "https://registry.npm.taobao.org/lru-cache/download/lru-cache-5.1.1.tgz?cache=0&sync_timestamp=1594429774619&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Flru-cache%2Fdownload%2Flru-cache-5.1.1.tgz"
  35. }