package.json 2.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091
  1. {
  2. "name": "@rollup/plugin-babel",
  3. "version": "5.3.1",
  4. "publishConfig": {
  5. "access": "public"
  6. },
  7. "description": "Seamless integration between Rollup and Babel.",
  8. "license": "MIT",
  9. "repository": {
  10. "url": "rollup/plugins",
  11. "directory": "packages/babel"
  12. },
  13. "author": "Rich Harris",
  14. "homepage": "https://github.com/rollup/plugins/tree/master/packages/babel#readme",
  15. "bugs": "https://github.com/rollup/plugins/issues",
  16. "main": "dist/index.js",
  17. "module": "dist/index.es.js",
  18. "engines": {
  19. "node": ">= 10.0.0"
  20. },
  21. "scripts": {
  22. "build": "rollup -c",
  23. "ci:coverage": "nyc pnpm test && nyc report --reporter=text-lcov > coverage.lcov",
  24. "ci:lint": "pnpm build && pnpm lint",
  25. "ci:lint:commits": "commitlint --from=${CIRCLE_BRANCH} --to=${CIRCLE_SHA1}",
  26. "ci:test": "pnpm test -- --verbose",
  27. "prebuild": "del-cli dist",
  28. "prerelease": "pnpm build",
  29. "pretest": "pnpm build",
  30. "release": "pnpm plugin:release --workspace-root -- --pkg $npm_package_name",
  31. "test": "ava",
  32. "test:ts": "tsc types/index.d.ts test/types.ts --noEmit"
  33. },
  34. "files": [
  35. "dist",
  36. "types",
  37. "README.md",
  38. "LICENSE"
  39. ],
  40. "keywords": [
  41. "rollup",
  42. "plugin",
  43. "rollup-plugin",
  44. "babel",
  45. "es2015",
  46. "es6"
  47. ],
  48. "peerDependencies": {
  49. "@babel/core": "^7.0.0",
  50. "@types/babel__core": "^7.1.9",
  51. "rollup": "^1.20.0||^2.0.0"
  52. },
  53. "peerDependenciesMeta": {
  54. "@types/babel__core": {
  55. "optional": true
  56. }
  57. },
  58. "dependencies": {
  59. "@babel/helper-module-imports": "^7.10.4",
  60. "@rollup/pluginutils": "^3.1.0"
  61. },
  62. "devDependencies": {
  63. "@babel/core": "^7.10.5",
  64. "@babel/plugin-external-helpers": "^7.10.4",
  65. "@babel/plugin-proposal-decorators": "^7.10.5",
  66. "@babel/plugin-syntax-dynamic-import": "^7.8.3",
  67. "@babel/plugin-transform-runtime": "^7.10.5",
  68. "@babel/preset-env": "^7.10.4",
  69. "@rollup/plugin-json": "^4.1.0",
  70. "@rollup/plugin-node-resolve": "^10.0.0",
  71. "@types/babel__core": "^7.1.9",
  72. "rollup": "^2.67.3",
  73. "source-map": "^0.7.3"
  74. },
  75. "types": "types/index.d.ts",
  76. "ava": {
  77. "babel": {
  78. "compileEnhancements": false
  79. },
  80. "files": [
  81. "!**/fixtures/**",
  82. "!**/helpers/**",
  83. "!**/recipes/**",
  84. "!**/types.ts"
  85. ]
  86. },
  87. "contributors": [
  88. "Bogdan Chadkin <trysound@yandex.ru>",
  89. "Mateusz Burzyński <mateuszburzynski@gmail.com> (https://github.com/Andarist)"
  90. ]
  91. }