bower.json 620 B

1234567891011121314151617181920212223242526272829
  1. {
  2. "name": "videojs-hotkeys",
  3. "homepage": "https://github.com/ctd1500/videojs-hotkeys",
  4. "authors": [
  5. "Chris Dougherty"
  6. ],
  7. "license": "Apache-2.0",
  8. "description": "A plugin for Video.js that enables keyboard hotkeys when the player has focus.",
  9. "main": "videojs.hotkeys.min.js",
  10. "repository": {
  11. "type": "git",
  12. "url": "git://github.com/ctd1500/videojs-hotkeys.git"
  13. },
  14. "keywords": [
  15. "videojs",
  16. "videojs-plugin",
  17. "hotkeys",
  18. "video"
  19. ],
  20. "ignore": [
  21. "**/.*",
  22. "node_modules",
  23. "bower_components",
  24. "build"
  25. ],
  26. "dependencies": {
  27. "video.js": ">=4.4.0"
  28. }
  29. }