| 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
 | | { |  |   "name": "core-js", |  |   "description": "Standard library", |  |   "version": "3.25.3", |  |   "repository": { |  |     "type": "git", |  |     "url": "https://github.com/zloirock/core-js.git" |  |   }, |  |   "main": "index.js", |  |   "funding": { |  |     "type": "opencollective", |  |     "url": "https://opencollective.com/core-js" |  |   }, |  |   "license": "MIT", |  |   "keywords": [ |  |     "ES3", |  |     "ES5", |  |     "ES6", |  |     "ES7", |  |     "ES2015", |  |     "ES2016", |  |     "ES2017", |  |     "ES2018", |  |     "ES2019", |  |     "ES2020", |  |     "ECMAScript 3", |  |     "ECMAScript 5", |  |     "ECMAScript 6", |  |     "ECMAScript 7", |  |     "ECMAScript 2015", |  |     "ECMAScript 2016", |  |     "ECMAScript 2017", |  |     "ECMAScript 2018", |  |     "ECMAScript 2019", |  |     "ECMAScript 2020", |  |     "Harmony", |  |     "Strawman", |  |     "Map", |  |     "Set", |  |     "WeakMap", |  |     "WeakSet", |  |     "Promise", |  |     "Observable", |  |     "Symbol", |  |     "TypedArray", |  |     "URL", |  |     "URLSearchParams", |  |     "queueMicrotask", |  |     "setImmediate", |  |     "polyfill", |  |     "ponyfill", |  |     "shim" |  |   ], |  |   "scripts": { |  |     "postinstall": "node -e \"try{require('./postinstall')}catch(e){}\"" |  |   } |  | } | 
 |