{
  "name": "esformatter-ignore",
  "version": "0.1.3",
  "description": "an esformatter plugin to make esformatter ignore certain lines and blocks of code",
  "repository": "royriojas/esformatter-ignore",
  "license": "MIT",
  "author": {
    "name": "Roy Riojas",
    "url": "http://royriojas.com"
  },
  "main": "index.js",
  "files": [
    "index.js"
  ],
  "engines": {
    "node": ">=0.10.0"
  },
  "prepush": [
    "npm run check"
  ],
  "precommit": [
    "npm run check"
  ],
  "scripts": {
    "beautify": "esbeautifier 'index.js' 'specs/**/*.spec.js'",
    "beautify-check": "esbeautifier -k 'index.js' 'specs/**/*.spec.js'",
    "eslint": "eslinter 'index.js' 'specs/**/*.spec.js'",
    "test": "mocha-runner 'specs/**/*.spec.js'",
    "cover": "istanbul cover -x 'specs/**/*.spec.js' mocha-runner 'specs/**/*.spec.js' html text-summary",
    "watch": "npm run cover && watch-spawn -p 'specs/**/*.spec.js' -p 'index.js' -p  npm run cover",
    "lint": "npm run beautify && npm run eslint && npm test",
    "check": "npm run beautify-check && npm run eslint && npm test",
    "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 check",
    "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",
    "exec-demo": "cd demo && node runner.js"
  },
  "keywords": [
    "esformatter-plugin",
    "esformatter",
    "ignore block",
    "ignore line",
    "AST",
    "codestyle",
    "ignore code block"
  ],
  "peerDependencies": {},
  "dependencies": {},
  "devDependencies": {
    "changelogx": "^1.0.18",
    "esbeautifier": "^3.2.0",
    "esformatter": "^0.7.3",
    "eslinter": "^2.0.6",
    "istanbul": "^0.3.17",
    "mocha-runner": "^1.0.8",
    "precommit": "^1.1.5",
    "prepush": "^3.1.4",
    "proxyquire": "^1.6.0",
    "watch-spawn": "^1.0.3"
  },
  "changelogx": {
    "ignoreRegExp": [
      "BLD: Release",
      "DOC: Generate Changelog",
      "Generated Changelog"
    ],
    "issueIDRegExp": "#(\\d+)",
    "commitURL": "https://github.com/royriojas/esformatter-ignore/commit/{0}",
    "authorURL": "https://github.com/{0}",
    "issueIDURL": "https://github.com/royriojas/esformatter-ignore/issues/{0}",
    "projectName": "esformatter-ignore"
  }
}
