1 | {
|
2 | "name": "@rollup/plugin-babel",
|
3 | "version": "6.0.3",
|
4 | "publishConfig": {
|
5 | "access": "public"
|
6 | },
|
7 | "description": "Seamless integration between Rollup and Babel.",
|
8 | "license": "MIT",
|
9 | "repository": {
|
10 | "url": "rollup/plugins",
|
11 | "directory": "packages/babel"
|
12 | },
|
13 | "author": "Rich Harris",
|
14 | "homepage": "https://github.com/rollup/plugins/tree/master/packages/babel#readme",
|
15 | "bugs": "https://github.com/rollup/plugins/issues",
|
16 | "main": "./dist/cjs/index.js",
|
17 | "module": "./dist/es/index.js",
|
18 | "exports": {
|
19 | "types": "./types/index.d.ts",
|
20 | "import": "./dist/es/index.js",
|
21 | "default": "./dist/cjs/index.js"
|
22 | },
|
23 | "engines": {
|
24 | "node": ">=14.0.0"
|
25 | },
|
26 | "scripts": {
|
27 | "build": "rollup -c",
|
28 | "ci:coverage": "nyc pnpm test && nyc report --reporter=text-lcov > coverage.lcov",
|
29 | "ci:lint": "pnpm build && pnpm lint",
|
30 | "ci:lint:commits": "commitlint --from=${CIRCLE_BRANCH} --to=${CIRCLE_SHA1}",
|
31 | "ci:test": "pnpm test -- --verbose",
|
32 | "prebuild": "del-cli dist",
|
33 | "prerelease": "pnpm build",
|
34 | "pretest": "pnpm build",
|
35 | "release": "pnpm --workspace-root plugin:release --pkg $npm_package_name",
|
36 | "test": "ava",
|
37 | "test:ts": "tsc types/index.d.ts test/types.ts --noEmit"
|
38 | },
|
39 | "files": [
|
40 | "dist",
|
41 | "!dist/**/*.map",
|
42 | "types",
|
43 | "README.md",
|
44 | "LICENSE"
|
45 | ],
|
46 | "keywords": [
|
47 | "rollup",
|
48 | "plugin",
|
49 | "rollup-plugin",
|
50 | "babel",
|
51 | "es2015",
|
52 | "es6"
|
53 | ],
|
54 | "peerDependencies": {
|
55 | "@babel/core": "^7.0.0",
|
56 | "@types/babel__core": "^7.1.9",
|
57 | "rollup": "^1.20.0||^2.0.0||^3.0.0"
|
58 | },
|
59 | "peerDependenciesMeta": {
|
60 | "rollup": {
|
61 | "optional": true
|
62 | },
|
63 | "@types/babel__core": {
|
64 | "optional": true
|
65 | }
|
66 | },
|
67 | "dependencies": {
|
68 | "@babel/helper-module-imports": "^7.18.6",
|
69 | "@rollup/pluginutils": "^5.0.1"
|
70 | },
|
71 | "devDependencies": {
|
72 | "@babel/core": "^7.19.1",
|
73 | "@babel/plugin-external-helpers": "^7.18.6",
|
74 | "@babel/plugin-proposal-decorators": "^7.19.1",
|
75 | "@babel/plugin-syntax-dynamic-import": "^7.8.3",
|
76 | "@babel/plugin-transform-runtime": "^7.19.1",
|
77 | "@babel/preset-env": "^7.19.1",
|
78 | "@rollup/plugin-json": "^5.0.0",
|
79 | "@rollup/plugin-node-resolve": "^15.0.0",
|
80 | "@types/babel__core": "^7.1.9",
|
81 | "rollup": "^3.2.3",
|
82 | "source-map": "^0.7.4"
|
83 | },
|
84 | "types": "./types/index.d.ts",
|
85 | "ava": {
|
86 | "files": [
|
87 | "!**/fixtures/**",
|
88 | "!**/helpers/**",
|
89 | "!**/recipes/**",
|
90 | "!**/types.ts"
|
91 | ]
|
92 | },
|
93 | "contributors": [
|
94 | "Bogdan Chadkin <trysound@yandex.ru>",
|
95 | "Mateusz Burzyński <mateuszburzynski@gmail.com> (https://github.com/Andarist)"
|
96 | ]
|
97 | }
|