{
  "name": "@japa/core",
  "version": "9.0.1",
  "description": "Implementation of core APIs for the Japa tests runner",
  "main": "build/index.js",
  "type": "module",
  "files": [
    "build",
    "!build/tests",
    "!build/tests_helpers"
  ],
  "engines": {
    "node": ">=18.16.0"
  },
  "exports": {
    ".": "./build/index.js",
    "./types": "./build/src/types.js"
  },
  "scripts": {
    "pretest": "npm run lint",
    "test": "c8 glob -c \"node --loader=ts-node/esm --test\" \"tests/**/*.spec.ts\"",
    "clean": "del build",
    "typecheck": "tsc --noEmit",
    "precompile": "npm run lint && npm run clean",
    "compile": "tsup-node && tsc --emitDeclarationOnly --declaration",
    "build": "npm run compile",
    "release": "np",
    "version": "npm run build",
    "prepublishOnly": "npm run build",
    "lint": "eslint . --ext=.ts",
    "format": "prettier --write .",
    "sync-labels": "github-label-sync --labels .github/labels.json japa/core"
  },
  "keywords": [
    "japa",
    "testing",
    "tests"
  ],
  "author": "virk,japa",
  "license": "MIT",
  "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/async-retry": "^1.4.8",
    "@types/chai": "^4.3.14",
    "@types/node": "^20.11.30",
    "c8": "^9.1.0",
    "chai": "^5.1.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": {
    "@poppinss/cliui": "^6.4.1",
    "@poppinss/hooks": "^7.2.3",
    "@poppinss/macroable": "^1.0.2",
    "async-retry": "^1.3.3",
    "emittery": "^1.0.3",
    "string-width": "^7.1.0",
    "time-span": "^5.1.0"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/japa/core.git"
  },
  "bugs": {
    "url": "https://github.com/japa/core/issues"
  },
  "homepage": "https://github.com/japa/core#readme",
  "c8": {
    "reporter": [
      "text",
      "html"
    ],
    "exclude": [
      "tests/**"
    ]
  },
  "commitlint": {
    "extends": [
      "@commitlint/config-conventional"
    ]
  },
  "publishConfig": {
    "access": "public",
    "tag": "latest"
  },
  "np": {
    "message": "chore(release): %s",
    "tag": "latest",
    "branch": "main",
    "anyBranch": false
  },
  "prettier": "@adonisjs/prettier-config",
  "eslintConfig": {
    "extends": "@adonisjs/eslint-config/package"
  },
  "tsup": {
    "entry": [
      "./index.ts",
      "./src/types.ts"
    ],
    "outDir": "./build",
    "clean": true,
    "format": "esm",
    "dts": false,
    "sourcemap": true,
    "target": "esnext"
  }
}
