package.json 1.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. {
  2. "name": "@babel/helper-compilation-targets",
  3. "version": "7.20.7",
  4. "author": "The Babel Team (https://babel.dev/team)",
  5. "license": "MIT",
  6. "description": "Helper functions on Babel compilation targets",
  7. "repository": {
  8. "type": "git",
  9. "url": "https://github.com/babel/babel.git",
  10. "directory": "packages/babel-helper-compilation-targets"
  11. },
  12. "main": "./lib/index.js",
  13. "exports": {
  14. ".": "./lib/index.js",
  15. "./package.json": "./package.json"
  16. },
  17. "publishConfig": {
  18. "access": "public"
  19. },
  20. "keywords": [
  21. "babel",
  22. "babel-plugin"
  23. ],
  24. "dependencies": {
  25. "@babel/compat-data": "^7.20.5",
  26. "@babel/helper-validator-option": "^7.18.6",
  27. "browserslist": "^4.21.3",
  28. "lru-cache": "^5.1.1",
  29. "semver": "^6.3.0"
  30. },
  31. "peerDependencies": {
  32. "@babel/core": "^7.0.0"
  33. },
  34. "devDependencies": {
  35. "@babel/core": "^7.20.7",
  36. "@babel/helper-plugin-test-runner": "^7.18.6",
  37. "@types/lru-cache": "^5.1.1",
  38. "@types/semver": "^5.5.0"
  39. },
  40. "engines": {
  41. "node": ">=6.9.0"
  42. },
  43. "type": "commonjs"
  44. }