{
  "name": "@twada/benchmark-commits",
  "version": "0.5.0",
  "description": "Run benchmark on specified git commits",
  "keywords": [
    "benchmark",
    "git"
  ],
  "homepage": "http://github.com/twada/benchmark-commits",
  "bugs": "https://github.com/twada/benchmark-commits/issues",
  "repository": {
    "type": "git",
    "url": "git+ssh://git@github.com/twada/benchmark-commits.git"
  },
  "license": "MIT",
  "author": {
    "name": "Takuto Wada",
    "email": "takuto.wada@gmail.com",
    "url": "https://github.com/twada"
  },
  "type": "module",
  "exports": {
    ".": {
      "module-sync": {
        "types": "./dist/index.d.mts",
        "default": "./dist/index.mjs"
      },
      "import": {
        "types": "./dist/index.d.mts",
        "default": "./dist/index.mjs"
      }
    },
    "./package.json": "./package.json"
  },
  "main": "./dist/index.mjs",
  "types": "./dist/index.d.mts",
  "files": [
    "src",
    "dist",
    "!**/__tests__",
    "CHANGELOG.md",
    "README.md",
    "package.json"
  ],
  "scripts": {
    "example": "node --experimental-strip-types examples/run-async.mts",
    "typecheck": "tsc --noEmit",
    "build": "rimraf dist && tsc",
    "lint": "eslint src",
    "lint:fix": "eslint src --fix",
    "test:unit": "node --enable-source-maps --test \"./dist/__tests__/*test.mjs\"",
    "test:doc": "node --enable-source-maps --test-reporter node-descmd-reporter --test \"./dist/__tests__/*test.mjs\"",
    "test": "npm run lint && npm run build && npm run test:unit"
  },
  "dependencies": {
    "benchmark": "^2.1.4",
    "extract-git-treeish": "^4.0.2"
  },
  "devDependencies": {
    "@types/benchmark": "^2.1.2",
    "@types/node": "^22.0.0",
    "neostandard": "^0.12.0",
    "node-descmd-reporter": "^1.0.0",
    "rimraf": "^6.0.0",
    "typescript": "^5.7.0"
  },
  "engines": {
    "node": ">=22.12.0"
  },
  "publishConfig": {
    "access": "public"
  }
}
