{
  "name": "my-deploy",
  "version": "1.3.2",
  "description": "A hansome project for deployment",
  "main": "./bin/index.js",
  "bin": {
    "mydeploy": "bin/mydeploy.js"
  },
  "scripts": {
    "start": "node ./bin/mydeploy.js",
    "test": "ava  --verbose",
    "lint": "eslint lib/** ",
    "lint-fix": "eslint lib/** --fix",
    "commit": "commit-wizard"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/kelvv/my-deploy.git"
  },
  "keywords": [
    "deploy",
    "reload",
    "git",
    "githook",
    "gitdeploy"
  ],
  "author": "kelvv",
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/kelvv/my-deploy/issues"
  },
  "homepage": "https://github.com/kelvv/my-deploy#readme",
  "dependencies": {
    "co": "^4.6.0",
    "commander": "^2.9.0",
    "jsonfile": "^2.3.1",
    "log4js": "^0.6.36",
    "update-notifier": "^0.7.0"
  },
  "devDependencies": {
    "ava": "^0.15.2",
    "mocha": "^2.5.3",
    "pre-git": "^3.9.0",
    "should": "^9.0.2"
  },
  "config": {
    "pre-git": {
      "commit-msg": "",
      "pre-commit": [
        "npm run lint-fix",
        "git add ."
      ],
      "pre-push": [],
      "post-commit": [],
      "post-checkout": [],
      "post-merge": []
    }
  }
}
