package.json 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. {
  2. "name": "@babel/helper-create-class-features-plugin",
  3. "version": "7.18.6",
  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.18.6",
  22. "@babel/helper-environment-visitor": "^7.18.6",
  23. "@babel/helper-function-name": "^7.18.6",
  24. "@babel/helper-member-expression-to-functions": "^7.18.6",
  25. "@babel/helper-optimise-call-expression": "^7.18.6",
  26. "@babel/helper-replace-supers": "^7.18.6",
  27. "@babel/helper-split-export-declaration": "^7.18.6"
  28. },
  29. "peerDependencies": {
  30. "@babel/core": "^7.0.0"
  31. },
  32. "devDependencies": {
  33. "@babel/core": "^7.18.6",
  34. "@babel/helper-plugin-test-runner": "^7.18.6",
  35. "@babel/plugin-syntax-class-static-block": "^7.14.5",
  36. "@babel/preset-env": "^7.18.6"
  37. },
  38. "engines": {
  39. "node": ">=6.9.0"
  40. },
  41. "type": "commonjs"
  42. }