{
  "name": "eslint-plugin-jsx-a11y",
  "version": "2.2.3",
  "description": "A static analysis linter of jsx and their accessibility with screen readers.",
  "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 && cp -R src/util/attributes lib/util/attributes",
    "prepublish": "npm run lint && npm run test && npm run build",
    "coveralls": "cat ./reports/coverage/lcov.info | coveralls",
    "lint": "eslint  --config .eslintrc src tests",
    "lint:fix": "npm run lint -- --fix",
    "pretest": "npm run lint:fix",
    "test": "istanbul cover --dir reports/coverage node_modules/mocha/bin/_mocha tests/**/*.js -- --compilers js:babel-core/register --reporter dot"
  },
  "devDependencies": {
    "babel-cli": "^6.14.0",
    "babel-core": "^6.14.0",
    "babel-eslint": "^7.0.0",
    "babel-preset-es2015": "^6.14.0",
    "coveralls": "^2.11.8",
    "eslint": "^3.0.0",
    "eslint-config-airbnb-base": "^8.0.0",
    "eslint-plugin-import": "^1.16.0",
    "istanbul": "^1.0.0-alpha.2",
    "mocha": "^3.0.0",
    "rimraf": "^2.5.2"
  },
  "engines": {
    "node": ">=4.0"
  },
  "license": "MIT",
  "dependencies": {
    "damerau-levenshtein": "^1.0.0",
    "jsx-ast-utils": "^1.0.0",
    "object-assign": "^4.0.1"
  },
  "peerDependencies": {
    "eslint": "^2.10.2 || 3.x"
  }
}
