{
  "name": "eslint-plugin-jsx-a11y",
  "version": "5.1.1",
  "description": "Static AST checker for accessibility rules on JSX elements.",
  "keywords": [
    "eslint",
    "eslintplugin",
    "eslint-plugin",
    "a11y",
    "accessibility",
    "jsx"
  ],
  "author": "Ethan Cohen",
  "repository": {
    "type": "git",
    "url": "https://github.com/evcohen/eslint-plugin-jsx-a11y"
  },
  "main": "lib/index.js",
  "scripts": {
    "build": "rimraf lib && babel src --out-dir lib --copy-files",
    "coveralls": "cat ./reports/lcov.info | coveralls",
    "create": "node ./scripts/create-rule",
    "flow": "if [ ! -e ./.flowconfig ]; then echo \"Could not find .flowconfig\"; else flow; test $? -eq 0 -o $? -eq 2; fi",
    "lint:fix": "npm run lint -- --fix",
    "lint": "eslint  --config .eslintrc src __tests__ __mocks__ scripts",
    "prepublish": "safe-publish-latest && npm run lint && npm run flow && npm run test && npm run build",
    "pretest": "npm run lint:fix && npm run flow",
    "test:ci": "npm test -- --ci --runInBand",
    "test": "jest --coverage __tests__/**/*"
  },
  "devDependencies": {
    "babel-cli": "^6.24.1",
    "babel-core": "^6.25.0",
    "babel-eslint": "^7.2.3",
    "babel-jest": "^20.0.3",
    "babel-plugin-transform-es2015-template-literals": "^6.22.0",
    "babel-plugin-transform-flow-strip-types": "^6.22.0",
    "babel-plugin-transform-object-rest-spread": "^6.23.0",
    "babel-polyfill": "^6.23.0",
    "babel-preset-es2015": "^6.24.1",
    "coveralls": "^2.13.1",
    "eslint": "^3.19.0",
    "eslint-config-airbnb-base": "^11.2.0",
    "eslint-plugin-flowtype": "^2.34.0",
    "eslint-plugin-import": "^2.3.0",
    "expect": "^1.20.2",
    "flow-bin": "^0.47.0",
    "jest": "^20.0.4",
    "jscodeshift": "^0.3.30",
    "minimist": "^1.2.0",
    "rimraf": "^2.6.1",
    "safe-publish-latest": "^1.1.1",
    "to-ast": "^1.0.0"
  },
  "engines": {
    "node": ">=4.0"
  },
  "license": "MIT",
  "dependencies": {
    "aria-query": "^0.7.0",
    "array-includes": "^3.0.3",
    "ast-types-flow": "0.0.7",
    "axobject-query": "^0.1.0",
    "damerau-levenshtein": "^1.0.0",
    "emoji-regex": "^6.1.0",
    "jsx-ast-utils": "^1.4.0"
  },
  "peerDependencies": {
    "eslint": "^2.10.2 || ^3 || ^4"
  },
  "jest": {
    "coverageReporters": [
      "lcov"
    ],
    "coverageDirectory": "reports",
    "roots": [
      "<rootDir>/__tests__"
    ],
    "testPathIgnorePatterns": [
      "<rootDir>/__tests__/__util__"
    ]
  }
}
