package.json 692 B

123456789101112131415161718192021222324252627282930
  1. {
  2. "version": "3.1.0",
  3. "name": "email-addresses",
  4. "description": "An email address parser based on rfc5322",
  5. "keywords": [
  6. "email address",
  7. "parser",
  8. "rfc5322",
  9. "5322"
  10. ],
  11. "homepage": "https://github.com/jackbearheart/email-addresses",
  12. "author": "Jack Bearheart <johnrbowman@fastmail.fm>",
  13. "repository": {
  14. "type": "git",
  15. "url": "https://github.com/jackbearheart/email-addresses.git"
  16. },
  17. "directories": {
  18. "lib": "./lib"
  19. },
  20. "main": "./lib/email-addresses.js",
  21. "devDependencies": {
  22. "libxmljs": "~0.19.7",
  23. "tap": "^14.8.2"
  24. },
  25. "scripts": {
  26. "test": "tap ./test"
  27. },
  28. "license": "MIT",
  29. "typings": "./lib/email-addresses.d.ts"
  30. }