composer.json 1016 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. {
  2. "name": "fullcalendar/fullcalendar",
  3. "type": "component",
  4. "description": "Full-sized drag & drop event calendar",
  5. "keywords": [
  6. "calendar",
  7. "event",
  8. "full-sized",
  9. "jquery-plugin"
  10. ],
  11. "homepage": "https://fullcalendar.io/",
  12. "license": "MIT",
  13. "authors": [
  14. {
  15. "name": "Adam Shaw",
  16. "email": "[email protected]",
  17. "homepage": "http://arshaw.com/"
  18. }
  19. ],
  20. "minimum-stability": "stable",
  21. "require": {
  22. "robloach/component-installer": "*",
  23. "components/jquery": "2 - 3",
  24. "moment/moment": "^2.20.1"
  25. },
  26. "extra": {
  27. "component": {
  28. "scripts": [
  29. "dist/fullcalendar.js"
  30. ],
  31. "styles": [
  32. "dist/fullcalendar.css"
  33. ],
  34. "files": [
  35. "dist/fullcalendar.min.js",
  36. "dist/fullcalendar.min.css",
  37. "dist/fullcalendar.print.css",
  38. "dist/fullcalendar.print.min.css",
  39. "dist/gcal.js",
  40. "dist/gcal.min.js",
  41. "dist/locale-all.js",
  42. "dist/locale/*.js"
  43. ]
  44. }
  45. }
  46. }