package.json 929 B

123456789101112131415161718192021222324252627282930313233343536
  1. {
  2. "name": "@babel/plugin-transform-dotall-regex",
  3. "version": "7.0.0-beta.49",
  4. "description": "Compile regular expressions using the `s` (`dotAll`) flag to ES5.",
  5. "homepage": "https://babeljs.io/",
  6. "license": "MIT",
  7. "main": "lib/index.js",
  8. "engines": {
  9. "node": ">=4"
  10. },
  11. "keywords": [
  12. "babel-plugin",
  13. "regex",
  14. "regexp",
  15. "regular expressions",
  16. "dotall"
  17. ],
  18. "repository": {
  19. "type": "git",
  20. "url": "https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-dotall-regex.git"
  21. },
  22. "bugs": "https://github.com/babel/babel/issues",
  23. "dependencies": {
  24. "@babel/helper-plugin-utils": "7.0.0-beta.49",
  25. "@babel/helper-regex": "7.0.0-beta.49",
  26. "regexpu-core": "^4.1.3"
  27. },
  28. "peerDependencies": {
  29. "@babel/core": "7.0.0-beta.49"
  30. },
  31. "devDependencies": {
  32. "@babel/core": "7.0.0-beta.49",
  33. "@babel/helper-plugin-test-runner": "7.0.0-beta.49"
  34. }
  35. }