{
  "name": "changelogx",
  "version": "5.0.6",
  "description": "Yet another changelog generator from git commits, based on conventions and with an optional hook to enforce the rules",
  "main": "index.js",
  "engines": {
    "node": ">=8"
  },
  "scripts": {
    "eslint": "eslint --cache --cache-location node_modules/.cache/ -f friendly 'index.js' 'src/**/*.js' 'lib/**/*.js' 'bin/**/*.js' 'specs/**/*.js' 'hooks/**/*.js'",
    "test": "mocha-runner 'specs/**/*.js'",
    "cover": "istanbul cover -x 'specs/**/*.js' mocha-runner 'specs/**/*.js' html text-summary",
    "lint": "npm run eslint -- --fix && npm test",
    "check": "npm run eslint && npm test",
    "changelog": "./bin/cli.js -f markdown -o ./changelog.md -c configs/changelogx.config.js",
    "do-changelog": "npm run changelog && git add ./changelog.md && git commit -m 'DOC: Generate changelog'",
    "install-hooks": "./bin/cli.js install-hook && prepush install && precommit install",
    "pre-v": "npm run check",
    "post-v": "npm run do-changelog && git push --no-verify && git push --tags --no-verify",
    "bump-major": "npm run pre-v && npm version major -m 'BLD: Release v%s' && npm run post-v",
    "bump-minor": "npm run pre-v && npm version minor -m 'BLD: Release v%s' && npm run post-v",
    "bump-patch": "npm run pre-v && npm version patch -m 'BLD: Release v%s' && npm run post-v"
  },
  "bin": {
    "changelogx": "./bin/cli.js"
  },
  "keywords": [
    "changelog",
    "git",
    "changes",
    "history",
    "commits",
    "tags"
  ],
  "repository": {
    "type": "git",
    "url": "https://github.com/royriojas/changelogx"
  },
  "license": "MIT",
  "author": "Roy Riojas (http://royriojas.com)",
  "dependencies": {
    "clix": "5.0.0",
    "extend": "3.0.2",
    "git-toplevel": "^1.1.1",
    "github-url-from-git": "1.5.0",
    "lodash": "4.17.14",
    "marked": "0.7.0",
    "moment": "2.24.0",
    "read-file": "0.2.0",
    "read-json-sync": "2.0.1",
    "stringformat": "0.0.5",
    "twig": "^1.13.3",
    "write": "1.0.3"
  },
  "devDependencies": {
    "@typescript-eslint/eslint-plugin": "^1.10.2",
    "@typescript-eslint/parser": "^1.10.2",
    "babel-eslint": "^10.0.1",
    "eslint": "^5.16.0",
    "eslint-config-airbnb": "^17.1.0",
    "eslint-config-prettier": "^4.3.0",
    "eslint-formatter-friendly": "^6.0.0",
    "eslint-plugin-import": "^2.17.3",
    "eslint-plugin-jsx-a11y": "^6.2.1",
    "eslint-plugin-mocha": "^5.3.0",
    "eslint-plugin-prettier": "^3.1.0",
    "eslint-plugin-react": "^7.13.0",
    "istanbul": "0.4.5",
    "mocha-runner": "3.0.1",
    "prettier": "^1.18.2",
    "proxyquire": "2.1.0"
  }
}
