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

Commit c2821d0

Browse files
committedMar 7, 2020
Allow Rollup 2 in peer dependency range
1 parent 4d8c0c5 commit c2821d0

File tree

2 files changed

+74
-89
lines changed

2 files changed

+74
-89
lines changed
 

‎package-lock.json

+11-26
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎package.json

+63-63
Original file line numberDiff line numberDiff line change
@@ -1,65 +1,65 @@
11
{
2-
"name": "rollup-plugin-babel",
3-
"version": "4.3.3",
4-
"description": "Seamless integration between Rollup and Babel.",
5-
"main": "dist/rollup-plugin-babel.cjs.js",
6-
"module": "dist/rollup-plugin-babel.esm.js",
7-
"files": [
8-
"src",
9-
"dist"
10-
],
11-
"keywords": [
12-
"rollup-plugin",
13-
"babel",
14-
"es2015",
15-
"es6"
16-
],
17-
"homepage": "https://github.com/rollup/rollup-plugin-babel",
18-
"author": "Rich Harris",
19-
"contributors": [
20-
"Bogdan Chadkin <trysound@yandex.ru>",
21-
"Mateusz Burzyński <mateuszburzynski@gmail.com> (https://github.com/Andarist)"
22-
],
23-
"license": "MIT",
24-
"scripts": {
25-
"lint": "eslint src",
26-
"pretest": "npm run build",
27-
"test": "mocha",
28-
"prebuild": "rm -rf dist/*",
29-
"build": "rollup -c",
30-
"prepare": "npm run build",
31-
"preversion": "npm run lint && npm test"
32-
},
33-
"dependencies": {
34-
"@babel/helper-module-imports": "^7.0.0",
35-
"rollup-pluginutils": "^2.8.1"
36-
},
37-
"peerDependencies": {
38-
"@babel/core": "7 || ^7.0.0-rc.2",
39-
"rollup": ">=0.60.0 <2"
40-
},
41-
"devDependencies": {
42-
"@babel/core": "^7.3.4",
43-
"@babel/plugin-external-helpers": "^7.0.0",
44-
"@babel/plugin-proposal-decorators": "^7.0.0",
45-
"@babel/plugin-transform-runtime": "^7.0.0",
46-
"@babel/preset-env": "^7.3.4",
47-
"buble": "^0.19.3",
48-
"eslint": "^5.15.1",
49-
"eslint-config-prettier": "^3.3.0",
50-
"eslint-plugin-prettier": "^3.0.0",
51-
"husky": "^1.0.1",
52-
"lint-staged": "^7.2.2",
53-
"mocha": "^5.2.0",
54-
"prettier": "^1.15.3",
55-
"rollup": "^1.0.0",
56-
"rollup-plugin-buble": "^0.19.2",
57-
"rollup-plugin-json": "^3.0.0",
58-
"source-map": "^0.6.1",
59-
"source-map-support": "^0.5.6"
60-
},
61-
"repository": "rollup/rollup-plugin-babel",
62-
"bugs": {
63-
"url": "https://github.com/rollup/rollup-plugin-babel/issues"
64-
}
2+
"name": "rollup-plugin-babel",
3+
"version": "4.3.3",
4+
"description": "Seamless integration between Rollup and Babel.",
5+
"main": "dist/rollup-plugin-babel.cjs.js",
6+
"module": "dist/rollup-plugin-babel.esm.js",
7+
"files": [
8+
"src",
9+
"dist"
10+
],
11+
"keywords": [
12+
"rollup-plugin",
13+
"babel",
14+
"es2015",
15+
"es6"
16+
],
17+
"homepage": "https://github.com/rollup/rollup-plugin-babel",
18+
"author": "Rich Harris",
19+
"contributors": [
20+
"Bogdan Chadkin <trysound@yandex.ru>",
21+
"Mateusz Burzyński <mateuszburzynski@gmail.com> (https://github.com/Andarist)"
22+
],
23+
"license": "MIT",
24+
"scripts": {
25+
"lint": "eslint src",
26+
"pretest": "npm run build",
27+
"test": "mocha",
28+
"prebuild": "rm -rf dist/*",
29+
"build": "rollup -c",
30+
"prepare": "npm run build",
31+
"preversion": "npm run lint && npm test"
32+
},
33+
"dependencies": {
34+
"@babel/helper-module-imports": "^7.0.0",
35+
"rollup-pluginutils": "^2.8.1"
36+
},
37+
"peerDependencies": {
38+
"@babel/core": "7 || ^7.0.0-rc.2",
39+
"rollup": ">=0.60.0 <3"
40+
},
41+
"devDependencies": {
42+
"@babel/core": "^7.3.4",
43+
"@babel/plugin-external-helpers": "^7.0.0",
44+
"@babel/plugin-proposal-decorators": "^7.0.0",
45+
"@babel/plugin-transform-runtime": "^7.0.0",
46+
"@babel/preset-env": "^7.3.4",
47+
"buble": "^0.19.3",
48+
"eslint": "^5.15.1",
49+
"eslint-config-prettier": "^3.3.0",
50+
"eslint-plugin-prettier": "^3.0.0",
51+
"husky": "^1.0.1",
52+
"lint-staged": "^7.2.2",
53+
"mocha": "^5.2.0",
54+
"prettier": "^1.15.3",
55+
"rollup": "^2.0.1",
56+
"rollup-plugin-buble": "^0.19.2",
57+
"rollup-plugin-json": "^3.0.0",
58+
"source-map": "^0.6.1",
59+
"source-map-support": "^0.5.6"
60+
},
61+
"repository": "rollup/rollup-plugin-babel",
62+
"bugs": {
63+
"url": "https://github.com/rollup/rollup-plugin-babel/issues"
64+
}
6565
}

0 commit comments

Comments
 (0)
This repository has been archived.