You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

package.json 848B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. {
  2. "name": "mem",
  3. "version": "4.3.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": ">=6"
  14. },
  15. "scripts": {
  16. "test": "xo && ava && tsd"
  17. },
  18. "files": [
  19. "index.js",
  20. "index.d.ts"
  21. ],
  22. "keywords": [
  23. "memoize",
  24. "function",
  25. "mem",
  26. "memoization",
  27. "cache",
  28. "caching",
  29. "optimize",
  30. "performance",
  31. "ttl",
  32. "expire",
  33. "promise"
  34. ],
  35. "dependencies": {
  36. "map-age-cleaner": "^0.1.1",
  37. "mimic-fn": "^2.0.0",
  38. "p-is-promise": "^2.0.0"
  39. },
  40. "devDependencies": {
  41. "ava": "^1.4.1",
  42. "delay": "^4.1.0",
  43. "tsd": "^0.7.1",
  44. "xo": "^0.24.0"
  45. }
  46. }