{
    "name": "npm-bump",
    "version": "0.0.42",
    "description": "A better `npm version major|minor|patch`",
    "type": "module",
    "homepage": "https://github.com/mgol/npm-bump",
    "author": {
        "name": "Michał Gołębiowski-Owczarek",
        "email": "m.goleb@gmail.com"
    },
    "keywords": [
        "version",
        "versioning",
        "bump",
        "npm"
    ],
    "bin": {
        "npm-bump": "bin/npm-bump.js"
    },
    "main": "lib/cli.js",
    "repository": {
        "type": "git",
        "url": "https://github.com/mgol/npm-bump.git"
    },
    "bugs": "https://github.com/mgol/npm-bump/issues",
    "license": "MIT",
    "files": [
        "bin",
        "lib"
    ],
    "dependencies": {
        "inquirer": "^12.9.4",
        "minimist": "^1.2.8",
        "semver": "^7.7.2",
        "shell-quote": "^1.8.3"
    },
    "devDependencies": {
        "eslint": "9.34.0",
        "eslint-config-mgol": "0.0.50",
        "globals": "^16.3.0",
        "husky": "9.1.7",
        "lint-staged": "16.1.5",
        "prettier": "3.6.2"
    },
    "scripts": {
        "prettier-check": "prettier --check \"**/*.{json,js,yml,yaml,md}\"",
        "prettier-format": "prettier --write \"**/*.{json,js,yml,yaml,md}\"",
        "spec-test": "node --test test/spec.js",
        "test": "eslint . && npm run prettier-check && npm run spec-test"
    },
    "engines": {
        "node": ">=12"
    },
    "husky": {
        "hooks": {
            "pre-commit": "lint-staged"
        }
    },
    "lint-staged": {
        "*.{json,yml,yaml,md}": [
            "prettier --write",
            "git add"
        ],
        "*.js": [
            "eslint --fix",
            "prettier --write",
            "git add"
        ]
    }
}
