| 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
 | | { |  |   "name": "babel-plugin-polyfill-corejs2", |  |   "version": "0.3.3", |  |   "description": "A Babel plugin to inject imports to core-js@2 polyfills", |  |   "repository": { |  |     "type": "git", |  |     "url": "https://github.com/babel/babel-polyfills.git", |  |     "directory": "packages/babel-plugin-polyfill-corejs2" |  |   }, |  |   "license": "MIT", |  |   "publishConfig": { |  |     "access": "public" |  |   }, |  |   "main": "lib/index.js", |  |   "exports": { |  |     ".": [ |  |       { |  |         "import": "./esm/index.mjs", |  |         "default": "./lib/index.js" |  |       }, |  |       "./lib/index.js" |  |     ], |  |     "./package.json": "./package.json" |  |   }, |  |   "keywords": [ |  |     "babel-plugin" |  |   ], |  |   "dependencies": { |  |     "@babel/compat-data": "^7.17.7", |  |     "@babel/helper-define-polyfill-provider": "^0.3.3", |  |     "semver": "^6.1.1" |  |   }, |  |   "devDependencies": { |  |     "@babel/core": "^7.17.8", |  |     "@babel/helper-plugin-test-runner": "^7.16.7", |  |     "@babel/plugin-transform-for-of": "^7.16.7", |  |     "@babel/plugin-transform-modules-commonjs": "^7.17.7" |  |   }, |  |   "peerDependencies": { |  |     "@babel/core": "^7.0.0-0" |  |   }, |  |   "gitHead": "42b9477c199c0c5420b45cfa8c9bb892d94a64af" |  | } | 
 |