composer.json 720 B

12345678910111213141516171819202122232425262728293031323334353637
  1. {
  2. "name": "components/bootstrap-switch",
  3. "description": "Turn checkboxes and radio buttons in toggle switches.",
  4. "version": "3.2.0",
  5. "type": "component",
  6. "keywords": [
  7. "bootstrap",
  8. "switch",
  9. "javascript",
  10. "js"
  11. ],
  12. "homepage": "http://www.bootstrap-switch.org",
  13. "license": "Apache License Version 2.0",
  14. "authors": [
  15. {
  16. "name": "Mattia Larentis",
  17. "homepage": "http://www.larentis.eu"
  18. }
  19. ],
  20. "ignore": [
  21. "docs"
  22. ],
  23. "extra": {
  24. "component": {
  25. "name": "bootstrap-switch",
  26. "files": [
  27. "dist/**"
  28. ],
  29. "scripts": [
  30. "dist/js/bootstrap-switch.js"
  31. ],
  32. "shim": {
  33. "exports": "BootstrapSwitch"
  34. }
  35. }
  36. }
  37. }