package.json 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. {
  2. "name": "babel-preset-current-node-syntax",
  3. "version": "1.1.0",
  4. "description": "A Babel preset that enables parsing of proposals supported by the current Node.js version.",
  5. "main": "src/index.js",
  6. "repository": {
  7. "type": "git",
  8. "url": "https://github.com/nicolo-ribaudo/babel-preset-current-node-syntax.git"
  9. },
  10. "author": {
  11. "name": "Nicolò Ribaudo",
  12. "url": "https://github.com/nicolo-ribaudo"
  13. },
  14. "scripts": {
  15. "test": "node ./test/index.js"
  16. },
  17. "dependencies": {
  18. "@babel/plugin-syntax-async-generators": "^7.8.4",
  19. "@babel/plugin-syntax-bigint": "^7.8.3",
  20. "@babel/plugin-syntax-class-properties": "^7.12.13",
  21. "@babel/plugin-syntax-class-static-block": "^7.14.5",
  22. "@babel/plugin-syntax-import-attributes": "^7.24.7",
  23. "@babel/plugin-syntax-import-meta": "^7.10.4",
  24. "@babel/plugin-syntax-json-strings": "^7.8.3",
  25. "@babel/plugin-syntax-logical-assignment-operators": "^7.10.4",
  26. "@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.3",
  27. "@babel/plugin-syntax-numeric-separator": "^7.10.4",
  28. "@babel/plugin-syntax-object-rest-spread": "^7.8.3",
  29. "@babel/plugin-syntax-optional-catch-binding": "^7.8.3",
  30. "@babel/plugin-syntax-optional-chaining": "^7.8.3",
  31. "@babel/plugin-syntax-private-property-in-object": "^7.14.5",
  32. "@babel/plugin-syntax-top-level-await": "^7.14.5"
  33. },
  34. "peerDependencies": {
  35. "@babel/core": "^7.0.0"
  36. },
  37. "devDependencies": {
  38. "@babel/core": "7.25.2",
  39. "@babel/parser-7.0.0": "npm:@babel/parser@7.0.0",
  40. "@babel/parser-7.12.0": "npm:@babel/parser@7.12.0",
  41. "@babel/parser-7.22.0": "npm:@babel/parser@7.22.0",
  42. "@babel/parser-7.9.0": "npm:@babel/parser@7.9.0"
  43. },
  44. "license": "MIT"
  45. }