composer.json 989 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. {
  2. "name": "components/modernizr",
  3. "description": "Modernizr is a JavaScript library that detects HTML5 and CSS3 features in the user's browser.",
  4. "keywords": [
  5. "html5",
  6. "css3",
  7. "browser",
  8. "feature detection"
  9. ],
  10. "type": "component",
  11. "homepage": "http://modernizr.com",
  12. "license": "MIT",
  13. "authors": [
  14. {
  15. "name": "Modernizr",
  16. "homepage": "http://modernizr.com"
  17. },
  18. { "name": "Faruk Ates" },
  19. { "name": "Paul Irish" },
  20. { "name": "Alex Sexton" },
  21. { "name": "Ryan Seddon" },
  22. { "name": "Alexander Farkas" },
  23. { "name": "Ben Alman" },
  24. { "name": "Stu Cox" }
  25. ],
  26. "require": {
  27. "robloach/component-installer": "*"
  28. },
  29. "extra": {
  30. "component": {
  31. "scripts": [
  32. "modernizr.js"
  33. ],
  34. "shim": {
  35. "exports": "window.Modernizr"
  36. }
  37. }
  38. }
  39. }