{
  "name": "maddox",
  "version": "6.0.0",
  "description": "Maddox provides a simple way to rapidly unit test complex success and failure scenarios which can be driven by responses of mocked external dependencies.",
  "main": "dist/index.cjs",
  "bin": {
    "maddox": "./bin/maddox.js"
  },
  "engines": {
    "node": ">=20.0.0"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/corybill/maddox.git"
  },
  "keywords": [
    "StriveNine",
    "Strive9",
    "S9",
    "Scenario Testing",
    "BDD",
    "Behavior Driven Development",
    "Business Requirement Driven Development",
    "BRDD",
    "BDD Unit Testing",
    "Mocha"
  ],
  "author": "Cory Parrish",
  "license": "ISC",
  "bugs": {
    "url": "https://github.com/corybill/maddox/issues"
  },
  "homepage": "https://github.com/corybill/maddox#readme",
  "contributors": [
    {
      "name": "Kuntal Roy"
    },
    {
      "name": "Meir Rosner"
    },
    {
      "name": "Daniel Kim"
    }
  ],
  "peerDependencies": {
    "@testing-library/react": ">=14.0.0",
    "@testing-library/user-event": ">=14.0.0",
    "react": ">=18.0.0",
    "react-dom": ">=18.0.0",
    "react-router": ">=7.0.0"
  },
  "dependencies": {
    "chai": "^4.5.0",
    "core-util-is": "1.x",
    "deep-diff": "^1.0.2",
    "deep-object-diff": "^1.1.0",
    "errr": "^5.2.0",
    "fs-extra": "^5.0.0",
    "is-subset": "0.x",
    "lodash": "^4.18.1",
    "mocha": "^11.7.5",
    "preconditions": "^4.0.4",
    "simple-statistics": "5.x",
    "sinon": "^13.0.2",
    "variable-diff": "^2.0.2"
  },
  "devDependencies": {
    "@eslint/js": "^9.39.4",
    "@testing-library/react": "^16.3.2",
    "@testing-library/user-event": "^14.6.1",
    "c8": "^11.0.0",
    "chance": "^1.1.13",
    "eslint": "^9.39.4",
    "eslint-config-prettier": "^10.1.8",
    "globals": "^17.6.0",
    "jest": "^29.7.0",
    "jsdom": "^26.1.0",
    "prettier": "^3.8.3",
    "react": "^19.2.6",
    "react-dom": "^19.2.6",
    "react-router": "^7.15.0",
    "tsup": "^8.5.1",
    "typescript": "^6.0.3",
    "uuid": "^11.1.0",
    "vitest": "^3.1.4"
  },
  "overrides": {
    "diff": "^9.0.0",
    "serialize-javascript": "^7.0.5",
    "errr": "^5.2.0"
  },
  "module": "dist/index.js",
  "exports": {
    ".": {
      "require": "./dist/index.cjs",
      "import": "./dist/index.js"
    }
  },
  "files": [
    "dist",
    "bin",
    "docs",
    "index.d.ts"
  ],
  "type": "module",
  "scripts": {
    "build": "bash scripts/build.sh",
    "test": "pnpm run ut:mocha && pnpm run ut:vitest && pnpm run ut:jest && pnpm run lint",
    "perf": "node ./bin/maddox.js -Pp -d ./spec/unit",
    "ut": "mocha",
    "ut:mocha": "mocha",
    "ut:vitest": "vitest run",
    "ut:jest": "node --experimental-vm-modules node_modules/jest/bin/jest.js",
    "coverage": "c8 --src lib mocha",
    "lint": "eslint ./spec/ ./lib",
    "lint-fix": "eslint ./spec/ ./lib --fix",
    "build-docs": "node ./generate-docs/build-read-io-docs",
    "pre-publish": "bash scripts/pre-publish.sh"
  }
}