package.json 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. {
  2. "name": "@babel/helper-create-class-features-plugin",
  3. "version": "7.23.10",
  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.22.5",
  22. "@babel/helper-environment-visitor": "^7.22.20",
  23. "@babel/helper-function-name": "^7.23.0",
  24. "@babel/helper-member-expression-to-functions": "^7.23.0",
  25. "@babel/helper-optimise-call-expression": "^7.22.5",
  26. "@babel/helper-replace-supers": "^7.22.20",
  27. "@babel/helper-skip-transparent-expression-wrappers": "^7.22.5",
  28. "@babel/helper-split-export-declaration": "^7.22.6",
  29. "semver": "^6.3.1"
  30. },
  31. "peerDependencies": {
  32. "@babel/core": "^7.0.0"
  33. },
  34. "devDependencies": {
  35. "@babel/core": "^7.23.9",
  36. "@babel/helper-plugin-test-runner": "^7.22.5",
  37. "@babel/preset-env": "^7.23.9",
  38. "@types/charcodes": "^0.2.0",
  39. "charcodes": "^0.2.0"
  40. },
  41. "engines": {
  42. "node": ">=6.9.0"
  43. },
  44. "type": "commonjs"
  45. }