package.json 817 B

12345678910111213141516171819202122232425262728293031323334
  1. {
  2. "name": "lru-memoizer",
  3. "description": "Memoize functions results using an lru-cache.",
  4. "version": "2.3.0",
  5. "author": "José F. Romaniello <jfromaniello@gmail.com> (http://joseoncode.com)",
  6. "repository": {
  7. "url": "git://github.com/jfromaniello/lru-memoizer.git"
  8. },
  9. "keywords": [
  10. "cache",
  11. "memoize",
  12. "lru"
  13. ],
  14. "main": "./lib/index.js",
  15. "types": "./lib/index.d.ts",
  16. "scripts": {
  17. "prepare": "tsc",
  18. "test": "npm run prepare && mocha"
  19. },
  20. "dependencies": {
  21. "lodash.clonedeep": "^4.5.0",
  22. "lru-cache": "6.0.0"
  23. },
  24. "license": "MIT",
  25. "devDependencies": {
  26. "@types/lodash.clonedeep": "^4.5.9",
  27. "@types/lru-cache": "^5.1.0",
  28. "@types/node": "^12.0.10",
  29. "chai": "^3.5.0",
  30. "mocha": "^10.4.0",
  31. "sinon": "^7.3.2",
  32. "typescript": "^3.5.2"
  33. }
  34. }