{
  "name": "changed-log",
  "description": "Returns all commit messages between 2 versions of an NPM module",
  "main": "src/changed-log.js",
  "version": "0.13.0",
  "bin": {
    "changed-log": "bin/changed-log.js"
  },
  "scripts": {
    "pretest": "npm run lint",
    "mocha": "mocha -R spec src/**/*-spec.js",
    "test": "npm run mocha && npm run chalk-with-mock",
    "watch": "npm run mocha -- --watch",
    "example": "node bin/changed-log.js next-update 0.8.0 0.8.3",
    "chalk": "DEBUG=changed node bin/changed-log.js chalk 0.3.0 0.5.1",
    "chalk-with-mock": "DEBUG=changed node mocks/mock-for-chalk.js bin/changed-log.js chalk 0.3.0 0.5.1",
    "lint": "standard --verbose --fix bin/*.js src/*.js mocks/*.js",
    "commit": "git-issues && commit-wizard",
    "issues": "git-issues",
    "semantic-release": "semantic-release pre && npm publish && semantic-release post",
    "test-angular": "DEBUG=changed node bin/changed-log.js https://github.com/angular/angular.js.git 1.4.0 1.4.1",
    "size": "t=\"$(npm pack .)\"; wc -c \"${t}\"; tar tvf \"${t}\"; rm \"${t}\";"
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/bahmutov/changed-log.git"
  },
  "keywords": [
    "change",
    "changelog",
    "changes",
    "version",
    "release",
    "module",
    "package",
    "npm"
  ],
  "author": "Gleb Bahmutov <gleb.bahmutov@gmail.com>",
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/bahmutov/changed-log/issues"
  },
  "homepage": "https://github.com/bahmutov/changed-log",
  "dependencies": {
    "bluebird": "3.4.1",
    "chalk": "1.1.3",
    "check-more-types": "2.22.0",
    "debug": "2.2.0",
    "github": "2.4.0",
    "inquirer": "1.1.2",
    "lazy-ass": "1.5.0",
    "lodash": "3.10.1",
    "package-json": "2.4.0",
    "parse-github-repo-url": "1.3.0",
    "ramda": "0.15.1",
    "update-notifier": "1.0.3"
  },
  "devDependencies": {
    "@semantic-release/condition-travis": "^4.1.4",
    "condition-node-version": "1.3.0",
    "git-issues": "1.3.1",
    "mocha": "3.0.2",
    "pre-git": "3.12.0",
    "really-need": "1.9.2",
    "semantic-release": "6.3.0",
    "standard": "8.6.0"
  },
  "files": [
    "bin",
    "src/*.js",
    "!src/*-spec.js"
  ],
  "release": {
    "verifyConditions": [
      {
        "path": "@semantic-release/condition-travis"
      },
      {
        "path": "condition-node-version",
        "node": "4.2.2",
        "verbose": true
      }
    ]
  },
  "config": {
    "pre-git": {
      "commit-msg": "simple",
      "pre-commit": "npm test",
      "pre-push": [
        "npm run size"
      ],
      "post-merge": [],
      "post-commit": []
    }
  }
}