123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101 |
- {
- "name": "eslint-plugin-jsx-a11y",
- "version": "6.5.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/jsx-eslint/eslint-plugin-jsx-a11y"
- },
- "main": "lib/index.js",
- "scripts": {
- "build": "rimraf lib && babel src --out-dir lib --copy-files",
- "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 .",
- "prepublish": "not-in-publish || npm run prepublishOnly",
- "prepublishOnly": "safe-publish-latest && npm run lint && npm run flow && npm run jest && npm run build",
- "pretest": "npm run lint:fix && npm run flow",
- "test": "npm run jest",
- "posttest": "aud --production",
- "test:ci": "npm run jest -- --ci --runInBand",
- "jest": "jest --coverage __tests__/**/*"
- },
- "devDependencies": {
- "@babel/cli": "^7.16.0",
- "@babel/core": "^7.16.0",
- "@babel/eslint-parser": "^7.16.3",
- "@babel/plugin-transform-flow-strip-types": "^7.16.0",
- "aud": "^1.1.5",
- "babel-jest": "^24.9.0",
- "babel-plugin-add-module-exports": "^1.0.4",
- "babel-preset-airbnb": "^5.0.0",
- "eslint": "^3 || ^4 || ^5 || ^6 || ^7 || ^8",
- "eslint-config-airbnb-base": "^15.0.0",
- "eslint-plugin-eslint-plugin": "^4.0.2",
- "eslint-plugin-flowtype": "^5.8.0 || ^8.0.2",
- "eslint-plugin-import": "^2.25.3",
- "estraverse": "^5.3.0",
- "expect": "^24.9.0",
- "flow-bin": "^0.147.0",
- "in-publish": "^2.0.1",
- "jest": "^24.9.0",
- "jscodeshift": "^0.7.1",
- "minimist": "^1.2.5",
- "object.assign": "^4.1.2",
- "rimraf": "^3.0.2",
- "safe-publish-latest": "^2.0.0",
- "to-ast": "^1.0.0"
- },
- "engines": {
- "node": ">=4.0"
- },
- "license": "MIT",
- "dependencies": {
- "@babel/runtime": "^7.16.3",
- "aria-query": "^4.2.2",
- "array-includes": "^3.1.4",
- "ast-types-flow": "^0.0.7",
- "axe-core": "^4.3.5",
- "axobject-query": "^2.2.0",
- "damerau-levenshtein": "^1.0.7",
- "emoji-regex": "^9.2.2",
- "has": "^1.0.3",
- "jsx-ast-utils": "^3.2.1",
- "language-tags": "^1.0.5",
- "minimatch": "^3.0.4"
- },
- "peerDependencies": {
- "eslint": "^3 || ^4 || ^5 || ^6 || ^7 || ^8"
- },
- "jest": {
- "coverageReporters": [
- "lcov",
- "json",
- "html"
- ],
- "coverageDirectory": "coverage",
- "roots": [
- "__tests__"
- ],
- "testPathIgnorePatterns": [
- "__tests__/__util__/"
- ],
- "testEnvironment": "node"
- },
- "greenkeeper": {
- "ignore": [
- "jest",
- "babel-jest"
- ]
- }
- }
|