package.json 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. {
  2. "name": "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression",
  3. "version": "7.16.2",
  4. "description": "Rename destructuring parameter to workaround https://bugs.webkit.org/show_bug.cgi?id=220517",
  5. "repository": {
  6. "type": "git",
  7. "url": "https://github.com/babel/babel.git",
  8. "directory": "packages/babel-plugin-bugfix-safari-id-destructuring-collision-in-function-expression"
  9. },
  10. "homepage": "https://babel.dev/docs/en/next/babel-plugin-bugfix-safari-id-destructuring-collision-in-function-expression",
  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. },
  28. "peerDependencies": {
  29. "@babel/core": "^7.0.0"
  30. },
  31. "devDependencies": {
  32. "@babel/core": "^7.16.0",
  33. "@babel/helper-function-name": "^7.16.0",
  34. "@babel/helper-plugin-test-runner": "^7.16.0",
  35. "@babel/traverse": "^7.16.0"
  36. },
  37. "engines": {
  38. "node": ">=6.9.0"
  39. },
  40. "author": "The Babel Team (https://babel.dev/team)"
  41. }