package.json 720 B

12345678910111213141516171819202122232425262728
  1. {
  2. "name": "@babel/helpers",
  3. "version": "7.16.3",
  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.16.0",
  19. "@babel/traverse": "^7.16.3",
  20. "@babel/types": "^7.16.0"
  21. },
  22. "devDependencies": {
  23. "@babel/helper-plugin-test-runner": "^7.16.0"
  24. },
  25. "engines": {
  26. "node": ">=6.9.0"
  27. }
  28. }