bower.json 752 B

12345678910111213141516171819202122232425262728293031323334
  1. {
  2. "name": "angular-notification",
  3. "main": "angular-notification.js",
  4. "version": "1.1.1",
  5. "homepage": "https://github.com/neoziro/angular-notification",
  6. "authors": [
  7. "Greg Bergé <neoziro@gmail.com>"
  8. ],
  9. "description": "Notification service for Angular using native HTML5 API.",
  10. "keywords": [
  11. "angular",
  12. "notification",
  13. "service"
  14. ],
  15. "license": "MIT",
  16. "ignore": [
  17. "**/.*",
  18. "package.json",
  19. "karma.conf.js",
  20. "node_modules",
  21. "bower_components",
  22. "Gruntfile.js",
  23. "test",
  24. "examples"
  25. ],
  26. "dependencies": {
  27. "angular": "~1.4.0"
  28. },
  29. "devDependencies": {
  30. "angular-mocks": "~1.4.0",
  31. "sinon-1.15.0": "http://sinonjs.org/releases/sinon-1.15.0.js",
  32. "sinon-chai": "~2.8.0"
  33. }
  34. }