{"maintainers":[{"email":"eran@hammer.io","name":"anonymous"},{"email":"quitlahok@gmail.com","name":"anonymous"},{"email":"skeggse@gmail.com","name":"anonymous"}],"keywords":["isemail","validation","check","checking","verification","email","address","email address"],"dist-tags":{"latest":"3.2.0"},"description":"Validate an email address according to RFCs 5321, 5322, and others","readme":"# isemail\n\nNode email address validation library\n\n[![Build Status](https://travis-ci.org/hapijs/isemail.svg?branch=master)](https://travis-ci.org/hapijs/isemail)<a href=\"#footnote-1\"><sup>&#91;1&#93;</sup></a>\n\nLead Maintainer: [Eli Skeggs][skeggse]\n\nThis library is a port of the PHP `is_email` function by Dominic Sayers.\n\nInstall\n=======\n\n```sh\n$ npm install isemail\n```\n\nTest\n====\n\nThe tests were pulled from `is_email`'s extensive [test suite][tests] on October 15, 2013. Many thanks to the contributors! Additional tests have been added to increase code coverage and verify edge-cases.\n\nRun any of the following.\n\n```sh\n$ lab\n$ npm test\n$ make test\n```\n\n_remember to_ `npm install` to get the development dependencies!\n\nAPI\n===\n\nvalidate(email, [options])\n--------------------------\n\nDetermines whether the `email` is valid or not, for various definitions thereof. Optionally accepts an `options` object. Options may include `errorLevel`.\n\nUse `errorLevel` to specify the type of result for `validate()`. Passing a `false` literal will result in a true or false boolean indicating whether the email address is sufficiently defined for use in sending an email. Passing a `true` literal will result in a more granular numeric status, with zero being a perfectly valid email address. Passing a number will return `0` if the numeric status is below the `errorLevel` and the numeric status otherwise.\n\nThe `tldBlacklist` option can be either an object lookup table or an array of invalid top-level domains. If the email address has a top-level domain that is in the whitelist, the email will be marked as invalid.\n\nThe `tldWhitelist` option can be either an object lookup table or an array of valid top-level domains. If the email address has a top-level domain that is not in the whitelist, the email will be marked as invalid.\n\nThe `allowUnicode` option governs whether non-ASCII characters are allowed. Defaults to `true` per RFC 6530.\n\nOnly one of `tldBlacklist` and `tldWhitelist` will be consulted for TLD validity.\n\nThe `minDomainAtoms` option is an optional positive integer that specifies the minimum number of domain atoms that must be included for the email address to be considered valid. Be careful with the option, as some top-level domains, like `io`, directly support email addresses.\n\nAs of `3.1.1`, the `callback` parameter is deprecated, and will be removed in `4.0.0`.\n\n### Examples\n\n```js\n$ node\n> var Isemail = require('isemail');\nundefined\n> Isemail.validate('test@iana.org');\ntrue\n> Isemail.validate('test@iana.123');\ntrue\n> Isemail.validate('test@iana.org', {errorLevel: true});\n0\n> Isemail.validate('test@iana.123', {errorLevel: true});\n10\n> Isemail.validate('test@iana.123', {errorLevel: 17});\n0\n> Isemail.validate('test@iana.123', {errorLevel: 10});\n10\n> Isemail.validate('test@iana&12');\nfalse\n> Isemail.validate('test@iana&12', {errorLevel: true});\n65\n> Isemail.validate('test@', {errorLevel: true});\n131\n```\n\n<sup name=\"footnote-1\">&#91;1&#93;</sup>: if this badge indicates the build is passing, then isemail has 100% code coverage.\n\n[skeggse]: https://github.com/skeggse \"Eli Skeggs\"\n[tests]: http://isemail.info/_system/is_email/test/?all‎ \"is_email test suite\"\n","repository":{"type":"git","url":"git://github.com/hapijs/isemail.git"},"users":{"clohr":true,"koulmomo":true,"nazy":true,"philiiiiiipp":true},"bugs":{"url":"https://github.com/hapijs/isemail/issues"},"license":"BSD-3-Clause","versions":{"0.1.0":{"name":"isemail","version":"0.1.0","author":{"name":"Eli Skeggs","email":"skeggse@gmail.com"},"description":"validate an email address according to RFCs 5321, 5322, and others","main":"./index","scripts":{"test":"./node_modules/.bin/mocha"},"repository":{"type":"git","url":"https://github.com/globesherpa/isemail.git"},"homepage":"https://github.com/globesherpa/isemail","bugs":{"url":"https://github.com/globesherpa/isemail/issues"},"keywords":["isemail","validation","check","checking","verification","email","address","email address"],"devDependencies":{"mocha":"~1.13.0","expect.js":"~0.2.0"},"licenses":[{"type":"BSD","url":"http://www.opensource.org/licenses/bsd-license.php"}],"engines":{"node":"*"},"_id":"isemail@0.1.0","dist":{"shasum":"ceebd7bd1b2a4ef0356c63e69cff7cea7188e70e","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/isemail/-/isemail-0.1.0.tgz","integrity":"sha512-9/PvSMNdCWB6bHBSN2X4gl4QIsBbyRHcQiOUUJDvfXacFHCuvAQTQoOAQaXFsl5VOi/Lc6M5bS248gfhXJq0Vw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIE4N4cGAgag1k5f0lxzQYX2b5MSSj6jYLvtDloyN5gPiAiEAq9KRyqy09nC6dlD3rgNfHj6lTs/mcInZnJjuCllkRHg="}]},"_from":".","_npmVersion":"1.3.11","_npmUser":{"name":"anonymous","email":"skeggse@gmail.com"},"maintainers":[{"name":"anonymous","email":"skeggse@gmail.com"}],"directories":{}},"0.1.1":{"name":"isemail","version":"0.1.1","author":{"name":"Eli Skeggs","email":"skeggse@gmail.com"},"description":"validate an email address according to RFCs 5321, 5322, and others","main":"./index","scripts":{"test":"mocha"},"repository":{"type":"git","url":"https://github.com/globesherpa/node-isemail.git"},"homepage":"https://github.com/globesherpa/node-isemail","bugs":{"url":"https://github.com/globesherpa/node-isemail/issues"},"keywords":["isemail","validation","check","checking","verification","email","address","email address"],"devDependencies":{"mocha":"~1.13.0","expect.js":"~0.2.0"},"licenses":[{"type":"BSD","url":"http://www.opensource.org/licenses/bsd-license.php"}],"engines":{"node":"*"},"_id":"isemail@0.1.1","dist":{"shasum":"4b6ddd815bdb08a24d3a411f0495d8ae4473d499","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/isemail/-/isemail-0.1.1.tgz","integrity":"sha512-dVQ3OT16nh+3D9fktQFcvLfHVOPXKK2uartnPEiQrCGNGgRv5fpiyN6zHj2dRX45t9Sn16IO/4iiPi8zGggBSw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCiCHAcGX1Wlph3MfE3Bkwux9TlpLihL5Fh3kkasemTIgIgH+3wFb8jWrndNGSdBXu5vwwsj1+FepKbPrSF+VyBuqU="}]},"_from":".","_npmVersion":"1.4.3","_npmUser":{"name":"anonymous","email":"skeggse@gmail.com"},"maintainers":[{"name":"anonymous","email":"skeggse@gmail.com"}],"directories":{}},"0.1.2":{"name":"isemail","version":"0.1.2","author":{"name":"Eli Skeggs","email":"skeggse@gmail.com"},"description":"validate an email address according to RFCs 5321, 5322, and others","main":"./index","scripts":{"test":"mocha"},"repository":{"type":"git","url":"https://github.com/globesherpa/node-isemail.git"},"homepage":"https://github.com/globesherpa/node-isemail","bugs":{"url":"https://github.com/globesherpa/node-isemail/issues"},"keywords":["isemail","validation","check","checking","verification","email","address","email address"],"devDependencies":{"mocha":"~1.13.0","expect.js":"~0.2.0"},"licenses":[{"type":"BSD","url":"http://www.opensource.org/licenses/bsd-license.php"}],"engines":{"node":"*"},"_id":"isemail@0.1.2","dist":{"shasum":"d337b79d7b24c071997c8557a56292f37646e215","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/isemail/-/isemail-0.1.2.tgz","integrity":"sha512-WxS7ifpSeSYzrLMXEjtMwW7xgA2PGKJIoHaKD8KMrN789X5twKQ/b77CBNqEUcK/91gLV4TWi4D4rq4tT4NxeA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDE0m33S61fpYSPf+VRdVvuMiHUZHTMGXGwkwT5aHn4owIgZpjY8QN2Kcd9fnTEUP98D5jBGeXQIfXuqYKrBKhybzs="}]},"_from":".","_npmVersion":"1.4.3","_npmUser":{"name":"anonymous","email":"skeggse@gmail.com"},"maintainers":[{"name":"anonymous","email":"skeggse@gmail.com"}],"directories":{}},"1.0.0":{"name":"isemail","version":"1.0.0","author":{"name":"Eli Skeggs","email":"skeggse@gmail.com"},"description":"validate an email address according to RFCs 5321, 5322, and others","main":"./index","scripts":{"test":"mocha"},"repository":{"type":"git","url":"https://github.com/globesherpa/node-isemail.git"},"homepage":"https://github.com/globesherpa/node-isemail","bugs":{"url":"https://github.com/globesherpa/node-isemail/issues"},"keywords":["isemail","validation","check","checking","verification","email","address","email address"],"devDependencies":{"mocha":"~1.13.0","expect.js":"~0.2.0"},"licenses":[{"type":"BSD","url":"http://www.opensource.org/licenses/bsd-license.php"}],"engines":{"node":"*"},"_id":"isemail@1.0.0","_shasum":"cc7bd1fea6e66d3f8173ee3ea8e33fe11899c849","_from":".","_npmVersion":"1.4.9","_npmUser":{"name":"anonymous","email":"skeggse@gmail.com"},"maintainers":[{"name":"anonymous","email":"skeggse@gmail.com"}],"dist":{"shasum":"cc7bd1fea6e66d3f8173ee3ea8e33fe11899c849","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/isemail/-/isemail-1.0.0.tgz","integrity":"sha512-QOzPQAHqTlykbWk3k4gQDM68YDqBh/CWkzX+EJjVEWf9rCRKb0rxWxyNJP3/Q3mVJs4w5P5urLA9UKR3kDo0ew==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQC7HDkLp6T37WTYkd3LFm6QwU8XIzM2r1l1tdbb31fo4QIhAKZ/UJ9KsgNTA7waQcYe/1e4k2BaRnzC41ftwW/0Daxr"}]},"directories":{}},"1.0.1":{"name":"isemail","version":"1.0.1","author":{"name":"Eli Skeggs","email":"skeggse@gmail.com"},"description":"validate an email address according to RFCs 5321, 5322, and others","main":"./index","scripts":{"test":"mocha"},"repository":{"type":"git","url":"https://github.com/globesherpa/node-isemail.git"},"homepage":"https://github.com/globesherpa/node-isemail","bugs":{"url":"https://github.com/globesherpa/node-isemail/issues"},"keywords":["isemail","validation","check","checking","verification","email","address","email address"],"devDependencies":{"mocha":"~1.13.0","expect.js":"~0.2.0"},"licenses":[{"type":"BSD","url":"http://www.opensource.org/licenses/bsd-license.php"}],"engines":{"node":"*"},"_id":"isemail@1.0.1","_shasum":"00e1bd37bf3c6df1a0f5c6a3ef8b7ede0aa5587b","_from":".","_npmVersion":"1.4.9","_npmUser":{"name":"anonymous","email":"skeggse@gmail.com"},"maintainers":[{"name":"anonymous","email":"skeggse@gmail.com"}],"dist":{"shasum":"00e1bd37bf3c6df1a0f5c6a3ef8b7ede0aa5587b","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/isemail/-/isemail-1.0.1.tgz","integrity":"sha512-P8p2BWD5mSgSN7Mk/jgW8eK1UvpNNfVLrCmeu+r5nKYEDmAqKn8N8WdzYdzBpw1gL1De9DKo/mqhLytorTicjA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIBrbo9nBHwI3kH15AuKUzabQ/XtZZ62wk+E2NRcBxv/eAiBXLXZ9wnFzxL7yNqPD7KLas8bQ/o+VTPuQZ+eXvfeXhA=="}]},"directories":{}},"1.1.0":{"name":"isemail","version":"1.1.0","author":{"name":"Eli Skeggs","email":"skeggse@gmail.com"},"description":"validate an email address according to RFCs 5321, 5322, and others","main":"./index","scripts":{"test":"mocha"},"repository":{"type":"git","url":"https://github.com/globesherpa/node-isemail.git"},"homepage":"https://github.com/globesherpa/node-isemail","bugs":{"url":"https://github.com/globesherpa/node-isemail/issues"},"keywords":["isemail","validation","check","checking","verification","email","address","email address"],"devDependencies":{"mocha":"~1.13.0","chai":"~1.9.1"},"licenses":[{"type":"BSD","url":"http://www.opensource.org/licenses/bsd-license.php"}],"engines":{"node":"*"},"gitHead":"5cc9495fff9d30463d153bf9ec96f28a4b88d8f0","_id":"isemail@1.1.0","_shasum":"e3f85fd4f108b05b9661d518596880b279714fa1","_from":".","_npmVersion":"1.4.14","_npmUser":{"name":"anonymous","email":"skeggse@gmail.com"},"maintainers":[{"name":"anonymous","email":"skeggse@gmail.com"}],"dist":{"shasum":"e3f85fd4f108b05b9661d518596880b279714fa1","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/isemail/-/isemail-1.1.0.tgz","integrity":"sha512-US04w3KBmdEHIVMveumJQWvsLbV66nPk3uSXkYgimeuWnwLolviyFIwLup2mQXZMgvfwiIwOmrv+n8EiGkdUVQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDqkBFaujI0C8A2LIZNkup28SVcP/Wbqob5+kXA7isK6QIhALlaS5rS8eJn9uZMcZvOBAaT4JbnPQ2kVjnre0noV8BY"}]},"directories":{}},"1.1.1":{"name":"isemail","version":"1.1.1","author":{"name":"Eli Skeggs","email":"skeggse@gmail.com"},"description":"validate an email address according to RFCs 5321, 5322, and others","main":"./index","scripts":{"test":"mocha"},"repository":{"type":"git","url":"https://github.com/globesherpa/node-isemail.git"},"homepage":"https://github.com/globesherpa/node-isemail","bugs":{"url":"https://github.com/globesherpa/node-isemail/issues"},"keywords":["isemail","validation","check","checking","verification","email","address","email address"],"devDependencies":{"mocha":"~1.13.0","chai":"~1.9.1"},"licenses":[{"type":"BSD","url":"http://www.opensource.org/licenses/bsd-license.php"}],"engines":{"node":"*"},"gitHead":"2441d8f3e90b01091e80785c09e39e797177f3cc","_id":"isemail@1.1.1","_shasum":"e0c8f6dc3f47097e7777395c6896271aa256c3b5","_from":".","_npmVersion":"1.4.14","_npmUser":{"name":"anonymous","email":"skeggse@gmail.com"},"maintainers":[{"name":"anonymous","email":"skeggse@gmail.com"}],"dist":{"shasum":"e0c8f6dc3f47097e7777395c6896271aa256c3b5","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/isemail/-/isemail-1.1.1.tgz","integrity":"sha512-rf3hVEwz7BS0DXxwtb0Fv5E/6b2xJyiqDInGyiU76u59rQo6ZDzYX0ZZSKOfFfH4IqroN0Gz3owRtK6NTdinig==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCq1SHI/nVjVz+d/uGjExz1aZJMW19Edn68X01qLGizCgIhALqFH+30mVMMIIJc3G5zdQpqKWJj5T3NNI848DMuBasA"}]},"directories":{}},"1.1.2":{"name":"isemail","version":"1.1.2","author":{"name":"Eli Skeggs","email":"skeggse@gmail.com"},"description":"validate an email address according to RFCs 5321, 5322, and others","main":"./index","scripts":{"test":"mocha"},"repository":{"type":"git","url":"git+https://github.com/hapijs/isemail.git"},"homepage":"https://github.com/hapijs/isemail","bugs":{"url":"https://github.com/hapijs/isemail/issues"},"keywords":["isemail","validation","check","checking","verification","email","address","email address"],"devDependencies":{"mocha":"~2.3.2","chai":"~3.2.0"},"licenses":[{"type":"BSD","url":"http://www.opensource.org/licenses/bsd-license.php"}],"engines":{"node":">=0.8.0"},"gitHead":"d696b266dbade57c0ff634d185e9c005fb3dbff8","_id":"isemail@1.1.2","_shasum":"f3a0f3d8b9350cf61806b172eaeedf0e56beddb5","_from":".","_npmVersion":"2.14.2","_nodeVersion":"4.0.0","_npmUser":{"name":"anonymous","email":"skeggse@gmail.com"},"dist":{"shasum":"f3a0f3d8b9350cf61806b172eaeedf0e56beddb5","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/isemail/-/isemail-1.1.2.tgz","integrity":"sha512-W11yj1rC0HWrWeiGQmFiBymgXJ4N2TxwttSd4MePQHUnD4p4fp9TRi36oyaEV2TIUsCtdvleNNF7NJQWdOKtSA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDPJeFXuchuP7KhqJOf+gvzLDi0ed/VQI3HdZm9mPzHwQIhALYinTIItIpCeSKWlOiXA/+KIxQV3gLTv4vDqpL382J+"}]},"maintainers":[{"name":"anonymous","email":"skeggse@gmail.com"}],"directories":{}},"1.2.0":{"name":"isemail","version":"1.2.0","author":{"name":"Eli Skeggs","email":"skeggse@gmail.com"},"description":"validate an email address according to RFCs 5321, 5322, and others","main":"./index","scripts":{"test":"lab -r console -o stdout -r lcov -o coverage.lcov -a code -L","test-cov-html":"lab -r html -o coverage.html -a code"},"repository":{"type":"git","url":"git+https://github.com/hapijs/isemail.git"},"homepage":"https://github.com/hapijs/isemail","bugs":{"url":"https://github.com/hapijs/isemail/issues"},"keywords":["isemail","validation","check","checking","verification","email","address","email address"],"devDependencies":{"code":"^1.5.0","lab":"^5.16.1"},"license":"BSD-2-Clause","engines":{"node":">=0.10"},"gitHead":"9441961a6c9979dc0e339971b111e25dc1a5b2fd","_id":"isemail@1.2.0","_shasum":"be03df8cc3e29de4d2c5df6501263f1fa4595e9a","_from":".","_npmVersion":"2.14.2","_nodeVersion":"4.0.0","_npmUser":{"name":"anonymous","email":"skeggse@gmail.com"},"dist":{"shasum":"be03df8cc3e29de4d2c5df6501263f1fa4595e9a","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/isemail/-/isemail-1.2.0.tgz","integrity":"sha512-pZMb1rDrWRAPtVY92VCxWtF+1gExWrCnao+GL1EKHx6z19ovW+xNcnC1iNB7WkbSYWlyl3uwlaH5eaBx2s2crw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCICj/mT4+qjfrHZCJKsUJqvvD/4suB9YIjAQtcSh8o2b0AiAiamoExZ14h0LBsFG5WnHGfFA2ZRXFPmsEQJxvWS9+Aw=="}]},"maintainers":[{"name":"anonymous","email":"skeggse@gmail.com"}],"directories":{}},"2.0.0":{"name":"isemail","description":"Validate an email address according to RFCs 5321, 5322, and others","version":"2.0.0","repository":{"type":"git","url":"git://github.com/hapijs/isemail.git"},"main":"lib/index.js","keywords":["isemail","validation","check","checking","verification","email","address","email address"],"engines":{"node":">=4.0.0"},"dependencies":{},"devDependencies":{"code":"2.x.x","lab":"7.x.x"},"scripts":{"test":"lab -a code -t 100 -L","test-cov-html":"lab -a code -r html -o coverage.html"},"license":"BSD-3-Clause","gitHead":"81b754bb38973a522a28c1c70e337af5b988965c","bugs":{"url":"https://github.com/hapijs/isemail/issues"},"homepage":"https://github.com/hapijs/isemail#readme","_id":"isemail@2.0.0","_shasum":"ae593886c17327e8f5cf7c7d54003ab1ca566c65","_from":".","_npmVersion":"3.3.9","_nodeVersion":"4.2.1","_npmUser":{"name":"anonymous","email":"eran@hammer.io"},"dist":{"shasum":"ae593886c17327e8f5cf7c7d54003ab1ca566c65","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/isemail/-/isemail-2.0.0.tgz","integrity":"sha512-CcKyrJP7Zi4BVNdG5XktuRYpgaK/9f/AaJFmYynp4aSqTN5YRCXdspUvCk6p8QmX8eq4ZV5nWcaI1umYb23TLg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIHqxm47Hc8QlWGX+Ly+pqr96ATjxTBCP6JdLK/eX7o/5AiEA64m03VXG426M14yS5qqTPG9CkUykCfNmHa+SVOX6Ghk="}]},"maintainers":[{"name":"anonymous","email":"eran@hammer.io"},{"name":"anonymous","email":"skeggse@gmail.com"}],"directories":{}},"2.1.0":{"name":"isemail","description":"Validate an email address according to RFCs 5321, 5322, and others","version":"2.1.0","repository":{"type":"git","url":"git://github.com/hapijs/isemail.git"},"main":"lib/index.js","keywords":["isemail","validation","check","checking","verification","email","address","email address"],"engines":{"node":">=4.0.0"},"dependencies":{},"devDependencies":{"code":"2.x.x","lab":"7.x.x"},"scripts":{"test":"lab -a code -t 100 -L","test-cov-html":"lab -a code -r html -o coverage.html"},"license":"BSD-3-Clause","gitHead":"6e24ff61e4be4a8157413d41737272f5531756d8","bugs":{"url":"https://github.com/hapijs/isemail/issues"},"homepage":"https://github.com/hapijs/isemail#readme","_id":"isemail@2.1.0","_shasum":"7f5433e469d88f46fb81f83f5120f36df038e2ff","_from":".","_npmVersion":"3.3.6","_nodeVersion":"5.0.0","_npmUser":{"name":"anonymous","email":"skeggse@gmail.com"},"dist":{"shasum":"7f5433e469d88f46fb81f83f5120f36df038e2ff","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/isemail/-/isemail-2.1.0.tgz","integrity":"sha512-3s6lLEDl+VRW6azO7kwOoxBsmxgKhQBZ5epHZonrI/4G+4RfKeCP03jI5odW5RdYGeBmZKxqLR6cX7eV1GZASA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDTFcMbYNdwkvIE2vWxFq7yMFdUjZBf4FNT4+EBjDxylQIhANm84enMZr9fDDsGP1HyoHK1UgadcqioWfD8BsJUC+sS"}]},"maintainers":[{"name":"anonymous","email":"eran@hammer.io"},{"name":"anonymous","email":"skeggse@gmail.com"}],"directories":{}},"2.1.2":{"name":"isemail","description":"Validate an email address according to RFCs 5321, 5322, and others","version":"2.1.2","repository":{"type":"git","url":"git://github.com/hapijs/isemail.git"},"main":"lib/index.js","keywords":["isemail","validation","check","checking","verification","email","address","email address"],"engines":{"node":">=4.0.0"},"dependencies":{},"devDependencies":{"code":"2.x.x","lab":"10.x.x"},"scripts":{"test":"lab -a code -t 100 -L","test-cov-html":"lab -a code -r html -o coverage.html"},"license":"BSD-3-Clause","gitHead":"74dd2cb2c3dc25630ba472bfc0454e61f861575d","bugs":{"url":"https://github.com/hapijs/isemail/issues"},"homepage":"https://github.com/hapijs/isemail#readme","_id":"isemail@2.1.2","_shasum":"624c155a6774311468a5037a93f1b5d1f16677a4","_from":".","_npmVersion":"3.8.6","_nodeVersion":"6.0.0","_npmUser":{"name":"anonymous","email":"eran@hammer.io"},"dist":{"shasum":"624c155a6774311468a5037a93f1b5d1f16677a4","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/isemail/-/isemail-2.1.2.tgz","integrity":"sha512-z/MMeAOXgWtttqjSPZrcuk/X44SXTm+4Ia2YOfHYY7VInBw/KR/VwsX3xWs8JPTApuInchkQ/QYPyoaxOQooew==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCE8AQZyFWjroCVb6oMvirW5h7QgNXKqofDfFjHf332twIhANIZKLlSbd9jaYpFqWWe+4K3mPt9DpLnLOn6O8F1b3dB"}]},"maintainers":[{"name":"anonymous","email":"eran@hammer.io"},{"name":"anonymous","email":"skeggse@gmail.com"}],"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/isemail-2.1.2.tgz_1463815542001_0.6919277824927121"},"directories":{}},"2.2.0":{"name":"isemail","description":"Validate an email address according to RFCs 5321, 5322, and others","version":"2.2.0","repository":{"type":"git","url":"git://github.com/hapijs/isemail.git"},"main":"lib/index.js","keywords":["isemail","validation","check","checking","verification","email","address","email address"],"engines":{"node":">=4.0.0"},"dependencies":{},"devDependencies":{"code":"2.x.x","lab":"10.x.x"},"scripts":{"test":"lab -a code -t 100 -L","test-cov-html":"lab -a code -r html -o coverage.html"},"license":"BSD-3-Clause","gitHead":"28ca205cecf9851f9404b8897515d1f030ba1462","bugs":{"url":"https://github.com/hapijs/isemail/issues"},"homepage":"https://github.com/hapijs/isemail#readme","_id":"isemail@2.2.0","_shasum":"511af902688b3a28479a5c7ae980a3c5d86bbee4","_from":".","_npmVersion":"2.14.7","_nodeVersion":"4.2.1","_npmUser":{"name":"anonymous","email":"skeggse@gmail.com"},"maintainers":[{"name":"anonymous","email":"eran@hammer.io"},{"name":"anonymous","email":"skeggse@gmail.com"}],"dist":{"shasum":"511af902688b3a28479a5c7ae980a3c5d86bbee4","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/isemail/-/isemail-2.2.0.tgz","integrity":"sha512-es9qFXEZgzi0Mqv18RtPUj9iNHXASkaIpIJmYFuT4DJqjpSfPksnd1/YSgBj8S4dVqBc2W2PIPiZFpQHrL6R5w==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIF68jAEV4sX63e/i42TDdsmxMis3qe1+QQGk2ZtKTRI2AiAUpznJOb5EQF9Qwv5trv85KpiTsCUVh8TA/tlcScKIQw=="}]},"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/isemail-2.2.0.tgz_1466525220585_0.45511233853176236"},"directories":{}},"2.2.1":{"name":"isemail","description":"Validate an email address according to RFCs 5321, 5322, and others","version":"2.2.1","repository":{"type":"git","url":"git://github.com/hapijs/isemail.git"},"main":"lib/index.js","keywords":["isemail","validation","check","checking","verification","email","address","email address"],"engines":{"node":">=4.0.0"},"dependencies":{},"devDependencies":{"code":"3.x.x","lab":"10.x.x"},"scripts":{"test":"lab -a code -t 100 -L -m 5000","test-cov-html":"lab -a code -r html -o coverage.html -m 5000"},"license":"BSD-3-Clause","gitHead":"8e37e6159a333248f1492e44c359fb278f9d9550","bugs":{"url":"https://github.com/hapijs/isemail/issues"},"homepage":"https://github.com/hapijs/isemail#readme","_id":"isemail@2.2.1","_shasum":"0353d3d9a62951080c262c2aa0a42b8ea8e9e2a6","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"anonymous","email":"eran@hammer.io"},"dist":{"shasum":"0353d3d9a62951080c262c2aa0a42b8ea8e9e2a6","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/isemail/-/isemail-2.2.1.tgz","integrity":"sha512-LPjFxaTatluwGAJlGe4FtRdzg0a9KlXrahHoHAR4HwRNf90Ttwi6sOQ9zj+EoCPmk9yyK+WFUqkm0imUo8UJbw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIBJ2VH9cfooHyfxw3PoAEtlhjusvUVmqDBd7HbOUbrmLAiBoaERNZdzvLkkxJSU3RVZ/xsQYKQQqurx17WjB6WpWrg=="}]},"maintainers":[{"name":"anonymous","email":"eran@hammer.io"},{"name":"anonymous","email":"skeggse@gmail.com"}],"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/isemail-2.2.1.tgz_1469731465782_0.02718323841691017"},"directories":{}},"3.0.0":{"name":"isemail","description":"Validate an email address according to RFCs 5321, 5322, and others","version":"3.0.0","repository":{"type":"git","url":"git://github.com/hapijs/isemail.git"},"main":"lib/index.js","keywords":["isemail","validation","check","checking","verification","email","address","email address"],"engines":{"node":">=4.0.0"},"dependencies":{"punycode":"2.x.x"},"devDependencies":{"code":"3.x.x","lab":"10.x.x","proxyquire":"1.x.x"},"scripts":{"test":"lab -a code -t 100 -L -m 5000","test-cov-html":"lab -a code -r html -o coverage.html -m 5000"},"license":"BSD-3-Clause","gitHead":"714f890e8d7d5f22a9e75eb2275ba32ee77dd504","bugs":{"url":"https://github.com/hapijs/isemail/issues"},"homepage":"https://github.com/hapijs/isemail#readme","_id":"isemail@3.0.0","_npmVersion":"5.0.3","_nodeVersion":"7.6.0","_npmUser":{"name":"anonymous","email":"skeggse@gmail.com"},"dist":{"integrity":"sha512-rz0ng/c+fX+zACpLgDB8fnUQ845WSU06f4hlhk4K8TJxmR6f5hyvitu9a9JdMD7aq/P4E0XdG1uaab2OiXgHlA==","shasum":"c89a46bb7a3361e1759f8028f9082488ecce3dff","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/isemail/-/isemail-3.0.0.tgz","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCYtbJIGBgM5/VE152p18IS4h5bLdt+LQfCxQPU5trvjQIhAN09FOAnm2vcp5+K2EyldoSCC6EVlZDcVOSaXOinAAAy"}]},"maintainers":[{"email":"quitlahok@gmail.com","name":"anonymous"},{"email":"eran@hammer.io","name":"anonymous"},{"email":"skeggse@gmail.com","name":"anonymous"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/isemail-3.0.0.tgz_1498117287285_0.3006055443547666"},"directories":{}},"3.1.0":{"name":"isemail","description":"Validate an email address according to RFCs 5321, 5322, and others","version":"3.1.0","repository":{"type":"git","url":"git://github.com/hapijs/isemail.git"},"main":"lib/index.js","keywords":["isemail","validation","check","checking","verification","email","address","email address"],"engines":{"node":">=4.0.0"},"dependencies":{"punycode":"2.x.x"},"devDependencies":{"code":"3.x.x","lab":"15.x.x"},"scripts":{"test":"lab -a code -t 100 -L -m 5000","test-cov-html":"lab -a code -r html -o coverage.html -m 5000"},"license":"BSD-3-Clause","gitHead":"4de1bcc80844409dc906ec869284d53768d959a7","bugs":{"url":"https://github.com/hapijs/isemail/issues"},"homepage":"https://github.com/hapijs/isemail#readme","_id":"isemail@3.1.0","_npmVersion":"5.6.0","_nodeVersion":"9.4.0","_npmUser":{"name":"anonymous","email":"skeggse@gmail.com"},"dist":{"integrity":"sha512-Ke15MBbbhyIhZzWheiWuRlTO81tTH4RQvrbJFpVzJce8oyVrCVSDdrcw4TcyMsaS/fMGJSbU3lTsqCGDKwrzww==","shasum":"d15156d67529d48241bc0e644df28281e21dd458","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/isemail/-/isemail-3.1.0.tgz","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCicmvN52SNw2VXyIoVgAeK8sT7TVwDvlyofvuW2umP4QIhAOYP7FUhUQoSUYzg6z4S3FFHIpDyegWfJpQSSk3PIepg"}]},"maintainers":[{"email":"quitlahok@gmail.com","name":"anonymous"},{"email":"eran@hammer.io","name":"anonymous"},{"email":"skeggse@gmail.com","name":"anonymous"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/isemail-3.1.0.tgz_1516264149639_0.6530713601969182"},"directories":{}},"3.1.1":{"name":"isemail","description":"Validate an email address according to RFCs 5321, 5322, and others","version":"3.1.1","repository":{"type":"git","url":"git://github.com/hapijs/isemail.git"},"main":"lib/index.js","types":"lib/index.d.ts","keywords":["isemail","validation","check","checking","verification","email","address","email address"],"engines":{"node":">=4.0.0"},"dependencies":{"punycode":"2.x.x"},"devDependencies":{"code":"3.x.x","lab":"15.x.x"},"scripts":{"test":"lab -a code -t 100 -L -m 5000","test-cov-html":"lab -a code -r html -o coverage.html -m 5000"},"license":"BSD-3-Clause","gitHead":"b9b7a687dc66ecd16995c54a4371ccf6ffeb362a","bugs":{"url":"https://github.com/hapijs/isemail/issues"},"homepage":"https://github.com/hapijs/isemail#readme","_id":"isemail@3.1.1","_npmVersion":"5.6.0","_nodeVersion":"8.9.4","_npmUser":{"name":"anonymous","email":"skeggse@gmail.com"},"dist":{"integrity":"sha512-mVjAjvdPkpwXW61agT2E9AkGoegZO7SdJGCezWwxnETL58f5KwJ4vSVAMBUL5idL6rTlYAIGkX3n4suiviMLNw==","shasum":"e8450fe78ff1b48347db599122adcd0668bd92b5","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/isemail/-/isemail-3.1.1.tgz","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIBHcxuRz43a0pI92drOvatBy6AZON/d7R0T+zj1YAGPvAiEA/xPKNKveNK8NxecXJ6Wjo+3251gJjuMT2vQ4v/0Ovo8="}]},"maintainers":[{"email":"quitlahok@gmail.com","name":"anonymous"},{"email":"eran@hammer.io","name":"anonymous"},{"email":"skeggse@gmail.com","name":"anonymous"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/isemail-3.1.1.tgz_1517528035167_0.9951047888025641"},"directories":{}},"3.1.2":{"name":"isemail","description":"Validate an email address according to RFCs 5321, 5322, and others","version":"3.1.2","repository":{"type":"git","url":"git://github.com/hapijs/isemail.git"},"files":["lib/"],"main":"lib/index.js","types":"lib/index.d.ts","keywords":["isemail","validation","check","checking","verification","email","address","email address"],"engines":{"node":">=4.0.0"},"dependencies":{"punycode":"2.x.x"},"devDependencies":{"code":"3.x.x","lab":"15.x.x"},"scripts":{"test":"lab -a code -t 100 -L -m 5000","test-cov-html":"lab -a code -r html -o coverage.html -m 5000"},"license":"BSD-3-Clause","gitHead":"b7937af6d4ea29e42bfa813cc33f9b92a9d1e1d7","bugs":{"url":"https://github.com/hapijs/isemail/issues"},"homepage":"https://github.com/hapijs/isemail#readme","_id":"isemail@3.1.2","_npmVersion":"5.7.1","_nodeVersion":"9.9.0","_npmUser":{"name":"anonymous","email":"skeggse@gmail.com"},"dist":{"integrity":"sha512-zfRhJn9rFSGhzU5tGZqepRSAj3+g6oTOHxMGGriWNJZzyLPUK8H7VHpqKntegnW8KLyGA9zwuNaCoopl40LTpg==","shasum":"937cf919002077999a73ea8b1951d590e84e01dd","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/isemail/-/isemail-3.1.2.tgz","fileCount":5,"unpackedSize":66347,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIFrqeE+waYaG+PBQGOHbc7wYNdm6lAcXIWm3YlKvpMLGAiEAuusinosNZe95jPGSS+mhqYl5P0i04SudU7fzna6mqhY="}]},"maintainers":[{"email":"eran@hammer.io","name":"anonymous"},{"email":"quitlahok@gmail.com","name":"anonymous"},{"email":"skeggse@gmail.com","name":"anonymous"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/isemail_3.1.2_1522863332724_0.6198540614394803"},"_hasShrinkwrap":false},"3.1.3":{"name":"isemail","description":"Validate an email address according to RFCs 5321, 5322, and others","version":"3.1.3","repository":{"type":"git","url":"git://github.com/hapijs/isemail.git"},"files":["lib/"],"main":"lib/index.js","types":"lib/index.d.ts","keywords":["isemail","validation","check","checking","verification","email","address","email address"],"engines":{"node":">=4.0.0"},"dependencies":{"punycode":"2.x.x"},"devDependencies":{"code":"^5.2.0","lab":"^15.5.0"},"scripts":{"test":"lab -a code -t 100 -L -m 5000","test-cov-html":"lab -a code -r html -o coverage.html -m 5000"},"license":"BSD-3-Clause","gitHead":"22f6c314d44fad593a4c7ea6d0643082201ea7e6","bugs":{"url":"https://github.com/hapijs/isemail/issues"},"homepage":"https://github.com/hapijs/isemail#readme","_id":"isemail@3.1.3","_npmVersion":"6.1.0","_nodeVersion":"10.6.0","_npmUser":{"name":"anonymous","email":"skeggse@gmail.com"},"dist":{"integrity":"sha512-5xbsG5wYADIcB+mfLsd+nst1V/D+I7EU7LEZPo2GOIMu4JzfcRs5yQoypP4avA7QtUqgxYLKBYNv4IdzBmbhdw==","shasum":"64f37fc113579ea12523165c3ebe3a71a56ce571","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/isemail/-/isemail-3.1.3.tgz","fileCount":5,"unpackedSize":69136,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbSo13CRA9TVsSAnZWagAAZ2gQAJQnu4eLmQ8bpzqUjOau\ndUj97nKNrYMsSo3VwUUhqWyo2lAsbGOQPNnjirjPRxDTIGVkbmUVqeXbOpY0\nKFb+5vRcioIw1UTJXiUhcixFJWo9lXSPmhW5nz18bRz4kyU5lcriq/5o0D28\nzE/nBM5Cn8DGkhs+koYlRAj75IuriXKcJTIxMXYZl1wqYIYd+VYvAUhypjsQ\nV3573wTJ9L+aBiL9I7K9iQrSyVp7UAT6v/ZRLnr+RC4EUJEPi3D7CG0h48SA\nlo3TZRwx7Q5/K7mBT45FthUnCH7bRLG73rUUFBRbKIhDamEDdXcDJTGgXk3m\nOLlDTtKVdoYTd0W8wFP7geh6EFStxz24LSPfESC0UqSJJCfp0kZ0oYOiXxhO\nTYoGjHGjsmIhwVtWqTSUbtzfe6fHEAFG9jiPyF/1017NwZuokVRIBkgPShq1\n4+xdmglTgzqf05VQpwwYINouyQb8IJMqoqLQzfMCRCmGEyhOkcmFD1w0k76d\n6AMlw6l5uVPIpPIPQVAIuby5481eC7fa8Z5n7/PyjFMs6DQr2Ddk37MqQ8vm\nQcvwy2vPpLFU/HcDqEV2jepi79IQ2AkkUy8+oqarUogMCjvAEf875KBnmzM/\nsfQNsIHyO8EGDDDsagNcvbJh0+yLj17dYdagS50arOK/vpC/7b3qkVXZnp78\nYJyv\r\n=myPS\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQD9QLqzSRhAsPTQUbPrW/G495uU0P+0Hj5xIJ4wfBxGVgIgIIO+r3mhfHGZCwO/392C/DFcUDySqhL4eIz0OmFwb/U="}]},"maintainers":[{"email":"eran@hammer.io","name":"anonymous"},{"email":"quitlahok@gmail.com","name":"anonymous"},{"email":"skeggse@gmail.com","name":"anonymous"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/isemail_3.1.3_1531612535065_0.27501259005547185"},"_hasShrinkwrap":false},"3.1.4":{"name":"isemail","description":"Validate an email address according to RFCs 5321, 5322, and others","version":"3.1.4","repository":{"type":"git","url":"git://github.com/hapijs/isemail.git"},"main":"lib/index.js","types":"lib/index.d.ts","keywords":["isemail","validation","check","checking","verification","email","address","email address"],"engines":{"node":">=4.0.0"},"dependencies":{"punycode":"2.x.x"},"devDependencies":{"code":"^5.2.0","lab":"^16.1.0"},"scripts":{"test":"lab -a code -t 100 -L -m 5000","test-cov-html":"lab -a code -r html -o coverage.html -m 5000"},"license":"BSD-3-Clause","gitHead":"72313d0fea19d5c84d074f5b9ca8a8b66b593b2a","bugs":{"url":"https://github.com/hapijs/isemail/issues"},"homepage":"https://github.com/hapijs/isemail#readme","_id":"isemail@3.1.4","_npmVersion":"6.0.0","_nodeVersion":"8.9.3","_npmUser":{"name":"anonymous","email":"skeggse@gmail.com"},"dist":{"integrity":"sha512-yE/W5osEWuAGSLVixV9pAexhkbZzglmuhO2CxdHu7IBh7uzuZogQ4bk0lE26HoZ6HD4ZYfKRKilkNuCnuJIBJw==","shasum":"76e2187ff7bee59d57522c6fd1c3f09a331933cf","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/isemail/-/isemail-3.1.4.tgz","fileCount":5,"unpackedSize":69343,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbxMRICRA9TVsSAnZWagAAvo0P/RR8Xp5iImxKYUVedYrU\nLjZXUTV9bfe7G7dc74nyD71OyWwKbI1zIzO9BhRbOPUknftmTXnGS4s1ofrx\nepq6uA0aQadZayukeCYDkGRnkzD0dB81Xusg0p2de4Mdu+yZYIb3w1burfNF\n7b3riCcgXSFtjsbsd87IGC020TfeAQObXm+HX2LV37IsiAFjd2tzipyl+9Ja\ndPHqHBqo3TMrnoy9c0rmvKSthiFgDa7ybpvWgTcRN26Dkj2Oj8fp7/Hg09QS\n/BUajBuro0/rnYeFIoLtbKOuXo5TYpRNctoy6V0hoO71uKHZpvc+8Aj5vtcm\nkId7c2rQ+M5gGza+5TDJW53W1LDCKXapGRBPXzSrsb32eIphl1Y2Xhr67mqp\nsCaEOG0S3TEKcFqRn/kS5ul9tDCGOZIze5kKCvCApVuBNOH1WENK+McTXoQS\neT78fc3I+e2Iv7oKNX7/cPJ33hlLypl/IqA3oEVm74cx1AN4wsLNOMIKYXoG\nF+7PsPIGdjqE0vfXkPxtgLk/qElboAdgFwNDK/tlokIhZNIP27vcDYDLzGOO\ndDpkz+73J1oaQgyoL1+75l/ifJ33TxRJkrp0PRwsFykGrg0Pr9GgbSnMnbrJ\n2TsEJ9/98LqpGyuVlUjM5fNYVTM2MTYSnvy+Ly+H5TpUUP7XE4iyupJ8DgDm\npcUb\r\n=HN+D\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDYemGAcvCYsIIOit9+HlEMJ8CIs/tuBuE6yRyRbqp05gIhAOz5yFCQPuCwjmS95HAeyMVnCyRSJlh2ypWAoVLZQO29"}]},"maintainers":[{"email":"eran@hammer.io","name":"anonymous"},{"email":"quitlahok@gmail.com","name":"anonymous"},{"email":"skeggse@gmail.com","name":"anonymous"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/isemail_3.1.4_1539621959451_0.32492072876689404"},"_hasShrinkwrap":false},"3.2.0":{"name":"isemail","description":"Validate an email address according to RFCs 5321, 5322, and others","version":"3.2.0","repository":{"type":"git","url":"git://github.com/hapijs/isemail.git"},"main":"lib/index.js","types":"lib/index.d.ts","keywords":["isemail","validation","check","checking","verification","email","address","email address"],"engines":{"node":">=4.0.0"},"dependencies":{"punycode":"2.x.x"},"devDependencies":{"code":"^5.2.0","lab":"^16.1.0"},"scripts":{"test":"lab -a code -t 100 -L -m 5000","test-cov-html":"lab -a code -r html -o coverage.html -m 5000"},"license":"BSD-3-Clause","gitHead":"7909d8b870f24aeff7271377b235c73154960c24","bugs":{"url":"https://github.com/hapijs/isemail/issues"},"homepage":"https://github.com/hapijs/isemail#readme","_id":"isemail@3.2.0","_npmVersion":"6.4.1","_nodeVersion":"10.11.0","_npmUser":{"name":"anonymous","email":"skeggse@gmail.com"},"dist":{"integrity":"sha512-zKqkK+O+dGqevc93KNsbZ/TqTUFd46MwWjYOoMrjIMZ51eU7DtQG3Wmd9SQQT7i7RVnuTPEiYEWHU3MSbxC1Tg==","shasum":"59310a021931a9fb06bbb51e155ce0b3f236832c","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/isemail/-/isemail-3.2.0.tgz","fileCount":5,"unpackedSize":71309,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbyLSUCRA9TVsSAnZWagAABG8P/RnkiZNdASHUkSU9YlkL\nrASmnJrRzBdLcDUrmAs3nDWI8mWfk3f8q8B4nYX6Yd0pvrCZj/4WTEvZrWJg\nt6FPT7jfy/KMEguJowUkfbhAI7DITobmnc6mJhYMle7gYWUlMpKqldsM0c5c\nSvNBwej9vhpsQLBNHJuto39hkGX5L7p/NAzRABEF0TxYEXKgqD9GgndsrSNp\nJDLUvRy8cBZbl7C3CK+CHPDaJ08qulA0XBTim379NWMNbG6epFSwzFNgvovy\nsIGwNaYWlKKcuX5muWQqNC/vMUohiuX3Y2M3Ej2Y4vUCqZAWeFBREl4UvzT9\nMlfE/pT2VxNnn7A3eA/rPktyK7LsewdzgajN/eloRHuKopRuT64b6a8dHEOo\n/zWpHjP4K1xBiGS0SeUEVgBCoyy73upzy+BtaDM9FMOh25XZdXQVzhYjkupc\nuq12UECg+nI/JrjL5czF0M/CtCsaBjO0s9PcXe6ZB5JSgFs40z+xZmcFQP48\nIbIlSKBu2rPVapVqmAWO3QlBDzgPqMHEld+FMv8cclg/HJ1okS/8IrS2er4/\nwFiaLt00fok2em/cwwkWW9ObZ7DPyUTeQIIZAdx2AE2/evwWfritkgmuHxZ8\n8P4tXaZwbyJgN33YHRoamWY65TIqlzRpHOWqtIRPz96fXbwrAgVT8JMeur5T\n48tn\r\n=V98p\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDjz0Mz7wF8hoUVzv4mOYMacAIp3pLcI5OMqy7CeWucEwIhAKzo5DG1FlNds8dfaSpsQgQd+GIh95WM1abcfVwCVPVa"}]},"maintainers":[{"email":"eran@hammer.io","name":"anonymous"},{"email":"quitlahok@gmail.com","name":"anonymous"},{"email":"skeggse@gmail.com","name":"anonymous"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/isemail_3.2.0_1539880082964_0.41358796360253525"},"_hasShrinkwrap":false}},"name":"isemail","time":{"modified":"2022-06-19T02:57:02.505Z","created":"2013-11-06T17:51:51.956Z","0.1.0":"2013-11-06T17:51:53.982Z","0.1.1":"2014-04-29T23:09:03.420Z","0.1.2":"2014-04-30T01:40:13.885Z","1.0.0":"2014-05-27T16:36:25.873Z","1.0.1":"2014-05-27T19:11:32.416Z","1.1.0":"2014-08-14T02:51:31.694Z","1.1.1":"2014-08-15T01:08:33.235Z","1.1.2":"2015-09-13T04:51:35.493Z","1.2.0":"2015-09-14T20:45:41.308Z","2.0.0":"2015-11-01T23:47:20.442Z","2.1.0":"2015-11-04T17:07:29.202Z","2.1.2":"2016-05-21T07:25:44.078Z","2.2.0":"2016-06-21T16:07:03.346Z","2.2.1":"2016-07-28T18:44:29.909Z","3.0.0":"2017-06-22T07:41:28.168Z","3.1.0":"2018-01-18T08:29:10.621Z","3.1.1":"2018-02-01T23:33:56.304Z","3.1.2":"2018-04-04T17:35:32.809Z","3.1.3":"2018-07-14T23:55:35.204Z","3.1.4":"2018-10-15T16:45:59.616Z","3.2.0":"2018-10-18T16:28:03.309Z"},"readmeFilename":"README.md","homepage":"https://github.com/hapijs/isemail#readme"}