package.json 822 Bytes
{
  "name": "git-commit-demo",
  "description": "demo of test git-commit",
  "main": "index.js",
  "dependencies": {
    "commitizen": "^4.1.2",
    "commitlint": "^8.3.5",
    "husky": "^4.2.5"
  },
  "devDependencies": {
    "cz-customizable": "^6.2.0"
  },
  "scripts": {
    "version": "conventional-changelog -p angular -i CHANGELOG.md -s -r 0 && git add CHANGELOG.md",
    "test": "echo \"Error: no test specified\" && exit 1"
  },
  "repository": {
    "type": "git",
    "url": "http://zhouzk@139.217.92.77:55676/zhouzk/git-commit-demo.git"
  },
  "husky": {
    "hooks": {
      "commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
    }
  },
  "keywords": [
    "git",
    "commit"
  ],
  "author": "zk",
  "license": "ISC",
  "config": {
    "commitizen": {
      "path": "./node_modules/cz-customizable"
    }
  }
}