composer.json 876 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. {
  2. "name": "tinymce/tinymce",
  3. "version": "6.4.2",
  4. "description": "Web based JavaScript HTML WYSIWYG editor control.",
  5. "license": [
  6. "MIT-only"
  7. ],
  8. "keywords": [
  9. "wysiwyg",
  10. "tinymce",
  11. "richtext",
  12. "javascript",
  13. "html",
  14. "text",
  15. "rich editor",
  16. "rich text editor",
  17. "rte",
  18. "rich text",
  19. "contenteditable",
  20. "editing"
  21. ],
  22. "homepage": "https://www.tiny.cloud/",
  23. "type": "component",
  24. "extra": {
  25. "component": {
  26. "scripts": [
  27. "tinymce.js",
  28. "plugins/*/plugin.js",
  29. "themes/*/theme.js",
  30. "models/*/model.js",
  31. "icons/*/icons.js"
  32. ],
  33. "files": [
  34. "tinymce.min.js",
  35. "plugins/*/plugin.min.js",
  36. "themes/*/theme.min.js",
  37. "models/*/model.min.js",
  38. "skins/**",
  39. "icons/*/icons.min.js"
  40. ]
  41. }
  42. },
  43. "archive": {
  44. "exclude": [
  45. "README.md",
  46. "bower.js",
  47. "package.json",
  48. ".npmignore",
  49. "CHANGELOG.md"
  50. ]
  51. }
  52. }