UNPKG

bumping

Version:

Bump version, commit changes, tag, and push to Git

84 lines (83 loc) 1.97 kB
{ "name": "bumping", "version": "9.2.1", "packageManager": "pnpm@8.6.12", "description": "Bump version, commit changes, tag, and push to Git", "author": { "name": "James Messinger", "url": "https://jamesmessinger.com" }, "license": "MIT", "homepage": "https://github.com/nyxb/bumping", "repository": { "type": "git", "url": "https://github.com/nyxb/bumping.git" }, "keywords": [ "version", "bump", "npm", "node", "bower", "package", "git", "tag", "push", "prompt" ], "exports": { ".": { "types": "./dist/index.d.ts", "import": "./dist/index.mjs", "require": "./dist/index.js" } }, "main": "dist/index.js", "module": "dist/index.mjs", "types": "dist/index.d.ts", "bin": { "bumping": "bin/bumping.js" }, "files": [ "bin", "dist" ], "engines": { "node": ">=10" }, "scripts": { "clean": "rimraf .nyc_output coverage dist", "lint": "eslint .", "build": "tsup src/index.ts src/cli/index.ts --format esm,cjs --dts --clean", "watch": "npm run build -- --watch src", "start": "esno src/cli/run.ts", "upgrade": "npm-check -u && npm audit fix", "bumping": "esno src/cli/run.ts", "prepublishOnly": "npm run clean && npm run build", "release": "npm run bumping && npm publish" }, "dependencies": { "@jsdevtools/ez-spawn": "^3.0.4", "c12": "^1.4.2", "cac": "^6.7.14", "fast-glob": "^3.3.1", "prompts": "^2.4.2", "semver": "^7.5.4" }, "devDependencies": { "@nyxb/eslint-config": "^1.0.0-beta.8 ", "@types/node": "^20.5.1", "@types/prompts": "^2.4.4", "@types/semver": "^7.5.0", "detect-indent": "^7.0.1", "detect-newline": "^4.0.0", "eslint": "^8.47.0", "esno": "^0.17.0", "log-symbols": "^5.1.0", "npm-check": "^6.0.1", "picocolors": "^1.0.0", "rimraf": "^5.0.1", "tsup": "^7.2.0", "typescript": "^5.1.6" } }