{
  "name": "@japa/assert",
  "description": "Assertion module for Japa",
  "version": "3.0.0",
  "engines": {
    "node": ">=18.16.0"
  },
  "main": "./build/index.js",
  "type": "module",
  "files": [
    "build",
    "!build/tests",
    "!build/tests_helpers"
  ],
  "exports": {
    ".": "./build/index.js",
    "./types": "./build/src/types.js"
  },
  "scripts": {
    "pretest": "npm run lint && npm run typecheck",
    "test": "c8 npm run quick:test",
    "quick:test": "cross-env NODE_NO_WARNINGS=1 glob -c \"node --enable-source-maps --loader=ts-node/esm --test\" \"tests/**/*.spec.ts\"",
    "clean": "del-cli build",
    "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",
    "typecheck": "tsc --noEmit",
    "format": "prettier --write .",
    "sync-labels": "github-label-sync --labels .github/labels.json japa/assert"
  },
  "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",
    "@japa/errors-printer": "^3.0.3",
    "@japa/runner": "^3.1.2",
    "@swc/core": "^1.4.11",
    "@types/luxon": "^3.4.2",
    "@types/node": "^20.11.30",
    "c8": "^9.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",
    "luxon": "^3.4.4",
    "np": "^10.0.2",
    "prettier": "^3.2.5",
    "ts-node": "^10.9.2",
    "tsup": "^8.0.2",
    "typescript": "^5.4.3"
  },
  "dependencies": {
    "@poppinss/macroable": "^1.0.2",
    "@types/chai": "^4.3.14",
    "api-contract-validator": "^2.2.8",
    "chai": "^5.1.0"
  },
  "peerDependencies": {
    "@japa/runner": "^3.1.2"
  },
  "author": "virk,japa",
  "license": "MIT",
  "homepage": "https://github.com/japa/assert#readme",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/japa/assert.git"
  },
  "bugs": {
    "url": "https://github.com/japa/assert/issues"
  },
  "keywords": [
    "assert",
    "chai",
    "japa"
  ],
  "types": "./build/index.d.ts",
  "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/**"
    ]
  },
  "directories": {
    "test": "tests"
  },
  "tsup": {
    "entry": [
      "./index.ts",
      "./src/types.ts"
    ],
    "outDir": "./build",
    "clean": true,
    "format": "esm",
    "dts": false,
    "sourcemap": true,
    "target": "esnext"
  }
}
