bower.json 669 B

123456789101112131415161718192021222324252627282930313233
  1. {
  2. "name": "lightbox2",
  3. "homepage": "http://lokeshdhakar.com/projects/lightbox2/",
  4. "authors": [
  5. "Lokesh Dhakar <lokesh.dhakar@gmail.com>"
  6. ],
  7. "description": "The original Lightbox script. Uses jQuery.",
  8. "main": [
  9. "./dist/js/lightbox.js",
  10. "./dist/css/lightbox.css",
  11. "./dist/images/close.png",
  12. "./dist/images/loading.gif",
  13. "./dist/images/next.png",
  14. "./dist/images/prev.png"
  15. ],
  16. "keywords": [
  17. "lightbox",
  18. "lightbox2",
  19. "overlay",
  20. "gallery",
  21. "slideshow",
  22. "images"
  23. ],
  24. "license": "MIT",
  25. "ignore": [
  26. "**/.*",
  27. "node_modules",
  28. "bower_components"
  29. ],
  30. "dependencies": {
  31. "jquery": "~2"
  32. }
  33. }