@qooxdoo/framework 7.1.0 → 7.2.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +3 -0
- package/Manifest.json +22 -22
- package/lib/compiler/compile-info.json +66 -66
- package/lib/compiler/index.js +406 -335
- package/lib/resource/qx/tool/cli/templates/loader/loader-browser.tmpl.js +1 -2
- package/lib/resource/qx/tool/cli/templates/skeleton/mobile/source/theme/custom/css/custom.css.map +1 -1
- package/lib/resource/qx/tool/schema/compile-1-0-0.json +11 -1
- package/npm-shrinkwrap.json +793 -744
- package/package.json +9 -8
- package/source/class/qx/Interface.js +13 -15
- package/source/class/qx/dev/unit/MTestLoader.js +25 -33
- package/source/class/qx/dev/unit/TestResult.js +9 -13
- package/source/class/qx/event/handler/Focus.js +1 -1
- package/source/class/qx/html/Element.js +1 -1
- package/source/class/qx/html/Node.js +0 -1
- package/source/class/qx/io/request/AbstractRequest.js +42 -66
- package/source/class/qx/test/Interface.js +70 -6
- package/source/class/qx/test/Mixin.js +20 -17
- package/source/class/qx/test/Promise.js +67 -91
- package/source/class/qx/test/bom/History.js +11 -19
- package/source/class/qx/test/bom/WebWorker.js +7 -15
- package/source/class/qx/test/bom/media/MediaTestCase.js +10 -18
- package/source/class/qx/test/bom/media/Video.js +10 -18
- package/source/class/qx/test/bom/rest/Resource.js +3 -7
- package/source/class/qx/test/bom/rest/ResourceWithRemote.js +40 -56
- package/source/class/qx/test/bom/webfonts/Validator.js +12 -20
- package/source/class/qx/test/core/Object.js +3 -7
- package/source/class/qx/test/data/controller/List.js +18 -22
- package/source/class/qx/test/data/marshal/Json.js +10 -14
- package/source/class/qx/test/data/store/Json.js +337 -428
- package/source/class/qx/test/data/store/Jsonp.js +46 -66
- package/source/class/qx/test/data/store/RestWithRemote.js +10 -18
- package/source/class/qx/test/html/Element.js +4 -8
- package/source/class/qx/test/html/Iframe.js +48 -60
- package/source/class/qx/test/io/jsonrpc/Client.js +1 -1
- package/source/class/qx/test/io/request/JsonpWithRemote.js +6 -10
- package/source/class/qx/test/io/request/MRequest.js +13 -25
- package/source/class/qx/test/io/request/Xhr.js +5 -9
- package/source/class/qx/test/io/request/XhrWithRemote.js +50 -78
- package/source/class/qx/test/io/rest/Resource.js +3 -7
- package/source/class/qx/test/io/rest/ResourceWithRemote.js +41 -57
- package/source/class/qx/test/mobile/basic/Image.js +16 -24
- package/source/class/qx/test/mobile/container/Navigation.js +3 -7
- package/source/class/qx/test/mobile/container/Scroll.js +8 -12
- package/source/class/qx/test/mobile/page/Page.js +24 -44
- package/source/class/qx/test/performance/Property.js +2 -2
- package/source/class/qx/test/ui/basic/Image.js +32 -52
- package/source/class/qx/test/ui/core/Blocker.js +6 -14
- package/source/class/qx/test/ui/embed/Iframe.js +13 -21
- package/source/class/qx/test/ui/form/FileSelectorButton.js +32 -0
- package/source/class/qx/test/ui/form/FormValidator.js +147 -211
- package/source/class/qx/test/ui/form/Label.js +8 -16
- package/source/class/qx/test/ui/root/Inline.js +9 -13
- package/source/class/qx/test/ui/table/Table.js +6 -14
- package/source/class/qx/test/ui/toolbar/OverflowHandling.js +18 -30
- package/source/class/qx/test/ui/virtual/Pane.js +3 -7
- package/source/class/qx/test/util/DynamicScriptLoader.js +23 -42
- package/source/class/qx/theme/iconfont/LoadMaterialIcons.js +4 -4
- package/source/class/qx/theme/iconfont/LoadMaterialIconsOutlined.js +4 -4
- package/source/class/qx/theme/iconfont/LoadMaterialIconsRound.js +4 -4
- package/source/class/qx/theme/iconfont/LoadMaterialIconsSharp.js +4 -4
- package/source/class/qx/theme/iconfont/LoadMaterialIconsTwoTone.js +4 -4
- package/source/class/qx/theme/tangible/Appearance.js +22 -3
- package/source/class/qx/theme/tangible/ColorEngine.js +3 -3
- package/source/class/qx/theme/tangible/Decoration.js +3 -3
- package/source/class/qx/tool/cli/Watch.js +3 -7
- package/source/class/qx/tool/cli/api/AbstractApi.js +1 -1
- package/source/class/qx/tool/cli/api/CompilerApi.js +3 -7
- package/source/class/qx/tool/cli/commands/Compile.js +9 -1
- package/source/class/qx/tool/cli/commands/Lint.js +21 -17
- package/source/class/qx/tool/compiler/ClassFile.js +22 -12
- package/source/class/qx/tool/compiler/Es6ify.js +12 -5
- package/source/class/qx/tool/compiler/TargetError.js +3 -4
- package/source/class/qx/tool/compiler/app/Application.js +14 -0
- package/source/class/qx/tool/compiler/app/WebFont.js +8 -6
- package/source/class/qx/tool/compiler/targets/SourceCodeCopier.js +1 -1
- package/source/class/qx/tool/compiler/targets/Target.js +7 -5
- package/source/class/qx/tool/compiler/targets/meta/AbstractJavascriptMeta.js +1 -1
- package/source/class/qx/tool/compiler/targets/meta/Browserify.js +88 -52
- package/source/class/qx/tool/compiler/targets/meta/Uglify.js +11 -3
- package/source/class/qx/tool/utils/Json.js +1 -1
- package/source/class/qx/tool/utils/Website.js +2 -2
- package/source/class/qx/ui/basic/Label.js +13 -17
- package/source/class/qx/ui/core/MPlacement.js +13 -21
- package/source/class/qx/ui/core/Widget.js +2 -3
- package/source/class/qx/ui/core/scroll/NativeScrollBar.js +3 -7
- package/source/class/qx/ui/core/scroll/ScrollBar.js +3 -7
- package/source/class/qx/ui/embed/Iframe.js +40 -50
- package/source/class/qx/ui/form/AbstractField.js +8 -12
- package/source/class/qx/ui/form/ComboBox.js +7 -15
- package/source/class/qx/ui/form/DateField.js +9 -18
- package/source/class/qx/ui/form/FileSelectorButton.js +157 -0
- package/source/class/qx/ui/form/Spinner.js +7 -15
- package/source/class/qx/ui/form/TextArea.js +3 -7
- package/source/class/qx/ui/form/VirtualComboBox.js +8 -16
- package/source/class/qx/ui/form/VirtualSelectBox.js +21 -37
- package/source/class/qx/ui/layout/Canvas.js +2 -2
- package/source/class/qx/ui/mobile/container/MIScroll.js +3 -7
- package/source/class/qx/ui/progressive/headfoot/Progress.js +22 -34
- package/source/class/qx/ui/progressive/renderer/table/Row.js +1 -1
- package/source/class/qx/ui/splitpane/Pane.js +14 -22
- package/source/class/qx/ui/table/MTableContextMenu.js +63 -71
- package/source/class/qx/ui/table/Table.js +3 -7
- package/source/class/qx/ui/table/model/Abstract.js +5 -2
- package/source/class/qx/ui/table/pane/Scroller.js +8 -12
- package/source/class/qx/ui/toolbar/FileSelectorButton.js +57 -0
- package/source/class/qx/ui/toolbar/Part.js +3 -7
- package/source/class/qx/ui/tree/VirtualTree.js +5 -9
- package/source/class/qx/ui/treevirtual/MNode.js +5 -3
- package/source/class/qx/ui/treevirtual/TreeVirtual.js +3 -7
- package/source/class/qx/ui/virtual/core/Pane.js +30 -42
- package/source/class/qx/util/DynamicScriptLoader.js +31 -43
- package/source/resource/qx/iconfont/MaterialIcons/materialicons-v126.eot +0 -0
- package/source/resource/qx/iconfont/MaterialIcons/{materialicons-v70.ttf → materialicons-v126.ttf} +0 -0
- package/source/resource/qx/iconfont/MaterialIcons/materialicons-v126.woff +0 -0
- package/source/resource/qx/iconfont/MaterialIcons/materialicons-v126.woff2 +0 -0
- package/source/resource/qx/iconfont/MaterialIcons/materialiconsoutlined-v101.eot +0 -0
- package/source/resource/qx/iconfont/MaterialIcons/materialiconsoutlined-v101.otf +0 -0
- package/source/resource/qx/iconfont/MaterialIcons/materialiconsoutlined-v101.woff +0 -0
- package/source/resource/qx/iconfont/MaterialIcons/materialiconsoutlined-v101.woff2 +0 -0
- package/source/resource/qx/iconfont/MaterialIcons/materialiconsround-v100.eot +0 -0
- package/source/resource/qx/iconfont/MaterialIcons/materialiconsround-v100.otf +0 -0
- package/source/resource/qx/iconfont/MaterialIcons/materialiconsround-v100.woff +0 -0
- package/source/resource/qx/iconfont/MaterialIcons/materialiconsround-v100.woff2 +0 -0
- package/source/resource/qx/iconfont/MaterialIcons/materialiconssharp-v101.eot +0 -0
- package/source/resource/qx/iconfont/MaterialIcons/materialiconssharp-v101.otf +0 -0
- package/source/resource/qx/iconfont/MaterialIcons/materialiconssharp-v101.woff +0 -0
- package/source/resource/qx/iconfont/MaterialIcons/materialiconssharp-v101.woff2 +0 -0
- package/source/resource/qx/iconfont/MaterialIcons/materialiconstwotone-v104.eot +0 -0
- package/source/resource/qx/iconfont/MaterialIcons/materialiconstwotone-v104.otf +0 -0
- package/source/resource/qx/iconfont/MaterialIcons/materialiconstwotone-v104.woff +0 -0
- package/source/resource/qx/iconfont/MaterialIcons/materialiconstwotone-v104.woff2 +0 -0
- package/source/resource/qx/tool/cli/templates/loader/loader-browser.tmpl.js +1 -2
- package/source/resource/qx/tool/schema/compile-1-0-0.json +11 -1
- package/source/resource/qx/iconfont/MaterialIcons/materialicons-v70.eot +0 -0
- package/source/resource/qx/iconfont/MaterialIcons/materialicons-v70.woff +0 -0
- package/source/resource/qx/iconfont/MaterialIcons/materialicons-v70.woff2 +0 -0
- package/source/resource/qx/iconfont/MaterialIcons/materialiconsoutlined-v38.eot +0 -0
- package/source/resource/qx/iconfont/MaterialIcons/materialiconsoutlined-v38.otf +0 -0
- package/source/resource/qx/iconfont/MaterialIcons/materialiconsoutlined-v38.woff +0 -0
- package/source/resource/qx/iconfont/MaterialIcons/materialiconsoutlined-v38.woff2 +0 -0
- package/source/resource/qx/iconfont/MaterialIcons/materialiconsround-v37.eot +0 -0
- package/source/resource/qx/iconfont/MaterialIcons/materialiconsround-v37.otf +0 -0
- package/source/resource/qx/iconfont/MaterialIcons/materialiconsround-v37.woff +0 -0
- package/source/resource/qx/iconfont/MaterialIcons/materialiconsround-v37.woff2 +0 -0
- package/source/resource/qx/iconfont/MaterialIcons/materialiconssharp-v38.eot +0 -0
- package/source/resource/qx/iconfont/MaterialIcons/materialiconssharp-v38.otf +0 -0
- package/source/resource/qx/iconfont/MaterialIcons/materialiconssharp-v38.woff +0 -0
- package/source/resource/qx/iconfont/MaterialIcons/materialiconssharp-v38.woff2 +0 -0
- package/source/resource/qx/iconfont/MaterialIcons/materialiconstwotone-v36.eot +0 -0
- package/source/resource/qx/iconfont/MaterialIcons/materialiconstwotone-v36.otf +0 -0
- package/source/resource/qx/iconfont/MaterialIcons/materialiconstwotone-v36.woff +0 -0
- package/source/resource/qx/iconfont/MaterialIcons/materialiconstwotone-v36.woff2 +0 -0
package/npm-shrinkwrap.json
CHANGED
|
@@ -1,42 +1,51 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@qooxdoo/framework",
|
|
3
|
-
"version": "7.
|
|
3
|
+
"version": "7.1.1",
|
|
4
4
|
"lockfileVersion": 1,
|
|
5
5
|
"requires": true,
|
|
6
6
|
"dependencies": {
|
|
7
|
+
"@ampproject/remapping": {
|
|
8
|
+
"version": "2.2.0",
|
|
9
|
+
"resolved": "https://registry.npmjs.org/@ampproject/remapping/-/remapping-2.2.0.tgz",
|
|
10
|
+
"integrity": "sha512-qRmjj8nj9qmLTQXXmaR1cck3UXSRMPrbsLJAasZpF+t3riI71BXed5ebIOYwQntykeZuhjsdweEc9BxH5Jc26w==",
|
|
11
|
+
"requires": {
|
|
12
|
+
"@jridgewell/gen-mapping": "^0.1.0",
|
|
13
|
+
"@jridgewell/trace-mapping": "^0.3.9"
|
|
14
|
+
}
|
|
15
|
+
},
|
|
7
16
|
"@babel/code-frame": {
|
|
8
|
-
"version": "7.16.
|
|
9
|
-
"resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.16.
|
|
10
|
-
"integrity": "sha512-
|
|
17
|
+
"version": "7.16.7",
|
|
18
|
+
"resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.16.7.tgz",
|
|
19
|
+
"integrity": "sha512-iAXqUn8IIeBTNd72xsFlgaXHkMBMt6y4HJp1tIaK465CWLT/fG1aqB7ykr95gHHmlBdGbFeWWfyB4NJJ0nmeIg==",
|
|
11
20
|
"requires": {
|
|
12
|
-
"@babel/highlight": "^7.16.
|
|
21
|
+
"@babel/highlight": "^7.16.7"
|
|
13
22
|
}
|
|
14
23
|
},
|
|
15
24
|
"@babel/compat-data": {
|
|
16
|
-
"version": "7.
|
|
17
|
-
"resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.
|
|
18
|
-
"integrity": "sha512-
|
|
25
|
+
"version": "7.17.10",
|
|
26
|
+
"resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.17.10.tgz",
|
|
27
|
+
"integrity": "sha512-GZt/TCsG70Ms19gfZO1tM4CVnXsPgEPBCpJu+Qz3L0LUDsY5nZqFZglIoPC1kIYOtNBZlrnFT+klg12vFGZXrw=="
|
|
19
28
|
},
|
|
20
29
|
"@babel/core": {
|
|
21
|
-
"version": "7.
|
|
22
|
-
"resolved": "https://registry.npmjs.org/@babel/core/-/core-7.
|
|
23
|
-
"integrity": "sha512-
|
|
24
|
-
"requires": {
|
|
25
|
-
"@
|
|
26
|
-
"@babel/
|
|
27
|
-
"@babel/
|
|
28
|
-
"@babel/helper-
|
|
29
|
-
"@babel/
|
|
30
|
-
"@babel/
|
|
31
|
-
"@babel/
|
|
32
|
-
"@babel/
|
|
33
|
-
"@babel/
|
|
30
|
+
"version": "7.17.10",
|
|
31
|
+
"resolved": "https://registry.npmjs.org/@babel/core/-/core-7.17.10.tgz",
|
|
32
|
+
"integrity": "sha512-liKoppandF3ZcBnIYFjfSDHZLKdLHGJRkoWtG8zQyGJBQfIYobpnVGI5+pLBNtS6psFLDzyq8+h5HiVljW9PNA==",
|
|
33
|
+
"requires": {
|
|
34
|
+
"@ampproject/remapping": "^2.1.0",
|
|
35
|
+
"@babel/code-frame": "^7.16.7",
|
|
36
|
+
"@babel/generator": "^7.17.10",
|
|
37
|
+
"@babel/helper-compilation-targets": "^7.17.10",
|
|
38
|
+
"@babel/helper-module-transforms": "^7.17.7",
|
|
39
|
+
"@babel/helpers": "^7.17.9",
|
|
40
|
+
"@babel/parser": "^7.17.10",
|
|
41
|
+
"@babel/template": "^7.16.7",
|
|
42
|
+
"@babel/traverse": "^7.17.10",
|
|
43
|
+
"@babel/types": "^7.17.10",
|
|
34
44
|
"convert-source-map": "^1.7.0",
|
|
35
45
|
"debug": "^4.1.0",
|
|
36
46
|
"gensync": "^1.0.0-beta.2",
|
|
37
|
-
"json5": "^2.1
|
|
38
|
-
"semver": "^6.3.0"
|
|
39
|
-
"source-map": "^0.5.0"
|
|
47
|
+
"json5": "^2.2.1",
|
|
48
|
+
"semver": "^6.3.0"
|
|
40
49
|
},
|
|
41
50
|
"dependencies": {
|
|
42
51
|
"semver": {
|
|
@@ -64,40 +73,40 @@
|
|
|
64
73
|
}
|
|
65
74
|
},
|
|
66
75
|
"@babel/generator": {
|
|
67
|
-
"version": "7.
|
|
68
|
-
"resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.
|
|
69
|
-
"integrity": "sha512-
|
|
76
|
+
"version": "7.17.10",
|
|
77
|
+
"resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.17.10.tgz",
|
|
78
|
+
"integrity": "sha512-46MJZZo9y3o4kmhBVc7zW7i8dtR1oIK/sdO5NcfcZRhTGYi+KKJRtHNgsU6c4VUcJmUNV/LQdebD/9Dlv4K+Tg==",
|
|
70
79
|
"requires": {
|
|
71
|
-
"@babel/types": "^7.
|
|
72
|
-
"
|
|
73
|
-
"
|
|
80
|
+
"@babel/types": "^7.17.10",
|
|
81
|
+
"@jridgewell/gen-mapping": "^0.1.0",
|
|
82
|
+
"jsesc": "^2.5.1"
|
|
74
83
|
}
|
|
75
84
|
},
|
|
76
85
|
"@babel/helper-annotate-as-pure": {
|
|
77
|
-
"version": "7.16.
|
|
78
|
-
"resolved": "https://registry.npmjs.org/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.16.
|
|
79
|
-
"integrity": "sha512-
|
|
86
|
+
"version": "7.16.7",
|
|
87
|
+
"resolved": "https://registry.npmjs.org/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.16.7.tgz",
|
|
88
|
+
"integrity": "sha512-s6t2w/IPQVTAET1HitoowRGXooX8mCgtuP5195wD/QJPV6wYjpujCGF7JuMODVX2ZAJOf1GT6DT9MHEZvLOFSw==",
|
|
80
89
|
"requires": {
|
|
81
|
-
"@babel/types": "^7.16.
|
|
90
|
+
"@babel/types": "^7.16.7"
|
|
82
91
|
}
|
|
83
92
|
},
|
|
84
93
|
"@babel/helper-builder-binary-assignment-operator-visitor": {
|
|
85
|
-
"version": "7.16.
|
|
86
|
-
"resolved": "https://registry.npmjs.org/@babel/helper-builder-binary-assignment-operator-visitor/-/helper-builder-binary-assignment-operator-visitor-7.16.
|
|
87
|
-
"integrity": "sha512-
|
|
94
|
+
"version": "7.16.7",
|
|
95
|
+
"resolved": "https://registry.npmjs.org/@babel/helper-builder-binary-assignment-operator-visitor/-/helper-builder-binary-assignment-operator-visitor-7.16.7.tgz",
|
|
96
|
+
"integrity": "sha512-C6FdbRaxYjwVu/geKW4ZeQ0Q31AftgRcdSnZ5/jsH6BzCJbtvXvhpfkbkThYSuutZA7nCXpPR6AD9zd1dprMkA==",
|
|
88
97
|
"requires": {
|
|
89
|
-
"@babel/helper-explode-assignable-expression": "^7.16.
|
|
90
|
-
"@babel/types": "^7.16.
|
|
98
|
+
"@babel/helper-explode-assignable-expression": "^7.16.7",
|
|
99
|
+
"@babel/types": "^7.16.7"
|
|
91
100
|
}
|
|
92
101
|
},
|
|
93
102
|
"@babel/helper-compilation-targets": {
|
|
94
|
-
"version": "7.
|
|
95
|
-
"resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.
|
|
96
|
-
"integrity": "sha512-
|
|
103
|
+
"version": "7.17.10",
|
|
104
|
+
"resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.17.10.tgz",
|
|
105
|
+
"integrity": "sha512-gh3RxjWbauw/dFiU/7whjd0qN9K6nPJMqe6+Er7rOavFh0CQUSwhAE3IcTho2rywPJFxej6TUUHDkWcYI6gGqQ==",
|
|
97
106
|
"requires": {
|
|
98
|
-
"@babel/compat-data": "^7.
|
|
99
|
-
"@babel/helper-validator-option": "^7.
|
|
100
|
-
"browserslist": "^4.
|
|
107
|
+
"@babel/compat-data": "^7.17.10",
|
|
108
|
+
"@babel/helper-validator-option": "^7.16.7",
|
|
109
|
+
"browserslist": "^4.20.2",
|
|
101
110
|
"semver": "^6.3.0"
|
|
102
111
|
},
|
|
103
112
|
"dependencies": {
|
|
@@ -109,31 +118,32 @@
|
|
|
109
118
|
}
|
|
110
119
|
},
|
|
111
120
|
"@babel/helper-create-class-features-plugin": {
|
|
112
|
-
"version": "7.
|
|
113
|
-
"resolved": "https://registry.npmjs.org/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.
|
|
114
|
-
"integrity": "sha512-
|
|
121
|
+
"version": "7.17.9",
|
|
122
|
+
"resolved": "https://registry.npmjs.org/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.17.9.tgz",
|
|
123
|
+
"integrity": "sha512-kUjip3gruz6AJKOq5i3nC6CoCEEF/oHH3cp6tOZhB+IyyyPyW0g1Gfsxn3mkk6S08pIA2y8GQh609v9G/5sHVQ==",
|
|
115
124
|
"requires": {
|
|
116
|
-
"@babel/helper-annotate-as-pure": "^7.16.
|
|
117
|
-
"@babel/helper-
|
|
118
|
-
"@babel/helper-
|
|
119
|
-
"@babel/helper-
|
|
120
|
-
"@babel/helper-
|
|
121
|
-
"@babel/helper-
|
|
125
|
+
"@babel/helper-annotate-as-pure": "^7.16.7",
|
|
126
|
+
"@babel/helper-environment-visitor": "^7.16.7",
|
|
127
|
+
"@babel/helper-function-name": "^7.17.9",
|
|
128
|
+
"@babel/helper-member-expression-to-functions": "^7.17.7",
|
|
129
|
+
"@babel/helper-optimise-call-expression": "^7.16.7",
|
|
130
|
+
"@babel/helper-replace-supers": "^7.16.7",
|
|
131
|
+
"@babel/helper-split-export-declaration": "^7.16.7"
|
|
122
132
|
}
|
|
123
133
|
},
|
|
124
134
|
"@babel/helper-create-regexp-features-plugin": {
|
|
125
|
-
"version": "7.
|
|
126
|
-
"resolved": "https://registry.npmjs.org/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.
|
|
127
|
-
"integrity": "sha512-
|
|
135
|
+
"version": "7.17.0",
|
|
136
|
+
"resolved": "https://registry.npmjs.org/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.17.0.tgz",
|
|
137
|
+
"integrity": "sha512-awO2So99wG6KnlE+TPs6rn83gCz5WlEePJDTnLEqbchMVrBeAujURVphRdigsk094VhvZehFoNOihSlcBjwsXA==",
|
|
128
138
|
"requires": {
|
|
129
|
-
"@babel/helper-annotate-as-pure": "^7.16.
|
|
130
|
-
"regexpu-core": "^
|
|
139
|
+
"@babel/helper-annotate-as-pure": "^7.16.7",
|
|
140
|
+
"regexpu-core": "^5.0.1"
|
|
131
141
|
}
|
|
132
142
|
},
|
|
133
143
|
"@babel/helper-define-polyfill-provider": {
|
|
134
|
-
"version": "0.3.
|
|
135
|
-
"resolved": "https://registry.npmjs.org/@babel/helper-define-polyfill-provider/-/helper-define-polyfill-provider-0.3.
|
|
136
|
-
"integrity": "sha512-
|
|
144
|
+
"version": "0.3.1",
|
|
145
|
+
"resolved": "https://registry.npmjs.org/@babel/helper-define-polyfill-provider/-/helper-define-polyfill-provider-0.3.1.tgz",
|
|
146
|
+
"integrity": "sha512-J9hGMpJQmtWmj46B3kBHmL38UhJGhYX7eqkcq+2gsstyYt341HmPeWspihX43yVRA0mS+8GGk2Gckc7bY/HCmA==",
|
|
137
147
|
"requires": {
|
|
138
148
|
"@babel/helper-compilation-targets": "^7.13.0",
|
|
139
149
|
"@babel/helper-module-imports": "^7.12.13",
|
|
@@ -152,111 +162,111 @@
|
|
|
152
162
|
}
|
|
153
163
|
}
|
|
154
164
|
},
|
|
155
|
-
"@babel/helper-
|
|
156
|
-
"version": "7.16.
|
|
157
|
-
"resolved": "https://registry.npmjs.org/@babel/helper-
|
|
158
|
-
"integrity": "sha512-
|
|
165
|
+
"@babel/helper-environment-visitor": {
|
|
166
|
+
"version": "7.16.7",
|
|
167
|
+
"resolved": "https://registry.npmjs.org/@babel/helper-environment-visitor/-/helper-environment-visitor-7.16.7.tgz",
|
|
168
|
+
"integrity": "sha512-SLLb0AAn6PkUeAfKJCCOl9e1R53pQlGAfc4y4XuMRZfqeMYLE0dM1LMhqbGAlGQY0lfw5/ohoYWAe9V1yibRag==",
|
|
159
169
|
"requires": {
|
|
160
|
-
"@babel/types": "^7.16.
|
|
170
|
+
"@babel/types": "^7.16.7"
|
|
161
171
|
}
|
|
162
172
|
},
|
|
163
|
-
"@babel/helper-
|
|
164
|
-
"version": "7.16.
|
|
165
|
-
"resolved": "https://registry.npmjs.org/@babel/helper-
|
|
166
|
-
"integrity": "sha512-
|
|
173
|
+
"@babel/helper-explode-assignable-expression": {
|
|
174
|
+
"version": "7.16.7",
|
|
175
|
+
"resolved": "https://registry.npmjs.org/@babel/helper-explode-assignable-expression/-/helper-explode-assignable-expression-7.16.7.tgz",
|
|
176
|
+
"integrity": "sha512-KyUenhWMC8VrxzkGP0Jizjo4/Zx+1nNZhgocs+gLzyZyB8SHidhoq9KK/8Ato4anhwsivfkBLftky7gvzbZMtQ==",
|
|
167
177
|
"requires": {
|
|
168
|
-
"@babel/
|
|
169
|
-
"@babel/template": "^7.16.0",
|
|
170
|
-
"@babel/types": "^7.16.0"
|
|
178
|
+
"@babel/types": "^7.16.7"
|
|
171
179
|
}
|
|
172
180
|
},
|
|
173
|
-
"@babel/helper-
|
|
174
|
-
"version": "7.
|
|
175
|
-
"resolved": "https://registry.npmjs.org/@babel/helper-
|
|
176
|
-
"integrity": "sha512-
|
|
181
|
+
"@babel/helper-function-name": {
|
|
182
|
+
"version": "7.17.9",
|
|
183
|
+
"resolved": "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.17.9.tgz",
|
|
184
|
+
"integrity": "sha512-7cRisGlVtiVqZ0MW0/yFB4atgpGLWEHUVYnb448hZK4x+vih0YO5UoS11XIYtZYqHd0dIPMdUSv8q5K4LdMnIg==",
|
|
177
185
|
"requires": {
|
|
178
|
-
"@babel/
|
|
186
|
+
"@babel/template": "^7.16.7",
|
|
187
|
+
"@babel/types": "^7.17.0"
|
|
179
188
|
}
|
|
180
189
|
},
|
|
181
190
|
"@babel/helper-hoist-variables": {
|
|
182
|
-
"version": "7.16.
|
|
183
|
-
"resolved": "https://registry.npmjs.org/@babel/helper-hoist-variables/-/helper-hoist-variables-7.16.
|
|
184
|
-
"integrity": "sha512-
|
|
191
|
+
"version": "7.16.7",
|
|
192
|
+
"resolved": "https://registry.npmjs.org/@babel/helper-hoist-variables/-/helper-hoist-variables-7.16.7.tgz",
|
|
193
|
+
"integrity": "sha512-m04d/0Op34H5v7pbZw6pSKP7weA6lsMvfiIAMeIvkY/R4xQtBSMFEigu9QTZ2qB/9l22vsxtM8a+Q8CzD255fg==",
|
|
185
194
|
"requires": {
|
|
186
|
-
"@babel/types": "^7.16.
|
|
195
|
+
"@babel/types": "^7.16.7"
|
|
187
196
|
}
|
|
188
197
|
},
|
|
189
198
|
"@babel/helper-member-expression-to-functions": {
|
|
190
|
-
"version": "7.
|
|
191
|
-
"resolved": "https://registry.npmjs.org/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.
|
|
192
|
-
"integrity": "sha512-
|
|
199
|
+
"version": "7.17.7",
|
|
200
|
+
"resolved": "https://registry.npmjs.org/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.17.7.tgz",
|
|
201
|
+
"integrity": "sha512-thxXgnQ8qQ11W2wVUObIqDL4p148VMxkt5T/qpN5k2fboRyzFGFmKsTGViquyM5QHKUy48OZoca8kw4ajaDPyw==",
|
|
193
202
|
"requires": {
|
|
194
|
-
"@babel/types": "^7.
|
|
203
|
+
"@babel/types": "^7.17.0"
|
|
195
204
|
}
|
|
196
205
|
},
|
|
197
206
|
"@babel/helper-module-imports": {
|
|
198
|
-
"version": "7.16.
|
|
199
|
-
"resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.16.
|
|
200
|
-
"integrity": "sha512-
|
|
207
|
+
"version": "7.16.7",
|
|
208
|
+
"resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.16.7.tgz",
|
|
209
|
+
"integrity": "sha512-LVtS6TqjJHFc+nYeITRo6VLXve70xmq7wPhWTqDJusJEgGmkAACWwMiTNrvfoQo6hEhFwAIixNkvB0jPXDL8Wg==",
|
|
201
210
|
"requires": {
|
|
202
|
-
"@babel/types": "^7.16.
|
|
211
|
+
"@babel/types": "^7.16.7"
|
|
203
212
|
}
|
|
204
213
|
},
|
|
205
214
|
"@babel/helper-module-transforms": {
|
|
206
|
-
"version": "7.
|
|
207
|
-
"resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.
|
|
208
|
-
"integrity": "sha512-
|
|
215
|
+
"version": "7.17.7",
|
|
216
|
+
"resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.17.7.tgz",
|
|
217
|
+
"integrity": "sha512-VmZD99F3gNTYB7fJRDTi+u6l/zxY0BE6OIxPSU7a50s6ZUQkHwSDmV92FfM+oCG0pZRVojGYhkR8I0OGeCVREw==",
|
|
209
218
|
"requires": {
|
|
210
|
-
"@babel/helper-
|
|
211
|
-
"@babel/helper-
|
|
212
|
-
"@babel/helper-simple-access": "^7.
|
|
213
|
-
"@babel/helper-split-export-declaration": "^7.16.
|
|
214
|
-
"@babel/helper-validator-identifier": "^7.
|
|
215
|
-
"@babel/template": "^7.16.
|
|
216
|
-
"@babel/traverse": "^7.
|
|
217
|
-
"@babel/types": "^7.
|
|
219
|
+
"@babel/helper-environment-visitor": "^7.16.7",
|
|
220
|
+
"@babel/helper-module-imports": "^7.16.7",
|
|
221
|
+
"@babel/helper-simple-access": "^7.17.7",
|
|
222
|
+
"@babel/helper-split-export-declaration": "^7.16.7",
|
|
223
|
+
"@babel/helper-validator-identifier": "^7.16.7",
|
|
224
|
+
"@babel/template": "^7.16.7",
|
|
225
|
+
"@babel/traverse": "^7.17.3",
|
|
226
|
+
"@babel/types": "^7.17.0"
|
|
218
227
|
}
|
|
219
228
|
},
|
|
220
229
|
"@babel/helper-optimise-call-expression": {
|
|
221
|
-
"version": "7.16.
|
|
222
|
-
"resolved": "https://registry.npmjs.org/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.16.
|
|
223
|
-
"integrity": "sha512-
|
|
230
|
+
"version": "7.16.7",
|
|
231
|
+
"resolved": "https://registry.npmjs.org/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.16.7.tgz",
|
|
232
|
+
"integrity": "sha512-EtgBhg7rd/JcnpZFXpBy0ze1YRfdm7BnBX4uKMBd3ixa3RGAE002JZB66FJyNH7g0F38U05pXmA5P8cBh7z+1w==",
|
|
224
233
|
"requires": {
|
|
225
|
-
"@babel/types": "^7.16.
|
|
234
|
+
"@babel/types": "^7.16.7"
|
|
226
235
|
}
|
|
227
236
|
},
|
|
228
237
|
"@babel/helper-plugin-utils": {
|
|
229
|
-
"version": "7.
|
|
230
|
-
"resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.
|
|
231
|
-
"integrity": "sha512
|
|
238
|
+
"version": "7.16.7",
|
|
239
|
+
"resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.16.7.tgz",
|
|
240
|
+
"integrity": "sha512-Qg3Nk7ZxpgMrsox6HreY1ZNKdBq7K72tDSliA6dCl5f007jR4ne8iD5UzuNnCJH2xBf2BEEVGr+/OL6Gdp7RxA=="
|
|
232
241
|
},
|
|
233
242
|
"@babel/helper-remap-async-to-generator": {
|
|
234
|
-
"version": "7.16.
|
|
235
|
-
"resolved": "https://registry.npmjs.org/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.16.
|
|
236
|
-
"integrity": "sha512-
|
|
243
|
+
"version": "7.16.8",
|
|
244
|
+
"resolved": "https://registry.npmjs.org/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.16.8.tgz",
|
|
245
|
+
"integrity": "sha512-fm0gH7Flb8H51LqJHy3HJ3wnE1+qtYR2A99K06ahwrawLdOFsCEWjZOrYricXJHoPSudNKxrMBUPEIPxiIIvBw==",
|
|
237
246
|
"requires": {
|
|
238
|
-
"@babel/helper-annotate-as-pure": "^7.16.
|
|
239
|
-
"@babel/helper-wrap-function": "^7.16.
|
|
240
|
-
"@babel/types": "^7.16.
|
|
247
|
+
"@babel/helper-annotate-as-pure": "^7.16.7",
|
|
248
|
+
"@babel/helper-wrap-function": "^7.16.8",
|
|
249
|
+
"@babel/types": "^7.16.8"
|
|
241
250
|
}
|
|
242
251
|
},
|
|
243
252
|
"@babel/helper-replace-supers": {
|
|
244
|
-
"version": "7.16.
|
|
245
|
-
"resolved": "https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.16.
|
|
246
|
-
"integrity": "sha512-
|
|
253
|
+
"version": "7.16.7",
|
|
254
|
+
"resolved": "https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.16.7.tgz",
|
|
255
|
+
"integrity": "sha512-y9vsWilTNaVnVh6xiJfABzsNpgDPKev9HnAgz6Gb1p6UUwf9NepdlsV7VXGCftJM+jqD5f7JIEubcpLjZj5dBw==",
|
|
247
256
|
"requires": {
|
|
248
|
-
"@babel/helper-
|
|
249
|
-
"@babel/helper-
|
|
250
|
-
"@babel/
|
|
251
|
-
"@babel/
|
|
257
|
+
"@babel/helper-environment-visitor": "^7.16.7",
|
|
258
|
+
"@babel/helper-member-expression-to-functions": "^7.16.7",
|
|
259
|
+
"@babel/helper-optimise-call-expression": "^7.16.7",
|
|
260
|
+
"@babel/traverse": "^7.16.7",
|
|
261
|
+
"@babel/types": "^7.16.7"
|
|
252
262
|
}
|
|
253
263
|
},
|
|
254
264
|
"@babel/helper-simple-access": {
|
|
255
|
-
"version": "7.
|
|
256
|
-
"resolved": "https://registry.npmjs.org/@babel/helper-simple-access/-/helper-simple-access-7.
|
|
257
|
-
"integrity": "sha512-
|
|
265
|
+
"version": "7.17.7",
|
|
266
|
+
"resolved": "https://registry.npmjs.org/@babel/helper-simple-access/-/helper-simple-access-7.17.7.tgz",
|
|
267
|
+
"integrity": "sha512-txyMCGroZ96i+Pxr3Je3lzEJjqwaRC9buMUgtomcrLe5Nd0+fk1h0LLA+ixUF5OW7AhHuQ7Es1WcQJZmZsz2XA==",
|
|
258
268
|
"requires": {
|
|
259
|
-
"@babel/types": "^7.
|
|
269
|
+
"@babel/types": "^7.17.0"
|
|
260
270
|
}
|
|
261
271
|
},
|
|
262
272
|
"@babel/helper-skip-transparent-expression-wrappers": {
|
|
@@ -268,218 +278,218 @@
|
|
|
268
278
|
}
|
|
269
279
|
},
|
|
270
280
|
"@babel/helper-split-export-declaration": {
|
|
271
|
-
"version": "7.16.
|
|
272
|
-
"resolved": "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.16.
|
|
273
|
-
"integrity": "sha512-
|
|
281
|
+
"version": "7.16.7",
|
|
282
|
+
"resolved": "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.16.7.tgz",
|
|
283
|
+
"integrity": "sha512-xbWoy/PFoxSWazIToT9Sif+jJTlrMcndIsaOKvTA6u7QEo7ilkRZpjew18/W3c7nm8fXdUDXh02VXTbZ0pGDNw==",
|
|
274
284
|
"requires": {
|
|
275
|
-
"@babel/types": "^7.16.
|
|
285
|
+
"@babel/types": "^7.16.7"
|
|
276
286
|
}
|
|
277
287
|
},
|
|
278
288
|
"@babel/helper-validator-identifier": {
|
|
279
|
-
"version": "7.
|
|
280
|
-
"resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.
|
|
281
|
-
"integrity": "sha512-
|
|
289
|
+
"version": "7.16.7",
|
|
290
|
+
"resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.16.7.tgz",
|
|
291
|
+
"integrity": "sha512-hsEnFemeiW4D08A5gUAZxLBTXpZ39P+a+DGDsHw1yxqyQ/jzFEnxf5uTEGp+3bzAbNOxU1paTgYS4ECU/IgfDw=="
|
|
282
292
|
},
|
|
283
293
|
"@babel/helper-validator-option": {
|
|
284
|
-
"version": "7.
|
|
285
|
-
"resolved": "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.
|
|
286
|
-
"integrity": "sha512-
|
|
294
|
+
"version": "7.16.7",
|
|
295
|
+
"resolved": "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.16.7.tgz",
|
|
296
|
+
"integrity": "sha512-TRtenOuRUVo9oIQGPC5G9DgK4743cdxvtOw0weQNpZXaS16SCBi5MNjZF8vba3ETURjZpTbVn7Vvcf2eAwFozQ=="
|
|
287
297
|
},
|
|
288
298
|
"@babel/helper-wrap-function": {
|
|
289
|
-
"version": "7.16.
|
|
290
|
-
"resolved": "https://registry.npmjs.org/@babel/helper-wrap-function/-/helper-wrap-function-7.16.
|
|
291
|
-
"integrity": "sha512-
|
|
299
|
+
"version": "7.16.8",
|
|
300
|
+
"resolved": "https://registry.npmjs.org/@babel/helper-wrap-function/-/helper-wrap-function-7.16.8.tgz",
|
|
301
|
+
"integrity": "sha512-8RpyRVIAW1RcDDGTA+GpPAwV22wXCfKOoM9bet6TLkGIFTkRQSkH1nMQ5Yet4MpoXe1ZwHPVtNasc2w0uZMqnw==",
|
|
292
302
|
"requires": {
|
|
293
|
-
"@babel/helper-function-name": "^7.16.
|
|
294
|
-
"@babel/template": "^7.16.
|
|
295
|
-
"@babel/traverse": "^7.16.
|
|
296
|
-
"@babel/types": "^7.16.
|
|
303
|
+
"@babel/helper-function-name": "^7.16.7",
|
|
304
|
+
"@babel/template": "^7.16.7",
|
|
305
|
+
"@babel/traverse": "^7.16.8",
|
|
306
|
+
"@babel/types": "^7.16.8"
|
|
297
307
|
}
|
|
298
308
|
},
|
|
299
309
|
"@babel/helpers": {
|
|
300
|
-
"version": "7.
|
|
301
|
-
"resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.
|
|
302
|
-
"integrity": "sha512-
|
|
310
|
+
"version": "7.17.9",
|
|
311
|
+
"resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.17.9.tgz",
|
|
312
|
+
"integrity": "sha512-cPCt915ShDWUEzEp3+UNRktO2n6v49l5RSnG9M5pS24hA+2FAc5si+Pn1i4VVbQQ+jh+bIZhPFQOJOzbrOYY1Q==",
|
|
303
313
|
"requires": {
|
|
304
|
-
"@babel/template": "^7.16.
|
|
305
|
-
"@babel/traverse": "^7.
|
|
306
|
-
"@babel/types": "^7.
|
|
314
|
+
"@babel/template": "^7.16.7",
|
|
315
|
+
"@babel/traverse": "^7.17.9",
|
|
316
|
+
"@babel/types": "^7.17.0"
|
|
307
317
|
}
|
|
308
318
|
},
|
|
309
319
|
"@babel/highlight": {
|
|
310
|
-
"version": "7.
|
|
311
|
-
"resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.
|
|
312
|
-
"integrity": "sha512-
|
|
320
|
+
"version": "7.17.9",
|
|
321
|
+
"resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.17.9.tgz",
|
|
322
|
+
"integrity": "sha512-J9PfEKCbFIv2X5bjTMiZu6Vf341N05QIY+d6FvVKynkG1S7G0j3I0QoRtWIrXhZ+/Nlb5Q0MzqL7TokEJ5BNHg==",
|
|
313
323
|
"requires": {
|
|
314
|
-
"@babel/helper-validator-identifier": "^7.
|
|
324
|
+
"@babel/helper-validator-identifier": "^7.16.7",
|
|
315
325
|
"chalk": "^2.0.0",
|
|
316
326
|
"js-tokens": "^4.0.0"
|
|
317
327
|
}
|
|
318
328
|
},
|
|
319
329
|
"@babel/parser": {
|
|
320
|
-
"version": "7.
|
|
321
|
-
"resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.
|
|
322
|
-
"integrity": "sha512-
|
|
330
|
+
"version": "7.17.10",
|
|
331
|
+
"resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.17.10.tgz",
|
|
332
|
+
"integrity": "sha512-n2Q6i+fnJqzOaq2VkdXxy2TCPCWQZHiCo0XqmrCvDWcZQKRyZzYi4Z0yxlBuN0w+r2ZHmre+Q087DSrw3pbJDQ=="
|
|
323
333
|
},
|
|
324
334
|
"@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression": {
|
|
325
|
-
"version": "7.16.
|
|
326
|
-
"resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression/-/plugin-bugfix-safari-id-destructuring-collision-in-function-expression-7.16.
|
|
327
|
-
"integrity": "sha512-
|
|
335
|
+
"version": "7.16.7",
|
|
336
|
+
"resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression/-/plugin-bugfix-safari-id-destructuring-collision-in-function-expression-7.16.7.tgz",
|
|
337
|
+
"integrity": "sha512-anv/DObl7waiGEnC24O9zqL0pSuI9hljihqiDuFHC8d7/bjr/4RLGPWuc8rYOff/QPzbEPSkzG8wGG9aDuhHRg==",
|
|
328
338
|
"requires": {
|
|
329
|
-
"@babel/helper-plugin-utils": "^7.
|
|
339
|
+
"@babel/helper-plugin-utils": "^7.16.7"
|
|
330
340
|
}
|
|
331
341
|
},
|
|
332
342
|
"@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": {
|
|
333
|
-
"version": "7.16.
|
|
334
|
-
"resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/-/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.16.
|
|
335
|
-
"integrity": "sha512-
|
|
343
|
+
"version": "7.16.7",
|
|
344
|
+
"resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/-/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.16.7.tgz",
|
|
345
|
+
"integrity": "sha512-di8vUHRdf+4aJ7ltXhaDbPoszdkh59AQtJM5soLsuHpQJdFQZOA4uGj0V2u/CZ8bJ/u8ULDL5yq6FO/bCXnKHw==",
|
|
336
346
|
"requires": {
|
|
337
|
-
"@babel/helper-plugin-utils": "^7.
|
|
347
|
+
"@babel/helper-plugin-utils": "^7.16.7",
|
|
338
348
|
"@babel/helper-skip-transparent-expression-wrappers": "^7.16.0",
|
|
339
|
-
"@babel/plugin-proposal-optional-chaining": "^7.16.
|
|
349
|
+
"@babel/plugin-proposal-optional-chaining": "^7.16.7"
|
|
340
350
|
}
|
|
341
351
|
},
|
|
342
352
|
"@babel/plugin-proposal-async-generator-functions": {
|
|
343
|
-
"version": "7.16.
|
|
344
|
-
"resolved": "https://registry.npmjs.org/@babel/plugin-proposal-async-generator-functions/-/plugin-proposal-async-generator-functions-7.16.
|
|
345
|
-
"integrity": "sha512
|
|
353
|
+
"version": "7.16.8",
|
|
354
|
+
"resolved": "https://registry.npmjs.org/@babel/plugin-proposal-async-generator-functions/-/plugin-proposal-async-generator-functions-7.16.8.tgz",
|
|
355
|
+
"integrity": "sha512-71YHIvMuiuqWJQkebWJtdhQTfd4Q4mF76q2IX37uZPkG9+olBxsX+rH1vkhFto4UeJZ9dPY2s+mDvhDm1u2BGQ==",
|
|
346
356
|
"requires": {
|
|
347
|
-
"@babel/helper-plugin-utils": "^7.
|
|
348
|
-
"@babel/helper-remap-async-to-generator": "^7.16.
|
|
357
|
+
"@babel/helper-plugin-utils": "^7.16.7",
|
|
358
|
+
"@babel/helper-remap-async-to-generator": "^7.16.8",
|
|
349
359
|
"@babel/plugin-syntax-async-generators": "^7.8.4"
|
|
350
360
|
}
|
|
351
361
|
},
|
|
352
362
|
"@babel/plugin-proposal-class-properties": {
|
|
353
|
-
"version": "7.16.
|
|
354
|
-
"resolved": "https://registry.npmjs.org/@babel/plugin-proposal-class-properties/-/plugin-proposal-class-properties-7.16.
|
|
355
|
-
"integrity": "sha512-
|
|
363
|
+
"version": "7.16.7",
|
|
364
|
+
"resolved": "https://registry.npmjs.org/@babel/plugin-proposal-class-properties/-/plugin-proposal-class-properties-7.16.7.tgz",
|
|
365
|
+
"integrity": "sha512-IobU0Xme31ewjYOShSIqd/ZGM/r/cuOz2z0MDbNrhF5FW+ZVgi0f2lyeoj9KFPDOAqsYxmLWZte1WOwlvY9aww==",
|
|
356
366
|
"requires": {
|
|
357
|
-
"@babel/helper-create-class-features-plugin": "^7.16.
|
|
358
|
-
"@babel/helper-plugin-utils": "^7.
|
|
367
|
+
"@babel/helper-create-class-features-plugin": "^7.16.7",
|
|
368
|
+
"@babel/helper-plugin-utils": "^7.16.7"
|
|
359
369
|
}
|
|
360
370
|
},
|
|
361
371
|
"@babel/plugin-proposal-class-static-block": {
|
|
362
|
-
"version": "7.
|
|
363
|
-
"resolved": "https://registry.npmjs.org/@babel/plugin-proposal-class-static-block/-/plugin-proposal-class-static-block-7.
|
|
364
|
-
"integrity": "sha512-
|
|
372
|
+
"version": "7.17.6",
|
|
373
|
+
"resolved": "https://registry.npmjs.org/@babel/plugin-proposal-class-static-block/-/plugin-proposal-class-static-block-7.17.6.tgz",
|
|
374
|
+
"integrity": "sha512-X/tididvL2zbs7jZCeeRJ8167U/+Ac135AM6jCAx6gYXDUviZV5Ku9UDvWS2NCuWlFjIRXklYhwo6HhAC7ETnA==",
|
|
365
375
|
"requires": {
|
|
366
|
-
"@babel/helper-create-class-features-plugin": "^7.
|
|
367
|
-
"@babel/helper-plugin-utils": "^7.
|
|
376
|
+
"@babel/helper-create-class-features-plugin": "^7.17.6",
|
|
377
|
+
"@babel/helper-plugin-utils": "^7.16.7",
|
|
368
378
|
"@babel/plugin-syntax-class-static-block": "^7.14.5"
|
|
369
379
|
}
|
|
370
380
|
},
|
|
371
381
|
"@babel/plugin-proposal-dynamic-import": {
|
|
372
|
-
"version": "7.16.
|
|
373
|
-
"resolved": "https://registry.npmjs.org/@babel/plugin-proposal-dynamic-import/-/plugin-proposal-dynamic-import-7.16.
|
|
374
|
-
"integrity": "sha512-
|
|
382
|
+
"version": "7.16.7",
|
|
383
|
+
"resolved": "https://registry.npmjs.org/@babel/plugin-proposal-dynamic-import/-/plugin-proposal-dynamic-import-7.16.7.tgz",
|
|
384
|
+
"integrity": "sha512-I8SW9Ho3/8DRSdmDdH3gORdyUuYnk1m4cMxUAdu5oy4n3OfN8flDEH+d60iG7dUfi0KkYwSvoalHzzdRzpWHTg==",
|
|
375
385
|
"requires": {
|
|
376
|
-
"@babel/helper-plugin-utils": "^7.
|
|
386
|
+
"@babel/helper-plugin-utils": "^7.16.7",
|
|
377
387
|
"@babel/plugin-syntax-dynamic-import": "^7.8.3"
|
|
378
388
|
}
|
|
379
389
|
},
|
|
380
390
|
"@babel/plugin-proposal-export-namespace-from": {
|
|
381
|
-
"version": "7.16.
|
|
382
|
-
"resolved": "https://registry.npmjs.org/@babel/plugin-proposal-export-namespace-from/-/plugin-proposal-export-namespace-from-7.16.
|
|
383
|
-
"integrity": "sha512-
|
|
391
|
+
"version": "7.16.7",
|
|
392
|
+
"resolved": "https://registry.npmjs.org/@babel/plugin-proposal-export-namespace-from/-/plugin-proposal-export-namespace-from-7.16.7.tgz",
|
|
393
|
+
"integrity": "sha512-ZxdtqDXLRGBL64ocZcs7ovt71L3jhC1RGSyR996svrCi3PYqHNkb3SwPJCs8RIzD86s+WPpt2S73+EHCGO+NUA==",
|
|
384
394
|
"requires": {
|
|
385
|
-
"@babel/helper-plugin-utils": "^7.
|
|
395
|
+
"@babel/helper-plugin-utils": "^7.16.7",
|
|
386
396
|
"@babel/plugin-syntax-export-namespace-from": "^7.8.3"
|
|
387
397
|
}
|
|
388
398
|
},
|
|
389
399
|
"@babel/plugin-proposal-json-strings": {
|
|
390
|
-
"version": "7.16.
|
|
391
|
-
"resolved": "https://registry.npmjs.org/@babel/plugin-proposal-json-strings/-/plugin-proposal-json-strings-7.16.
|
|
392
|
-
"integrity": "sha512-
|
|
400
|
+
"version": "7.16.7",
|
|
401
|
+
"resolved": "https://registry.npmjs.org/@babel/plugin-proposal-json-strings/-/plugin-proposal-json-strings-7.16.7.tgz",
|
|
402
|
+
"integrity": "sha512-lNZ3EEggsGY78JavgbHsK9u5P3pQaW7k4axlgFLYkMd7UBsiNahCITShLjNQschPyjtO6dADrL24757IdhBrsQ==",
|
|
393
403
|
"requires": {
|
|
394
|
-
"@babel/helper-plugin-utils": "^7.
|
|
404
|
+
"@babel/helper-plugin-utils": "^7.16.7",
|
|
395
405
|
"@babel/plugin-syntax-json-strings": "^7.8.3"
|
|
396
406
|
}
|
|
397
407
|
},
|
|
398
408
|
"@babel/plugin-proposal-logical-assignment-operators": {
|
|
399
|
-
"version": "7.16.
|
|
400
|
-
"resolved": "https://registry.npmjs.org/@babel/plugin-proposal-logical-assignment-operators/-/plugin-proposal-logical-assignment-operators-7.16.
|
|
401
|
-
"integrity": "sha512-
|
|
409
|
+
"version": "7.16.7",
|
|
410
|
+
"resolved": "https://registry.npmjs.org/@babel/plugin-proposal-logical-assignment-operators/-/plugin-proposal-logical-assignment-operators-7.16.7.tgz",
|
|
411
|
+
"integrity": "sha512-K3XzyZJGQCr00+EtYtrDjmwX7o7PLK6U9bi1nCwkQioRFVUv6dJoxbQjtWVtP+bCPy82bONBKG8NPyQ4+i6yjg==",
|
|
402
412
|
"requires": {
|
|
403
|
-
"@babel/helper-plugin-utils": "^7.
|
|
413
|
+
"@babel/helper-plugin-utils": "^7.16.7",
|
|
404
414
|
"@babel/plugin-syntax-logical-assignment-operators": "^7.10.4"
|
|
405
415
|
}
|
|
406
416
|
},
|
|
407
417
|
"@babel/plugin-proposal-nullish-coalescing-operator": {
|
|
408
|
-
"version": "7.16.
|
|
409
|
-
"resolved": "https://registry.npmjs.org/@babel/plugin-proposal-nullish-coalescing-operator/-/plugin-proposal-nullish-coalescing-operator-7.16.
|
|
410
|
-
"integrity": "sha512-
|
|
418
|
+
"version": "7.16.7",
|
|
419
|
+
"resolved": "https://registry.npmjs.org/@babel/plugin-proposal-nullish-coalescing-operator/-/plugin-proposal-nullish-coalescing-operator-7.16.7.tgz",
|
|
420
|
+
"integrity": "sha512-aUOrYU3EVtjf62jQrCj63pYZ7k6vns2h/DQvHPWGmsJRYzWXZ6/AsfgpiRy6XiuIDADhJzP2Q9MwSMKauBQ+UQ==",
|
|
411
421
|
"requires": {
|
|
412
|
-
"@babel/helper-plugin-utils": "^7.
|
|
422
|
+
"@babel/helper-plugin-utils": "^7.16.7",
|
|
413
423
|
"@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.3"
|
|
414
424
|
}
|
|
415
425
|
},
|
|
416
426
|
"@babel/plugin-proposal-numeric-separator": {
|
|
417
|
-
"version": "7.16.
|
|
418
|
-
"resolved": "https://registry.npmjs.org/@babel/plugin-proposal-numeric-separator/-/plugin-proposal-numeric-separator-7.16.
|
|
419
|
-
"integrity": "sha512-
|
|
427
|
+
"version": "7.16.7",
|
|
428
|
+
"resolved": "https://registry.npmjs.org/@babel/plugin-proposal-numeric-separator/-/plugin-proposal-numeric-separator-7.16.7.tgz",
|
|
429
|
+
"integrity": "sha512-vQgPMknOIgiuVqbokToyXbkY/OmmjAzr/0lhSIbG/KmnzXPGwW/AdhdKpi+O4X/VkWiWjnkKOBiqJrTaC98VKw==",
|
|
420
430
|
"requires": {
|
|
421
|
-
"@babel/helper-plugin-utils": "^7.
|
|
431
|
+
"@babel/helper-plugin-utils": "^7.16.7",
|
|
422
432
|
"@babel/plugin-syntax-numeric-separator": "^7.10.4"
|
|
423
433
|
}
|
|
424
434
|
},
|
|
425
435
|
"@babel/plugin-proposal-object-rest-spread": {
|
|
426
|
-
"version": "7.
|
|
427
|
-
"resolved": "https://registry.npmjs.org/@babel/plugin-proposal-object-rest-spread/-/plugin-proposal-object-rest-spread-7.
|
|
428
|
-
"integrity": "sha512-
|
|
436
|
+
"version": "7.17.3",
|
|
437
|
+
"resolved": "https://registry.npmjs.org/@babel/plugin-proposal-object-rest-spread/-/plugin-proposal-object-rest-spread-7.17.3.tgz",
|
|
438
|
+
"integrity": "sha512-yuL5iQA/TbZn+RGAfxQXfi7CNLmKi1f8zInn4IgobuCWcAb7i+zj4TYzQ9l8cEzVyJ89PDGuqxK1xZpUDISesw==",
|
|
429
439
|
"requires": {
|
|
430
|
-
"@babel/compat-data": "^7.
|
|
431
|
-
"@babel/helper-compilation-targets": "^7.16.
|
|
432
|
-
"@babel/helper-plugin-utils": "^7.
|
|
440
|
+
"@babel/compat-data": "^7.17.0",
|
|
441
|
+
"@babel/helper-compilation-targets": "^7.16.7",
|
|
442
|
+
"@babel/helper-plugin-utils": "^7.16.7",
|
|
433
443
|
"@babel/plugin-syntax-object-rest-spread": "^7.8.3",
|
|
434
|
-
"@babel/plugin-transform-parameters": "^7.16.
|
|
444
|
+
"@babel/plugin-transform-parameters": "^7.16.7"
|
|
435
445
|
}
|
|
436
446
|
},
|
|
437
447
|
"@babel/plugin-proposal-optional-catch-binding": {
|
|
438
|
-
"version": "7.16.
|
|
439
|
-
"resolved": "https://registry.npmjs.org/@babel/plugin-proposal-optional-catch-binding/-/plugin-proposal-optional-catch-binding-7.16.
|
|
440
|
-
"integrity": "sha512-
|
|
448
|
+
"version": "7.16.7",
|
|
449
|
+
"resolved": "https://registry.npmjs.org/@babel/plugin-proposal-optional-catch-binding/-/plugin-proposal-optional-catch-binding-7.16.7.tgz",
|
|
450
|
+
"integrity": "sha512-eMOH/L4OvWSZAE1VkHbr1vckLG1WUcHGJSLqqQwl2GaUqG6QjddvrOaTUMNYiv77H5IKPMZ9U9P7EaHwvAShfA==",
|
|
441
451
|
"requires": {
|
|
442
|
-
"@babel/helper-plugin-utils": "^7.
|
|
452
|
+
"@babel/helper-plugin-utils": "^7.16.7",
|
|
443
453
|
"@babel/plugin-syntax-optional-catch-binding": "^7.8.3"
|
|
444
454
|
}
|
|
445
455
|
},
|
|
446
456
|
"@babel/plugin-proposal-optional-chaining": {
|
|
447
|
-
"version": "7.16.
|
|
448
|
-
"resolved": "https://registry.npmjs.org/@babel/plugin-proposal-optional-chaining/-/plugin-proposal-optional-chaining-7.16.
|
|
449
|
-
"integrity": "sha512-
|
|
457
|
+
"version": "7.16.7",
|
|
458
|
+
"resolved": "https://registry.npmjs.org/@babel/plugin-proposal-optional-chaining/-/plugin-proposal-optional-chaining-7.16.7.tgz",
|
|
459
|
+
"integrity": "sha512-eC3xy+ZrUcBtP7x+sq62Q/HYd674pPTb/77XZMb5wbDPGWIdUbSr4Agr052+zaUPSb+gGRnjxXfKFvx5iMJ+DA==",
|
|
450
460
|
"requires": {
|
|
451
|
-
"@babel/helper-plugin-utils": "^7.
|
|
461
|
+
"@babel/helper-plugin-utils": "^7.16.7",
|
|
452
462
|
"@babel/helper-skip-transparent-expression-wrappers": "^7.16.0",
|
|
453
463
|
"@babel/plugin-syntax-optional-chaining": "^7.8.3"
|
|
454
464
|
}
|
|
455
465
|
},
|
|
456
466
|
"@babel/plugin-proposal-private-methods": {
|
|
457
|
-
"version": "7.16.
|
|
458
|
-
"resolved": "https://registry.npmjs.org/@babel/plugin-proposal-private-methods/-/plugin-proposal-private-methods-7.16.
|
|
459
|
-
"integrity": "sha512-
|
|
467
|
+
"version": "7.16.11",
|
|
468
|
+
"resolved": "https://registry.npmjs.org/@babel/plugin-proposal-private-methods/-/plugin-proposal-private-methods-7.16.11.tgz",
|
|
469
|
+
"integrity": "sha512-F/2uAkPlXDr8+BHpZvo19w3hLFKge+k75XUprE6jaqKxjGkSYcK+4c+bup5PdW/7W/Rpjwql7FTVEDW+fRAQsw==",
|
|
460
470
|
"requires": {
|
|
461
|
-
"@babel/helper-create-class-features-plugin": "^7.16.
|
|
462
|
-
"@babel/helper-plugin-utils": "^7.
|
|
471
|
+
"@babel/helper-create-class-features-plugin": "^7.16.10",
|
|
472
|
+
"@babel/helper-plugin-utils": "^7.16.7"
|
|
463
473
|
}
|
|
464
474
|
},
|
|
465
475
|
"@babel/plugin-proposal-private-property-in-object": {
|
|
466
|
-
"version": "7.16.
|
|
467
|
-
"resolved": "https://registry.npmjs.org/@babel/plugin-proposal-private-property-in-object/-/plugin-proposal-private-property-in-object-7.16.
|
|
468
|
-
"integrity": "sha512-
|
|
476
|
+
"version": "7.16.7",
|
|
477
|
+
"resolved": "https://registry.npmjs.org/@babel/plugin-proposal-private-property-in-object/-/plugin-proposal-private-property-in-object-7.16.7.tgz",
|
|
478
|
+
"integrity": "sha512-rMQkjcOFbm+ufe3bTZLyOfsOUOxyvLXZJCTARhJr+8UMSoZmqTe1K1BgkFcrW37rAchWg57yI69ORxiWvUINuQ==",
|
|
469
479
|
"requires": {
|
|
470
|
-
"@babel/helper-annotate-as-pure": "^7.16.
|
|
471
|
-
"@babel/helper-create-class-features-plugin": "^7.16.
|
|
472
|
-
"@babel/helper-plugin-utils": "^7.
|
|
480
|
+
"@babel/helper-annotate-as-pure": "^7.16.7",
|
|
481
|
+
"@babel/helper-create-class-features-plugin": "^7.16.7",
|
|
482
|
+
"@babel/helper-plugin-utils": "^7.16.7",
|
|
473
483
|
"@babel/plugin-syntax-private-property-in-object": "^7.14.5"
|
|
474
484
|
}
|
|
475
485
|
},
|
|
476
486
|
"@babel/plugin-proposal-unicode-property-regex": {
|
|
477
|
-
"version": "7.16.
|
|
478
|
-
"resolved": "https://registry.npmjs.org/@babel/plugin-proposal-unicode-property-regex/-/plugin-proposal-unicode-property-regex-7.16.
|
|
479
|
-
"integrity": "sha512-
|
|
487
|
+
"version": "7.16.7",
|
|
488
|
+
"resolved": "https://registry.npmjs.org/@babel/plugin-proposal-unicode-property-regex/-/plugin-proposal-unicode-property-regex-7.16.7.tgz",
|
|
489
|
+
"integrity": "sha512-QRK0YI/40VLhNVGIjRNAAQkEHws0cswSdFFjpFyt943YmJIU1da9uW63Iu6NFV6CxTZW5eTDCrwZUstBWgp/Rg==",
|
|
480
490
|
"requires": {
|
|
481
|
-
"@babel/helper-create-regexp-features-plugin": "^7.16.
|
|
482
|
-
"@babel/helper-plugin-utils": "^7.
|
|
491
|
+
"@babel/helper-create-regexp-features-plugin": "^7.16.7",
|
|
492
|
+
"@babel/helper-plugin-utils": "^7.16.7"
|
|
483
493
|
}
|
|
484
494
|
},
|
|
485
495
|
"@babel/plugin-syntax-async-generators": {
|
|
@@ -536,13 +546,6 @@
|
|
|
536
546
|
"integrity": "sha512-Esxmk7YjA8QysKeT3VhTXvF6y77f/a91SIs4pWb4H2eWGQkCKFgQaG6hdoEVZtGsrAcb2K5BW66XsOErD4WU3Q==",
|
|
537
547
|
"requires": {
|
|
538
548
|
"@babel/helper-plugin-utils": "^7.16.7"
|
|
539
|
-
},
|
|
540
|
-
"dependencies": {
|
|
541
|
-
"@babel/helper-plugin-utils": {
|
|
542
|
-
"version": "7.16.7",
|
|
543
|
-
"resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.16.7.tgz",
|
|
544
|
-
"integrity": "sha512-Qg3Nk7ZxpgMrsox6HreY1ZNKdBq7K72tDSliA6dCl5f007jR4ne8iD5UzuNnCJH2xBf2BEEVGr+/OL6Gdp7RxA=="
|
|
545
|
-
}
|
|
546
549
|
}
|
|
547
550
|
},
|
|
548
551
|
"@babel/plugin-syntax-logical-assignment-operators": {
|
|
@@ -618,209 +621,211 @@
|
|
|
618
621
|
}
|
|
619
622
|
},
|
|
620
623
|
"@babel/plugin-transform-arrow-functions": {
|
|
621
|
-
"version": "7.16.
|
|
622
|
-
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.16.
|
|
623
|
-
"integrity": "sha512-
|
|
624
|
+
"version": "7.16.7",
|
|
625
|
+
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.16.7.tgz",
|
|
626
|
+
"integrity": "sha512-9ffkFFMbvzTvv+7dTp/66xvZAWASuPD5Tl9LK3Z9vhOmANo6j94rik+5YMBt4CwHVMWLWpMsriIc2zsa3WW3xQ==",
|
|
624
627
|
"requires": {
|
|
625
|
-
"@babel/helper-plugin-utils": "^7.
|
|
628
|
+
"@babel/helper-plugin-utils": "^7.16.7"
|
|
626
629
|
}
|
|
627
630
|
},
|
|
628
631
|
"@babel/plugin-transform-async-to-generator": {
|
|
629
|
-
"version": "7.16.
|
|
630
|
-
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.16.
|
|
631
|
-
"integrity": "sha512-
|
|
632
|
+
"version": "7.16.8",
|
|
633
|
+
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.16.8.tgz",
|
|
634
|
+
"integrity": "sha512-MtmUmTJQHCnyJVrScNzNlofQJ3dLFuobYn3mwOTKHnSCMtbNsqvF71GQmJfFjdrXSsAA7iysFmYWw4bXZ20hOg==",
|
|
632
635
|
"requires": {
|
|
633
|
-
"@babel/helper-module-imports": "^7.16.
|
|
634
|
-
"@babel/helper-plugin-utils": "^7.
|
|
635
|
-
"@babel/helper-remap-async-to-generator": "^7.16.
|
|
636
|
+
"@babel/helper-module-imports": "^7.16.7",
|
|
637
|
+
"@babel/helper-plugin-utils": "^7.16.7",
|
|
638
|
+
"@babel/helper-remap-async-to-generator": "^7.16.8"
|
|
636
639
|
}
|
|
637
640
|
},
|
|
638
641
|
"@babel/plugin-transform-block-scoped-functions": {
|
|
639
|
-
"version": "7.16.
|
|
640
|
-
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.16.
|
|
641
|
-
"integrity": "sha512-
|
|
642
|
+
"version": "7.16.7",
|
|
643
|
+
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.16.7.tgz",
|
|
644
|
+
"integrity": "sha512-JUuzlzmF40Z9cXyytcbZEZKckgrQzChbQJw/5PuEHYeqzCsvebDx0K0jWnIIVcmmDOAVctCgnYs0pMcrYj2zJg==",
|
|
642
645
|
"requires": {
|
|
643
|
-
"@babel/helper-plugin-utils": "^7.
|
|
646
|
+
"@babel/helper-plugin-utils": "^7.16.7"
|
|
644
647
|
}
|
|
645
648
|
},
|
|
646
649
|
"@babel/plugin-transform-block-scoping": {
|
|
647
|
-
"version": "7.16.
|
|
648
|
-
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.16.
|
|
649
|
-
"integrity": "sha512-
|
|
650
|
+
"version": "7.16.7",
|
|
651
|
+
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.16.7.tgz",
|
|
652
|
+
"integrity": "sha512-ObZev2nxVAYA4bhyusELdo9hb3H+A56bxH3FZMbEImZFiEDYVHXQSJ1hQKFlDnlt8G9bBrCZ5ZpURZUrV4G5qQ==",
|
|
650
653
|
"requires": {
|
|
651
|
-
"@babel/helper-plugin-utils": "^7.
|
|
654
|
+
"@babel/helper-plugin-utils": "^7.16.7"
|
|
652
655
|
}
|
|
653
656
|
},
|
|
654
657
|
"@babel/plugin-transform-classes": {
|
|
655
|
-
"version": "7.16.
|
|
656
|
-
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-classes/-/plugin-transform-classes-7.16.
|
|
657
|
-
"integrity": "sha512-
|
|
658
|
-
"requires": {
|
|
659
|
-
"@babel/helper-annotate-as-pure": "^7.16.
|
|
660
|
-
"@babel/helper-
|
|
661
|
-
"@babel/helper-
|
|
662
|
-
"@babel/helper-
|
|
663
|
-
"@babel/helper-
|
|
664
|
-
"@babel/helper-
|
|
658
|
+
"version": "7.16.7",
|
|
659
|
+
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-classes/-/plugin-transform-classes-7.16.7.tgz",
|
|
660
|
+
"integrity": "sha512-WY7og38SFAGYRe64BrjKf8OrE6ulEHtr5jEYaZMwox9KebgqPi67Zqz8K53EKk1fFEJgm96r32rkKZ3qA2nCWQ==",
|
|
661
|
+
"requires": {
|
|
662
|
+
"@babel/helper-annotate-as-pure": "^7.16.7",
|
|
663
|
+
"@babel/helper-environment-visitor": "^7.16.7",
|
|
664
|
+
"@babel/helper-function-name": "^7.16.7",
|
|
665
|
+
"@babel/helper-optimise-call-expression": "^7.16.7",
|
|
666
|
+
"@babel/helper-plugin-utils": "^7.16.7",
|
|
667
|
+
"@babel/helper-replace-supers": "^7.16.7",
|
|
668
|
+
"@babel/helper-split-export-declaration": "^7.16.7",
|
|
665
669
|
"globals": "^11.1.0"
|
|
666
670
|
}
|
|
667
671
|
},
|
|
668
672
|
"@babel/plugin-transform-computed-properties": {
|
|
669
|
-
"version": "7.16.
|
|
670
|
-
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.16.
|
|
671
|
-
"integrity": "sha512-
|
|
673
|
+
"version": "7.16.7",
|
|
674
|
+
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.16.7.tgz",
|
|
675
|
+
"integrity": "sha512-gN72G9bcmenVILj//sv1zLNaPyYcOzUho2lIJBMh/iakJ9ygCo/hEF9cpGb61SCMEDxbbyBoVQxrt+bWKu5KGw==",
|
|
672
676
|
"requires": {
|
|
673
|
-
"@babel/helper-plugin-utils": "^7.
|
|
677
|
+
"@babel/helper-plugin-utils": "^7.16.7"
|
|
674
678
|
}
|
|
675
679
|
},
|
|
676
680
|
"@babel/plugin-transform-destructuring": {
|
|
677
|
-
"version": "7.
|
|
678
|
-
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.
|
|
679
|
-
"integrity": "sha512-
|
|
681
|
+
"version": "7.17.7",
|
|
682
|
+
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.17.7.tgz",
|
|
683
|
+
"integrity": "sha512-XVh0r5yq9sLR4vZ6eVZe8FKfIcSgaTBxVBRSYokRj2qksf6QerYnTxz9/GTuKTH/n/HwLP7t6gtlybHetJ/6hQ==",
|
|
680
684
|
"requires": {
|
|
681
|
-
"@babel/helper-plugin-utils": "^7.
|
|
685
|
+
"@babel/helper-plugin-utils": "^7.16.7"
|
|
682
686
|
}
|
|
683
687
|
},
|
|
684
688
|
"@babel/plugin-transform-dotall-regex": {
|
|
685
|
-
"version": "7.16.
|
|
686
|
-
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.16.
|
|
687
|
-
"integrity": "sha512-
|
|
689
|
+
"version": "7.16.7",
|
|
690
|
+
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.16.7.tgz",
|
|
691
|
+
"integrity": "sha512-Lyttaao2SjZF6Pf4vk1dVKv8YypMpomAbygW+mU5cYP3S5cWTfCJjG8xV6CFdzGFlfWK81IjL9viiTvpb6G7gQ==",
|
|
688
692
|
"requires": {
|
|
689
|
-
"@babel/helper-create-regexp-features-plugin": "^7.16.
|
|
690
|
-
"@babel/helper-plugin-utils": "^7.
|
|
693
|
+
"@babel/helper-create-regexp-features-plugin": "^7.16.7",
|
|
694
|
+
"@babel/helper-plugin-utils": "^7.16.7"
|
|
691
695
|
}
|
|
692
696
|
},
|
|
693
697
|
"@babel/plugin-transform-duplicate-keys": {
|
|
694
|
-
"version": "7.16.
|
|
695
|
-
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.16.
|
|
696
|
-
"integrity": "sha512-
|
|
698
|
+
"version": "7.16.7",
|
|
699
|
+
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.16.7.tgz",
|
|
700
|
+
"integrity": "sha512-03DvpbRfvWIXyK0/6QiR1KMTWeT6OcQ7tbhjrXyFS02kjuX/mu5Bvnh5SDSWHxyawit2g5aWhKwI86EE7GUnTw==",
|
|
697
701
|
"requires": {
|
|
698
|
-
"@babel/helper-plugin-utils": "^7.
|
|
702
|
+
"@babel/helper-plugin-utils": "^7.16.7"
|
|
699
703
|
}
|
|
700
704
|
},
|
|
701
705
|
"@babel/plugin-transform-exponentiation-operator": {
|
|
702
|
-
"version": "7.16.
|
|
703
|
-
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.16.
|
|
704
|
-
"integrity": "sha512-
|
|
706
|
+
"version": "7.16.7",
|
|
707
|
+
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.16.7.tgz",
|
|
708
|
+
"integrity": "sha512-8UYLSlyLgRixQvlYH3J2ekXFHDFLQutdy7FfFAMm3CPZ6q9wHCwnUyiXpQCe3gVVnQlHc5nsuiEVziteRNTXEA==",
|
|
705
709
|
"requires": {
|
|
706
|
-
"@babel/helper-builder-binary-assignment-operator-visitor": "^7.16.
|
|
707
|
-
"@babel/helper-plugin-utils": "^7.
|
|
710
|
+
"@babel/helper-builder-binary-assignment-operator-visitor": "^7.16.7",
|
|
711
|
+
"@babel/helper-plugin-utils": "^7.16.7"
|
|
708
712
|
}
|
|
709
713
|
},
|
|
710
714
|
"@babel/plugin-transform-for-of": {
|
|
711
|
-
"version": "7.16.
|
|
712
|
-
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.16.
|
|
713
|
-
"integrity": "sha512
|
|
715
|
+
"version": "7.16.7",
|
|
716
|
+
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.16.7.tgz",
|
|
717
|
+
"integrity": "sha512-/QZm9W92Ptpw7sjI9Nx1mbcsWz33+l8kuMIQnDwgQBG5s3fAfQvkRjQ7NqXhtNcKOnPkdICmUHyCaWW06HCsqg==",
|
|
714
718
|
"requires": {
|
|
715
|
-
"@babel/helper-plugin-utils": "^7.
|
|
719
|
+
"@babel/helper-plugin-utils": "^7.16.7"
|
|
716
720
|
}
|
|
717
721
|
},
|
|
718
722
|
"@babel/plugin-transform-function-name": {
|
|
719
|
-
"version": "7.16.
|
|
720
|
-
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.16.
|
|
721
|
-
"integrity": "sha512-
|
|
723
|
+
"version": "7.16.7",
|
|
724
|
+
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.16.7.tgz",
|
|
725
|
+
"integrity": "sha512-SU/C68YVwTRxqWj5kgsbKINakGag0KTgq9f2iZEXdStoAbOzLHEBRYzImmA6yFo8YZhJVflvXmIHUO7GWHmxxA==",
|
|
722
726
|
"requires": {
|
|
723
|
-
"@babel/helper-
|
|
724
|
-
"@babel/helper-
|
|
727
|
+
"@babel/helper-compilation-targets": "^7.16.7",
|
|
728
|
+
"@babel/helper-function-name": "^7.16.7",
|
|
729
|
+
"@babel/helper-plugin-utils": "^7.16.7"
|
|
725
730
|
}
|
|
726
731
|
},
|
|
727
732
|
"@babel/plugin-transform-literals": {
|
|
728
|
-
"version": "7.16.
|
|
729
|
-
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-literals/-/plugin-transform-literals-7.16.
|
|
730
|
-
"integrity": "sha512-
|
|
733
|
+
"version": "7.16.7",
|
|
734
|
+
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-literals/-/plugin-transform-literals-7.16.7.tgz",
|
|
735
|
+
"integrity": "sha512-6tH8RTpTWI0s2sV6uq3e/C9wPo4PTqqZps4uF0kzQ9/xPLFQtipynvmT1g/dOfEJ+0EQsHhkQ/zyRId8J2b8zQ==",
|
|
731
736
|
"requires": {
|
|
732
|
-
"@babel/helper-plugin-utils": "^7.
|
|
737
|
+
"@babel/helper-plugin-utils": "^7.16.7"
|
|
733
738
|
}
|
|
734
739
|
},
|
|
735
740
|
"@babel/plugin-transform-member-expression-literals": {
|
|
736
|
-
"version": "7.16.
|
|
737
|
-
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-member-expression-literals/-/plugin-transform-member-expression-literals-7.16.
|
|
738
|
-
"integrity": "sha512-
|
|
741
|
+
"version": "7.16.7",
|
|
742
|
+
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-member-expression-literals/-/plugin-transform-member-expression-literals-7.16.7.tgz",
|
|
743
|
+
"integrity": "sha512-mBruRMbktKQwbxaJof32LT9KLy2f3gH+27a5XSuXo6h7R3vqltl0PgZ80C8ZMKw98Bf8bqt6BEVi3svOh2PzMw==",
|
|
739
744
|
"requires": {
|
|
740
|
-
"@babel/helper-plugin-utils": "^7.
|
|
745
|
+
"@babel/helper-plugin-utils": "^7.16.7"
|
|
741
746
|
}
|
|
742
747
|
},
|
|
743
748
|
"@babel/plugin-transform-modules-amd": {
|
|
744
|
-
"version": "7.16.
|
|
745
|
-
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.16.
|
|
746
|
-
"integrity": "sha512-
|
|
749
|
+
"version": "7.16.7",
|
|
750
|
+
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.16.7.tgz",
|
|
751
|
+
"integrity": "sha512-KaaEtgBL7FKYwjJ/teH63oAmE3lP34N3kshz8mm4VMAw7U3PxjVwwUmxEFksbgsNUaO3wId9R2AVQYSEGRa2+g==",
|
|
747
752
|
"requires": {
|
|
748
|
-
"@babel/helper-module-transforms": "^7.16.
|
|
749
|
-
"@babel/helper-plugin-utils": "^7.
|
|
753
|
+
"@babel/helper-module-transforms": "^7.16.7",
|
|
754
|
+
"@babel/helper-plugin-utils": "^7.16.7",
|
|
750
755
|
"babel-plugin-dynamic-import-node": "^2.3.3"
|
|
751
756
|
}
|
|
752
757
|
},
|
|
753
758
|
"@babel/plugin-transform-modules-commonjs": {
|
|
754
|
-
"version": "7.
|
|
755
|
-
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.
|
|
756
|
-
"integrity": "sha512-
|
|
759
|
+
"version": "7.17.9",
|
|
760
|
+
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.17.9.tgz",
|
|
761
|
+
"integrity": "sha512-2TBFd/r2I6VlYn0YRTz2JdazS+FoUuQ2rIFHoAxtyP/0G3D82SBLaRq9rnUkpqlLg03Byfl/+M32mpxjO6KaPw==",
|
|
757
762
|
"requires": {
|
|
758
|
-
"@babel/helper-module-transforms": "^7.
|
|
759
|
-
"@babel/helper-plugin-utils": "^7.
|
|
760
|
-
"@babel/helper-simple-access": "^7.
|
|
763
|
+
"@babel/helper-module-transforms": "^7.17.7",
|
|
764
|
+
"@babel/helper-plugin-utils": "^7.16.7",
|
|
765
|
+
"@babel/helper-simple-access": "^7.17.7",
|
|
761
766
|
"babel-plugin-dynamic-import-node": "^2.3.3"
|
|
762
767
|
}
|
|
763
768
|
},
|
|
764
769
|
"@babel/plugin-transform-modules-systemjs": {
|
|
765
|
-
"version": "7.
|
|
766
|
-
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.
|
|
767
|
-
"integrity": "sha512-
|
|
768
|
-
"requires": {
|
|
769
|
-
"@babel/helper-hoist-variables": "^7.16.
|
|
770
|
-
"@babel/helper-module-transforms": "^7.
|
|
771
|
-
"@babel/helper-plugin-utils": "^7.
|
|
772
|
-
"@babel/helper-validator-identifier": "^7.
|
|
770
|
+
"version": "7.17.8",
|
|
771
|
+
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.17.8.tgz",
|
|
772
|
+
"integrity": "sha512-39reIkMTUVagzgA5x88zDYXPCMT6lcaRKs1+S9K6NKBPErbgO/w/kP8GlNQTC87b412ZTlmNgr3k2JrWgHH+Bw==",
|
|
773
|
+
"requires": {
|
|
774
|
+
"@babel/helper-hoist-variables": "^7.16.7",
|
|
775
|
+
"@babel/helper-module-transforms": "^7.17.7",
|
|
776
|
+
"@babel/helper-plugin-utils": "^7.16.7",
|
|
777
|
+
"@babel/helper-validator-identifier": "^7.16.7",
|
|
773
778
|
"babel-plugin-dynamic-import-node": "^2.3.3"
|
|
774
779
|
}
|
|
775
780
|
},
|
|
776
781
|
"@babel/plugin-transform-modules-umd": {
|
|
777
|
-
"version": "7.16.
|
|
778
|
-
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-umd/-/plugin-transform-modules-umd-7.16.
|
|
779
|
-
"integrity": "sha512-
|
|
782
|
+
"version": "7.16.7",
|
|
783
|
+
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-umd/-/plugin-transform-modules-umd-7.16.7.tgz",
|
|
784
|
+
"integrity": "sha512-EMh7uolsC8O4xhudF2F6wedbSHm1HHZ0C6aJ7K67zcDNidMzVcxWdGr+htW9n21klm+bOn+Rx4CBsAntZd3rEQ==",
|
|
780
785
|
"requires": {
|
|
781
|
-
"@babel/helper-module-transforms": "^7.16.
|
|
782
|
-
"@babel/helper-plugin-utils": "^7.
|
|
786
|
+
"@babel/helper-module-transforms": "^7.16.7",
|
|
787
|
+
"@babel/helper-plugin-utils": "^7.16.7"
|
|
783
788
|
}
|
|
784
789
|
},
|
|
785
790
|
"@babel/plugin-transform-named-capturing-groups-regex": {
|
|
786
|
-
"version": "7.
|
|
787
|
-
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.
|
|
788
|
-
"integrity": "sha512-
|
|
791
|
+
"version": "7.17.10",
|
|
792
|
+
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.17.10.tgz",
|
|
793
|
+
"integrity": "sha512-v54O6yLaJySCs6mGzaVOUw9T967GnH38T6CQSAtnzdNPwu84l2qAjssKzo/WSO8Yi7NF+7ekm5cVbF/5qiIgNA==",
|
|
789
794
|
"requires": {
|
|
790
|
-
"@babel/helper-create-regexp-features-plugin": "^7.
|
|
795
|
+
"@babel/helper-create-regexp-features-plugin": "^7.17.0"
|
|
791
796
|
}
|
|
792
797
|
},
|
|
793
798
|
"@babel/plugin-transform-new-target": {
|
|
794
|
-
"version": "7.16.
|
|
795
|
-
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-new-target/-/plugin-transform-new-target-7.16.
|
|
796
|
-
"integrity": "sha512-
|
|
799
|
+
"version": "7.16.7",
|
|
800
|
+
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-new-target/-/plugin-transform-new-target-7.16.7.tgz",
|
|
801
|
+
"integrity": "sha512-xiLDzWNMfKoGOpc6t3U+etCE2yRnn3SM09BXqWPIZOBpL2gvVrBWUKnsJx0K/ADi5F5YC5f8APFfWrz25TdlGg==",
|
|
797
802
|
"requires": {
|
|
798
|
-
"@babel/helper-plugin-utils": "^7.
|
|
803
|
+
"@babel/helper-plugin-utils": "^7.16.7"
|
|
799
804
|
}
|
|
800
805
|
},
|
|
801
806
|
"@babel/plugin-transform-object-super": {
|
|
802
|
-
"version": "7.16.
|
|
803
|
-
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.16.
|
|
804
|
-
"integrity": "sha512-
|
|
807
|
+
"version": "7.16.7",
|
|
808
|
+
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.16.7.tgz",
|
|
809
|
+
"integrity": "sha512-14J1feiQVWaGvRxj2WjyMuXS2jsBkgB3MdSN5HuC2G5nRspa5RK9COcs82Pwy5BuGcjb+fYaUj94mYcOj7rCvw==",
|
|
805
810
|
"requires": {
|
|
806
|
-
"@babel/helper-plugin-utils": "^7.
|
|
807
|
-
"@babel/helper-replace-supers": "^7.16.
|
|
811
|
+
"@babel/helper-plugin-utils": "^7.16.7",
|
|
812
|
+
"@babel/helper-replace-supers": "^7.16.7"
|
|
808
813
|
}
|
|
809
814
|
},
|
|
810
815
|
"@babel/plugin-transform-parameters": {
|
|
811
|
-
"version": "7.16.
|
|
812
|
-
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.16.
|
|
813
|
-
"integrity": "sha512-
|
|
816
|
+
"version": "7.16.7",
|
|
817
|
+
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.16.7.tgz",
|
|
818
|
+
"integrity": "sha512-AT3MufQ7zZEhU2hwOA11axBnExW0Lszu4RL/tAlUJBuNoRak+wehQW8h6KcXOcgjY42fHtDxswuMhMjFEuv/aw==",
|
|
814
819
|
"requires": {
|
|
815
|
-
"@babel/helper-plugin-utils": "^7.
|
|
820
|
+
"@babel/helper-plugin-utils": "^7.16.7"
|
|
816
821
|
}
|
|
817
822
|
},
|
|
818
823
|
"@babel/plugin-transform-property-literals": {
|
|
819
|
-
"version": "7.16.
|
|
820
|
-
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-property-literals/-/plugin-transform-property-literals-7.16.
|
|
821
|
-
"integrity": "sha512-
|
|
824
|
+
"version": "7.16.7",
|
|
825
|
+
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-property-literals/-/plugin-transform-property-literals-7.16.7.tgz",
|
|
826
|
+
"integrity": "sha512-z4FGr9NMGdoIl1RqavCqGG+ZuYjfZ/hkCIeuH6Do7tXmSm0ls11nYVSJqFEUOSJbDab5wC6lRE/w6YjVcr6Hqw==",
|
|
822
827
|
"requires": {
|
|
823
|
-
"@babel/helper-plugin-utils": "^7.
|
|
828
|
+
"@babel/helper-plugin-utils": "^7.16.7"
|
|
824
829
|
}
|
|
825
830
|
},
|
|
826
831
|
"@babel/plugin-transform-react-display-name": {
|
|
@@ -861,60 +866,60 @@
|
|
|
861
866
|
}
|
|
862
867
|
},
|
|
863
868
|
"@babel/plugin-transform-regenerator": {
|
|
864
|
-
"version": "7.
|
|
865
|
-
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.
|
|
866
|
-
"integrity": "sha512-
|
|
869
|
+
"version": "7.17.9",
|
|
870
|
+
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.17.9.tgz",
|
|
871
|
+
"integrity": "sha512-Lc2TfbxR1HOyn/c6b4Y/b6NHoTb67n/IoWLxTu4kC7h4KQnWlhCq2S8Tx0t2SVvv5Uu87Hs+6JEJ5kt2tYGylQ==",
|
|
867
872
|
"requires": {
|
|
868
|
-
"regenerator-transform": "^0.
|
|
873
|
+
"regenerator-transform": "^0.15.0"
|
|
869
874
|
}
|
|
870
875
|
},
|
|
871
876
|
"@babel/plugin-transform-reserved-words": {
|
|
872
|
-
"version": "7.16.
|
|
873
|
-
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-reserved-words/-/plugin-transform-reserved-words-7.16.
|
|
874
|
-
"integrity": "sha512-
|
|
877
|
+
"version": "7.16.7",
|
|
878
|
+
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-reserved-words/-/plugin-transform-reserved-words-7.16.7.tgz",
|
|
879
|
+
"integrity": "sha512-KQzzDnZ9hWQBjwi5lpY5v9shmm6IVG0U9pB18zvMu2i4H90xpT4gmqwPYsn8rObiadYe2M0gmgsiOIF5A/2rtg==",
|
|
875
880
|
"requires": {
|
|
876
|
-
"@babel/helper-plugin-utils": "^7.
|
|
881
|
+
"@babel/helper-plugin-utils": "^7.16.7"
|
|
877
882
|
}
|
|
878
883
|
},
|
|
879
884
|
"@babel/plugin-transform-shorthand-properties": {
|
|
880
|
-
"version": "7.16.
|
|
881
|
-
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.16.
|
|
882
|
-
"integrity": "sha512-
|
|
885
|
+
"version": "7.16.7",
|
|
886
|
+
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.16.7.tgz",
|
|
887
|
+
"integrity": "sha512-hah2+FEnoRoATdIb05IOXf+4GzXYTq75TVhIn1PewihbpyrNWUt2JbudKQOETWw6QpLe+AIUpJ5MVLYTQbeeUg==",
|
|
883
888
|
"requires": {
|
|
884
|
-
"@babel/helper-plugin-utils": "^7.
|
|
889
|
+
"@babel/helper-plugin-utils": "^7.16.7"
|
|
885
890
|
}
|
|
886
891
|
},
|
|
887
892
|
"@babel/plugin-transform-spread": {
|
|
888
|
-
"version": "7.16.
|
|
889
|
-
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-spread/-/plugin-transform-spread-7.16.
|
|
890
|
-
"integrity": "sha512
|
|
893
|
+
"version": "7.16.7",
|
|
894
|
+
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-spread/-/plugin-transform-spread-7.16.7.tgz",
|
|
895
|
+
"integrity": "sha512-+pjJpgAngb53L0iaA5gU/1MLXJIfXcYepLgXB3esVRf4fqmj8f2cxM3/FKaHsZms08hFQJkFccEWuIpm429TXg==",
|
|
891
896
|
"requires": {
|
|
892
|
-
"@babel/helper-plugin-utils": "^7.
|
|
897
|
+
"@babel/helper-plugin-utils": "^7.16.7",
|
|
893
898
|
"@babel/helper-skip-transparent-expression-wrappers": "^7.16.0"
|
|
894
899
|
}
|
|
895
900
|
},
|
|
896
901
|
"@babel/plugin-transform-sticky-regex": {
|
|
897
|
-
"version": "7.16.
|
|
898
|
-
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.16.
|
|
899
|
-
"integrity": "sha512
|
|
902
|
+
"version": "7.16.7",
|
|
903
|
+
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.16.7.tgz",
|
|
904
|
+
"integrity": "sha512-NJa0Bd/87QV5NZZzTuZG5BPJjLYadeSZ9fO6oOUoL4iQx+9EEuw/eEM92SrsT19Yc2jgB1u1hsjqDtH02c3Drw==",
|
|
900
905
|
"requires": {
|
|
901
|
-
"@babel/helper-plugin-utils": "^7.
|
|
906
|
+
"@babel/helper-plugin-utils": "^7.16.7"
|
|
902
907
|
}
|
|
903
908
|
},
|
|
904
909
|
"@babel/plugin-transform-template-literals": {
|
|
905
|
-
"version": "7.16.
|
|
906
|
-
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.16.
|
|
907
|
-
"integrity": "sha512-
|
|
910
|
+
"version": "7.16.7",
|
|
911
|
+
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.16.7.tgz",
|
|
912
|
+
"integrity": "sha512-VwbkDDUeenlIjmfNeDX/V0aWrQH2QiVyJtwymVQSzItFDTpxfyJh3EVaQiS0rIN/CqbLGr0VcGmuwyTdZtdIsA==",
|
|
908
913
|
"requires": {
|
|
909
|
-
"@babel/helper-plugin-utils": "^7.
|
|
914
|
+
"@babel/helper-plugin-utils": "^7.16.7"
|
|
910
915
|
}
|
|
911
916
|
},
|
|
912
917
|
"@babel/plugin-transform-typeof-symbol": {
|
|
913
|
-
"version": "7.16.
|
|
914
|
-
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.16.
|
|
915
|
-
"integrity": "sha512
|
|
918
|
+
"version": "7.16.7",
|
|
919
|
+
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.16.7.tgz",
|
|
920
|
+
"integrity": "sha512-p2rOixCKRJzpg9JB4gjnG4gjWkWa89ZoYUnl9snJ1cWIcTH/hvxZqfO+WjG6T8DRBpctEol5jw1O5rA8gkCokQ==",
|
|
916
921
|
"requires": {
|
|
917
|
-
"@babel/helper-plugin-utils": "^7.
|
|
922
|
+
"@babel/helper-plugin-utils": "^7.16.7"
|
|
918
923
|
}
|
|
919
924
|
},
|
|
920
925
|
"@babel/plugin-transform-typescript": {
|
|
@@ -928,48 +933,48 @@
|
|
|
928
933
|
}
|
|
929
934
|
},
|
|
930
935
|
"@babel/plugin-transform-unicode-escapes": {
|
|
931
|
-
"version": "7.16.
|
|
932
|
-
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-escapes/-/plugin-transform-unicode-escapes-7.16.
|
|
933
|
-
"integrity": "sha512-
|
|
936
|
+
"version": "7.16.7",
|
|
937
|
+
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-escapes/-/plugin-transform-unicode-escapes-7.16.7.tgz",
|
|
938
|
+
"integrity": "sha512-TAV5IGahIz3yZ9/Hfv35TV2xEm+kaBDaZQCn2S/hG9/CZ0DktxJv9eKfPc7yYCvOYR4JGx1h8C+jcSOvgaaI/Q==",
|
|
934
939
|
"requires": {
|
|
935
|
-
"@babel/helper-plugin-utils": "^7.
|
|
940
|
+
"@babel/helper-plugin-utils": "^7.16.7"
|
|
936
941
|
}
|
|
937
942
|
},
|
|
938
943
|
"@babel/plugin-transform-unicode-regex": {
|
|
939
|
-
"version": "7.16.
|
|
940
|
-
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.16.
|
|
941
|
-
"integrity": "sha512-
|
|
944
|
+
"version": "7.16.7",
|
|
945
|
+
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.16.7.tgz",
|
|
946
|
+
"integrity": "sha512-oC5tYYKw56HO75KZVLQ+R/Nl3Hro9kf8iG0hXoaHP7tjAyCpvqBiSNe6vGrZni1Z6MggmUOC6A7VP7AVmw225Q==",
|
|
942
947
|
"requires": {
|
|
943
|
-
"@babel/helper-create-regexp-features-plugin": "^7.16.
|
|
944
|
-
"@babel/helper-plugin-utils": "^7.
|
|
948
|
+
"@babel/helper-create-regexp-features-plugin": "^7.16.7",
|
|
949
|
+
"@babel/helper-plugin-utils": "^7.16.7"
|
|
945
950
|
}
|
|
946
951
|
},
|
|
947
952
|
"@babel/preset-env": {
|
|
948
|
-
"version": "7.
|
|
949
|
-
"resolved": "https://registry.npmjs.org/@babel/preset-env/-/preset-env-7.
|
|
950
|
-
"integrity": "sha512-
|
|
951
|
-
"requires": {
|
|
952
|
-
"@babel/compat-data": "^7.
|
|
953
|
-
"@babel/helper-compilation-targets": "^7.
|
|
954
|
-
"@babel/helper-plugin-utils": "^7.
|
|
955
|
-
"@babel/helper-validator-option": "^7.
|
|
956
|
-
"@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression": "^7.16.
|
|
957
|
-
"@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": "^7.16.
|
|
958
|
-
"@babel/plugin-proposal-async-generator-functions": "^7.16.
|
|
959
|
-
"@babel/plugin-proposal-class-properties": "^7.16.
|
|
960
|
-
"@babel/plugin-proposal-class-static-block": "^7.
|
|
961
|
-
"@babel/plugin-proposal-dynamic-import": "^7.16.
|
|
962
|
-
"@babel/plugin-proposal-export-namespace-from": "^7.16.
|
|
963
|
-
"@babel/plugin-proposal-json-strings": "^7.16.
|
|
964
|
-
"@babel/plugin-proposal-logical-assignment-operators": "^7.16.
|
|
965
|
-
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.16.
|
|
966
|
-
"@babel/plugin-proposal-numeric-separator": "^7.16.
|
|
967
|
-
"@babel/plugin-proposal-object-rest-spread": "^7.
|
|
968
|
-
"@babel/plugin-proposal-optional-catch-binding": "^7.16.
|
|
969
|
-
"@babel/plugin-proposal-optional-chaining": "^7.16.
|
|
970
|
-
"@babel/plugin-proposal-private-methods": "^7.16.
|
|
971
|
-
"@babel/plugin-proposal-private-property-in-object": "^7.16.
|
|
972
|
-
"@babel/plugin-proposal-unicode-property-regex": "^7.16.
|
|
953
|
+
"version": "7.17.10",
|
|
954
|
+
"resolved": "https://registry.npmjs.org/@babel/preset-env/-/preset-env-7.17.10.tgz",
|
|
955
|
+
"integrity": "sha512-YNgyBHZQpeoBSRBg0xixsZzfT58Ze1iZrajvv0lJc70qDDGuGfonEnMGfWeSY0mQ3JTuCWFbMkzFRVafOyJx4g==",
|
|
956
|
+
"requires": {
|
|
957
|
+
"@babel/compat-data": "^7.17.10",
|
|
958
|
+
"@babel/helper-compilation-targets": "^7.17.10",
|
|
959
|
+
"@babel/helper-plugin-utils": "^7.16.7",
|
|
960
|
+
"@babel/helper-validator-option": "^7.16.7",
|
|
961
|
+
"@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression": "^7.16.7",
|
|
962
|
+
"@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": "^7.16.7",
|
|
963
|
+
"@babel/plugin-proposal-async-generator-functions": "^7.16.8",
|
|
964
|
+
"@babel/plugin-proposal-class-properties": "^7.16.7",
|
|
965
|
+
"@babel/plugin-proposal-class-static-block": "^7.17.6",
|
|
966
|
+
"@babel/plugin-proposal-dynamic-import": "^7.16.7",
|
|
967
|
+
"@babel/plugin-proposal-export-namespace-from": "^7.16.7",
|
|
968
|
+
"@babel/plugin-proposal-json-strings": "^7.16.7",
|
|
969
|
+
"@babel/plugin-proposal-logical-assignment-operators": "^7.16.7",
|
|
970
|
+
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.16.7",
|
|
971
|
+
"@babel/plugin-proposal-numeric-separator": "^7.16.7",
|
|
972
|
+
"@babel/plugin-proposal-object-rest-spread": "^7.17.3",
|
|
973
|
+
"@babel/plugin-proposal-optional-catch-binding": "^7.16.7",
|
|
974
|
+
"@babel/plugin-proposal-optional-chaining": "^7.16.7",
|
|
975
|
+
"@babel/plugin-proposal-private-methods": "^7.16.11",
|
|
976
|
+
"@babel/plugin-proposal-private-property-in-object": "^7.16.7",
|
|
977
|
+
"@babel/plugin-proposal-unicode-property-regex": "^7.16.7",
|
|
973
978
|
"@babel/plugin-syntax-async-generators": "^7.8.4",
|
|
974
979
|
"@babel/plugin-syntax-class-properties": "^7.12.13",
|
|
975
980
|
"@babel/plugin-syntax-class-static-block": "^7.14.5",
|
|
@@ -984,44 +989,44 @@
|
|
|
984
989
|
"@babel/plugin-syntax-optional-chaining": "^7.8.3",
|
|
985
990
|
"@babel/plugin-syntax-private-property-in-object": "^7.14.5",
|
|
986
991
|
"@babel/plugin-syntax-top-level-await": "^7.14.5",
|
|
987
|
-
"@babel/plugin-transform-arrow-functions": "^7.16.
|
|
988
|
-
"@babel/plugin-transform-async-to-generator": "^7.16.
|
|
989
|
-
"@babel/plugin-transform-block-scoped-functions": "^7.16.
|
|
990
|
-
"@babel/plugin-transform-block-scoping": "^7.16.
|
|
991
|
-
"@babel/plugin-transform-classes": "^7.16.
|
|
992
|
-
"@babel/plugin-transform-computed-properties": "^7.16.
|
|
993
|
-
"@babel/plugin-transform-destructuring": "^7.
|
|
994
|
-
"@babel/plugin-transform-dotall-regex": "^7.16.
|
|
995
|
-
"@babel/plugin-transform-duplicate-keys": "^7.16.
|
|
996
|
-
"@babel/plugin-transform-exponentiation-operator": "^7.16.
|
|
997
|
-
"@babel/plugin-transform-for-of": "^7.16.
|
|
998
|
-
"@babel/plugin-transform-function-name": "^7.16.
|
|
999
|
-
"@babel/plugin-transform-literals": "^7.16.
|
|
1000
|
-
"@babel/plugin-transform-member-expression-literals": "^7.16.
|
|
1001
|
-
"@babel/plugin-transform-modules-amd": "^7.16.
|
|
1002
|
-
"@babel/plugin-transform-modules-commonjs": "^7.
|
|
1003
|
-
"@babel/plugin-transform-modules-systemjs": "^7.
|
|
1004
|
-
"@babel/plugin-transform-modules-umd": "^7.16.
|
|
1005
|
-
"@babel/plugin-transform-named-capturing-groups-regex": "^7.
|
|
1006
|
-
"@babel/plugin-transform-new-target": "^7.16.
|
|
1007
|
-
"@babel/plugin-transform-object-super": "^7.16.
|
|
1008
|
-
"@babel/plugin-transform-parameters": "^7.16.
|
|
1009
|
-
"@babel/plugin-transform-property-literals": "^7.16.
|
|
1010
|
-
"@babel/plugin-transform-regenerator": "^7.
|
|
1011
|
-
"@babel/plugin-transform-reserved-words": "^7.16.
|
|
1012
|
-
"@babel/plugin-transform-shorthand-properties": "^7.16.
|
|
1013
|
-
"@babel/plugin-transform-spread": "^7.16.
|
|
1014
|
-
"@babel/plugin-transform-sticky-regex": "^7.16.
|
|
1015
|
-
"@babel/plugin-transform-template-literals": "^7.16.
|
|
1016
|
-
"@babel/plugin-transform-typeof-symbol": "^7.16.
|
|
1017
|
-
"@babel/plugin-transform-unicode-escapes": "^7.16.
|
|
1018
|
-
"@babel/plugin-transform-unicode-regex": "^7.16.
|
|
992
|
+
"@babel/plugin-transform-arrow-functions": "^7.16.7",
|
|
993
|
+
"@babel/plugin-transform-async-to-generator": "^7.16.8",
|
|
994
|
+
"@babel/plugin-transform-block-scoped-functions": "^7.16.7",
|
|
995
|
+
"@babel/plugin-transform-block-scoping": "^7.16.7",
|
|
996
|
+
"@babel/plugin-transform-classes": "^7.16.7",
|
|
997
|
+
"@babel/plugin-transform-computed-properties": "^7.16.7",
|
|
998
|
+
"@babel/plugin-transform-destructuring": "^7.17.7",
|
|
999
|
+
"@babel/plugin-transform-dotall-regex": "^7.16.7",
|
|
1000
|
+
"@babel/plugin-transform-duplicate-keys": "^7.16.7",
|
|
1001
|
+
"@babel/plugin-transform-exponentiation-operator": "^7.16.7",
|
|
1002
|
+
"@babel/plugin-transform-for-of": "^7.16.7",
|
|
1003
|
+
"@babel/plugin-transform-function-name": "^7.16.7",
|
|
1004
|
+
"@babel/plugin-transform-literals": "^7.16.7",
|
|
1005
|
+
"@babel/plugin-transform-member-expression-literals": "^7.16.7",
|
|
1006
|
+
"@babel/plugin-transform-modules-amd": "^7.16.7",
|
|
1007
|
+
"@babel/plugin-transform-modules-commonjs": "^7.17.9",
|
|
1008
|
+
"@babel/plugin-transform-modules-systemjs": "^7.17.8",
|
|
1009
|
+
"@babel/plugin-transform-modules-umd": "^7.16.7",
|
|
1010
|
+
"@babel/plugin-transform-named-capturing-groups-regex": "^7.17.10",
|
|
1011
|
+
"@babel/plugin-transform-new-target": "^7.16.7",
|
|
1012
|
+
"@babel/plugin-transform-object-super": "^7.16.7",
|
|
1013
|
+
"@babel/plugin-transform-parameters": "^7.16.7",
|
|
1014
|
+
"@babel/plugin-transform-property-literals": "^7.16.7",
|
|
1015
|
+
"@babel/plugin-transform-regenerator": "^7.17.9",
|
|
1016
|
+
"@babel/plugin-transform-reserved-words": "^7.16.7",
|
|
1017
|
+
"@babel/plugin-transform-shorthand-properties": "^7.16.7",
|
|
1018
|
+
"@babel/plugin-transform-spread": "^7.16.7",
|
|
1019
|
+
"@babel/plugin-transform-sticky-regex": "^7.16.7",
|
|
1020
|
+
"@babel/plugin-transform-template-literals": "^7.16.7",
|
|
1021
|
+
"@babel/plugin-transform-typeof-symbol": "^7.16.7",
|
|
1022
|
+
"@babel/plugin-transform-unicode-escapes": "^7.16.7",
|
|
1023
|
+
"@babel/plugin-transform-unicode-regex": "^7.16.7",
|
|
1019
1024
|
"@babel/preset-modules": "^0.1.5",
|
|
1020
|
-
"@babel/types": "^7.
|
|
1025
|
+
"@babel/types": "^7.17.10",
|
|
1021
1026
|
"babel-plugin-polyfill-corejs2": "^0.3.0",
|
|
1022
|
-
"babel-plugin-polyfill-corejs3": "^0.
|
|
1027
|
+
"babel-plugin-polyfill-corejs3": "^0.5.0",
|
|
1023
1028
|
"babel-plugin-polyfill-regenerator": "^0.3.0",
|
|
1024
|
-
"core-js-compat": "^3.
|
|
1029
|
+
"core-js-compat": "^3.22.1",
|
|
1025
1030
|
"semver": "^6.3.0"
|
|
1026
1031
|
},
|
|
1027
1032
|
"dependencies": {
|
|
@@ -1068,45 +1073,46 @@
|
|
|
1068
1073
|
}
|
|
1069
1074
|
},
|
|
1070
1075
|
"@babel/runtime": {
|
|
1071
|
-
"version": "7.
|
|
1072
|
-
"resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.
|
|
1073
|
-
"integrity": "sha512-
|
|
1076
|
+
"version": "7.17.9",
|
|
1077
|
+
"resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.17.9.tgz",
|
|
1078
|
+
"integrity": "sha512-lSiBBvodq29uShpWGNbgFdKYNiFDo5/HIYsaCEY9ff4sb10x9jizo2+pRrSyF4jKZCXqgzuqBOQKbUm90gQwJg==",
|
|
1074
1079
|
"requires": {
|
|
1075
1080
|
"regenerator-runtime": "^0.13.4"
|
|
1076
1081
|
}
|
|
1077
1082
|
},
|
|
1078
1083
|
"@babel/template": {
|
|
1079
|
-
"version": "7.16.
|
|
1080
|
-
"resolved": "https://registry.npmjs.org/@babel/template/-/template-7.16.
|
|
1081
|
-
"integrity": "sha512-
|
|
1084
|
+
"version": "7.16.7",
|
|
1085
|
+
"resolved": "https://registry.npmjs.org/@babel/template/-/template-7.16.7.tgz",
|
|
1086
|
+
"integrity": "sha512-I8j/x8kHUrbYRTUxXrrMbfCa7jxkE7tZre39x3kjr9hvI82cK1FfqLygotcWN5kdPGWcLdWMHpSBavse5tWw3w==",
|
|
1082
1087
|
"requires": {
|
|
1083
|
-
"@babel/code-frame": "^7.16.
|
|
1084
|
-
"@babel/parser": "^7.16.
|
|
1085
|
-
"@babel/types": "^7.16.
|
|
1088
|
+
"@babel/code-frame": "^7.16.7",
|
|
1089
|
+
"@babel/parser": "^7.16.7",
|
|
1090
|
+
"@babel/types": "^7.16.7"
|
|
1086
1091
|
}
|
|
1087
1092
|
},
|
|
1088
1093
|
"@babel/traverse": {
|
|
1089
|
-
"version": "7.
|
|
1090
|
-
"resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.
|
|
1091
|
-
"integrity": "sha512-
|
|
1092
|
-
"requires": {
|
|
1093
|
-
"@babel/code-frame": "^7.16.
|
|
1094
|
-
"@babel/generator": "^7.
|
|
1095
|
-
"@babel/helper-
|
|
1096
|
-
"@babel/helper-
|
|
1097
|
-
"@babel/helper-
|
|
1098
|
-
"@babel/
|
|
1099
|
-
"@babel/
|
|
1094
|
+
"version": "7.17.10",
|
|
1095
|
+
"resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.17.10.tgz",
|
|
1096
|
+
"integrity": "sha512-VmbrTHQteIdUUQNTb+zE12SHS/xQVIShmBPhlNP12hD5poF2pbITW1Z4172d03HegaQWhLffdkRJYtAzp0AGcw==",
|
|
1097
|
+
"requires": {
|
|
1098
|
+
"@babel/code-frame": "^7.16.7",
|
|
1099
|
+
"@babel/generator": "^7.17.10",
|
|
1100
|
+
"@babel/helper-environment-visitor": "^7.16.7",
|
|
1101
|
+
"@babel/helper-function-name": "^7.17.9",
|
|
1102
|
+
"@babel/helper-hoist-variables": "^7.16.7",
|
|
1103
|
+
"@babel/helper-split-export-declaration": "^7.16.7",
|
|
1104
|
+
"@babel/parser": "^7.17.10",
|
|
1105
|
+
"@babel/types": "^7.17.10",
|
|
1100
1106
|
"debug": "^4.1.0",
|
|
1101
1107
|
"globals": "^11.1.0"
|
|
1102
1108
|
}
|
|
1103
1109
|
},
|
|
1104
1110
|
"@babel/types": {
|
|
1105
|
-
"version": "7.
|
|
1106
|
-
"resolved": "https://registry.npmjs.org/@babel/types/-/types-7.
|
|
1107
|
-
"integrity": "sha512-
|
|
1111
|
+
"version": "7.17.10",
|
|
1112
|
+
"resolved": "https://registry.npmjs.org/@babel/types/-/types-7.17.10.tgz",
|
|
1113
|
+
"integrity": "sha512-9O26jG0mBYfGkUYCYZRnBwbVLd1UZOICEr2Em6InB6jVfsAv1GKgwXHmrSg+WFWDmeKTA6vyTZiN8tCSM5Oo3A==",
|
|
1108
1114
|
"requires": {
|
|
1109
|
-
"@babel/helper-validator-identifier": "^7.
|
|
1115
|
+
"@babel/helper-validator-identifier": "^7.16.7",
|
|
1110
1116
|
"to-fast-properties": "^2.0.0"
|
|
1111
1117
|
}
|
|
1112
1118
|
},
|
|
@@ -1143,11 +1149,6 @@
|
|
|
1143
1149
|
"strip-json-comments": "^3.1.1"
|
|
1144
1150
|
},
|
|
1145
1151
|
"dependencies": {
|
|
1146
|
-
"acorn": {
|
|
1147
|
-
"version": "8.6.0",
|
|
1148
|
-
"resolved": "https://registry.npmjs.org/acorn/-/acorn-8.6.0.tgz",
|
|
1149
|
-
"integrity": "sha512-U1riIR+lBSNi3IbxtaHOIKdH8sLFv3NYfNv8sg7ZsNhcfl4HF2++BfqqrNAxoCLQW1iiylOj76ecnaUxz+z9yw=="
|
|
1150
|
-
},
|
|
1151
1152
|
"ajv": {
|
|
1152
1153
|
"version": "6.12.6",
|
|
1153
1154
|
"resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz",
|
|
@@ -1244,6 +1245,100 @@
|
|
|
1244
1245
|
"resolved": "https://registry.npmjs.org/@humanwhocodes/object-schema/-/object-schema-1.2.1.tgz",
|
|
1245
1246
|
"integrity": "sha512-ZnQMnLV4e7hDlUvw8H+U8ASL02SS2Gn6+9Ac3wGGLIe7+je2AeAOxPY+izIPJDfFDb7eDjev0Us8MO1iFRN8hA=="
|
|
1246
1247
|
},
|
|
1248
|
+
"@jridgewell/gen-mapping": {
|
|
1249
|
+
"version": "0.1.1",
|
|
1250
|
+
"resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.1.1.tgz",
|
|
1251
|
+
"integrity": "sha512-sQXCasFk+U8lWYEe66WxRDOE9PjVz4vSM51fTu3Hw+ClTpUSQb718772vH3pyS5pShp6lvQM7SxgIDXXXmOX7w==",
|
|
1252
|
+
"requires": {
|
|
1253
|
+
"@jridgewell/set-array": "^1.0.0",
|
|
1254
|
+
"@jridgewell/sourcemap-codec": "^1.4.10"
|
|
1255
|
+
}
|
|
1256
|
+
},
|
|
1257
|
+
"@jridgewell/resolve-uri": {
|
|
1258
|
+
"version": "3.0.6",
|
|
1259
|
+
"resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.0.6.tgz",
|
|
1260
|
+
"integrity": "sha512-R7xHtBSNm+9SyvpJkdQl+qrM3Hm2fea3Ef197M3mUug+v+yR+Rhfbs7PBtcBUVnIWJ4JcAdjvij+c8hXS9p5aw=="
|
|
1261
|
+
},
|
|
1262
|
+
"@jridgewell/set-array": {
|
|
1263
|
+
"version": "1.1.0",
|
|
1264
|
+
"resolved": "https://registry.npmjs.org/@jridgewell/set-array/-/set-array-1.1.0.tgz",
|
|
1265
|
+
"integrity": "sha512-SfJxIxNVYLTsKwzB3MoOQ1yxf4w/E6MdkvTgrgAt1bfxjSrLUoHMKrDOykwN14q65waezZIdqDneUIPh4/sKxg=="
|
|
1266
|
+
},
|
|
1267
|
+
"@jridgewell/source-map": {
|
|
1268
|
+
"version": "0.3.2",
|
|
1269
|
+
"resolved": "https://registry.npmjs.org/@jridgewell/source-map/-/source-map-0.3.2.tgz",
|
|
1270
|
+
"integrity": "sha512-m7O9o2uR8k2ObDysZYzdfhb08VuEml5oWGiosa1VdaPZ/A6QyPkAJuwN0Q1lhULOf6B7MtQmHENS743hWtCrgw==",
|
|
1271
|
+
"requires": {
|
|
1272
|
+
"@jridgewell/gen-mapping": "^0.3.0",
|
|
1273
|
+
"@jridgewell/trace-mapping": "^0.3.9"
|
|
1274
|
+
},
|
|
1275
|
+
"dependencies": {
|
|
1276
|
+
"@jridgewell/gen-mapping": {
|
|
1277
|
+
"version": "0.3.2",
|
|
1278
|
+
"resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.2.tgz",
|
|
1279
|
+
"integrity": "sha512-mh65xKQAzI6iBcFzwv28KVWSmCkdRBWoOh+bYQGW3+6OZvbbN3TqMGo5hqYxQniRcH9F2VZIoJCm4pa3BPDK/A==",
|
|
1280
|
+
"requires": {
|
|
1281
|
+
"@jridgewell/set-array": "^1.0.1",
|
|
1282
|
+
"@jridgewell/sourcemap-codec": "^1.4.10",
|
|
1283
|
+
"@jridgewell/trace-mapping": "^0.3.9"
|
|
1284
|
+
}
|
|
1285
|
+
}
|
|
1286
|
+
}
|
|
1287
|
+
},
|
|
1288
|
+
"@jridgewell/sourcemap-codec": {
|
|
1289
|
+
"version": "1.4.12",
|
|
1290
|
+
"resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.12.tgz",
|
|
1291
|
+
"integrity": "sha512-az/NhpIwP3K33ILr0T2bso+k2E/SLf8Yidd8mHl0n6sCQ4YdyC8qDhZA6kOPDNDBA56ZnIjngVl0U3jREA0BUA=="
|
|
1292
|
+
},
|
|
1293
|
+
"@jridgewell/trace-mapping": {
|
|
1294
|
+
"version": "0.3.9",
|
|
1295
|
+
"resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.9.tgz",
|
|
1296
|
+
"integrity": "sha512-3Belt6tdc8bPgAtbcmdtNJlirVoTmEb5e2gC94PnkwEW9jI6CAHUeoG85tjWP5WquqfavoMtMwiG4P926ZKKuQ==",
|
|
1297
|
+
"requires": {
|
|
1298
|
+
"@jridgewell/resolve-uri": "^3.0.3",
|
|
1299
|
+
"@jridgewell/sourcemap-codec": "^1.4.10"
|
|
1300
|
+
}
|
|
1301
|
+
},
|
|
1302
|
+
"@metalsmith/layouts": {
|
|
1303
|
+
"version": "2.5.1",
|
|
1304
|
+
"resolved": "https://registry.npmjs.org/@metalsmith/layouts/-/layouts-2.5.1.tgz",
|
|
1305
|
+
"integrity": "sha512-VJPCvCAu5SX5qie3Z4DdywtiT6GLjV1IFUaCHb/Mq/0DpvFQTsB7z63lizCpS82M1wPVG3yOOUXLb1FqBUvScg==",
|
|
1306
|
+
"requires": {
|
|
1307
|
+
"debug": "^4.3.4",
|
|
1308
|
+
"inputformat-to-jstransformer": "^1.4.0",
|
|
1309
|
+
"is-utf8": "^0.2.1",
|
|
1310
|
+
"jstransformer": "^1.0.0"
|
|
1311
|
+
},
|
|
1312
|
+
"dependencies": {
|
|
1313
|
+
"debug": {
|
|
1314
|
+
"version": "4.3.4",
|
|
1315
|
+
"resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz",
|
|
1316
|
+
"integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==",
|
|
1317
|
+
"requires": {
|
|
1318
|
+
"ms": "2.1.2"
|
|
1319
|
+
}
|
|
1320
|
+
}
|
|
1321
|
+
}
|
|
1322
|
+
},
|
|
1323
|
+
"@metalsmith/markdown": {
|
|
1324
|
+
"version": "1.5.0",
|
|
1325
|
+
"resolved": "https://registry.npmjs.org/@metalsmith/markdown/-/markdown-1.5.0.tgz",
|
|
1326
|
+
"integrity": "sha512-qnUj6fB3hbpBuj1SneLLaJQsOfFvtLNUPzfOLQvnJqGrnJ5h6WJ15SBDMYcXangMcSxklxuIIPzdwQPwaVMV1A==",
|
|
1327
|
+
"requires": {
|
|
1328
|
+
"debug": "^4.3.4",
|
|
1329
|
+
"marked": "^4.0.12"
|
|
1330
|
+
},
|
|
1331
|
+
"dependencies": {
|
|
1332
|
+
"debug": {
|
|
1333
|
+
"version": "4.3.4",
|
|
1334
|
+
"resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz",
|
|
1335
|
+
"integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==",
|
|
1336
|
+
"requires": {
|
|
1337
|
+
"ms": "2.1.2"
|
|
1338
|
+
}
|
|
1339
|
+
}
|
|
1340
|
+
}
|
|
1341
|
+
},
|
|
1247
1342
|
"@octokit/auth-token": {
|
|
1248
1343
|
"version": "2.5.0",
|
|
1249
1344
|
"resolved": "https://registry.npmjs.org/@octokit/auth-token/-/auth-token-2.5.0.tgz",
|
|
@@ -1582,11 +1677,6 @@
|
|
|
1582
1677
|
"through": ">=2.2.7 <3"
|
|
1583
1678
|
}
|
|
1584
1679
|
},
|
|
1585
|
-
"absolute": {
|
|
1586
|
-
"version": "0.0.1",
|
|
1587
|
-
"resolved": "https://registry.npmjs.org/absolute/-/absolute-0.0.1.tgz",
|
|
1588
|
-
"integrity": "sha1-wigi+H4ck59XmIdQTZwQnEFzgp0="
|
|
1589
|
-
},
|
|
1590
1680
|
"accepts": {
|
|
1591
1681
|
"version": "1.3.7",
|
|
1592
1682
|
"resolved": "https://registry.npmjs.org/accepts/-/accepts-1.3.7.tgz",
|
|
@@ -1597,9 +1687,9 @@
|
|
|
1597
1687
|
}
|
|
1598
1688
|
},
|
|
1599
1689
|
"acorn": {
|
|
1600
|
-
"version": "7.
|
|
1601
|
-
"resolved": "https://registry.npmjs.org/acorn/-/acorn-7.
|
|
1602
|
-
"integrity": "sha512-
|
|
1690
|
+
"version": "8.7.1",
|
|
1691
|
+
"resolved": "https://registry.npmjs.org/acorn/-/acorn-8.7.1.tgz",
|
|
1692
|
+
"integrity": "sha512-Xx54uLJQZ19lKygFXOWsscKUbsBZW0CPykPhVQdhIeIwrbPmJzqeASDInc8nKBnp/JT6igTs82qPXz069H8I/A=="
|
|
1603
1693
|
},
|
|
1604
1694
|
"acorn-jsx": {
|
|
1605
1695
|
"version": "5.3.2",
|
|
@@ -1614,6 +1704,13 @@
|
|
|
1614
1704
|
"acorn": "^7.0.0",
|
|
1615
1705
|
"acorn-walk": "^7.0.0",
|
|
1616
1706
|
"xtend": "^4.0.2"
|
|
1707
|
+
},
|
|
1708
|
+
"dependencies": {
|
|
1709
|
+
"acorn": {
|
|
1710
|
+
"version": "7.4.1",
|
|
1711
|
+
"resolved": "https://registry.npmjs.org/acorn/-/acorn-7.4.1.tgz",
|
|
1712
|
+
"integrity": "sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A=="
|
|
1713
|
+
}
|
|
1617
1714
|
}
|
|
1618
1715
|
},
|
|
1619
1716
|
"acorn-walk": {
|
|
@@ -1673,14 +1770,6 @@
|
|
|
1673
1770
|
}
|
|
1674
1771
|
}
|
|
1675
1772
|
},
|
|
1676
|
-
"ansi-red": {
|
|
1677
|
-
"version": "0.1.1",
|
|
1678
|
-
"resolved": "https://registry.npmjs.org/ansi-red/-/ansi-red-0.1.1.tgz",
|
|
1679
|
-
"integrity": "sha1-jGOPnRCAgAo1PJwoyKgcpHBdlGw=",
|
|
1680
|
-
"requires": {
|
|
1681
|
-
"ansi-wrap": "0.1.0"
|
|
1682
|
-
}
|
|
1683
|
-
},
|
|
1684
1773
|
"ansi-regex": {
|
|
1685
1774
|
"version": "5.0.1",
|
|
1686
1775
|
"resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz",
|
|
@@ -1694,11 +1783,6 @@
|
|
|
1694
1783
|
"color-convert": "^1.9.0"
|
|
1695
1784
|
}
|
|
1696
1785
|
},
|
|
1697
|
-
"ansi-wrap": {
|
|
1698
|
-
"version": "0.1.0",
|
|
1699
|
-
"resolved": "https://registry.npmjs.org/ansi-wrap/-/ansi-wrap-0.1.0.tgz",
|
|
1700
|
-
"integrity": "sha1-qCJQ3bABXponyoLoLqYDu/pF768="
|
|
1701
|
-
},
|
|
1702
1786
|
"anymatch": {
|
|
1703
1787
|
"version": "3.1.2",
|
|
1704
1788
|
"resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.2.tgz",
|
|
@@ -1726,11 +1810,6 @@
|
|
|
1726
1810
|
"sprintf-js": "~1.0.2"
|
|
1727
1811
|
}
|
|
1728
1812
|
},
|
|
1729
|
-
"array-differ": {
|
|
1730
|
-
"version": "1.0.0",
|
|
1731
|
-
"resolved": "https://registry.npmjs.org/array-differ/-/array-differ-1.0.0.tgz",
|
|
1732
|
-
"integrity": "sha1-7/UuN1gknTO+QCuLuOVkuytdQDE="
|
|
1733
|
-
},
|
|
1734
1813
|
"array-flatten": {
|
|
1735
1814
|
"version": "1.1.1",
|
|
1736
1815
|
"resolved": "https://registry.npmjs.org/array-flatten/-/array-flatten-1.1.1.tgz",
|
|
@@ -1741,28 +1820,10 @@
|
|
|
1741
1820
|
"resolved": "https://registry.npmjs.org/array-from/-/array-from-2.1.1.tgz",
|
|
1742
1821
|
"integrity": "sha1-z+nYwmYoudxa7MYqn12PHzUsEZU="
|
|
1743
1822
|
},
|
|
1744
|
-
"array-union": {
|
|
1745
|
-
"version": "1.0.2",
|
|
1746
|
-
"resolved": "https://registry.npmjs.org/array-union/-/array-union-1.0.2.tgz",
|
|
1747
|
-
"integrity": "sha1-mjRBDk9OPaI96jdb5b5w8kd47Dk=",
|
|
1748
|
-
"requires": {
|
|
1749
|
-
"array-uniq": "^1.0.1"
|
|
1750
|
-
}
|
|
1751
|
-
},
|
|
1752
|
-
"array-uniq": {
|
|
1753
|
-
"version": "1.0.3",
|
|
1754
|
-
"resolved": "https://registry.npmjs.org/array-uniq/-/array-uniq-1.0.3.tgz",
|
|
1755
|
-
"integrity": "sha1-r2rId6Jcx/dOBYiUdThY39sk/bY="
|
|
1756
|
-
},
|
|
1757
|
-
"arrify": {
|
|
1758
|
-
"version": "1.0.1",
|
|
1759
|
-
"resolved": "https://registry.npmjs.org/arrify/-/arrify-1.0.1.tgz",
|
|
1760
|
-
"integrity": "sha1-iYUI2iIm84DfkEcoRWhJwVAaSw0="
|
|
1761
|
-
},
|
|
1762
1823
|
"asap": {
|
|
1763
1824
|
"version": "2.0.6",
|
|
1764
1825
|
"resolved": "https://registry.npmjs.org/asap/-/asap-2.0.6.tgz",
|
|
1765
|
-
"integrity": "
|
|
1826
|
+
"integrity": "sha512-BSHWgDSAiKs50o2Re8ppvp3seVHXSRM44cdSsT9FfNEUUZLOGWVCsiWaRPWM1Znn+mqZ1OfVZ3z3DWEzSp7hRA=="
|
|
1766
1827
|
},
|
|
1767
1828
|
"asn1.js": {
|
|
1768
1829
|
"version": "5.4.1",
|
|
@@ -1864,9 +1925,9 @@
|
|
|
1864
1925
|
"integrity": "sha512-+Ryf6g3BKoRc7jfp7ad8tM4TtMiaWvbF/1/sQcZPkkS7ag3D5nMBCe2UfOTONtAkaG0tO0ij3C5Lwmf1EiyjHg=="
|
|
1865
1926
|
},
|
|
1866
1927
|
"async": {
|
|
1867
|
-
"version": "2.6.
|
|
1868
|
-
"resolved": "https://registry.npmjs.org/async/-/async-2.6.
|
|
1869
|
-
"integrity": "sha512-
|
|
1928
|
+
"version": "2.6.4",
|
|
1929
|
+
"resolved": "https://registry.npmjs.org/async/-/async-2.6.4.tgz",
|
|
1930
|
+
"integrity": "sha512-mzo5dfJYwAn29PeiJ0zvwTo04zj8HDJj0Mn8TD7sno7q12prdbnasKJHhkm2c1LgrhlJ0teaea8860oxi51mGA==",
|
|
1870
1931
|
"requires": {
|
|
1871
1932
|
"lodash": "^4.17.14"
|
|
1872
1933
|
}
|
|
@@ -1910,12 +1971,12 @@
|
|
|
1910
1971
|
}
|
|
1911
1972
|
},
|
|
1912
1973
|
"babel-plugin-polyfill-corejs3": {
|
|
1913
|
-
"version": "0.
|
|
1914
|
-
"resolved": "https://registry.npmjs.org/babel-plugin-polyfill-corejs3/-/babel-plugin-polyfill-corejs3-0.
|
|
1915
|
-
"integrity": "sha512-
|
|
1974
|
+
"version": "0.5.2",
|
|
1975
|
+
"resolved": "https://registry.npmjs.org/babel-plugin-polyfill-corejs3/-/babel-plugin-polyfill-corejs3-0.5.2.tgz",
|
|
1976
|
+
"integrity": "sha512-G3uJih0XWiID451fpeFaYGVuxHEjzKTHtc9uGFEjR6hHrvNzeS/PX+LLLcetJcytsB5m4j+K3o/EpXJNb/5IEQ==",
|
|
1916
1977
|
"requires": {
|
|
1917
|
-
"@babel/helper-define-polyfill-provider": "^0.3.
|
|
1918
|
-
"core-js-compat": "^3.
|
|
1978
|
+
"@babel/helper-define-polyfill-provider": "^0.3.1",
|
|
1979
|
+
"core-js-compat": "^3.21.0"
|
|
1919
1980
|
}
|
|
1920
1981
|
},
|
|
1921
1982
|
"babel-plugin-polyfill-regenerator": {
|
|
@@ -1926,6 +1987,11 @@
|
|
|
1926
1987
|
"@babel/helper-define-polyfill-provider": "^0.3.0"
|
|
1927
1988
|
}
|
|
1928
1989
|
},
|
|
1990
|
+
"babelify": {
|
|
1991
|
+
"version": "10.0.0",
|
|
1992
|
+
"resolved": "https://registry.npmjs.org/babelify/-/babelify-10.0.0.tgz",
|
|
1993
|
+
"integrity": "sha512-X40FaxyH7t3X+JFAKvb1H9wooWKLRCi8pg3m8poqtdZaIng+bjzp9RvKQCvRjF9isHiPkXspbbXT/zwXLtwgwg=="
|
|
1994
|
+
},
|
|
1929
1995
|
"balanced-match": {
|
|
1930
1996
|
"version": "1.0.2",
|
|
1931
1997
|
"resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz",
|
|
@@ -2359,14 +2425,14 @@
|
|
|
2359
2425
|
}
|
|
2360
2426
|
},
|
|
2361
2427
|
"browserslist": {
|
|
2362
|
-
"version": "4.
|
|
2363
|
-
"resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.
|
|
2364
|
-
"integrity": "sha512-
|
|
2428
|
+
"version": "4.20.3",
|
|
2429
|
+
"resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.20.3.tgz",
|
|
2430
|
+
"integrity": "sha512-NBhymBQl1zM0Y5dQT/O+xiLP9/rzOIQdKM/eMJBAq7yBgaB6krIYLGejrwVYnSHZdqjscB1SPuAjHwxjvN6Wdg==",
|
|
2365
2431
|
"requires": {
|
|
2366
|
-
"caniuse-lite": "^1.0.
|
|
2367
|
-
"electron-to-chromium": "^1.
|
|
2432
|
+
"caniuse-lite": "^1.0.30001332",
|
|
2433
|
+
"electron-to-chromium": "^1.4.118",
|
|
2368
2434
|
"escalade": "^3.1.1",
|
|
2369
|
-
"node-releases": "^2.0.
|
|
2435
|
+
"node-releases": "^2.0.3",
|
|
2370
2436
|
"picocolors": "^1.0.0"
|
|
2371
2437
|
}
|
|
2372
2438
|
},
|
|
@@ -2482,9 +2548,9 @@
|
|
|
2482
2548
|
"integrity": "sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg=="
|
|
2483
2549
|
},
|
|
2484
2550
|
"caniuse-lite": {
|
|
2485
|
-
"version": "1.0.
|
|
2486
|
-
"resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.
|
|
2487
|
-
"integrity": "sha512-
|
|
2551
|
+
"version": "1.0.30001335",
|
|
2552
|
+
"resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001335.tgz",
|
|
2553
|
+
"integrity": "sha512-ddP1Tgm7z2iIxu6QTtbZUv6HJxSaV/PZeSrWFZtbY4JZ69tOeNhBCl3HyRQgeNZKE5AOn1kpV7fhljigy0Ty3w=="
|
|
2488
2554
|
},
|
|
2489
2555
|
"caw": {
|
|
2490
2556
|
"version": "2.0.1",
|
|
@@ -2674,11 +2740,6 @@
|
|
|
2674
2740
|
"resolved": "https://registry.npmjs.org/code-point-at/-/code-point-at-1.1.0.tgz",
|
|
2675
2741
|
"integrity": "sha1-DQcLTQQ6W+ozovGkDi7bPZpMz3c="
|
|
2676
2742
|
},
|
|
2677
|
-
"coffee-script": {
|
|
2678
|
-
"version": "1.12.7",
|
|
2679
|
-
"resolved": "https://registry.npmjs.org/coffee-script/-/coffee-script-1.12.7.tgz",
|
|
2680
|
-
"integrity": "sha512-fLeEhqwymYat/MpTPUjSKHVYYl0ec2mOyALEMLmzr5i1isuG+6jfI2j2d5oBO3VIzgUXgBVIcOT9uH1TFxBckw=="
|
|
2681
|
-
},
|
|
2682
2743
|
"color-convert": {
|
|
2683
2744
|
"version": "1.9.3",
|
|
2684
2745
|
"resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz",
|
|
@@ -2854,11 +2915,11 @@
|
|
|
2854
2915
|
"integrity": "sha512-Gue79dwltEaCVJKIYtA8Wmo7C3FZKZcjn88qIJwR5RtfvityBOWnimsNnkMS0Ya3fJqydAvL8kepMB0XQoR3CQ=="
|
|
2855
2916
|
},
|
|
2856
2917
|
"core-js-compat": {
|
|
2857
|
-
"version": "3.
|
|
2858
|
-
"resolved": "https://registry.npmjs.org/core-js-compat/-/core-js-compat-3.
|
|
2859
|
-
"integrity": "sha512-
|
|
2918
|
+
"version": "3.22.4",
|
|
2919
|
+
"resolved": "https://registry.npmjs.org/core-js-compat/-/core-js-compat-3.22.4.tgz",
|
|
2920
|
+
"integrity": "sha512-dIWcsszDezkFZrfm1cnB4f/J85gyhiCpxbgBdohWCDtSVuAaChTSpPV7ldOQf/Xds2U5xCIJZOK82G4ZPAIswA==",
|
|
2860
2921
|
"requires": {
|
|
2861
|
-
"browserslist": "^4.
|
|
2922
|
+
"browserslist": "^4.20.3",
|
|
2862
2923
|
"semver": "7.0.0"
|
|
2863
2924
|
},
|
|
2864
2925
|
"dependencies": {
|
|
@@ -3284,9 +3345,9 @@
|
|
|
3284
3345
|
"integrity": "sha1-WQxhFWsK4vTwJVcyoViyZrxWsh0="
|
|
3285
3346
|
},
|
|
3286
3347
|
"electron-to-chromium": {
|
|
3287
|
-
"version": "1.
|
|
3288
|
-
"resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.
|
|
3289
|
-
"integrity": "sha512-
|
|
3348
|
+
"version": "1.4.132",
|
|
3349
|
+
"resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.132.tgz",
|
|
3350
|
+
"integrity": "sha512-JYdZUw/1068NWN+SwXQ7w6Ue0bWYGihvSUNNQwurvcDV/SM7vSiGZ3NuFvFgoEiCs4kB8xs3cX2an3wB7d4TBw=="
|
|
3290
3351
|
},
|
|
3291
3352
|
"elliptic": {
|
|
3292
3353
|
"version": "6.5.4",
|
|
@@ -3556,11 +3617,6 @@
|
|
|
3556
3617
|
"v8-compile-cache": "^2.0.3"
|
|
3557
3618
|
},
|
|
3558
3619
|
"dependencies": {
|
|
3559
|
-
"acorn": {
|
|
3560
|
-
"version": "8.6.0",
|
|
3561
|
-
"resolved": "https://registry.npmjs.org/acorn/-/acorn-8.6.0.tgz",
|
|
3562
|
-
"integrity": "sha512-U1riIR+lBSNi3IbxtaHOIKdH8sLFv3NYfNv8sg7ZsNhcfl4HF2++BfqqrNAxoCLQW1iiylOj76ecnaUxz+z9yw=="
|
|
3563
|
-
},
|
|
3564
3620
|
"ajv": {
|
|
3565
3621
|
"version": "6.12.6",
|
|
3566
3622
|
"resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz",
|
|
@@ -3935,6 +3991,11 @@
|
|
|
3935
3991
|
"eslint-visitor-keys": "^1.1.0"
|
|
3936
3992
|
},
|
|
3937
3993
|
"dependencies": {
|
|
3994
|
+
"acorn": {
|
|
3995
|
+
"version": "7.4.1",
|
|
3996
|
+
"resolved": "https://registry.npmjs.org/acorn/-/acorn-7.4.1.tgz",
|
|
3997
|
+
"integrity": "sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A=="
|
|
3998
|
+
},
|
|
3938
3999
|
"eslint-visitor-keys": {
|
|
3939
4000
|
"version": "1.3.0",
|
|
3940
4001
|
"resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-1.3.0.tgz",
|
|
@@ -4566,15 +4627,14 @@
|
|
|
4566
4627
|
"integrity": "sha512-qkIilPUYcNhJpd33n0GBXTB1MMPp14TxEsEs0pTrsSVucApsYzW5V+Q8Qxhik6KU3evy+qkAAowTByymK0avdg=="
|
|
4567
4628
|
},
|
|
4568
4629
|
"gray-matter": {
|
|
4569
|
-
"version": "
|
|
4570
|
-
"resolved": "https://registry.npmjs.org/gray-matter/-/gray-matter-
|
|
4571
|
-
"integrity": "
|
|
4630
|
+
"version": "4.0.3",
|
|
4631
|
+
"resolved": "https://registry.npmjs.org/gray-matter/-/gray-matter-4.0.3.tgz",
|
|
4632
|
+
"integrity": "sha512-5v6yZd4JK3eMI3FqqCouswVqwugaA9r4dNZB1wwcmrD02QkV5H0y7XBQW8QwQqEaZY1pM9aqORSORhJRdNK44Q==",
|
|
4572
4633
|
"requires": {
|
|
4573
|
-
"
|
|
4574
|
-
"
|
|
4575
|
-
"
|
|
4576
|
-
"
|
|
4577
|
-
"toml": "^2.3.2"
|
|
4634
|
+
"js-yaml": "^3.13.1",
|
|
4635
|
+
"kind-of": "^6.0.2",
|
|
4636
|
+
"section-matter": "^1.0.0",
|
|
4637
|
+
"strip-bom-string": "^1.0.0"
|
|
4578
4638
|
}
|
|
4579
4639
|
},
|
|
4580
4640
|
"has": {
|
|
@@ -4585,21 +4645,6 @@
|
|
|
4585
4645
|
"function-bind": "^1.1.1"
|
|
4586
4646
|
}
|
|
4587
4647
|
},
|
|
4588
|
-
"has-ansi": {
|
|
4589
|
-
"version": "2.0.0",
|
|
4590
|
-
"resolved": "https://registry.npmjs.org/has-ansi/-/has-ansi-2.0.0.tgz",
|
|
4591
|
-
"integrity": "sha1-NPUEnOHs3ysGSa8+8k5F7TVBbZE=",
|
|
4592
|
-
"requires": {
|
|
4593
|
-
"ansi-regex": "^2.0.0"
|
|
4594
|
-
},
|
|
4595
|
-
"dependencies": {
|
|
4596
|
-
"ansi-regex": {
|
|
4597
|
-
"version": "2.1.1",
|
|
4598
|
-
"resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.1.1.tgz",
|
|
4599
|
-
"integrity": "sha1-w7M6te42DYbg5ijwRorn7yfWVN8="
|
|
4600
|
-
}
|
|
4601
|
-
}
|
|
4602
|
-
},
|
|
4603
4648
|
"has-bigints": {
|
|
4604
4649
|
"version": "1.0.1",
|
|
4605
4650
|
"resolved": "https://registry.npmjs.org/has-bigints/-/has-bigints-1.0.1.tgz",
|
|
@@ -4619,11 +4664,6 @@
|
|
|
4619
4664
|
"resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz",
|
|
4620
4665
|
"integrity": "sha1-tdRU3CGZriJWmfNGfloH87lVuv0="
|
|
4621
4666
|
},
|
|
4622
|
-
"has-generators": {
|
|
4623
|
-
"version": "1.0.1",
|
|
4624
|
-
"resolved": "https://registry.npmjs.org/has-generators/-/has-generators-1.0.1.tgz",
|
|
4625
|
-
"integrity": "sha1-pqLlVIYBGUBILhPiyTeRxEms9Ek="
|
|
4626
|
-
},
|
|
4627
4667
|
"has-symbol-support-x": {
|
|
4628
4668
|
"version": "1.4.2",
|
|
4629
4669
|
"resolved": "https://registry.npmjs.org/has-symbol-support-x/-/has-symbol-support-x-1.4.2.tgz",
|
|
@@ -4963,11 +5003,6 @@
|
|
|
4963
5003
|
"resolved": "https://registry.npmjs.org/ipaddr.js/-/ipaddr.js-1.9.1.tgz",
|
|
4964
5004
|
"integrity": "sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g=="
|
|
4965
5005
|
},
|
|
4966
|
-
"is": {
|
|
4967
|
-
"version": "3.3.0",
|
|
4968
|
-
"resolved": "https://registry.npmjs.org/is/-/is-3.3.0.tgz",
|
|
4969
|
-
"integrity": "sha512-nW24QBoPcFGGHJGUwnfpI7Yc5CdqWNdsyHQszVE/z2pKHXzh7FZ5GWhJqSyaQ9wMkQnsTx+kAI8bHlCX4tKdbg=="
|
|
4970
|
-
},
|
|
4971
5006
|
"is-arguments": {
|
|
4972
5007
|
"version": "1.1.1",
|
|
4973
5008
|
"resolved": "https://registry.npmjs.org/is-arguments/-/is-arguments-1.1.1.tgz",
|
|
@@ -5320,12 +5355,9 @@
|
|
|
5320
5355
|
"integrity": "sha1-nbe1lJatPzz+8wp1FC0tkwrXJlE="
|
|
5321
5356
|
},
|
|
5322
5357
|
"json5": {
|
|
5323
|
-
"version": "2.2.
|
|
5324
|
-
"resolved": "https://registry.npmjs.org/json5/-/json5-2.2.
|
|
5325
|
-
"integrity": "sha512-
|
|
5326
|
-
"requires": {
|
|
5327
|
-
"minimist": "^1.2.5"
|
|
5328
|
-
}
|
|
5358
|
+
"version": "2.2.1",
|
|
5359
|
+
"resolved": "https://registry.npmjs.org/json5/-/json5-2.2.1.tgz",
|
|
5360
|
+
"integrity": "sha512-1hqLFMSrGHRHxav9q9gNjJ5EXznIxGVO09xQRrwplcS8qs28pZ8s8hupZAmqDwZUmVZ2Qb2jnyPOWcDH8m8dlA=="
|
|
5329
5361
|
},
|
|
5330
5362
|
"jsonfile": {
|
|
5331
5363
|
"version": "2.4.0",
|
|
@@ -5375,6 +5407,11 @@
|
|
|
5375
5407
|
"json-buffer": "3.0.0"
|
|
5376
5408
|
}
|
|
5377
5409
|
},
|
|
5410
|
+
"kind-of": {
|
|
5411
|
+
"version": "6.0.3",
|
|
5412
|
+
"resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.3.tgz",
|
|
5413
|
+
"integrity": "sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw=="
|
|
5414
|
+
},
|
|
5378
5415
|
"klaw": {
|
|
5379
5416
|
"version": "1.3.1",
|
|
5380
5417
|
"resolved": "https://registry.npmjs.org/klaw/-/klaw-1.3.1.tgz",
|
|
@@ -5474,9 +5511,9 @@
|
|
|
5474
5511
|
"integrity": "sha1-5WqpTEyAVaFkBKBnS3jyFffI4ZQ="
|
|
5475
5512
|
},
|
|
5476
5513
|
"marked": {
|
|
5477
|
-
"version": "0.
|
|
5478
|
-
"resolved": "https://registry.npmjs.org/marked/-/marked-0.
|
|
5479
|
-
"integrity": "sha512-
|
|
5514
|
+
"version": "4.0.16",
|
|
5515
|
+
"resolved": "https://registry.npmjs.org/marked/-/marked-4.0.16.tgz",
|
|
5516
|
+
"integrity": "sha512-wahonIQ5Jnyatt2fn8KqF/nIqZM8mh3oRu2+l5EANGMhu6RFjiSG52QNE2eWzFMI94HqYSgN184NurgNG6CztA=="
|
|
5480
5517
|
},
|
|
5481
5518
|
"md5.js": {
|
|
5482
5519
|
"version": "1.3.5",
|
|
@@ -5516,109 +5553,137 @@
|
|
|
5516
5553
|
}
|
|
5517
5554
|
},
|
|
5518
5555
|
"metalsmith": {
|
|
5519
|
-
"version": "2.3
|
|
5520
|
-
"resolved": "https://registry.npmjs.org/metalsmith/-/metalsmith-2.3.
|
|
5521
|
-
"integrity": "
|
|
5556
|
+
"version": "2.4.3",
|
|
5557
|
+
"resolved": "https://registry.npmjs.org/metalsmith/-/metalsmith-2.4.3.tgz",
|
|
5558
|
+
"integrity": "sha512-W54oznz5wrBuE6lGj9ITq9Cj8HdAX8BkLptR+TInbhrkObinR7pm4z8zspYkCUVW/3UJnvZZJ55/LdikblC1vw==",
|
|
5522
5559
|
"requires": {
|
|
5523
|
-
"
|
|
5524
|
-
"
|
|
5525
|
-
"clone": "^1.0.2",
|
|
5560
|
+
"chalk": "^4.1.2",
|
|
5561
|
+
"clone": "^2.1.2",
|
|
5526
5562
|
"co-fs-extra": "^1.2.1",
|
|
5527
|
-
"commander": "^2.
|
|
5528
|
-
"
|
|
5529
|
-
"
|
|
5530
|
-
"is": "^3.1.0",
|
|
5563
|
+
"commander": "^6.2.1",
|
|
5564
|
+
"cross-spawn": "^7.0.3",
|
|
5565
|
+
"gray-matter": "^4.0.3",
|
|
5531
5566
|
"is-utf8": "~0.2.0",
|
|
5532
|
-
"
|
|
5533
|
-
"rimraf": "^
|
|
5534
|
-
"stat-mode": "^0.
|
|
5567
|
+
"micromatch": "^4.0.5",
|
|
5568
|
+
"rimraf": "^3.0.2",
|
|
5569
|
+
"stat-mode": "^1.0.0",
|
|
5535
5570
|
"thunkify": "^2.1.2",
|
|
5536
5571
|
"unyield": "0.0.1",
|
|
5537
|
-
"ware": "^1.
|
|
5538
|
-
"win-fork": "^1.1.1"
|
|
5572
|
+
"ware": "^1.3.0"
|
|
5539
5573
|
},
|
|
5540
5574
|
"dependencies": {
|
|
5541
|
-
"ansi-regex": {
|
|
5542
|
-
"version": "2.1.1",
|
|
5543
|
-
"resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.1.1.tgz",
|
|
5544
|
-
"integrity": "sha1-w7M6te42DYbg5ijwRorn7yfWVN8="
|
|
5545
|
-
},
|
|
5546
5575
|
"ansi-styles": {
|
|
5547
|
-
"version": "
|
|
5548
|
-
"resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-
|
|
5549
|
-
"integrity": "
|
|
5576
|
+
"version": "4.3.0",
|
|
5577
|
+
"resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz",
|
|
5578
|
+
"integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
|
|
5579
|
+
"requires": {
|
|
5580
|
+
"color-convert": "^2.0.1"
|
|
5581
|
+
}
|
|
5550
5582
|
},
|
|
5551
5583
|
"chalk": {
|
|
5552
|
-
"version": "
|
|
5553
|
-
"resolved": "https://registry.npmjs.org/chalk/-/chalk-
|
|
5554
|
-
"integrity": "
|
|
5584
|
+
"version": "4.1.2",
|
|
5585
|
+
"resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz",
|
|
5586
|
+
"integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==",
|
|
5555
5587
|
"requires": {
|
|
5556
|
-
"ansi-styles": "^
|
|
5557
|
-
"
|
|
5558
|
-
"has-ansi": "^2.0.0",
|
|
5559
|
-
"strip-ansi": "^3.0.0",
|
|
5560
|
-
"supports-color": "^2.0.0"
|
|
5588
|
+
"ansi-styles": "^4.1.0",
|
|
5589
|
+
"supports-color": "^7.1.0"
|
|
5561
5590
|
}
|
|
5562
5591
|
},
|
|
5563
|
-
"
|
|
5564
|
-
"version": "2.
|
|
5565
|
-
"resolved": "https://registry.npmjs.org/
|
|
5566
|
-
"integrity": "
|
|
5592
|
+
"clone": {
|
|
5593
|
+
"version": "2.1.2",
|
|
5594
|
+
"resolved": "https://registry.npmjs.org/clone/-/clone-2.1.2.tgz",
|
|
5595
|
+
"integrity": "sha1-G39Ln1kfHo+DZwQBYANFoCiHQ18="
|
|
5596
|
+
},
|
|
5597
|
+
"color-convert": {
|
|
5598
|
+
"version": "2.0.1",
|
|
5599
|
+
"resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz",
|
|
5600
|
+
"integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
|
|
5567
5601
|
"requires": {
|
|
5568
|
-
"
|
|
5602
|
+
"color-name": "~1.1.4"
|
|
5569
5603
|
}
|
|
5570
5604
|
},
|
|
5571
|
-
"
|
|
5572
|
-
"version": "
|
|
5573
|
-
"resolved": "https://registry.npmjs.org/
|
|
5574
|
-
"integrity": "
|
|
5605
|
+
"color-name": {
|
|
5606
|
+
"version": "1.1.4",
|
|
5607
|
+
"resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz",
|
|
5608
|
+
"integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA=="
|
|
5609
|
+
},
|
|
5610
|
+
"commander": {
|
|
5611
|
+
"version": "6.2.1",
|
|
5612
|
+
"resolved": "https://registry.npmjs.org/commander/-/commander-6.2.1.tgz",
|
|
5613
|
+
"integrity": "sha512-U7VdrJFnJgo4xjrHpTzu0yrHPGImdsmD95ZlgYSEajAn2JKzDhDTPG9kBTefmObL2w/ngeZnilk+OV9CG3d7UA=="
|
|
5614
|
+
},
|
|
5615
|
+
"cross-spawn": {
|
|
5616
|
+
"version": "7.0.3",
|
|
5617
|
+
"resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz",
|
|
5618
|
+
"integrity": "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==",
|
|
5575
5619
|
"requires": {
|
|
5576
|
-
"
|
|
5620
|
+
"path-key": "^3.1.0",
|
|
5621
|
+
"shebang-command": "^2.0.0",
|
|
5622
|
+
"which": "^2.0.1"
|
|
5577
5623
|
}
|
|
5578
5624
|
},
|
|
5579
|
-
"
|
|
5625
|
+
"has-flag": {
|
|
5626
|
+
"version": "4.0.0",
|
|
5627
|
+
"resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz",
|
|
5628
|
+
"integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ=="
|
|
5629
|
+
},
|
|
5630
|
+
"path-key": {
|
|
5631
|
+
"version": "3.1.1",
|
|
5632
|
+
"resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz",
|
|
5633
|
+
"integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q=="
|
|
5634
|
+
},
|
|
5635
|
+
"shebang-command": {
|
|
5580
5636
|
"version": "2.0.0",
|
|
5581
|
-
"resolved": "https://registry.npmjs.org/
|
|
5582
|
-
"integrity": "
|
|
5583
|
-
|
|
5584
|
-
|
|
5585
|
-
|
|
5586
|
-
|
|
5587
|
-
|
|
5588
|
-
|
|
5589
|
-
|
|
5590
|
-
|
|
5591
|
-
|
|
5592
|
-
"
|
|
5593
|
-
|
|
5594
|
-
|
|
5595
|
-
|
|
5596
|
-
|
|
5597
|
-
|
|
5598
|
-
|
|
5599
|
-
|
|
5600
|
-
|
|
5601
|
-
"
|
|
5637
|
+
"resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz",
|
|
5638
|
+
"integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==",
|
|
5639
|
+
"requires": {
|
|
5640
|
+
"shebang-regex": "^3.0.0"
|
|
5641
|
+
}
|
|
5642
|
+
},
|
|
5643
|
+
"shebang-regex": {
|
|
5644
|
+
"version": "3.0.0",
|
|
5645
|
+
"resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz",
|
|
5646
|
+
"integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A=="
|
|
5647
|
+
},
|
|
5648
|
+
"supports-color": {
|
|
5649
|
+
"version": "7.2.0",
|
|
5650
|
+
"resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz",
|
|
5651
|
+
"integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==",
|
|
5652
|
+
"requires": {
|
|
5653
|
+
"has-flag": "^4.0.0"
|
|
5654
|
+
}
|
|
5655
|
+
},
|
|
5656
|
+
"which": {
|
|
5657
|
+
"version": "2.0.2",
|
|
5658
|
+
"resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz",
|
|
5659
|
+
"integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==",
|
|
5602
5660
|
"requires": {
|
|
5603
|
-
"
|
|
5661
|
+
"isexe": "^2.0.0"
|
|
5604
5662
|
}
|
|
5605
5663
|
}
|
|
5606
5664
|
}
|
|
5607
5665
|
},
|
|
5608
|
-
"metalsmith-markdown": {
|
|
5609
|
-
"version": "1.3.0",
|
|
5610
|
-
"resolved": "https://registry.npmjs.org/metalsmith-markdown/-/metalsmith-markdown-1.3.0.tgz",
|
|
5611
|
-
"integrity": "sha512-wStYRbJIYwNTDtHmVfb6RjNfFB+DkloIoQr600pXT2QRnbqMsdnAdSVfPjXX+vP7upCulZmp/xlcYzfDxKpx1w==",
|
|
5612
|
-
"requires": {
|
|
5613
|
-
"debug": "^4.1.1",
|
|
5614
|
-
"marked": "^0.7.0"
|
|
5615
|
-
}
|
|
5616
|
-
},
|
|
5617
5666
|
"methods": {
|
|
5618
5667
|
"version": "1.1.2",
|
|
5619
5668
|
"resolved": "https://registry.npmjs.org/methods/-/methods-1.1.2.tgz",
|
|
5620
5669
|
"integrity": "sha1-VSmk1nZUE07cxSZmVoNbD4Ua/O4="
|
|
5621
5670
|
},
|
|
5671
|
+
"micromatch": {
|
|
5672
|
+
"version": "4.0.5",
|
|
5673
|
+
"resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.5.tgz",
|
|
5674
|
+
"integrity": "sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==",
|
|
5675
|
+
"requires": {
|
|
5676
|
+
"braces": "^3.0.2",
|
|
5677
|
+
"picomatch": "^2.3.1"
|
|
5678
|
+
},
|
|
5679
|
+
"dependencies": {
|
|
5680
|
+
"picomatch": {
|
|
5681
|
+
"version": "2.3.1",
|
|
5682
|
+
"resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz",
|
|
5683
|
+
"integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA=="
|
|
5684
|
+
}
|
|
5685
|
+
}
|
|
5686
|
+
},
|
|
5622
5687
|
"miller-rabin": {
|
|
5623
5688
|
"version": "4.0.1",
|
|
5624
5689
|
"resolved": "https://registry.npmjs.org/miller-rabin/-/miller-rabin-4.0.1.tgz",
|
|
@@ -5682,9 +5747,9 @@
|
|
|
5682
5747
|
}
|
|
5683
5748
|
},
|
|
5684
5749
|
"minimist": {
|
|
5685
|
-
"version": "1.2.
|
|
5686
|
-
"resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.
|
|
5687
|
-
"integrity": "sha512-
|
|
5750
|
+
"version": "1.2.6",
|
|
5751
|
+
"resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.6.tgz",
|
|
5752
|
+
"integrity": "sha512-Jsjnk4bw3YJqYzbdyBiNsPWHPfO++UGG749Cxs6peCu5Xg4nrena6OVxOYxrQTqww0Jmwt+Ref8rggumkTLz9Q=="
|
|
5688
5753
|
},
|
|
5689
5754
|
"mkdirp": {
|
|
5690
5755
|
"version": "0.5.5",
|
|
@@ -5736,17 +5801,6 @@
|
|
|
5736
5801
|
"resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz",
|
|
5737
5802
|
"integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w=="
|
|
5738
5803
|
},
|
|
5739
|
-
"multimatch": {
|
|
5740
|
-
"version": "2.1.0",
|
|
5741
|
-
"resolved": "https://registry.npmjs.org/multimatch/-/multimatch-2.1.0.tgz",
|
|
5742
|
-
"integrity": "sha1-nHkGoi+0wCkZ4vX3UWG0zb1LKis=",
|
|
5743
|
-
"requires": {
|
|
5744
|
-
"array-differ": "^1.0.0",
|
|
5745
|
-
"array-union": "^1.0.1",
|
|
5746
|
-
"arrify": "^1.0.0",
|
|
5747
|
-
"minimatch": "^3.0.0"
|
|
5748
|
-
}
|
|
5749
|
-
},
|
|
5750
5804
|
"mute-stream": {
|
|
5751
5805
|
"version": "0.0.8",
|
|
5752
5806
|
"resolved": "https://registry.npmjs.org/mute-stream/-/mute-stream-0.0.8.tgz",
|
|
@@ -5781,9 +5835,9 @@
|
|
|
5781
5835
|
}
|
|
5782
5836
|
},
|
|
5783
5837
|
"node-releases": {
|
|
5784
|
-
"version": "2.0.
|
|
5785
|
-
"resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.
|
|
5786
|
-
"integrity": "sha512-
|
|
5838
|
+
"version": "2.0.4",
|
|
5839
|
+
"resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.4.tgz",
|
|
5840
|
+
"integrity": "sha512-gbMzqQtTtDz/00jQzZ21PQzdI9PyLYqUSvD0p3naOhX4odFji0ZxYdnVwPTxmSwkmxhcFImpozceidSG+AgoPQ=="
|
|
5787
5841
|
},
|
|
5788
5842
|
"normalize-path": {
|
|
5789
5843
|
"version": "3.0.0",
|
|
@@ -6367,23 +6421,15 @@
|
|
|
6367
6421
|
"picomatch": "^2.2.1"
|
|
6368
6422
|
}
|
|
6369
6423
|
},
|
|
6370
|
-
"recursive-readdir": {
|
|
6371
|
-
"version": "2.2.2",
|
|
6372
|
-
"resolved": "https://registry.npmjs.org/recursive-readdir/-/recursive-readdir-2.2.2.tgz",
|
|
6373
|
-
"integrity": "sha512-nRCcW9Sj7NuZwa2XvH9co8NPeXUBhZP7CRKJtU+cS6PW9FpCIFoI5ib0NT1ZrbNuPoRy0ylyCaUL8Gih4LSyFg==",
|
|
6374
|
-
"requires": {
|
|
6375
|
-
"minimatch": "3.0.4"
|
|
6376
|
-
}
|
|
6377
|
-
},
|
|
6378
6424
|
"regenerate": {
|
|
6379
6425
|
"version": "1.4.2",
|
|
6380
6426
|
"resolved": "https://registry.npmjs.org/regenerate/-/regenerate-1.4.2.tgz",
|
|
6381
6427
|
"integrity": "sha512-zrceR/XhGYU/d/opr2EKO7aRHUeiBI8qjtfHqADTwZd6Szfy16la6kqD0MIUs5z5hx6AaKa+PixpPrR289+I0A=="
|
|
6382
6428
|
},
|
|
6383
6429
|
"regenerate-unicode-properties": {
|
|
6384
|
-
"version": "
|
|
6385
|
-
"resolved": "https://registry.npmjs.org/regenerate-unicode-properties/-/regenerate-unicode-properties-
|
|
6386
|
-
"integrity": "sha512-
|
|
6430
|
+
"version": "10.0.1",
|
|
6431
|
+
"resolved": "https://registry.npmjs.org/regenerate-unicode-properties/-/regenerate-unicode-properties-10.0.1.tgz",
|
|
6432
|
+
"integrity": "sha512-vn5DU6yg6h8hP/2OkQo3K7uVILvY4iu0oI4t3HFa81UPkhGJwkRwM10JEc3upjdhHjs/k8GJY1sRBhk5sr69Bw==",
|
|
6387
6433
|
"requires": {
|
|
6388
6434
|
"regenerate": "^1.4.2"
|
|
6389
6435
|
}
|
|
@@ -6394,9 +6440,9 @@
|
|
|
6394
6440
|
"integrity": "sha512-p3VT+cOEgxFsRRA9X4lkI1E+k2/CtnKtU4gcxyaCUreilL/vqI6CdZ3wxVUx3UOUg+gnUOQQcRI7BmSI656MYA=="
|
|
6395
6441
|
},
|
|
6396
6442
|
"regenerator-transform": {
|
|
6397
|
-
"version": "0.
|
|
6398
|
-
"resolved": "https://registry.npmjs.org/regenerator-transform/-/regenerator-transform-0.
|
|
6399
|
-
"integrity": "sha512-
|
|
6443
|
+
"version": "0.15.0",
|
|
6444
|
+
"resolved": "https://registry.npmjs.org/regenerator-transform/-/regenerator-transform-0.15.0.tgz",
|
|
6445
|
+
"integrity": "sha512-LsrGtPmbYg19bcPHwdtmXwbW+TqNvtY4riE3P83foeHRroMbH6/2ddFBfab3t7kbzc7v7p4wbkIecHImqt0QNg==",
|
|
6400
6446
|
"requires": {
|
|
6401
6447
|
"@babel/runtime": "^7.8.4"
|
|
6402
6448
|
}
|
|
@@ -6416,14 +6462,14 @@
|
|
|
6416
6462
|
"integrity": "sha512-lv0M6+TkDVniA3aD1Eg0DVpfU/booSu7Eev3TDO/mZKHBfVjgCGTV4t4buppESEYDtkArYFOxTJWv6S5C+iaNw=="
|
|
6417
6463
|
},
|
|
6418
6464
|
"regexpu-core": {
|
|
6419
|
-
"version": "
|
|
6420
|
-
"resolved": "https://registry.npmjs.org/regexpu-core/-/regexpu-core-
|
|
6421
|
-
"integrity": "sha512-
|
|
6465
|
+
"version": "5.0.1",
|
|
6466
|
+
"resolved": "https://registry.npmjs.org/regexpu-core/-/regexpu-core-5.0.1.tgz",
|
|
6467
|
+
"integrity": "sha512-CriEZlrKK9VJw/xQGJpQM5rY88BtuL8DM+AEwvcThHilbxiTAy8vq4iJnd2tqq8wLmjbGZzP7ZcKFjbGkmEFrw==",
|
|
6422
6468
|
"requires": {
|
|
6423
6469
|
"regenerate": "^1.4.2",
|
|
6424
|
-
"regenerate-unicode-properties": "^
|
|
6425
|
-
"regjsgen": "^0.
|
|
6426
|
-
"regjsparser": "^0.
|
|
6470
|
+
"regenerate-unicode-properties": "^10.0.1",
|
|
6471
|
+
"regjsgen": "^0.6.0",
|
|
6472
|
+
"regjsparser": "^0.8.2",
|
|
6427
6473
|
"unicode-match-property-ecmascript": "^2.0.0",
|
|
6428
6474
|
"unicode-match-property-value-ecmascript": "^2.0.0"
|
|
6429
6475
|
}
|
|
@@ -6450,14 +6496,14 @@
|
|
|
6450
6496
|
}
|
|
6451
6497
|
},
|
|
6452
6498
|
"regjsgen": {
|
|
6453
|
-
"version": "0.
|
|
6454
|
-
"resolved": "https://registry.npmjs.org/regjsgen/-/regjsgen-0.
|
|
6455
|
-
"integrity": "sha512-
|
|
6499
|
+
"version": "0.6.0",
|
|
6500
|
+
"resolved": "https://registry.npmjs.org/regjsgen/-/regjsgen-0.6.0.tgz",
|
|
6501
|
+
"integrity": "sha512-ozE883Uigtqj3bx7OhL1KNbCzGyW2NQZPl6Hs09WTvCuZD5sTI4JY58bkbQWa/Y9hxIsvJ3M8Nbf7j54IqeZbA=="
|
|
6456
6502
|
},
|
|
6457
6503
|
"regjsparser": {
|
|
6458
|
-
"version": "0.
|
|
6459
|
-
"resolved": "https://registry.npmjs.org/regjsparser/-/regjsparser-0.
|
|
6460
|
-
"integrity": "sha512-
|
|
6504
|
+
"version": "0.8.4",
|
|
6505
|
+
"resolved": "https://registry.npmjs.org/regjsparser/-/regjsparser-0.8.4.tgz",
|
|
6506
|
+
"integrity": "sha512-J3LABycON/VNEu3abOviqGHuB/LOtOQj8SKmfP9anY5GfAVw/SPjwzSjxGjbZXIxbGfqTHtJw58C2Li/WkStmA==",
|
|
6461
6507
|
"requires": {
|
|
6462
6508
|
"jsesc": "~0.5.0"
|
|
6463
6509
|
},
|
|
@@ -6651,6 +6697,15 @@
|
|
|
6651
6697
|
"get-assigned-identifiers": "^1.1.0"
|
|
6652
6698
|
}
|
|
6653
6699
|
},
|
|
6700
|
+
"section-matter": {
|
|
6701
|
+
"version": "1.0.0",
|
|
6702
|
+
"resolved": "https://registry.npmjs.org/section-matter/-/section-matter-1.0.0.tgz",
|
|
6703
|
+
"integrity": "sha512-vfD3pmTzGpufjScBh50YHKzEu2lxBWhVEHsNGoEXmCmn2hKGfeNLYMzCJpe8cD7gqX7TJluOVpBkAequ6dgMmA==",
|
|
6704
|
+
"requires": {
|
|
6705
|
+
"extend-shallow": "^2.0.1",
|
|
6706
|
+
"kind-of": "^6.0.0"
|
|
6707
|
+
}
|
|
6708
|
+
},
|
|
6654
6709
|
"seek-bzip": {
|
|
6655
6710
|
"version": "1.0.6",
|
|
6656
6711
|
"resolved": "https://registry.npmjs.org/seek-bzip/-/seek-bzip-1.0.6.tgz",
|
|
@@ -6988,6 +7043,11 @@
|
|
|
6988
7043
|
"resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz",
|
|
6989
7044
|
"integrity": "sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w="
|
|
6990
7045
|
},
|
|
7046
|
+
"source-map-js": {
|
|
7047
|
+
"version": "1.0.2",
|
|
7048
|
+
"resolved": "https://registry.npmjs.org/source-map-js/-/source-map-js-1.0.2.tgz",
|
|
7049
|
+
"integrity": "sha512-R0XvVJ9WusLiqTCEiGCmICCMplcCkIwwR11mOSD9CR5u+IXYdiseeEuXCVAjS54zqwkLcPNnmU4OeJ6tUrWhDw=="
|
|
7050
|
+
},
|
|
6991
7051
|
"source-map-support": {
|
|
6992
7052
|
"version": "0.5.21",
|
|
6993
7053
|
"resolved": "https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.21.tgz",
|
|
@@ -7042,9 +7102,9 @@
|
|
|
7042
7102
|
"integrity": "sha1-BOaSb2YolTVPPdAVIDYzuFcpfiw="
|
|
7043
7103
|
},
|
|
7044
7104
|
"stat-mode": {
|
|
7045
|
-
"version": "0.
|
|
7046
|
-
"resolved": "https://registry.npmjs.org/stat-mode/-/stat-mode-0.
|
|
7047
|
-
"integrity": "
|
|
7105
|
+
"version": "1.0.0",
|
|
7106
|
+
"resolved": "https://registry.npmjs.org/stat-mode/-/stat-mode-1.0.0.tgz",
|
|
7107
|
+
"integrity": "sha512-jH9EhtKIjuXZ2cWxmXS8ZP80XyC3iasQxMDV8jzhNJpfDb7VbQLVW4Wvsxz9QZvzV+G4YoSfBUVKDOyxLzi/sg=="
|
|
7048
7108
|
},
|
|
7049
7109
|
"static-eval": {
|
|
7050
7110
|
"version": "2.1.0",
|
|
@@ -7216,12 +7276,17 @@
|
|
|
7216
7276
|
},
|
|
7217
7277
|
"dependencies": {
|
|
7218
7278
|
"ansi-regex": {
|
|
7219
|
-
"version": "4.1.
|
|
7220
|
-
"resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-4.1.
|
|
7221
|
-
"integrity": "sha512-
|
|
7279
|
+
"version": "4.1.1",
|
|
7280
|
+
"resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-4.1.1.tgz",
|
|
7281
|
+
"integrity": "sha512-ILlv4k/3f6vfQ4OoP2AGvirOktlQ98ZEL1k9FaQjxa3L1abBgbuTDAdPOpvbGncC0BTVQrl+OM8xZGK6tWXt7g=="
|
|
7222
7282
|
}
|
|
7223
7283
|
}
|
|
7224
7284
|
},
|
|
7285
|
+
"strip-bom-string": {
|
|
7286
|
+
"version": "1.0.0",
|
|
7287
|
+
"resolved": "https://registry.npmjs.org/strip-bom-string/-/strip-bom-string-1.0.0.tgz",
|
|
7288
|
+
"integrity": "sha1-5SEekiQ2n7uB1jOi8ABE3IztrZI="
|
|
7289
|
+
},
|
|
7225
7290
|
"strip-dirs": {
|
|
7226
7291
|
"version": "2.1.0",
|
|
7227
7292
|
"resolved": "https://registry.npmjs.org/strip-dirs/-/strip-dirs-2.1.0.tgz",
|
|
@@ -7472,20 +7537,14 @@
|
|
|
7472
7537
|
"integrity": "sha512-wK0Ri4fOGjv/XPy8SBHZChl8CM7uMc5VML7SqiQ0zG7+J5Vr+RMQDoHa2CNT6KHUnTGIXH34UDMkPzAUyapBZg=="
|
|
7473
7538
|
},
|
|
7474
7539
|
"terser": {
|
|
7475
|
-
"version": "5.
|
|
7476
|
-
"resolved": "https://registry.npmjs.org/terser/-/terser-5.
|
|
7477
|
-
"integrity": "sha512
|
|
7540
|
+
"version": "5.14.1",
|
|
7541
|
+
"resolved": "https://registry.npmjs.org/terser/-/terser-5.14.1.tgz",
|
|
7542
|
+
"integrity": "sha512-+ahUAE+iheqBTDxXhTisdA8hgvbEG1hHOQ9xmNjeUJSoi6DU/gMrKNcfZjHkyY6Alnuyc+ikYJaxxfHkT3+WuQ==",
|
|
7478
7543
|
"requires": {
|
|
7544
|
+
"@jridgewell/source-map": "^0.3.2",
|
|
7545
|
+
"acorn": "^8.5.0",
|
|
7479
7546
|
"commander": "^2.20.0",
|
|
7480
|
-
"source-map": "~0.7.2",
|
|
7481
7547
|
"source-map-support": "~0.5.20"
|
|
7482
|
-
},
|
|
7483
|
-
"dependencies": {
|
|
7484
|
-
"source-map": {
|
|
7485
|
-
"version": "0.7.3",
|
|
7486
|
-
"resolved": "https://registry.npmjs.org/source-map/-/source-map-0.7.3.tgz",
|
|
7487
|
-
"integrity": "sha512-CkCj6giN3S+n9qrYiBTX5gystlENnRW5jZeNLHpe6aue+SrHcG5VYwujhW9s4dY31mEGsxBDrHR6oI69fTXsaQ=="
|
|
7488
|
-
}
|
|
7489
7548
|
}
|
|
7490
7549
|
},
|
|
7491
7550
|
"text-table": {
|
|
@@ -7574,11 +7633,6 @@
|
|
|
7574
7633
|
"resolved": "https://registry.npmjs.org/toidentifier/-/toidentifier-1.0.0.tgz",
|
|
7575
7634
|
"integrity": "sha512-yaOH/Pk/VEhBWWTlhI+qXxDFXlejDGcQipMlyxda9nthulaxLZUNcUqFxokp0vcYnvteJln5FNQDRrxj3YcbVw=="
|
|
7576
7635
|
},
|
|
7577
|
-
"toml": {
|
|
7578
|
-
"version": "2.3.6",
|
|
7579
|
-
"resolved": "https://registry.npmjs.org/toml/-/toml-2.3.6.tgz",
|
|
7580
|
-
"integrity": "sha512-gVweAectJU3ebq//Ferr2JUY4WKSDe5N+z0FvjDncLGyHmIDoxgY/2Ie4qfEIDm4IS7OA6Rmdm7pdEEdMcV/xQ=="
|
|
7581
|
-
},
|
|
7582
7636
|
"tr46": {
|
|
7583
7637
|
"version": "0.0.3",
|
|
7584
7638
|
"resolved": "https://registry.npmjs.org/tr46/-/tr46-0.0.3.tgz",
|
|
@@ -8027,11 +8081,6 @@
|
|
|
8027
8081
|
"string-width": "^4.0.0"
|
|
8028
8082
|
}
|
|
8029
8083
|
},
|
|
8030
|
-
"win-fork": {
|
|
8031
|
-
"version": "1.1.1",
|
|
8032
|
-
"resolved": "https://registry.npmjs.org/win-fork/-/win-fork-1.1.1.tgz",
|
|
8033
|
-
"integrity": "sha1-j1jgZW/KAK3IyGoriePNLWotXl4="
|
|
8034
|
-
},
|
|
8035
8084
|
"word-wrap": {
|
|
8036
8085
|
"version": "1.2.3",
|
|
8037
8086
|
"resolved": "https://registry.npmjs.org/word-wrap/-/word-wrap-1.2.3.tgz",
|