{
  "name": "cypress-plugin-snapshots",
  "version": "1.4.4",
  "description": "Cypress snapshot functionality for data",
  "homepage": "https://github.com/meinaart/cypress-plugin-snapshots",
  "repository": {
    "type": "git",
    "url": "https://github.com/meinaart/cypress-plugin-snapshots.git"
  },
  "types": "types/index.d.ts",
  "files": [
    "*.js",
    "*.md",
    "assets",
    "docs",
    "LICENSE",
    "src",
    "types"
  ],
  "engines": {
    "node": ">=8.2.1"
  },
  "bugs": {
    "url": "https://github.com/meinaart/cypress-plugin-snapshots/issues"
  },
  "keywords": [
    "cypress",
    "cypress-io",
    "cypress-plugin"
  ],
  "author": "Meinaart van Straalen",
  "license": "MIT",
  "scripts": {
    "ci:test": "jest & npm --prefix cypress run ci:test",
    "cy:open": "npm --prefix cypress run cy:open",
    "cy:run": "npm --prefix cypress run cy:run",
    "cy:verify": "npm --prefix cypress run cy:verify",
    "jest": "jest",
    "lint": "eslint *.js",
    "start": "node cypress/test-server/index.js",
    "test": "jest & npm --prefix cypress run cy:run"
  },
  "dependencies": {
    "diff2html": "^2.7.0",
    "fs-extra": "^7.0.1",
    "image-size": "^0.7.2",
    "jimp": "^0.10.3",
    "js-base64": "^2.5.1",
    "lodash": "^4.17.13",
    "pixelmatch": "^4.0.2",
    "pngjs": "^3.3.3",
    "prettier": "^1.16.4",
    "rimraf": "^2.6.3",
    "sanitize-filename": "^1.6.1",
    "socket.io": "^2.2.0",
    "socket.io-client": "^2.2.0",
    "source-map-support": "^0.5.10",
    "unidiff": "1.0.2"
  },
  "peerDependencies": {
    "cypress": "^4.5.0"
  },
  "devDependencies": {
    "eslint": "^5.14.1",
    "eslint-config-airbnb-base": "^13.1.0",
    "eslint-config-prettier": "^4.0.0",
    "eslint-plugin-cypress": "^2.2.1",
    "eslint-plugin-import": "^2.16.0",
    "eslint-plugin-jest": "^22.3.0",
    "jest": "^24.1.0",
    "rewire": "^4.0.1"
  },
  "prettier": {
    "printWidth": 100,
    "semi": true,
    "singleQuote": true,
    "trailingComma": "es5"
  },
  "eslintConfig": {
    "extends": [
      "airbnb-base",
      "prettier"
    ],
    "plugins": [
      "cypress",
      "jest"
    ],
    "env": {
      "cypress/globals": true,
      "jest/globals": true
    },
    "rules": {
      "no-param-reassign": 0,
      "no-use-before-define": 0,
      "global-require": 0,
      "no-underscore-dangle": 0,
      "object-curly-newline": [
        "error",
        {
          "ObjectExpression": {
            "consistent": true
          },
          "ObjectPattern": {
            "consistent": true
          },
          "ImportDeclaration": {
            "multiline": true,
            "minProperties": 3
          },
          "ExportDeclaration": {
            "multiline": true,
            "minProperties": 3
          }
        }
      ]
    }
  },
  "eslintIgnore": [
    "cypress/**/*"
  ],
  "jest": {
    "testPathIgnorePatterns": [
      "<rootDir>/examples/",
      "<rootDir>/node_modules/",
      "<rootDir>/cypress/"
    ],
    "clearMocks": true,
    "testEnvironment": "node"
  }
}
