{
  "name": "playwright-test",
  "type": "module",
  "version": "14.1.9",
  "description": "Run mocha, zora, uvu, tape and benchmark.js scripts inside real browsers with playwright.",
  "author": "Hugo Dias <hugomrdias@gmail.com> (hugodias.me)",
  "license": "MIT",
  "repository": "hugomrdias/playwright-test",
  "keywords": [
    "playwright",
    "test",
    "tests",
    "test-runner",
    "mocha",
    "tape",
    "benchmark",
    "benchmark.js",
    "zora",
    "coverage",
    "istanbul",
    "nyc",
    "code coverage",
    "uvu"
  ],
  "exports": {
    ".": {
      "types": "./dist/src/runner.d.ts",
      "default": "./src/runner.js"
    },
    "./package.json": "./package.json",
    "./taps": {
      "types": "./dist/src/taps/index.d.ts",
      "default": "./src/taps/index.js"
    },
    "./client": {
      "types": "./dist/src/client/index.d.ts",
      "default": "./src/client/index.js"
    }
  },
  "main": "src/runner.js",
  "types": "dist/src/runner.d.ts",
  "typesVersions": {
    "*": {
      "taps": [
        "dist/src/taps/index.d.ts"
      ],
      "client": [
        "dist/src/client/index.d.ts"
      ]
    }
  },
  "bin": {
    "playwright-test": "cli.js",
    "pw-test": "cli.js"
  },
  "files": [
    "dist/src/runner.d.ts",
    "dist/src/runner.d.ts.map",
    "dist/src/types.d.ts",
    "dist/src/taps",
    "dist/src/client",
    "static",
    "src",
    "cli.js"
  ],
  "engines": {
    "node": ">=16.0.0"
  },
  "dependencies": {
    "acorn-loose": "^8.3.0",
    "assert": "^2.1.0",
    "buffer": "^6.0.3",
    "c8": "^10.1.3",
    "camelcase": "^8.0.0",
    "chokidar": "^3.6.0",
    "cpy": "^11.0.0",
    "esbuild": "0.23.0",
    "esbuild-plugin-wasm": "^1.1.0",
    "events": "^3.3.0",
    "execa": "^9.3.0",
    "exit-hook": "^4.0.0",
    "globby": "^14.0.2",
    "kleur": "^4.1.5",
    "lilconfig": "^3.1.3",
    "lodash": "^4.17.21",
    "merge-options": "^3.0.4",
    "nanoid": "^5.0.9",
    "ora": "^8.0.1",
    "p-timeout": "^6.1.4",
    "path-browserify": "^1.0.1",
    "playwright-core": "1.50.1",
    "polka": "^0.5.2",
    "premove": "^4.0.0",
    "process": "^0.11.10",
    "sade": "^1.8.1",
    "sirv": "^3.0.0",
    "source-map": "0.6.1",
    "source-map-support": "^0.5.21",
    "stream-browserify": "^3.0.0",
    "tempy": "^3.1.0",
    "test-exclude": "^7.0.1",
    "util": "^0.12.5",
    "v8-to-istanbul": "^9.3.0"
  },
  "devDependencies": {
    "@types/mocha": "^10.0.10",
    "@types/polka": "^0.5.4",
    "benchmark": "^2.1.4",
    "copyfiles": "^2.4.1",
    "debug": "^4.4.0",
    "delay": "^6.0.0",
    "eslint": "^8.57.1",
    "hd-scripts": "^9.1.0",
    "lint-staged": "^15.4.3",
    "mocha": "^11.1.0",
    "p-defer": "^4.0.1",
    "prettier": "^3.5.0",
    "simple-git-hooks": "^2.11.1",
    "tape": "^5.8.1",
    "tinybench": "^2.8.0",
    "typescript": "^5.5.4",
    "uvu": "^0.5.6",
    "zora": "^5.2.0"
  },
  "simple-git-hooks": {
    "pre-commit": "npx lint-staged"
  },
  "lint-staged": {
    "*.{js,ts,md,yml,json}": "prettier --write",
    "*": "eslint --fix"
  },
  "eslintConfig": {
    "env": {
      "mocha": true
    },
    "extends": [
      "./node_modules/hd-scripts/eslint/index.js"
    ]
  },
  "eslintIgnore": [
    "node_modules",
    "coverage",
    "dist",
    "src/vendor/benchmark.js",
    "src/utils/proxy-benchmark.js",
    "src/vendor/source-map-support.js",
    "mocks"
  ],
  "prettier": "hd-scripts/prettier.config.js",
  "scripts": {
    "clean": "rm -rf pnpm-lock.yaml .coverage .nyc_output dist node_modules .tmp",
    "test": "mocha test.js --bail --timeout 50000",
    "lint": "eslint . && prettier --check '*.{js,ts,yml,json}' --ignore-path .gitignore && tsc"
  }
}