This repository has been archived by the owner on Aug 4, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 87
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Allow Rollup 2 in peer dependency range
- Loading branch information
Showing
2 changed files
with
74 additions
and
89 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 <[email protected]>", | ||
"Mateusz Burzyński <[email protected]> (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 <[email protected]>", | ||
"Mateusz Burzyński <[email protected]> (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" | ||
} | ||
} |