{
  "name": "mocha-runner",
  "version": "3.0.1",
  "description": "A simple mocha runner that includes chai, sinon, sinon-chai and chai-fuzzy and accepts a list of globs to run",
  "main": "lib/mocha-runner.js",
  "scripts": {
    "beautify": "esbeautifier 'bin/**/*.js' 'lib/**/*.js' 'specs/**/*.js'",
    "beautify-check": "esbeautifier -k 'bin/**/*.js' 'lib/**/*.js' 'specs/**/*.js'",
    "test": "node ./bin/runner.js 'specs/**/*.js'",
    "eslint": "eslinter 'bin/**/*.js' 'lib/**/*.js' 'specs/**/*.js'",
    "coverage": "istanbul cover -x 'specs/**/*.js' ./bin/runner.js 'specs/**/*.js' html text-summary",
    "coverage-cache": "istanbul cover -x 'specs/**/*.js' ./bin/runner.js 'specs/**/*.js' html text-summary -- --useCache=true",
    "watch": "npm run coverage && watch-spawn -p 'specs/**/*.js' -p 'bin/**/*.js' -p 'lib/**/*.js' npm run coverage-cache",
    "lint": "npm run beautify-check && npm run eslint",
    "verify": "npm run lint && npm test",
    "autofix": "npm run beautify && npm run eslint",
    "changelog": "changelogx -f markdown -o ./changelog.md",
    "do-changelog": "npm run changelog && git add ./changelog.md && git commit -m 'DOC: Generate changelog' --no-verify",
    "install-hooks": "prepush install && changelogx install-hook && precommit install",
    "pre-v": "npm run verify",
    "post-v": "npm run do-changelog && git push --no-verify && git push --tags --no-verify",
    "bump-major": "npm run pre-v && npm version major -m 'BLD: Release v%s' && npm run post-v",
    "bump-minor": "npm run pre-v && npm version minor -m 'BLD: Release v%s' && npm run post-v",
    "bump-patch": "npm run pre-v && npm version patch -m 'BLD: Release v%s' && npm run post-v"
  },
  "prepush": [
    "npm run verify"
  ],
  "precommit": [
    "npm run verify"
  ],
  "bin": {
    "mocha-runner": "./bin/runner.js"
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/royriojas/mocha-runner"
  },
  "license": "MIT",
  "author": "Roy Riojas (http://royriojas.com)",
  "devDependencies": {
    "changelogx": "^2.0.1",
    "esbeautifier": "^10.1.1",
    "eslinter": "^2.3.2",
    "istanbul": "^0.3.17",
    "precommit": "^1.1.5",
    "prepush": "^3.1.4",
    "proxyquire": "^1.6.0",
    "watch-spawn": "^1.0.5"
  },
  "dependencies": {
    "chai": "^1.10.0",
    "chai-fuzzy": "^1.4.0",
    "clix": "3.0.0",
    "extend": "3.0.2",
    "file-entry-cache": "^1.0.1",
    "mocha": "^5.2.0",
    "obj-util": "^1.0.0",
    "sinon": "^1.12.2",
    "sinon-chai": "^2.7.0",
    "stringformat": "0.0.5",
    "underscore": "1.9.1"
  },
  "bugs": {
    "url": "https://github.com/royriojas/mocha-runner/issues"
  },
  "homepage": "https://github.com/royriojas/mocha-runner",
  "keywords": [
    "mocha",
    "runner",
    "chai",
    "chai-sinon",
    "integration",
    "run",
    "specs",
    "globs"
  ]
}
