composer.json 881 B

1234567891011121314151617181920212223242526272829303132333435
  1. {
  2. "name": "components/jquery",
  3. "description": "jQuery JavaScript Library",
  4. "type": "component",
  5. "homepage": "http://jquery.com",
  6. "license": "MIT",
  7. "support": {
  8. "irc": "irc://irc.freenode.org/jquery",
  9. "issues": "http://bugs.jquery.com",
  10. "forum": "http://forum.jquery.com",
  11. "wiki": "http://docs.jquery.com/",
  12. "source": "https://github.com/jquery/jquery"
  13. },
  14. "authors": [
  15. {
  16. "name": "John Resig",
  17. "email": "jeresig@gmail.com"
  18. }
  19. ],
  20. "require": {
  21. "robloach/component-installer": "*"
  22. },
  23. "extra": {
  24. "component": {
  25. "scripts": [
  26. "jquery.js"
  27. ],
  28. "files": [
  29. "jquery.min.js",
  30. "jquery-migrate.js",
  31. "jquery-migrate.min.js"
  32. ]
  33. }
  34. }
  35. }