{
  "name": "@liemle3893/e2e-runner",
  "version": "1.3.0",
  "description": "E2E Test Runner - End-to-End Testing Framework for API and Database Testing",
  "author": "liemle3893",
  "license": "MIT",
  "main": "dist/index.js",
  "types": "dist/index.d.ts",
  "bin": {
    "e2e-runner": "./bin/e2e.js",
    "e2e": "./bin/e2e.js"
  },
  "files": [
    "dist",
    "bin",
    "docs/sections",
    "skills",
    "README.md"
  ],
  "scripts": {
    "build": "tsc",
    "clean": "rm -rf dist",
    "prepublishOnly": "npm run clean && npm run build",
    "local:install": "npm run build && npm install --global --prefix ~/.local .",
    "test": "vitest run",
    "test:watch": "vitest"
  },
  "keywords": [
    "e2e",
    "testing",
    "end-to-end",
    "api-testing",
    "database-testing",
    "yaml",
    "typescript"
  ],
  "engines": {
    "node": ">=18.0.0"
  },
  "dependencies": {
    "chokidar": "^5.0.0",
    "p-limit": "^3.1.0",
    "yaml": "^2.7.0"
  },
  "optionalDependencies": {
    "ajv": "^8.17.1",
    "minimatch": "^10.0.1"
  },
  "peerDependencies": {
    "@azure/event-hubs": "^6.0.0",
    "ioredis": "^5.0.0",
    "kafkajs": "^2.0.0",
    "mongodb": "^7.0.0",
    "pg": "^8.16.3",
    "typescript": "^5.0.0"
  },
  "peerDependenciesMeta": {
    "ioredis": {
      "optional": true
    },
    "kafkajs": {
      "optional": true
    },
    "mongodb": {
      "optional": true
    },
    "pg": {
      "optional": true
    },
    "typescript": {
      "optional": true
    },
    "@azure/event-hubs": {
      "optional": true
    }
  },
  "devDependencies": {
    "@azure/event-hubs": "^6.0.0",
    "@types/chokidar": "^1.7.5",
    "@types/node": "^20.0.0",
    "@types/pg": "^8.16.0",
    "ioredis": "^5.8.2",
    "kafkajs": "^2.2.4",
    "mongodb": "^7.0.0",
    "ts-node": "^10.9.2",
    "typescript": "^5.7.0",
    "vitest": "^3.2.4"
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/liemle3893/e2e-runner.git"
  },
  "homepage": "https://github.com/liemle3893/e2e-runner#readme",
  "bugs": {
    "url": "https://github.com/liemle3893/e2e-runner/issues"
  },
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "require": "./dist/index.js",
      "import": "./dist/index.js"
    },
    "./dsl": {
      "types": "./dist/dsl/index.d.ts",
      "require": "./dist/dsl/index.js",
      "import": "./dist/dsl/index.js"
    }
  }
}
