{
  "name": "axe-crawler",
  "version": "0.5.5",
  "description": "A highly configurable website crawler for automatically testing a website for accessibility issues using the axe-core library.  Uses selenium and headless Chrome to load pages, inject axe-core, and run tests.  Generates an html summary report in addition to raw JSON data.",
  "main": "dist/axe-crawler",
  "keywords": [
    "accessibility",
    "a11y",
    "testing",
    "tdd",
    "integration testing",
    "crawler",
    "scraping",
    "random sampling"
  ],
  "repository": {
    "type": "git",
    "url": "https://github.com/tjscollins/axe-crawler"
  },
  "scripts": {
    "build": "NODE_ENV=production node_modules/rollup/bin/rollup -c rollup.config.js",
    "test": "jest"
  },
  "bin": {
    "axe-crawler": "dist/bin/axe-crawler"
  },
  "engines": {
    "node": ">=6"
  },
  "author": "Tyler Collins",
  "license": "MIT",
  "dependencies": {
    "axe-webdriverjs": "^1.1.5",
    "axios": "^0.16.2",
    "cheerio": "^1.0.0-rc.2",
    "escape-html": "^1.0.3",
    "knex": "^0.14.1",
    "marked": "^0.3.6",
    "minimist": "^1.2.0",
    "objection": "^0.9.1",
    "selenium-webdriver": "^3.5.0",
    "sqlite3": "^3.1.13",
    "utility-logger": "^0.1.4",
    "validator": "^8.2.0"
  },
  "devDependencies": {
    "babel-cli": "^6.26.0",
    "babel-jest": "^21.2.0",
    "babel-plugin-external-helpers": "^6.22.0",
    "babel-preset-env": "^1.6.0",
    "eslint": "^4.7.2",
    "eslint-config-airbnb-base": "^12.0.1",
    "eslint-plugin-import": "^2.7.0",
    "gulp": "^3.9.1",
    "gulp-autoprefixer": "^4.1.0",
    "gulp-clean-css": "^3.9.2",
    "gulp-concat": "^2.6.1",
    "gulp-livereload": "^3.8.1",
    "gulp-sass": "^3.1.0",
    "gulp-sourcemaps": "^2.6.3",
    "jest": "^21.2.1",
    "mocha": "^3.5.3",
    "moxios": "^0.4.0",
    "rollup": "^0.50.0",
    "rollup-plugin-babel": "^3.0.2",
    "rollup-plugin-minify": "^1.0.3",
    "rollup-plugin-uglify": "^2.0.1",
    "sinon": "^4.0.0",
    "uglify-es": "^3.1.3",
    "webpack": "^3.6.0",
    "webpack-stream": "^3.2.0"
  },
  "jest": {
    "collectCoverage": true,
    "collectCoverageFrom": [
      "**/src/**/*.js"
    ],
    "coveragePathIgnorePatterns": [
      "/node_modules/",
      "/__tests__/"
    ],
    "verbose": true
  }
}
