package.json 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. {
  2. "name": "@babel/plugin-transform-classes",
  3. "version": "7.20.2",
  4. "description": "Compile ES2015 classes to ES5",
  5. "repository": {
  6. "type": "git",
  7. "url": "https://github.com/babel/babel.git",
  8. "directory": "packages/babel-plugin-transform-classes"
  9. },
  10. "homepage": "https://babel.dev/docs/en/next/babel-plugin-transform-classes",
  11. "license": "MIT",
  12. "publishConfig": {
  13. "access": "public"
  14. },
  15. "main": "./lib/index.js",
  16. "dependencies": {
  17. "@babel/helper-annotate-as-pure": "^7.18.6",
  18. "@babel/helper-compilation-targets": "^7.20.0",
  19. "@babel/helper-environment-visitor": "^7.18.9",
  20. "@babel/helper-function-name": "^7.19.0",
  21. "@babel/helper-optimise-call-expression": "^7.18.6",
  22. "@babel/helper-plugin-utils": "^7.20.2",
  23. "@babel/helper-replace-supers": "^7.19.1",
  24. "@babel/helper-split-export-declaration": "^7.18.6",
  25. "globals": "^11.1.0"
  26. },
  27. "keywords": [
  28. "babel-plugin"
  29. ],
  30. "peerDependencies": {
  31. "@babel/core": "^7.0.0-0"
  32. },
  33. "devDependencies": {
  34. "@babel/core": "^7.20.2",
  35. "@babel/helper-plugin-test-runner": "^7.18.6",
  36. "@babel/traverse": "^7.20.1"
  37. },
  38. "engines": {
  39. "node": ">=6.9.0"
  40. },
  41. "author": "The Babel Team (https://babel.dev/team)",
  42. "type": "commonjs"
  43. }