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
68
69
70
71
72
73
74
75
76
77
78
79
80
| {
| "name": "@babel/core",
| "version": "7.20.12",
| "description": "Babel compiler core.",
| "main": "./lib/index.js",
| "author": "The Babel Team (https://babel.dev/team)",
| "license": "MIT",
| "publishConfig": {
| "access": "public"
| },
| "repository": {
| "type": "git",
| "url": "https://github.com/babel/babel.git",
| "directory": "packages/babel-core"
| },
| "homepage": "https://babel.dev/docs/en/next/babel-core",
| "bugs": "https://github.com/babel/babel/issues?utf8=%E2%9C%93&q=is%3Aissue+label%3A%22pkg%3A%20core%22+is%3Aopen",
| "keywords": [
| "6to5",
| "babel",
| "classes",
| "const",
| "es6",
| "harmony",
| "let",
| "modules",
| "transpile",
| "transpiler",
| "var",
| "babel-core",
| "compiler"
| ],
| "engines": {
| "node": ">=6.9.0"
| },
| "funding": {
| "type": "opencollective",
| "url": "https://opencollective.com/babel"
| },
| "browser": {
| "./lib/config/files/index.js": "./lib/config/files/index-browser.js",
| "./lib/config/resolve-targets.js": "./lib/config/resolve-targets-browser.js",
| "./lib/transform-file.js": "./lib/transform-file-browser.js",
| "./src/config/files/index.ts": "./src/config/files/index-browser.ts",
| "./src/config/resolve-targets.ts": "./src/config/resolve-targets-browser.ts",
| "./src/transform-file.ts": "./src/transform-file-browser.ts"
| },
| "dependencies": {
| "@ampproject/remapping": "^2.1.0",
| "@babel/code-frame": "^7.18.6",
| "@babel/generator": "^7.20.7",
| "@babel/helper-compilation-targets": "^7.20.7",
| "@babel/helper-module-transforms": "^7.20.11",
| "@babel/helpers": "^7.20.7",
| "@babel/parser": "^7.20.7",
| "@babel/template": "^7.20.7",
| "@babel/traverse": "^7.20.12",
| "@babel/types": "^7.20.7",
| "convert-source-map": "^1.7.0",
| "debug": "^4.1.0",
| "gensync": "^1.0.0-beta.2",
| "json5": "^2.2.2",
| "semver": "^6.3.0"
| },
| "devDependencies": {
| "@babel/helper-transform-fixture-test-runner": "^7.19.4",
| "@babel/plugin-syntax-flow": "^7.18.6",
| "@babel/plugin-transform-flow-strip-types": "^7.19.0",
| "@babel/plugin-transform-modules-commonjs": "^7.20.11",
| "@babel/preset-env": "^7.20.2",
| "@jridgewell/trace-mapping": "^0.3.8",
| "@types/convert-source-map": "^1.5.1",
| "@types/debug": "^4.1.0",
| "@types/gensync": "^1.0.0",
| "@types/resolve": "^1.3.2",
| "@types/semver": "^5.4.0",
| "rimraf": "^3.0.0"
| },
| "type": "commonjs"
| }
|
|