@ebuka_dev/git-branch-cleaner
Version:
A CLI tool to help manage and clean up Git branches
54 lines (53 loc) • 1.2 kB
JSON
{
"name": "@ebuka_dev/git-branch-cleaner",
"version": "1.0.0",
"description": "A CLI tool to help manage and clean up Git branches",
"main": "dist/index.js",
"bin": {
"git-branch-cleaner": "./dist/index.js"
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsc",
"prepublishOnly": "npm run build",
"start": "ts-node src/index.ts"
},
"keywords": [
"git",
"branch",
"cleanup",
"cli",
"git-tools",
"branch-management"
],
"author": "Joseph Ebuka <ebukaj665@gmail.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/Joseph-Ebuka/git-branch-cleaner.git"
},
"bugs": {
"url": "https://github.com/Joseph-Ebuka/git-branch-cleaner/issues"
},
"homepage": "https://github.com/Joseph-Ebuka/git-branch-cleaner#readme",
"dependencies": {
"chalk": "^4.1.2",
"commander": "^11.1.0",
"inquirer": "^8.2.6",
"ora": "^5.4.1",
"simple-git": "^3.22.0"
},
"devDependencies": {
"@types/inquirer": "^8.2.10",
"@types/node": "^20.11.5",
"ts-node": "^10.9.2",
"typescript": "^5.3.3"
},
"engines": {
"node": ">=14.0.0"
}
}