{
  "name": "@japa/runner",
  "description": "Runner for Japa testing framework",
  "version": "3.1.4",
  "engines": {
    "node": ">=18.16.0"
  },
  "main": "build/index.js",
  "type": "module",
  "files": [
    "build",
    "!build/examples",
    "!build/tests",
    "!build/tests_helpers"
  ],
  "exports": {
    ".": "./build/index.js",
    "./types": "./build/src/types.js",
    "./reporters": "./build/src/reporters/main.js",
    "./factories": "./build/factories/main.js",
    "./core": "./build/modules/core/main.js"
  },
  "scripts": {
    "pretest": "npm run lint",
    "test": "cross-env NODE_DEBUG=japa:runner c8 npm run quick:test",
    "quick:test": "glob -c \"node --enable-source-maps --loader=ts-node/esm --test-reporter=spec --test\" \"tests/*.spec.ts\"",
    "clean": "del-cli build",
    "typecheck": "tsc --noEmit",
    "precompile": "npm run lint && npm run clean",
    "compile": "tsup-node && tsc --emitDeclarationOnly --declaration",
    "build": "npm run compile",
    "release": "np",
    "prepublishOnly": "npm run build",
    "lint": "eslint . --ext=.ts",
    "format": "prettier --write .",
    "version": "npm run build",
    "sync-labels": "github-label-sync --labels .github/labels.json japa/runner"
  },
  "devDependencies": {
    "@adonisjs/eslint-config": "^1.3.0",
    "@adonisjs/prettier-config": "^1.3.0",
    "@adonisjs/tsconfig": "^1.3.0",
    "@commitlint/cli": "^19.2.1",
    "@commitlint/config-conventional": "^19.1.0",
    "@swc/core": "^1.4.11",
    "@types/chai": "^4.3.14",
    "@types/chai-subset": "^1.3.5",
    "@types/find-cache-dir": "^5.0.0",
    "@types/ms": "^0.7.34",
    "@types/node": "^20.11.30",
    "c8": "^9.1.0",
    "chai": "^5.1.0",
    "chai-subset": "^1.6.0",
    "cross-env": "^7.0.3",
    "del-cli": "^5.1.0",
    "eslint": "^8.57.0",
    "github-label-sync": "^2.3.1",
    "glob": "^10.3.12",
    "husky": "^9.0.11",
    "np": "^10.0.2",
    "prettier": "^3.2.5",
    "ts-node": "^10.9.2",
    "tsup": "^8.0.2",
    "typescript": "^5.4.3"
  },
  "dependencies": {
    "@japa/core": "^9.0.1",
    "@japa/errors-printer": "^3.0.4",
    "@poppinss/colors": "^4.1.3",
    "@poppinss/hooks": "^7.2.3",
    "fast-glob": "^3.3.2",
    "find-cache-dir": "^5.0.0",
    "getopts": "^2.3.0",
    "ms": "^2.1.3",
    "serialize-error": "^11.0.3",
    "slash": "^5.1.0",
    "supports-color": "^9.4.0"
  },
  "author": "virk,japa",
  "license": "MIT",
  "homepage": "https://github.com/japa/runner#readme",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/japa/runner.git"
  },
  "bugs": {
    "url": "https://github.com/japa/runner/issues"
  },
  "keywords": [
    "japa",
    "tests",
    "test-runner"
  ],
  "directories": {
    "test": "test"
  },
  "eslintConfig": {
    "extends": "@adonisjs/eslint-config/package"
  },
  "prettier": "@adonisjs/prettier-config",
  "commitlint": {
    "extends": [
      "@commitlint/config-conventional"
    ]
  },
  "publishConfig": {
    "access": "public",
    "tag": "latest"
  },
  "np": {
    "message": "chore(release): %s",
    "tag": "latest",
    "branch": "main",
    "anyBranch": false
  },
  "c8": {
    "reporter": [
      "text",
      "html"
    ],
    "exclude": [
      "tests/**",
      "tests_helpers/**",
      "factories/**",
      "modules/core/**",
      "src/reporters/**"
    ]
  },
  "tsup": {
    "entry": [
      "./index.ts",
      "./src/types.ts",
      "./src/reporters/main.ts",
      "./factories/main.ts",
      "./modules/core/main.ts"
    ],
    "outDir": "./build",
    "clean": true,
    "format": "esm",
    "dts": false,
    "sourcemap": true,
    "target": "esnext"
  }
}
