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
/
package.json
67 lines (67 loc) · 1.73 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
{
"name": "rollup-plugin-babel",
"version": "5.0.0-alpha.2",
"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": "rimraf dist",
"build": "rollup -c",
"prepare": "npm run build",
"preversion": "npm run lint && npm test"
},
"dependencies": {
"@babel/helper-module-imports": "^7.7.4",
"rollup-pluginutils": "^2.8.2"
},
"peerDependencies": {
"@babel/core": "7 || ^7.0.0-rc.2",
"rollup": ">=0.60.0 <3"
},
"devDependencies": {
"@babel/core": "^7.7.4",
"@babel/plugin-external-helpers": "^7.7.4",
"@babel/plugin-proposal-decorators": "^7.7.4",
"@babel/plugin-syntax-dynamic-import": "^7.7.4",
"@babel/plugin-transform-runtime": "^7.7.4",
"@babel/preset-env": "^7.7.4",
"buble": "^0.19.8",
"eslint": "^6.7.1",
"eslint-config-prettier": "^6.7.0",
"eslint-plugin-prettier": "^3.1.1",
"husky": "^3.1.0",
"lint-staged": "^9.4.3",
"mocha": "^6.2.2",
"prettier": "^1.19.1",
"rimraf": "^2.6.3",
"rollup": "^1.27.5",
"rollup-plugin-buble": "^0.19.8",
"rollup-plugin-json": "^4.0.0",
"source-map": "^0.6.1",
"source-map-support": "^0.5.16"
},
"repository": "rollup/rollup-plugin-babel",
"bugs": {
"url": "https://github.com/rollup/rollup-plugin-babel/issues"
}
}