{
  "name": "mailbox-address",
  "version": "1.0.3",
  "description": "Validate syntax for a RFC 5321/6531(SMTPUTF8) email mailbox address.",
  "main": "dist/umd/index.js",
  "module": "dist/esm/index.js",
  "types": "dist/types/index.d.ts",
  "files": [
    "dist/"
  ],
  "scripts": {
    "prepare": "npm run compile",
    "compile": "npm run compile:esm && npm run compile:umd",
    "compile:esm": "tsc -t ESNEXT -p tsconfig.types.json",
    "compile:umd": "webpack --mode production",
    "docs": "typedoc",
    "test": "jest --coverage"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/techhead/mailbox-address.git"
  },
  "keywords": [
    "RFC5321",
    "RFC6531",
    "SMTPUTF8",
    "email",
    "mailbox",
    "address",
    "validator",
    "idn-email"
  ],
  "author": "Jonathan Hawkes",
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/techhead/mailbox-address/issues"
  },
  "homepage": "https://github.com/techhead/mailbox-address#readme",
  "devDependencies": {
    "@types/jest": "^29.1.2",
    "@types/node": "^18.8.5",
    "jest": "^29.1.2",
    "prettier": "^2.7.1",
    "ts-jest": "^29.0.3",
    "ts-loader": "^9.4.1",
    "typedoc": "^0.23.16",
    "typescript": "^4.8.4",
    "webpack": "^5.74.0",
    "webpack-cli": "^4.10.0"
  }
}
