package.json 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127
  1. {
  2. "_from": "eslint-plugin-jsx-a11y@^6.3.1",
  3. "_id": "eslint-plugin-jsx-a11y@6.4.1",
  4. "_inBundle": false,
  5. "_integrity": "sha512-0rGPJBbwHoGNPU73/QCLP/vveMlM1b1Z9PponxO87jfr6tuH5ligXbDT6nHSSzBC8ovX2Z+BQu7Bk5D/Xgq9zg==",
  6. "_location": "/eslint-plugin-jsx-a11y",
  7. "_phantomChildren": {},
  8. "_requested": {
  9. "type": "range",
  10. "registry": true,
  11. "raw": "eslint-plugin-jsx-a11y@^6.3.1",
  12. "name": "eslint-plugin-jsx-a11y",
  13. "escapedName": "eslint-plugin-jsx-a11y",
  14. "rawSpec": "^6.3.1",
  15. "saveSpec": null,
  16. "fetchSpec": "^6.3.1"
  17. },
  18. "_requiredBy": [
  19. "/react-scripts"
  20. ],
  21. "_resolved": "https://registry.npmjs.org/eslint-plugin-jsx-a11y/-/eslint-plugin-jsx-a11y-6.4.1.tgz",
  22. "_shasum": "a2d84caa49756942f42f1ffab9002436391718fd",
  23. "_spec": "eslint-plugin-jsx-a11y@^6.3.1",
  24. "_where": "C:\\Users\\rickh\\Desktop\\js-hw-1\\hw1\\node_modules\\react-scripts",
  25. "author": {
  26. "name": "Ethan Cohen"
  27. },
  28. "bugs": {
  29. "url": "https://github.com/evcohen/eslint-plugin-jsx-a11y/issues"
  30. },
  31. "bundleDependencies": false,
  32. "dependencies": {
  33. "@babel/runtime": "^7.11.2",
  34. "aria-query": "^4.2.2",
  35. "array-includes": "^3.1.1",
  36. "ast-types-flow": "^0.0.7",
  37. "axe-core": "^4.0.2",
  38. "axobject-query": "^2.2.0",
  39. "damerau-levenshtein": "^1.0.6",
  40. "emoji-regex": "^9.0.0",
  41. "has": "^1.0.3",
  42. "jsx-ast-utils": "^3.1.0",
  43. "language-tags": "^1.0.5"
  44. },
  45. "deprecated": false,
  46. "description": "Static AST checker for accessibility rules on JSX elements.",
  47. "devDependencies": {
  48. "@babel/cli": "^7.11.6",
  49. "@babel/core": "^7.11.6",
  50. "@babel/plugin-transform-flow-strip-types": "^7.10.4",
  51. "babel-eslint": "^10.1.0",
  52. "babel-jest": "^24.9.0",
  53. "babel-preset-airbnb": "^5.0.0",
  54. "coveralls": "^3.1.0",
  55. "eslint": "^3 || ^4 || ^5 || ^6 || ^7",
  56. "eslint-config-airbnb-base": "^14.2.0",
  57. "eslint-plugin-flowtype": "^5.2.0",
  58. "eslint-plugin-import": "^2.22.1",
  59. "estraverse": "^5.2.0",
  60. "expect": "^24.9.0",
  61. "flow-bin": "^0.113.0",
  62. "in-publish": "^2.0.1",
  63. "jest": "^24.9.0",
  64. "jscodeshift": "^0.7.0",
  65. "minimist": "^1.2.5",
  66. "object.assign": "^4.1.1",
  67. "rimraf": "^3.0.2",
  68. "safe-publish-latest": "^1.1.4",
  69. "to-ast": "^1.0.0"
  70. },
  71. "engines": {
  72. "node": ">=4.0"
  73. },
  74. "greenkeeper": {
  75. "ignore": [
  76. "jest",
  77. "babel-jest"
  78. ]
  79. },
  80. "homepage": "https://github.com/evcohen/eslint-plugin-jsx-a11y#readme",
  81. "jest": {
  82. "coverageReporters": [
  83. "lcov",
  84. "html"
  85. ],
  86. "coverageDirectory": "reports",
  87. "roots": [
  88. "__tests__"
  89. ],
  90. "testPathIgnorePatterns": [
  91. "__tests__/__util__/"
  92. ],
  93. "testEnvironment": "node"
  94. },
  95. "keywords": [
  96. "eslint",
  97. "eslintplugin",
  98. "eslint-plugin",
  99. "a11y",
  100. "accessibility",
  101. "jsx"
  102. ],
  103. "license": "MIT",
  104. "main": "lib/index.js",
  105. "name": "eslint-plugin-jsx-a11y",
  106. "peerDependencies": {
  107. "eslint": "^3 || ^4 || ^5 || ^6 || ^7"
  108. },
  109. "repository": {
  110. "type": "git",
  111. "url": "git+https://github.com/evcohen/eslint-plugin-jsx-a11y.git"
  112. },
  113. "scripts": {
  114. "build": "rimraf lib && babel src --out-dir lib --copy-files",
  115. "coveralls": "cat ./reports/lcov.info | coveralls",
  116. "create": "node ./scripts/create-rule",
  117. "flow": "if [ ! -e ./.flowconfig ]; then echo \"Could not find .flowconfig\"; else flow; test $? -eq 0 -o $? -eq 2; fi",
  118. "jest": "jest --coverage __tests__/**/*",
  119. "lint": "eslint --config .eslintrc src __tests__ __mocks__ scripts",
  120. "lint:fix": "npm run lint -- --fix",
  121. "prepublish": "safe-publish-latest && not-in-publish || (npm run lint && npm run flow && npm run jest && npm run build)",
  122. "pretest": "npm run lint:fix && npm run flow",
  123. "test": "npm run jest",
  124. "test:ci": "npm run jest -- --ci --runInBand"
  125. },
  126. "version": "6.4.1"
  127. }