{
  "name": "now-pipeline",
  "version": "1.10.0",
  "description": "Single CI command to deploy new version to Zeit Now, including e2e tests and alias switch",
  "author": "Gleb Bahmutov <gleb.bahmutov@gmail.com>",
  "bugs": "https://github.com/bahmutov/now-pipeline/issues",
  "config": {
    "pre-git": {
      "commit-msg": "simple",
      "pre-commit": [
        "npm prune",
        "npm run deps",
        "npm test",
        "npm run ban"
      ],
      "pre-push": [
        "npm run secure",
        "npm run license",
        "npm run ban -- --all",
        "npm run size"
      ],
      "post-commit": [],
      "post-merge": []
    }
  },
  "engines": {
    "node": ">=6"
  },
  "files": [
    "bin",
    "src/*.js",
    "!src/*-spec.js"
  ],
  "bin": {
    "now-pipeline": "bin/now-pipeline.js",
    "now-pipeline-list": "bin/list.js",
    "now-pipeline-prune": "bin/prune.js"
  },
  "homepage": "https://github.com/bahmutov/now-pipeline#readme",
  "keywords": [
    "ci",
    "now",
    "test",
    "tool",
    "util",
    "zeit"
  ],
  "license": "MIT",
  "main": "src/",
  "noScopeName": "now-pipeline",
  "publishConfig": {
    "registry": "http://registry.npmjs.org/"
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/bahmutov/now-pipeline.git"
  },
  "scripts": {
    "ban": "ban",
    "deps": "deps-ok",
    "issues": "git-issues",
    "license": "license-checker --production --onlyunknown --csv",
    "lint": "standard --verbose --fix src/*.js bin/*.js",
    "pretest": "npm run lint",
    "secure": "nsp check",
    "size": "t=\"$(npm pack .)\"; wc -c \"${t}\"; tar tvf \"${t}\"; rm \"${t}\";",
    "test": "npm run unit",
    "unit": "mocha src/*-spec.js",
    "semantic-release": "semantic-release pre && npm publish && semantic-release post"
  },
  "devDependencies": {
    "ban-sensitive-files": "1.9.2",
    "deps-ok": "1.2.1",
    "git-issues": "1.3.1",
    "github-post-release": "1.13.1",
    "license-checker": "15.0.0",
    "mocha": "4.1.0",
    "next-update-travis": "1.7.1",
    "nsp": "3.1.0",
    "pre-git": "3.17.0",
    "semantic-release": "6.3.6",
    "simple-commit-message": "3.3.2",
    "standard": "10.0.3"
  },
  "dependencies": {
    "check-more-types": "2.24.0",
    "console.table": "0.9.1",
    "cross-spawn": "5.1.0",
    "debug": "3.1.0",
    "lazy-ass": "1.6.0",
    "minimist": "1.2.0",
    "moment": "2.20.1",
    "node-sentry-error-reporter": "1.8.0",
    "now-client": "0.7.0",
    "pkgd": "1.1.2",
    "ramda": "0.25.0"
  },
  "release": {
    "analyzeCommits": "simple-commit-message",
    "generateNotes": "github-post-release"
  }
}