bower.json 849 B

1234567891011121314151617181920212223242526272829303132333435
  1. {
  2. "name": "angular-disable-all",
  3. "description": "Angular directive that allows to disable any element (for example DIV) content (inputs, buttons, etc.) and disable clicks on the given element",
  4. "version": "0.0.2",
  5. "keywords": ["disable-all", "angular-disable-all"],
  6. "authors": [
  7. { "name": "Umed Khudoiberdiev", "email": "info@zar.tj" }
  8. ],
  9. "repository": {
  10. "type": "git",
  11. "url": "git://github.com/PLEEROCK/angular-disable-all.git"
  12. },
  13. "main": [
  14. "./dist/angular-disable-all.js"
  15. ],
  16. "ignore": [
  17. ".gitignore",
  18. ".jshintrc",
  19. "package.json",
  20. "gulpfile.js",
  21. "node_modules",
  22. "bower_components",
  23. "src",
  24. "reports",
  25. "samples",
  26. "test"
  27. ],
  28. "dependencies": {
  29. "angular": ">= 1.0.8"
  30. },
  31. "devDependencies": {
  32. "angular-mocks": ">= 1.0.8",
  33. "angular-scenario": ">= 1.0.8"
  34. }
  35. }