package.json 743 B

123456789101112131415161718192021222324252627282930313233343536
  1. {
  2. "name": "isemail",
  3. "description": "Validate an email address according to RFCs 5321, 5322, and others",
  4. "version": "3.2.0",
  5. "repository": "git://github.com/hapijs/isemail",
  6. "files": [
  7. "lib/"
  8. ],
  9. "main": "lib/index.js",
  10. "types": "lib/index.d.ts",
  11. "keywords": [
  12. "isemail",
  13. "validation",
  14. "check",
  15. "checking",
  16. "verification",
  17. "email",
  18. "address",
  19. "email address"
  20. ],
  21. "engines": {
  22. "node": ">=4.0.0"
  23. },
  24. "dependencies": {
  25. "punycode": "2.x.x"
  26. },
  27. "devDependencies": {
  28. "code": "^5.2.0",
  29. "lab": "^16.1.0"
  30. },
  31. "scripts": {
  32. "test": "lab -a code -t 100 -L -m 5000",
  33. "test-cov-html": "lab -a code -r html -o coverage.html -m 5000"
  34. },
  35. "license": "BSD-3-Clause"
  36. }