package.json 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. {
  2. "name": "@babel/cli",
  3. "version": "7.17.6",
  4. "description": "Babel command line.",
  5. "author": "The Babel Team (https://babel.dev/team)",
  6. "homepage": "https://babel.dev/docs/en/next/babel-cli",
  7. "bugs": "https://github.com/babel/babel/issues?utf8=%E2%9C%93&q=is%3Aissue+label%3A%22pkg%3A%20cli%22+is%3Aopen",
  8. "license": "MIT",
  9. "publishConfig": {
  10. "access": "public"
  11. },
  12. "repository": {
  13. "type": "git",
  14. "url": "https://github.com/babel/babel.git",
  15. "directory": "packages/babel-cli"
  16. },
  17. "keywords": [
  18. "6to5",
  19. "babel",
  20. "es6",
  21. "transpile",
  22. "transpiler",
  23. "babel-cli",
  24. "compiler"
  25. ],
  26. "dependencies": {
  27. "@jridgewell/trace-mapping": "^0.3.4",
  28. "commander": "^4.0.1",
  29. "convert-source-map": "^1.1.0",
  30. "fs-readdir-recursive": "^1.1.0",
  31. "glob": "^7.0.0",
  32. "make-dir": "^2.1.0",
  33. "slash": "^2.0.0",
  34. "source-map": "^0.5.0"
  35. },
  36. "optionalDependencies": {
  37. "@nicolo-ribaudo/chokidar-2": "2.1.8-no-fsevents.3",
  38. "chokidar": "^3.4.0"
  39. },
  40. "peerDependencies": {
  41. "@babel/core": "^7.0.0-0"
  42. },
  43. "devDependencies": {
  44. "@babel/core": "^7.17.5",
  45. "@babel/helper-fixtures": "^7.17.0",
  46. "rimraf": "^3.0.0"
  47. },
  48. "bin": {
  49. "babel": "./bin/babel.js",
  50. "babel-external-helpers": "./bin/babel-external-helpers.js"
  51. },
  52. "engines": {
  53. "node": ">=6.9.0"
  54. }
  55. }