git-tool
Version:
统计个人代码提交量的命令行工具
56 lines (55 loc) • 1.58 kB
JSON
{
"name": "git-tool",
"version": "1.1.1",
"description": "统计个人代码提交量的命令行工具",
"dependencies": {
"chalk": "^3.0.0",
"commander": "^2.19.0",
"didyoumean": "^1.2.1",
"semver": "^7.1.1"
},
"devDependencies": {
"conventional-changelog-cli": "2.0.31",
"eslint": "^6.8.0",
"eslint-config-standard": "^14.1.0",
"eslint-plugin-import": "^2.20.0",
"eslint-plugin-node": "^11.0.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1"
},
"scripts": {
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s -r 0",
"postchangelog": "git add CHANGELOG.md && git commit -m 'docs: update chengelog'",
"publish:patch": "npm publish",
"prepublish:patch": "npm version patch && npm run changelog",
"postpublish:patch": "git push --tags && git push",
"publish:minor": "npm publish",
"prepublish:minor": "npm version minor && npm run changelog",
"postpublish:minor": "git push --tags && git push",
"lint": "eslint src",
"lint:fix": "eslint --fix src"
},
"files": [
"src"
],
"bin": {
"git-tool": "src/bin/gitTool.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tian-cai/git-tool.git"
},
"author": "tian-cai",
"keywords": [
"git-tool",
"统计个人代码提交量的命令行工具"
],
"license": "ISC",
"bugs": {
"url": "https://github.com/tian-cai/git-tool/issues"
},
"homepage": "https://github.com/tian-cai/git-tool#readme",
"engines": {
"node": ">=8.0.0"
}
}