Skip to content
This repository has been archived by the owner on Aug 4, 2021. It is now read-only.

Commit

Permalink
Allow Rollup 2 in peer dependency range
Browse files Browse the repository at this point in the history
  • Loading branch information
Andarist committed Mar 7, 2020
1 parent 4d8c0c5 commit c2821d0
Show file tree
Hide file tree
Showing 2 changed files with 74 additions and 89 deletions.
37 changes: 11 additions & 26 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

126 changes: 63 additions & 63 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,65 +1,65 @@
{
"name": "rollup-plugin-babel",
"version": "4.3.3",
"description": "Seamless integration between Rollup and Babel.",
"main": "dist/rollup-plugin-babel.cjs.js",
"module": "dist/rollup-plugin-babel.esm.js",
"files": [
"src",
"dist"
],
"keywords": [
"rollup-plugin",
"babel",
"es2015",
"es6"
],
"homepage": "https://github.com/rollup/rollup-plugin-babel",
"author": "Rich Harris",
"contributors": [
"Bogdan Chadkin <trysound@yandex.ru>",
"Mateusz Burzyński <mateuszburzynski@gmail.com> (https://github.com/Andarist)"
],
"license": "MIT",
"scripts": {
"lint": "eslint src",
"pretest": "npm run build",
"test": "mocha",
"prebuild": "rm -rf dist/*",
"build": "rollup -c",
"prepare": "npm run build",
"preversion": "npm run lint && npm test"
},
"dependencies": {
"@babel/helper-module-imports": "^7.0.0",
"rollup-pluginutils": "^2.8.1"
},
"peerDependencies": {
"@babel/core": "7 || ^7.0.0-rc.2",
"rollup": ">=0.60.0 <2"
},
"devDependencies": {
"@babel/core": "^7.3.4",
"@babel/plugin-external-helpers": "^7.0.0",
"@babel/plugin-proposal-decorators": "^7.0.0",
"@babel/plugin-transform-runtime": "^7.0.0",
"@babel/preset-env": "^7.3.4",
"buble": "^0.19.3",
"eslint": "^5.15.1",
"eslint-config-prettier": "^3.3.0",
"eslint-plugin-prettier": "^3.0.0",
"husky": "^1.0.1",
"lint-staged": "^7.2.2",
"mocha": "^5.2.0",
"prettier": "^1.15.3",
"rollup": "^1.0.0",
"rollup-plugin-buble": "^0.19.2",
"rollup-plugin-json": "^3.0.0",
"source-map": "^0.6.1",
"source-map-support": "^0.5.6"
},
"repository": "rollup/rollup-plugin-babel",
"bugs": {
"url": "https://github.com/rollup/rollup-plugin-babel/issues"
}
"name": "rollup-plugin-babel",
"version": "4.3.3",
"description": "Seamless integration between Rollup and Babel.",
"main": "dist/rollup-plugin-babel.cjs.js",
"module": "dist/rollup-plugin-babel.esm.js",
"files": [
"src",
"dist"
],
"keywords": [
"rollup-plugin",
"babel",
"es2015",
"es6"
],
"homepage": "https://github.com/rollup/rollup-plugin-babel",
"author": "Rich Harris",
"contributors": [
"Bogdan Chadkin <trysound@yandex.ru>",
"Mateusz Burzyński <mateuszburzynski@gmail.com> (https://github.com/Andarist)"
],
"license": "MIT",
"scripts": {
"lint": "eslint src",
"pretest": "npm run build",
"test": "mocha",
"prebuild": "rm -rf dist/*",
"build": "rollup -c",
"prepare": "npm run build",
"preversion": "npm run lint && npm test"
},
"dependencies": {
"@babel/helper-module-imports": "^7.0.0",
"rollup-pluginutils": "^2.8.1"
},
"peerDependencies": {
"@babel/core": "7 || ^7.0.0-rc.2",
"rollup": ">=0.60.0 <3"
},
"devDependencies": {
"@babel/core": "^7.3.4",
"@babel/plugin-external-helpers": "^7.0.0",
"@babel/plugin-proposal-decorators": "^7.0.0",
"@babel/plugin-transform-runtime": "^7.0.0",
"@babel/preset-env": "^7.3.4",
"buble": "^0.19.3",
"eslint": "^5.15.1",
"eslint-config-prettier": "^3.3.0",
"eslint-plugin-prettier": "^3.0.0",
"husky": "^1.0.1",
"lint-staged": "^7.2.2",
"mocha": "^5.2.0",
"prettier": "^1.15.3",
"rollup": "^2.0.1",
"rollup-plugin-buble": "^0.19.2",
"rollup-plugin-json": "^3.0.0",
"source-map": "^0.6.1",
"source-map-support": "^0.5.6"
},
"repository": "rollup/rollup-plugin-babel",
"bugs": {
"url": "https://github.com/rollup/rollup-plugin-babel/issues"
}
}

0 comments on commit c2821d0

Please sign in to comment.