{
  "version": "0.4.1",
  "name": "smokestack-watch",
  "description": "Re-run tests on file change with watchify and smokestack",
  "author": {
    "name": "Joey Baker",
    "email": "joey@byjoeybaker.com",
    "url": "https://byjoeybaker.com"
  },
  "repository": "joeybaker/smokestack-watch",
  "license": "Artistic-2.0",
  "directories": {
    "test": "test"
  },
  "bin": {
    "smokestack-watch": "./bin/smokestack-watch.js"
  },
  "keywords": [
    "smokestack-watch",
    "tape",
    "test",
    "watchify",
    "browserify",
    "smokestack",
    "tdd"
  ],
  "scripts": {
    "start": "node index.js",
    "test": "covert test/*.js | tap-spec",
    "tdd": "nodemon -x npm -i node_modules/ -- run test",
    "note1": "we can't have nice things. prepublish also runs on npm install https://github.com/npm/npm/issues/6394 in-publish hacks around this",
    "prepublish": "in-publish && npm prune && npm run gitPush || in-install",
    "note2": "eslint will always pull from the global eslintrc file, disable that so that we're only looking at the local",
    "note3": "travis doesn't play nicely with !#/bin/bash in the script file, so we have to explicitly set bash",
    "lint": "/bin/bash -c 'source ./scripts.sh && lint'",
    "requireGitClean": "/bin/bash -c 'source ./scripts.sh && git_require_clean_work_tree'",
    "nsp": "nsp audit-package",
    "note4": "--no-verify skips the commit hook",
    "dmn": "dmn gen -f . && if [[ $(git diff --shortstat 2> /dev/null | tail -n1) != '' ]]; then git add .npmignore && git commit --no-verify -m'update npmignore'; fi",
    "doctoc": "doctoc README.md && if [ -f CONTRIBUTING.md ]; then doctoc CONTRIBUTING.md; fi && if [[ $(git diff --shortstat 2> /dev/null | tail -n1) != '' ]]; then git add README.md CONTRIBUTING.md && git commit --no-verify -m'table of contents update'; fi",
    "gitPull": "git pull --rebase origin master",
    "gitPush": "git push --follow-tags --no-verify && git push --tags --no-verify",
    "release": "source ./scripts.sh && npm run requireGitClean && npm run gitPull && npm run dmn && npm run doctoc && npm run lint && npm test && npm_release $@"
  },
  "config": {
    "notes": "important to correct the path of npm so that the git hook doesn't error",
    "ghooks": {
      "pre-commit": "PATH=$PATH:/usr/local/bin:/usr/local/sbin && npm run lint",
      "pre-push": "PATH=$PATH:/usr/local/bin:/usr/local/sbin && npm run dmn && npm run doctoc && npm run lint && npm test",
      "update": "PATH=$PATH:/usr/local/bin:/usr/local/sbin && npm install"
    }
  },
  "main": "index.js",
  "browser": "index.js",
  "devDependencies": {
    "covert": "^1.0.1",
    "dmn": "^1.0.5",
    "doctoc": "^0.13.0",
    "eslint": "^0.20.0",
    "ghooks": "^0.3.2",
    "in-publish": "^1.1.1",
    "nodemon": "^1.2.1",
    "nsp": "^1.0.1",
    "tap-spec": "^3.0.0",
    "tape": "^4.0.0"
  },
  "dependencies": {
    "browserify": "^10.0.0",
    "glob": "^5.0.5",
    "lodash.defaults": "^3.1.1",
    "minimist": "^1.1.1",
    "smokestack": "^3.2.2",
    "tap-closer": "^1.0.0",
    "through2": "^0.6.5",
    "watchify": "^3.2.0"
  }
}
