bower.json 700 B

123456789101112131415161718192021222324252627282930313233343536
  1. {
  2. "name": "angular-notify",
  3. "main": [
  4. "dist/angular-notify.js",
  5. "dist/angular-notify.css"
  6. ],
  7. "version": "2.5.0",
  8. "homepage": "https://github.com/cgross/angular-notify",
  9. "authors": [
  10. "Chris Gross <schtoo@schtoo.com>"
  11. ],
  12. "description": "A minimalistic notification service for Angular.",
  13. "keywords": [
  14. "angular",
  15. "notify",
  16. "notifications"
  17. ],
  18. "license": "MIT",
  19. "ignore": [
  20. "**/.*",
  21. "node_modules",
  22. "bower_components",
  23. "test",
  24. "tests",
  25. "temp",
  26. "./angular-notify.css",
  27. "./angular-notify.html",
  28. "./angular-notify.js",
  29. "Gruntfile.js",
  30. "package.json",
  31. "demo"
  32. ],
  33. "dependencies": {
  34. "angular": "~1.3"
  35. }
  36. }