{
  "name": "@shelf/jest-mongodb",
  "version": "1.2.2",
  "private": false,
  "description": "Run your tests using Jest & MongoDB in Memory server",
  "keywords": [
    "jest",
    "jest environment",
    "jest preset",
    "mongodb",
    "mongodb local"
  ],
  "repository": "shelfio/jest-mongodb",
  "license": "MIT",
  "author": {
    "name": "Vlad Holubiev",
    "email": "vlad@shelf.io",
    "url": "shelf.io"
  },
  "scripts": {
    "lint": "eslint . --fix --ext .js,.json,.ts --quiet",
    "test": "jest"
  },
  "husky": {
    "hooks": {
      "pre-commit": "lint-staged",
      "post-commit": "git update-index --again"
    }
  },
  "lint-staged": {
    "*.{html,md,yml}": [
      "prettier --write",
      "git add"
    ],
    "*.{js,json}": [
      "eslint --fix",
      "git add"
    ]
  },
  "prettier": "@shelf/prettier-config",
  "jest": {
    "preset": "./jest-preset.js"
  },
  "dependencies": {
    "debug": "4.1.1",
    "mongodb-memory-server": "6.6.3",
    "uuid": "8.3.0"
  },
  "devDependencies": {
    "@shelf/eslint-config": "0.19.0",
    "@shelf/prettier-config": "0.0.7",
    "eslint": "7.6.0",
    "husky": "4.2.5",
    "jest": "26.2.2",
    "lint-staged": "10.2.11",
    "mongodb": "3.6.0",
    "prettier": "2.0.5"
  },
  "peerDependencies": {
    "mongodb": "3.x.x",
    "mongodb-memory-server": "*"
  },
  "engines": {
    "node": ">=8"
  },
  "publishConfig": {
    "access": "public"
  }
}
