{
  "name": "broken-link-checker-local",
  "version": "0.2.1",
  "description": "Find broken links, missing images, etc in your HTML, even in local files",
  "main": "out/BrokenLinkChecker.js",
  "bin": {
    "blcl": "out/bin.js"
  },
  "engines": {
    "node": ">=6.0"
  },
  "scripts": {
    "compile": "babel src --out-dir out",
    "compile:watch": "npm run compile -- --watch",
    "docs": "esdoc -c esdoc.json",
    "docs:coverage": "esdoc-coverage -c esdoc.json",
    "lint": "eslint src test",
    "prepublishOnly": "npm run compile && npm run docs",
    "test": "node_modules/.bin/mocha --recursive --require @babel/register \"./test/**/*.spec.js\" --exit",
    "test:watch": "npm test -- --watch --reporter min",
    "test:coverage": "NODE_ENV=test node_modules/.bin/nyc --reporter=html npm test",
    "test:docs": "node out/bin.js docs/api --exclude https://circleci.com/gh/LukasHechenberger/broken-link-checker-local"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/LukasHechenberger/broken-link-checker-local.git"
  },
  "author": "Lukas Hechenberger <admin@ls-age.com>",
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/LukasHechenberger/broken-link-checker-local/issues"
  },
  "homepage": "https://github.com/LukasHechenberger/broken-link-checker-local#readme",
  "dependencies": {
    "broken-link-checker": "^0.7.4",
    "chalk": "^2.4.0",
    "express": "^4.14.0",
    "get-port": "^3.2.0",
    "yargs": "^11.1.0"
  },
  "devDependencies": {
    "@babel/cli": "^7.4.4",
    "@babel/core": "^7.4.5",
    "@babel/preset-env": "^7.4.5",
    "@babel/register": "^7.4.4",
    "@ls-age/bump-version": "^0.2.0",
    "@ls-age/esdoc-coverage": "^0.1.6",
    "@ls-age/eslint-config": "^0.9.0",
    "babel-plugin-istanbul": "^5.1.4",
    "codecov": "^3.5.0",
    "esdoc": "^1.1.0",
    "esdoc-standard-plugin": "^1.0.0",
    "eslint": "^5.16.0",
    "mocha": "^6.1.4",
    "mocha-circleci-reporter": "0.0.3",
    "nyc": "^14.1.1",
    "sinon": "^7.3.2",
    "supertest": "^4.0.2",
    "unexpected": "^11.6.1"
  },
  "eslintConfig": {
    "parserOptions": {
      "ecmaVersion": 2017
    },
    "extends": "@ls-age",
    "rules": {
      "compat/compat": "off"
    }
  },
  "babel": {
    "presets": [
      [
        "@babel/env",
        {
          "targets": {
            "node": 8
          }
        }
      ]
    ],
    "env": {
      "test": {
        "plugins": [
          "istanbul"
        ]
      }
    }
  },
  "nyc": {
    "all": true,
    "include": [
      "src/**/*.js"
    ],
    "require": [
      "@babel/register"
    ],
    "sourceMap": false,
    "instrument": false,
    "check-coverage": true
  }
}
