package.json 773 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. {
  2. "name": "immutable",
  3. "version": "5.0.3",
  4. "description": "Immutable Data Collections",
  5. "license": "MIT",
  6. "homepage": "https://immutable-js.com",
  7. "author": {
  8. "name": "Lee Byron",
  9. "url": "https://github.com/leebyron"
  10. },
  11. "repository": {
  12. "type": "git",
  13. "url": "git://github.com/immutable-js/immutable-js.git"
  14. },
  15. "bugs": {
  16. "url": "https://github.com/immutable-js/immutable-js/issues"
  17. },
  18. "main": "dist/immutable.js",
  19. "module": "dist/immutable.es.js",
  20. "types": "dist/immutable.d.ts",
  21. "files": [
  22. "dist",
  23. "README.md",
  24. "LICENSE"
  25. ],
  26. "keywords": [
  27. "immutable",
  28. "persistent",
  29. "lazy",
  30. "data",
  31. "datastructure",
  32. "functional",
  33. "collection",
  34. "stateless",
  35. "sequence",
  36. "iteration"
  37. ]
  38. }