composer.json 555 B

1234567891011121314151617181920212223
  1. {
  2. "name": "jonthornton/jquery-timepicker",
  3. "description":
  4. "A javascript timepicker plugin for jQuery inspired by Google Calendar.",
  5. "type": "component",
  6. "homepage": "http://jonthornton.github.io/jquery-timepicker/",
  7. "license": "MIT",
  8. "authors": [
  9. {
  10. "name": "Jon Thornton"
  11. }
  12. ],
  13. "require": {
  14. "robloach/component-installer": "*",
  15. "components/jquery": "*"
  16. },
  17. "extra": {
  18. "component": {
  19. "scripts": ["jquery.timepicker.js"],
  20. "files": ["jquery.timepicker.min.js", "jquery.timepicker.css"]
  21. }
  22. }
  23. }