git-limpa-branches
Version:
Utilitário para limpeza segura de branches Git
75 lines • 2.02 kB
JSON
{
"name": "git-limpa-branches",
"version": "1.0.7",
"description": "Utilitário para limpeza segura de branches Git",
"type": "module",
"main": "dist/git-limpa-branches.js",
"bin": {
"git-limpa-branches": "./dist/git-limpa-branches.js"
},
"repository": {
"type": "git",
"url": "https://github.com/devix-tecnologia/git-limpa-branches"
},
"bugs": {
"url": "https://github.com/devix-tecnologia/git-limpa-branches/issues"
},
"homepage": "https://github.com/devix-tecnologia/git-limpa-branches#readme",
"files": [
"dist/",
"docs/"
],
"keywords": [
"git",
"branch",
"cleanup",
"utility",
"git-tool",
"cli",
"command-line",
"git-branch",
"git-utility",
"git-cleanup"
],
"author": "Sidarta Veloso",
"license": "MIT",
"dependencies": {
"minimist": "^1.2.8"
},
"devDependencies": {
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/commit-analyzer": "^13.0.1",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^11.0.3",
"@semantic-release/npm": "^12.0.1",
"@semantic-release/release-notes-generator": "^14.0.3",
"@types/eslint": "^9.6.1",
"@types/minimist": "^1.2.5",
"@types/node": "^22.15.29",
"@typescript-eslint/eslint-plugin": "^8.33.1",
"@typescript-eslint/parser": "^8.33.1",
"@vitest/coverage-v8": "^3.2.1",
"eslint": "^9.28.0",
"jiti": "^2.4.2",
"prettier": "^3.5.3",
"semantic-release": "^24.2.5",
"typescript": "^5.8.3",
"typescript-eslint": "^8.33.1",
"vitest": "^3.2.1"
},
"engines": {
"node": ">=18.0.0"
},
"scripts": {
"build": "tsc",
"dev": "tsc -w",
"start": "node dist/git-limpa-branches.js",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"lint": "eslint --ext .ts ./src",
"lint:fix": "eslint --ext .ts ./src --fix",
"format": "prettier --write \"src/**/*.ts\"",
"check": "pnpm lint && pnpm test"
}
}