UNPKG

git-merged-branches

Version:

CLI tool to list all Git branches merged into a base branch with issue link formatting

77 lines (76 loc) 2.58 kB
{ "name": "git-merged-branches", "description": "CLI tool to list all Git branches merged into a base branch with issue link formatting", "keywords": [ "git", "cli", "branch", "issue-tracker" ], "type": "module", "version": "0.2.7", "license": "MIT", "author": { "name": "VChet", "url": "https://github.com/VChet" }, "repository": { "type": "git", "url": "git+https://github.com/VChet/git-merged-branches.git" }, "bugs": { "url": "https://github.com/VChet/git-merged-branches/issues" }, "homepage": "https://github.com/VChet/git-merged-branches#readme", "bin": { "git-merged-branches": "dist/index.js", "gmb": "dist/index.js" }, "files": [ "dist/", "README.md", "LICENSE.MD" ], "scripts": { "build": "node build.js", "lint:ts": "tsc --noEmit", "lint:js": "eslint .", "lint:js:fix": "npm run lint:js -- --fix", "lint:all": "npm run lint:ts && npm run lint:js", "test": "vitest --run", "release:patch": "dotenv release-it patch", "release:minor": "dotenv release-it minor", "release:major": "dotenv release-it major" }, "devDependencies": { "@release-it/conventional-changelog": "^10.0.1", "@types/node": "^24.3.0", "dotenv-cli": "^10.0.0", "esbuild": "^0.25.9", "eslint": "^9.34.0", "neostandard": "^0.12.2", "release-it": "^19.0.4", "typescript": "^5.9.2", "vitest": "^3.2.4" }, "pnpm": { "overrides": { "array-includes": "npm:@nolyfill/array-includes@^1", "array.prototype.findlast": "npm:@nolyfill/array.prototype.findlast@^1", "array.prototype.flat": "npm:@nolyfill/array.prototype.flat@^1", "array.prototype.flatmap": "npm:@nolyfill/array.prototype.flatmap@^1", "array.prototype.tosorted": "npm:@nolyfill/array.prototype.tosorted@^1", "es-iterator-helpers": "npm:@nolyfill/es-iterator-helpers@^1", "hasown": "npm:@nolyfill/hasown@^1", "is-core-module": "npm:@nolyfill/is-core-module@^1", "object.assign": "npm:@nolyfill/object.assign@^1", "object.entries": "npm:@nolyfill/object.entries@^1", "object.fromentries": "npm:@nolyfill/object.fromentries@^1", "object.values": "npm:@nolyfill/object.values@^1", "safe-buffer": "npm:@nolyfill/safe-buffer@^1", "safer-buffer": "npm:@nolyfill/safer-buffer@^1", "string.prototype.matchall": "npm:@nolyfill/string.prototype.matchall@^1", "typedarray": "npm:@nolyfill/typedarray@^1" } } }