package.json 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. {
  2. "name": "@babel/plugin-proposal-decorators",
  3. "version": "7.23.2",
  4. "author": "The Babel Team (https://babel.dev/team)",
  5. "license": "MIT",
  6. "publishConfig": {
  7. "access": "public"
  8. },
  9. "description": "Compile class and object decorators to ES5",
  10. "repository": {
  11. "type": "git",
  12. "url": "https://github.com/babel/babel.git",
  13. "directory": "packages/babel-plugin-proposal-decorators"
  14. },
  15. "homepage": "https://babel.dev/docs/en/next/babel-plugin-proposal-decorators",
  16. "main": "./lib/index.js",
  17. "keywords": [
  18. "babel",
  19. "babel-plugin",
  20. "decorators"
  21. ],
  22. "dependencies": {
  23. "@babel/helper-create-class-features-plugin": "^7.22.15",
  24. "@babel/helper-plugin-utils": "^7.22.5",
  25. "@babel/helper-replace-supers": "^7.22.20",
  26. "@babel/helper-split-export-declaration": "^7.22.6",
  27. "@babel/plugin-syntax-decorators": "^7.22.10"
  28. },
  29. "peerDependencies": {
  30. "@babel/core": "^7.0.0-0"
  31. },
  32. "devDependencies": {
  33. "@babel/core": "^7.23.0",
  34. "@babel/helper-plugin-test-runner": "^7.22.5",
  35. "@babel/traverse": "^7.23.2",
  36. "@types/charcodes": "^0.2.0",
  37. "array.prototype.concat": "^1.0.2",
  38. "babel-plugin-polyfill-es-shims": "^0.10.0",
  39. "charcodes": "^0.2.0",
  40. "object.getownpropertydescriptors": "^2.1.1"
  41. },
  42. "engines": {
  43. "node": ">=6.9.0"
  44. },
  45. "type": "commonjs"
  46. }