{
  "name": "jest-image-gaussian-snapshot",
  "version": "2.4.0",
  "description": "Jest matcher for image comparisons. Most commonly used for visual regression testing - with gaussian blur for noise reduction.",
  "main": "src/index.js",
  "engines": {
    "node": ">=6.0.0"
  },
  "scripts": {
    "lint": "eslint ./ --ignore-path .gitignore --ext .js",
    "test": "jest",
    "posttest": "npm run lint"
  },
  "keywords": [
    "test",
    "amex",
    "visual testing",
    "css",
    "jest",
    "browser testing"
  ],
  "jest": {
    "preset": "amex-jest-preset",
    "collectCoverageFrom": [
      "src/*.js",
      "!src/write-result-diff-image.js",
      "!**/node_modules/**",
      "!test-results/**"
    ],
    "testMatch": [
      "<rootDir>/__tests__/**/*.js"
    ],
    "coveragePathIgnorePatterns": [
      "/node_modules/",
      "<rootDir>/examples"
    ]
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/dragonworx/jest-image-gaussian-snapshot.git"
  },
  "author": "Ali Chamas <musicartscience@gmail.com> (https://github.com/dragonworx)",
  "license": "Apache-2.0",
  "devDependencies": {
    "amex-jest-preset": "^4.0.2",
    "eslint": "^4.15.0",
    "eslint-config-amex": "^7.0.0",
    "is-png": "^1.1.0",
    "jest": "^22.0.0",
    "lodash": "^4.17.4",
    "mock-spawn": "^0.2.6",
    "rimraf": "^2.6.2"
  },
  "dependencies": {
    "chalk": "^1.1.3",
    "get-stdin": "^5.0.1",
    "glur": "^1.1.2",
    "lodash": "^4.17.4",
    "mkdirp": "^0.5.1",
    "pixelmatch": "^4.0.2",
    "pngjs": "^3.3.0"
  },
  "peerDependencies": {
    "jest": ">=20 <=22"
  }
}
