@saltcorn/cli 0.6.0 → 0.6.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +35 -30
- package/npm-shrinkwrap.json +324 -496
- package/oclif.manifest.json +1 -1
- package/package.json +7 -7
- package/src/commands/add-schema.js +15 -0
- package/src/commands/backup.js +18 -0
- package/src/commands/create-tenant.js +21 -0
- package/src/commands/create-user.js +18 -0
- package/src/commands/fixtures.js +18 -0
- package/src/commands/info.js +37 -2
- package/src/commands/install-pack.js +18 -0
- package/src/commands/install-plugin.js +18 -0
- package/src/commands/list-tenants.js +19 -0
- package/src/commands/localize-plugin.js +38 -12
- package/src/commands/make-migration.js +21 -0
- package/src/commands/migrate.js +22 -1
- package/src/commands/plugins.js +22 -0
- package/src/commands/release.js +24 -1
- package/src/commands/reset-schema.js +18 -0
- package/src/commands/restore.js +34 -0
- package/src/commands/rm-tenant.js +21 -0
- package/src/commands/run-benchmark.js +36 -0
- package/src/commands/run-tests.js +88 -16
- package/src/commands/scheduler.js +19 -0
- package/src/commands/serve.js +18 -0
- package/src/commands/set-cfg.js +23 -0
- package/src/commands/setup-benchmark.js +23 -0
- package/src/commands/setup.js +82 -0
- package/src/commands/test-plugin.js +23 -0
- package/src/commands/transform-field.js +21 -0
- package/src/common.js +18 -0
- package/src/index.js +5 -0
package/npm-shrinkwrap.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@saltcorn/cli",
|
|
3
|
-
"version": "0.6.
|
|
3
|
+
"version": "0.6.1",
|
|
4
4
|
"lockfileVersion": 1,
|
|
5
5
|
"requires": true,
|
|
6
6
|
"dependencies": {
|
|
@@ -14,11 +14,11 @@
|
|
|
14
14
|
}
|
|
15
15
|
},
|
|
16
16
|
"@babel/generator": {
|
|
17
|
-
"version": "7.
|
|
18
|
-
"resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.
|
|
19
|
-
"integrity": "sha512-
|
|
17
|
+
"version": "7.16.0",
|
|
18
|
+
"resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.16.0.tgz",
|
|
19
|
+
"integrity": "sha512-RR8hUCfRQn9j9RPKEVXo9LiwoxLPYn6hNZlvUOR8tSnaxlD0p0+la00ZP9/SnRt6HchKr+X0fO2r8vrETiJGew==",
|
|
20
20
|
"requires": {
|
|
21
|
-
"@babel/types": "^7.
|
|
21
|
+
"@babel/types": "^7.16.0",
|
|
22
22
|
"jsesc": "^2.5.1",
|
|
23
23
|
"source-map": "^0.5.0"
|
|
24
24
|
},
|
|
@@ -31,53 +31,53 @@
|
|
|
31
31
|
}
|
|
32
32
|
},
|
|
33
33
|
"@babel/helper-annotate-as-pure": {
|
|
34
|
-
"version": "7.
|
|
35
|
-
"resolved": "https://registry.npmjs.org/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.
|
|
36
|
-
"integrity": "sha512-
|
|
34
|
+
"version": "7.16.0",
|
|
35
|
+
"resolved": "https://registry.npmjs.org/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.16.0.tgz",
|
|
36
|
+
"integrity": "sha512-ItmYF9vR4zA8cByDocY05o0LGUkp1zhbTQOH1NFyl5xXEqlTJQCEJjieriw+aFpxo16swMxUnUiKS7a/r4vtHg==",
|
|
37
37
|
"requires": {
|
|
38
|
-
"@babel/types": "^7.
|
|
38
|
+
"@babel/types": "^7.16.0"
|
|
39
39
|
}
|
|
40
40
|
},
|
|
41
41
|
"@babel/helper-function-name": {
|
|
42
|
-
"version": "7.
|
|
43
|
-
"resolved": "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.
|
|
44
|
-
"integrity": "sha512-
|
|
42
|
+
"version": "7.16.0",
|
|
43
|
+
"resolved": "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.16.0.tgz",
|
|
44
|
+
"integrity": "sha512-BZh4mEk1xi2h4HFjWUXRQX5AEx4rvaZxHgax9gcjdLWdkjsY7MKt5p0otjsg5noXw+pB+clMCjw+aEVYADMjog==",
|
|
45
45
|
"requires": {
|
|
46
|
-
"@babel/helper-get-function-arity": "^7.
|
|
47
|
-
"@babel/template": "^7.
|
|
48
|
-
"@babel/types": "^7.
|
|
46
|
+
"@babel/helper-get-function-arity": "^7.16.0",
|
|
47
|
+
"@babel/template": "^7.16.0",
|
|
48
|
+
"@babel/types": "^7.16.0"
|
|
49
49
|
}
|
|
50
50
|
},
|
|
51
51
|
"@babel/helper-get-function-arity": {
|
|
52
|
-
"version": "7.
|
|
53
|
-
"resolved": "https://registry.npmjs.org/@babel/helper-get-function-arity/-/helper-get-function-arity-7.
|
|
54
|
-
"integrity": "sha512-
|
|
52
|
+
"version": "7.16.0",
|
|
53
|
+
"resolved": "https://registry.npmjs.org/@babel/helper-get-function-arity/-/helper-get-function-arity-7.16.0.tgz",
|
|
54
|
+
"integrity": "sha512-ASCquNcywC1NkYh/z7Cgp3w31YW8aojjYIlNg4VeJiHkqyP4AzIvr4qx7pYDb4/s8YcsZWqqOSxgkvjUz1kpDQ==",
|
|
55
55
|
"requires": {
|
|
56
|
-
"@babel/types": "^7.
|
|
56
|
+
"@babel/types": "^7.16.0"
|
|
57
57
|
}
|
|
58
58
|
},
|
|
59
59
|
"@babel/helper-hoist-variables": {
|
|
60
|
-
"version": "7.
|
|
61
|
-
"resolved": "https://registry.npmjs.org/@babel/helper-hoist-variables/-/helper-hoist-variables-7.
|
|
62
|
-
"integrity": "sha512-
|
|
60
|
+
"version": "7.16.0",
|
|
61
|
+
"resolved": "https://registry.npmjs.org/@babel/helper-hoist-variables/-/helper-hoist-variables-7.16.0.tgz",
|
|
62
|
+
"integrity": "sha512-1AZlpazjUR0EQZQv3sgRNfM9mEVWPK3M6vlalczA+EECcPz3XPh6VplbErL5UoMpChhSck5wAJHthlj1bYpcmg==",
|
|
63
63
|
"requires": {
|
|
64
|
-
"@babel/types": "^7.
|
|
64
|
+
"@babel/types": "^7.16.0"
|
|
65
65
|
}
|
|
66
66
|
},
|
|
67
67
|
"@babel/helper-module-imports": {
|
|
68
|
-
"version": "7.
|
|
69
|
-
"resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.
|
|
70
|
-
"integrity": "sha512-
|
|
68
|
+
"version": "7.16.0",
|
|
69
|
+
"resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.16.0.tgz",
|
|
70
|
+
"integrity": "sha512-kkH7sWzKPq0xt3H1n+ghb4xEMP8k0U7XV3kkB+ZGy69kDk2ySFW1qPi06sjKzFY3t1j6XbJSqr4mF9L7CYVyhg==",
|
|
71
71
|
"requires": {
|
|
72
|
-
"@babel/types": "^7.
|
|
72
|
+
"@babel/types": "^7.16.0"
|
|
73
73
|
}
|
|
74
74
|
},
|
|
75
75
|
"@babel/helper-split-export-declaration": {
|
|
76
|
-
"version": "7.
|
|
77
|
-
"resolved": "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.
|
|
78
|
-
"integrity": "sha512-
|
|
76
|
+
"version": "7.16.0",
|
|
77
|
+
"resolved": "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.16.0.tgz",
|
|
78
|
+
"integrity": "sha512-0YMMRpuDFNGTHNRiiqJX19GjNXA4H0E8jZ2ibccfSxaCogbm3am5WN/2nQNj0YnQwGWM1J06GOcQ2qnh3+0paw==",
|
|
79
79
|
"requires": {
|
|
80
|
-
"@babel/types": "^7.
|
|
80
|
+
"@babel/types": "^7.16.0"
|
|
81
81
|
}
|
|
82
82
|
},
|
|
83
83
|
"@babel/helper-validator-identifier": {
|
|
@@ -98,26 +98,26 @@
|
|
|
98
98
|
}
|
|
99
99
|
},
|
|
100
100
|
"@babel/parser": {
|
|
101
|
-
"version": "7.
|
|
102
|
-
"resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.
|
|
103
|
-
"integrity": "sha512-
|
|
101
|
+
"version": "7.16.4",
|
|
102
|
+
"resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.16.4.tgz",
|
|
103
|
+
"integrity": "sha512-6V0qdPUaiVHH3RtZeLIsc+6pDhbYzHR8ogA8w+f+Wc77DuXto19g2QUwveINoS34Uw+W8/hQDGJCx+i4n7xcng=="
|
|
104
104
|
},
|
|
105
105
|
"@babel/template": {
|
|
106
|
-
"version": "7.
|
|
107
|
-
"resolved": "https://registry.npmjs.org/@babel/template/-/template-7.
|
|
108
|
-
"integrity": "sha512-
|
|
106
|
+
"version": "7.16.0",
|
|
107
|
+
"resolved": "https://registry.npmjs.org/@babel/template/-/template-7.16.0.tgz",
|
|
108
|
+
"integrity": "sha512-MnZdpFD/ZdYhXwiunMqqgyZyucaYsbL0IrjoGjaVhGilz+x8YB++kRfygSOIj1yOtWKPlx7NBp+9I1RQSgsd5A==",
|
|
109
109
|
"requires": {
|
|
110
|
-
"@babel/code-frame": "^7.
|
|
111
|
-
"@babel/parser": "^7.
|
|
112
|
-
"@babel/types": "^7.
|
|
110
|
+
"@babel/code-frame": "^7.16.0",
|
|
111
|
+
"@babel/parser": "^7.16.0",
|
|
112
|
+
"@babel/types": "^7.16.0"
|
|
113
113
|
},
|
|
114
114
|
"dependencies": {
|
|
115
115
|
"@babel/code-frame": {
|
|
116
|
-
"version": "7.
|
|
117
|
-
"resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.
|
|
118
|
-
"integrity": "sha512-
|
|
116
|
+
"version": "7.16.0",
|
|
117
|
+
"resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.16.0.tgz",
|
|
118
|
+
"integrity": "sha512-IF4EOMEV+bfYwOmNxGzSnjR2EmQod7f1UXOpZM3l4i4o4QNwzjtJAu/HxdjHq0aYBvdqMuQEY1eg0nqW9ZPORA==",
|
|
119
119
|
"requires": {
|
|
120
|
-
"@babel/highlight": "^7.
|
|
120
|
+
"@babel/highlight": "^7.16.0"
|
|
121
121
|
}
|
|
122
122
|
},
|
|
123
123
|
"@babel/helper-validator-identifier": {
|
|
@@ -126,11 +126,11 @@
|
|
|
126
126
|
"integrity": "sha512-K4JvCtQqad9OY2+yTU8w+E82ywk/fe+ELNlt1G8z3bVGlZfn/hOcQQsUhGhW/N+tb3fxK800wLtKOE/aM0m72w=="
|
|
127
127
|
},
|
|
128
128
|
"@babel/highlight": {
|
|
129
|
-
"version": "7.
|
|
130
|
-
"resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.
|
|
131
|
-
"integrity": "sha512-
|
|
129
|
+
"version": "7.16.0",
|
|
130
|
+
"resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.16.0.tgz",
|
|
131
|
+
"integrity": "sha512-t8MH41kUQylBtu2+4IQA3atqevA2lRgqA2wyVB/YiWmsDSuylZZuXOUy9ric30hfzauEFfdsuk/eXTRrGrfd0g==",
|
|
132
132
|
"requires": {
|
|
133
|
-
"@babel/helper-validator-identifier": "^7.
|
|
133
|
+
"@babel/helper-validator-identifier": "^7.15.7",
|
|
134
134
|
"chalk": "^2.0.0",
|
|
135
135
|
"js-tokens": "^4.0.0"
|
|
136
136
|
}
|
|
@@ -138,27 +138,27 @@
|
|
|
138
138
|
}
|
|
139
139
|
},
|
|
140
140
|
"@babel/traverse": {
|
|
141
|
-
"version": "7.
|
|
142
|
-
"resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.
|
|
143
|
-
"integrity": "sha512-
|
|
144
|
-
"requires": {
|
|
145
|
-
"@babel/code-frame": "^7.
|
|
146
|
-
"@babel/generator": "^7.
|
|
147
|
-
"@babel/helper-function-name": "^7.
|
|
148
|
-
"@babel/helper-hoist-variables": "^7.
|
|
149
|
-
"@babel/helper-split-export-declaration": "^7.
|
|
150
|
-
"@babel/parser": "^7.
|
|
151
|
-
"@babel/types": "^7.
|
|
141
|
+
"version": "7.16.3",
|
|
142
|
+
"resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.16.3.tgz",
|
|
143
|
+
"integrity": "sha512-eolumr1vVMjqevCpwVO99yN/LoGL0EyHiLO5I043aYQvwOJ9eR5UsZSClHVCzfhBduMAsSzgA/6AyqPjNayJag==",
|
|
144
|
+
"requires": {
|
|
145
|
+
"@babel/code-frame": "^7.16.0",
|
|
146
|
+
"@babel/generator": "^7.16.0",
|
|
147
|
+
"@babel/helper-function-name": "^7.16.0",
|
|
148
|
+
"@babel/helper-hoist-variables": "^7.16.0",
|
|
149
|
+
"@babel/helper-split-export-declaration": "^7.16.0",
|
|
150
|
+
"@babel/parser": "^7.16.3",
|
|
151
|
+
"@babel/types": "^7.16.0",
|
|
152
152
|
"debug": "^4.1.0",
|
|
153
153
|
"globals": "^11.1.0"
|
|
154
154
|
},
|
|
155
155
|
"dependencies": {
|
|
156
156
|
"@babel/code-frame": {
|
|
157
|
-
"version": "7.
|
|
158
|
-
"resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.
|
|
159
|
-
"integrity": "sha512-
|
|
157
|
+
"version": "7.16.0",
|
|
158
|
+
"resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.16.0.tgz",
|
|
159
|
+
"integrity": "sha512-IF4EOMEV+bfYwOmNxGzSnjR2EmQod7f1UXOpZM3l4i4o4QNwzjtJAu/HxdjHq0aYBvdqMuQEY1eg0nqW9ZPORA==",
|
|
160
160
|
"requires": {
|
|
161
|
-
"@babel/highlight": "^7.
|
|
161
|
+
"@babel/highlight": "^7.16.0"
|
|
162
162
|
}
|
|
163
163
|
},
|
|
164
164
|
"@babel/helper-validator-identifier": {
|
|
@@ -167,11 +167,11 @@
|
|
|
167
167
|
"integrity": "sha512-K4JvCtQqad9OY2+yTU8w+E82ywk/fe+ELNlt1G8z3bVGlZfn/hOcQQsUhGhW/N+tb3fxK800wLtKOE/aM0m72w=="
|
|
168
168
|
},
|
|
169
169
|
"@babel/highlight": {
|
|
170
|
-
"version": "7.
|
|
171
|
-
"resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.
|
|
172
|
-
"integrity": "sha512-
|
|
170
|
+
"version": "7.16.0",
|
|
171
|
+
"resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.16.0.tgz",
|
|
172
|
+
"integrity": "sha512-t8MH41kUQylBtu2+4IQA3atqevA2lRgqA2wyVB/YiWmsDSuylZZuXOUy9ric30hfzauEFfdsuk/eXTRrGrfd0g==",
|
|
173
173
|
"requires": {
|
|
174
|
-
"@babel/helper-validator-identifier": "^7.
|
|
174
|
+
"@babel/helper-validator-identifier": "^7.15.7",
|
|
175
175
|
"chalk": "^2.0.0",
|
|
176
176
|
"js-tokens": "^4.0.0"
|
|
177
177
|
}
|
|
@@ -179,11 +179,11 @@
|
|
|
179
179
|
}
|
|
180
180
|
},
|
|
181
181
|
"@babel/types": {
|
|
182
|
-
"version": "7.
|
|
183
|
-
"resolved": "https://registry.npmjs.org/@babel/types/-/types-7.
|
|
184
|
-
"integrity": "sha512-
|
|
182
|
+
"version": "7.16.0",
|
|
183
|
+
"resolved": "https://registry.npmjs.org/@babel/types/-/types-7.16.0.tgz",
|
|
184
|
+
"integrity": "sha512-PJgg/k3SdLsGb3hhisFvtLOw5ts113klrpLuIPtCJIU+BB24fqq6lf8RWqKJEjzqXR9AEH1rIb5XTqwBHB+kQg==",
|
|
185
185
|
"requires": {
|
|
186
|
-
"@babel/helper-validator-identifier": "^7.
|
|
186
|
+
"@babel/helper-validator-identifier": "^7.15.7",
|
|
187
187
|
"to-fast-properties": "^2.0.0"
|
|
188
188
|
},
|
|
189
189
|
"dependencies": {
|
|
@@ -249,213 +249,35 @@
|
|
|
249
249
|
}
|
|
250
250
|
},
|
|
251
251
|
"@oclif/command": {
|
|
252
|
-
"version": "1.8.
|
|
253
|
-
"resolved": "https://registry.npmjs.org/@oclif/command/-/command-1.8.
|
|
254
|
-
"integrity": "sha512-
|
|
252
|
+
"version": "1.8.3",
|
|
253
|
+
"resolved": "https://registry.npmjs.org/@oclif/command/-/command-1.8.3.tgz",
|
|
254
|
+
"integrity": "sha512-OGjrhdVgTT2TAAj/2RrdXjwxaDoTm16c2LfAzrta1xIFe6/XhgQIYDmeRN/RptQoZQBX8e9Vv2JoQq+TbghJmw==",
|
|
255
255
|
"requires": {
|
|
256
256
|
"@oclif/config": "^1.15.1",
|
|
257
|
-
"@oclif/errors": "^1.3.
|
|
258
|
-
"@oclif/parser": "^3.8.
|
|
259
|
-
"@oclif/plugin-help": "^3",
|
|
257
|
+
"@oclif/errors": "^1.3.5",
|
|
258
|
+
"@oclif/parser": "^3.8.5",
|
|
259
|
+
"@oclif/plugin-help": "^3.2.4",
|
|
260
260
|
"debug": "^4.1.1",
|
|
261
261
|
"semver": "^7.3.2"
|
|
262
|
-
},
|
|
263
|
-
"dependencies": {
|
|
264
|
-
"@oclif/errors": {
|
|
265
|
-
"version": "1.3.4",
|
|
266
|
-
"resolved": "https://registry.npmjs.org/@oclif/errors/-/errors-1.3.4.tgz",
|
|
267
|
-
"integrity": "sha512-pJKXyEqwdfRTUdM8n5FIHiQQHg5ETM0Wlso8bF9GodczO40mF5Z3HufnYWJE7z8sGKxOeJCdbAVZbS8Y+d5GCw==",
|
|
268
|
-
"requires": {
|
|
269
|
-
"clean-stack": "^3.0.0",
|
|
270
|
-
"fs-extra": "^8.1",
|
|
271
|
-
"indent-string": "^4.0.0",
|
|
272
|
-
"strip-ansi": "^6.0.0",
|
|
273
|
-
"wrap-ansi": "^7.0.0"
|
|
274
|
-
}
|
|
275
|
-
},
|
|
276
|
-
"ansi-regex": {
|
|
277
|
-
"version": "5.0.0",
|
|
278
|
-
"resolved": ""
|
|
279
|
-
},
|
|
280
|
-
"ansi-styles": {
|
|
281
|
-
"version": "4.3.0",
|
|
282
|
-
"resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz",
|
|
283
|
-
"integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
|
|
284
|
-
"requires": {
|
|
285
|
-
"color-convert": "^2.0.1"
|
|
286
|
-
}
|
|
287
|
-
},
|
|
288
|
-
"clean-stack": {
|
|
289
|
-
"version": "3.0.1",
|
|
290
|
-
"resolved": "https://registry.npmjs.org/clean-stack/-/clean-stack-3.0.1.tgz",
|
|
291
|
-
"integrity": "sha512-lR9wNiMRcVQjSB3a7xXGLuz4cr4wJuuXlaAEbRutGowQTmlp7R72/DOgN21e8jdwblMWl9UOJMJXarX94pzKdg==",
|
|
292
|
-
"requires": {
|
|
293
|
-
"escape-string-regexp": "4.0.0"
|
|
294
|
-
}
|
|
295
|
-
},
|
|
296
|
-
"color-convert": {
|
|
297
|
-
"version": "2.0.1",
|
|
298
|
-
"resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz",
|
|
299
|
-
"integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
|
|
300
|
-
"requires": {
|
|
301
|
-
"color-name": "~1.1.4"
|
|
302
|
-
}
|
|
303
|
-
},
|
|
304
|
-
"color-name": {
|
|
305
|
-
"version": "1.1.4",
|
|
306
|
-
"resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz",
|
|
307
|
-
"integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA=="
|
|
308
|
-
},
|
|
309
|
-
"emoji-regex": {
|
|
310
|
-
"version": "8.0.0",
|
|
311
|
-
"resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz",
|
|
312
|
-
"integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A=="
|
|
313
|
-
},
|
|
314
|
-
"escape-string-regexp": {
|
|
315
|
-
"version": "4.0.0",
|
|
316
|
-
"resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz",
|
|
317
|
-
"integrity": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA=="
|
|
318
|
-
},
|
|
319
|
-
"fs-extra": {
|
|
320
|
-
"version": "8.1.0",
|
|
321
|
-
"resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-8.1.0.tgz",
|
|
322
|
-
"integrity": "sha512-yhlQgA6mnOJUKOsRUFsgJdQCvkKhcz8tlZG5HBQfReYZy46OwLcY+Zia0mtdHsOo9y/hP+CxMN0TU9QxoOtG4g==",
|
|
323
|
-
"requires": {
|
|
324
|
-
"graceful-fs": "^4.2.0",
|
|
325
|
-
"jsonfile": "^4.0.0",
|
|
326
|
-
"universalify": "^0.1.0"
|
|
327
|
-
}
|
|
328
|
-
},
|
|
329
|
-
"indent-string": {
|
|
330
|
-
"version": "4.0.0",
|
|
331
|
-
"resolved": "https://registry.npmjs.org/indent-string/-/indent-string-4.0.0.tgz",
|
|
332
|
-
"integrity": "sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg=="
|
|
333
|
-
},
|
|
334
|
-
"is-fullwidth-code-point": {
|
|
335
|
-
"version": "3.0.0",
|
|
336
|
-
"resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz",
|
|
337
|
-
"integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg=="
|
|
338
|
-
},
|
|
339
|
-
"semver": {
|
|
340
|
-
"version": "7.3.4",
|
|
341
|
-
"resolved": "https://registry.npmjs.org/semver/-/semver-7.3.4.tgz",
|
|
342
|
-
"integrity": "sha512-tCfb2WLjqFAtXn4KEdxIhalnRtoKFN7nAwj0B3ZXCbQloV2tq5eDbcTmT68JJD3nRJq24/XgxtQKFIpQdtvmVw==",
|
|
343
|
-
"requires": {
|
|
344
|
-
"lru-cache": "^6.0.0"
|
|
345
|
-
}
|
|
346
|
-
},
|
|
347
|
-
"string-width": {
|
|
348
|
-
"version": "4.2.2",
|
|
349
|
-
"resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.2.tgz",
|
|
350
|
-
"integrity": "sha512-XBJbT3N4JhVumXE0eoLU9DCjcaF92KLNqTmFCnG1pf8duUxFGwtP6AD6nkjw9a3IdiRtL3E2w3JDiE/xi3vOeA==",
|
|
351
|
-
"requires": {
|
|
352
|
-
"emoji-regex": "^8.0.0",
|
|
353
|
-
"is-fullwidth-code-point": "^3.0.0",
|
|
354
|
-
"strip-ansi": "^6.0.0"
|
|
355
|
-
}
|
|
356
|
-
},
|
|
357
|
-
"strip-ansi": {
|
|
358
|
-
"version": "6.0.0",
|
|
359
|
-
"resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.0.tgz",
|
|
360
|
-
"integrity": "sha512-AuvKTrTfQNYNIctbR1K/YGTR1756GycPsg7b9bdV9Duqur4gv6aKqHXah67Z8ImS7WEz5QVcOtlfW2rZEugt6w==",
|
|
361
|
-
"requires": {
|
|
362
|
-
"ansi-regex": "^5.0.0"
|
|
363
|
-
}
|
|
364
|
-
},
|
|
365
|
-
"wrap-ansi": {
|
|
366
|
-
"version": "7.0.0",
|
|
367
|
-
"resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz",
|
|
368
|
-
"integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==",
|
|
369
|
-
"requires": {
|
|
370
|
-
"ansi-styles": "^4.0.0",
|
|
371
|
-
"string-width": "^4.1.0",
|
|
372
|
-
"strip-ansi": "^6.0.0"
|
|
373
|
-
}
|
|
374
|
-
}
|
|
375
262
|
}
|
|
376
263
|
},
|
|
377
264
|
"@oclif/config": {
|
|
378
|
-
"version": "1.17.
|
|
379
|
-
"resolved": "https://registry.npmjs.org/@oclif/config/-/config-1.17.
|
|
380
|
-
"integrity": "sha512-
|
|
265
|
+
"version": "1.17.1",
|
|
266
|
+
"resolved": "https://registry.npmjs.org/@oclif/config/-/config-1.17.1.tgz",
|
|
267
|
+
"integrity": "sha512-UqV5qsN2np96TNlJspSNlRl7CpFmxYSrB0iLe3XV9NDkbFEE5prGP++h6w6xOR/FL3QV7BoqrbwGuJdJdFbidw==",
|
|
381
268
|
"requires": {
|
|
382
269
|
"@oclif/errors": "^1.3.3",
|
|
383
|
-
"@oclif/parser": "^3.8.
|
|
270
|
+
"@oclif/parser": "^3.8.6",
|
|
384
271
|
"debug": "^4.1.1",
|
|
385
272
|
"globby": "^11.0.1",
|
|
386
273
|
"is-wsl": "^2.1.1",
|
|
387
274
|
"tslib": "^2.0.0"
|
|
388
275
|
},
|
|
389
276
|
"dependencies": {
|
|
390
|
-
"@oclif/errors": {
|
|
391
|
-
"version": "1.3.4",
|
|
392
|
-
"resolved": "https://registry.npmjs.org/@oclif/errors/-/errors-1.3.4.tgz",
|
|
393
|
-
"integrity": "sha512-pJKXyEqwdfRTUdM8n5FIHiQQHg5ETM0Wlso8bF9GodczO40mF5Z3HufnYWJE7z8sGKxOeJCdbAVZbS8Y+d5GCw==",
|
|
394
|
-
"requires": {
|
|
395
|
-
"clean-stack": "^3.0.0",
|
|
396
|
-
"fs-extra": "^8.1",
|
|
397
|
-
"indent-string": "^4.0.0",
|
|
398
|
-
"strip-ansi": "^6.0.0",
|
|
399
|
-
"wrap-ansi": "^7.0.0"
|
|
400
|
-
}
|
|
401
|
-
},
|
|
402
|
-
"ansi-regex": {
|
|
403
|
-
"version": "5.0.0",
|
|
404
|
-
"resolved": ""
|
|
405
|
-
},
|
|
406
|
-
"ansi-styles": {
|
|
407
|
-
"version": "4.3.0",
|
|
408
|
-
"resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz",
|
|
409
|
-
"integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
|
|
410
|
-
"requires": {
|
|
411
|
-
"color-convert": "^2.0.1"
|
|
412
|
-
}
|
|
413
|
-
},
|
|
414
|
-
"clean-stack": {
|
|
415
|
-
"version": "3.0.1",
|
|
416
|
-
"resolved": "https://registry.npmjs.org/clean-stack/-/clean-stack-3.0.1.tgz",
|
|
417
|
-
"integrity": "sha512-lR9wNiMRcVQjSB3a7xXGLuz4cr4wJuuXlaAEbRutGowQTmlp7R72/DOgN21e8jdwblMWl9UOJMJXarX94pzKdg==",
|
|
418
|
-
"requires": {
|
|
419
|
-
"escape-string-regexp": "4.0.0"
|
|
420
|
-
}
|
|
421
|
-
},
|
|
422
|
-
"color-convert": {
|
|
423
|
-
"version": "2.0.1",
|
|
424
|
-
"resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz",
|
|
425
|
-
"integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
|
|
426
|
-
"requires": {
|
|
427
|
-
"color-name": "~1.1.4"
|
|
428
|
-
}
|
|
429
|
-
},
|
|
430
|
-
"color-name": {
|
|
431
|
-
"version": "1.1.4",
|
|
432
|
-
"resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz",
|
|
433
|
-
"integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA=="
|
|
434
|
-
},
|
|
435
|
-
"emoji-regex": {
|
|
436
|
-
"version": "8.0.0",
|
|
437
|
-
"resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz",
|
|
438
|
-
"integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A=="
|
|
439
|
-
},
|
|
440
|
-
"escape-string-regexp": {
|
|
441
|
-
"version": "4.0.0",
|
|
442
|
-
"resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz",
|
|
443
|
-
"integrity": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA=="
|
|
444
|
-
},
|
|
445
|
-
"fs-extra": {
|
|
446
|
-
"version": "8.1.0",
|
|
447
|
-
"resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-8.1.0.tgz",
|
|
448
|
-
"integrity": "sha512-yhlQgA6mnOJUKOsRUFsgJdQCvkKhcz8tlZG5HBQfReYZy46OwLcY+Zia0mtdHsOo9y/hP+CxMN0TU9QxoOtG4g==",
|
|
449
|
-
"requires": {
|
|
450
|
-
"graceful-fs": "^4.2.0",
|
|
451
|
-
"jsonfile": "^4.0.0",
|
|
452
|
-
"universalify": "^0.1.0"
|
|
453
|
-
}
|
|
454
|
-
},
|
|
455
277
|
"globby": {
|
|
456
|
-
"version": "11.0.
|
|
457
|
-
"resolved": "https://registry.npmjs.org/globby/-/globby-11.0.
|
|
458
|
-
"integrity": "sha512-
|
|
278
|
+
"version": "11.0.4",
|
|
279
|
+
"resolved": "https://registry.npmjs.org/globby/-/globby-11.0.4.tgz",
|
|
280
|
+
"integrity": "sha512-9O4MVG9ioZJ08ffbcyVYyLOJLk5JQ688pJ4eMGLpdWLHq/Wr1D9BlriLQyL0E+jbkuePVZXYFj47QM/v093wHg==",
|
|
459
281
|
"requires": {
|
|
460
282
|
"array-union": "^2.1.0",
|
|
461
283
|
"dir-glob": "^3.0.1",
|
|
@@ -465,56 +287,10 @@
|
|
|
465
287
|
"slash": "^3.0.0"
|
|
466
288
|
}
|
|
467
289
|
},
|
|
468
|
-
"indent-string": {
|
|
469
|
-
"version": "4.0.0",
|
|
470
|
-
"resolved": "https://registry.npmjs.org/indent-string/-/indent-string-4.0.0.tgz",
|
|
471
|
-
"integrity": "sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg=="
|
|
472
|
-
},
|
|
473
|
-
"is-fullwidth-code-point": {
|
|
474
|
-
"version": "3.0.0",
|
|
475
|
-
"resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz",
|
|
476
|
-
"integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg=="
|
|
477
|
-
},
|
|
478
|
-
"is-wsl": {
|
|
479
|
-
"version": "2.2.0",
|
|
480
|
-
"resolved": "https://registry.npmjs.org/is-wsl/-/is-wsl-2.2.0.tgz",
|
|
481
|
-
"integrity": "sha512-fKzAra0rGJUUBwGBgNkHZuToZcn+TtXHpeCgmkMJMMYx1sQDYaCSyjJBSCa2nH1DGm7s3n1oBnohoVTBaN7Lww==",
|
|
482
|
-
"requires": {
|
|
483
|
-
"is-docker": "^2.0.0"
|
|
484
|
-
}
|
|
485
|
-
},
|
|
486
|
-
"string-width": {
|
|
487
|
-
"version": "4.2.2",
|
|
488
|
-
"resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.2.tgz",
|
|
489
|
-
"integrity": "sha512-XBJbT3N4JhVumXE0eoLU9DCjcaF92KLNqTmFCnG1pf8duUxFGwtP6AD6nkjw9a3IdiRtL3E2w3JDiE/xi3vOeA==",
|
|
490
|
-
"requires": {
|
|
491
|
-
"emoji-regex": "^8.0.0",
|
|
492
|
-
"is-fullwidth-code-point": "^3.0.0",
|
|
493
|
-
"strip-ansi": "^6.0.0"
|
|
494
|
-
}
|
|
495
|
-
},
|
|
496
|
-
"strip-ansi": {
|
|
497
|
-
"version": "6.0.0",
|
|
498
|
-
"resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.0.tgz",
|
|
499
|
-
"integrity": "sha512-AuvKTrTfQNYNIctbR1K/YGTR1756GycPsg7b9bdV9Duqur4gv6aKqHXah67Z8ImS7WEz5QVcOtlfW2rZEugt6w==",
|
|
500
|
-
"requires": {
|
|
501
|
-
"ansi-regex": "^5.0.0"
|
|
502
|
-
}
|
|
503
|
-
},
|
|
504
290
|
"tslib": {
|
|
505
|
-
"version": "2.1
|
|
506
|
-
"resolved": "https://registry.npmjs.org/tslib/-/tslib-2.1.
|
|
507
|
-
"integrity": "sha512-
|
|
508
|
-
},
|
|
509
|
-
"wrap-ansi": {
|
|
510
|
-
"version": "7.0.0",
|
|
511
|
-
"resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz",
|
|
512
|
-
"integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==",
|
|
513
|
-
"requires": {
|
|
514
|
-
"ansi-styles": "^4.0.0",
|
|
515
|
-
"string-width": "^4.1.0",
|
|
516
|
-
"strip-ansi": "^6.0.0"
|
|
517
|
-
}
|
|
291
|
+
"version": "2.3.1",
|
|
292
|
+
"resolved": "https://registry.npmjs.org/tslib/-/tslib-2.3.1.tgz",
|
|
293
|
+
"integrity": "sha512-77EbyPPpMz+FRFRuAFlWMtmgUWGe9UOG2Z25NqCwiIjRhOf5iKGuzSe5P2w1laq+FkRy4p+PCuVkJSGkzTEKVw=="
|
|
518
294
|
}
|
|
519
295
|
}
|
|
520
296
|
},
|
|
@@ -737,27 +513,77 @@
|
|
|
737
513
|
"integrity": "sha512-Ups2dShK52xXa8w6iBWLgcjPJWjais6KPJQq3gQ/88AY6BXoTX+MIGFPrWQO1KLMiQfoTpcLnUwloN4brrVUHw=="
|
|
738
514
|
},
|
|
739
515
|
"@oclif/parser": {
|
|
740
|
-
"version": "3.8.
|
|
741
|
-
"resolved": "https://registry.npmjs.org/@oclif/parser/-/parser-3.8.
|
|
742
|
-
"integrity": "sha512-
|
|
516
|
+
"version": "3.8.6",
|
|
517
|
+
"resolved": "https://registry.npmjs.org/@oclif/parser/-/parser-3.8.6.tgz",
|
|
518
|
+
"integrity": "sha512-tXb0NKgSgNxmf6baN6naK+CCwOueaFk93FG9u202U7mTBHUKsioOUlw1SG/iPi9aJM3WE4pHLXmty59pci0OEw==",
|
|
743
519
|
"requires": {
|
|
744
520
|
"@oclif/errors": "^1.2.2",
|
|
745
521
|
"@oclif/linewrap": "^1.0.0",
|
|
746
|
-
"chalk": "^
|
|
747
|
-
"tslib": "^
|
|
522
|
+
"chalk": "^4.1.0",
|
|
523
|
+
"tslib": "^2.0.0"
|
|
524
|
+
},
|
|
525
|
+
"dependencies": {
|
|
526
|
+
"ansi-styles": {
|
|
527
|
+
"version": "4.3.0",
|
|
528
|
+
"resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz",
|
|
529
|
+
"integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
|
|
530
|
+
"requires": {
|
|
531
|
+
"color-convert": "^2.0.1"
|
|
532
|
+
}
|
|
533
|
+
},
|
|
534
|
+
"chalk": {
|
|
535
|
+
"version": "4.1.2",
|
|
536
|
+
"resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz",
|
|
537
|
+
"integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==",
|
|
538
|
+
"requires": {
|
|
539
|
+
"ansi-styles": "^4.1.0",
|
|
540
|
+
"supports-color": "^7.1.0"
|
|
541
|
+
}
|
|
542
|
+
},
|
|
543
|
+
"color-convert": {
|
|
544
|
+
"version": "2.0.1",
|
|
545
|
+
"resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz",
|
|
546
|
+
"integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
|
|
547
|
+
"requires": {
|
|
548
|
+
"color-name": "~1.1.4"
|
|
549
|
+
}
|
|
550
|
+
},
|
|
551
|
+
"color-name": {
|
|
552
|
+
"version": "1.1.4",
|
|
553
|
+
"resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz",
|
|
554
|
+
"integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA=="
|
|
555
|
+
},
|
|
556
|
+
"has-flag": {
|
|
557
|
+
"version": "4.0.0",
|
|
558
|
+
"resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz",
|
|
559
|
+
"integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ=="
|
|
560
|
+
},
|
|
561
|
+
"supports-color": {
|
|
562
|
+
"version": "7.2.0",
|
|
563
|
+
"resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz",
|
|
564
|
+
"integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==",
|
|
565
|
+
"requires": {
|
|
566
|
+
"has-flag": "^4.0.0"
|
|
567
|
+
}
|
|
568
|
+
},
|
|
569
|
+
"tslib": {
|
|
570
|
+
"version": "2.3.1",
|
|
571
|
+
"resolved": "https://registry.npmjs.org/tslib/-/tslib-2.3.1.tgz",
|
|
572
|
+
"integrity": "sha512-77EbyPPpMz+FRFRuAFlWMtmgUWGe9UOG2Z25NqCwiIjRhOf5iKGuzSe5P2w1laq+FkRy4p+PCuVkJSGkzTEKVw=="
|
|
573
|
+
}
|
|
748
574
|
}
|
|
749
575
|
},
|
|
750
576
|
"@oclif/plugin-help": {
|
|
751
|
-
"version": "3.2.
|
|
752
|
-
"resolved": "https://registry.npmjs.org/@oclif/plugin-help/-/plugin-help-3.2.
|
|
753
|
-
"integrity": "sha512-
|
|
577
|
+
"version": "3.2.5",
|
|
578
|
+
"resolved": "https://registry.npmjs.org/@oclif/plugin-help/-/plugin-help-3.2.5.tgz",
|
|
579
|
+
"integrity": "sha512-fjkZTstvacCPicF2oaa3Lc+Yw3ocKEaW6x6O7doVqMLuoMUX6wBOQ+f1a3VFzO1fErqNeFPDlUlVUhwq9yMzQg==",
|
|
754
580
|
"requires": {
|
|
755
|
-
"@oclif/command": "^1.
|
|
756
|
-
"@oclif/config": "^1.
|
|
757
|
-
"@oclif/errors": "^1.
|
|
581
|
+
"@oclif/command": "^1.8.3",
|
|
582
|
+
"@oclif/config": "^1.17.1",
|
|
583
|
+
"@oclif/errors": "^1.3.5",
|
|
758
584
|
"chalk": "^4.1.0",
|
|
759
585
|
"indent-string": "^4.0.0",
|
|
760
|
-
"lodash
|
|
586
|
+
"lodash": "^4.17.21",
|
|
761
587
|
"string-width": "^4.2.0",
|
|
762
588
|
"strip-ansi": "^6.0.0",
|
|
763
589
|
"widest-line": "^3.1.0",
|
|
@@ -804,32 +630,27 @@
|
|
|
804
630
|
"resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz",
|
|
805
631
|
"integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ=="
|
|
806
632
|
},
|
|
807
|
-
"indent-string": {
|
|
808
|
-
"version": "4.0.0",
|
|
809
|
-
"resolved": "https://registry.npmjs.org/indent-string/-/indent-string-4.0.0.tgz",
|
|
810
|
-
"integrity": "sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg=="
|
|
811
|
-
},
|
|
812
633
|
"is-fullwidth-code-point": {
|
|
813
634
|
"version": "3.0.0",
|
|
814
635
|
"resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz",
|
|
815
636
|
"integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg=="
|
|
816
637
|
},
|
|
817
638
|
"string-width": {
|
|
818
|
-
"version": "4.2.
|
|
819
|
-
"resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.
|
|
820
|
-
"integrity": "sha512-
|
|
639
|
+
"version": "4.2.3",
|
|
640
|
+
"resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz",
|
|
641
|
+
"integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==",
|
|
821
642
|
"requires": {
|
|
822
643
|
"emoji-regex": "^8.0.0",
|
|
823
644
|
"is-fullwidth-code-point": "^3.0.0",
|
|
824
|
-
"strip-ansi": "^6.0.
|
|
645
|
+
"strip-ansi": "^6.0.1"
|
|
825
646
|
}
|
|
826
647
|
},
|
|
827
648
|
"strip-ansi": {
|
|
828
|
-
"version": "6.0.
|
|
829
|
-
"resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.
|
|
830
|
-
"integrity": "sha512-
|
|
649
|
+
"version": "6.0.1",
|
|
650
|
+
"resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz",
|
|
651
|
+
"integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==",
|
|
831
652
|
"requires": {
|
|
832
|
-
"ansi-regex": "^5.0.
|
|
653
|
+
"ansi-regex": "^5.0.1"
|
|
833
654
|
}
|
|
834
655
|
},
|
|
835
656
|
"supports-color": {
|
|
@@ -968,27 +789,30 @@
|
|
|
968
789
|
}
|
|
969
790
|
},
|
|
970
791
|
"@saltcorn/base-plugin": {
|
|
971
|
-
"version": "0.6.
|
|
972
|
-
"resolved": "https://registry.npmjs.org/@saltcorn/base-plugin/-/base-plugin-0.6.
|
|
973
|
-
"integrity": "sha512-
|
|
792
|
+
"version": "0.6.1",
|
|
793
|
+
"resolved": "https://registry.npmjs.org/@saltcorn/base-plugin/-/base-plugin-0.6.1.tgz",
|
|
794
|
+
"integrity": "sha512-ftKWT3SLRo7pvwQvIH5kyryykcM2ZssZMQbi1kFI6RxMkzQAi0sBzRgN6PPjKNgMCTWe48xU5bITp9pT/07fOw==",
|
|
974
795
|
"requires": {
|
|
975
|
-
"@saltcorn/data": "0.6.
|
|
796
|
+
"@saltcorn/data": "0.6.1"
|
|
976
797
|
}
|
|
977
798
|
},
|
|
978
799
|
"@saltcorn/builder": {
|
|
979
|
-
"version": "0.6.
|
|
980
|
-
"resolved": "https://registry.npmjs.org/@saltcorn/builder/-/builder-0.6.
|
|
981
|
-
"integrity": "sha512-
|
|
800
|
+
"version": "0.6.1",
|
|
801
|
+
"resolved": "https://registry.npmjs.org/@saltcorn/builder/-/builder-0.6.1.tgz",
|
|
802
|
+
"integrity": "sha512-U6q5+Qmy+5yjrZgn8N1YJDYbowP22qjD3TPpt8Zl1nwPu2xjABbeojH7xs96hWv33DOnBhpc5Vs6T4g9Je2GHQ==",
|
|
982
803
|
"requires": {
|
|
983
804
|
"styled-components": "^4.4.1"
|
|
984
805
|
}
|
|
985
806
|
},
|
|
986
807
|
"@saltcorn/data": {
|
|
987
|
-
"version": "0.6.
|
|
988
|
-
"resolved": "https://registry.npmjs.org/@saltcorn/data/-/data-0.6.
|
|
989
|
-
"integrity": "sha512-
|
|
808
|
+
"version": "0.6.1",
|
|
809
|
+
"resolved": "https://registry.npmjs.org/@saltcorn/data/-/data-0.6.1.tgz",
|
|
810
|
+
"integrity": "sha512-Jwho1gfusGsghozULZuE1dt74tdhMOTkj3ddPHFlXXoZgfcXl9gpSv70jGeth+DRmSNmp7oRE1jIZ84AhG2D1w==",
|
|
990
811
|
"requires": {
|
|
991
|
-
"@saltcorn/
|
|
812
|
+
"@saltcorn/db-common": "0.6.1",
|
|
813
|
+
"@saltcorn/markup": "0.6.1",
|
|
814
|
+
"@saltcorn/postgres": "0.6.1",
|
|
815
|
+
"@saltcorn/sqlite": "0.6.1",
|
|
992
816
|
"acorn": "^8.0.3",
|
|
993
817
|
"adm-zip": "0.5.5",
|
|
994
818
|
"astring": "^1.4.3",
|
|
@@ -1010,18 +834,24 @@
|
|
|
1010
834
|
"moment-timezone": "^0.5.33",
|
|
1011
835
|
"node-fetch": "2.6.2",
|
|
1012
836
|
"nodemailer": "^6.4.17",
|
|
1013
|
-
"pg": "^8.2.1",
|
|
1014
|
-
"pg-copy-streams": "^5.1.1",
|
|
1015
837
|
"pluralize": "^8.0.0",
|
|
1016
|
-
"sqlite3": "^5.0.2",
|
|
1017
838
|
"tmp-promise": "^3.0.2",
|
|
1018
839
|
"uuid": "^8.2.0"
|
|
1019
840
|
}
|
|
1020
841
|
},
|
|
842
|
+
"@saltcorn/db-common": {
|
|
843
|
+
"version": "0.6.1",
|
|
844
|
+
"resolved": "https://registry.npmjs.org/@saltcorn/db-common/-/db-common-0.6.1.tgz",
|
|
845
|
+
"integrity": "sha512-YCWXsnWwyoTnQFZYWvT3ecYUZ/xsXk4ZAKOhO/3lFQycfmwRgNUiJ9Dlilmkt4iN/1/1y1CwB/56wD8hggqJrA==",
|
|
846
|
+
"requires": {
|
|
847
|
+
"@saltcorn/markup": "0.6.1",
|
|
848
|
+
"contractis": "^0.1.0"
|
|
849
|
+
}
|
|
850
|
+
},
|
|
1021
851
|
"@saltcorn/markup": {
|
|
1022
|
-
"version": "0.6.
|
|
1023
|
-
"resolved": "https://registry.npmjs.org/@saltcorn/markup/-/markup-0.6.
|
|
1024
|
-
"integrity": "sha512-
|
|
852
|
+
"version": "0.6.1",
|
|
853
|
+
"resolved": "https://registry.npmjs.org/@saltcorn/markup/-/markup-0.6.1.tgz",
|
|
854
|
+
"integrity": "sha512-bBoSTtNUsBFBDRsBas++swdDIWCWmojEZy6VRYlhV2XA0DwJ3f1e1shndI8MTz76Y0BiUAmSyU+o0hX5Eh2mDw==",
|
|
1025
855
|
"requires": {
|
|
1026
856
|
"contractis": "^0.1.0",
|
|
1027
857
|
"escape-html": "^1.0.3",
|
|
@@ -1029,26 +859,37 @@
|
|
|
1029
859
|
"xss": "^1.0.8"
|
|
1030
860
|
}
|
|
1031
861
|
},
|
|
862
|
+
"@saltcorn/postgres": {
|
|
863
|
+
"version": "0.6.1",
|
|
864
|
+
"resolved": "https://registry.npmjs.org/@saltcorn/postgres/-/postgres-0.6.1.tgz",
|
|
865
|
+
"integrity": "sha512-G9qXE3PSIOiJvoLCau5A6G6EoBt5tngzjl9fsxVNYxZy73+/oz/KT0dGcR/P8LnyuLYqQxVBE8EIToxKDa3K3Q==",
|
|
866
|
+
"optional": true,
|
|
867
|
+
"requires": {
|
|
868
|
+
"@saltcorn/db-common": "0.6.1",
|
|
869
|
+
"pg": "^8.2.1",
|
|
870
|
+
"pg-copy-streams": "^5.1.1"
|
|
871
|
+
}
|
|
872
|
+
},
|
|
1032
873
|
"@saltcorn/sbadmin2": {
|
|
1033
|
-
"version": "0.6.
|
|
1034
|
-
"resolved": "https://registry.npmjs.org/@saltcorn/sbadmin2/-/sbadmin2-0.6.
|
|
1035
|
-
"integrity": "sha512-
|
|
874
|
+
"version": "0.6.1",
|
|
875
|
+
"resolved": "https://registry.npmjs.org/@saltcorn/sbadmin2/-/sbadmin2-0.6.1.tgz",
|
|
876
|
+
"integrity": "sha512-AJNQ7RmioHjKgodyFKzfCoalnzRFPlxvomGmyHYbCVyH3bgNGGv3h/gG0npnPc8R6K7qPwq1HYoYrVC1YC8Cvg==",
|
|
1036
877
|
"requires": {
|
|
1037
|
-
"@saltcorn/data": "0.6.
|
|
1038
|
-
"@saltcorn/markup": "0.6.
|
|
878
|
+
"@saltcorn/data": "0.6.1",
|
|
879
|
+
"@saltcorn/markup": "0.6.1",
|
|
1039
880
|
"startbootstrap-sb-admin-2": "^4.1.4"
|
|
1040
881
|
}
|
|
1041
882
|
},
|
|
1042
883
|
"@saltcorn/server": {
|
|
1043
|
-
"version": "0.6.
|
|
1044
|
-
"resolved": "https://registry.npmjs.org/@saltcorn/server/-/server-0.6.
|
|
1045
|
-
"integrity": "sha512-
|
|
1046
|
-
"requires": {
|
|
1047
|
-
"@saltcorn/base-plugin": "0.6.
|
|
1048
|
-
"@saltcorn/builder": "0.6.
|
|
1049
|
-
"@saltcorn/data": "0.6.
|
|
1050
|
-
"@saltcorn/markup": "0.6.
|
|
1051
|
-
"@saltcorn/sbadmin2": "0.6.
|
|
884
|
+
"version": "0.6.1",
|
|
885
|
+
"resolved": "https://registry.npmjs.org/@saltcorn/server/-/server-0.6.1.tgz",
|
|
886
|
+
"integrity": "sha512-q2NIGZ1kkjaBxleIQqO4Qj4K8yw8vArAN26Uxq344OYaU+cRtTmGLSha+sOJd7dDAH02HOtoJBIV9Fkib4vUZw==",
|
|
887
|
+
"requires": {
|
|
888
|
+
"@saltcorn/base-plugin": "0.6.1",
|
|
889
|
+
"@saltcorn/builder": "0.6.1",
|
|
890
|
+
"@saltcorn/data": "0.6.1",
|
|
891
|
+
"@saltcorn/markup": "0.6.1",
|
|
892
|
+
"@saltcorn/sbadmin2": "0.6.1",
|
|
1052
893
|
"@socket.io/cluster-adapter": "^0.1.0",
|
|
1053
894
|
"@socket.io/sticky": "^1.0.1",
|
|
1054
895
|
"connect-flash": "^0.1.1",
|
|
@@ -1081,6 +922,16 @@
|
|
|
1081
922
|
"tmp-promise": "^3.0.2"
|
|
1082
923
|
}
|
|
1083
924
|
},
|
|
925
|
+
"@saltcorn/sqlite": {
|
|
926
|
+
"version": "0.6.1",
|
|
927
|
+
"resolved": "https://registry.npmjs.org/@saltcorn/sqlite/-/sqlite-0.6.1.tgz",
|
|
928
|
+
"integrity": "sha512-yOo7pci9+jUdUQe5m4EsWOUFOS09SBqtS3/lzP4S4JacKNlPkc2HSRlHF27aCBukXA4BSyxuCLDS9sQJ5pi44w==",
|
|
929
|
+
"optional": true,
|
|
930
|
+
"requires": {
|
|
931
|
+
"@saltcorn/db-common": "0.6.1",
|
|
932
|
+
"sqlite3": "^5.0.2"
|
|
933
|
+
}
|
|
934
|
+
},
|
|
1084
935
|
"@sindresorhus/is": {
|
|
1085
936
|
"version": "0.14.0",
|
|
1086
937
|
"resolved": "https://registry.npmjs.org/@sindresorhus/is/-/is-0.14.0.tgz",
|
|
@@ -1270,9 +1121,9 @@
|
|
|
1270
1121
|
"integrity": "sha512-W4GfK+39GZ+u0mvxRVUcVFCG6gposfzEnSBF20T/NUwWAKG59wQT1dUbS1NixRIAsRuhpGc4Jx659cErFQH0Pg=="
|
|
1271
1122
|
},
|
|
1272
1123
|
"acorn": {
|
|
1273
|
-
"version": "8.
|
|
1274
|
-
"resolved": "https://registry.npmjs.org/acorn/-/acorn-8.
|
|
1275
|
-
"integrity": "sha512-
|
|
1124
|
+
"version": "8.6.0",
|
|
1125
|
+
"resolved": "https://registry.npmjs.org/acorn/-/acorn-8.6.0.tgz",
|
|
1126
|
+
"integrity": "sha512-U1riIR+lBSNi3IbxtaHOIKdH8sLFv3NYfNv8sg7ZsNhcfl4HF2++BfqqrNAxoCLQW1iiylOj76ecnaUxz+z9yw=="
|
|
1276
1127
|
},
|
|
1277
1128
|
"acorn-globals": {
|
|
1278
1129
|
"version": "4.3.4",
|
|
@@ -1421,9 +1272,9 @@
|
|
|
1421
1272
|
"integrity": "sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw=="
|
|
1422
1273
|
},
|
|
1423
1274
|
"asn1": {
|
|
1424
|
-
"version": "0.2.
|
|
1425
|
-
"resolved": "https://registry.npmjs.org/asn1/-/asn1-0.2.
|
|
1426
|
-
"integrity": "sha512-
|
|
1275
|
+
"version": "0.2.6",
|
|
1276
|
+
"resolved": "https://registry.npmjs.org/asn1/-/asn1-0.2.6.tgz",
|
|
1277
|
+
"integrity": "sha512-ix/FxPn0MDjeyJ7i/yoHGFt/EX6LyNbxSEhPPXODPL+KB0VPk86UYfL0lMdy+KCnv+fmvIzySwaK5COwqVbWTQ==",
|
|
1427
1278
|
"requires": {
|
|
1428
1279
|
"safer-buffer": "~2.1.0"
|
|
1429
1280
|
}
|
|
@@ -1434,14 +1285,14 @@
|
|
|
1434
1285
|
"integrity": "sha1-8S4PPF13sLHN2RRpQuTpbB5N1SU="
|
|
1435
1286
|
},
|
|
1436
1287
|
"astring": {
|
|
1437
|
-
"version": "1.
|
|
1438
|
-
"resolved": "https://registry.npmjs.org/astring/-/astring-1.
|
|
1439
|
-
"integrity": "sha512-
|
|
1288
|
+
"version": "1.8.1",
|
|
1289
|
+
"resolved": "https://registry.npmjs.org/astring/-/astring-1.8.1.tgz",
|
|
1290
|
+
"integrity": "sha512-Aj3mbwVzj7Vve4I/v2JYOPFkCGM2YS7OqQTNSxmUR+LECRpokuPgAYghePgr6SALDo5bD5DlfbSaYjOzGJZOLQ=="
|
|
1440
1291
|
},
|
|
1441
1292
|
"async": {
|
|
1442
|
-
"version": "3.2.
|
|
1443
|
-
"resolved": "https://registry.npmjs.org/async/-/async-3.2.
|
|
1444
|
-
"integrity": "sha512-
|
|
1293
|
+
"version": "3.2.2",
|
|
1294
|
+
"resolved": "https://registry.npmjs.org/async/-/async-3.2.2.tgz",
|
|
1295
|
+
"integrity": "sha512-H0E+qZaDEfx/FY4t7iLRv1W2fFI6+pyCeTw1uN20AQPiwqwM6ojPxHxdLv4z8hi2DtnW9BOckSspLucW7pIE5g=="
|
|
1445
1296
|
},
|
|
1446
1297
|
"async-foreach": {
|
|
1447
1298
|
"version": "0.1.3",
|
|
@@ -1464,12 +1315,12 @@
|
|
|
1464
1315
|
"integrity": "sha512-xh1Rl34h6Fi1DC2WWKfxUTVqRsNnr6LsKz2+hfwDxQJWmrx8+c7ylaqBMcHfl1U1r2dsifOvKX3LQuLNZ+XSvA=="
|
|
1465
1316
|
},
|
|
1466
1317
|
"babel-plugin-styled-components": {
|
|
1467
|
-
"version": "
|
|
1468
|
-
"resolved": "https://registry.npmjs.org/babel-plugin-styled-components/-/babel-plugin-styled-components-
|
|
1469
|
-
"integrity": "sha512-
|
|
1318
|
+
"version": "2.0.1",
|
|
1319
|
+
"resolved": "https://registry.npmjs.org/babel-plugin-styled-components/-/babel-plugin-styled-components-2.0.1.tgz",
|
|
1320
|
+
"integrity": "sha512-U3wmORxerYBiqcRCo6thItIosEIga3F+ph0jJPkiOZJjyhpZyUZFQV9XvrZ2CbBIihJ3rDBC/itQ+Wx3VHMauw==",
|
|
1470
1321
|
"requires": {
|
|
1471
|
-
"@babel/helper-annotate-as-pure": "^7.
|
|
1472
|
-
"@babel/helper-module-imports": "^7.
|
|
1322
|
+
"@babel/helper-annotate-as-pure": "^7.16.0",
|
|
1323
|
+
"@babel/helper-module-imports": "^7.16.0",
|
|
1473
1324
|
"babel-plugin-syntax-jsx": "^6.18.0",
|
|
1474
1325
|
"lodash": "^4.17.11"
|
|
1475
1326
|
}
|
|
@@ -2235,16 +2086,16 @@
|
|
|
2235
2086
|
}
|
|
2236
2087
|
},
|
|
2237
2088
|
"cookie": {
|
|
2238
|
-
"version": "0.4.
|
|
2239
|
-
"resolved": "https://registry.npmjs.org/cookie/-/cookie-0.4.
|
|
2240
|
-
"integrity": "sha512
|
|
2089
|
+
"version": "0.4.1",
|
|
2090
|
+
"resolved": "https://registry.npmjs.org/cookie/-/cookie-0.4.1.tgz",
|
|
2091
|
+
"integrity": "sha512-ZwrFkGJxUR3EIoXtO+yVE69Eb7KlixbaeAWfBQB9vVsNn/o+Yw69gBWSSDK825hQNdN+wF8zELf3dFNl/kxkUA=="
|
|
2241
2092
|
},
|
|
2242
2093
|
"cookie-parser": {
|
|
2243
|
-
"version": "1.4.
|
|
2244
|
-
"resolved": "https://registry.npmjs.org/cookie-parser/-/cookie-parser-1.4.
|
|
2245
|
-
"integrity": "sha512-
|
|
2094
|
+
"version": "1.4.6",
|
|
2095
|
+
"resolved": "https://registry.npmjs.org/cookie-parser/-/cookie-parser-1.4.6.tgz",
|
|
2096
|
+
"integrity": "sha512-z3IzaNjdwUC2olLIB5/ITd0/setiaFMLYiZJle7xg5Fe9KWAceil7xszYfHHBtDFYLSgJduS2Ty0P1uJdPDJeA==",
|
|
2246
2097
|
"requires": {
|
|
2247
|
-
"cookie": "0.4.
|
|
2098
|
+
"cookie": "0.4.1",
|
|
2248
2099
|
"cookie-signature": "1.0.6"
|
|
2249
2100
|
}
|
|
2250
2101
|
},
|
|
@@ -2288,9 +2139,9 @@
|
|
|
2288
2139
|
}
|
|
2289
2140
|
},
|
|
2290
2141
|
"core-util-is": {
|
|
2291
|
-
"version": "1.0.
|
|
2292
|
-
"resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.
|
|
2293
|
-
"integrity": "
|
|
2142
|
+
"version": "1.0.3",
|
|
2143
|
+
"resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.3.tgz",
|
|
2144
|
+
"integrity": "sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ=="
|
|
2294
2145
|
},
|
|
2295
2146
|
"cors": {
|
|
2296
2147
|
"version": "2.8.5",
|
|
@@ -2396,6 +2247,13 @@
|
|
|
2396
2247
|
"cookie-signature": "1.0.6",
|
|
2397
2248
|
"csrf": "3.1.0",
|
|
2398
2249
|
"http-errors": "~1.7.3"
|
|
2250
|
+
},
|
|
2251
|
+
"dependencies": {
|
|
2252
|
+
"cookie": {
|
|
2253
|
+
"version": "0.4.0",
|
|
2254
|
+
"resolved": "https://registry.npmjs.org/cookie/-/cookie-0.4.0.tgz",
|
|
2255
|
+
"integrity": "sha512-+Hp8fLp57wnUSt0tY0tHEXh4voZRDnoIrZPqlo3DPiI4y9lwg/jqx+1Om94/W6ZaPDOUbnjOt/99w66zk+l1Xg=="
|
|
2256
|
+
}
|
|
2399
2257
|
}
|
|
2400
2258
|
},
|
|
2401
2259
|
"csv-stringify": {
|
|
@@ -2689,11 +2547,6 @@
|
|
|
2689
2547
|
"ws": "~7.4.2"
|
|
2690
2548
|
},
|
|
2691
2549
|
"dependencies": {
|
|
2692
|
-
"cookie": {
|
|
2693
|
-
"version": "0.4.1",
|
|
2694
|
-
"resolved": "https://registry.npmjs.org/cookie/-/cookie-0.4.1.tgz",
|
|
2695
|
-
"integrity": "sha512-ZwrFkGJxUR3EIoXtO+yVE69Eb7KlixbaeAWfBQB9vVsNn/o+Yw69gBWSSDK825hQNdN+wF8zELf3dFNl/kxkUA=="
|
|
2696
|
-
},
|
|
2697
2550
|
"debug": {
|
|
2698
2551
|
"version": "4.3.2",
|
|
2699
2552
|
"resolved": "https://registry.npmjs.org/debug/-/debug-4.3.2.tgz",
|
|
@@ -2770,9 +2623,9 @@
|
|
|
2770
2623
|
"integrity": "sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A=="
|
|
2771
2624
|
},
|
|
2772
2625
|
"estraverse": {
|
|
2773
|
-
"version": "5.
|
|
2774
|
-
"resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.
|
|
2775
|
-
"integrity": "sha512-
|
|
2626
|
+
"version": "5.3.0",
|
|
2627
|
+
"resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz",
|
|
2628
|
+
"integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA=="
|
|
2776
2629
|
},
|
|
2777
2630
|
"esutils": {
|
|
2778
2631
|
"version": "2.0.3",
|
|
@@ -2844,6 +2697,11 @@
|
|
|
2844
2697
|
"vary": "~1.1.2"
|
|
2845
2698
|
},
|
|
2846
2699
|
"dependencies": {
|
|
2700
|
+
"cookie": {
|
|
2701
|
+
"version": "0.4.0",
|
|
2702
|
+
"resolved": "https://registry.npmjs.org/cookie/-/cookie-0.4.0.tgz",
|
|
2703
|
+
"integrity": "sha512-+Hp8fLp57wnUSt0tY0tHEXh4voZRDnoIrZPqlo3DPiI4y9lwg/jqx+1Om94/W6ZaPDOUbnjOt/99w66zk+l1Xg=="
|
|
2704
|
+
},
|
|
2847
2705
|
"debug": {
|
|
2848
2706
|
"version": "2.6.9",
|
|
2849
2707
|
"resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz",
|
|
@@ -2893,9 +2751,9 @@
|
|
|
2893
2751
|
}
|
|
2894
2752
|
},
|
|
2895
2753
|
"express-rate-limit": {
|
|
2896
|
-
"version": "5.5.
|
|
2897
|
-
"resolved": "https://registry.npmjs.org/express-rate-limit/-/express-rate-limit-5.5.
|
|
2898
|
-
"integrity": "sha512
|
|
2754
|
+
"version": "5.5.1",
|
|
2755
|
+
"resolved": "https://registry.npmjs.org/express-rate-limit/-/express-rate-limit-5.5.1.tgz",
|
|
2756
|
+
"integrity": "sha512-MTjE2eIbHv5DyfuFz4zLYWxpqVhEhkTiwFGuB74Q9CSou2WHO52nlE5y3Zlg6SIsiYUIPj6ifFxnkPz6O3sIUg=="
|
|
2899
2757
|
},
|
|
2900
2758
|
"express-session": {
|
|
2901
2759
|
"version": "1.17.2",
|
|
@@ -2912,11 +2770,6 @@
|
|
|
2912
2770
|
"uid-safe": "~2.1.5"
|
|
2913
2771
|
},
|
|
2914
2772
|
"dependencies": {
|
|
2915
|
-
"cookie": {
|
|
2916
|
-
"version": "0.4.1",
|
|
2917
|
-
"resolved": "https://registry.npmjs.org/cookie/-/cookie-0.4.1.tgz",
|
|
2918
|
-
"integrity": "sha512-ZwrFkGJxUR3EIoXtO+yVE69Eb7KlixbaeAWfBQB9vVsNn/o+Yw69gBWSSDK825hQNdN+wF8zELf3dFNl/kxkUA=="
|
|
2919
|
-
},
|
|
2920
2773
|
"debug": {
|
|
2921
2774
|
"version": "2.6.9",
|
|
2922
2775
|
"resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz",
|
|
@@ -3934,6 +3787,21 @@
|
|
|
3934
3787
|
"version": "7.4.1",
|
|
3935
3788
|
"resolved": "https://registry.npmjs.org/acorn/-/acorn-7.4.1.tgz",
|
|
3936
3789
|
"integrity": "sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A=="
|
|
3790
|
+
},
|
|
3791
|
+
"ip-regex": {
|
|
3792
|
+
"version": "2.1.0",
|
|
3793
|
+
"resolved": "https://registry.npmjs.org/ip-regex/-/ip-regex-2.1.0.tgz",
|
|
3794
|
+
"integrity": "sha1-+ni/XS5pE8kRzp+BnuUUa7bYROk="
|
|
3795
|
+
},
|
|
3796
|
+
"tough-cookie": {
|
|
3797
|
+
"version": "3.0.1",
|
|
3798
|
+
"resolved": "https://registry.npmjs.org/tough-cookie/-/tough-cookie-3.0.1.tgz",
|
|
3799
|
+
"integrity": "sha512-yQyJ0u4pZsv9D4clxO69OEjLWYw+jbgspjTue4lTQZLfV0c5l1VmK2y1JK8E9ahdpltPOaAThPcp5nKPUgSnsg==",
|
|
3800
|
+
"requires": {
|
|
3801
|
+
"ip-regex": "^2.1.0",
|
|
3802
|
+
"psl": "^1.1.28",
|
|
3803
|
+
"punycode": "^2.1.1"
|
|
3804
|
+
}
|
|
3937
3805
|
}
|
|
3938
3806
|
}
|
|
3939
3807
|
},
|
|
@@ -4301,11 +4169,6 @@
|
|
|
4301
4169
|
"resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz",
|
|
4302
4170
|
"integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg=="
|
|
4303
4171
|
},
|
|
4304
|
-
"lodash._reinterpolate": {
|
|
4305
|
-
"version": "3.0.0",
|
|
4306
|
-
"resolved": "https://registry.npmjs.org/lodash._reinterpolate/-/lodash._reinterpolate-3.0.0.tgz",
|
|
4307
|
-
"integrity": "sha1-DM8tiRZq8Ds2Y8eWU4t1rG4RTZ0="
|
|
4308
|
-
},
|
|
4309
4172
|
"lodash.assignin": {
|
|
4310
4173
|
"version": "4.2.0",
|
|
4311
4174
|
"resolved": "https://registry.npmjs.org/lodash.assignin/-/lodash.assignin-4.2.0.tgz",
|
|
@@ -4376,23 +4239,6 @@
|
|
|
4376
4239
|
"resolved": "https://registry.npmjs.org/lodash.sortby/-/lodash.sortby-4.7.0.tgz",
|
|
4377
4240
|
"integrity": "sha1-7dFMgk4sycHgsKG0K7UhBRakJDg="
|
|
4378
4241
|
},
|
|
4379
|
-
"lodash.template": {
|
|
4380
|
-
"version": "4.5.0",
|
|
4381
|
-
"resolved": "https://registry.npmjs.org/lodash.template/-/lodash.template-4.5.0.tgz",
|
|
4382
|
-
"integrity": "sha512-84vYFxIkmidUiFxidA/KjjH9pAycqW+h980j7Fuz5qxRtO9pgB7MDFTdys1N7A5mcucRiDyEq4fusljItR1T/A==",
|
|
4383
|
-
"requires": {
|
|
4384
|
-
"lodash._reinterpolate": "^3.0.0",
|
|
4385
|
-
"lodash.templatesettings": "^4.0.0"
|
|
4386
|
-
}
|
|
4387
|
-
},
|
|
4388
|
-
"lodash.templatesettings": {
|
|
4389
|
-
"version": "4.2.0",
|
|
4390
|
-
"resolved": "https://registry.npmjs.org/lodash.templatesettings/-/lodash.templatesettings-4.2.0.tgz",
|
|
4391
|
-
"integrity": "sha512-stgLz+i3Aa9mZgnjr/O+v9ruKZsPsndy7qPZOchbqk2cnTU1ZaldKK+v7m54WoKIyxiuMZTKT2H81F8BeAc3ZQ==",
|
|
4392
|
-
"requires": {
|
|
4393
|
-
"lodash._reinterpolate": "^3.0.0"
|
|
4394
|
-
}
|
|
4395
|
-
},
|
|
4396
4242
|
"lodash.unescape": {
|
|
4397
4243
|
"version": "4.0.1",
|
|
4398
4244
|
"resolved": "https://registry.npmjs.org/lodash.unescape/-/lodash.unescape-4.0.1.tgz",
|
|
@@ -4583,16 +4429,16 @@
|
|
|
4583
4429
|
"integrity": "sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg=="
|
|
4584
4430
|
},
|
|
4585
4431
|
"mime-db": {
|
|
4586
|
-
"version": "1.
|
|
4587
|
-
"resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.
|
|
4588
|
-
"integrity": "sha512-
|
|
4432
|
+
"version": "1.51.0",
|
|
4433
|
+
"resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.51.0.tgz",
|
|
4434
|
+
"integrity": "sha512-5y8A56jg7XVQx2mbv1lu49NR4dokRnhZYTtL+KGfaa27uq4pSTXkwQkFJl4pkRMyNFz/EtYDSkiiEHx3F7UN6g=="
|
|
4589
4435
|
},
|
|
4590
4436
|
"mime-types": {
|
|
4591
|
-
"version": "2.1.
|
|
4592
|
-
"resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.
|
|
4593
|
-
"integrity": "sha512-
|
|
4437
|
+
"version": "2.1.34",
|
|
4438
|
+
"resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.34.tgz",
|
|
4439
|
+
"integrity": "sha512-6cP692WwGIs9XXdOO4++N+7qjqv0rqxxVvJ3VHPh/Sc9mVZcQP+ZGhkKiTvWMQRr2tbHkJP/Yn7Y0npb3ZBs4A==",
|
|
4594
4440
|
"requires": {
|
|
4595
|
-
"mime-db": "1.
|
|
4441
|
+
"mime-db": "1.51.0"
|
|
4596
4442
|
}
|
|
4597
4443
|
},
|
|
4598
4444
|
"mimer": {
|
|
@@ -4667,9 +4513,9 @@
|
|
|
4667
4513
|
"integrity": "sha512-kHmoybcPV8Sqy59DwNDY3Jefr64lK/by/da0ViFcuA4DH0vQg5Q6Ze5VimxkfQNSC+Mls/Kx53s7TjP1RhFEDQ=="
|
|
4668
4514
|
},
|
|
4669
4515
|
"moment-timezone": {
|
|
4670
|
-
"version": "0.5.
|
|
4671
|
-
"resolved": "https://registry.npmjs.org/moment-timezone/-/moment-timezone-0.5.
|
|
4672
|
-
"integrity": "sha512-
|
|
4516
|
+
"version": "0.5.34",
|
|
4517
|
+
"resolved": "https://registry.npmjs.org/moment-timezone/-/moment-timezone-0.5.34.tgz",
|
|
4518
|
+
"integrity": "sha512-3zAEHh2hKUs3EXLESx/wsgw6IQdusOT8Bxm3D9UrHPQR7zlMmzwybC8zHEM1tQ4LJwP7fcxrWr8tuBg05fFCbg==",
|
|
4673
4519
|
"requires": {
|
|
4674
4520
|
"moment": ">= 2.9.0"
|
|
4675
4521
|
}
|
|
@@ -4935,9 +4781,9 @@
|
|
|
4935
4781
|
}
|
|
4936
4782
|
},
|
|
4937
4783
|
"nodemailer": {
|
|
4938
|
-
"version": "6.7.
|
|
4939
|
-
"resolved": "https://registry.npmjs.org/nodemailer/-/nodemailer-6.7.
|
|
4940
|
-
"integrity": "sha512-
|
|
4784
|
+
"version": "6.7.1",
|
|
4785
|
+
"resolved": "https://registry.npmjs.org/nodemailer/-/nodemailer-6.7.1.tgz",
|
|
4786
|
+
"integrity": "sha512-E1C8G3rnXrGjznwGP1k+OrW5k4rl0XtqTEB19f7vtJAMYwfxZVSsAu2iY5xJkrZsbVYr6PwwAwRmFlakPoFC0A=="
|
|
4941
4787
|
},
|
|
4942
4788
|
"nopt": {
|
|
4943
4789
|
"version": "3.0.6",
|
|
@@ -5043,7 +4889,8 @@
|
|
|
5043
4889
|
"obuf": {
|
|
5044
4890
|
"version": "1.1.2",
|
|
5045
4891
|
"resolved": "https://registry.npmjs.org/obuf/-/obuf-1.1.2.tgz",
|
|
5046
|
-
"integrity": "sha512-PX1wu0AmAdPqOL1mWhqmlOd8kOIZQwGZw6rh7uby9fTc5lhaOWFLX3I6R1hrF9k3zUY40e6igsLGkDXK92LJNg=="
|
|
4892
|
+
"integrity": "sha512-PX1wu0AmAdPqOL1mWhqmlOd8kOIZQwGZw6rh7uby9fTc5lhaOWFLX3I6R1hrF9k3zUY40e6igsLGkDXK92LJNg==",
|
|
4893
|
+
"optional": true
|
|
5047
4894
|
},
|
|
5048
4895
|
"on-finished": {
|
|
5049
4896
|
"version": "2.3.0",
|
|
@@ -5322,6 +5169,7 @@
|
|
|
5322
5169
|
"version": "5.1.1",
|
|
5323
5170
|
"resolved": "https://registry.npmjs.org/pg-copy-streams/-/pg-copy-streams-5.1.1.tgz",
|
|
5324
5171
|
"integrity": "sha512-ieW6JuiIo/4WQ7n+Wevr9zYvpM1AwUs6EwNCCA0VgKZ6ZQ7Y9k3IW00vqc6svX9FtENhbaTbLN7MxekraCrbfg==",
|
|
5172
|
+
"optional": true,
|
|
5325
5173
|
"requires": {
|
|
5326
5174
|
"obuf": "^1.1.2"
|
|
5327
5175
|
}
|
|
@@ -5824,15 +5672,6 @@
|
|
|
5824
5672
|
"uuid": "^3.3.2"
|
|
5825
5673
|
},
|
|
5826
5674
|
"dependencies": {
|
|
5827
|
-
"tough-cookie": {
|
|
5828
|
-
"version": "2.5.0",
|
|
5829
|
-
"resolved": "https://registry.npmjs.org/tough-cookie/-/tough-cookie-2.5.0.tgz",
|
|
5830
|
-
"integrity": "sha512-nlLsUzgm1kfLXSXfRZMc1KLAugd4hqJHDTvc2hDIwS3mZAfMEuMbc03SujMF+GEcpaX/qboeycw6iO8JwVv2+g==",
|
|
5831
|
-
"requires": {
|
|
5832
|
-
"psl": "^1.1.28",
|
|
5833
|
-
"punycode": "^2.1.1"
|
|
5834
|
-
}
|
|
5835
|
-
},
|
|
5836
5675
|
"uuid": {
|
|
5837
5676
|
"version": "3.4.0",
|
|
5838
5677
|
"resolved": "https://registry.npmjs.org/uuid/-/uuid-3.4.0.tgz",
|
|
@@ -5856,17 +5695,6 @@
|
|
|
5856
5695
|
"request-promise-core": "1.1.4",
|
|
5857
5696
|
"stealthy-require": "^1.1.1",
|
|
5858
5697
|
"tough-cookie": "^2.3.3"
|
|
5859
|
-
},
|
|
5860
|
-
"dependencies": {
|
|
5861
|
-
"tough-cookie": {
|
|
5862
|
-
"version": "2.5.0",
|
|
5863
|
-
"resolved": "https://registry.npmjs.org/tough-cookie/-/tough-cookie-2.5.0.tgz",
|
|
5864
|
-
"integrity": "sha512-nlLsUzgm1kfLXSXfRZMc1KLAugd4hqJHDTvc2hDIwS3mZAfMEuMbc03SujMF+GEcpaX/qboeycw6iO8JwVv2+g==",
|
|
5865
|
-
"requires": {
|
|
5866
|
-
"psl": "^1.1.28",
|
|
5867
|
-
"punycode": "^2.1.1"
|
|
5868
|
-
}
|
|
5869
|
-
}
|
|
5870
5698
|
}
|
|
5871
5699
|
},
|
|
5872
5700
|
"require-directory": {
|
|
@@ -6156,9 +5984,9 @@
|
|
|
6156
5984
|
}
|
|
6157
5985
|
},
|
|
6158
5986
|
"socket.io-adapter": {
|
|
6159
|
-
"version": "2.3.
|
|
6160
|
-
"resolved": "https://registry.npmjs.org/socket.io-adapter/-/socket.io-adapter-2.3.
|
|
6161
|
-
"integrity": "sha512-
|
|
5987
|
+
"version": "2.3.3",
|
|
5988
|
+
"resolved": "https://registry.npmjs.org/socket.io-adapter/-/socket.io-adapter-2.3.3.tgz",
|
|
5989
|
+
"integrity": "sha512-Qd/iwn3VskrpNO60BeRyCyr8ZWw9CPZyitW4AQwmRZ8zCiyDiL+znRnWX6tDHXnWn1sJrM1+b6Mn6wEDJJ4aYQ=="
|
|
6162
5990
|
},
|
|
6163
5991
|
"socket.io-parser": {
|
|
6164
5992
|
"version": "4.0.4",
|
|
@@ -6470,9 +6298,9 @@
|
|
|
6470
6298
|
"integrity": "sha512-9QNk5KwDF+Bvz+PyObkmSYjI5ksVUYtjW7AU22r2NKcfLJcXp96hkDWU3+XndOsUb+AQ9QhfzfCT2O+CNWT5Tw=="
|
|
6471
6299
|
},
|
|
6472
6300
|
"systeminformation": {
|
|
6473
|
-
"version": "5.9.
|
|
6474
|
-
"resolved": "https://registry.npmjs.org/systeminformation/-/systeminformation-5.9.
|
|
6475
|
-
"integrity": "sha512-
|
|
6301
|
+
"version": "5.9.15",
|
|
6302
|
+
"resolved": "https://registry.npmjs.org/systeminformation/-/systeminformation-5.9.15.tgz",
|
|
6303
|
+
"integrity": "sha512-0tUYPXffFEsme8n/iTAMk09jpGgqtaGf46QOx7oFmiON9zDUQCahfSymQaCRr4tsq9BkKolaOzp8nqMVNrKIqQ=="
|
|
6476
6304
|
},
|
|
6477
6305
|
"tar": {
|
|
6478
6306
|
"version": "2.2.2",
|
|
@@ -6543,9 +6371,9 @@
|
|
|
6543
6371
|
}
|
|
6544
6372
|
},
|
|
6545
6373
|
"tmp-promise": {
|
|
6546
|
-
"version": "3.0.
|
|
6547
|
-
"resolved": "https://registry.npmjs.org/tmp-promise/-/tmp-promise-3.0.
|
|
6548
|
-
"integrity": "sha512-
|
|
6374
|
+
"version": "3.0.3",
|
|
6375
|
+
"resolved": "https://registry.npmjs.org/tmp-promise/-/tmp-promise-3.0.3.tgz",
|
|
6376
|
+
"integrity": "sha512-RwM7MoPojPxsOBYnyd2hy0bxtIlVrihNs9pj5SUvY8Zz1sQcQG2tG1hSr8PDxfgEB8RNKDhqbIlroIarSNDNsQ==",
|
|
6549
6377
|
"requires": {
|
|
6550
6378
|
"tmp": "^0.2.0"
|
|
6551
6379
|
},
|
|
@@ -6592,20 +6420,12 @@
|
|
|
6592
6420
|
"integrity": "sha512-yaOH/Pk/VEhBWWTlhI+qXxDFXlejDGcQipMlyxda9nthulaxLZUNcUqFxokp0vcYnvteJln5FNQDRrxj3YcbVw=="
|
|
6593
6421
|
},
|
|
6594
6422
|
"tough-cookie": {
|
|
6595
|
-
"version": "
|
|
6596
|
-
"resolved": "https://registry.npmjs.org/tough-cookie/-/tough-cookie-
|
|
6597
|
-
"integrity": "sha512-
|
|
6423
|
+
"version": "2.5.0",
|
|
6424
|
+
"resolved": "https://registry.npmjs.org/tough-cookie/-/tough-cookie-2.5.0.tgz",
|
|
6425
|
+
"integrity": "sha512-nlLsUzgm1kfLXSXfRZMc1KLAugd4hqJHDTvc2hDIwS3mZAfMEuMbc03SujMF+GEcpaX/qboeycw6iO8JwVv2+g==",
|
|
6598
6426
|
"requires": {
|
|
6599
|
-
"ip-regex": "^2.1.0",
|
|
6600
6427
|
"psl": "^1.1.28",
|
|
6601
6428
|
"punycode": "^2.1.1"
|
|
6602
|
-
},
|
|
6603
|
-
"dependencies": {
|
|
6604
|
-
"ip-regex": {
|
|
6605
|
-
"version": "2.1.0",
|
|
6606
|
-
"resolved": "https://registry.npmjs.org/ip-regex/-/ip-regex-2.1.0.tgz",
|
|
6607
|
-
"integrity": "sha1-+ni/XS5pE8kRzp+BnuUUa7bYROk="
|
|
6608
|
-
}
|
|
6609
6429
|
}
|
|
6610
6430
|
},
|
|
6611
6431
|
"tr46": {
|
|
@@ -6764,6 +6584,13 @@
|
|
|
6764
6584
|
"assert-plus": "^1.0.0",
|
|
6765
6585
|
"core-util-is": "1.0.2",
|
|
6766
6586
|
"extsprintf": "^1.2.0"
|
|
6587
|
+
},
|
|
6588
|
+
"dependencies": {
|
|
6589
|
+
"core-util-is": {
|
|
6590
|
+
"version": "1.0.2",
|
|
6591
|
+
"resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.2.tgz",
|
|
6592
|
+
"integrity": "sha1-tf1UIgqivFq1eqtxQMlAdUUDwac="
|
|
6593
|
+
}
|
|
6767
6594
|
}
|
|
6768
6595
|
},
|
|
6769
6596
|
"w3c-hr-time": {
|
|
@@ -6879,8 +6706,9 @@
|
|
|
6879
6706
|
},
|
|
6880
6707
|
"dependencies": {
|
|
6881
6708
|
"ansi-regex": {
|
|
6882
|
-
"version": "5.0.
|
|
6883
|
-
"resolved": ""
|
|
6709
|
+
"version": "5.0.1",
|
|
6710
|
+
"resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz",
|
|
6711
|
+
"integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ=="
|
|
6884
6712
|
},
|
|
6885
6713
|
"is-fullwidth-code-point": {
|
|
6886
6714
|
"version": "3.0.0",
|
|
@@ -6888,21 +6716,21 @@
|
|
|
6888
6716
|
"integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg=="
|
|
6889
6717
|
},
|
|
6890
6718
|
"string-width": {
|
|
6891
|
-
"version": "4.2.
|
|
6892
|
-
"resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.
|
|
6893
|
-
"integrity": "sha512-
|
|
6719
|
+
"version": "4.2.3",
|
|
6720
|
+
"resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz",
|
|
6721
|
+
"integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==",
|
|
6894
6722
|
"requires": {
|
|
6895
6723
|
"emoji-regex": "^8.0.0",
|
|
6896
6724
|
"is-fullwidth-code-point": "^3.0.0",
|
|
6897
|
-
"strip-ansi": "^6.0.
|
|
6725
|
+
"strip-ansi": "^6.0.1"
|
|
6898
6726
|
}
|
|
6899
6727
|
},
|
|
6900
6728
|
"strip-ansi": {
|
|
6901
|
-
"version": "6.0.
|
|
6902
|
-
"resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.
|
|
6903
|
-
"integrity": "sha512-
|
|
6729
|
+
"version": "6.0.1",
|
|
6730
|
+
"resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz",
|
|
6731
|
+
"integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==",
|
|
6904
6732
|
"requires": {
|
|
6905
|
-
"ansi-regex": "^5.0.
|
|
6733
|
+
"ansi-regex": "^5.0.1"
|
|
6906
6734
|
}
|
|
6907
6735
|
}
|
|
6908
6736
|
}
|