git-merged-branches
Version:
CLI tool to list all Git branches merged into a base branch with issue link formatting
56 lines • 1.48 kB
JSON
{
"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.3.1",
"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.mjs",
"gmb": "dist/index.mjs"
},
"files": [
"dist/",
"README.md",
"LICENSE.md"
],
"devDependencies": {
"@types/node": "^24.10.1",
"commit-and-tag-version": "^12.6.1",
"cross-env": "^10.1.0",
"dotenv-cli": "^11.0.0",
"eslint": "^9.39.1",
"neostandard": "^0.12.2",
"publint": "^0.3.15",
"tsdown": "^0.17.0",
"typescript": "^5.9.3",
"vitest": "^4.0.15"
},
"scripts": {
"build": "tsdown",
"test": "vitest --run",
"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",
"lint:release": "cross-env NODE_ENV=production npm run lint:all && npm test && npm run build",
"release": "npm run lint:release && commit-and-tag-version"
}
}