package.json 822 B

123456789101112131415161718192021222324252627282930313233
  1. {
  2. "name": "@babel/plugin-transform-object-assign",
  3. "version": "7.18.6",
  4. "description": "Replace Object.assign with an inline helper",
  5. "repository": {
  6. "type": "git",
  7. "url": "https://github.com/babel/babel.git",
  8. "directory": "packages/babel-plugin-transform-object-assign"
  9. },
  10. "homepage": "https://babel.dev/docs/en/next/babel-plugin-transform-object-assign",
  11. "author": "The Babel Team (https://babel.dev/team)",
  12. "license": "MIT",
  13. "publishConfig": {
  14. "access": "public"
  15. },
  16. "main": "./lib/index.js",
  17. "keywords": [
  18. "babel-plugin"
  19. ],
  20. "dependencies": {
  21. "@babel/helper-plugin-utils": "^7.18.6"
  22. },
  23. "peerDependencies": {
  24. "@babel/core": "^7.0.0-0"
  25. },
  26. "devDependencies": {
  27. "@babel/core": "^7.18.6"
  28. },
  29. "engines": {
  30. "node": ">=6.9.0"
  31. },
  32. "type": "commonjs"
  33. }