bower.json 544 B

1234567891011121314151617181920212223242526272829
  1. {
  2. "name": "email-addresses",
  3. "version": "3.1.0",
  4. "homepage": "https://github.com/jackbearheart/email-addresses",
  5. "authors": [
  6. "Jack Bearheart <johnrbowman@fastmail.fm>"
  7. ],
  8. "description": "An email address parser based on rfc5322",
  9. "main": "./lib/email-addresses.js",
  10. "moduleType": [
  11. "globals",
  12. "node"
  13. ],
  14. "keywords": [
  15. "email",
  16. "address",
  17. "parser",
  18. "rfc5322",
  19. "5322"
  20. ],
  21. "license": "MIT",
  22. "ignore": [
  23. "**/.*",
  24. "node_modules",
  25. "bower_components",
  26. "test",
  27. "tests"
  28. ]
  29. }