package.json 831 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. {
  2. "name": "mem",
  3. "version": "1.1.0",
  4. "description": "Memoize functions - An optimization used to speed up consecutive function calls by caching the result of calls with identical input",
  5. "license": "MIT",
  6. "repository": "sindresorhus/mem",
  7. "author": {
  8. "name": "Sindre Sorhus",
  9. "email": "sindresorhus@gmail.com",
  10. "url": "sindresorhus.com"
  11. },
  12. "engines": {
  13. "node": ">=4"
  14. },
  15. "scripts": {
  16. "test": "xo && ava"
  17. },
  18. "files": [
  19. "index.js"
  20. ],
  21. "keywords": [
  22. "memoize",
  23. "function",
  24. "mem",
  25. "memoization",
  26. "cache",
  27. "caching",
  28. "optimize",
  29. "performance",
  30. "ttl",
  31. "expire",
  32. "promise"
  33. ],
  34. "dependencies": {
  35. "mimic-fn": "^1.0.0"
  36. },
  37. "devDependencies": {
  38. "ava": "*",
  39. "delay": "^1.1.0",
  40. "xo": "*"
  41. },
  42. "xo": {
  43. "esnext": true
  44. }
  45. }