{
  "name": "@bernierllc/validators-runner",
  "version": "0.5.0",
  "description": "Execution engine for the BernierLLC validators ecosystem - coordinates validation workflows, manages rules, and orchestrates reporting",
  "main": "dist/index.js",
  "types": "dist/index.d.ts",
  "keywords": [
    "validation",
    "validators",
    "runner",
    "orchestration",
    "workflow",
    "execution",
    "engine"
  ],
  "author": "Bernier LLC",
  "license": "UNLICENSED",
  "private": false,
  "dependencies": {
    "@bernierllc/validators-core": "0.4.0",
    "@bernierllc/validators-reporters": "0.5.0",
    "@bernierllc/validators-utils": "0.5.0"
  },
  "devDependencies": {
    "@types/jest": "^29.5.0",
    "@types/node": "^18.15.0",
    "@typescript-eslint/eslint-plugin": "^5.57.0",
    "@typescript-eslint/parser": "^5.57.0",
    "eslint": "^8.37.0",
    "jest": "^29.5.0",
    "ts-jest": "^29.0.5",
    "typescript": "^5.0.0"
  },
  "files": [
    "dist/**/*",
    "README.md"
  ],
  "repository": {
    "type": "git",
    "url": "https://github.com/bernierllc/tools",
    "directory": "packages/validators/validators-runner"
  },
  "publishConfig": {
    "access": "public"
  },
  "scripts": {
    "build": "tsc",
    "dev": "tsc --watch",
    "test": "jest",
    "test:run": "jest",
    "test:coverage": "jest --coverage",
    "lint": "eslint src --ext .ts",
    "lint:fix": "eslint src --ext .ts --fix",
    "clean": "rm -rf dist"
  }
}