{
  "name": "commitizen-cli",
  "version": "3.1.2",
  "description": "Command-line interface tool that helps enforce standardized commit message formats in Git repositories.",
  "type": "module",
  "license": "MIT",
  "bin": {
    "commitizen-cli": "./dist/cli.mjs"
  },
  "author": {
    "name": "Ando",
    "url": "https://github.com/iamando",
    "email": "iamando@tuta.io"
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/iamando/commitizen-cli.git"
  },
  "bugs": {
    "url": "https://github.com/iamando/commitizen-cli/issues"
  },
  "homepage": "https://github.com/iamando/commitizen-cli#readme",
  "keywords": [
    "commitizen-cli",
    "javascript",
    "typescript",
    "git-commit",
    "git",
    "commit",
    "cli",
    "command-line"
  ],
  "files": [
    "dist"
  ],
  "engines": {
    "node": ">=14.14"
  },
  "scripts": {
    "start": "jiti ./src/cli.ts",
    "typecheck": "tsc",
    "lint": "prettier --check . && eslint",
    "lint:fix": "prettier --write . && eslint --fix",
    "clean": "rimraf dist",
    "build": "pkgroll",
    "release": "npm run clean && npm run build && npm publish --follow-tags",
    "release:major": "npm run clean && npm run build && npm version major && npm run build && npm publish && git push --follow-tags",
    "release:minor": "npm run clean && npm run build && npm version minor && npm run build && npm publish && git push --follow-tags",
    "release:patch": "npm run clean && npm run build && npm version patch && npm run build && npm publish && git push --follow-tags"
  },
  "devDependencies": {
    "@types/dedent": "^0.7.0",
    "@types/ini": "^1.3.31",
    "@types/lodash": "^4.14.196",
    "@types/node": "^20.2.5",
    "@typescript-eslint/eslint-plugin": "^5.59.8",
    "@typescript-eslint/parser": "^5.59.8",
    "eslint": "^8.41.0",
    "eslint-plugin-unused-imports": "^2.0.0",
    "jiti": "^1.18.2",
    "pkgroll": "^1.10.0",
    "prettier": "^2.8.8",
    "rimraf": "^5.0.1",
    "typescript": "^5.1.3"
  },
  "dependencies": {
    "@clack/core": "^0.3.2",
    "@clack/prompts": "^0.6.3",
    "cleye": "^1.3.2",
    "dedent": "^0.7.0",
    "ini": "^4.1.1",
    "kolorist": "^1.8.0",
    "lodash": "^4.17.21"
  }
}
