{
  "name": "@pawel-up/benchmark",
  "version": "1.1.1",
  "description": "TypeScript benchmarking library",
  "license": "MIT",
  "main": "./build/src/index.js",
  "module": "./build/src/index.js",
  "types": "./build/src/index.d.ts",
  "type": "module",
  "exports": {
    ".": {
      "browser": {
        "types": "./build/src/browser.d.ts",
        "default": "./build/src/browser.js"
      },
      "default": {
        "types": "./build/src/index.d.ts",
        "default": "./build/src/index.js"
      }
    },
    "./browser": {
      "types": "./build/src/browser.d.ts",
      "default": "./build/src/browser.js"
    },
    "./node": {
      "types": "./build/src/index.d.ts",
      "default": "./build/src/index.js"
    },
    "./lupa": {
      "types": "./build/src/lupa/index.d.ts",
      "default": "./build/src/lupa/index.js"
    },
    "./lupa/browser": {
      "types": "./build/src/lupa/browser_plugin.d.ts",
      "default": "./build/src/lupa/browser_plugin.js"
    },
    "./lupa/node": {
      "types": "./build/src/lupa/node_plugin.d.ts",
      "default": "./build/src/lupa/node_plugin.js"
    }
  },
  "keywords": [
    "benchmark",
    "testing"
  ],
  "author": {
    "name": "Pawel Uchida-Psztyc"
  },
  "contributors": [
    "Your name can be here!"
  ],
  "repository": {
    "type": "git",
    "url": "https://github.com/pawel-up/benchmark.git"
  },
  "bugs": {
    "url": "https://github.com/pawel-up/benchmark/issues"
  },
  "scripts": {
    "build": "tsc -p tsconfig.build.json",
    "prepublish": "tsc",
    "test": "tsx bin/test.ts",
    "test-old": "node --import ts-node-maintained/register/esm --enable-source-maps bin/test.ts",
    "test:coverage": "c8 --reporter lcov --reporter text node --import ts-node-maintained/register/esm --enable-source-maps bin/test.ts",
    "prepare": "husky",
    "lint": "npm run lint:eslint && npm run lint:prettier",
    "lint:eslint": "eslint --color --cache --cache-location .eslintcache .",
    "lint:prettier": "prettier \"**/*.ts\" --check",
    "format:eslint": "eslint --color --cache --fix --cache-location .eslintcache .",
    "format:prettier": "prettier \"**/*.ts\" --write",
    "format": "npm run format:eslint && npm run format:prettier",
    "knip": "knip",
    "clean": "rm -rf build",
    "prepublishOnly": "npm run clean && npm run build",
    "typecheck": "tsc -p tsconfig.build.json --noEmit"
  },
  "dependencies": {
    "chalk": "^5.4.1",
    "console-table-printer": "^2.12.1",
    "tslog": "^4.9.3"
  },
  "peerDependencies": {
    "@pawel-up/lupa": ">=0.3.8"
  },
  "peerDependenciesMeta": {
    "@pawel-up/lupa": {
      "optional": true
    }
  },
  "devDependencies": {
    "@commitlint/cli": "^21.0.1",
    "@commitlint/config-conventional": "^21.0.1",
    "@commitlint/types": "^21.0.1",
    "@eslint/js": "^10.0.1",
    "@japa/assert": "^4.0.1",
    "@japa/runner": "^5.3.0",
    "@pawel-up/lupa": "^0.3.8",
    "@semantic-release/changelog": "^6.0.3",
    "@semantic-release/git": "^10.0.1",
    "@types/node": "^25.7.0",
    "@types/sinon": "^21.0.1",
    "c8": "^11.0.0",
    "eslint": "^10.1.3",
    "eslint-config-prettier": "^10.1.8",
    "eslint-plugin-no-only-tests": "^3.3.0",
    "eslint-plugin-prettier": "^5.5.4",
    "globals": "^17.3.0",
    "husky": "^9.1.7",
    "knip": "^6.14.1",
    "lint-staged": "^17.0.5",
    "prettier": "^3.7.3",
    "semantic-release": "^25.0.3",
    "sinon": "^22.0.0",
    "ts-node-maintained": "^10.9.5",
    "tsx": "^4.21.0",
    "typescript": "^6.0.3",
    "typescript-eslint": "^8.48.0"
  },
  "lint-staged": {
    "*.js": [
      "eslint --fix"
    ],
    "*.ts": [
      "eslint --fix"
    ]
  }
}
