package.json 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103
  1. {
  2. "_from": "jsx-ast-utils@^3.1.0",
  3. "_id": "jsx-ast-utils@3.2.0",
  4. "_inBundle": false,
  5. "_integrity": "sha512-EIsmt3O3ljsU6sot/J4E1zDRxfBNrhjyf/OKjlydwgEimQuznlM4Wv7U+ueONJMyEn1WRE0K8dhi3dVAXYT24Q==",
  6. "_location": "/jsx-ast-utils",
  7. "_phantomChildren": {},
  8. "_requested": {
  9. "type": "range",
  10. "registry": true,
  11. "raw": "jsx-ast-utils@^3.1.0",
  12. "name": "jsx-ast-utils",
  13. "escapedName": "jsx-ast-utils",
  14. "rawSpec": "^3.1.0",
  15. "saveSpec": null,
  16. "fetchSpec": "^3.1.0"
  17. },
  18. "_requiredBy": [
  19. "/eslint-plugin-jsx-a11y",
  20. "/eslint-plugin-react"
  21. ],
  22. "_resolved": "https://registry.npmjs.org/jsx-ast-utils/-/jsx-ast-utils-3.2.0.tgz",
  23. "_shasum": "41108d2cec408c3453c1bbe8a4aae9e1e2bd8f82",
  24. "_spec": "jsx-ast-utils@^3.1.0",
  25. "_where": "C:\\Users\\rickh\\Desktop\\js-hw-1\\hw1\\node_modules\\eslint-plugin-jsx-a11y",
  26. "author": {
  27. "name": "Ethan Cohen"
  28. },
  29. "bugs": {
  30. "url": "https://github.com/evcohen/jsx-ast-utils/issues"
  31. },
  32. "bundleDependencies": false,
  33. "dependencies": {
  34. "array-includes": "^3.1.2",
  35. "object.assign": "^4.1.2"
  36. },
  37. "deprecated": false,
  38. "description": "AST utility module for statically analyzing JSX",
  39. "devDependencies": {
  40. "@babel/core": "^7.12.10",
  41. "@babel/parser": "^7.12.11",
  42. "babel-cli": "^6.26.0",
  43. "babel-core": "^6.26.3",
  44. "babel-eslint": "^10.1.0",
  45. "babel-jest": "^20.0.3",
  46. "babel-plugin-transform-object-rest-spread": "^6.26.0",
  47. "babel-plugin-transform-replace-object-assign": "^1.0.0",
  48. "babel-polyfill": "^6.26.0",
  49. "babel-preset-env": "^1.7.0",
  50. "babylon": "^6.18.0",
  51. "coveralls": "^3.1.0",
  52. "eslint": "^7.15.0",
  53. "eslint-config-airbnb-base": "^14.2.1",
  54. "eslint-plugin-import": "^2.22.1",
  55. "flow-parser": "^0.126.1",
  56. "in-publish": "^2.0.1",
  57. "jest": "^20.0.4",
  58. "jest-cli": "^20.0.4",
  59. "object.entries": "^1.1.3",
  60. "object.fromentries": "^2.0.3",
  61. "rimraf": "^2.7.1",
  62. "safe-publish-latest": "^1.1.4"
  63. },
  64. "engines": {
  65. "node": ">=4.0"
  66. },
  67. "homepage": "https://github.com/evcohen/jsx-ast-utils#readme",
  68. "jest": {
  69. "coverageReporters": [
  70. "lcov"
  71. ],
  72. "coverageDirectory": "reports",
  73. "testPathIgnorePatterns": [
  74. "/node_modules/",
  75. "helper.js"
  76. ]
  77. },
  78. "keywords": [
  79. "jsx",
  80. "ast",
  81. "lint",
  82. "eslint"
  83. ],
  84. "license": "MIT",
  85. "main": "lib/index.js",
  86. "name": "jsx-ast-utils",
  87. "repository": {
  88. "type": "git",
  89. "url": "git+https://github.com/evcohen/jsx-ast-utils.git"
  90. },
  91. "scripts": {
  92. "build": "babel src --out-dir lib",
  93. "coveralls": "cat ./reports/lcov.info | coveralls",
  94. "lint": "eslint .",
  95. "prebuild": "rimraf lib",
  96. "prepublish": "not-in-publish || (safe-publish-latest && npm test && npm run build)",
  97. "pretest": "npm run lint",
  98. "test": "npm run tests-only --",
  99. "test:watch": "npm run tests-only -- --watch",
  100. "tests-only": "jest --coverage"
  101. },
  102. "version": "3.2.0"
  103. }