package.json 983 B

12345678910111213141516171819202122232425262728293031323334353637
  1. {
  2. "name": "@babel/generator",
  3. "version": "7.20.7",
  4. "description": "Turns an AST into code.",
  5. "author": "The Babel Team (https://babel.dev/team)",
  6. "license": "MIT",
  7. "publishConfig": {
  8. "access": "public"
  9. },
  10. "repository": {
  11. "type": "git",
  12. "url": "https://github.com/babel/babel.git",
  13. "directory": "packages/babel-generator"
  14. },
  15. "homepage": "https://babel.dev/docs/en/next/babel-generator",
  16. "bugs": "https://github.com/babel/babel/issues?utf8=%E2%9C%93&q=is%3Aissue+label%3A%22pkg%3A%20generator%22+is%3Aopen",
  17. "main": "./lib/index.js",
  18. "files": [
  19. "lib"
  20. ],
  21. "dependencies": {
  22. "@babel/types": "^7.20.7",
  23. "@jridgewell/gen-mapping": "^0.3.2",
  24. "jsesc": "^2.5.1"
  25. },
  26. "devDependencies": {
  27. "@babel/helper-fixtures": "^7.19.4",
  28. "@babel/parser": "^7.20.7",
  29. "@jridgewell/trace-mapping": "^0.3.8",
  30. "@types/jsesc": "^2.5.0",
  31. "charcodes": "^0.2.0"
  32. },
  33. "engines": {
  34. "node": ">=6.9.0"
  35. },
  36. "type": "commonjs"
  37. }