├── .npmignore ├── .travis.yml ├── README.md ├── images └── verify-email.png ├── index.js ├── package.json └── test └── index.js /.npmignore: -------------------------------------------------------------------------------- 1 | .env 2 | images/ 3 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whois-api-llc/node-email-verifier/HEAD/.travis.yml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whois-api-llc/node-email-verifier/HEAD/README.md -------------------------------------------------------------------------------- /images/verify-email.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whois-api-llc/node-email-verifier/HEAD/images/verify-email.png -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whois-api-llc/node-email-verifier/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whois-api-llc/node-email-verifier/HEAD/package.json -------------------------------------------------------------------------------- /test/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whois-api-llc/node-email-verifier/HEAD/test/index.js --------------------------------------------------------------------------------