composer.json 749 B

12345678910111213141516171819202122232425262728293031323334
  1. {
  2. "name": "moment/moment",
  3. "description": "Parse, validate, manipulate, and display dates in javascript.",
  4. "keywords": [
  5. "moment",
  6. "date",
  7. "time",
  8. "parse",
  9. "format",
  10. "validate",
  11. "i18n",
  12. "l10n",
  13. "ender"
  14. ],
  15. "homepage": "http://github.com/moment/moment/",
  16. "authors": [{"name": "Tim Wood", "email": "washwithcare@gmail.com"}],
  17. "license": "MIT",
  18. "type": "component",
  19. "require": {
  20. "robloach/component-installer": "*"
  21. },
  22. "extra": {
  23. "component": {
  24. "scripts": [
  25. "moment.js"
  26. ],
  27. "files": [
  28. "min/*.js",
  29. "lang/*.js"
  30. ]
  31. }
  32. }
  33. }