package.json 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. {
  2. "name": "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining",
  3. "version": "7.25.9",
  4. "description": "Transform optional chaining operators to workaround https://crbug.com/v8/11558",
  5. "repository": {
  6. "type": "git",
  7. "url": "https://github.com/babel/babel.git",
  8. "directory": "packages/babel-plugin-bugfix-v8-spread-parameters-in-optional-chaining"
  9. },
  10. "homepage": "https://babel.dev/docs/en/next/babel-plugin-bugfix-v8-spread-parameters-in-optional-chaining",
  11. "license": "MIT",
  12. "publishConfig": {
  13. "access": "public"
  14. },
  15. "main": "./lib/index.js",
  16. "exports": {
  17. ".": {
  18. "types": "./lib/index.d.ts",
  19. "default": "./lib/index.js"
  20. },
  21. "./package.json": "./package.json"
  22. },
  23. "keywords": [
  24. "babel-plugin",
  25. "bugfix"
  26. ],
  27. "dependencies": {
  28. "@babel/helper-plugin-utils": "^7.25.9",
  29. "@babel/helper-skip-transparent-expression-wrappers": "^7.25.9",
  30. "@babel/plugin-transform-optional-chaining": "^7.25.9"
  31. },
  32. "peerDependencies": {
  33. "@babel/core": "^7.13.0"
  34. },
  35. "devDependencies": {
  36. "@babel/core": "^7.25.9",
  37. "@babel/helper-plugin-test-runner": "^7.25.9",
  38. "@babel/traverse": "^7.25.9"
  39. },
  40. "engines": {
  41. "node": ">=6.9.0"
  42. },
  43. "author": "The Babel Team (https://babel.dev/team)",
  44. "type": "commonjs"
  45. }