package.json 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. {
  2. "name": "@babel/helper-create-class-features-plugin",
  3. "version": "7.25.9",
  4. "author": "The Babel Team (https://babel.dev/team)",
  5. "license": "MIT",
  6. "description": "Compile class public and private fields, private methods and decorators to ES6",
  7. "repository": {
  8. "type": "git",
  9. "url": "https://github.com/babel/babel.git",
  10. "directory": "packages/babel-helper-create-class-features-plugin"
  11. },
  12. "main": "./lib/index.js",
  13. "publishConfig": {
  14. "access": "public"
  15. },
  16. "keywords": [
  17. "babel",
  18. "babel-plugin"
  19. ],
  20. "dependencies": {
  21. "@babel/helper-annotate-as-pure": "^7.25.9",
  22. "@babel/helper-member-expression-to-functions": "^7.25.9",
  23. "@babel/helper-optimise-call-expression": "^7.25.9",
  24. "@babel/helper-replace-supers": "^7.25.9",
  25. "@babel/helper-skip-transparent-expression-wrappers": "^7.25.9",
  26. "@babel/traverse": "^7.25.9",
  27. "semver": "^6.3.1"
  28. },
  29. "peerDependencies": {
  30. "@babel/core": "^7.0.0"
  31. },
  32. "devDependencies": {
  33. "@babel/core": "^7.25.9",
  34. "@babel/helper-plugin-test-runner": "^7.25.9",
  35. "@babel/preset-env": "^7.25.9",
  36. "@types/charcodes": "^0.2.0",
  37. "charcodes": "^0.2.0"
  38. },
  39. "engines": {
  40. "node": ">=6.9.0"
  41. },
  42. "type": "commonjs"
  43. }