{
  "name": "email-seems-valid",
  "description": "An offline check to see if an email seems valid",
  "version": "0.0.12",
  "license": "MIT",
  "sideEffects": false,
  "main": "./lib/cjs/index.js",
  "module": "./lib/esm/index.js",
  "files": [
    "lib/"
  ],
  "author": "@dawsbot",
  "scripts": {
    "test": "run-p jest compile lint",
    "lint": "eslint .",
    "compile": "run-p tsc:esm tsc:cjs",
    "tsc:esm": "tsc -p tsconfig.json",
    "tsc:cjs": "tsc -p tsconfig-cjs.json",
    "build": "rm -rf lib && npm run compile",
    "prepublishOnly": "npm run build",
    "jest": "jest",
    "postversion": "git push --follow-tags && npm publish && gh release create --generate-notes"
  },
  "devDependencies": {
    "@types/jest": "^27.4.1",
    "@types/node": "^17.0.23",
    "@types/prettier": "^2.4.4",
    "@types/validator": "^13.7.2",
    "@typescript-eslint/eslint-plugin": "^5.16.0",
    "@typescript-eslint/parser": "^5.16.0",
    "eslint": "^8.12.0",
    "eslint-plugin-jest": "^26.1.3",
    "husky": "^4.3.8",
    "jest": "^27.5.1",
    "jest-cli": "^27.5.1",
    "lint-staged": "^12.3.7",
    "npm-run-all": "^4.1.5",
    "prettier": "^2.6.1",
    "prettier-plugin-organize-imports": "^2.3.4",
    "ts-jest": "^27.1.4",
    "ts-node": "^10.7.0",
    "typescript": "^4.6.3"
  },
  "dependencies": {
    "validator": "^13.7.0"
  },
  "husky": {
    "hooks": {
      "pre-commit": "lint-staged && npm run test"
    }
  },
  "lint-staged": {
    "*.{js,jsx,ts,tsx,css,scss,md,json,html,yml,yaml}": [
      "prettier --write"
    ]
  },
  "prettier": {
    "trailingComma": "all",
    "tabWidth": 2,
    "singleQuote": true
  }
}
