UNPKG

email-validator-helper

Version:

This package provides your application with several types of email validation: syntax, domain, MX server, and much more.

49 lines (48 loc) 1.3 kB
{ "name": "email-validator-helper", "version": "0.0.10", "author": "Artur J Medeiros <web@arjos.com.br>", "description": "This package provides your application with several types of email validation: syntax, domain, MX server, and much more.", "main": "./dist/index.js", "types": "./dist/index.d.ts", "scripts": { "start": "tsc && node ./dist/index.js", "dev": "tsc && nodemon ./dist/index.js", "build": "tsc --declaration", "watch": "esbuild ./dist/index.js --bundle --outfile=dist/index.cjs --platform=node" }, "exports": { ".": { "types": "./dist/index.d.ts", "import": "./dist/index.ts", "require": "./dist/index.js" } }, "engines": { "node": ">4.0" }, "repository": { "type": "git", "url": "https://github.com/arturmedeiros/email-validator-helper.git" }, "license": "MIT", "homepage": "https://github.com/arturmedeiros/email-validator-helper", "keywords": [ "email", "email-validator", "email-verify", "email-syntax", "syntax-check" ], "devDependencies": { "@types/node": "^18.8.4", "esbuild": "^0.15.10", "nodemon": "^2.0.20", "ts-node": "^10.9.1", "ts-node-dev": "^2.0.0", "typescript": "^4.8.4" }, "dependencies": { "ip-to-asn": "^1.0.0" } }