| 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
 | | { |  |   "name": "@babel/helper-define-polyfill-provider", |  |   "version": "0.3.3", |  |   "description": "Babel helper to create your own polyfill provider", |  |   "repository": { |  |     "type": "git", |  |     "url": "https://github.com/babel/babel-polyfills.git", |  |     "directory": "packages/babel-helper-define-polyfill-provider" |  |   }, |  |   "keywords": [ |  |     "babel-plugin" |  |   ], |  |   "license": "MIT", |  |   "publishConfig": { |  |     "access": "public" |  |   }, |  |   "main": "lib/index.js", |  |   "browser": { |  |     "./lib/node/dependencies.js": "./lib/browser/dependencies.js", |  |     "./src/node/dependencies.js": "./src/browser/dependencies.js" |  |   }, |  |   "exports": { |  |     ".": [ |  |       { |  |         "import": { |  |           "node": "./esm/index.node.mjs", |  |           "browser": "./esm/index.browser.mjs" |  |         }, |  |         "default": "./lib/index.js" |  |       }, |  |       "./lib/index.js" |  |     ], |  |     "./package.json": "./package.json" |  |   }, |  |   "dependencies": { |  |     "@babel/helper-compilation-targets": "^7.17.7", |  |     "@babel/helper-plugin-utils": "^7.16.7", |  |     "debug": "^4.1.1", |  |     "lodash.debounce": "^4.0.8", |  |     "resolve": "^1.14.2", |  |     "semver": "^6.1.2" |  |   }, |  |   "peerDependencies": { |  |     "@babel/core": "^7.4.0-0" |  |   }, |  |   "devDependencies": { |  |     "@babel/cli": "^7.17.6", |  |     "@babel/core": "^7.17.8", |  |     "@babel/generator": "^7.17.7", |  |     "@babel/plugin-transform-modules-commonjs": "^7.17.7", |  |     "@babel/traverse": "^7.17.3", |  |     "babel-loader": "^8.1.0", |  |     "rollup": "^2.3.2", |  |     "rollup-plugin-babel": "^4.4.0", |  |     "strip-ansi": "^6.0.0", |  |     "webpack": "^4.42.1", |  |     "webpack-cli": "^3.3.11" |  |   }, |  |   "gitHead": "42b9477c199c0c5420b45cfa8c9bb892d94a64af" |  | } | 
 |