{
  "name": "mocha-snap",
  "description": "File based snapshotting for Mocha tests.",
  "version": "5.0.1",
  "author": "Dylan Piercey <pierceydylan@gmail.com>",
  "bugs": "https://github.com/dylanpiercey/mocha-snap/issues",
  "dependencies": {
    "fast-glob": "^3.2.7"
  },
  "devDependencies": {
    "@commitlint/cli": "^14.1.0",
    "@commitlint/config-conventional": "^14.1.0",
    "@istanbuljs/nyc-config-typescript": "^1.0.1",
    "@types/mocha": "^9.0.0",
    "@types/node": "^16.11.7",
    "@typescript-eslint/eslint-plugin": "^5.4.0",
    "@typescript-eslint/parser": "^5.4.0",
    "esbuild": "^0.13.14",
    "esbuild-register": "^3.1.2",
    "eslint": "^8.2.0",
    "eslint-config-prettier": "^8.3.0",
    "fixpack": "^4.0.0",
    "husky": "^7.0.4",
    "lint-staged": "^12.0.2",
    "mocha": "^9.1.3",
    "nyc": "^15.1.0",
    "prettier": "^2.4.1",
    "semantic-release": "^18.0.0",
    "typescript": "^4.4.4"
  },
  "files": [
    "dist",
    "!**/__tests__",
    "!**/*.tsbuildinfo"
  ],
  "homepage": "https://github.com/dylanpiercey/mocha-snap",
  "keywords": [
    "file",
    "mocha",
    "snapshot",
    "test"
  ],
  "license": "MIT",
  "main": "dist/index.js",
  "module": "dist/index.mjs",
  "repository": {
    "type": "git",
    "url": "https://github.com/dylanpiercey/mocha-snap"
  },
  "scripts": {
    "build": "tsc -b && node -r esbuild-register build",
    "ci:test": "NODE_ENV=test nyc npm run mocha -- --forbid-pending --forbid-only",
    "format": "npm run lint:eslint -- --fix && npm run lint:prettier -- --write && (fixpack || true)",
    "lint": "tsc && npm run lint:eslint && npm run lint:prettier -- -l && fixpack",
    "lint:eslint": "eslint -f visualstudio .",
    "lint:prettier": "prettier '**/*{.ts,.js,.json,.md,.yml,rc}'",
    "mocha": "mocha 'src/**/__tests__/*.test.ts'",
    "prepare": "husky install",
    "prepublishOnly": "npm run build",
    "release": "semantic-release",
    "report": "open ./coverage/lcov-report/index.html",
    "test": "NODE_ENV=test npm run mocha -- --watch",
    "test:inspect": "npm test -- --inspect",
    "test:update": "npm run mocha --update"
  },
  "types": "dist/index.d.ts"
}
