UNPKG

long-git-cli

Version:

A CLI tool for Git tag management.

70 lines (69 loc) 1.62 kB
{ "name": "long-git-cli", "version": "1.0.13", "description": "A CLI tool for Git tag management.", "main": "dist/index.js", "bin": { "long": "dist/index.js" }, "files": [ "dist", "README.md", "LICENSE" ], "scripts": { "build": "tsc", "dev": "ts-node src/index.ts", "start": "node dist/index.js", "clean": "rm -rf dist", "prebuild": "npm run clean", "pub": "npm version patch && npm run build && npm publish --access public && git push", "publish:npm": "npm publish --registry https://registry.npmjs.org/ --access public" }, "keywords": [ "cli", "git", "tag", "versioning", "bitbucket", "github", "automation" ], "author": "WenTao.Long <815473953@qq.com>", "license": "MIT", "engines": { "node": ">=16.0.0" }, "publishConfig": { "access": "public" }, "dependencies": { "@koa/router": "^15.1.1", "@types/inquirer": "^8.2.3", "axios": "^1.13.2", "bcrypt": "^6.0.0", "chalk": "^4.1.2", "commander": "^11.1.0", "inquirer": "^8.2.4", "koa": "^3.1.1", "koa-bodyparser": "^4.4.1", "koa-static": "^5.0.0", "open": "^11.0.0", "ora": "^5.4.1", "simple-git": "^3.22.0" }, "devDependencies": { "@types/bcrypt": "^6.0.0", "@types/jest": "^30.0.0", "@types/koa": "^3.0.1", "@types/koa__router": "^12.0.5", "@types/koa-bodyparser": "^4.3.13", "@types/koa-static": "^4.0.4", "@types/node": "^20.10.0", "fast-check": "^4.5.2", "jest": "^30.2.0", "ts-jest": "^29.4.6", "ts-node": "^10.9.0", "typescript": "^5.3.0" } }