{
  "name": "cypress-image-snapshot",
  "version": "4.0.1",
  "description": "Cypress bindings for jest-image-snapshot.",
  "repository": "https://github.com/palmerhq/cypress-image-snapshot",
  "author": "Jack Cross <jack@palmer.net>",
  "license": "MIT",
  "files": [
    "*.js"
  ],
  "engines": {
    "node": ">=8"
  },
  "scripts": {
    "prebuild": "rimraf *.js",
    "build": "babel src --out-dir .",
    "test": "jest",
    "lint": "eslint src",
    "prepublish": "npm run build",
    "changeset": "changeset",
    "release": "changeset publish"
  },
  "dependencies": {
    "chalk": "^2.4.1",
    "fs-extra": "^7.0.1",
    "glob": "^7.1.3",
    "jest-image-snapshot": "4.2.0",
    "pkg-dir": "^3.0.0",
    "term-img": "^4.0.0"
  },
  "devDependencies": {
    "@changesets/changelog-github": "^0.2.8",
    "@changesets/cli": "^2.13.1",
    "babel-cli": "^6.26.0",
    "babel-plugin-transform-object-rest-spread": "^6.26.0",
    "babel-preset-env": "^1.7.0",
    "eslint": "^5.10.0",
    "eslint-config-airbnb-base": "^13.1.0",
    "eslint-config-prettier": "^3.3.0",
    "eslint-plugin-cypress": "^2.1.3",
    "eslint-plugin-import": "^2.14.0",
    "husky": "^1.2.1",
    "jest": "^23.6.0",
    "prettier": "1.15.3",
    "pretty-quick": "^1.8.0",
    "rimraf": "^2.6.2"
  },
  "peerDependencies": {
    "cypress": "^4.5.0"
  },
  "husky": {
    "hooks": {
      "pre-commit": "pretty-quick --staged"
    }
  },
  "prettier": {
    "printWidth": 80,
    "semi": true,
    "singleQuote": true,
    "trailingComma": "es5"
  },
  "eslintConfig": {
    "extends": [
      "airbnb-base",
      "prettier"
    ],
    "plugins": [
      "cypress"
    ],
    "env": {
      "cypress/globals": true
    }
  },
  "babel": {
    "presets": [
      [
        "env",
        {
          "targets": {
            "node": "8.0"
          }
        }
      ]
    ],
    "plugins": [
      "transform-object-rest-spread"
    ]
  },
  "jest": {
    "testPathIgnorePatterns": [
      "<rootDir>/examples/",
      "<rootDir>/node_modules/"
    ]
  }
}
