package.json 2.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091
  1. {
  2. "name": "@rollup/plugin-babel",
  3. "version": "5.3.0",
  4. "publishConfig": {
  5. "access": "public"
  6. },
  7. "description": "Seamless integration between Rollup and Babel.",
  8. "license": "MIT",
  9. "repository": "rollup/plugins",
  10. "author": "Rich Harris",
  11. "homepage": "https://github.com/rollup/plugins/tree/master/packages/babel#readme",
  12. "bugs": "https://github.com/rollup/plugins/issues",
  13. "main": "dist/index.js",
  14. "module": "dist/index.es.js",
  15. "engines": {
  16. "node": ">= 10.0.0"
  17. },
  18. "scripts": {
  19. "build": "rollup -c",
  20. "ci:coverage": "nyc pnpm run test && nyc report --reporter=text-lcov > coverage.lcov",
  21. "ci:lint": "pnpm run build && pnpm run lint",
  22. "ci:lint:commits": "commitlint --from=${CIRCLE_BRANCH} --to=${CIRCLE_SHA1}",
  23. "ci:test": "pnpm run test -- --verbose",
  24. "lint": "pnpm run lint:js && pnpm run lint:docs && pnpm run lint:package",
  25. "lint:docs": "prettier --single-quote --arrow-parens avoid --trailing-comma none --write README.md",
  26. "lint:js": "eslint --fix --cache src test",
  27. "lint:package": "prettier --write package.json --plugin=prettier-plugin-package",
  28. "prebuild": "del-cli dist",
  29. "prepublishOnly": "pnpm run lint && pnpm run test && pnpm run build && pnpm run test:ts",
  30. "pretest": "pnpm run build",
  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.23.0",
  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. }