{
  "name": "snap-shot",
  "description": "Jest-like snapshot feature for the rest of us + data-driven testing",
  "version": "2.17.0",
  "author": "Gleb Bahmutov <gleb.bahmutov@gmail.com>",
  "bugs": "https://github.com/bahmutov/snap-shot/issues",
  "config": {
    "pre-git": {
      "commit-msg": "simple",
      "pre-commit": [
        "npm prune",
        "npm run deps",
        "npm test",
        "npm run ban"
      ],
      "pre-push": [
        "echo 'skipping npm run secure'",
        "npm run license",
        "npm run ban -- --all",
        "npm run size"
      ],
      "post-commit": [],
      "post-merge": []
    }
  },
  "engines": {
    "node": ">=6"
  },
  "files": [
    "images",
    "src/*.js",
    "!src/*spec.js"
  ],
  "homepage": "https://github.com/bahmutov/snap-shot#readme",
  "keywords": [
    "assert",
    "assertion",
    "jest",
    "matcher",
    "snapshot",
    "snapshots",
    "test",
    "utility",
    "data-driven",
    "behavior"
  ],
  "license": "MIT",
  "main": "src/",
  "publishConfig": {
    "registry": "http://registry.npmjs.org/"
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/bahmutov/snap-shot.git"
  },
  "scripts": {
    "ban": "ban",
    "deps": "deps-ok && dependency-check .",
    "issues": "git-issues",
    "license": "license-checker --production --onlyunknown --csv",
    "lint": "standard --verbose --fix src/*.js",
    "pretest": "npm run lint",
    "secure": "nsp check",
    "size": "t=\"$(npm pack .)\"; wc -c \"${t}\"; tar tvf \"${t}\"; rm \"${t}\";",
    "test": "npm run unit",
    "unit": "mocha src/*spec.js",
    "semantic-release": "semantic-release pre && npm publish && semantic-release post"
  },
  "devDependencies": {
    "ban-sensitive-files": "1.9.0",
    "common-tags": "1.4.0",
    "dependency-check": "2.8.0",
    "deps-ok": "1.2.0",
    "dont-crack": "1.1.1",
    "git-issues": "1.3.1",
    "license-checker": "9.0.3",
    "mocha": "3.2.0",
    "nsp": "2.6.3",
    "pre-git": "3.14.0",
    "semantic-release": "6.3.6",
    "standard": "10.0.1"
  },
  "dependencies": {
    "callsites": "2.0.0",
    "check-more-types": "2.24.0",
    "debug": "2.6.3",
    "disparity": "2.0.0",
    "falafel": "2.1.0",
    "find-test-caller": "1.0.2",
    "lazy-ass": "1.6.0",
    "mkdirp": "0.5.1",
    "snap-shot-core": "1.3.0",
    "stack-sites": "1.4.1",
    "variable-diff": "1.1.0"
  },
  "peerDependencies": {
    "babel-core": "^6.0.0"
  },
  "release": {
    "verifyRelease": {
      "path": "dont-crack",
      "test-against": [
        "https://github.com/bahmutov/snap-shot-jest-test",
        "https://github.com/bahmutov/snap-shot-modules-test",
        "https://github.com/bahmutov/snap-shot-vue-test",
        "https://github.com/bahmutov/snap-shot-jsdom-test",
        "https://github.com/bahmutov/snap-shot-ava-test"
      ]
    }
  }
}