git-reaper
Version:
A CLI tool to manage git branches and clean up stale branches.
90 lines (89 loc) • 2.08 kB
JSON
{
"name": "git-reaper",
"version": "0.1.2",
"description": "A CLI tool to manage git branches and clean up stale branches.",
"main": "src/index.js",
"type": "module",
"bin": {
"git-reaper": "./src/index.js"
},
"files": [
"src/",
"README.md",
"LICENSE"
],
"engines": {
"node": ">=18.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/migudevelop/git-reaper.git"
},
"homepage": "https://github.com/migudevelop/git-reaper#readme",
"scripts": {
"start:dev": "node src/index.js",
"lint:fix": "eslint --fix ./src/**/*.js",
"lint": "eslint ./src/**/*.js",
"prettify": "prettier . --write",
"prettier:check": "prettier . --check",
"prepare": "husky install",
"test": "jest --runInBand --silent=false",
"prepublish": "pnpm run test && pnpm run lint",
"push:tags": "git push && git push --tags"
},
"keywords": [
"git-reaper",
"git",
"reaper",
"branch-cleaner",
"branch-manager",
"git-branch-manager",
"git-branch-cleaner",
"git-branch-reaper",
"cli",
"branch",
"management",
"cleanup",
"git-branch",
"git-cleanup",
"git-reaper",
"git-tools",
"git-utilities",
"git-branch-cleanup",
"git-branch-manager",
"git-branch-manager-cli",
"developer-tools",
"command-line",
"git-tools",
"branch-cleanup",
"local-branches",
"branches"
],
"author": "Miguel Martínez",
"license": "MIT",
"dependencies": {
"@clack/prompts": "0.11.0",
"colorette": "2.0.20",
"commander": "14.0.0"
},
"devDependencies": {
"@babel/core": "7.27.4",
"@babel/preset-env": "7.27.2",
"@commitlint/cli": "19.8.1",
"@commitlint/config-conventional": "19.8.1",
"@eslint/js": "9.29.0",
"babel-jest": "30.0.2",
"eslint": "9.29.0",
"globals": "16.2.0",
"husky": "8.0.0",
"jest": "30.0.2",
"lint-staged": "16.1.2",
"prettier": "3.6.0"
},
"lint-staged": {
"src/**/*.js": [
"prettier --write",
"eslint --fix"
]
}
}