{
  "name": "generate-changelog",
  "version": "1.8.0",
  "description": "Generate a changelog from git commits.",
  "bin": {
    "generate-changelog": "./bin/generate",
    "changelog": "./bin/generate"
  },
  "main": "./lib/index.js",
  "directories": {
    "test": "test"
  },
  "scripts": {
    "release:major": "./bin/generate -M && git add CHANGELOG.md && git commit -m 'updated CHANGELOG.md' && npm version major && git push origin && git push origin --tags",
    "release:minor": "./bin/generate -m && git add CHANGELOG.md && git commit -m 'updated CHANGELOG.md' && npm version minor && git push origin && git push origin --tags",
    "release:patch": "./bin/generate -p && git add CHANGELOG.md && git commit -m 'updated CHANGELOG.md' && npm version patch && git push origin && git push origin --tags",
    "coveralls": "cat ./coverage/lcov.info | coveralls",
    "lint": "eslint .",
    "test": "NODE_ENV=test istanbul cover _mocha -- test --recursive --timeout 30000",
    "test-no-cover": "NODE_ENV=test mocha test --recursive --timeout 30000"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/lob/generate-changelog.git"
  },
  "keywords": [
    "changelog",
    "cli",
    "npm",
    "version",
    "git",
    "semver"
  ],
  "author": "Lob <support@lob.com>",
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/lob/generate-changelog/issues"
  },
  "homepage": "https://github.com/lob/generate-changelog#readme",
  "dependencies": {
    "bluebird": "^3.0.6",
    "commander": "^2.9.0",
    "github-url-from-git": "^1.4.0"
  },
  "devDependencies": {
    "chai": "^3.4.1",
    "chai-as-promised": "^5.1.0",
    "coveralls": "^2.11.6",
    "eslint": "^1.10.3",
    "eslint-config-lob": "^2.4.0",
    "eslint-plugin-lob": "^1.1.0",
    "istanbul": "^0.4.1",
    "mocha": "^2.3.4",
    "sinon": "^1.17.2"
  },
  "engine": {
    "node": ">= 0.10.x"
  }
}
