bower.json 713 B

12345678910111213141516171819202122232425262728293031
  1. {
  2. "name": "ng-token-auth",
  3. "version": "0.0.28",
  4. "authors": [
  5. "Lynn Dylan Hurley <lynn.dylan.hurley@gmail.com>"
  6. ],
  7. "description": "Token based authentication system for angular js. Includes support for oauth2 authentication using Facebook, Github, and Google.",
  8. "main": "dist/ng-token-auth.js",
  9. "keywords": [
  10. "authentication",
  11. "oauth2",
  12. "angular",
  13. "token",
  14. "secure"
  15. ],
  16. "license": "MIT",
  17. "homepage": "http://github.com/lynndylanhurley/ng-token-auth",
  18. "ignore": [
  19. "**/.*",
  20. "node_modules",
  21. "bower_components",
  22. "gulpfile.js",
  23. "package.json",
  24. "test",
  25. "tests"
  26. ],
  27. "dependencies": {
  28. "angular": "~1.4.4",
  29. "angular-cookie": "~4.0.9"
  30. }
  31. }