提交学习笔记专用
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.

51 lines
867 B

  1. {
  2. "name": "define-lazy-prop",
  3. "version": "3.0.0",
  4. "description": "Define a lazily evaluated property on an object",
  5. "license": "MIT",
  6. "repository": "sindresorhus/define-lazy-prop",
  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 && ava && tsd"
  20. },
  21. "files": [
  22. "index.js",
  23. "index.d.ts"
  24. ],
  25. "keywords": [
  26. "lazy",
  27. "property",
  28. "properties",
  29. "prop",
  30. "define",
  31. "object",
  32. "value",
  33. "lazily",
  34. "laziness",
  35. "evaluation",
  36. "eval",
  37. "execute",
  38. "getter",
  39. "function",
  40. "fn",
  41. "memoize",
  42. "cache",
  43. "defer",
  44. "deferred"
  45. ],
  46. "devDependencies": {
  47. "ava": "^3.15.0",
  48. "tsd": "^0.14.0",
  49. "xo": "^0.38.2"
  50. }
  51. }