package.json 776 B

1234567891011121314151617181920212223242526272829303132
  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. }