package.json 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101
  1. {
  2. "name": "eslint-plugin-jsx-a11y",
  3. "version": "6.5.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": "if [ ! -e ./.flowconfig ]; then echo \"Could not find .flowconfig\"; else flow; test $? -eq 0 -o $? -eq 2; fi",
  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. },
  33. "devDependencies": {
  34. "@babel/cli": "^7.16.0",
  35. "@babel/core": "^7.16.0",
  36. "@babel/eslint-parser": "^7.16.3",
  37. "@babel/plugin-transform-flow-strip-types": "^7.16.0",
  38. "aud": "^1.1.5",
  39. "babel-jest": "^24.9.0",
  40. "babel-plugin-add-module-exports": "^1.0.4",
  41. "babel-preset-airbnb": "^5.0.0",
  42. "eslint": "^3 || ^4 || ^5 || ^6 || ^7 || ^8",
  43. "eslint-config-airbnb-base": "^15.0.0",
  44. "eslint-plugin-eslint-plugin": "^4.0.2",
  45. "eslint-plugin-flowtype": "^5.8.0 || ^8.0.2",
  46. "eslint-plugin-import": "^2.25.3",
  47. "estraverse": "^5.3.0",
  48. "expect": "^24.9.0",
  49. "flow-bin": "^0.147.0",
  50. "in-publish": "^2.0.1",
  51. "jest": "^24.9.0",
  52. "jscodeshift": "^0.7.1",
  53. "minimist": "^1.2.5",
  54. "object.assign": "^4.1.2",
  55. "rimraf": "^3.0.2",
  56. "safe-publish-latest": "^2.0.0",
  57. "to-ast": "^1.0.0"
  58. },
  59. "engines": {
  60. "node": ">=4.0"
  61. },
  62. "license": "MIT",
  63. "dependencies": {
  64. "@babel/runtime": "^7.16.3",
  65. "aria-query": "^4.2.2",
  66. "array-includes": "^3.1.4",
  67. "ast-types-flow": "^0.0.7",
  68. "axe-core": "^4.3.5",
  69. "axobject-query": "^2.2.0",
  70. "damerau-levenshtein": "^1.0.7",
  71. "emoji-regex": "^9.2.2",
  72. "has": "^1.0.3",
  73. "jsx-ast-utils": "^3.2.1",
  74. "language-tags": "^1.0.5",
  75. "minimatch": "^3.0.4"
  76. },
  77. "peerDependencies": {
  78. "eslint": "^3 || ^4 || ^5 || ^6 || ^7 || ^8"
  79. },
  80. "jest": {
  81. "coverageReporters": [
  82. "lcov",
  83. "json",
  84. "html"
  85. ],
  86. "coverageDirectory": "coverage",
  87. "roots": [
  88. "__tests__"
  89. ],
  90. "testPathIgnorePatterns": [
  91. "__tests__/__util__/"
  92. ],
  93. "testEnvironment": "node"
  94. },
  95. "greenkeeper": {
  96. "ignore": [
  97. "jest",
  98. "babel-jest"
  99. ]
  100. }
  101. }