package.json 848 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. {
  2. "name": "quick-lru",
  3. "version": "6.1.1",
  4. "description": "Simple “Least Recently Used” (LRU) cache",
  5. "license": "MIT",
  6. "repository": "sindresorhus/quick-lru",
  7. "funding": "https://github.com/sponsors/sindresorhus",
  8. "author": {
  9. "name": "Sindre Sorhus",
  10. "email": "sindresorhus@gmail.com",
  11. "url": "https://sindresorhus.com"
  12. },
  13. "type": "module",
  14. "exports": "./index.js",
  15. "engines": {
  16. "node": ">=12"
  17. },
  18. "scripts": {
  19. "//test": "xo && nyc ava && tsd",
  20. "test": "xo && ava && tsd"
  21. },
  22. "files": [
  23. "index.js",
  24. "index.d.ts"
  25. ],
  26. "keywords": [
  27. "lru",
  28. "quick",
  29. "cache",
  30. "caching",
  31. "least",
  32. "recently",
  33. "used",
  34. "fast",
  35. "map",
  36. "hash",
  37. "buffer"
  38. ],
  39. "devDependencies": {
  40. "ava": "^3.15.0",
  41. "nyc": "^15.1.0",
  42. "tsd": "^0.14.0",
  43. "xo": "^0.37.1"
  44. },
  45. "nyc": {
  46. "reporter": [
  47. "text",
  48. "lcov"
  49. ]
  50. }
  51. }