@qooxdoo/framework 7.0.0 → 7.2.0
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 +10 -2
- package/Manifest.json +22 -22
- package/README.md +2 -4
- package/lib/compiler/compile-info.json +60 -58
- package/lib/compiler/index.js +1973 -1625
- package/lib/resource/qx/tool/cli/templates/loader/loader-browser.tmpl.js +1 -2
- package/lib/resource/qx/tool/schema/compile-1-0-0.json +11 -1
- package/npm-shrinkwrap.json +1738 -788
- package/package.json +10 -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 +4 -1
- package/source/class/qx/tool/cli/api/CompilerApi.js +3 -7
- package/source/class/qx/tool/cli/commands/Compile.js +10 -1
- package/source/class/qx/tool/cli/commands/Lint.js +35 -21
- package/source/class/qx/tool/compiler/ClassFile.js +82 -2
- package/source/class/qx/tool/compiler/Es6ify.js +12 -5
- package/source/class/qx/tool/compiler/TargetError.js +26 -0
- 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 +8 -0
- package/source/class/qx/tool/compiler/targets/meta/AbstractJavascriptMeta.js +2 -2
- package/source/class/qx/tool/compiler/targets/meta/Browserify.js +179 -0
- 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/AbstractSelectBox.js +4 -1
- package/source/class/qx/ui/form/ComboBox.js +7 -15
- package/source/class/qx/ui/form/DateField.js +13 -19
- 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 +2 -1
- package/source/class/qx/ui/progressive/renderer/table/cell/Boolean.js +24 -26
- package/source/class/qx/ui/progressive/renderer/table/cell/Icon.js +9 -7
- package/source/class/qx/ui/progressive/renderer/table/cell/Image.js +16 -13
- 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 -8
- package/source/class/qx/ui/table/model/Abstract.js +34 -1
- package/source/class/qx/ui/table/model/Remote.js +1 -0
- package/source/class/qx/ui/table/model/Simple.js +3 -0
- 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 +62 -5
- package/source/class/qx/ui/treevirtual/SimpleTreeDataModel.js +11 -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",
|
|
@@ -1573,10 +1668,14 @@
|
|
|
1573
1668
|
"resolved": "https://registry.npmjs.org/@xmldom/xmldom/-/xmldom-0.7.5.tgz",
|
|
1574
1669
|
"integrity": "sha512-V3BIhmY36fXZ1OtVcI9W+FxQqxVLsPKcNjWigIaa81dLC9IolJl5Mt4Cvhmr0flUnjSpTdrbMTSbXqYqV5dT6A=="
|
|
1575
1670
|
},
|
|
1576
|
-
"
|
|
1577
|
-
"version": "
|
|
1578
|
-
"resolved": "https://registry.npmjs.org/
|
|
1579
|
-
"integrity": "
|
|
1671
|
+
"JSONStream": {
|
|
1672
|
+
"version": "1.3.5",
|
|
1673
|
+
"resolved": "https://registry.npmjs.org/JSONStream/-/JSONStream-1.3.5.tgz",
|
|
1674
|
+
"integrity": "sha512-E+iruNOY8VV9s4JEbe1aNEm6MiszPRr/UfcHMz0TQh1BXSxHK+ASV1R6W4HpjBhSeS+54PIsAMCBmwD06LLsqQ==",
|
|
1675
|
+
"requires": {
|
|
1676
|
+
"jsonparse": "^1.2.0",
|
|
1677
|
+
"through": ">=2.2.7 <3"
|
|
1678
|
+
}
|
|
1580
1679
|
},
|
|
1581
1680
|
"accepts": {
|
|
1582
1681
|
"version": "1.3.7",
|
|
@@ -1588,9 +1687,9 @@
|
|
|
1588
1687
|
}
|
|
1589
1688
|
},
|
|
1590
1689
|
"acorn": {
|
|
1591
|
-
"version": "7.
|
|
1592
|
-
"resolved": "https://registry.npmjs.org/acorn/-/acorn-7.
|
|
1593
|
-
"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=="
|
|
1594
1693
|
},
|
|
1595
1694
|
"acorn-jsx": {
|
|
1596
1695
|
"version": "5.3.2",
|
|
@@ -1605,6 +1704,13 @@
|
|
|
1605
1704
|
"acorn": "^7.0.0",
|
|
1606
1705
|
"acorn-walk": "^7.0.0",
|
|
1607
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
|
+
}
|
|
1608
1714
|
}
|
|
1609
1715
|
},
|
|
1610
1716
|
"acorn-walk": {
|
|
@@ -1664,14 +1770,6 @@
|
|
|
1664
1770
|
}
|
|
1665
1771
|
}
|
|
1666
1772
|
},
|
|
1667
|
-
"ansi-red": {
|
|
1668
|
-
"version": "0.1.1",
|
|
1669
|
-
"resolved": "https://registry.npmjs.org/ansi-red/-/ansi-red-0.1.1.tgz",
|
|
1670
|
-
"integrity": "sha1-jGOPnRCAgAo1PJwoyKgcpHBdlGw=",
|
|
1671
|
-
"requires": {
|
|
1672
|
-
"ansi-wrap": "0.1.0"
|
|
1673
|
-
}
|
|
1674
|
-
},
|
|
1675
1773
|
"ansi-regex": {
|
|
1676
1774
|
"version": "5.0.1",
|
|
1677
1775
|
"resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz",
|
|
@@ -1685,11 +1783,6 @@
|
|
|
1685
1783
|
"color-convert": "^1.9.0"
|
|
1686
1784
|
}
|
|
1687
1785
|
},
|
|
1688
|
-
"ansi-wrap": {
|
|
1689
|
-
"version": "0.1.0",
|
|
1690
|
-
"resolved": "https://registry.npmjs.org/ansi-wrap/-/ansi-wrap-0.1.0.tgz",
|
|
1691
|
-
"integrity": "sha1-qCJQ3bABXponyoLoLqYDu/pF768="
|
|
1692
|
-
},
|
|
1693
1786
|
"anymatch": {
|
|
1694
1787
|
"version": "3.1.2",
|
|
1695
1788
|
"resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.2.tgz",
|
|
@@ -1717,11 +1810,6 @@
|
|
|
1717
1810
|
"sprintf-js": "~1.0.2"
|
|
1718
1811
|
}
|
|
1719
1812
|
},
|
|
1720
|
-
"array-differ": {
|
|
1721
|
-
"version": "1.0.0",
|
|
1722
|
-
"resolved": "https://registry.npmjs.org/array-differ/-/array-differ-1.0.0.tgz",
|
|
1723
|
-
"integrity": "sha1-7/UuN1gknTO+QCuLuOVkuytdQDE="
|
|
1724
|
-
},
|
|
1725
1813
|
"array-flatten": {
|
|
1726
1814
|
"version": "1.1.1",
|
|
1727
1815
|
"resolved": "https://registry.npmjs.org/array-flatten/-/array-flatten-1.1.1.tgz",
|
|
@@ -1732,28 +1820,52 @@
|
|
|
1732
1820
|
"resolved": "https://registry.npmjs.org/array-from/-/array-from-2.1.1.tgz",
|
|
1733
1821
|
"integrity": "sha1-z+nYwmYoudxa7MYqn12PHzUsEZU="
|
|
1734
1822
|
},
|
|
1735
|
-
"array-union": {
|
|
1736
|
-
"version": "1.0.2",
|
|
1737
|
-
"resolved": "https://registry.npmjs.org/array-union/-/array-union-1.0.2.tgz",
|
|
1738
|
-
"integrity": "sha1-mjRBDk9OPaI96jdb5b5w8kd47Dk=",
|
|
1739
|
-
"requires": {
|
|
1740
|
-
"array-uniq": "^1.0.1"
|
|
1741
|
-
}
|
|
1742
|
-
},
|
|
1743
|
-
"array-uniq": {
|
|
1744
|
-
"version": "1.0.3",
|
|
1745
|
-
"resolved": "https://registry.npmjs.org/array-uniq/-/array-uniq-1.0.3.tgz",
|
|
1746
|
-
"integrity": "sha1-r2rId6Jcx/dOBYiUdThY39sk/bY="
|
|
1747
|
-
},
|
|
1748
|
-
"arrify": {
|
|
1749
|
-
"version": "1.0.1",
|
|
1750
|
-
"resolved": "https://registry.npmjs.org/arrify/-/arrify-1.0.1.tgz",
|
|
1751
|
-
"integrity": "sha1-iYUI2iIm84DfkEcoRWhJwVAaSw0="
|
|
1752
|
-
},
|
|
1753
1823
|
"asap": {
|
|
1754
1824
|
"version": "2.0.6",
|
|
1755
1825
|
"resolved": "https://registry.npmjs.org/asap/-/asap-2.0.6.tgz",
|
|
1756
|
-
"integrity": "
|
|
1826
|
+
"integrity": "sha512-BSHWgDSAiKs50o2Re8ppvp3seVHXSRM44cdSsT9FfNEUUZLOGWVCsiWaRPWM1Znn+mqZ1OfVZ3z3DWEzSp7hRA=="
|
|
1827
|
+
},
|
|
1828
|
+
"asn1.js": {
|
|
1829
|
+
"version": "5.4.1",
|
|
1830
|
+
"resolved": "https://registry.npmjs.org/asn1.js/-/asn1.js-5.4.1.tgz",
|
|
1831
|
+
"integrity": "sha512-+I//4cYPccV8LdmBLiX8CYvf9Sp3vQsrqu2QNXRcrbiWvcx/UdlFiqUJJzxRQxgsZmvhXhn4cSKeSmoFjVdupA==",
|
|
1832
|
+
"requires": {
|
|
1833
|
+
"bn.js": "^4.0.0",
|
|
1834
|
+
"inherits": "^2.0.1",
|
|
1835
|
+
"minimalistic-assert": "^1.0.0",
|
|
1836
|
+
"safer-buffer": "^2.1.0"
|
|
1837
|
+
},
|
|
1838
|
+
"dependencies": {
|
|
1839
|
+
"bn.js": {
|
|
1840
|
+
"version": "4.12.0",
|
|
1841
|
+
"resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.12.0.tgz",
|
|
1842
|
+
"integrity": "sha512-c98Bf3tPniI+scsdk237ku1Dc3ujXQTSgyiPUDEOe7tRkhrqridvh8klBv0HCEso1OLOYcHuCv/cS6DNxKH+ZA=="
|
|
1843
|
+
}
|
|
1844
|
+
}
|
|
1845
|
+
},
|
|
1846
|
+
"assert": {
|
|
1847
|
+
"version": "1.5.0",
|
|
1848
|
+
"resolved": "https://registry.npmjs.org/assert/-/assert-1.5.0.tgz",
|
|
1849
|
+
"integrity": "sha512-EDsgawzwoun2CZkCgtxJbv392v4nbk9XDD06zI+kQYoBM/3RBWLlEyJARDOmhAAosBjWACEkKL6S+lIZtcAubA==",
|
|
1850
|
+
"requires": {
|
|
1851
|
+
"object-assign": "^4.1.1",
|
|
1852
|
+
"util": "0.10.3"
|
|
1853
|
+
},
|
|
1854
|
+
"dependencies": {
|
|
1855
|
+
"inherits": {
|
|
1856
|
+
"version": "2.0.1",
|
|
1857
|
+
"resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.1.tgz",
|
|
1858
|
+
"integrity": "sha1-sX0I0ya0Qj5Wjv9xn5GwscvfafE="
|
|
1859
|
+
},
|
|
1860
|
+
"util": {
|
|
1861
|
+
"version": "0.10.3",
|
|
1862
|
+
"resolved": "https://registry.npmjs.org/util/-/util-0.10.3.tgz",
|
|
1863
|
+
"integrity": "sha1-evsa/lCAUkZInj23/g7TeTNqwPk=",
|
|
1864
|
+
"requires": {
|
|
1865
|
+
"inherits": "2.0.1"
|
|
1866
|
+
}
|
|
1867
|
+
}
|
|
1868
|
+
}
|
|
1757
1869
|
},
|
|
1758
1870
|
"ast-transform": {
|
|
1759
1871
|
"version": "0.0.0",
|
|
@@ -1813,9 +1925,9 @@
|
|
|
1813
1925
|
"integrity": "sha512-+Ryf6g3BKoRc7jfp7ad8tM4TtMiaWvbF/1/sQcZPkkS7ag3D5nMBCe2UfOTONtAkaG0tO0ij3C5Lwmf1EiyjHg=="
|
|
1814
1926
|
},
|
|
1815
1927
|
"async": {
|
|
1816
|
-
"version": "2.6.
|
|
1817
|
-
"resolved": "https://registry.npmjs.org/async/-/async-2.6.
|
|
1818
|
-
"integrity": "sha512-
|
|
1928
|
+
"version": "2.6.4",
|
|
1929
|
+
"resolved": "https://registry.npmjs.org/async/-/async-2.6.4.tgz",
|
|
1930
|
+
"integrity": "sha512-mzo5dfJYwAn29PeiJ0zvwTo04zj8HDJj0Mn8TD7sno7q12prdbnasKJHhkm2c1LgrhlJ0teaea8860oxi51mGA==",
|
|
1819
1931
|
"requires": {
|
|
1820
1932
|
"lodash": "^4.17.14"
|
|
1821
1933
|
}
|
|
@@ -1823,8 +1935,7 @@
|
|
|
1823
1935
|
"available-typed-arrays": {
|
|
1824
1936
|
"version": "1.0.5",
|
|
1825
1937
|
"resolved": "https://registry.npmjs.org/available-typed-arrays/-/available-typed-arrays-1.0.5.tgz",
|
|
1826
|
-
"integrity": "sha512-DMD0KiN46eipeziST1LPP/STfDU0sufISXmjSgvVsoU2tqxctQeASejWcfNtxYKqETM1UxQ8sp2OrSBWpHY6sw=="
|
|
1827
|
-
"dev": true
|
|
1938
|
+
"integrity": "sha512-DMD0KiN46eipeziST1LPP/STfDU0sufISXmjSgvVsoU2tqxctQeASejWcfNtxYKqETM1UxQ8sp2OrSBWpHY6sw=="
|
|
1828
1939
|
},
|
|
1829
1940
|
"axios": {
|
|
1830
1941
|
"version": "0.21.4",
|
|
@@ -1860,12 +1971,12 @@
|
|
|
1860
1971
|
}
|
|
1861
1972
|
},
|
|
1862
1973
|
"babel-plugin-polyfill-corejs3": {
|
|
1863
|
-
"version": "0.
|
|
1864
|
-
"resolved": "https://registry.npmjs.org/babel-plugin-polyfill-corejs3/-/babel-plugin-polyfill-corejs3-0.
|
|
1865
|
-
"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==",
|
|
1866
1977
|
"requires": {
|
|
1867
|
-
"@babel/helper-define-polyfill-provider": "^0.3.
|
|
1868
|
-
"core-js-compat": "^3.
|
|
1978
|
+
"@babel/helper-define-polyfill-provider": "^0.3.1",
|
|
1979
|
+
"core-js-compat": "^3.21.0"
|
|
1869
1980
|
}
|
|
1870
1981
|
},
|
|
1871
1982
|
"babel-plugin-polyfill-regenerator": {
|
|
@@ -1876,6 +1987,11 @@
|
|
|
1876
1987
|
"@babel/helper-define-polyfill-provider": "^0.3.0"
|
|
1877
1988
|
}
|
|
1878
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
|
+
},
|
|
1879
1995
|
"balanced-match": {
|
|
1880
1996
|
"version": "1.0.2",
|
|
1881
1997
|
"resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz",
|
|
@@ -1962,6 +2078,11 @@
|
|
|
1962
2078
|
"safe-buffer": "^5.1.1"
|
|
1963
2079
|
}
|
|
1964
2080
|
},
|
|
2081
|
+
"bn.js": {
|
|
2082
|
+
"version": "5.2.0",
|
|
2083
|
+
"resolved": "https://registry.npmjs.org/bn.js/-/bn.js-5.2.0.tgz",
|
|
2084
|
+
"integrity": "sha512-D7iWRBvnZE8ecXiLj/9wbxH7Tk79fAh8IHaTNq1RWRixsS02W+5qS+iE9yq6RYl0asXx5tw0bLhmT5pIfbSquw=="
|
|
2085
|
+
},
|
|
1965
2086
|
"body-parser": {
|
|
1966
2087
|
"version": "1.19.0",
|
|
1967
2088
|
"resolved": "https://registry.npmjs.org/body-parser/-/body-parser-1.19.0.tgz",
|
|
@@ -2082,27 +2203,158 @@
|
|
|
2082
2203
|
"through2": "^2.0.0"
|
|
2083
2204
|
}
|
|
2084
2205
|
},
|
|
2206
|
+
"brorand": {
|
|
2207
|
+
"version": "1.1.0",
|
|
2208
|
+
"resolved": "https://registry.npmjs.org/brorand/-/brorand-1.1.0.tgz",
|
|
2209
|
+
"integrity": "sha1-EsJe/kCkXjwyPrhnWgoM5XsiNx8="
|
|
2210
|
+
},
|
|
2085
2211
|
"brotli": {
|
|
2086
2212
|
"version": "1.3.2",
|
|
2087
2213
|
"resolved": "https://registry.npmjs.org/brotli/-/brotli-1.3.2.tgz",
|
|
2088
2214
|
"integrity": "sha1-UlqcrU/LqWR119OI9q7LE+7VL0Y=",
|
|
2089
2215
|
"requires": {
|
|
2090
|
-
"base64-js": "^1.1.2"
|
|
2216
|
+
"base64-js": "^1.1.2"
|
|
2217
|
+
}
|
|
2218
|
+
},
|
|
2219
|
+
"browser-pack": {
|
|
2220
|
+
"version": "6.1.0",
|
|
2221
|
+
"resolved": "https://registry.npmjs.org/browser-pack/-/browser-pack-6.1.0.tgz",
|
|
2222
|
+
"integrity": "sha512-erYug8XoqzU3IfcU8fUgyHqyOXqIE4tUTTQ+7mqUjQlvnXkOO6OlT9c/ZoJVHYoAaqGxr09CN53G7XIsO4KtWA==",
|
|
2223
|
+
"requires": {
|
|
2224
|
+
"JSONStream": "^1.0.3",
|
|
2225
|
+
"combine-source-map": "~0.8.0",
|
|
2226
|
+
"defined": "^1.0.0",
|
|
2227
|
+
"safe-buffer": "^5.1.1",
|
|
2228
|
+
"through2": "^2.0.0",
|
|
2229
|
+
"umd": "^3.0.0"
|
|
2230
|
+
}
|
|
2231
|
+
},
|
|
2232
|
+
"browser-resolve": {
|
|
2233
|
+
"version": "1.11.3",
|
|
2234
|
+
"resolved": "https://registry.npmjs.org/browser-resolve/-/browser-resolve-1.11.3.tgz",
|
|
2235
|
+
"integrity": "sha512-exDi1BYWB/6raKHmDTCicQfTkqwN5fioMFV4j8BsfMU4R2DK/QfZfK7kOVkmWCNANf0snkBzqGqAJBao9gZMdQ==",
|
|
2236
|
+
"requires": {
|
|
2237
|
+
"resolve": "1.1.7"
|
|
2238
|
+
},
|
|
2239
|
+
"dependencies": {
|
|
2240
|
+
"resolve": {
|
|
2241
|
+
"version": "1.1.7",
|
|
2242
|
+
"resolved": "https://registry.npmjs.org/resolve/-/resolve-1.1.7.tgz",
|
|
2243
|
+
"integrity": "sha1-IDEU2CrSxe2ejgQRs5ModeiJ6Xs="
|
|
2244
|
+
}
|
|
2245
|
+
}
|
|
2246
|
+
},
|
|
2247
|
+
"browserify": {
|
|
2248
|
+
"version": "17.0.0",
|
|
2249
|
+
"resolved": "https://registry.npmjs.org/browserify/-/browserify-17.0.0.tgz",
|
|
2250
|
+
"integrity": "sha512-SaHqzhku9v/j6XsQMRxPyBrSP3gnwmE27gLJYZgMT2GeK3J0+0toN+MnuNYDfHwVGQfLiMZ7KSNSIXHemy905w==",
|
|
2251
|
+
"requires": {
|
|
2252
|
+
"JSONStream": "^1.0.3",
|
|
2253
|
+
"assert": "^1.4.0",
|
|
2254
|
+
"browser-pack": "^6.0.1",
|
|
2255
|
+
"browser-resolve": "^2.0.0",
|
|
2256
|
+
"browserify-zlib": "~0.2.0",
|
|
2257
|
+
"buffer": "~5.2.1",
|
|
2258
|
+
"cached-path-relative": "^1.0.0",
|
|
2259
|
+
"concat-stream": "^1.6.0",
|
|
2260
|
+
"console-browserify": "^1.1.0",
|
|
2261
|
+
"constants-browserify": "~1.0.0",
|
|
2262
|
+
"crypto-browserify": "^3.0.0",
|
|
2263
|
+
"defined": "^1.0.0",
|
|
2264
|
+
"deps-sort": "^2.0.1",
|
|
2265
|
+
"domain-browser": "^1.2.0",
|
|
2266
|
+
"duplexer2": "~0.1.2",
|
|
2267
|
+
"events": "^3.0.0",
|
|
2268
|
+
"glob": "^7.1.0",
|
|
2269
|
+
"has": "^1.0.0",
|
|
2270
|
+
"htmlescape": "^1.1.0",
|
|
2271
|
+
"https-browserify": "^1.0.0",
|
|
2272
|
+
"inherits": "~2.0.1",
|
|
2273
|
+
"insert-module-globals": "^7.2.1",
|
|
2274
|
+
"labeled-stream-splicer": "^2.0.0",
|
|
2275
|
+
"mkdirp-classic": "^0.5.2",
|
|
2276
|
+
"module-deps": "^6.2.3",
|
|
2277
|
+
"os-browserify": "~0.3.0",
|
|
2278
|
+
"parents": "^1.0.1",
|
|
2279
|
+
"path-browserify": "^1.0.0",
|
|
2280
|
+
"process": "~0.11.0",
|
|
2281
|
+
"punycode": "^1.3.2",
|
|
2282
|
+
"querystring-es3": "~0.2.0",
|
|
2283
|
+
"read-only-stream": "^2.0.0",
|
|
2284
|
+
"readable-stream": "^2.0.2",
|
|
2285
|
+
"resolve": "^1.1.4",
|
|
2286
|
+
"shasum-object": "^1.0.0",
|
|
2287
|
+
"shell-quote": "^1.6.1",
|
|
2288
|
+
"stream-browserify": "^3.0.0",
|
|
2289
|
+
"stream-http": "^3.0.0",
|
|
2290
|
+
"string_decoder": "^1.1.1",
|
|
2291
|
+
"subarg": "^1.0.0",
|
|
2292
|
+
"syntax-error": "^1.1.1",
|
|
2293
|
+
"through2": "^2.0.0",
|
|
2294
|
+
"timers-browserify": "^1.0.1",
|
|
2295
|
+
"tty-browserify": "0.0.1",
|
|
2296
|
+
"url": "~0.11.0",
|
|
2297
|
+
"util": "~0.12.0",
|
|
2298
|
+
"vm-browserify": "^1.0.0",
|
|
2299
|
+
"xtend": "^4.0.0"
|
|
2300
|
+
},
|
|
2301
|
+
"dependencies": {
|
|
2302
|
+
"browser-resolve": {
|
|
2303
|
+
"version": "2.0.0",
|
|
2304
|
+
"resolved": "https://registry.npmjs.org/browser-resolve/-/browser-resolve-2.0.0.tgz",
|
|
2305
|
+
"integrity": "sha512-7sWsQlYL2rGLy2IWm8WL8DCTJvYLc/qlOnsakDac87SOoCd16WLsaAMdCiAqsTNHIe+SXfaqyxyo6THoWqs8WQ==",
|
|
2306
|
+
"requires": {
|
|
2307
|
+
"resolve": "^1.17.0"
|
|
2308
|
+
}
|
|
2309
|
+
},
|
|
2310
|
+
"buffer": {
|
|
2311
|
+
"version": "5.2.1",
|
|
2312
|
+
"resolved": "https://registry.npmjs.org/buffer/-/buffer-5.2.1.tgz",
|
|
2313
|
+
"integrity": "sha512-c+Ko0loDaFfuPWiL02ls9Xd3GO3cPVmUobQ6t3rXNUk304u6hGq+8N/kFi+QEIKhzK3uwolVhLzszmfLmMLnqg==",
|
|
2314
|
+
"requires": {
|
|
2315
|
+
"base64-js": "^1.0.2",
|
|
2316
|
+
"ieee754": "^1.1.4"
|
|
2317
|
+
}
|
|
2318
|
+
},
|
|
2319
|
+
"punycode": {
|
|
2320
|
+
"version": "1.4.1",
|
|
2321
|
+
"resolved": "https://registry.npmjs.org/punycode/-/punycode-1.4.1.tgz",
|
|
2322
|
+
"integrity": "sha1-wNWmOycYgArY4esPpSachN1BhF4="
|
|
2323
|
+
}
|
|
2324
|
+
}
|
|
2325
|
+
},
|
|
2326
|
+
"browserify-aes": {
|
|
2327
|
+
"version": "1.2.0",
|
|
2328
|
+
"resolved": "https://registry.npmjs.org/browserify-aes/-/browserify-aes-1.2.0.tgz",
|
|
2329
|
+
"integrity": "sha512-+7CHXqGuspUn/Sl5aO7Ea0xWGAtETPXNSAjHo48JfLdPWcMng33Xe4znFvQweqc/uzk5zSOI3H52CYnjCfb5hA==",
|
|
2330
|
+
"requires": {
|
|
2331
|
+
"buffer-xor": "^1.0.3",
|
|
2332
|
+
"cipher-base": "^1.0.0",
|
|
2333
|
+
"create-hash": "^1.1.0",
|
|
2334
|
+
"evp_bytestokey": "^1.0.3",
|
|
2335
|
+
"inherits": "^2.0.1",
|
|
2336
|
+
"safe-buffer": "^5.0.1"
|
|
2337
|
+
}
|
|
2338
|
+
},
|
|
2339
|
+
"browserify-cipher": {
|
|
2340
|
+
"version": "1.0.1",
|
|
2341
|
+
"resolved": "https://registry.npmjs.org/browserify-cipher/-/browserify-cipher-1.0.1.tgz",
|
|
2342
|
+
"integrity": "sha512-sPhkz0ARKbf4rRQt2hTpAHqn47X3llLkUGn+xEJzLjwY8LRs2p0v7ljvI5EyoRO/mexrNunNECisZs+gw2zz1w==",
|
|
2343
|
+
"requires": {
|
|
2344
|
+
"browserify-aes": "^1.0.4",
|
|
2345
|
+
"browserify-des": "^1.0.0",
|
|
2346
|
+
"evp_bytestokey": "^1.0.0"
|
|
2091
2347
|
}
|
|
2092
2348
|
},
|
|
2093
|
-
"
|
|
2094
|
-
"version": "1.
|
|
2095
|
-
"resolved": "https://registry.npmjs.org/
|
|
2096
|
-
"integrity": "sha512-
|
|
2349
|
+
"browserify-des": {
|
|
2350
|
+
"version": "1.0.2",
|
|
2351
|
+
"resolved": "https://registry.npmjs.org/browserify-des/-/browserify-des-1.0.2.tgz",
|
|
2352
|
+
"integrity": "sha512-BioO1xf3hFwz4kc6iBhI3ieDFompMhrMlnDFC4/0/vd5MokpuAc3R+LYbwTA9A5Yc9pq9UYPqffKpW2ObuwX5A==",
|
|
2097
2353
|
"requires": {
|
|
2098
|
-
"
|
|
2099
|
-
|
|
2100
|
-
|
|
2101
|
-
"
|
|
2102
|
-
"version": "1.1.7",
|
|
2103
|
-
"resolved": "https://registry.npmjs.org/resolve/-/resolve-1.1.7.tgz",
|
|
2104
|
-
"integrity": "sha1-IDEU2CrSxe2ejgQRs5ModeiJ6Xs="
|
|
2105
|
-
}
|
|
2354
|
+
"cipher-base": "^1.0.1",
|
|
2355
|
+
"des.js": "^1.0.0",
|
|
2356
|
+
"inherits": "^2.0.1",
|
|
2357
|
+
"safe-buffer": "^5.1.2"
|
|
2106
2358
|
}
|
|
2107
2359
|
},
|
|
2108
2360
|
"browserify-optional": {
|
|
@@ -2115,15 +2367,72 @@
|
|
|
2115
2367
|
"browser-resolve": "^1.8.1"
|
|
2116
2368
|
}
|
|
2117
2369
|
},
|
|
2370
|
+
"browserify-rsa": {
|
|
2371
|
+
"version": "4.1.0",
|
|
2372
|
+
"resolved": "https://registry.npmjs.org/browserify-rsa/-/browserify-rsa-4.1.0.tgz",
|
|
2373
|
+
"integrity": "sha512-AdEER0Hkspgno2aR97SAf6vi0y0k8NuOpGnVH3O99rcA5Q6sh8QxcngtHuJ6uXwnfAXNM4Gn1Gb7/MV1+Ymbog==",
|
|
2374
|
+
"requires": {
|
|
2375
|
+
"bn.js": "^5.0.0",
|
|
2376
|
+
"randombytes": "^2.0.1"
|
|
2377
|
+
}
|
|
2378
|
+
},
|
|
2379
|
+
"browserify-sign": {
|
|
2380
|
+
"version": "4.2.1",
|
|
2381
|
+
"resolved": "https://registry.npmjs.org/browserify-sign/-/browserify-sign-4.2.1.tgz",
|
|
2382
|
+
"integrity": "sha512-/vrA5fguVAKKAVTNJjgSm1tRQDHUU6DbwO9IROu/0WAzC8PKhucDSh18J0RMvVeHAn5puMd+QHC2erPRNf8lmg==",
|
|
2383
|
+
"requires": {
|
|
2384
|
+
"bn.js": "^5.1.1",
|
|
2385
|
+
"browserify-rsa": "^4.0.1",
|
|
2386
|
+
"create-hash": "^1.2.0",
|
|
2387
|
+
"create-hmac": "^1.1.7",
|
|
2388
|
+
"elliptic": "^6.5.3",
|
|
2389
|
+
"inherits": "^2.0.4",
|
|
2390
|
+
"parse-asn1": "^5.1.5",
|
|
2391
|
+
"readable-stream": "^3.6.0",
|
|
2392
|
+
"safe-buffer": "^5.2.0"
|
|
2393
|
+
},
|
|
2394
|
+
"dependencies": {
|
|
2395
|
+
"readable-stream": {
|
|
2396
|
+
"version": "3.6.0",
|
|
2397
|
+
"resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.0.tgz",
|
|
2398
|
+
"integrity": "sha512-BViHy7LKeTz4oNnkcLJ+lVSL6vpiFeX6/d3oSH8zCW7UxP2onchk+vTGB143xuFjHS3deTgkKoXXymXqymiIdA==",
|
|
2399
|
+
"requires": {
|
|
2400
|
+
"inherits": "^2.0.3",
|
|
2401
|
+
"string_decoder": "^1.1.1",
|
|
2402
|
+
"util-deprecate": "^1.0.1"
|
|
2403
|
+
}
|
|
2404
|
+
},
|
|
2405
|
+
"safe-buffer": {
|
|
2406
|
+
"version": "5.2.1",
|
|
2407
|
+
"resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz",
|
|
2408
|
+
"integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ=="
|
|
2409
|
+
}
|
|
2410
|
+
}
|
|
2411
|
+
},
|
|
2412
|
+
"browserify-zlib": {
|
|
2413
|
+
"version": "0.2.0",
|
|
2414
|
+
"resolved": "https://registry.npmjs.org/browserify-zlib/-/browserify-zlib-0.2.0.tgz",
|
|
2415
|
+
"integrity": "sha512-Z942RysHXmJrhqk88FmKBVq/v5tqmSkDz7p54G/MGyjMnCFFnC79XWNbg+Vta8W6Wb2qtSZTSxIGkJrRpCFEiA==",
|
|
2416
|
+
"requires": {
|
|
2417
|
+
"pako": "~1.0.5"
|
|
2418
|
+
},
|
|
2419
|
+
"dependencies": {
|
|
2420
|
+
"pako": {
|
|
2421
|
+
"version": "1.0.11",
|
|
2422
|
+
"resolved": "https://registry.npmjs.org/pako/-/pako-1.0.11.tgz",
|
|
2423
|
+
"integrity": "sha512-4hLB8Py4zZce5s4yd9XzopqwVv/yGNhV1Bl8NTmCq1763HeK2+EwVTv+leGeL13Dnh2wfbqowVPXCIO0z4taYw=="
|
|
2424
|
+
}
|
|
2425
|
+
}
|
|
2426
|
+
},
|
|
2118
2427
|
"browserslist": {
|
|
2119
|
-
"version": "4.
|
|
2120
|
-
"resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.
|
|
2121
|
-
"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==",
|
|
2122
2431
|
"requires": {
|
|
2123
|
-
"caniuse-lite": "^1.0.
|
|
2124
|
-
"electron-to-chromium": "^1.
|
|
2432
|
+
"caniuse-lite": "^1.0.30001332",
|
|
2433
|
+
"electron-to-chromium": "^1.4.118",
|
|
2125
2434
|
"escalade": "^3.1.1",
|
|
2126
|
-
"node-releases": "^2.0.
|
|
2435
|
+
"node-releases": "^2.0.3",
|
|
2127
2436
|
"picocolors": "^1.0.0"
|
|
2128
2437
|
}
|
|
2129
2438
|
},
|
|
@@ -2170,6 +2479,16 @@
|
|
|
2170
2479
|
"resolved": "https://registry.npmjs.org/buffer-from/-/buffer-from-1.1.2.tgz",
|
|
2171
2480
|
"integrity": "sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ=="
|
|
2172
2481
|
},
|
|
2482
|
+
"buffer-xor": {
|
|
2483
|
+
"version": "1.0.3",
|
|
2484
|
+
"resolved": "https://registry.npmjs.org/buffer-xor/-/buffer-xor-1.0.3.tgz",
|
|
2485
|
+
"integrity": "sha1-JuYe0UIvtw3ULm42cp7VHYVf6Nk="
|
|
2486
|
+
},
|
|
2487
|
+
"builtin-status-codes": {
|
|
2488
|
+
"version": "3.0.0",
|
|
2489
|
+
"resolved": "https://registry.npmjs.org/builtin-status-codes/-/builtin-status-codes-3.0.0.tgz",
|
|
2490
|
+
"integrity": "sha1-hZgoeOIbmOHGZCXgPQF0eI9Wnug="
|
|
2491
|
+
},
|
|
2173
2492
|
"bytes": {
|
|
2174
2493
|
"version": "3.1.0",
|
|
2175
2494
|
"resolved": "https://registry.npmjs.org/bytes/-/bytes-3.1.0.tgz",
|
|
@@ -2204,6 +2523,11 @@
|
|
|
2204
2523
|
}
|
|
2205
2524
|
}
|
|
2206
2525
|
},
|
|
2526
|
+
"cached-path-relative": {
|
|
2527
|
+
"version": "1.1.0",
|
|
2528
|
+
"resolved": "https://registry.npmjs.org/cached-path-relative/-/cached-path-relative-1.1.0.tgz",
|
|
2529
|
+
"integrity": "sha512-WF0LihfemtesFcJgO7xfOoOcnWzY/QHR4qeDqV44jPU3HTI54+LnfXK3SA27AVVGCdZFgjjFFaqUA9Jx7dMJZA=="
|
|
2530
|
+
},
|
|
2207
2531
|
"call-bind": {
|
|
2208
2532
|
"version": "1.0.2",
|
|
2209
2533
|
"resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.2.tgz",
|
|
@@ -2224,9 +2548,9 @@
|
|
|
2224
2548
|
"integrity": "sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg=="
|
|
2225
2549
|
},
|
|
2226
2550
|
"caniuse-lite": {
|
|
2227
|
-
"version": "1.0.
|
|
2228
|
-
"resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.
|
|
2229
|
-
"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=="
|
|
2230
2554
|
},
|
|
2231
2555
|
"caw": {
|
|
2232
2556
|
"version": "2.0.1",
|
|
@@ -2282,6 +2606,15 @@
|
|
|
2282
2606
|
"resolved": "https://registry.npmjs.org/ci-info/-/ci-info-2.0.0.tgz",
|
|
2283
2607
|
"integrity": "sha512-5tK7EtrZ0N+OLFMthtqOj4fI2Jeb88C4CAZPu25LDVUgXJ0A3Js4PMGqrn0JU1W0Mh1/Z8wZzYPxqUrXeBboCQ=="
|
|
2284
2608
|
},
|
|
2609
|
+
"cipher-base": {
|
|
2610
|
+
"version": "1.0.4",
|
|
2611
|
+
"resolved": "https://registry.npmjs.org/cipher-base/-/cipher-base-1.0.4.tgz",
|
|
2612
|
+
"integrity": "sha512-Kkht5ye6ZGmwv40uUDZztayT2ThLQGfnj/T71N/XzeZeo3nf8foyW7zGTsPYkEya3m5f3cAypH+qe7YOrM1U2Q==",
|
|
2613
|
+
"requires": {
|
|
2614
|
+
"inherits": "^2.0.1",
|
|
2615
|
+
"safe-buffer": "^5.0.1"
|
|
2616
|
+
}
|
|
2617
|
+
},
|
|
2285
2618
|
"cldr": {
|
|
2286
2619
|
"version": "7.1.1",
|
|
2287
2620
|
"resolved": "https://registry.npmjs.org/cldr/-/cldr-7.1.1.tgz",
|
|
@@ -2407,11 +2740,6 @@
|
|
|
2407
2740
|
"resolved": "https://registry.npmjs.org/code-point-at/-/code-point-at-1.1.0.tgz",
|
|
2408
2741
|
"integrity": "sha1-DQcLTQQ6W+ozovGkDi7bPZpMz3c="
|
|
2409
2742
|
},
|
|
2410
|
-
"coffee-script": {
|
|
2411
|
-
"version": "1.12.7",
|
|
2412
|
-
"resolved": "https://registry.npmjs.org/coffee-script/-/coffee-script-1.12.7.tgz",
|
|
2413
|
-
"integrity": "sha512-fLeEhqwymYat/MpTPUjSKHVYYl0ec2mOyALEMLmzr5i1isuG+6jfI2j2d5oBO3VIzgUXgBVIcOT9uH1TFxBckw=="
|
|
2414
|
-
},
|
|
2415
2743
|
"color-convert": {
|
|
2416
2744
|
"version": "1.9.3",
|
|
2417
2745
|
"resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz",
|
|
@@ -2454,6 +2782,24 @@
|
|
|
2454
2782
|
}
|
|
2455
2783
|
}
|
|
2456
2784
|
},
|
|
2785
|
+
"combine-source-map": {
|
|
2786
|
+
"version": "0.8.0",
|
|
2787
|
+
"resolved": "https://registry.npmjs.org/combine-source-map/-/combine-source-map-0.8.0.tgz",
|
|
2788
|
+
"integrity": "sha1-pY0N8ELBhvz4IqjoAV9UUNLXmos=",
|
|
2789
|
+
"requires": {
|
|
2790
|
+
"convert-source-map": "~1.1.0",
|
|
2791
|
+
"inline-source-map": "~0.6.0",
|
|
2792
|
+
"lodash.memoize": "~3.0.3",
|
|
2793
|
+
"source-map": "~0.5.3"
|
|
2794
|
+
},
|
|
2795
|
+
"dependencies": {
|
|
2796
|
+
"convert-source-map": {
|
|
2797
|
+
"version": "1.1.3",
|
|
2798
|
+
"resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.1.3.tgz",
|
|
2799
|
+
"integrity": "sha1-SCnId+n+SbMWHzvzZziI4gRpmGA="
|
|
2800
|
+
}
|
|
2801
|
+
}
|
|
2802
|
+
},
|
|
2457
2803
|
"commander": {
|
|
2458
2804
|
"version": "2.20.3",
|
|
2459
2805
|
"resolved": "https://registry.npmjs.org/commander/-/commander-2.20.3.tgz",
|
|
@@ -2517,11 +2863,21 @@
|
|
|
2517
2863
|
}
|
|
2518
2864
|
}
|
|
2519
2865
|
},
|
|
2866
|
+
"console-browserify": {
|
|
2867
|
+
"version": "1.2.0",
|
|
2868
|
+
"resolved": "https://registry.npmjs.org/console-browserify/-/console-browserify-1.2.0.tgz",
|
|
2869
|
+
"integrity": "sha512-ZMkYO/LkF17QvCPqM0gxw8yUzigAOZOSWSHg91FH6orS7vcEj5dVZTidN2fQ14yBSdg97RqhSNwLUXInd52OTA=="
|
|
2870
|
+
},
|
|
2520
2871
|
"console-control-strings": {
|
|
2521
2872
|
"version": "1.1.0",
|
|
2522
2873
|
"resolved": "https://registry.npmjs.org/console-control-strings/-/console-control-strings-1.1.0.tgz",
|
|
2523
2874
|
"integrity": "sha1-PXz0Rk22RG6mRL9LOVB/mFEAjo4="
|
|
2524
2875
|
},
|
|
2876
|
+
"constants-browserify": {
|
|
2877
|
+
"version": "1.0.0",
|
|
2878
|
+
"resolved": "https://registry.npmjs.org/constants-browserify/-/constants-browserify-1.0.0.tgz",
|
|
2879
|
+
"integrity": "sha1-wguW2MYXdIqvHBYCF2DNJ/y4y3U="
|
|
2880
|
+
},
|
|
2525
2881
|
"content-disposition": {
|
|
2526
2882
|
"version": "0.5.3",
|
|
2527
2883
|
"resolved": "https://registry.npmjs.org/content-disposition/-/content-disposition-0.5.3.tgz",
|
|
@@ -2559,11 +2915,11 @@
|
|
|
2559
2915
|
"integrity": "sha512-Gue79dwltEaCVJKIYtA8Wmo7C3FZKZcjn88qIJwR5RtfvityBOWnimsNnkMS0Ya3fJqydAvL8kepMB0XQoR3CQ=="
|
|
2560
2916
|
},
|
|
2561
2917
|
"core-js-compat": {
|
|
2562
|
-
"version": "3.
|
|
2563
|
-
"resolved": "https://registry.npmjs.org/core-js-compat/-/core-js-compat-3.
|
|
2564
|
-
"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==",
|
|
2565
2921
|
"requires": {
|
|
2566
|
-
"browserslist": "^4.
|
|
2922
|
+
"browserslist": "^4.20.3",
|
|
2567
2923
|
"semver": "7.0.0"
|
|
2568
2924
|
},
|
|
2569
2925
|
"dependencies": {
|
|
@@ -2579,6 +2935,47 @@
|
|
|
2579
2935
|
"resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.3.tgz",
|
|
2580
2936
|
"integrity": "sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ=="
|
|
2581
2937
|
},
|
|
2938
|
+
"create-ecdh": {
|
|
2939
|
+
"version": "4.0.4",
|
|
2940
|
+
"resolved": "https://registry.npmjs.org/create-ecdh/-/create-ecdh-4.0.4.tgz",
|
|
2941
|
+
"integrity": "sha512-mf+TCx8wWc9VpuxfP2ht0iSISLZnt0JgWlrOKZiNqyUZWnjIaCIVNQArMHnCZKfEYRg6IM7A+NeJoN8gf/Ws0A==",
|
|
2942
|
+
"requires": {
|
|
2943
|
+
"bn.js": "^4.1.0",
|
|
2944
|
+
"elliptic": "^6.5.3"
|
|
2945
|
+
},
|
|
2946
|
+
"dependencies": {
|
|
2947
|
+
"bn.js": {
|
|
2948
|
+
"version": "4.12.0",
|
|
2949
|
+
"resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.12.0.tgz",
|
|
2950
|
+
"integrity": "sha512-c98Bf3tPniI+scsdk237ku1Dc3ujXQTSgyiPUDEOe7tRkhrqridvh8klBv0HCEso1OLOYcHuCv/cS6DNxKH+ZA=="
|
|
2951
|
+
}
|
|
2952
|
+
}
|
|
2953
|
+
},
|
|
2954
|
+
"create-hash": {
|
|
2955
|
+
"version": "1.2.0",
|
|
2956
|
+
"resolved": "https://registry.npmjs.org/create-hash/-/create-hash-1.2.0.tgz",
|
|
2957
|
+
"integrity": "sha512-z00bCGNHDG8mHAkP7CtT1qVu+bFQUPjYq/4Iv3C3kWjTFV10zIjfSoeqXo9Asws8gwSHDGj/hl2u4OGIjapeCg==",
|
|
2958
|
+
"requires": {
|
|
2959
|
+
"cipher-base": "^1.0.1",
|
|
2960
|
+
"inherits": "^2.0.1",
|
|
2961
|
+
"md5.js": "^1.3.4",
|
|
2962
|
+
"ripemd160": "^2.0.1",
|
|
2963
|
+
"sha.js": "^2.4.0"
|
|
2964
|
+
}
|
|
2965
|
+
},
|
|
2966
|
+
"create-hmac": {
|
|
2967
|
+
"version": "1.1.7",
|
|
2968
|
+
"resolved": "https://registry.npmjs.org/create-hmac/-/create-hmac-1.1.7.tgz",
|
|
2969
|
+
"integrity": "sha512-MJG9liiZ+ogc4TzUwuvbER1JRdgvUFSB5+VR/g5h82fGaIRWMWddtKBHi7/sVhfjQZ6SehlyhvQYrcYkaUIpLg==",
|
|
2970
|
+
"requires": {
|
|
2971
|
+
"cipher-base": "^1.0.3",
|
|
2972
|
+
"create-hash": "^1.1.0",
|
|
2973
|
+
"inherits": "^2.0.1",
|
|
2974
|
+
"ripemd160": "^2.0.0",
|
|
2975
|
+
"safe-buffer": "^5.0.1",
|
|
2976
|
+
"sha.js": "^2.4.8"
|
|
2977
|
+
}
|
|
2978
|
+
},
|
|
2582
2979
|
"cross-spawn": {
|
|
2583
2980
|
"version": "6.0.5",
|
|
2584
2981
|
"resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-6.0.5.tgz",
|
|
@@ -2598,6 +2995,24 @@
|
|
|
2598
2995
|
}
|
|
2599
2996
|
}
|
|
2600
2997
|
},
|
|
2998
|
+
"crypto-browserify": {
|
|
2999
|
+
"version": "3.12.0",
|
|
3000
|
+
"resolved": "https://registry.npmjs.org/crypto-browserify/-/crypto-browserify-3.12.0.tgz",
|
|
3001
|
+
"integrity": "sha512-fz4spIh+znjO2VjL+IdhEpRJ3YN6sMzITSBijk6FK2UvTqruSQW+/cCZTSNsMiZNvUeq0CqurF+dAbyiGOY6Wg==",
|
|
3002
|
+
"requires": {
|
|
3003
|
+
"browserify-cipher": "^1.0.0",
|
|
3004
|
+
"browserify-sign": "^4.0.0",
|
|
3005
|
+
"create-ecdh": "^4.0.0",
|
|
3006
|
+
"create-hash": "^1.1.0",
|
|
3007
|
+
"create-hmac": "^1.1.0",
|
|
3008
|
+
"diffie-hellman": "^5.0.0",
|
|
3009
|
+
"inherits": "^2.0.1",
|
|
3010
|
+
"pbkdf2": "^3.0.3",
|
|
3011
|
+
"public-encrypt": "^4.0.0",
|
|
3012
|
+
"randombytes": "^2.0.0",
|
|
3013
|
+
"randomfill": "^1.0.3"
|
|
3014
|
+
}
|
|
3015
|
+
},
|
|
2601
3016
|
"crypto-random-string": {
|
|
2602
3017
|
"version": "2.0.0",
|
|
2603
3018
|
"resolved": "https://registry.npmjs.org/crypto-random-string/-/crypto-random-string-2.0.0.tgz",
|
|
@@ -2778,8 +3193,7 @@
|
|
|
2778
3193
|
"defined": {
|
|
2779
3194
|
"version": "1.0.0",
|
|
2780
3195
|
"resolved": "https://registry.npmjs.org/defined/-/defined-1.0.0.tgz",
|
|
2781
|
-
"integrity": "sha1-yY2bzvdWdBiOEQlpFRGZ45sfppM="
|
|
2782
|
-
"dev": true
|
|
3196
|
+
"integrity": "sha1-yY2bzvdWdBiOEQlpFRGZ45sfppM="
|
|
2783
3197
|
},
|
|
2784
3198
|
"depd": {
|
|
2785
3199
|
"version": "1.1.2",
|
|
@@ -2791,16 +3205,63 @@
|
|
|
2791
3205
|
"resolved": "https://registry.npmjs.org/deprecation/-/deprecation-2.3.1.tgz",
|
|
2792
3206
|
"integrity": "sha512-xmHIy4F3scKVwMsQ4WnVaS8bHOx0DmVwRywosKhaILI0ywMDWPtBSku2HNxRvF7jtwDRsoEwYQSfbxj8b7RlJQ=="
|
|
2793
3207
|
},
|
|
3208
|
+
"deps-sort": {
|
|
3209
|
+
"version": "2.0.1",
|
|
3210
|
+
"resolved": "https://registry.npmjs.org/deps-sort/-/deps-sort-2.0.1.tgz",
|
|
3211
|
+
"integrity": "sha512-1orqXQr5po+3KI6kQb9A4jnXT1PBwggGl2d7Sq2xsnOeI9GPcE/tGcF9UiSZtZBM7MukY4cAh7MemS6tZYipfw==",
|
|
3212
|
+
"requires": {
|
|
3213
|
+
"JSONStream": "^1.0.3",
|
|
3214
|
+
"shasum-object": "^1.0.0",
|
|
3215
|
+
"subarg": "^1.0.0",
|
|
3216
|
+
"through2": "^2.0.0"
|
|
3217
|
+
}
|
|
3218
|
+
},
|
|
3219
|
+
"des.js": {
|
|
3220
|
+
"version": "1.0.1",
|
|
3221
|
+
"resolved": "https://registry.npmjs.org/des.js/-/des.js-1.0.1.tgz",
|
|
3222
|
+
"integrity": "sha512-Q0I4pfFrv2VPd34/vfLrFOoRmlYj3OV50i7fskps1jZWK1kApMWWT9G6RRUeYedLcBDIhnSDaUvJMb3AhUlaEA==",
|
|
3223
|
+
"requires": {
|
|
3224
|
+
"inherits": "^2.0.1",
|
|
3225
|
+
"minimalistic-assert": "^1.0.0"
|
|
3226
|
+
}
|
|
3227
|
+
},
|
|
2794
3228
|
"destroy": {
|
|
2795
3229
|
"version": "1.0.4",
|
|
2796
3230
|
"resolved": "https://registry.npmjs.org/destroy/-/destroy-1.0.4.tgz",
|
|
2797
3231
|
"integrity": "sha1-l4hXRCxEdJ5CBmE+N5RiBYJqvYA="
|
|
2798
3232
|
},
|
|
3233
|
+
"detective": {
|
|
3234
|
+
"version": "5.2.0",
|
|
3235
|
+
"resolved": "https://registry.npmjs.org/detective/-/detective-5.2.0.tgz",
|
|
3236
|
+
"integrity": "sha512-6SsIx+nUUbuK0EthKjv0zrdnajCCXVYGmbYYiYjFVpzcjwEs/JMDZ8tPRG29J/HhN56t3GJp2cGSWDRjjot8Pg==",
|
|
3237
|
+
"requires": {
|
|
3238
|
+
"acorn-node": "^1.6.1",
|
|
3239
|
+
"defined": "^1.0.0",
|
|
3240
|
+
"minimist": "^1.1.1"
|
|
3241
|
+
}
|
|
3242
|
+
},
|
|
2799
3243
|
"dfa": {
|
|
2800
3244
|
"version": "1.2.0",
|
|
2801
3245
|
"resolved": "https://registry.npmjs.org/dfa/-/dfa-1.2.0.tgz",
|
|
2802
3246
|
"integrity": "sha512-ED3jP8saaweFTjeGX8HQPjeC1YYyZs98jGNZx6IiBvxW7JG5v492kamAQB3m2wop07CvU/RQmzcKr6bgcC5D/Q=="
|
|
2803
3247
|
},
|
|
3248
|
+
"diffie-hellman": {
|
|
3249
|
+
"version": "5.0.3",
|
|
3250
|
+
"resolved": "https://registry.npmjs.org/diffie-hellman/-/diffie-hellman-5.0.3.tgz",
|
|
3251
|
+
"integrity": "sha512-kqag/Nl+f3GwyK25fhUMYj81BUOrZ9IuJsjIcDE5icNM9FJHAVm3VcUDxdLPoQtTuUylWm6ZIknYJwwaPxsUzg==",
|
|
3252
|
+
"requires": {
|
|
3253
|
+
"bn.js": "^4.1.0",
|
|
3254
|
+
"miller-rabin": "^4.0.0",
|
|
3255
|
+
"randombytes": "^2.0.0"
|
|
3256
|
+
},
|
|
3257
|
+
"dependencies": {
|
|
3258
|
+
"bn.js": {
|
|
3259
|
+
"version": "4.12.0",
|
|
3260
|
+
"resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.12.0.tgz",
|
|
3261
|
+
"integrity": "sha512-c98Bf3tPniI+scsdk237ku1Dc3ujXQTSgyiPUDEOe7tRkhrqridvh8klBv0HCEso1OLOYcHuCv/cS6DNxKH+ZA=="
|
|
3262
|
+
}
|
|
3263
|
+
}
|
|
3264
|
+
},
|
|
2804
3265
|
"dirsum": {
|
|
2805
3266
|
"version": "0.1.1",
|
|
2806
3267
|
"resolved": "https://registry.npmjs.org/dirsum/-/dirsum-0.1.1.tgz",
|
|
@@ -2815,6 +3276,11 @@
|
|
|
2815
3276
|
"esutils": "^2.0.2"
|
|
2816
3277
|
}
|
|
2817
3278
|
},
|
|
3279
|
+
"domain-browser": {
|
|
3280
|
+
"version": "1.2.0",
|
|
3281
|
+
"resolved": "https://registry.npmjs.org/domain-browser/-/domain-browser-1.2.0.tgz",
|
|
3282
|
+
"integrity": "sha512-jnjyiM6eRyZl2H+W8Q/zLMA481hzi0eszAaBUzIVnmYVDBbnLxVNnfu1HgEBvCbL+71FrxMl3E6lpKH7Ge3OXA=="
|
|
3283
|
+
},
|
|
2818
3284
|
"dot": {
|
|
2819
3285
|
"version": "1.1.3",
|
|
2820
3286
|
"resolved": "https://registry.npmjs.org/dot/-/dot-1.1.3.tgz",
|
|
@@ -2879,9 +3345,30 @@
|
|
|
2879
3345
|
"integrity": "sha1-WQxhFWsK4vTwJVcyoViyZrxWsh0="
|
|
2880
3346
|
},
|
|
2881
3347
|
"electron-to-chromium": {
|
|
2882
|
-
"version": "1.
|
|
2883
|
-
"resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.
|
|
2884
|
-
"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=="
|
|
3351
|
+
},
|
|
3352
|
+
"elliptic": {
|
|
3353
|
+
"version": "6.5.4",
|
|
3354
|
+
"resolved": "https://registry.npmjs.org/elliptic/-/elliptic-6.5.4.tgz",
|
|
3355
|
+
"integrity": "sha512-iLhC6ULemrljPZb+QutR5TQGB+pdW6KGD5RSegS+8sorOZT+rdQFbsQFJgvN3eRqNALqJer4oQ16YvJHlU8hzQ==",
|
|
3356
|
+
"requires": {
|
|
3357
|
+
"bn.js": "^4.11.9",
|
|
3358
|
+
"brorand": "^1.1.0",
|
|
3359
|
+
"hash.js": "^1.0.0",
|
|
3360
|
+
"hmac-drbg": "^1.0.1",
|
|
3361
|
+
"inherits": "^2.0.4",
|
|
3362
|
+
"minimalistic-assert": "^1.0.1",
|
|
3363
|
+
"minimalistic-crypto-utils": "^1.0.1"
|
|
3364
|
+
},
|
|
3365
|
+
"dependencies": {
|
|
3366
|
+
"bn.js": {
|
|
3367
|
+
"version": "4.12.0",
|
|
3368
|
+
"resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.12.0.tgz",
|
|
3369
|
+
"integrity": "sha512-c98Bf3tPniI+scsdk237ku1Dc3ujXQTSgyiPUDEOe7tRkhrqridvh8klBv0HCEso1OLOYcHuCv/cS6DNxKH+ZA=="
|
|
3370
|
+
}
|
|
3371
|
+
}
|
|
2885
3372
|
},
|
|
2886
3373
|
"emoji-regex": {
|
|
2887
3374
|
"version": "8.0.0",
|
|
@@ -2918,7 +3405,6 @@
|
|
|
2918
3405
|
"version": "1.19.1",
|
|
2919
3406
|
"resolved": "https://registry.npmjs.org/es-abstract/-/es-abstract-1.19.1.tgz",
|
|
2920
3407
|
"integrity": "sha512-2vJ6tjA/UfqLm2MPs7jxVybLoB8i1t1Jd9R3kISld20sIxPcTbLuggQOUxeWeAvIUkduv/CfMjuh4WmiXr2v9w==",
|
|
2921
|
-
"dev": true,
|
|
2922
3408
|
"requires": {
|
|
2923
3409
|
"call-bind": "^1.0.2",
|
|
2924
3410
|
"es-to-primitive": "^1.2.1",
|
|
@@ -2970,7 +3456,6 @@
|
|
|
2970
3456
|
"version": "1.2.1",
|
|
2971
3457
|
"resolved": "https://registry.npmjs.org/es-to-primitive/-/es-to-primitive-1.2.1.tgz",
|
|
2972
3458
|
"integrity": "sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==",
|
|
2973
|
-
"dev": true,
|
|
2974
3459
|
"requires": {
|
|
2975
3460
|
"is-callable": "^1.1.4",
|
|
2976
3461
|
"is-date-object": "^1.0.1",
|
|
@@ -3132,11 +3617,6 @@
|
|
|
3132
3617
|
"v8-compile-cache": "^2.0.3"
|
|
3133
3618
|
},
|
|
3134
3619
|
"dependencies": {
|
|
3135
|
-
"acorn": {
|
|
3136
|
-
"version": "8.6.0",
|
|
3137
|
-
"resolved": "https://registry.npmjs.org/acorn/-/acorn-8.6.0.tgz",
|
|
3138
|
-
"integrity": "sha512-U1riIR+lBSNi3IbxtaHOIKdH8sLFv3NYfNv8sg7ZsNhcfl4HF2++BfqqrNAxoCLQW1iiylOj76ecnaUxz+z9yw=="
|
|
3139
|
-
},
|
|
3140
3620
|
"ajv": {
|
|
3141
3621
|
"version": "6.12.6",
|
|
3142
3622
|
"resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz",
|
|
@@ -3511,6 +3991,11 @@
|
|
|
3511
3991
|
"eslint-visitor-keys": "^1.1.0"
|
|
3512
3992
|
},
|
|
3513
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
|
+
},
|
|
3514
3999
|
"eslint-visitor-keys": {
|
|
3515
4000
|
"version": "1.3.0",
|
|
3516
4001
|
"resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-1.3.0.tgz",
|
|
@@ -3596,6 +4081,20 @@
|
|
|
3596
4081
|
"through": "~2.3.1"
|
|
3597
4082
|
}
|
|
3598
4083
|
},
|
|
4084
|
+
"events": {
|
|
4085
|
+
"version": "3.3.0",
|
|
4086
|
+
"resolved": "https://registry.npmjs.org/events/-/events-3.3.0.tgz",
|
|
4087
|
+
"integrity": "sha512-mQw+2fkQbALzQ7V0MY0IqdnXNOeTtP4r0lN9z7AAawCXgqea7bDii20AYrIBrFd/Hx0M2Ocz6S111CaFkUcb0Q=="
|
|
4088
|
+
},
|
|
4089
|
+
"evp_bytestokey": {
|
|
4090
|
+
"version": "1.0.3",
|
|
4091
|
+
"resolved": "https://registry.npmjs.org/evp_bytestokey/-/evp_bytestokey-1.0.3.tgz",
|
|
4092
|
+
"integrity": "sha512-/f2Go4TognH/KvCISP7OUsHn85hT9nUkxxA9BEWxFn+Oj9o8ZNLm/40hdlgSLyuOimsrTKLUMEorQexp/aPQeA==",
|
|
4093
|
+
"requires": {
|
|
4094
|
+
"md5.js": "^1.3.4",
|
|
4095
|
+
"safe-buffer": "^5.1.1"
|
|
4096
|
+
}
|
|
4097
|
+
},
|
|
3599
4098
|
"express": {
|
|
3600
4099
|
"version": "4.17.1",
|
|
3601
4100
|
"resolved": "https://registry.npmjs.org/express/-/express-4.17.1.tgz",
|
|
@@ -3723,6 +4222,11 @@
|
|
|
3723
4222
|
"resolved": "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz",
|
|
3724
4223
|
"integrity": "sha1-PYpcZog6FqMMqGQ+hR8Zuqd5eRc="
|
|
3725
4224
|
},
|
|
4225
|
+
"fast-safe-stringify": {
|
|
4226
|
+
"version": "2.1.1",
|
|
4227
|
+
"resolved": "https://registry.npmjs.org/fast-safe-stringify/-/fast-safe-stringify-2.1.1.tgz",
|
|
4228
|
+
"integrity": "sha512-W+KJc2dmILlPplD/H4K9l9LcAHAfPtP6BY84uVLXQ6Evcz9Lcg33Y2z1IVblT6xdY54PXYVHEv+0Wpq8Io6zkA=="
|
|
4229
|
+
},
|
|
3726
4230
|
"fd-slicer": {
|
|
3727
4231
|
"version": "1.1.0",
|
|
3728
4232
|
"resolved": "https://registry.npmjs.org/fd-slicer/-/fd-slicer-1.1.0.tgz",
|
|
@@ -3855,8 +4359,7 @@
|
|
|
3855
4359
|
"foreach": {
|
|
3856
4360
|
"version": "2.0.5",
|
|
3857
4361
|
"resolved": "https://registry.npmjs.org/foreach/-/foreach-2.0.5.tgz",
|
|
3858
|
-
"integrity": "sha1-C+4AUBiusmDQo6865ljdATbsG5k="
|
|
3859
|
-
"dev": true
|
|
4362
|
+
"integrity": "sha1-C+4AUBiusmDQo6865ljdATbsG5k="
|
|
3860
4363
|
},
|
|
3861
4364
|
"forwarded": {
|
|
3862
4365
|
"version": "0.2.0",
|
|
@@ -4017,7 +4520,6 @@
|
|
|
4017
4520
|
"version": "1.0.0",
|
|
4018
4521
|
"resolved": "https://registry.npmjs.org/get-symbol-description/-/get-symbol-description-1.0.0.tgz",
|
|
4019
4522
|
"integrity": "sha512-2EmdH1YvIQiZpltCNgkuiUnyukzxM/R6NDJX31Ke3BG1Nq5b0S2PhX59UKi9vZpPDQVdqn+1IcaAwnzTT5vCjw==",
|
|
4020
|
-
"dev": true,
|
|
4021
4523
|
"requires": {
|
|
4022
4524
|
"call-bind": "^1.0.2",
|
|
4023
4525
|
"get-intrinsic": "^1.1.1"
|
|
@@ -4125,15 +4627,14 @@
|
|
|
4125
4627
|
"integrity": "sha512-qkIilPUYcNhJpd33n0GBXTB1MMPp14TxEsEs0pTrsSVucApsYzW5V+Q8Qxhik6KU3evy+qkAAowTByymK0avdg=="
|
|
4126
4628
|
},
|
|
4127
4629
|
"gray-matter": {
|
|
4128
|
-
"version": "
|
|
4129
|
-
"resolved": "https://registry.npmjs.org/gray-matter/-/gray-matter-
|
|
4130
|
-
"integrity": "
|
|
4630
|
+
"version": "4.0.3",
|
|
4631
|
+
"resolved": "https://registry.npmjs.org/gray-matter/-/gray-matter-4.0.3.tgz",
|
|
4632
|
+
"integrity": "sha512-5v6yZd4JK3eMI3FqqCouswVqwugaA9r4dNZB1wwcmrD02QkV5H0y7XBQW8QwQqEaZY1pM9aqORSORhJRdNK44Q==",
|
|
4131
4633
|
"requires": {
|
|
4132
|
-
"
|
|
4133
|
-
"
|
|
4134
|
-
"
|
|
4135
|
-
"
|
|
4136
|
-
"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"
|
|
4137
4638
|
}
|
|
4138
4639
|
},
|
|
4139
4640
|
"has": {
|
|
@@ -4144,26 +4645,10 @@
|
|
|
4144
4645
|
"function-bind": "^1.1.1"
|
|
4145
4646
|
}
|
|
4146
4647
|
},
|
|
4147
|
-
"has-ansi": {
|
|
4148
|
-
"version": "2.0.0",
|
|
4149
|
-
"resolved": "https://registry.npmjs.org/has-ansi/-/has-ansi-2.0.0.tgz",
|
|
4150
|
-
"integrity": "sha1-NPUEnOHs3ysGSa8+8k5F7TVBbZE=",
|
|
4151
|
-
"requires": {
|
|
4152
|
-
"ansi-regex": "^2.0.0"
|
|
4153
|
-
},
|
|
4154
|
-
"dependencies": {
|
|
4155
|
-
"ansi-regex": {
|
|
4156
|
-
"version": "2.1.1",
|
|
4157
|
-
"resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.1.1.tgz",
|
|
4158
|
-
"integrity": "sha1-w7M6te42DYbg5ijwRorn7yfWVN8="
|
|
4159
|
-
}
|
|
4160
|
-
}
|
|
4161
|
-
},
|
|
4162
4648
|
"has-bigints": {
|
|
4163
4649
|
"version": "1.0.1",
|
|
4164
4650
|
"resolved": "https://registry.npmjs.org/has-bigints/-/has-bigints-1.0.1.tgz",
|
|
4165
|
-
"integrity": "sha512-LSBS2LjbNBTf6287JEbEzvJgftkF5qFkmCo9hDRpAzKhUOlJ+hx8dd4USs00SgsUNwc4617J9ki5YtEClM2ffA=="
|
|
4166
|
-
"dev": true
|
|
4651
|
+
"integrity": "sha512-LSBS2LjbNBTf6287JEbEzvJgftkF5qFkmCo9hDRpAzKhUOlJ+hx8dd4USs00SgsUNwc4617J9ki5YtEClM2ffA=="
|
|
4167
4652
|
},
|
|
4168
4653
|
"has-dynamic-import": {
|
|
4169
4654
|
"version": "2.0.0",
|
|
@@ -4179,11 +4664,6 @@
|
|
|
4179
4664
|
"resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz",
|
|
4180
4665
|
"integrity": "sha1-tdRU3CGZriJWmfNGfloH87lVuv0="
|
|
4181
4666
|
},
|
|
4182
|
-
"has-generators": {
|
|
4183
|
-
"version": "1.0.1",
|
|
4184
|
-
"resolved": "https://registry.npmjs.org/has-generators/-/has-generators-1.0.1.tgz",
|
|
4185
|
-
"integrity": "sha1-pqLlVIYBGUBILhPiyTeRxEms9Ek="
|
|
4186
|
-
},
|
|
4187
4667
|
"has-symbol-support-x": {
|
|
4188
4668
|
"version": "1.4.2",
|
|
4189
4669
|
"resolved": "https://registry.npmjs.org/has-symbol-support-x/-/has-symbol-support-x-1.4.2.tgz",
|
|
@@ -4250,6 +4730,42 @@
|
|
|
4250
4730
|
"resolved": "https://registry.npmjs.org/has-yarn/-/has-yarn-2.1.0.tgz",
|
|
4251
4731
|
"integrity": "sha512-UqBRqi4ju7T+TqGNdqAO0PaSVGsDGJUBQvk9eUWNGRY1CFGDzYhLWoM7JQEemnlvVcv/YEmc2wNW8BC24EnUsw=="
|
|
4252
4732
|
},
|
|
4733
|
+
"hash-base": {
|
|
4734
|
+
"version": "3.1.0",
|
|
4735
|
+
"resolved": "https://registry.npmjs.org/hash-base/-/hash-base-3.1.0.tgz",
|
|
4736
|
+
"integrity": "sha512-1nmYp/rhMDiE7AYkDw+lLwlAzz0AntGIe51F3RfFfEqyQ3feY2eI/NcwC6umIQVOASPMsWJLJScWKSSvzL9IVA==",
|
|
4737
|
+
"requires": {
|
|
4738
|
+
"inherits": "^2.0.4",
|
|
4739
|
+
"readable-stream": "^3.6.0",
|
|
4740
|
+
"safe-buffer": "^5.2.0"
|
|
4741
|
+
},
|
|
4742
|
+
"dependencies": {
|
|
4743
|
+
"readable-stream": {
|
|
4744
|
+
"version": "3.6.0",
|
|
4745
|
+
"resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.0.tgz",
|
|
4746
|
+
"integrity": "sha512-BViHy7LKeTz4oNnkcLJ+lVSL6vpiFeX6/d3oSH8zCW7UxP2onchk+vTGB143xuFjHS3deTgkKoXXymXqymiIdA==",
|
|
4747
|
+
"requires": {
|
|
4748
|
+
"inherits": "^2.0.3",
|
|
4749
|
+
"string_decoder": "^1.1.1",
|
|
4750
|
+
"util-deprecate": "^1.0.1"
|
|
4751
|
+
}
|
|
4752
|
+
},
|
|
4753
|
+
"safe-buffer": {
|
|
4754
|
+
"version": "5.2.1",
|
|
4755
|
+
"resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz",
|
|
4756
|
+
"integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ=="
|
|
4757
|
+
}
|
|
4758
|
+
}
|
|
4759
|
+
},
|
|
4760
|
+
"hash.js": {
|
|
4761
|
+
"version": "1.1.7",
|
|
4762
|
+
"resolved": "https://registry.npmjs.org/hash.js/-/hash.js-1.1.7.tgz",
|
|
4763
|
+
"integrity": "sha512-taOaskGt4z4SOANNseOviYDvjEJinIkRgmp7LbKP2YTTmVxWBl87s/uzK9r+44BclBSp2X7K1hqeNfz9JbBeXA==",
|
|
4764
|
+
"requires": {
|
|
4765
|
+
"inherits": "^2.0.3",
|
|
4766
|
+
"minimalistic-assert": "^1.0.1"
|
|
4767
|
+
}
|
|
4768
|
+
},
|
|
4253
4769
|
"hashish": {
|
|
4254
4770
|
"version": "0.0.4",
|
|
4255
4771
|
"resolved": "https://registry.npmjs.org/hashish/-/hashish-0.0.4.tgz",
|
|
@@ -4258,6 +4774,21 @@
|
|
|
4258
4774
|
"traverse": ">=0.2.4"
|
|
4259
4775
|
}
|
|
4260
4776
|
},
|
|
4777
|
+
"hmac-drbg": {
|
|
4778
|
+
"version": "1.0.1",
|
|
4779
|
+
"resolved": "https://registry.npmjs.org/hmac-drbg/-/hmac-drbg-1.0.1.tgz",
|
|
4780
|
+
"integrity": "sha1-0nRXAQJabHdabFRXk+1QL8DGSaE=",
|
|
4781
|
+
"requires": {
|
|
4782
|
+
"hash.js": "^1.0.3",
|
|
4783
|
+
"minimalistic-assert": "^1.0.0",
|
|
4784
|
+
"minimalistic-crypto-utils": "^1.0.1"
|
|
4785
|
+
}
|
|
4786
|
+
},
|
|
4787
|
+
"htmlescape": {
|
|
4788
|
+
"version": "1.1.1",
|
|
4789
|
+
"resolved": "https://registry.npmjs.org/htmlescape/-/htmlescape-1.1.1.tgz",
|
|
4790
|
+
"integrity": "sha1-OgPtwiFLyjtmQko+eVk0lQnLA1E="
|
|
4791
|
+
},
|
|
4261
4792
|
"http-cache-semantics": {
|
|
4262
4793
|
"version": "4.1.0",
|
|
4263
4794
|
"resolved": "https://registry.npmjs.org/http-cache-semantics/-/http-cache-semantics-4.1.0.tgz",
|
|
@@ -4282,6 +4813,11 @@
|
|
|
4282
4813
|
}
|
|
4283
4814
|
}
|
|
4284
4815
|
},
|
|
4816
|
+
"https-browserify": {
|
|
4817
|
+
"version": "1.0.0",
|
|
4818
|
+
"resolved": "https://registry.npmjs.org/https-browserify/-/https-browserify-1.0.0.tgz",
|
|
4819
|
+
"integrity": "sha1-7AbBDgo0wPL68Zn3/X/Hj//QPHM="
|
|
4820
|
+
},
|
|
4285
4821
|
"iconv-lite": {
|
|
4286
4822
|
"version": "0.4.24",
|
|
4287
4823
|
"resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz",
|
|
@@ -4346,6 +4882,14 @@
|
|
|
4346
4882
|
"resolved": "https://registry.npmjs.org/ini/-/ini-1.3.8.tgz",
|
|
4347
4883
|
"integrity": "sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew=="
|
|
4348
4884
|
},
|
|
4885
|
+
"inline-source-map": {
|
|
4886
|
+
"version": "0.6.2",
|
|
4887
|
+
"resolved": "https://registry.npmjs.org/inline-source-map/-/inline-source-map-0.6.2.tgz",
|
|
4888
|
+
"integrity": "sha1-+Tk0ccGKedFyT4Y/o4tYY3Ct4qU=",
|
|
4889
|
+
"requires": {
|
|
4890
|
+
"source-map": "~0.5.3"
|
|
4891
|
+
}
|
|
4892
|
+
},
|
|
4349
4893
|
"inputformat-to-jstransformer": {
|
|
4350
4894
|
"version": "1.4.0",
|
|
4351
4895
|
"resolved": "https://registry.npmjs.org/inputformat-to-jstransformer/-/inputformat-to-jstransformer-1.4.0.tgz",
|
|
@@ -4427,11 +4971,27 @@
|
|
|
4427
4971
|
}
|
|
4428
4972
|
}
|
|
4429
4973
|
},
|
|
4974
|
+
"insert-module-globals": {
|
|
4975
|
+
"version": "7.2.1",
|
|
4976
|
+
"resolved": "https://registry.npmjs.org/insert-module-globals/-/insert-module-globals-7.2.1.tgz",
|
|
4977
|
+
"integrity": "sha512-ufS5Qq9RZN+Bu899eA9QCAYThY+gGW7oRkmb0vC93Vlyu/CFGcH0OYPEjVkDXA5FEbTt1+VWzdoOD3Ny9N+8tg==",
|
|
4978
|
+
"requires": {
|
|
4979
|
+
"JSONStream": "^1.0.3",
|
|
4980
|
+
"acorn-node": "^1.5.2",
|
|
4981
|
+
"combine-source-map": "^0.8.0",
|
|
4982
|
+
"concat-stream": "^1.6.1",
|
|
4983
|
+
"is-buffer": "^1.1.0",
|
|
4984
|
+
"path-is-absolute": "^1.0.1",
|
|
4985
|
+
"process": "~0.11.0",
|
|
4986
|
+
"through2": "^2.0.0",
|
|
4987
|
+
"undeclared-identifiers": "^1.1.2",
|
|
4988
|
+
"xtend": "^4.0.0"
|
|
4989
|
+
}
|
|
4990
|
+
},
|
|
4430
4991
|
"internal-slot": {
|
|
4431
4992
|
"version": "1.0.3",
|
|
4432
4993
|
"resolved": "https://registry.npmjs.org/internal-slot/-/internal-slot-1.0.3.tgz",
|
|
4433
4994
|
"integrity": "sha512-O0DB1JC/sPyZl7cIo78n5dR7eUSwwpYPiXRhTzNxZVAMUuB8vlnRFyLxdrVToks6XPLVnFfbzaVd5WLjhgg+vA==",
|
|
4434
|
-
"dev": true,
|
|
4435
4995
|
"requires": {
|
|
4436
4996
|
"get-intrinsic": "^1.1.0",
|
|
4437
4997
|
"has": "^1.0.3",
|
|
@@ -4443,11 +5003,6 @@
|
|
|
4443
5003
|
"resolved": "https://registry.npmjs.org/ipaddr.js/-/ipaddr.js-1.9.1.tgz",
|
|
4444
5004
|
"integrity": "sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g=="
|
|
4445
5005
|
},
|
|
4446
|
-
"is": {
|
|
4447
|
-
"version": "3.3.0",
|
|
4448
|
-
"resolved": "https://registry.npmjs.org/is/-/is-3.3.0.tgz",
|
|
4449
|
-
"integrity": "sha512-nW24QBoPcFGGHJGUwnfpI7Yc5CdqWNdsyHQszVE/z2pKHXzh7FZ5GWhJqSyaQ9wMkQnsTx+kAI8bHlCX4tKdbg=="
|
|
4450
|
-
},
|
|
4451
5006
|
"is-arguments": {
|
|
4452
5007
|
"version": "1.1.1",
|
|
4453
5008
|
"resolved": "https://registry.npmjs.org/is-arguments/-/is-arguments-1.1.1.tgz",
|
|
@@ -4461,7 +5016,6 @@
|
|
|
4461
5016
|
"version": "1.0.4",
|
|
4462
5017
|
"resolved": "https://registry.npmjs.org/is-bigint/-/is-bigint-1.0.4.tgz",
|
|
4463
5018
|
"integrity": "sha512-zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg==",
|
|
4464
|
-
"dev": true,
|
|
4465
5019
|
"requires": {
|
|
4466
5020
|
"has-bigints": "^1.0.1"
|
|
4467
5021
|
}
|
|
@@ -4478,17 +5032,20 @@
|
|
|
4478
5032
|
"version": "1.1.2",
|
|
4479
5033
|
"resolved": "https://registry.npmjs.org/is-boolean-object/-/is-boolean-object-1.1.2.tgz",
|
|
4480
5034
|
"integrity": "sha512-gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA==",
|
|
4481
|
-
"dev": true,
|
|
4482
5035
|
"requires": {
|
|
4483
5036
|
"call-bind": "^1.0.2",
|
|
4484
5037
|
"has-tostringtag": "^1.0.0"
|
|
4485
5038
|
}
|
|
4486
5039
|
},
|
|
5040
|
+
"is-buffer": {
|
|
5041
|
+
"version": "1.1.6",
|
|
5042
|
+
"resolved": "https://registry.npmjs.org/is-buffer/-/is-buffer-1.1.6.tgz",
|
|
5043
|
+
"integrity": "sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w=="
|
|
5044
|
+
},
|
|
4487
5045
|
"is-callable": {
|
|
4488
5046
|
"version": "1.2.4",
|
|
4489
5047
|
"resolved": "https://registry.npmjs.org/is-callable/-/is-callable-1.2.4.tgz",
|
|
4490
|
-
"integrity": "sha512-nsuwtxZfMX67Oryl9LCQ+upnC0Z0BgpwntpS89m1H/TLF0zNfzfLMV/9Wa/6MZsj0acpEjAO0KF1xT6ZdLl95w=="
|
|
4491
|
-
"dev": true
|
|
5048
|
+
"integrity": "sha512-nsuwtxZfMX67Oryl9LCQ+upnC0Z0BgpwntpS89m1H/TLF0zNfzfLMV/9Wa/6MZsj0acpEjAO0KF1xT6ZdLl95w=="
|
|
4492
5049
|
},
|
|
4493
5050
|
"is-ci": {
|
|
4494
5051
|
"version": "2.0.0",
|
|
@@ -4529,6 +5086,14 @@
|
|
|
4529
5086
|
"resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz",
|
|
4530
5087
|
"integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg=="
|
|
4531
5088
|
},
|
|
5089
|
+
"is-generator-function": {
|
|
5090
|
+
"version": "1.0.10",
|
|
5091
|
+
"resolved": "https://registry.npmjs.org/is-generator-function/-/is-generator-function-1.0.10.tgz",
|
|
5092
|
+
"integrity": "sha512-jsEjy9l3yiXEQ+PsXdmBwEPcOxaXWLspKdplFUVI9vq1iZgIekeC0L167qeu86czQaxed3q/Uzuw0swL0irL8A==",
|
|
5093
|
+
"requires": {
|
|
5094
|
+
"has-tostringtag": "^1.0.0"
|
|
5095
|
+
}
|
|
5096
|
+
},
|
|
4532
5097
|
"is-glob": {
|
|
4533
5098
|
"version": "4.0.3",
|
|
4534
5099
|
"resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz",
|
|
@@ -4560,8 +5125,7 @@
|
|
|
4560
5125
|
"is-negative-zero": {
|
|
4561
5126
|
"version": "2.0.1",
|
|
4562
5127
|
"resolved": "https://registry.npmjs.org/is-negative-zero/-/is-negative-zero-2.0.1.tgz",
|
|
4563
|
-
"integrity": "sha512-2z6JzQvZRa9A2Y7xC6dQQm4FSTSTNWjKIYYTt4246eMTJmIo0Q+ZyOsU66X8lxK1AbB92dFeglPLrhwpeRKO6w=="
|
|
4564
|
-
"dev": true
|
|
5128
|
+
"integrity": "sha512-2z6JzQvZRa9A2Y7xC6dQQm4FSTSTNWjKIYYTt4246eMTJmIo0Q+ZyOsU66X8lxK1AbB92dFeglPLrhwpeRKO6w=="
|
|
4565
5129
|
},
|
|
4566
5130
|
"is-npm": {
|
|
4567
5131
|
"version": "4.0.0",
|
|
@@ -4577,7 +5141,6 @@
|
|
|
4577
5141
|
"version": "1.0.6",
|
|
4578
5142
|
"resolved": "https://registry.npmjs.org/is-number-object/-/is-number-object-1.0.6.tgz",
|
|
4579
5143
|
"integrity": "sha512-bEVOqiRcvo3zO1+G2lVMy+gkkEm9Yh7cDMRusKKu5ZJKPUYSJwICTKZrNKHA2EbSP0Tu0+6B/emsYNHZyn6K8g==",
|
|
4580
|
-
"dev": true,
|
|
4581
5144
|
"requires": {
|
|
4582
5145
|
"has-tostringtag": "^1.0.0"
|
|
4583
5146
|
}
|
|
@@ -4640,8 +5203,7 @@
|
|
|
4640
5203
|
"is-shared-array-buffer": {
|
|
4641
5204
|
"version": "1.0.1",
|
|
4642
5205
|
"resolved": "https://registry.npmjs.org/is-shared-array-buffer/-/is-shared-array-buffer-1.0.1.tgz",
|
|
4643
|
-
"integrity": "sha512-IU0NmyknYZN0rChcKhRO1X8LYz5Isj/Fsqh8NJOSf+N/hCOTwy29F32Ik7a+QszE63IdvmwdTPDd6cZ5pg4cwA=="
|
|
4644
|
-
"dev": true
|
|
5206
|
+
"integrity": "sha512-IU0NmyknYZN0rChcKhRO1X8LYz5Isj/Fsqh8NJOSf+N/hCOTwy29F32Ik7a+QszE63IdvmwdTPDd6cZ5pg4cwA=="
|
|
4645
5207
|
},
|
|
4646
5208
|
"is-stream": {
|
|
4647
5209
|
"version": "1.1.0",
|
|
@@ -4652,7 +5214,6 @@
|
|
|
4652
5214
|
"version": "1.0.7",
|
|
4653
5215
|
"resolved": "https://registry.npmjs.org/is-string/-/is-string-1.0.7.tgz",
|
|
4654
5216
|
"integrity": "sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg==",
|
|
4655
|
-
"dev": true,
|
|
4656
5217
|
"requires": {
|
|
4657
5218
|
"has-tostringtag": "^1.0.0"
|
|
4658
5219
|
}
|
|
@@ -4661,7 +5222,6 @@
|
|
|
4661
5222
|
"version": "1.0.4",
|
|
4662
5223
|
"resolved": "https://registry.npmjs.org/is-symbol/-/is-symbol-1.0.4.tgz",
|
|
4663
5224
|
"integrity": "sha512-C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg==",
|
|
4664
|
-
"dev": true,
|
|
4665
5225
|
"requires": {
|
|
4666
5226
|
"has-symbols": "^1.0.2"
|
|
4667
5227
|
}
|
|
@@ -4670,7 +5230,6 @@
|
|
|
4670
5230
|
"version": "1.1.8",
|
|
4671
5231
|
"resolved": "https://registry.npmjs.org/is-typed-array/-/is-typed-array-1.1.8.tgz",
|
|
4672
5232
|
"integrity": "sha512-HqH41TNZq2fgtGT8WHVFVJhBVGuY3AnP3Q36K8JKXUxSxRgk/d+7NjmwG2vo2mYmXK8UYZKu0qH8bVP5gEisjA==",
|
|
4673
|
-
"dev": true,
|
|
4674
5233
|
"requires": {
|
|
4675
5234
|
"available-typed-arrays": "^1.0.5",
|
|
4676
5235
|
"call-bind": "^1.0.2",
|
|
@@ -4699,7 +5258,6 @@
|
|
|
4699
5258
|
"version": "1.0.1",
|
|
4700
5259
|
"resolved": "https://registry.npmjs.org/is-weakref/-/is-weakref-1.0.1.tgz",
|
|
4701
5260
|
"integrity": "sha512-b2jKc2pQZjaeFYWEf7ScFj+Be1I+PXmlu572Q8coTXZ+LD/QQZ7ShPMst8h16riVgyXTQwUsFEl74mDvc/3MHQ==",
|
|
4702
|
-
"dev": true,
|
|
4703
5261
|
"requires": {
|
|
4704
5262
|
"call-bind": "^1.0.0"
|
|
4705
5263
|
}
|
|
@@ -4797,12 +5355,9 @@
|
|
|
4797
5355
|
"integrity": "sha1-nbe1lJatPzz+8wp1FC0tkwrXJlE="
|
|
4798
5356
|
},
|
|
4799
5357
|
"json5": {
|
|
4800
|
-
"version": "2.2.
|
|
4801
|
-
"resolved": "https://registry.npmjs.org/json5/-/json5-2.2.
|
|
4802
|
-
"integrity": "sha512-
|
|
4803
|
-
"requires": {
|
|
4804
|
-
"minimist": "^1.2.5"
|
|
4805
|
-
}
|
|
5358
|
+
"version": "2.2.1",
|
|
5359
|
+
"resolved": "https://registry.npmjs.org/json5/-/json5-2.2.1.tgz",
|
|
5360
|
+
"integrity": "sha512-1hqLFMSrGHRHxav9q9gNjJ5EXznIxGVO09xQRrwplcS8qs28pZ8s8hupZAmqDwZUmVZ2Qb2jnyPOWcDH8m8dlA=="
|
|
4806
5361
|
},
|
|
4807
5362
|
"jsonfile": {
|
|
4808
5363
|
"version": "2.4.0",
|
|
@@ -4817,6 +5372,11 @@
|
|
|
4817
5372
|
"resolved": "https://registry.npmjs.org/jsonify/-/jsonify-0.0.0.tgz",
|
|
4818
5373
|
"integrity": "sha1-LHS27kHZPKUbe1qu6PUDYx0lKnM="
|
|
4819
5374
|
},
|
|
5375
|
+
"jsonparse": {
|
|
5376
|
+
"version": "1.3.1",
|
|
5377
|
+
"resolved": "https://registry.npmjs.org/jsonparse/-/jsonparse-1.3.1.tgz",
|
|
5378
|
+
"integrity": "sha1-P02uSpH6wxX3EGL4UhzCOfE2YoA="
|
|
5379
|
+
},
|
|
4820
5380
|
"jsonpointer": {
|
|
4821
5381
|
"version": "5.0.0",
|
|
4822
5382
|
"resolved": "https://registry.npmjs.org/jsonpointer/-/jsonpointer-5.0.0.tgz",
|
|
@@ -4847,6 +5407,11 @@
|
|
|
4847
5407
|
"json-buffer": "3.0.0"
|
|
4848
5408
|
}
|
|
4849
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
|
+
},
|
|
4850
5415
|
"klaw": {
|
|
4851
5416
|
"version": "1.3.1",
|
|
4852
5417
|
"resolved": "https://registry.npmjs.org/klaw/-/klaw-1.3.1.tgz",
|
|
@@ -4855,6 +5420,15 @@
|
|
|
4855
5420
|
"graceful-fs": "^4.1.9"
|
|
4856
5421
|
}
|
|
4857
5422
|
},
|
|
5423
|
+
"labeled-stream-splicer": {
|
|
5424
|
+
"version": "2.0.2",
|
|
5425
|
+
"resolved": "https://registry.npmjs.org/labeled-stream-splicer/-/labeled-stream-splicer-2.0.2.tgz",
|
|
5426
|
+
"integrity": "sha512-Ca4LSXFFZUjPScRaqOcFxneA0VpKZr4MMYCljyQr4LIewTLb3Y0IUTIsnBBsVubIeEfxeSZpSjSsRM8APEQaAw==",
|
|
5427
|
+
"requires": {
|
|
5428
|
+
"inherits": "^2.0.1",
|
|
5429
|
+
"stream-splicer": "^2.0.0"
|
|
5430
|
+
}
|
|
5431
|
+
},
|
|
4858
5432
|
"latest-version": {
|
|
4859
5433
|
"version": "5.1.0",
|
|
4860
5434
|
"resolved": "https://registry.npmjs.org/latest-version/-/latest-version-5.1.0.tgz",
|
|
@@ -4895,6 +5469,11 @@
|
|
|
4895
5469
|
"resolved": "https://registry.npmjs.org/lodash.debounce/-/lodash.debounce-4.0.8.tgz",
|
|
4896
5470
|
"integrity": "sha1-gteb/zCmfEAF/9XiUVMArZyk168="
|
|
4897
5471
|
},
|
|
5472
|
+
"lodash.memoize": {
|
|
5473
|
+
"version": "3.0.4",
|
|
5474
|
+
"resolved": "https://registry.npmjs.org/lodash.memoize/-/lodash.memoize-3.0.4.tgz",
|
|
5475
|
+
"integrity": "sha1-LcvSwofLwKVcxCMovQxzYVDVPj8="
|
|
5476
|
+
},
|
|
4898
5477
|
"lodash.merge": {
|
|
4899
5478
|
"version": "4.6.2",
|
|
4900
5479
|
"resolved": "https://registry.npmjs.org/lodash.merge/-/lodash.merge-4.6.2.tgz",
|
|
@@ -4932,9 +5511,19 @@
|
|
|
4932
5511
|
"integrity": "sha1-5WqpTEyAVaFkBKBnS3jyFffI4ZQ="
|
|
4933
5512
|
},
|
|
4934
5513
|
"marked": {
|
|
4935
|
-
"version": "0.
|
|
4936
|
-
"resolved": "https://registry.npmjs.org/marked/-/marked-0.
|
|
4937
|
-
"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=="
|
|
5517
|
+
},
|
|
5518
|
+
"md5.js": {
|
|
5519
|
+
"version": "1.3.5",
|
|
5520
|
+
"resolved": "https://registry.npmjs.org/md5.js/-/md5.js-1.3.5.tgz",
|
|
5521
|
+
"integrity": "sha512-xitP+WxNPcTTOgnTJcrhM0xvdPepipPSf3I8EIpGKeFLjt3PlJLIDG3u8EX53ZIubkb+5U2+3rELYpEhHhzdkg==",
|
|
5522
|
+
"requires": {
|
|
5523
|
+
"hash-base": "^3.0.0",
|
|
5524
|
+
"inherits": "^2.0.1",
|
|
5525
|
+
"safe-buffer": "^5.1.2"
|
|
5526
|
+
}
|
|
4938
5527
|
},
|
|
4939
5528
|
"media-typer": {
|
|
4940
5529
|
"version": "0.3.0",
|
|
@@ -4964,109 +5553,153 @@
|
|
|
4964
5553
|
}
|
|
4965
5554
|
},
|
|
4966
5555
|
"metalsmith": {
|
|
4967
|
-
"version": "2.3
|
|
4968
|
-
"resolved": "https://registry.npmjs.org/metalsmith/-/metalsmith-2.3.
|
|
4969
|
-
"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==",
|
|
4970
5559
|
"requires": {
|
|
4971
|
-
"
|
|
4972
|
-
"
|
|
4973
|
-
"clone": "^1.0.2",
|
|
5560
|
+
"chalk": "^4.1.2",
|
|
5561
|
+
"clone": "^2.1.2",
|
|
4974
5562
|
"co-fs-extra": "^1.2.1",
|
|
4975
|
-
"commander": "^2.
|
|
4976
|
-
"
|
|
4977
|
-
"
|
|
4978
|
-
"is": "^3.1.0",
|
|
5563
|
+
"commander": "^6.2.1",
|
|
5564
|
+
"cross-spawn": "^7.0.3",
|
|
5565
|
+
"gray-matter": "^4.0.3",
|
|
4979
5566
|
"is-utf8": "~0.2.0",
|
|
4980
|
-
"
|
|
4981
|
-
"rimraf": "^
|
|
4982
|
-
"stat-mode": "^0.
|
|
5567
|
+
"micromatch": "^4.0.5",
|
|
5568
|
+
"rimraf": "^3.0.2",
|
|
5569
|
+
"stat-mode": "^1.0.0",
|
|
4983
5570
|
"thunkify": "^2.1.2",
|
|
4984
5571
|
"unyield": "0.0.1",
|
|
4985
|
-
"ware": "^1.
|
|
4986
|
-
"win-fork": "^1.1.1"
|
|
5572
|
+
"ware": "^1.3.0"
|
|
4987
5573
|
},
|
|
4988
5574
|
"dependencies": {
|
|
4989
|
-
"ansi-
|
|
4990
|
-
"version": "
|
|
4991
|
-
"resolved": "https://registry.npmjs.org/ansi-
|
|
4992
|
-
"integrity": "
|
|
5575
|
+
"ansi-styles": {
|
|
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
|
+
}
|
|
5582
|
+
},
|
|
5583
|
+
"chalk": {
|
|
5584
|
+
"version": "4.1.2",
|
|
5585
|
+
"resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz",
|
|
5586
|
+
"integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==",
|
|
5587
|
+
"requires": {
|
|
5588
|
+
"ansi-styles": "^4.1.0",
|
|
5589
|
+
"supports-color": "^7.1.0"
|
|
5590
|
+
}
|
|
5591
|
+
},
|
|
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==",
|
|
5601
|
+
"requires": {
|
|
5602
|
+
"color-name": "~1.1.4"
|
|
5603
|
+
}
|
|
5604
|
+
},
|
|
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==",
|
|
5619
|
+
"requires": {
|
|
5620
|
+
"path-key": "^3.1.0",
|
|
5621
|
+
"shebang-command": "^2.0.0",
|
|
5622
|
+
"which": "^2.0.1"
|
|
5623
|
+
}
|
|
4993
5624
|
},
|
|
4994
|
-
"
|
|
4995
|
-
"version": "
|
|
4996
|
-
"resolved": "https://registry.npmjs.org/
|
|
4997
|
-
"integrity": "
|
|
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=="
|
|
4998
5629
|
},
|
|
4999
|
-
"
|
|
5000
|
-
"version": "1.1
|
|
5001
|
-
"resolved": "https://registry.npmjs.org/
|
|
5002
|
-
"integrity": "
|
|
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": {
|
|
5636
|
+
"version": "2.0.0",
|
|
5637
|
+
"resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz",
|
|
5638
|
+
"integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==",
|
|
5003
5639
|
"requires": {
|
|
5004
|
-
"
|
|
5005
|
-
"escape-string-regexp": "^1.0.2",
|
|
5006
|
-
"has-ansi": "^2.0.0",
|
|
5007
|
-
"strip-ansi": "^3.0.0",
|
|
5008
|
-
"supports-color": "^2.0.0"
|
|
5640
|
+
"shebang-regex": "^3.0.0"
|
|
5009
5641
|
}
|
|
5010
5642
|
},
|
|
5011
|
-
"
|
|
5012
|
-
"version": "
|
|
5013
|
-
"resolved": "https://registry.npmjs.org/
|
|
5014
|
-
"integrity": "sha512-
|
|
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==",
|
|
5015
5652
|
"requires": {
|
|
5016
|
-
"
|
|
5653
|
+
"has-flag": "^4.0.0"
|
|
5017
5654
|
}
|
|
5018
5655
|
},
|
|
5019
|
-
"
|
|
5020
|
-
"version": "
|
|
5021
|
-
"resolved": "https://registry.npmjs.org/
|
|
5022
|
-
"integrity": "
|
|
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==",
|
|
5023
5660
|
"requires": {
|
|
5024
|
-
"
|
|
5661
|
+
"isexe": "^2.0.0"
|
|
5025
5662
|
}
|
|
5026
|
-
},
|
|
5027
|
-
"supports-color": {
|
|
5028
|
-
"version": "2.0.0",
|
|
5029
|
-
"resolved": "https://registry.npmjs.org/supports-color/-/supports-color-2.0.0.tgz",
|
|
5030
|
-
"integrity": "sha1-U10EXOa2Nj+kARcIRimZXp3zJMc="
|
|
5031
5663
|
}
|
|
5032
5664
|
}
|
|
5033
5665
|
},
|
|
5034
|
-
"
|
|
5035
|
-
"version": "
|
|
5036
|
-
"resolved": "https://registry.npmjs.org/
|
|
5037
|
-
"integrity": "
|
|
5666
|
+
"methods": {
|
|
5667
|
+
"version": "1.1.2",
|
|
5668
|
+
"resolved": "https://registry.npmjs.org/methods/-/methods-1.1.2.tgz",
|
|
5669
|
+
"integrity": "sha1-VSmk1nZUE07cxSZmVoNbD4Ua/O4="
|
|
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==",
|
|
5038
5675
|
"requires": {
|
|
5039
|
-
"
|
|
5040
|
-
"
|
|
5041
|
-
"is-utf8": "^0.2.1",
|
|
5042
|
-
"jstransformer": "^1.0.0",
|
|
5043
|
-
"multimatch": "^2.1.0"
|
|
5676
|
+
"braces": "^3.0.2",
|
|
5677
|
+
"picomatch": "^2.3.1"
|
|
5044
5678
|
},
|
|
5045
5679
|
"dependencies": {
|
|
5046
|
-
"
|
|
5047
|
-
"version": "3.
|
|
5048
|
-
"resolved": "https://registry.npmjs.org/
|
|
5049
|
-
"integrity": "sha512-
|
|
5050
|
-
"requires": {
|
|
5051
|
-
"ms": "^2.1.1"
|
|
5052
|
-
}
|
|
5680
|
+
"picomatch": {
|
|
5681
|
+
"version": "2.3.1",
|
|
5682
|
+
"resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz",
|
|
5683
|
+
"integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA=="
|
|
5053
5684
|
}
|
|
5054
5685
|
}
|
|
5055
5686
|
},
|
|
5056
|
-
"
|
|
5057
|
-
"version": "
|
|
5058
|
-
"resolved": "https://registry.npmjs.org/
|
|
5059
|
-
"integrity": "sha512-
|
|
5687
|
+
"miller-rabin": {
|
|
5688
|
+
"version": "4.0.1",
|
|
5689
|
+
"resolved": "https://registry.npmjs.org/miller-rabin/-/miller-rabin-4.0.1.tgz",
|
|
5690
|
+
"integrity": "sha512-115fLhvZVqWwHPbClyntxEVfVDfl9DLLTuJvq3g2O/Oxi8AiNouAHvDSzHS0viUJc+V5vm3eq91Xwqn9dp4jRA==",
|
|
5060
5691
|
"requires": {
|
|
5061
|
-
"
|
|
5062
|
-
"
|
|
5692
|
+
"bn.js": "^4.0.0",
|
|
5693
|
+
"brorand": "^1.0.1"
|
|
5694
|
+
},
|
|
5695
|
+
"dependencies": {
|
|
5696
|
+
"bn.js": {
|
|
5697
|
+
"version": "4.12.0",
|
|
5698
|
+
"resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.12.0.tgz",
|
|
5699
|
+
"integrity": "sha512-c98Bf3tPniI+scsdk237ku1Dc3ujXQTSgyiPUDEOe7tRkhrqridvh8klBv0HCEso1OLOYcHuCv/cS6DNxKH+ZA=="
|
|
5700
|
+
}
|
|
5063
5701
|
}
|
|
5064
5702
|
},
|
|
5065
|
-
"methods": {
|
|
5066
|
-
"version": "1.1.2",
|
|
5067
|
-
"resolved": "https://registry.npmjs.org/methods/-/methods-1.1.2.tgz",
|
|
5068
|
-
"integrity": "sha1-VSmk1nZUE07cxSZmVoNbD4Ua/O4="
|
|
5069
|
-
},
|
|
5070
5703
|
"mime": {
|
|
5071
5704
|
"version": "1.6.0",
|
|
5072
5705
|
"resolved": "https://registry.npmjs.org/mime/-/mime-1.6.0.tgz",
|
|
@@ -5095,6 +5728,16 @@
|
|
|
5095
5728
|
"resolved": "https://registry.npmjs.org/mimic-response/-/mimic-response-1.0.1.tgz",
|
|
5096
5729
|
"integrity": "sha512-j5EctnkH7amfV/q5Hgmoal1g2QHFJRraOtmx0JpIqkxhBhI/lJSl1nMpQ45hVarwNETOoWEimndZ4QK0RHxuxQ=="
|
|
5097
5730
|
},
|
|
5731
|
+
"minimalistic-assert": {
|
|
5732
|
+
"version": "1.0.1",
|
|
5733
|
+
"resolved": "https://registry.npmjs.org/minimalistic-assert/-/minimalistic-assert-1.0.1.tgz",
|
|
5734
|
+
"integrity": "sha512-UtJcAD4yEaGtjPezWuO9wC4nwUnVH/8/Im3yEHQP4b67cXlD/Qr9hdITCU1xDbSEXg2XKNaP8jsReV7vQd00/A=="
|
|
5735
|
+
},
|
|
5736
|
+
"minimalistic-crypto-utils": {
|
|
5737
|
+
"version": "1.0.1",
|
|
5738
|
+
"resolved": "https://registry.npmjs.org/minimalistic-crypto-utils/-/minimalistic-crypto-utils-1.0.1.tgz",
|
|
5739
|
+
"integrity": "sha1-9sAMHAsIIkblxNmd+4x8CDsrWCo="
|
|
5740
|
+
},
|
|
5098
5741
|
"minimatch": {
|
|
5099
5742
|
"version": "3.0.4",
|
|
5100
5743
|
"resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.0.4.tgz",
|
|
@@ -5104,9 +5747,9 @@
|
|
|
5104
5747
|
}
|
|
5105
5748
|
},
|
|
5106
5749
|
"minimist": {
|
|
5107
|
-
"version": "1.2.
|
|
5108
|
-
"resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.
|
|
5109
|
-
"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=="
|
|
5110
5753
|
},
|
|
5111
5754
|
"mkdirp": {
|
|
5112
5755
|
"version": "0.5.5",
|
|
@@ -5116,22 +5759,48 @@
|
|
|
5116
5759
|
"minimist": "^1.2.5"
|
|
5117
5760
|
}
|
|
5118
5761
|
},
|
|
5762
|
+
"mkdirp-classic": {
|
|
5763
|
+
"version": "0.5.3",
|
|
5764
|
+
"resolved": "https://registry.npmjs.org/mkdirp-classic/-/mkdirp-classic-0.5.3.tgz",
|
|
5765
|
+
"integrity": "sha512-gKLcREMhtuZRwRAfqP3RFW+TK4JqApVBtOIftVgjuABpAtpxhPGaDcfvbhNvD0B8iD1oUr/txX35NjcaY6Ns/A=="
|
|
5766
|
+
},
|
|
5767
|
+
"module-deps": {
|
|
5768
|
+
"version": "6.2.3",
|
|
5769
|
+
"resolved": "https://registry.npmjs.org/module-deps/-/module-deps-6.2.3.tgz",
|
|
5770
|
+
"integrity": "sha512-fg7OZaQBcL4/L+AK5f4iVqf9OMbCclXfy/znXRxTVhJSeW5AIlS9AwheYwDaXM3lVW7OBeaeUEY3gbaC6cLlSA==",
|
|
5771
|
+
"requires": {
|
|
5772
|
+
"JSONStream": "^1.0.3",
|
|
5773
|
+
"browser-resolve": "^2.0.0",
|
|
5774
|
+
"cached-path-relative": "^1.0.2",
|
|
5775
|
+
"concat-stream": "~1.6.0",
|
|
5776
|
+
"defined": "^1.0.0",
|
|
5777
|
+
"detective": "^5.2.0",
|
|
5778
|
+
"duplexer2": "^0.1.2",
|
|
5779
|
+
"inherits": "^2.0.1",
|
|
5780
|
+
"parents": "^1.0.0",
|
|
5781
|
+
"readable-stream": "^2.0.2",
|
|
5782
|
+
"resolve": "^1.4.0",
|
|
5783
|
+
"stream-combiner2": "^1.1.1",
|
|
5784
|
+
"subarg": "^1.0.0",
|
|
5785
|
+
"through2": "^2.0.0",
|
|
5786
|
+
"xtend": "^4.0.0"
|
|
5787
|
+
},
|
|
5788
|
+
"dependencies": {
|
|
5789
|
+
"browser-resolve": {
|
|
5790
|
+
"version": "2.0.0",
|
|
5791
|
+
"resolved": "https://registry.npmjs.org/browser-resolve/-/browser-resolve-2.0.0.tgz",
|
|
5792
|
+
"integrity": "sha512-7sWsQlYL2rGLy2IWm8WL8DCTJvYLc/qlOnsakDac87SOoCd16WLsaAMdCiAqsTNHIe+SXfaqyxyo6THoWqs8WQ==",
|
|
5793
|
+
"requires": {
|
|
5794
|
+
"resolve": "^1.17.0"
|
|
5795
|
+
}
|
|
5796
|
+
}
|
|
5797
|
+
}
|
|
5798
|
+
},
|
|
5119
5799
|
"ms": {
|
|
5120
5800
|
"version": "2.1.2",
|
|
5121
5801
|
"resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz",
|
|
5122
5802
|
"integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w=="
|
|
5123
5803
|
},
|
|
5124
|
-
"multimatch": {
|
|
5125
|
-
"version": "2.1.0",
|
|
5126
|
-
"resolved": "https://registry.npmjs.org/multimatch/-/multimatch-2.1.0.tgz",
|
|
5127
|
-
"integrity": "sha1-nHkGoi+0wCkZ4vX3UWG0zb1LKis=",
|
|
5128
|
-
"requires": {
|
|
5129
|
-
"array-differ": "^1.0.0",
|
|
5130
|
-
"array-union": "^1.0.1",
|
|
5131
|
-
"arrify": "^1.0.0",
|
|
5132
|
-
"minimatch": "^3.0.0"
|
|
5133
|
-
}
|
|
5134
|
-
},
|
|
5135
5804
|
"mute-stream": {
|
|
5136
5805
|
"version": "0.0.8",
|
|
5137
5806
|
"resolved": "https://registry.npmjs.org/mute-stream/-/mute-stream-0.0.8.tgz",
|
|
@@ -5166,9 +5835,9 @@
|
|
|
5166
5835
|
}
|
|
5167
5836
|
},
|
|
5168
5837
|
"node-releases": {
|
|
5169
|
-
"version": "2.0.
|
|
5170
|
-
"resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.
|
|
5171
|
-
"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=="
|
|
5172
5841
|
},
|
|
5173
5842
|
"normalize-path": {
|
|
5174
5843
|
"version": "3.0.0",
|
|
@@ -5276,6 +5945,11 @@
|
|
|
5276
5945
|
"word-wrap": "~1.2.3"
|
|
5277
5946
|
}
|
|
5278
5947
|
},
|
|
5948
|
+
"os-browserify": {
|
|
5949
|
+
"version": "0.3.0",
|
|
5950
|
+
"resolved": "https://registry.npmjs.org/os-browserify/-/os-browserify-0.3.0.tgz",
|
|
5951
|
+
"integrity": "sha1-hUNzx/XCMVkU/Jv8a9gjj92h7Cc="
|
|
5952
|
+
},
|
|
5279
5953
|
"os-tmpdir": {
|
|
5280
5954
|
"version": "1.0.2",
|
|
5281
5955
|
"resolved": "https://registry.npmjs.org/os-tmpdir/-/os-tmpdir-1.0.2.tgz",
|
|
@@ -5403,6 +6077,26 @@
|
|
|
5403
6077
|
"callsites": "^3.0.0"
|
|
5404
6078
|
}
|
|
5405
6079
|
},
|
|
6080
|
+
"parents": {
|
|
6081
|
+
"version": "1.0.1",
|
|
6082
|
+
"resolved": "https://registry.npmjs.org/parents/-/parents-1.0.1.tgz",
|
|
6083
|
+
"integrity": "sha1-/t1NK/GTp3dF/nHjcdc8MwfZx1E=",
|
|
6084
|
+
"requires": {
|
|
6085
|
+
"path-platform": "~0.11.15"
|
|
6086
|
+
}
|
|
6087
|
+
},
|
|
6088
|
+
"parse-asn1": {
|
|
6089
|
+
"version": "5.1.6",
|
|
6090
|
+
"resolved": "https://registry.npmjs.org/parse-asn1/-/parse-asn1-5.1.6.tgz",
|
|
6091
|
+
"integrity": "sha512-RnZRo1EPU6JBnra2vGHj0yhp6ebyjBZpmUCLHWiFhxlzvBCCpAuZ7elsBp1PVAbQN0/04VD/19rfzlBSwLstMw==",
|
|
6092
|
+
"requires": {
|
|
6093
|
+
"asn1.js": "^5.2.0",
|
|
6094
|
+
"browserify-aes": "^1.0.0",
|
|
6095
|
+
"evp_bytestokey": "^1.0.0",
|
|
6096
|
+
"pbkdf2": "^3.0.3",
|
|
6097
|
+
"safe-buffer": "^5.1.1"
|
|
6098
|
+
}
|
|
6099
|
+
},
|
|
5406
6100
|
"parseurl": {
|
|
5407
6101
|
"version": "1.3.3",
|
|
5408
6102
|
"resolved": "https://registry.npmjs.org/parseurl/-/parseurl-1.3.3.tgz",
|
|
@@ -5413,6 +6107,11 @@
|
|
|
5413
6107
|
"resolved": "https://registry.npmjs.org/passerror/-/passerror-1.1.1.tgz",
|
|
5414
6108
|
"integrity": "sha1-oluI292RCilgOux9y5bpp6l2h7Q="
|
|
5415
6109
|
},
|
|
6110
|
+
"path-browserify": {
|
|
6111
|
+
"version": "1.0.1",
|
|
6112
|
+
"resolved": "https://registry.npmjs.org/path-browserify/-/path-browserify-1.0.1.tgz",
|
|
6113
|
+
"integrity": "sha512-b7uo2UCUOYZcnF/3ID0lulOJi/bafxa1xPe7ZPsammBSpjSWQkjNxlt635YGS2MiR9GjvuXCtz2emr3jbsz98g=="
|
|
6114
|
+
},
|
|
5416
6115
|
"path-exists": {
|
|
5417
6116
|
"version": "4.0.0",
|
|
5418
6117
|
"resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz",
|
|
@@ -5433,6 +6132,11 @@
|
|
|
5433
6132
|
"resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz",
|
|
5434
6133
|
"integrity": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw=="
|
|
5435
6134
|
},
|
|
6135
|
+
"path-platform": {
|
|
6136
|
+
"version": "0.11.15",
|
|
6137
|
+
"resolved": "https://registry.npmjs.org/path-platform/-/path-platform-0.11.15.tgz",
|
|
6138
|
+
"integrity": "sha1-6GQhf3TDaFDwhSt43Hv31KVyG/I="
|
|
6139
|
+
},
|
|
5436
6140
|
"path-to-regexp": {
|
|
5437
6141
|
"version": "0.1.7",
|
|
5438
6142
|
"resolved": "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-0.1.7.tgz",
|
|
@@ -5446,6 +6150,18 @@
|
|
|
5446
6150
|
"through": "~2.3"
|
|
5447
6151
|
}
|
|
5448
6152
|
},
|
|
6153
|
+
"pbkdf2": {
|
|
6154
|
+
"version": "3.1.2",
|
|
6155
|
+
"resolved": "https://registry.npmjs.org/pbkdf2/-/pbkdf2-3.1.2.tgz",
|
|
6156
|
+
"integrity": "sha512-iuh7L6jA7JEGu2WxDwtQP1ddOpaJNC4KlDEFfdQajSGgGPNi4OyDc2R7QnbY2bR9QjBVGwgvTdNJZoE7RaxUMA==",
|
|
6157
|
+
"requires": {
|
|
6158
|
+
"create-hash": "^1.1.2",
|
|
6159
|
+
"create-hmac": "^1.1.4",
|
|
6160
|
+
"ripemd160": "^2.0.1",
|
|
6161
|
+
"safe-buffer": "^5.0.1",
|
|
6162
|
+
"sha.js": "^2.4.8"
|
|
6163
|
+
}
|
|
6164
|
+
},
|
|
5449
6165
|
"pegjs": {
|
|
5450
6166
|
"version": "0.10.0",
|
|
5451
6167
|
"resolved": "https://registry.npmjs.org/pegjs/-/pegjs-0.10.0.tgz",
|
|
@@ -5499,6 +6215,11 @@
|
|
|
5499
6215
|
"resolved": "https://registry.npmjs.org/prettier/-/prettier-2.5.1.tgz",
|
|
5500
6216
|
"integrity": "sha512-vBZcPRUR5MZJwoyi3ZoyQlc1rXeEck8KgeC9AwwOn+exuxLxq5toTRDTSaVrXHxelDMHy9zlicw8u66yxoSUFg=="
|
|
5501
6217
|
},
|
|
6218
|
+
"process": {
|
|
6219
|
+
"version": "0.11.10",
|
|
6220
|
+
"resolved": "https://registry.npmjs.org/process/-/process-0.11.10.tgz",
|
|
6221
|
+
"integrity": "sha1-czIwDoQBYb2j5podHZGn1LwW8YI="
|
|
6222
|
+
},
|
|
5502
6223
|
"process-nextick-args": {
|
|
5503
6224
|
"version": "2.0.1",
|
|
5504
6225
|
"resolved": "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-2.0.1.tgz",
|
|
@@ -5539,6 +6260,26 @@
|
|
|
5539
6260
|
"event-stream": "=3.3.4"
|
|
5540
6261
|
}
|
|
5541
6262
|
},
|
|
6263
|
+
"public-encrypt": {
|
|
6264
|
+
"version": "4.0.3",
|
|
6265
|
+
"resolved": "https://registry.npmjs.org/public-encrypt/-/public-encrypt-4.0.3.tgz",
|
|
6266
|
+
"integrity": "sha512-zVpa8oKZSz5bTMTFClc1fQOnyyEzpl5ozpi1B5YcvBrdohMjH2rfsBtyXcuNuwjsDIXmBYlF2N5FlJYhR29t8Q==",
|
|
6267
|
+
"requires": {
|
|
6268
|
+
"bn.js": "^4.1.0",
|
|
6269
|
+
"browserify-rsa": "^4.0.0",
|
|
6270
|
+
"create-hash": "^1.1.0",
|
|
6271
|
+
"parse-asn1": "^5.0.0",
|
|
6272
|
+
"randombytes": "^2.0.1",
|
|
6273
|
+
"safe-buffer": "^5.1.2"
|
|
6274
|
+
},
|
|
6275
|
+
"dependencies": {
|
|
6276
|
+
"bn.js": {
|
|
6277
|
+
"version": "4.12.0",
|
|
6278
|
+
"resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.12.0.tgz",
|
|
6279
|
+
"integrity": "sha512-c98Bf3tPniI+scsdk237ku1Dc3ujXQTSgyiPUDEOe7tRkhrqridvh8klBv0HCEso1OLOYcHuCv/cS6DNxKH+ZA=="
|
|
6280
|
+
}
|
|
6281
|
+
}
|
|
6282
|
+
},
|
|
5542
6283
|
"pump": {
|
|
5543
6284
|
"version": "3.0.0",
|
|
5544
6285
|
"resolved": "https://registry.npmjs.org/pump/-/pump-3.0.0.tgz",
|
|
@@ -5566,6 +6307,16 @@
|
|
|
5566
6307
|
"resolved": "https://registry.npmjs.org/qs/-/qs-6.7.0.tgz",
|
|
5567
6308
|
"integrity": "sha512-VCdBRNFTX1fyE7Nb6FYoURo/SPe62QCaAyzJvUjwRaIsc+NePBEniHlvxFmmX56+HZphIGtV0XeCirBtpDrTyQ=="
|
|
5568
6309
|
},
|
|
6310
|
+
"querystring": {
|
|
6311
|
+
"version": "0.2.0",
|
|
6312
|
+
"resolved": "https://registry.npmjs.org/querystring/-/querystring-0.2.0.tgz",
|
|
6313
|
+
"integrity": "sha1-sgmEkgO7Jd+CDadW50cAWHhSFiA="
|
|
6314
|
+
},
|
|
6315
|
+
"querystring-es3": {
|
|
6316
|
+
"version": "0.2.1",
|
|
6317
|
+
"resolved": "https://registry.npmjs.org/querystring-es3/-/querystring-es3-0.2.1.tgz",
|
|
6318
|
+
"integrity": "sha1-nsYfeQSYdXB9aUFFlv2Qek1xHnM="
|
|
6319
|
+
},
|
|
5569
6320
|
"queue": {
|
|
5570
6321
|
"version": "6.0.1",
|
|
5571
6322
|
"resolved": "https://registry.npmjs.org/queue/-/queue-6.0.1.tgz",
|
|
@@ -5589,6 +6340,23 @@
|
|
|
5589
6340
|
"resolved": "https://registry.npmjs.org/quotemeta/-/quotemeta-0.0.0.tgz",
|
|
5590
6341
|
"integrity": "sha1-UdOgbuD81uO1AdvSiQQ1Gtelo4w="
|
|
5591
6342
|
},
|
|
6343
|
+
"randombytes": {
|
|
6344
|
+
"version": "2.1.0",
|
|
6345
|
+
"resolved": "https://registry.npmjs.org/randombytes/-/randombytes-2.1.0.tgz",
|
|
6346
|
+
"integrity": "sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ==",
|
|
6347
|
+
"requires": {
|
|
6348
|
+
"safe-buffer": "^5.1.0"
|
|
6349
|
+
}
|
|
6350
|
+
},
|
|
6351
|
+
"randomfill": {
|
|
6352
|
+
"version": "1.0.4",
|
|
6353
|
+
"resolved": "https://registry.npmjs.org/randomfill/-/randomfill-1.0.4.tgz",
|
|
6354
|
+
"integrity": "sha512-87lcbR8+MhcWcUiQ+9e+Rwx8MyR2P7qnt15ynUlbm3TU/fjbgz4GsvfSUDTemtCCtVCqb4ZcEFlyPNTh9bBTLw==",
|
|
6355
|
+
"requires": {
|
|
6356
|
+
"randombytes": "^2.0.5",
|
|
6357
|
+
"safe-buffer": "^5.1.0"
|
|
6358
|
+
}
|
|
6359
|
+
},
|
|
5592
6360
|
"range-parser": {
|
|
5593
6361
|
"version": "1.2.1",
|
|
5594
6362
|
"resolved": "https://registry.npmjs.org/range-parser/-/range-parser-1.2.1.tgz",
|
|
@@ -5623,6 +6391,14 @@
|
|
|
5623
6391
|
}
|
|
5624
6392
|
}
|
|
5625
6393
|
},
|
|
6394
|
+
"read-only-stream": {
|
|
6395
|
+
"version": "2.0.0",
|
|
6396
|
+
"resolved": "https://registry.npmjs.org/read-only-stream/-/read-only-stream-2.0.0.tgz",
|
|
6397
|
+
"integrity": "sha1-JyT9aoET1zdkrCiNQ4YnDB2/F/A=",
|
|
6398
|
+
"requires": {
|
|
6399
|
+
"readable-stream": "^2.0.2"
|
|
6400
|
+
}
|
|
6401
|
+
},
|
|
5626
6402
|
"readable-stream": {
|
|
5627
6403
|
"version": "2.3.7",
|
|
5628
6404
|
"resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.7.tgz",
|
|
@@ -5645,23 +6421,15 @@
|
|
|
5645
6421
|
"picomatch": "^2.2.1"
|
|
5646
6422
|
}
|
|
5647
6423
|
},
|
|
5648
|
-
"recursive-readdir": {
|
|
5649
|
-
"version": "2.2.2",
|
|
5650
|
-
"resolved": "https://registry.npmjs.org/recursive-readdir/-/recursive-readdir-2.2.2.tgz",
|
|
5651
|
-
"integrity": "sha512-nRCcW9Sj7NuZwa2XvH9co8NPeXUBhZP7CRKJtU+cS6PW9FpCIFoI5ib0NT1ZrbNuPoRy0ylyCaUL8Gih4LSyFg==",
|
|
5652
|
-
"requires": {
|
|
5653
|
-
"minimatch": "3.0.4"
|
|
5654
|
-
}
|
|
5655
|
-
},
|
|
5656
6424
|
"regenerate": {
|
|
5657
6425
|
"version": "1.4.2",
|
|
5658
6426
|
"resolved": "https://registry.npmjs.org/regenerate/-/regenerate-1.4.2.tgz",
|
|
5659
6427
|
"integrity": "sha512-zrceR/XhGYU/d/opr2EKO7aRHUeiBI8qjtfHqADTwZd6Szfy16la6kqD0MIUs5z5hx6AaKa+PixpPrR289+I0A=="
|
|
5660
6428
|
},
|
|
5661
6429
|
"regenerate-unicode-properties": {
|
|
5662
|
-
"version": "
|
|
5663
|
-
"resolved": "https://registry.npmjs.org/regenerate-unicode-properties/-/regenerate-unicode-properties-
|
|
5664
|
-
"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==",
|
|
5665
6433
|
"requires": {
|
|
5666
6434
|
"regenerate": "^1.4.2"
|
|
5667
6435
|
}
|
|
@@ -5672,9 +6440,9 @@
|
|
|
5672
6440
|
"integrity": "sha512-p3VT+cOEgxFsRRA9X4lkI1E+k2/CtnKtU4gcxyaCUreilL/vqI6CdZ3wxVUx3UOUg+gnUOQQcRI7BmSI656MYA=="
|
|
5673
6441
|
},
|
|
5674
6442
|
"regenerator-transform": {
|
|
5675
|
-
"version": "0.
|
|
5676
|
-
"resolved": "https://registry.npmjs.org/regenerator-transform/-/regenerator-transform-0.
|
|
5677
|
-
"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==",
|
|
5678
6446
|
"requires": {
|
|
5679
6447
|
"@babel/runtime": "^7.8.4"
|
|
5680
6448
|
}
|
|
@@ -5694,14 +6462,14 @@
|
|
|
5694
6462
|
"integrity": "sha512-lv0M6+TkDVniA3aD1Eg0DVpfU/booSu7Eev3TDO/mZKHBfVjgCGTV4t4buppESEYDtkArYFOxTJWv6S5C+iaNw=="
|
|
5695
6463
|
},
|
|
5696
6464
|
"regexpu-core": {
|
|
5697
|
-
"version": "
|
|
5698
|
-
"resolved": "https://registry.npmjs.org/regexpu-core/-/regexpu-core-
|
|
5699
|
-
"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==",
|
|
5700
6468
|
"requires": {
|
|
5701
6469
|
"regenerate": "^1.4.2",
|
|
5702
|
-
"regenerate-unicode-properties": "^
|
|
5703
|
-
"regjsgen": "^0.
|
|
5704
|
-
"regjsparser": "^0.
|
|
6470
|
+
"regenerate-unicode-properties": "^10.0.1",
|
|
6471
|
+
"regjsgen": "^0.6.0",
|
|
6472
|
+
"regjsparser": "^0.8.2",
|
|
5705
6473
|
"unicode-match-property-ecmascript": "^2.0.0",
|
|
5706
6474
|
"unicode-match-property-value-ecmascript": "^2.0.0"
|
|
5707
6475
|
}
|
|
@@ -5728,14 +6496,14 @@
|
|
|
5728
6496
|
}
|
|
5729
6497
|
},
|
|
5730
6498
|
"regjsgen": {
|
|
5731
|
-
"version": "0.
|
|
5732
|
-
"resolved": "https://registry.npmjs.org/regjsgen/-/regjsgen-0.
|
|
5733
|
-
"integrity": "sha512-
|
|
6499
|
+
"version": "0.6.0",
|
|
6500
|
+
"resolved": "https://registry.npmjs.org/regjsgen/-/regjsgen-0.6.0.tgz",
|
|
6501
|
+
"integrity": "sha512-ozE883Uigtqj3bx7OhL1KNbCzGyW2NQZPl6Hs09WTvCuZD5sTI4JY58bkbQWa/Y9hxIsvJ3M8Nbf7j54IqeZbA=="
|
|
5734
6502
|
},
|
|
5735
6503
|
"regjsparser": {
|
|
5736
|
-
"version": "0.
|
|
5737
|
-
"resolved": "https://registry.npmjs.org/regjsparser/-/regjsparser-0.
|
|
5738
|
-
"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==",
|
|
5739
6507
|
"requires": {
|
|
5740
6508
|
"jsesc": "~0.5.0"
|
|
5741
6509
|
},
|
|
@@ -5870,6 +6638,15 @@
|
|
|
5870
6638
|
"glob": "^7.1.3"
|
|
5871
6639
|
}
|
|
5872
6640
|
},
|
|
6641
|
+
"ripemd160": {
|
|
6642
|
+
"version": "2.0.2",
|
|
6643
|
+
"resolved": "https://registry.npmjs.org/ripemd160/-/ripemd160-2.0.2.tgz",
|
|
6644
|
+
"integrity": "sha512-ii4iagi25WusVoiC4B4lq7pbXfAp3D9v5CwfkY33vffw2+pkDjY1D8GaN7spsxvCSx8dkPqOZCEZyfxcmJG2IA==",
|
|
6645
|
+
"requires": {
|
|
6646
|
+
"hash-base": "^3.0.0",
|
|
6647
|
+
"inherits": "^2.0.1"
|
|
6648
|
+
}
|
|
6649
|
+
},
|
|
5873
6650
|
"run-async": {
|
|
5874
6651
|
"version": "2.4.1",
|
|
5875
6652
|
"resolved": "https://registry.npmjs.org/run-async/-/run-async-2.4.1.tgz",
|
|
@@ -5920,6 +6697,15 @@
|
|
|
5920
6697
|
"get-assigned-identifiers": "^1.1.0"
|
|
5921
6698
|
}
|
|
5922
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
|
+
},
|
|
5923
6709
|
"seek-bzip": {
|
|
5924
6710
|
"version": "1.0.6",
|
|
5925
6711
|
"resolved": "https://registry.npmjs.org/seek-bzip/-/seek-bzip-1.0.6.tgz",
|
|
@@ -6052,11 +6838,28 @@
|
|
|
6052
6838
|
"resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.1.1.tgz",
|
|
6053
6839
|
"integrity": "sha512-JvdAWfbXeIGaZ9cILp38HntZSFSo3mWg6xGcJJsd+d4aRMOqauag1C63dJfDw7OaMYwEbHMOxEZ1lqVRYP2OAw=="
|
|
6054
6840
|
},
|
|
6841
|
+
"sha.js": {
|
|
6842
|
+
"version": "2.4.11",
|
|
6843
|
+
"resolved": "https://registry.npmjs.org/sha.js/-/sha.js-2.4.11.tgz",
|
|
6844
|
+
"integrity": "sha512-QMEp5B7cftE7APOjk5Y6xgrbWu+WkLVQwk8JNjZ8nKRciZaByEW6MubieAiToS7+dwvrjGhH8jRXz3MVd0AYqQ==",
|
|
6845
|
+
"requires": {
|
|
6846
|
+
"inherits": "^2.0.1",
|
|
6847
|
+
"safe-buffer": "^5.0.1"
|
|
6848
|
+
}
|
|
6849
|
+
},
|
|
6055
6850
|
"shallow-copy": {
|
|
6056
6851
|
"version": "0.0.1",
|
|
6057
6852
|
"resolved": "https://registry.npmjs.org/shallow-copy/-/shallow-copy-0.0.1.tgz",
|
|
6058
6853
|
"integrity": "sha1-QV9CcC1z2BAzApLMXuhurhoRoXA="
|
|
6059
6854
|
},
|
|
6855
|
+
"shasum-object": {
|
|
6856
|
+
"version": "1.0.0",
|
|
6857
|
+
"resolved": "https://registry.npmjs.org/shasum-object/-/shasum-object-1.0.0.tgz",
|
|
6858
|
+
"integrity": "sha512-Iqo5rp/3xVi6M4YheapzZhhGPVs0yZwHj7wvwQ1B9z8H6zk+FEnI7y3Teq7qwnekfEhu8WmG2z0z4iWZaxLWVg==",
|
|
6859
|
+
"requires": {
|
|
6860
|
+
"fast-safe-stringify": "^2.0.7"
|
|
6861
|
+
}
|
|
6862
|
+
},
|
|
6060
6863
|
"shebang-command": {
|
|
6061
6864
|
"version": "1.2.0",
|
|
6062
6865
|
"resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-1.2.0.tgz",
|
|
@@ -6070,6 +6873,11 @@
|
|
|
6070
6873
|
"resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-1.0.0.tgz",
|
|
6071
6874
|
"integrity": "sha1-2kL0l0DAtC2yypcoVxyxkMmO/qM="
|
|
6072
6875
|
},
|
|
6876
|
+
"shell-quote": {
|
|
6877
|
+
"version": "1.7.3",
|
|
6878
|
+
"resolved": "https://registry.npmjs.org/shell-quote/-/shell-quote-1.7.3.tgz",
|
|
6879
|
+
"integrity": "sha512-Vpfqwm4EnqGdlsBFNmHhxhElJYrdfcxPThu+ryKS5J8L/fhAwLazFZtq+S+TWZ9ANj2piSQLGj6NQg+lKPmxrw=="
|
|
6880
|
+
},
|
|
6073
6881
|
"showdown": {
|
|
6074
6882
|
"version": "1.9.1",
|
|
6075
6883
|
"resolved": "https://registry.npmjs.org/showdown/-/showdown-1.9.1.tgz",
|
|
@@ -6181,7 +6989,6 @@
|
|
|
6181
6989
|
"version": "1.0.4",
|
|
6182
6990
|
"resolved": "https://registry.npmjs.org/side-channel/-/side-channel-1.0.4.tgz",
|
|
6183
6991
|
"integrity": "sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw==",
|
|
6184
|
-
"dev": true,
|
|
6185
6992
|
"requires": {
|
|
6186
6993
|
"call-bind": "^1.0.0",
|
|
6187
6994
|
"get-intrinsic": "^1.0.2",
|
|
@@ -6193,6 +7000,11 @@
|
|
|
6193
7000
|
"resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.6.tgz",
|
|
6194
7001
|
"integrity": "sha512-sDl4qMFpijcGw22U5w63KmD3cZJfBuFlVNbVMKje2keoKML7X2UzWbc4XrmEbDwg0NXJc3yv4/ox7b+JWb57kQ=="
|
|
6195
7002
|
},
|
|
7003
|
+
"simple-concat": {
|
|
7004
|
+
"version": "1.0.1",
|
|
7005
|
+
"resolved": "https://registry.npmjs.org/simple-concat/-/simple-concat-1.0.1.tgz",
|
|
7006
|
+
"integrity": "sha512-cSFtAPtRhljv69IK0hTVZQ+OfE9nePi/rtJmw5UjHeVyVroEqJXP1sFztKUy1qU+xvz3u/sfYJLa947b7nAN2Q=="
|
|
7007
|
+
},
|
|
6196
7008
|
"slice-ansi": {
|
|
6197
7009
|
"version": "2.1.0",
|
|
6198
7010
|
"resolved": "https://registry.npmjs.org/slice-ansi/-/slice-ansi-2.1.0.tgz",
|
|
@@ -6231,6 +7043,11 @@
|
|
|
6231
7043
|
"resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz",
|
|
6232
7044
|
"integrity": "sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w="
|
|
6233
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
|
+
},
|
|
6234
7051
|
"source-map-support": {
|
|
6235
7052
|
"version": "0.5.21",
|
|
6236
7053
|
"resolved": "https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.21.tgz",
|
|
@@ -6285,9 +7102,9 @@
|
|
|
6285
7102
|
"integrity": "sha1-BOaSb2YolTVPPdAVIDYzuFcpfiw="
|
|
6286
7103
|
},
|
|
6287
7104
|
"stat-mode": {
|
|
6288
|
-
"version": "0.
|
|
6289
|
-
"resolved": "https://registry.npmjs.org/stat-mode/-/stat-mode-0.
|
|
6290
|
-
"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=="
|
|
6291
7108
|
},
|
|
6292
7109
|
"static-eval": {
|
|
6293
7110
|
"version": "2.1.0",
|
|
@@ -6323,6 +7140,27 @@
|
|
|
6323
7140
|
"resolved": "https://registry.npmjs.org/statuses/-/statuses-1.5.0.tgz",
|
|
6324
7141
|
"integrity": "sha1-Fhx9rBd2Wf2YEfQ3cfqZOBR4Yow="
|
|
6325
7142
|
},
|
|
7143
|
+
"stream-browserify": {
|
|
7144
|
+
"version": "3.0.0",
|
|
7145
|
+
"resolved": "https://registry.npmjs.org/stream-browserify/-/stream-browserify-3.0.0.tgz",
|
|
7146
|
+
"integrity": "sha512-H73RAHsVBapbim0tU2JwwOiXUj+fikfiaoYAKHF3VJfA0pe2BCzkhAHBlLG6REzE+2WNZcxOXjK7lkso+9euLA==",
|
|
7147
|
+
"requires": {
|
|
7148
|
+
"inherits": "~2.0.4",
|
|
7149
|
+
"readable-stream": "^3.5.0"
|
|
7150
|
+
},
|
|
7151
|
+
"dependencies": {
|
|
7152
|
+
"readable-stream": {
|
|
7153
|
+
"version": "3.6.0",
|
|
7154
|
+
"resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.0.tgz",
|
|
7155
|
+
"integrity": "sha512-BViHy7LKeTz4oNnkcLJ+lVSL6vpiFeX6/d3oSH8zCW7UxP2onchk+vTGB143xuFjHS3deTgkKoXXymXqymiIdA==",
|
|
7156
|
+
"requires": {
|
|
7157
|
+
"inherits": "^2.0.3",
|
|
7158
|
+
"string_decoder": "^1.1.1",
|
|
7159
|
+
"util-deprecate": "^1.0.1"
|
|
7160
|
+
}
|
|
7161
|
+
}
|
|
7162
|
+
}
|
|
7163
|
+
},
|
|
6326
7164
|
"stream-combiner": {
|
|
6327
7165
|
"version": "0.0.4",
|
|
6328
7166
|
"resolved": "https://registry.npmjs.org/stream-combiner/-/stream-combiner-0.0.4.tgz",
|
|
@@ -6331,6 +7169,47 @@
|
|
|
6331
7169
|
"duplexer": "~0.1.1"
|
|
6332
7170
|
}
|
|
6333
7171
|
},
|
|
7172
|
+
"stream-combiner2": {
|
|
7173
|
+
"version": "1.1.1",
|
|
7174
|
+
"resolved": "https://registry.npmjs.org/stream-combiner2/-/stream-combiner2-1.1.1.tgz",
|
|
7175
|
+
"integrity": "sha1-+02KFCDqNidk4hrUeAOXvry0HL4=",
|
|
7176
|
+
"requires": {
|
|
7177
|
+
"duplexer2": "~0.1.0",
|
|
7178
|
+
"readable-stream": "^2.0.2"
|
|
7179
|
+
}
|
|
7180
|
+
},
|
|
7181
|
+
"stream-http": {
|
|
7182
|
+
"version": "3.2.0",
|
|
7183
|
+
"resolved": "https://registry.npmjs.org/stream-http/-/stream-http-3.2.0.tgz",
|
|
7184
|
+
"integrity": "sha512-Oq1bLqisTyK3TSCXpPbT4sdeYNdmyZJv1LxpEm2vu1ZhK89kSE5YXwZc3cWk0MagGaKriBh9mCFbVGtO+vY29A==",
|
|
7185
|
+
"requires": {
|
|
7186
|
+
"builtin-status-codes": "^3.0.0",
|
|
7187
|
+
"inherits": "^2.0.4",
|
|
7188
|
+
"readable-stream": "^3.6.0",
|
|
7189
|
+
"xtend": "^4.0.2"
|
|
7190
|
+
},
|
|
7191
|
+
"dependencies": {
|
|
7192
|
+
"readable-stream": {
|
|
7193
|
+
"version": "3.6.0",
|
|
7194
|
+
"resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.0.tgz",
|
|
7195
|
+
"integrity": "sha512-BViHy7LKeTz4oNnkcLJ+lVSL6vpiFeX6/d3oSH8zCW7UxP2onchk+vTGB143xuFjHS3deTgkKoXXymXqymiIdA==",
|
|
7196
|
+
"requires": {
|
|
7197
|
+
"inherits": "^2.0.3",
|
|
7198
|
+
"string_decoder": "^1.1.1",
|
|
7199
|
+
"util-deprecate": "^1.0.1"
|
|
7200
|
+
}
|
|
7201
|
+
}
|
|
7202
|
+
}
|
|
7203
|
+
},
|
|
7204
|
+
"stream-splicer": {
|
|
7205
|
+
"version": "2.0.1",
|
|
7206
|
+
"resolved": "https://registry.npmjs.org/stream-splicer/-/stream-splicer-2.0.1.tgz",
|
|
7207
|
+
"integrity": "sha512-Xizh4/NPuYSyAXyT7g8IvdJ9HJpxIGL9PjyhtywCZvvP0OPIdqyrr4dMikeuvY8xahpdKEBlBTySe583totajg==",
|
|
7208
|
+
"requires": {
|
|
7209
|
+
"inherits": "^2.0.1",
|
|
7210
|
+
"readable-stream": "^2.0.2"
|
|
7211
|
+
}
|
|
7212
|
+
},
|
|
6334
7213
|
"string-width": {
|
|
6335
7214
|
"version": "4.2.3",
|
|
6336
7215
|
"resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz",
|
|
@@ -6366,7 +7245,6 @@
|
|
|
6366
7245
|
"version": "1.0.4",
|
|
6367
7246
|
"resolved": "https://registry.npmjs.org/string.prototype.trimend/-/string.prototype.trimend-1.0.4.tgz",
|
|
6368
7247
|
"integrity": "sha512-y9xCjw1P23Awk8EvTpcyL2NIr1j7wJ39f+k6lvRnSMz+mz9CGz9NYPelDk42kOz6+ql8xjfK8oYzy3jAP5QU5A==",
|
|
6369
|
-
"dev": true,
|
|
6370
7248
|
"requires": {
|
|
6371
7249
|
"call-bind": "^1.0.2",
|
|
6372
7250
|
"define-properties": "^1.1.3"
|
|
@@ -6376,7 +7254,6 @@
|
|
|
6376
7254
|
"version": "1.0.4",
|
|
6377
7255
|
"resolved": "https://registry.npmjs.org/string.prototype.trimstart/-/string.prototype.trimstart-1.0.4.tgz",
|
|
6378
7256
|
"integrity": "sha512-jh6e984OBfvxS50tdY2nRZnoC5/mLFKOREQfw8t5yytkoUsJRNxvI/E39qu1sD0OtWI3OC0XgKSmcWwziwYuZw==",
|
|
6379
|
-
"dev": true,
|
|
6380
7257
|
"requires": {
|
|
6381
7258
|
"call-bind": "^1.0.2",
|
|
6382
7259
|
"define-properties": "^1.1.3"
|
|
@@ -6399,12 +7276,17 @@
|
|
|
6399
7276
|
},
|
|
6400
7277
|
"dependencies": {
|
|
6401
7278
|
"ansi-regex": {
|
|
6402
|
-
"version": "4.1.
|
|
6403
|
-
"resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-4.1.
|
|
6404
|
-
"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=="
|
|
6405
7282
|
}
|
|
6406
7283
|
}
|
|
6407
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
|
+
},
|
|
6408
7290
|
"strip-dirs": {
|
|
6409
7291
|
"version": "2.1.0",
|
|
6410
7292
|
"resolved": "https://registry.npmjs.org/strip-dirs/-/strip-dirs-2.1.0.tgz",
|
|
@@ -6426,6 +7308,14 @@
|
|
|
6426
7308
|
"escape-string-regexp": "^1.0.2"
|
|
6427
7309
|
}
|
|
6428
7310
|
},
|
|
7311
|
+
"subarg": {
|
|
7312
|
+
"version": "1.0.0",
|
|
7313
|
+
"resolved": "https://registry.npmjs.org/subarg/-/subarg-1.0.0.tgz",
|
|
7314
|
+
"integrity": "sha1-9izxdYHplrSPyWVpn1TAauJouNI=",
|
|
7315
|
+
"requires": {
|
|
7316
|
+
"minimist": "^1.1.0"
|
|
7317
|
+
}
|
|
7318
|
+
},
|
|
6429
7319
|
"supports-color": {
|
|
6430
7320
|
"version": "5.5.0",
|
|
6431
7321
|
"resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz",
|
|
@@ -6434,6 +7324,14 @@
|
|
|
6434
7324
|
"has-flag": "^3.0.0"
|
|
6435
7325
|
}
|
|
6436
7326
|
},
|
|
7327
|
+
"syntax-error": {
|
|
7328
|
+
"version": "1.4.0",
|
|
7329
|
+
"resolved": "https://registry.npmjs.org/syntax-error/-/syntax-error-1.4.0.tgz",
|
|
7330
|
+
"integrity": "sha512-YPPlu67mdnHGTup2A8ff7BC2Pjq0e0Yp/IyTFN03zWO0RcK07uLcbi7C2KpGR2FvWbaB0+bfE27a+sBKebSo7w==",
|
|
7331
|
+
"requires": {
|
|
7332
|
+
"acorn-node": "^1.2.0"
|
|
7333
|
+
}
|
|
7334
|
+
},
|
|
6437
7335
|
"table": {
|
|
6438
7336
|
"version": "5.4.6",
|
|
6439
7337
|
"resolved": "https://registry.npmjs.org/table/-/table-5.4.6.tgz",
|
|
@@ -6639,20 +7537,14 @@
|
|
|
6639
7537
|
"integrity": "sha512-wK0Ri4fOGjv/XPy8SBHZChl8CM7uMc5VML7SqiQ0zG7+J5Vr+RMQDoHa2CNT6KHUnTGIXH34UDMkPzAUyapBZg=="
|
|
6640
7538
|
},
|
|
6641
7539
|
"terser": {
|
|
6642
|
-
"version": "5.
|
|
6643
|
-
"resolved": "https://registry.npmjs.org/terser/-/terser-5.
|
|
6644
|
-
"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==",
|
|
6645
7543
|
"requires": {
|
|
7544
|
+
"@jridgewell/source-map": "^0.3.2",
|
|
7545
|
+
"acorn": "^8.5.0",
|
|
6646
7546
|
"commander": "^2.20.0",
|
|
6647
|
-
"source-map": "~0.7.2",
|
|
6648
7547
|
"source-map-support": "~0.5.20"
|
|
6649
|
-
},
|
|
6650
|
-
"dependencies": {
|
|
6651
|
-
"source-map": {
|
|
6652
|
-
"version": "0.7.3",
|
|
6653
|
-
"resolved": "https://registry.npmjs.org/source-map/-/source-map-0.7.3.tgz",
|
|
6654
|
-
"integrity": "sha512-CkCj6giN3S+n9qrYiBTX5gystlENnRW5jZeNLHpe6aue+SrHcG5VYwujhW9s4dY31mEGsxBDrHR6oI69fTXsaQ=="
|
|
6655
|
-
}
|
|
6656
7548
|
}
|
|
6657
7549
|
},
|
|
6658
7550
|
"text-table": {
|
|
@@ -6692,6 +7584,14 @@
|
|
|
6692
7584
|
"resolved": "https://registry.npmjs.org/timed-out/-/timed-out-4.0.1.tgz",
|
|
6693
7585
|
"integrity": "sha1-8y6srFoXW+ol1/q1Zas+2HQe9W8="
|
|
6694
7586
|
},
|
|
7587
|
+
"timers-browserify": {
|
|
7588
|
+
"version": "1.4.2",
|
|
7589
|
+
"resolved": "https://registry.npmjs.org/timers-browserify/-/timers-browserify-1.4.2.tgz",
|
|
7590
|
+
"integrity": "sha1-ycWLV1voQHN1y14kYtrO50NZ9B0=",
|
|
7591
|
+
"requires": {
|
|
7592
|
+
"process": "~0.11.0"
|
|
7593
|
+
}
|
|
7594
|
+
},
|
|
6695
7595
|
"tiny-inflate": {
|
|
6696
7596
|
"version": "1.0.3",
|
|
6697
7597
|
"resolved": "https://registry.npmjs.org/tiny-inflate/-/tiny-inflate-1.0.3.tgz",
|
|
@@ -6733,11 +7633,6 @@
|
|
|
6733
7633
|
"resolved": "https://registry.npmjs.org/toidentifier/-/toidentifier-1.0.0.tgz",
|
|
6734
7634
|
"integrity": "sha512-yaOH/Pk/VEhBWWTlhI+qXxDFXlejDGcQipMlyxda9nthulaxLZUNcUqFxokp0vcYnvteJln5FNQDRrxj3YcbVw=="
|
|
6735
7635
|
},
|
|
6736
|
-
"toml": {
|
|
6737
|
-
"version": "2.3.6",
|
|
6738
|
-
"resolved": "https://registry.npmjs.org/toml/-/toml-2.3.6.tgz",
|
|
6739
|
-
"integrity": "sha512-gVweAectJU3ebq//Ferr2JUY4WKSDe5N+z0FvjDncLGyHmIDoxgY/2Ie4qfEIDm4IS7OA6Rmdm7pdEEdMcV/xQ=="
|
|
6740
|
-
},
|
|
6741
7636
|
"tr46": {
|
|
6742
7637
|
"version": "0.0.3",
|
|
6743
7638
|
"resolved": "https://registry.npmjs.org/tr46/-/tr46-0.0.3.tgz",
|
|
@@ -6761,6 +7656,11 @@
|
|
|
6761
7656
|
"resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz",
|
|
6762
7657
|
"integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg=="
|
|
6763
7658
|
},
|
|
7659
|
+
"tty-browserify": {
|
|
7660
|
+
"version": "0.0.1",
|
|
7661
|
+
"resolved": "https://registry.npmjs.org/tty-browserify/-/tty-browserify-0.0.1.tgz",
|
|
7662
|
+
"integrity": "sha512-C3TaO7K81YvjCgQH9Q1S3R3P3BtN3RIM8n+OvX4il1K1zgE8ZhI0op7kClgkxtutIE8hQrcrHBXvIheqKUUCxw=="
|
|
7663
|
+
},
|
|
6764
7664
|
"tunnel-agent": {
|
|
6765
7665
|
"version": "0.6.0",
|
|
6766
7666
|
"resolved": "https://registry.npmjs.org/tunnel-agent/-/tunnel-agent-0.6.0.tgz",
|
|
@@ -6809,11 +7709,15 @@
|
|
|
6809
7709
|
"is-typedarray": "^1.0.0"
|
|
6810
7710
|
}
|
|
6811
7711
|
},
|
|
7712
|
+
"umd": {
|
|
7713
|
+
"version": "3.0.3",
|
|
7714
|
+
"resolved": "https://registry.npmjs.org/umd/-/umd-3.0.3.tgz",
|
|
7715
|
+
"integrity": "sha512-4IcGSufhFshvLNcMCV80UnQVlZ5pMOC8mvNPForqwA4+lzYQuetTESLDQkeLmihq8bRcnpbQa48Wb8Lh16/xow=="
|
|
7716
|
+
},
|
|
6812
7717
|
"unbox-primitive": {
|
|
6813
7718
|
"version": "1.0.1",
|
|
6814
7719
|
"resolved": "https://registry.npmjs.org/unbox-primitive/-/unbox-primitive-1.0.1.tgz",
|
|
6815
7720
|
"integrity": "sha512-tZU/3NqK3dA5gpE1KtyiJUrEB0lxnGkMFHptJ7q6ewdZ8s12QrODwNbhIJStmJkd1QDXa1NRA8aF2A1zk/Ypyw==",
|
|
6816
|
-
"dev": true,
|
|
6817
7721
|
"requires": {
|
|
6818
7722
|
"function-bind": "^1.1.1",
|
|
6819
7723
|
"has-bigints": "^1.0.1",
|
|
@@ -6830,6 +7734,25 @@
|
|
|
6830
7734
|
"through": "^2.3.8"
|
|
6831
7735
|
}
|
|
6832
7736
|
},
|
|
7737
|
+
"undeclared-identifiers": {
|
|
7738
|
+
"version": "1.1.3",
|
|
7739
|
+
"resolved": "https://registry.npmjs.org/undeclared-identifiers/-/undeclared-identifiers-1.1.3.tgz",
|
|
7740
|
+
"integrity": "sha512-pJOW4nxjlmfwKApE4zvxLScM/njmwj/DiUBv7EabwE4O8kRUy+HIwxQtZLBPll/jx1LJyBcqNfB3/cpv9EZwOw==",
|
|
7741
|
+
"requires": {
|
|
7742
|
+
"acorn-node": "^1.3.0",
|
|
7743
|
+
"dash-ast": "^1.0.0",
|
|
7744
|
+
"get-assigned-identifiers": "^1.2.0",
|
|
7745
|
+
"simple-concat": "^1.0.0",
|
|
7746
|
+
"xtend": "^4.0.1"
|
|
7747
|
+
},
|
|
7748
|
+
"dependencies": {
|
|
7749
|
+
"dash-ast": {
|
|
7750
|
+
"version": "1.0.0",
|
|
7751
|
+
"resolved": "https://registry.npmjs.org/dash-ast/-/dash-ast-1.0.0.tgz",
|
|
7752
|
+
"integrity": "sha512-Vy4dx7gquTeMcQR/hDkYLGUnwVil6vk4FOOct+djUnHOUWt+zJPJAaRIXaAFkPXtJjvlY7o3rfRu0/3hpnwoUA=="
|
|
7753
|
+
}
|
|
7754
|
+
}
|
|
7755
|
+
},
|
|
6833
7756
|
"unicode-canonical-property-names-ecmascript": {
|
|
6834
7757
|
"version": "2.0.0",
|
|
6835
7758
|
"resolved": "https://registry.npmjs.org/unicode-canonical-property-names-ecmascript/-/unicode-canonical-property-names-ecmascript-2.0.0.tgz",
|
|
@@ -6990,6 +7913,22 @@
|
|
|
6990
7913
|
"punycode": "^2.1.0"
|
|
6991
7914
|
}
|
|
6992
7915
|
},
|
|
7916
|
+
"url": {
|
|
7917
|
+
"version": "0.11.0",
|
|
7918
|
+
"resolved": "https://registry.npmjs.org/url/-/url-0.11.0.tgz",
|
|
7919
|
+
"integrity": "sha1-ODjpfPxgUh63PFJajlW/3Z4uKPE=",
|
|
7920
|
+
"requires": {
|
|
7921
|
+
"punycode": "1.3.2",
|
|
7922
|
+
"querystring": "0.2.0"
|
|
7923
|
+
},
|
|
7924
|
+
"dependencies": {
|
|
7925
|
+
"punycode": {
|
|
7926
|
+
"version": "1.3.2",
|
|
7927
|
+
"resolved": "https://registry.npmjs.org/punycode/-/punycode-1.3.2.tgz",
|
|
7928
|
+
"integrity": "sha1-llOgNvt8HuQjQvIyXM7v6jkmxI0="
|
|
7929
|
+
}
|
|
7930
|
+
}
|
|
7931
|
+
},
|
|
6993
7932
|
"url-parse-lax": {
|
|
6994
7933
|
"version": "1.0.0",
|
|
6995
7934
|
"resolved": "https://registry.npmjs.org/url-parse-lax/-/url-parse-lax-1.0.0.tgz",
|
|
@@ -7008,6 +7947,19 @@
|
|
|
7008
7947
|
"resolved": "https://registry.npmjs.org/utf8/-/utf8-2.1.2.tgz",
|
|
7009
7948
|
"integrity": "sha1-H6DZJw6b6FDZsFAn9jUZv0ZFfZY="
|
|
7010
7949
|
},
|
|
7950
|
+
"util": {
|
|
7951
|
+
"version": "0.12.4",
|
|
7952
|
+
"resolved": "https://registry.npmjs.org/util/-/util-0.12.4.tgz",
|
|
7953
|
+
"integrity": "sha512-bxZ9qtSlGUWSOy9Qa9Xgk11kSslpuZwaxCg4sNIDj6FLucDab2JxnHwyNTCpHMtK1MjoQiWQ6DiUMZYbSrO+Sw==",
|
|
7954
|
+
"requires": {
|
|
7955
|
+
"inherits": "^2.0.3",
|
|
7956
|
+
"is-arguments": "^1.0.4",
|
|
7957
|
+
"is-generator-function": "^1.0.7",
|
|
7958
|
+
"is-typed-array": "^1.1.3",
|
|
7959
|
+
"safe-buffer": "^5.1.2",
|
|
7960
|
+
"which-typed-array": "^1.1.2"
|
|
7961
|
+
}
|
|
7962
|
+
},
|
|
7011
7963
|
"util-deprecate": {
|
|
7012
7964
|
"version": "1.0.2",
|
|
7013
7965
|
"resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz",
|
|
@@ -7028,6 +7980,11 @@
|
|
|
7028
7980
|
"resolved": "https://registry.npmjs.org/vary/-/vary-1.1.2.tgz",
|
|
7029
7981
|
"integrity": "sha1-IpnwLG3tMNSllhsLn3RSShj2NPw="
|
|
7030
7982
|
},
|
|
7983
|
+
"vm-browserify": {
|
|
7984
|
+
"version": "1.1.2",
|
|
7985
|
+
"resolved": "https://registry.npmjs.org/vm-browserify/-/vm-browserify-1.1.2.tgz",
|
|
7986
|
+
"integrity": "sha512-2ham8XPWTONajOR0ohOKOHXkm3+gaBmGut3SRuu75xLd/RRaY6vqgh8NBYYk7+RW3u5AtzPQZG8F10LHkl0lAQ=="
|
|
7987
|
+
},
|
|
7031
7988
|
"ware": {
|
|
7032
7989
|
"version": "1.3.0",
|
|
7033
7990
|
"resolved": "https://registry.npmjs.org/ware/-/ware-1.3.0.tgz",
|
|
@@ -7070,7 +8027,6 @@
|
|
|
7070
8027
|
"version": "1.0.2",
|
|
7071
8028
|
"resolved": "https://registry.npmjs.org/which-boxed-primitive/-/which-boxed-primitive-1.0.2.tgz",
|
|
7072
8029
|
"integrity": "sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg==",
|
|
7073
|
-
"dev": true,
|
|
7074
8030
|
"requires": {
|
|
7075
8031
|
"is-bigint": "^1.0.1",
|
|
7076
8032
|
"is-boolean-object": "^1.1.0",
|
|
@@ -7100,7 +8056,6 @@
|
|
|
7100
8056
|
"version": "1.1.7",
|
|
7101
8057
|
"resolved": "https://registry.npmjs.org/which-typed-array/-/which-typed-array-1.1.7.tgz",
|
|
7102
8058
|
"integrity": "sha512-vjxaB4nfDqwKI0ws7wZpxIlde1XrLX5uB0ZjpfshgmapJMD7jJWhZI+yToJTqaFByF0eNBcYxbjmCzoRP7CfEw==",
|
|
7103
|
-
"dev": true,
|
|
7104
8059
|
"requires": {
|
|
7105
8060
|
"available-typed-arrays": "^1.0.5",
|
|
7106
8061
|
"call-bind": "^1.0.2",
|
|
@@ -7126,11 +8081,6 @@
|
|
|
7126
8081
|
"string-width": "^4.0.0"
|
|
7127
8082
|
}
|
|
7128
8083
|
},
|
|
7129
|
-
"win-fork": {
|
|
7130
|
-
"version": "1.1.1",
|
|
7131
|
-
"resolved": "https://registry.npmjs.org/win-fork/-/win-fork-1.1.1.tgz",
|
|
7132
|
-
"integrity": "sha1-j1jgZW/KAK3IyGoriePNLWotXl4="
|
|
7133
|
-
},
|
|
7134
8084
|
"word-wrap": {
|
|
7135
8085
|
"version": "1.2.3",
|
|
7136
8086
|
"resolved": "https://registry.npmjs.org/word-wrap/-/word-wrap-1.2.3.tgz",
|