{
  "name": "kizu",
  "version": "5.1.1",
  "description": "An easy-to-use, fast, and defensive Typescript/Javascript test runner designed to help you to write simple, readable, and maintainable tests.",
  "license": "MIT",
  "main": "./dist/index.js",
  "bin": {
    "kizu": "bin/entrypoint.js"
  },
  "types": "dist/index.d.ts",
  "files": [
    "bin",
    "dist",
    "!dist/**/*.map",
    "!dist/**/*.spec.*",
    "package.json",
    "package-lock.json"
  ],
  "repository": {
    "type": "git",
    "url": "git+https://github.com/mhweiner/kizu.git"
  },
  "scripts": {
    "prepare": "npm run build",
    "test": "npm run build && node ./bin/entrypoint.js '{src,examples}/**/*.spec.*'",
    "lint": "eslint . --fix",
    "build": "rm -rf ./dist && tsc",
    "validate": "npm run build && npm run lint && npm test"
  },
  "homepage": "https://github.com/mhweiner/kizu",
  "keywords": [
    "unit test",
    "ts unit test",
    "typescript unit test",
    "unit-test",
    "mocha",
    "jasmine",
    "jest",
    "tape",
    "ava",
    "node-tap"
  ],
  "dependencies": {
    "commander": "14.0.0",
    "deep-object-diff": "^1.1.0",
    "diff": "^5.0.0",
    "kleur": "^4.1.4",
    "ora": "^5.4.1",
    "serialize-error": "^8.1.0",
    "tiny-glob": "^0.2.9"
  },
  "devDependencies": {
    "@testing-library/react": "^14.0.0",
    "@types/diff": "^5.0.1",
    "@types/node": "^22.0.0",
    "@types/react": "^18.2.0",
    "@types/react-dom": "^18.2.0",
    "cjs-mock": "^0.1.0",
    "eslint": "^10.0.0",
    "jsdom": "^23.0.0",
    "react": "^18.2.0",
    "react-dom": "^18.2.0",
    "tsx": "4.20.5",
    "typescript": "^5.6.0",
    "typescript-eslint": "^8.0.0"
  },
  "peerDependencies": {
    "tsx": "^4.20.5"
  }
}