{
  "name": "strong-mock",
  "version": "9.0.1",
  "description": "Type safe mocking library for TypeScript",
  "keywords": [
    "tdd",
    "test",
    "mock",
    "stub",
    "fake",
    "test double",
    "expectation",
    "interface",
    "type",
    "typescript",
    "ts",
    "diff",
    "matcher"
  ],
  "repository": {
    "type": "git",
    "url": "git+https://github.com/NiGhTTraX/strong-mock.git"
  },
  "author": "Andrei Picus",
  "license": "MIT",
  "main": "dist/index.js",
  "types": "dist/index.d.ts",
  "files": [
    "dist"
  ],
  "dependencies": {
    "jest-diff": "~29.7.0",
    "jest-matcher-utils": "~29.7.0",
    "lodash": "~4.17.0"
  },
  "devDependencies": {
    "@nighttrax/eslint-config-ts": "~12.0.0-alpha.0",
    "@tdd-buffet/jest-config": "~6.0.0",
    "@tdd-buffet/tsconfig": "~1.0.5",
    "@types/jest": "~29.5.0",
    "@types/node": "~22.9.0",
    "@types/lodash": "~4.17.0",
    "doctoc": "~2.2.0",
    "eslint": "~8.57.0",
    "jest": "~29.7.0",
    "microbundle": "~0.15.0",
    "standard-version": "~9.5.0",
    "strip-ansi": "~6.0.0",
    "strong-mock": "~6.0.0",
    "tslib": "~2.8.0",
    "typescript": "~5.6.0"
  },
  "scripts": {
    "docs": "doctoc --title '**Table of Contents**' README.md",
    "build": "pnpm run clean && pnpm run compile",
    "clean": "rm -rf ./dist",
    "compile": "microbundle --no-compress --target node -f cjs --tsconfig tsconfig.build.json src/index.ts",
    "release": "standard-version",
    "lint": "eslint --ext ts,tsx,js .",
    "test": "jest --coverage --config tests/jest.config.js"
  }
}