UNPKG

validate-branch

Version:

A CLI tool to validate Git branch names using Conventional Branch guidelines.

69 lines (68 loc) 1.76 kB
{ "name": "validate-branch", "type": "module", "version": "1.2.7", "bin": { "validate-branch": "./dist/cli.js" }, "author": { "name": "Ali nazari", "email": "backendwithali@gmail.com", "url": "https://alitte.vercel.app/" }, "repository": { "url": "https://github.com/Silent-Watcher/branch-lint" }, "description": "A CLI tool to validate Git branch names using Conventional Branch guidelines.", "engines": { "node": ">=18.12.0" }, "engineStrict": true, "scripts": { "tsc": "tsc", "dev": "tsx --watch ./src/*.ts", "prebuild": "npm run tsc", "build": "tsup", "prestart": "npm run build", "start": "node dist/index.js", "test": "vitest run --coverage --passWithNoTests", "test:watch": "vitest dev", "prelint": "biome format --write ./src/*.ts ./tests/*.ts", "lint": "biome lint ./src/*.ts ./tests/*.ts", "check": "biome check --write ./src/*.ts ./tests/*.ts", "prepare": "husky", "commit": "cz", "clean": "del-cli dist/ coverage/ *.log" }, "license": "MIT", "keywords": [ "git", "branch", "branch-validation", "naming-convention ", "cli", "conventional-branch", "version-control" ], "devDependencies": { "@biomejs/biome": "1.9.4", "@types/express": "^5.0.1", "@types/node": "^22.13.13", "@types/supertest": "^6.0.3", "@vitest/coverage-istanbul": "^3.0.9", "cz-conventional-changelog": "^3.3.0", "del-cli": "^6.0.0", "husky": "^9.1.7", "lint-staged": "^15.5.0", "supertest": "^7.1.0", "tsup": "^8.4.0", "tsx": "^4.19.3", "typescript": "^5.8.2", "vitest": "^3.0.9" }, "config": { "commitizen": { "path": "./node_modules/cz-conventional-changelog" } } }