{
  "name": "@edcalderon/versioning",
  "version": "1.5.11",
  "description": "A comprehensive versioning and changelog management tool for monorepos",
  "main": "dist/index.js",
  "bin": {
    "versioning": "dist/cli.js"
  },
  "scripts": {
    "build": "tsc",
    "dev": "tsc --watch",
    "test": "jest",
    "test:watch": "jest --watch",
    "test:coverage": "jest --coverage",
    "lint": "eslint src/**/*.ts",
    "postinstall": "node scripts/post-install.js",
    "prepublishOnly": "npm run build && npm run test",
    "version:patch": "node dist/cli.js patch --no-tag",
    "version:minor": "node dist/cli.js minor --no-tag",
    "version:major": "node dist/cli.js major --no-tag",
    "changelog": "node dist/cli.js changelog",
    "publish:npm": "node dist/cli.js publish-package",
    "publish:local": "node dist/cli.js publish-local",
    "create-tag": "node scripts/create-tag.js",
    "release": "npm run version:patch && npm run create-tag",
    "release:local": "npm run version:patch && npm run publish:local",
    "update-readme": "node dist/cli.js update-readme"
  },
  "keywords": [
    "versioning",
    "changelog",
    "monorepo",
    "npm",
    "conventional-commits"
  ],
  "author": "Edward",
  "license": "MIT",
  "homepage": "https://github.com/edcalderon/my-second-brain/tree/main/packages/versioning",
  "publishConfig": {
    "access": "public"
  },
  "devDependencies": {
    "@types/fs-extra": "^11.0.4",
    "@types/jest": "^29.5.12",
    "@types/node": "^20.11.17",
    "@types/semver": "^7.5.8",
    "fast-check": "^4.5.3",
    "jest": "^29.7.0",
    "ts-jest": "^29.1.2",
    "typescript": "^5.3.3"
  },
  "jest": {
    "testEnvironment": "node",
    "testMatch": [
      "**/__tests__/**/*.test.ts"
    ],
    "collectCoverageFrom": [
      "src/**/*.ts",
      "!src/**/*.d.ts",
      "!src/**/__tests__/**"
    ],
    "setupFilesAfterEnv": [
      "<rootDir>/src/__tests__/setup.ts"
    ],
    "transform": {
      "^.+\\.ts$": "ts-jest"
    }
  },
  "dependencies": {
    "commander": "^12.0.0",
    "conventional-changelog": "^5.1.0",
    "fs-extra": "^11.2.0",
    "semver": "^7.6.0",
    "simple-git": "^3.33.0"
  },
  "engines": {
    "node": ">=18.0.0"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/edcalderon/my-second-brain.git",
    "directory": "packages/versioning"
  }
}
