{
  "name": "preview-email",
  "description": "Automatically opens your browser to preview Node.js email messages sent with Nodemailer. Made for Lad!",
  "version": "1.0.2",
  "author": "Nick Baugh <niftylettuce@gmail.com> (http://niftylettuce.com/)",
  "ava": {
    "failFast": true,
    "verbose": true
  },
  "bugs": {
    "url": "https://github.com/niftylettuce/preview-email/issues",
    "email": "niftylettuce@gmail.com"
  },
  "commitlint": {
    "extends": [
      "@commitlint/config-conventional"
    ]
  },
  "contributors": [
    "Nick Baugh <niftylettuce@gmail.com> (http://niftylettuce.com/)"
  ],
  "dependencies": {
    "@babel/runtime": "^7.6.3",
    "dayjs": "^1.8.16",
    "debug": "^4.1.1",
    "nodemailer": "^6.3.1",
    "open": "^6.4.0",
    "pify": "^4.0.1",
    "pug": "^2.0.4",
    "uuid": "^3.3.3"
  },
  "devDependencies": {
    "@babel/cli": "^7.6.4",
    "@babel/core": "^7.6.4",
    "@babel/plugin-transform-runtime": "^7.6.2",
    "@babel/preset-env": "^7.6.3",
    "@commitlint/cli": "^8.2.0",
    "@commitlint/config-conventional": "^8.2.0",
    "auto-bind": "^2.1.1",
    "ava": "^2.4.0",
    "codecov": "^3.6.1",
    "cross-env": "^6.0.3",
    "eslint": "^6.5.1",
    "eslint-config-xo-lass": "^1.0.3",
    "eslint-plugin-node": "^10.0.0",
    "husky": "^3.0.8",
    "lint-staged": "^9.4.2",
    "nyc": "^14.1.1",
    "remark-cli": "^7.0.0",
    "remark-preset-github": "^0.0.16",
    "rimraf": "^3.0.0",
    "xo": "^0.25.3"
  },
  "engines": {
    "node": ">=8"
  },
  "files": [
    "lib",
    "template.pug"
  ],
  "homepage": "https://github.com/niftylettuce/preview-email",
  "husky": {
    "hooks": {
      "pre-commit": "npm test",
      "commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
    }
  },
  "keywords": [
    "auto",
    "automatic",
    "automatically",
    "browser",
    "chrome",
    "demo",
    "email",
    "emails",
    "engine",
    "express",
    "koa",
    "lad",
    "lass",
    "letter",
    "litmus",
    "mail",
    "mailer",
    "nodemailer",
    "open",
    "open",
    "opener",
    "opn",
    "preview",
    "pug",
    "render",
    "show",
    "smtp",
    "template",
    "templates",
    "test"
  ],
  "license": "MIT",
  "lint-staged": {
    "linters": {
      "*.js": [
        "xo --fix",
        "git add"
      ],
      "*.md": [
        "remark . -qfo",
        "git add"
      ],
      "package.json": [
        "fixpack",
        "git add"
      ]
    }
  },
  "main": "lib/index.js",
  "prettier": {
    "singleQuote": true,
    "bracketSpacing": true,
    "trailingComma": "none"
  },
  "remarkConfig": {
    "plugins": [
      "preset-github"
    ]
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/niftylettuce/preview-email"
  },
  "scripts": {
    "ava": "cross-env NODE_ENV=test DEBUG=preview-email ava",
    "build": "npm run build:clean && npm run build:lib",
    "build:clean": "rimraf lib dist",
    "build:lib": "babel src --out-dir lib",
    "coverage": "nyc report --reporter=text-lcov > coverage.lcov && codecov",
    "lint": "xo && remark . -qfo && eslint lib",
    "nyc": "cross-env NODE_ENV=test nyc ava",
    "test": "npm run build && npm run lint && npm run ava",
    "test-coverage": "npm run build && npm run lint && npm run nyc"
  },
  "xo": {
    "prettier": true,
    "space": true,
    "extends": [
      "xo-lass"
    ]
  }
}
