1 | {
|
---|
2 | "name": "@babel/core",
|
---|
3 | "version": "7.14.8",
|
---|
4 | "description": "Babel compiler core.",
|
---|
5 | "main": "./lib/index.js",
|
---|
6 | "author": "The Babel Team (https://babel.dev/team)",
|
---|
7 | "license": "MIT",
|
---|
8 | "publishConfig": {
|
---|
9 | "access": "public"
|
---|
10 | },
|
---|
11 | "repository": {
|
---|
12 | "type": "git",
|
---|
13 | "url": "https://github.com/babel/babel.git",
|
---|
14 | "directory": "packages/babel-core"
|
---|
15 | },
|
---|
16 | "homepage": "https://babel.dev/docs/en/next/babel-core",
|
---|
17 | "bugs": "https://github.com/babel/babel/issues?utf8=%E2%9C%93&q=is%3Aissue+label%3A%22pkg%3A%20core%22+is%3Aopen",
|
---|
18 | "keywords": [
|
---|
19 | "6to5",
|
---|
20 | "babel",
|
---|
21 | "classes",
|
---|
22 | "const",
|
---|
23 | "es6",
|
---|
24 | "harmony",
|
---|
25 | "let",
|
---|
26 | "modules",
|
---|
27 | "transpile",
|
---|
28 | "transpiler",
|
---|
29 | "var",
|
---|
30 | "babel-core",
|
---|
31 | "compiler"
|
---|
32 | ],
|
---|
33 | "engines": {
|
---|
34 | "node": ">=6.9.0"
|
---|
35 | },
|
---|
36 | "funding": {
|
---|
37 | "type": "opencollective",
|
---|
38 | "url": "https://opencollective.com/babel"
|
---|
39 | },
|
---|
40 | "browser": {
|
---|
41 | "./lib/config/files/index.js": "./lib/config/files/index-browser.js",
|
---|
42 | "./lib/config/resolve-targets.js": "./lib/config/resolve-targets-browser.js",
|
---|
43 | "./lib/transform-file.js": "./lib/transform-file-browser.js",
|
---|
44 | "./lib/transformation/util/clone-deep.js": "./lib/transformation/util/clone-deep-browser.js",
|
---|
45 | "./src/config/files/index.ts": "./src/config/files/index-browser.ts",
|
---|
46 | "./src/config/resolve-targets.ts": "./src/config/resolve-targets-browser.ts",
|
---|
47 | "./src/transform-file.ts": "./src/transform-file-browser.ts",
|
---|
48 | "./src/transformation/util/clone-deep.ts": "./src/transformation/util/clone-deep-browser.ts"
|
---|
49 | },
|
---|
50 | "dependencies": {
|
---|
51 | "@babel/code-frame": "^7.14.5",
|
---|
52 | "@babel/generator": "^7.14.8",
|
---|
53 | "@babel/helper-compilation-targets": "^7.14.5",
|
---|
54 | "@babel/helper-module-transforms": "^7.14.8",
|
---|
55 | "@babel/helpers": "^7.14.8",
|
---|
56 | "@babel/parser": "^7.14.8",
|
---|
57 | "@babel/template": "^7.14.5",
|
---|
58 | "@babel/traverse": "^7.14.8",
|
---|
59 | "@babel/types": "^7.14.8",
|
---|
60 | "convert-source-map": "^1.7.0",
|
---|
61 | "debug": "^4.1.0",
|
---|
62 | "gensync": "^1.0.0-beta.2",
|
---|
63 | "json5": "^2.1.2",
|
---|
64 | "semver": "^6.3.0",
|
---|
65 | "source-map": "^0.5.0"
|
---|
66 | },
|
---|
67 | "devDependencies": {
|
---|
68 | "@babel/helper-transform-fixture-test-runner": "7.14.5",
|
---|
69 | "@babel/plugin-transform-modules-commonjs": "7.14.5",
|
---|
70 | "@types/convert-source-map": "^1.5.1",
|
---|
71 | "@types/debug": "^4.1.0",
|
---|
72 | "@types/resolve": "^1.3.2",
|
---|
73 | "@types/semver": "^5.4.0",
|
---|
74 | "@types/source-map": "^0.5.0"
|
---|
75 | }
|
---|
76 | } |
---|