package.json 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108
  1. {
  2. "name": "eslint-plugin-jsx-a11y",
  3. "version": "6.6.1",
  4. "description": "Static AST checker for accessibility rules on JSX elements.",
  5. "keywords": [
  6. "eslint",
  7. "eslintplugin",
  8. "eslint-plugin",
  9. "a11y",
  10. "accessibility",
  11. "jsx"
  12. ],
  13. "author": "Ethan Cohen",
  14. "repository": {
  15. "type": "git",
  16. "url": "https://github.com/jsx-eslint/eslint-plugin-jsx-a11y"
  17. },
  18. "main": "lib/index.js",
  19. "scripts": {
  20. "build": "rimraf lib && babel src --out-dir lib --copy-files",
  21. "create": "node ./scripts/create-rule",
  22. "flow": "flow",
  23. "lint:fix": "npm run lint -- --fix",
  24. "lint": "eslint .",
  25. "prepublish": "not-in-publish || npm run prepublishOnly",
  26. "prepublishOnly": "safe-publish-latest && npm run lint && npm run flow && npm run jest && npm run build",
  27. "pretest": "npm run lint:fix && npm run flow",
  28. "test": "npm run jest",
  29. "posttest": "aud --production",
  30. "test:ci": "npm run jest -- --ci --runInBand",
  31. "jest": "jest --coverage __tests__/**/*",
  32. "generate-list-of-rules": "md-magic --path '**/*.md' --ignore 'node_modules'",
  33. "generate-list-of-rules:check": "npm run generate-list-of-rules && git diff --exit-code README.md"
  34. },
  35. "devDependencies": {
  36. "@babel/cli": "^7.18.9",
  37. "@babel/core": "^7.18.9",
  38. "@babel/eslint-parser": "^7.18.9",
  39. "@babel/plugin-transform-flow-strip-types": "^7.18.9",
  40. "@babel/register": "^7.18.9",
  41. "@technote-space/doctoc": "~2.4",
  42. "ast-types-flow": "^0.0.7",
  43. "aud": "^2.0.0",
  44. "babel-jest": "^24.9.0",
  45. "babel-plugin-add-module-exports": "^1.0.4",
  46. "babel-preset-airbnb": "^5.0.0",
  47. "eslint": "^3 || ^4 || ^5 || ^6 || ^7 || ^8",
  48. "eslint-config-airbnb-base": "^15.0.0",
  49. "eslint-plugin-eslint-plugin": "^4.3.0",
  50. "eslint-plugin-flowtype": "^5.8.0 || ^8.0.3",
  51. "eslint-plugin-import": "^2.26.0",
  52. "estraverse": "^5.3.0",
  53. "expect": "^24.9.0",
  54. "flow-bin": "^0.147.0",
  55. "in-publish": "^2.0.1",
  56. "jest": "^24.9.0",
  57. "jscodeshift": "^0.7.1",
  58. "markdown-magic": "^2.6.0",
  59. "minimist": "^1.2.6",
  60. "object.assign": "^4.1.2",
  61. "rimraf": "^3.0.2",
  62. "safe-publish-latest": "^2.0.0",
  63. "to-ast": "^1.0.0"
  64. },
  65. "engines": {
  66. "node": ">=4.0"
  67. },
  68. "license": "MIT",
  69. "dependencies": {
  70. "@babel/runtime": "^7.18.9",
  71. "aria-query": "^4.2.2",
  72. "array-includes": "^3.1.5",
  73. "ast-types-flow": "^0.0.7",
  74. "axe-core": "^4.4.3",
  75. "axobject-query": "^2.2.0",
  76. "damerau-levenshtein": "^1.0.8",
  77. "emoji-regex": "^9.2.2",
  78. "has": "^1.0.3",
  79. "jsx-ast-utils": "^3.3.2",
  80. "language-tags": "^1.0.5",
  81. "minimatch": "^3.1.2",
  82. "semver": "^6.3.0"
  83. },
  84. "peerDependencies": {
  85. "eslint": "^3 || ^4 || ^5 || ^6 || ^7 || ^8"
  86. },
  87. "jest": {
  88. "coverageReporters": [
  89. "lcov",
  90. "json",
  91. "html"
  92. ],
  93. "coverageDirectory": "coverage",
  94. "roots": [
  95. "__tests__"
  96. ],
  97. "testPathIgnorePatterns": [
  98. "__tests__/__util__/"
  99. ],
  100. "testEnvironment": "node"
  101. },
  102. "greenkeeper": {
  103. "ignore": [
  104. "jest",
  105. "babel-jest"
  106. ]
  107. }
  108. }