package.json 942 B

123456789101112131415161718192021222324252627282930313233343536
  1. {
  2. "name": "lru-cache",
  3. "description": "A cache object that deletes the least-recently-used items.",
  4. "version": "4.1.5",
  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. "posttest": "standard test/*.js index.js",
  15. "coveragerport": "tap --coverage-report=html",
  16. "lintfix": "standard --fix test/*.js index.js",
  17. "preversion": "npm test",
  18. "postversion": "npm publish --tag=legacy",
  19. "postpublish": "git push origin --all; git push origin --tags"
  20. },
  21. "main": "index.js",
  22. "repository": "git://github.com/isaacs/node-lru-cache.git",
  23. "devDependencies": {
  24. "benchmark": "^2.1.4",
  25. "standard": "^12.0.1",
  26. "tap": "^12.1.0"
  27. },
  28. "license": "ISC",
  29. "dependencies": {
  30. "pseudomap": "^1.0.2",
  31. "yallist": "^2.1.2"
  32. },
  33. "files": [
  34. "index.js"
  35. ]
  36. }