regit-cli
Version:
git helper cli
67 lines (66 loc) • 1.91 kB
JSON
{
"name": "regit-cli",
"version": "1.5.0",
"description": "git helper cli",
"repository": {
"type": "git",
"url": "git+https://github.com/alwex/regit.git"
},
"bugs": {
"url": "https://github.com/alwex/regit/issues"
},
"homepage": "https://github.com/alwex/regit/blob/main/README.md",
"main": "build/src/index.js",
"bin": {
"regit": "build/src/index.js"
},
"keywords": [
"commit",
"git",
"gitflow"
],
"author": "Alexandre Guidet",
"license": "MIT",
"type": "module",
"dependencies": {
"@inquirer/confirm": "^2.0.15",
"@inquirer/prompts": "^3.3.0",
"@types/node": "^18.16.3",
"axios": "^1.4.0",
"chalk": "^5.2.0",
"commander": "^10.0.1",
"figlet": "^1.6.0",
"semver": "^7.5.0",
"signale": "^1.4.0",
"simple-git": "^3.18.0",
"typescript": "^5.0.4",
"winston": "^3.8.2"
},
"scripts": {
"predev": "yarn build",
"dev": "NODE_ENV=dev node build/src/index.js",
"prod": "NODE_ENV=prod node build/src/index.js",
"build": "rimraf ./build && tsc",
"postbuild": "chmod u+x ./build/src/index.js",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"v": "yarn version --no-git-tag-version --new-version",
"postv": "echo \"export default '1.4.1'\" > ./src/version.ts"
},
"devDependencies": {
"@types/chalk": "^2.2.0",
"@types/figlet": "^1.5.6",
"@types/npmlog": "^4.1.4",
"@types/semver": "^7.3.13",
"@types/signale": "^1.4.4",
"execa": "^9.5.2",
"rimraf": "^5.0.0",
"ts-node": "^10.9.1",
"tsc": "^2.0.4",
"vitest": "^3.1.2"
},
"resolutions": {
"wrap-ansi": "^9.0.0"
}
}