{
  "name": "@axe-core/cli",
  "version": "4.11.1",
  "description": "A CLI for accessibility testing using axe-core",
  "author": {
    "name": "Wilco Fiers",
    "organization": "Deque Systems, Inc.",
    "url": "http://github.com/wilcofiers/"
  },
  "contributors": [
    {
      "name": "Michael Siek (me@michaelsiek.com)"
    }
  ],
  "repository": {
    "type": "git",
    "url": "https://github.com/dequelabs/axe-core-npm.git"
  },
  "license": "MPL-2.0",
  "files": [
    "dist",
    "postinstall.js"
  ],
  "main": "dist/src/lib/index.js",
  "typings": "dist/src/types.d.ts",
  "bin": {
    "axe": "./dist/src/bin/cli.js"
  },
  "publishConfig": {
    "access": "public"
  },
  "engines": {
    "node": ">=8"
  },
  "scripts": {
    "prebuild": "rimraf dist",
    "build": "tsc",
    "test": "mocha --timeout 60000 -r ts-node/register 'src/**/**.test.ts'",
    "coverage": "nyc npm run test"
  },
  "keywords": [
    "axe-core",
    "accessibility",
    "a11y",
    "wcag",
    "cli",
    "testing"
  ],
  "dependencies": {
    "@axe-core/webdriverjs": "^4.11.1",
    "axe-core": "~4.11.1",
    "chromedriver": "latest",
    "colors": "^1.4.0",
    "commander": "^9.4.1",
    "dotenv": "^17.2.2",
    "selenium-webdriver": "~4.39.0"
  },
  "devDependencies": {
    "@types/chai": "^4.3.3",
    "@types/chromedriver": "^81.0.1",
    "@types/mocha": "^10.0.0",
    "@types/selenium-webdriver": "^4.1.5",
    "@types/sinon": "^21.0.0",
    "chai": "^4.3.6",
    "execa": "5.1.1",
    "mocha": "^11.7.1",
    "nyc": "^17.1.0",
    "rimraf": "^6.0.1",
    "sinon": "^21.0.0",
    "tempy": "^1.0.0",
    "ts-node": "^10.9.1",
    "typescript": "^5.2.2"
  },
  "nyc": {
    "checkCoverage": true,
    "extension": [
      ".ts"
    ],
    "reporter": [
      "text-summary",
      "html"
    ],
    "statements": 95,
    "branches": 91,
    "functions": 94,
    "lines": 95,
    "exclude": [
      "dist",
      "coverage",
      "**/*.test.ts",
      "src/testutils"
    ]
  },
  "gitHead": "66a3106a704e1d446f23cb151f96363425f42d02"
}
