package.json 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. {
  2. "name": "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining",
  3. "version": "7.18.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. ".": "./lib/index.js",
  18. "./package.json": "./package.json"
  19. },
  20. "keywords": [
  21. "babel-plugin",
  22. "bugfix"
  23. ],
  24. "dependencies": {
  25. "@babel/helper-plugin-utils": "^7.18.9",
  26. "@babel/helper-skip-transparent-expression-wrappers": "^7.18.9",
  27. "@babel/plugin-proposal-optional-chaining": "^7.18.9"
  28. },
  29. "peerDependencies": {
  30. "@babel/core": "^7.13.0"
  31. },
  32. "devDependencies": {
  33. "@babel/core": "^7.18.9",
  34. "@babel/helper-plugin-test-runner": "^7.18.6",
  35. "@babel/traverse": "^7.18.9"
  36. },
  37. "engines": {
  38. "node": ">=6.9.0"
  39. },
  40. "author": "The Babel Team (https://babel.dev/team)",
  41. "type": "commonjs"
  42. }