package.json 813 B

12345678910111213141516171819202122232425262728293031
  1. {
  2. "name": "@babel/helpers",
  3. "version": "7.24.7",
  4. "description": "Collection of helper functions used by Babel transforms.",
  5. "author": "The Babel Team (https://babel.dev/team)",
  6. "homepage": "https://babel.dev/docs/en/next/babel-helpers",
  7. "license": "MIT",
  8. "publishConfig": {
  9. "access": "public"
  10. },
  11. "repository": {
  12. "type": "git",
  13. "url": "https://github.com/babel/babel.git",
  14. "directory": "packages/babel-helpers"
  15. },
  16. "main": "./lib/index.js",
  17. "dependencies": {
  18. "@babel/template": "^7.24.7",
  19. "@babel/types": "^7.24.7"
  20. },
  21. "devDependencies": {
  22. "@babel/generator": "^7.24.7",
  23. "@babel/helper-plugin-test-runner": "^7.24.7",
  24. "@babel/parser": "^7.24.7",
  25. "regenerator-runtime": "^0.14.0"
  26. },
  27. "engines": {
  28. "node": ">=6.9.0"
  29. },
  30. "type": "commonjs"
  31. }