package.json 1.2 KB

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