{
  "name": "gwt-runner",
  "version": "3.0.0",
  "description": "A small library to help test libraries support given-when-then style testing without a bunch of overhead",
  "keywords": [
    "bdd",
    "given",
    "gwt",
    "testing",
    "then",
    "unit",
    "when"
  ],
  "homepage": "https://github.com/devzeebo/gwt-runner#readme",
  "bugs": {
    "url": "https://github.com/devzeebo/gwt-runner/issues"
  },
  "license": "MIT",
  "author": "Eric Siebeneich <eric.siebeneich@gmail.com> (https://github.com/devzeebo)",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/devzeebo/gwt-runner.git"
  },
  "files": [
    "lib",
    "src",
    "types",
    "!**/*.spec.ts"
  ],
  "type": "module",
  "main": "./lib/index.cjs",
  "module": "./lib/index.mjs",
  "types": "./lib/index.d.cts",
  "exports": {
    ".": {
      "import": {
        "types": "./lib/index.d.mts",
        "default": "./lib/index.mjs"
      },
      "require": {
        "types": "./lib/index.d.cts",
        "default": "./lib/index.cjs"
      }
    },
    "./package.json": "./package.json"
  },
  "scripts": {
    "build": "wireit",
    "test": "wireit",
    "lint": "wireit",
    "coverage": "wireit",
    "prepublishOnly": "wireit"
  },
  "devDependencies": {
    "@types/node": "^25.9.3",
    "@vitest/coverage-v8": "^4.1.9",
    "axios": "^1.18.1",
    "typescript": "^6.0.3",
    "vite-plus": "^0.2.1",
    "vitest": "^4.1.9",
    "wireit": "^0.14.12"
  },
  "packageManager": "npm@11.12.1",
  "wireit": {
    "build": {
      "command": "vp pack",
      "files": [
        "src/**/*.ts",
        "types/**/*.d.ts",
        "tsconfig.json",
        "vite.config.ts",
        "!src/**/*.spec.ts"
      ],
      "output": [
        "lib/**"
      ]
    },
    "lint": {
      "command": "vp lint src",
      "files": [
        "src/**/*.ts",
        "tsconfig.json",
        "vite.config.ts"
      ]
    },
    "test": {
      "command": "vp test run",
      "files": [
        "src/**/*.ts",
        "examples/**/*.ts",
        "vite.config.ts"
      ]
    },
    "coverage": {
      "command": "vp exec vitest run --coverage",
      "files": [
        "src/**/*.ts",
        "examples/**/*.ts",
        "vite.config.ts"
      ],
      "output": [
        "coverage/**"
      ]
    },
    "prepublishOnly": {
      "dependencies": [
        "lint",
        "test",
        "build"
      ]
    }
  }
}
