{
  "name": "deep-email-validator-fix",
  "version": "0.1.22",
  "files": [
    "dist/**/*"
  ],
  "description": "Validates emails based on regex, common typos, disposable email blacklists, DNS records and SMTP server response.",
  "main": "dist/index.js",
  "types": "dist/index.d.ts",
  "repository": {
    "type": "git",
    "url": "https://github.com/mfbx9da4/deep-email-validator"
  },
  "author": "David Alberto Adler",
  "license": "MIT",
  "keywords": [
    "email-validation",
    "email-typos",
    "email-regex",
    "disposable-emails",
    "smtp",
    "mx-records"
  ],
  "scripts": {
    "start": "yarn serve",
    "build": "tsc",
    "format": "prettier --write \"src/**/*.ts\" \"src/**/*.js\"",
    "prepare": "yarn build",
    "prepublishOnly": "yarn test && yarn lint",
    "preversion": "yarn lint",
    "version": "yarn format && git add -A src",
    "postversion": "git push && git push --tags",
    "watch-node": "nodemon dist/index.js",
    "test": "jest --verbose",
    "watch-test": "yarn test -- --watchAll",
    "watch-ts": "tsc -w",
    "lint": "tsc --noEmit && eslint \"**/*.{js,ts}\" --quiet --fix",
    "debug": "yarn build && yarn watch-debug",
    "run-debug": "nodemon --inspect dist/server.js"
  },
  "dependencies": {
    "@types/disposable-email-domains": "^1.0.1",
    "axios": "^0.24.0",
    "disposable-email-domains": "^1.0.59",
    "mailcheck": "^1.1.1"
  },
  "devDependencies": {
    "@types/eslint": "^6.1.1",
    "@types/jest": "^24.0.23",
    "@types/lodash": "^4.14.141",
    "@types/mailcheck": "^1.1.31",
    "@types/node": "^12.7.8",
    "@typescript-eslint/eslint-plugin": "^2.3.1",
    "@typescript-eslint/parser": "^2.3.1",
    "eslint": "^6.4.0",
    "jest": "^25.1.0",
    "lodash": "^4.17.21",
    "nodemon": "^2.0.15",
    "prettier": "^2.5.1",
    "ts-jest": "^25.2.1",
    "ts-node": "^10.4.0",
    "typescript": "^3.8.3"
  }
}
