Get the email of an npm user
npm install npm-email
import npmEmail from 'npm-email';
console.log(await npmEmail('sindresorhus'));
//=> 'sindresorhus@gmail.com'
Returns a promise for the user's email address, or undefined if the user does not exist or the email could not be found.
Type: string
The npm username to look up.