@testomatio/reporter 0.8.0-beta.14 → 0.8.0-beta.15

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 ADDED
@@ -0,0 +1,239 @@
1
+ # 0.7.3
2
+
3
+ * CodeceptJS: Upload all traces and videos from artifacts
4
+ * Fixed reporting skipped test in XML
5
+ * added `--timelimit` option to `report-xml` command line
6
+
7
+ # 0.7.2
8
+
9
+ * Fixed uploading non-existing file
10
+
11
+ # 0.7.1
12
+
13
+ * Support for NUnit XML v3 format
14
+
15
+ # 0.7.0
16
+
17
+ * Support for `@cucumber/cucumber` (>= 7.0) added
18
+ * Initial support for C# and NUnit
19
+
20
+ # 0.6.10
21
+
22
+ * Fixed uploading multilpe artifacts in Playwright
23
+
24
+ # 0.6.9
25
+
26
+ * Fixed pending tests reports for Cypress
27
+
28
+ # 0.6.8
29
+ # 0.6.7
30
+
31
+ * Pytest: fixed creating suites from reports
32
+
33
+ # 0.6.6
34
+
35
+ * JUnit reporter: prefer suite title over testcase classname in a report
36
+
37
+ # 0.6.5
38
+
39
+ * Fixed test statuses for runs in JUnit reporter
40
+
41
+ # 0.6.4
42
+
43
+ * Added `TESTOMATIO_PROCEED=1` param to not close current run
44
+ * Fixed priority of commands from `npx @testomatio/reporter`
45
+
46
+ # 0.6.3
47
+
48
+ * Fixed `npx start-test-run` to launch commands
49
+
50
+ # 0.6.2
51
+
52
+ * Added `--env-file` option to load env variables from env file
53
+
54
+ # 0.6.1
55
+
56
+ * Fixed creating RunGroup with JUnit reporter
57
+
58
+ # 0.6.0
59
+
60
+ * JUnit reporter support
61
+
62
+ # 0.5.10
63
+
64
+ * Fixed reporting Scenario Outline in Cypress-Cucumber
65
+ * Fixed error reports for Cypress when running in Chrome
66
+
67
+ # 0.5.9
68
+
69
+ * Added environment on Cypress report
70
+
71
+ # 0.5.8
72
+
73
+ * Fixed Cypress.io reporting
74
+
75
+ # 0.5.7
76
+
77
+ * Fixed webdriverio artifacts
78
+
79
+ # 0.5.6
80
+
81
+ * Unmark failed CodeceptJS tests as skipped
82
+
83
+ # 0.5.5
84
+
85
+ * Fixed `BeforeSuite` failures in CodeceptJS
86
+
87
+ # 0.5.4
88
+
89
+ Added `TESTOMATIO_CREATE=1` option to create unmatched tests on report
90
+
91
+ ```
92
+ TESTOMATIO_CREATE=1 TESTOMATIO=apiKey npx codeceptjs run
93
+ ```
94
+
95
+ # 0.5.3
96
+
97
+ * Fixed parsing suites
98
+
99
+ # 0.5.2
100
+
101
+ * Fixed multiple upload of artifacts in Cypress.io
102
+
103
+ # 0.5.1
104
+
105
+ * Fixed Cypress.io to report tests inside nested suites
106
+
107
+ # 0.5.0
108
+
109
+ * Added Cypress.io plugin
110
+ * Added artifacts upload to webdriverio
111
+
112
+ # 0.4.6
113
+
114
+ - Fixed CodeceptJS reporter to report tests failed in hooks
115
+
116
+ # 0.4.5
117
+
118
+ - Fixed "Total XX artifacts publicly uploaded to S3 bucket" when no S3 bucket is configured
119
+ - Improved S3 connection error messages
120
+
121
+ # 0.4.4
122
+
123
+ - Fixed returning 0 exit code when a process fails when running tests in parallel via `start-test-run`. Previously was using the last exit code returned by a process. Currently prefers the highest exit code that was returned by a process.
124
+
125
+ # 0.4.3
126
+
127
+ - Added `TESTOMATIO_DISABLE_ARTIFACTS` env variable to disable publishing artifacts.
128
+
129
+ # 0.4.2
130
+
131
+ - print version of reporter
132
+ - print number of uploaded artifacts
133
+ - print access mode for uploaded artifacts
134
+
135
+ # 0.4.1
136
+
137
+ Added `global.testomatioArtifacts = []` array which can be used to add arbitrary artifacts to a report.
138
+
139
+ ```js
140
+ // inside a running test:
141
+ global.testomatioArtifacts.push('file/to/upload.png');
142
+ ```
143
+
144
+ # 0.4.0
145
+
146
+ - Playwright: Introduced playwright/test support with screenshots and video artifacts
147
+
148
+ > Known issues: reporting using projects configured in Playwright does not work yet
149
+
150
+ - CodeceptJS: added video uploads
151
+
152
+ # 0.3.16
153
+
154
+ - CodeceptJS: fixed reporting tests with empty steps (on retry)
155
+
156
+ # 0.3.15
157
+
158
+ - Finish Run via API:
159
+
160
+ ```
161
+ TESTOMATIO={apiKey} TESTOMATIO_RUN={runId} npx @testomatio/reporter@latest --finish
162
+ ```
163
+
164
+ # 0.3.14
165
+
166
+ - Create an empty Run via API:
167
+
168
+ ```
169
+ TESTOMATIO={apiKey} npx @testomatio/reporter@latest --launch
170
+ ```
171
+
172
+ # 0.3.13
173
+
174
+ - Checking for a valid report URL
175
+ - Sending unlimited data on test report
176
+
177
+ # 0.3.12
178
+
179
+ - Fixed submitting arbitrary data on a test run
180
+ - Jest: fixed sending errors with stack traces
181
+ - Cypress: fixed sending reports
182
+
183
+ # 0.3.11
184
+
185
+ - Fixed circular JSON reference when submitting data to Testomatio
186
+
187
+ # 0.3.10
188
+
189
+ - Minor fixes
190
+
191
+ # 0.3.9
192
+
193
+ - Making all reporters to run without API key
194
+
195
+ # 0.3.8
196
+
197
+ - Fixed `npx start-test-run` to work with empty API keys
198
+
199
+ # 0.3.7
200
+
201
+ - Fixed release
202
+
203
+ # 0.3.6
204
+
205
+ - Update title and rungroup on start for scheduled runs.
206
+
207
+ # 0.3.5
208
+
209
+ - Added `TESTOMATIO_RUN` environment variable to pass id of a specific run to report
210
+
211
+ # 0.3.4
212
+
213
+ - Minor fixes
214
+
215
+ # 0.3.3
216
+
217
+ - [CodeceptJS] Fixed stack trace reporting
218
+ - [CodeceptJS] Fixed displaying of nested steps
219
+ - [CodeceptJS][mocha] Added assertion diff to report
220
+
221
+ # 0.3.2
222
+
223
+ - Fixed error message for S3 uploading
224
+
225
+ # 0.3.1
226
+
227
+ - [CodeceptJS] Better formatter for nested structures and BDD tests
228
+
229
+ # 0.3.0
230
+
231
+ - Added `TESTOMATIO_TITLE` env variable to set a name for Run
232
+ - Added `TESTOMATIO_RUNGROUP_TITLE` env variable to attach Run to RunGroup
233
+ - Added `TESTOMATIO_ENV` env variable to attach additional env values to report
234
+ - [CodeceptJS] **CodeceptJS v3 support**
235
+ - [CodeceptJS] Dropped support for CodeceptJS 2
236
+ - [CodeceptJS] Added support for before hooks
237
+ - [CodeceptJS] Log of steps
238
+ - [CodeceptJS] Upload screenshots of failed tests to S3
239
+ - [CodeceptJS] Updated to use with parallel execution
package/lib/client.js CHANGED
@@ -44,7 +44,7 @@ class TestomatClient {
44
44
 
45
45
  global.testomatioArtifacts = [];
46
46
 
47
- this.queue = this.queue.then(() => Promise.all(this.pipes.map(p => p.createRun(runParams))));
47
+ this.queue = this.queue.then(() => Promise.all(this.pipes.map(p => p.createRun(runParams)))).catch(err => console.log(APP_PREFIX, err));;
48
48
 
49
49
  return this.queue;
50
50
  }
@@ -121,7 +121,7 @@ class TestomatClient {
121
121
  artifacts,
122
122
  };
123
123
 
124
- this.queue = this.queue.then(() => Promise.all(this.pipes.map(p => p.addTest(data))));
124
+ this.queue = this.queue.then(() => Promise.all(this.pipes.map(p => p.addTest(data)))).catch(err => console.log(APP_PREFIX, err));;
125
125
  return this.queue;
126
126
  }
127
127
 
@@ -141,7 +141,7 @@ class TestomatClient {
141
141
  if (isParallel) statusEvent += '_parallel';
142
142
  const runParams = { status, statusEvent }
143
143
 
144
- this.queue = this.queue.then(() => Promise.all(this.pipes.map(p => p.finishRun(runParams))));
144
+ this.queue = this.queue.then(() => Promise.all(this.pipes.map(p => p.finishRun(runParams)))).catch(err => console.log(APP_PREFIX, err));;
145
145
 
146
146
  if (upload.isArtifactsEnabled && this.totalUploaded > 0) {
147
147
  console.log(
package/lib/util.js CHANGED
@@ -137,7 +137,14 @@ const fetchSourceCode = (contents, opts = {}) => {
137
137
  }
138
138
  }
139
139
 
140
- const isSameTest = (test, t) => t.title == test.title && t.suite_title == test.suite_title && Object.values(t.example) == Object.values(test.example) && t.test_id == test.test_id
140
+ const isSameTest = (test, t) => {
141
+ return (typeof t === 'object')
142
+ && (typeof test === 'object')
143
+ && t.title == test.title
144
+ && t.suite_title == test.suite_title
145
+ && Object.values(t.example || {}) == Object.values(test.example || {})
146
+ && t.test_id == test.test_id
147
+ };
141
148
 
142
149
  module.exports = {
143
150
  parseTest,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@testomatio/reporter",
3
- "version": "0.8.0-beta.14",
3
+ "version": "0.8.0-beta.15",
4
4
  "description": "Testomatio Reporter Client",
5
5
  "main": "./lib/reporter.js",
6
6
  "repository": "git@github.com:testomatio/reporter.git",
@@ -0,0 +1,863 @@
1
+ {
2
+ "name": "testcafe-reporter-testomatio",
3
+ "version": "0.1.1",
4
+ "lockfileVersion": 1,
5
+ "requires": true,
6
+ "dependencies": {
7
+ "@devexpress/error-stack-parser": {
8
+ "version": "2.0.6",
9
+ "resolved": "https://registry.npmjs.org/@devexpress/error-stack-parser/-/error-stack-parser-2.0.6.tgz",
10
+ "integrity": "sha512-fneVypElGUH6Be39mlRZeAu00pccTlf4oVuzf9xPJD1cdEqI8NyAiQua/EW7lZdrbMUbgyXcJmfKPefhYius3A==",
11
+ "requires": {
12
+ "stackframe": "^1.1.1"
13
+ }
14
+ },
15
+ "@testomatio/reporter": {
16
+ "version": "0.6.10",
17
+ "resolved": "https://registry.npmjs.org/@testomatio/reporter/-/reporter-0.6.10.tgz",
18
+ "integrity": "sha512-wNzlldL8Jn45N1FHDT6wmhEfcjGgVKcKEvIdRaUqmbaG7x65TeqwqFz18vS8NDjEpqWe1AX4LPfRwuEKX2dpKw==",
19
+ "requires": {
20
+ "aws-sdk": "^2.1072.0",
21
+ "axios": "^0.25.0",
22
+ "callsite-record": "^4.1.4",
23
+ "chalk": "^4.1.0",
24
+ "commander": "^4.1.1",
25
+ "dotenv": "^16.0.1",
26
+ "fast-xml-parser": "^4.0.8",
27
+ "glob": "^8.0.3",
28
+ "has-flag": "^5.0.1",
29
+ "is-valid-path": "^0.1.1",
30
+ "json-cycle": "^1.3.0",
31
+ "lodash.memoize": "^4.1.2"
32
+ }
33
+ },
34
+ "@types/error-stack-parser": {
35
+ "version": "2.0.0",
36
+ "resolved": "https://registry.npmjs.org/@types/error-stack-parser/-/error-stack-parser-2.0.0.tgz",
37
+ "integrity": "sha512-O2ZQvaCuvqgpSOFzHST/VELij9sm5P84bouCz6z8DysloeY47JpeUyvv00TE0LrZPsG2qleUK00anUaLsvUMHQ==",
38
+ "requires": {
39
+ "error-stack-parser": "*"
40
+ }
41
+ },
42
+ "@types/lodash": {
43
+ "version": "4.14.185",
44
+ "resolved": "https://registry.npmjs.org/@types/lodash/-/lodash-4.14.185.tgz",
45
+ "integrity": "sha512-evMDG1bC4rgQg4ku9tKpuMh5iBNEwNa3tf9zRHdP1qlv+1WUg44xat4IxCE14gIpZRGUUWAx2VhItCZc25NfMA=="
46
+ },
47
+ "ansi-styles": {
48
+ "version": "3.2.1",
49
+ "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz",
50
+ "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==",
51
+ "requires": {
52
+ "color-convert": "^1.9.0"
53
+ }
54
+ },
55
+ "available-typed-arrays": {
56
+ "version": "1.0.5",
57
+ "resolved": "https://registry.npmjs.org/available-typed-arrays/-/available-typed-arrays-1.0.5.tgz",
58
+ "integrity": "sha512-DMD0KiN46eipeziST1LPP/STfDU0sufISXmjSgvVsoU2tqxctQeASejWcfNtxYKqETM1UxQ8sp2OrSBWpHY6sw=="
59
+ },
60
+ "aws-sdk": {
61
+ "version": "2.1223.0",
62
+ "resolved": "https://registry.npmjs.org/aws-sdk/-/aws-sdk-2.1223.0.tgz",
63
+ "integrity": "sha512-WmqGVW6Nq5O3hDYbK74Ixi99BG+fClug4FgtEHYuIq52bJggQc01LOz4ti5XqmdHQhki0OqQbRPTF1oEnNbcYw==",
64
+ "requires": {
65
+ "buffer": "4.9.2",
66
+ "events": "1.1.1",
67
+ "ieee754": "1.1.13",
68
+ "jmespath": "0.16.0",
69
+ "querystring": "0.2.0",
70
+ "sax": "1.2.1",
71
+ "url": "0.10.3",
72
+ "util": "^0.12.4",
73
+ "uuid": "8.0.0",
74
+ "xml2js": "0.4.19"
75
+ }
76
+ },
77
+ "axios": {
78
+ "version": "0.25.0",
79
+ "resolved": "https://registry.npmjs.org/axios/-/axios-0.25.0.tgz",
80
+ "integrity": "sha512-cD8FOb0tRH3uuEe6+evtAbgJtfxr7ly3fQjYcMcuPlgkwVS9xboaVIpcDV+cYQe+yGykgwZCs1pzjntcGa6l5g==",
81
+ "requires": {
82
+ "follow-redirects": "^1.14.7"
83
+ }
84
+ },
85
+ "balanced-match": {
86
+ "version": "1.0.2",
87
+ "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz",
88
+ "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw=="
89
+ },
90
+ "base64-js": {
91
+ "version": "1.5.1",
92
+ "resolved": "https://registry.npmjs.org/base64-js/-/base64-js-1.5.1.tgz",
93
+ "integrity": "sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA=="
94
+ },
95
+ "brace-expansion": {
96
+ "version": "2.0.1",
97
+ "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz",
98
+ "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==",
99
+ "requires": {
100
+ "balanced-match": "^1.0.0"
101
+ }
102
+ },
103
+ "buffer": {
104
+ "version": "4.9.2",
105
+ "resolved": "https://registry.npmjs.org/buffer/-/buffer-4.9.2.tgz",
106
+ "integrity": "sha512-xq+q3SRMOxGivLhBNaUdC64hDTQwejJ+H0T/NB1XMtTVEwNTrfFF3gAxiyW0Bu/xWEGhjVKgUcMhCrUy2+uCWg==",
107
+ "requires": {
108
+ "base64-js": "^1.0.2",
109
+ "ieee754": "^1.1.4",
110
+ "isarray": "^1.0.0"
111
+ }
112
+ },
113
+ "call-bind": {
114
+ "version": "1.0.2",
115
+ "resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.2.tgz",
116
+ "integrity": "sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA==",
117
+ "requires": {
118
+ "function-bind": "^1.1.1",
119
+ "get-intrinsic": "^1.0.2"
120
+ }
121
+ },
122
+ "callsite": {
123
+ "version": "1.0.0",
124
+ "resolved": "https://registry.npmjs.org/callsite/-/callsite-1.0.0.tgz",
125
+ "integrity": "sha512-0vdNRFXn5q+dtOqjfFtmtlI9N2eVZ7LMyEV2iKC5mEEFvSg/69Ml6b/WU2qF8W1nLRa0wiSrDT3Y5jOHZCwKPQ=="
126
+ },
127
+ "callsite-record": {
128
+ "version": "4.1.4",
129
+ "resolved": "https://registry.npmjs.org/callsite-record/-/callsite-record-4.1.4.tgz",
130
+ "integrity": "sha512-dJDrDR/pDvsf7GaDAQB+ZVmM0zEHU7I3km5EtwxmTVBwaJuOy+dmTN63/u3Lbm0gDdQN4skEtKa67Oety2dGIA==",
131
+ "requires": {
132
+ "@devexpress/error-stack-parser": "^2.0.6",
133
+ "@types/error-stack-parser": "^2.0.0",
134
+ "@types/lodash": "^4.14.72",
135
+ "callsite": "^1.0.0",
136
+ "chalk": "^2.4.0",
137
+ "highlight-es": "^1.0.0",
138
+ "lodash": "4.6.1 || ^4.16.1",
139
+ "pinkie-promise": "^2.0.0"
140
+ },
141
+ "dependencies": {
142
+ "chalk": {
143
+ "version": "2.4.2",
144
+ "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz",
145
+ "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==",
146
+ "requires": {
147
+ "ansi-styles": "^3.2.1",
148
+ "escape-string-regexp": "^1.0.5",
149
+ "supports-color": "^5.3.0"
150
+ }
151
+ }
152
+ }
153
+ },
154
+ "chalk": {
155
+ "version": "4.1.2",
156
+ "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz",
157
+ "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==",
158
+ "requires": {
159
+ "ansi-styles": "^4.1.0",
160
+ "supports-color": "^7.1.0"
161
+ },
162
+ "dependencies": {
163
+ "ansi-styles": {
164
+ "version": "4.3.0",
165
+ "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz",
166
+ "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
167
+ "requires": {
168
+ "color-convert": "^2.0.1"
169
+ }
170
+ },
171
+ "color-convert": {
172
+ "version": "2.0.1",
173
+ "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz",
174
+ "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
175
+ "requires": {
176
+ "color-name": "~1.1.4"
177
+ }
178
+ },
179
+ "color-name": {
180
+ "version": "1.1.4",
181
+ "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz",
182
+ "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA=="
183
+ },
184
+ "has-flag": {
185
+ "version": "4.0.0",
186
+ "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz",
187
+ "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ=="
188
+ },
189
+ "supports-color": {
190
+ "version": "7.2.0",
191
+ "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz",
192
+ "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==",
193
+ "requires": {
194
+ "has-flag": "^4.0.0"
195
+ }
196
+ }
197
+ }
198
+ },
199
+ "color-convert": {
200
+ "version": "1.9.3",
201
+ "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz",
202
+ "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==",
203
+ "requires": {
204
+ "color-name": "1.1.3"
205
+ }
206
+ },
207
+ "color-name": {
208
+ "version": "1.1.3",
209
+ "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz",
210
+ "integrity": "sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw=="
211
+ },
212
+ "commander": {
213
+ "version": "4.1.1",
214
+ "resolved": "https://registry.npmjs.org/commander/-/commander-4.1.1.tgz",
215
+ "integrity": "sha512-NOKm8xhkzAjzFx8B2v5OAHT+u5pRQc2UCa2Vq9jYL/31o2wi9mxBA7LIFs3sV5VSC49z6pEhfbMULvShKj26WA=="
216
+ },
217
+ "define-properties": {
218
+ "version": "1.1.4",
219
+ "resolved": "https://registry.npmjs.org/define-properties/-/define-properties-1.1.4.tgz",
220
+ "integrity": "sha512-uckOqKcfaVvtBdsVkdPv3XjveQJsNQqmhXgRi8uhvWWuPYZCNlzT8qAyblUgNoXdHdjMTzAqeGjAoli8f+bzPA==",
221
+ "requires": {
222
+ "has-property-descriptors": "^1.0.0",
223
+ "object-keys": "^1.1.1"
224
+ }
225
+ },
226
+ "dotenv": {
227
+ "version": "16.0.2",
228
+ "resolved": "https://registry.npmjs.org/dotenv/-/dotenv-16.0.2.tgz",
229
+ "integrity": "sha512-JvpYKUmzQhYoIFgK2MOnF3bciIZoItIIoryihy0rIA+H4Jy0FmgyKYAHCTN98P5ybGSJcIFbh6QKeJdtZd1qhA=="
230
+ },
231
+ "error-stack-parser": {
232
+ "version": "2.1.4",
233
+ "resolved": "https://registry.npmjs.org/error-stack-parser/-/error-stack-parser-2.1.4.tgz",
234
+ "integrity": "sha512-Sk5V6wVazPhq5MhpO+AUxJn5x7XSXGl1R93Vn7i+zS15KDVxQijejNCrz8340/2bgLBjR9GtEG8ZVKONDjcqGQ==",
235
+ "requires": {
236
+ "stackframe": "^1.3.4"
237
+ }
238
+ },
239
+ "es-abstract": {
240
+ "version": "1.20.3",
241
+ "resolved": "https://registry.npmjs.org/es-abstract/-/es-abstract-1.20.3.tgz",
242
+ "integrity": "sha512-AyrnaKVpMzljIdwjzrj+LxGmj8ik2LckwXacHqrJJ/jxz6dDDBcZ7I7nlHM0FvEW8MfbWJwOd+yT2XzYW49Frw==",
243
+ "requires": {
244
+ "call-bind": "^1.0.2",
245
+ "es-to-primitive": "^1.2.1",
246
+ "function-bind": "^1.1.1",
247
+ "function.prototype.name": "^1.1.5",
248
+ "get-intrinsic": "^1.1.3",
249
+ "get-symbol-description": "^1.0.0",
250
+ "has": "^1.0.3",
251
+ "has-property-descriptors": "^1.0.0",
252
+ "has-symbols": "^1.0.3",
253
+ "internal-slot": "^1.0.3",
254
+ "is-callable": "^1.2.6",
255
+ "is-negative-zero": "^2.0.2",
256
+ "is-regex": "^1.1.4",
257
+ "is-shared-array-buffer": "^1.0.2",
258
+ "is-string": "^1.0.7",
259
+ "is-weakref": "^1.0.2",
260
+ "object-inspect": "^1.12.2",
261
+ "object-keys": "^1.1.1",
262
+ "object.assign": "^4.1.4",
263
+ "regexp.prototype.flags": "^1.4.3",
264
+ "safe-regex-test": "^1.0.0",
265
+ "string.prototype.trimend": "^1.0.5",
266
+ "string.prototype.trimstart": "^1.0.5",
267
+ "unbox-primitive": "^1.0.2"
268
+ }
269
+ },
270
+ "es-to-primitive": {
271
+ "version": "1.2.1",
272
+ "resolved": "https://registry.npmjs.org/es-to-primitive/-/es-to-primitive-1.2.1.tgz",
273
+ "integrity": "sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==",
274
+ "requires": {
275
+ "is-callable": "^1.1.4",
276
+ "is-date-object": "^1.0.1",
277
+ "is-symbol": "^1.0.2"
278
+ }
279
+ },
280
+ "escape-string-regexp": {
281
+ "version": "1.0.5",
282
+ "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz",
283
+ "integrity": "sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg=="
284
+ },
285
+ "events": {
286
+ "version": "1.1.1",
287
+ "resolved": "https://registry.npmjs.org/events/-/events-1.1.1.tgz",
288
+ "integrity": "sha512-kEcvvCBByWXGnZy6JUlgAp2gBIUjfCAV6P6TgT1/aaQKcmuAEC4OZTV1I4EWQLz2gxZw76atuVyvHhTxvi0Flw=="
289
+ },
290
+ "fast-xml-parser": {
291
+ "version": "4.0.10",
292
+ "resolved": "https://registry.npmjs.org/fast-xml-parser/-/fast-xml-parser-4.0.10.tgz",
293
+ "integrity": "sha512-mYMMIk7Ho1QOiedyvafdyPamn1Vlda+5n95lcn0g79UiCQoLQ2xfPQ8m3pcxBMpVaftYXtoIE2wrNTjmLQnnkg==",
294
+ "requires": {
295
+ "strnum": "^1.0.5"
296
+ }
297
+ },
298
+ "follow-redirects": {
299
+ "version": "1.15.2",
300
+ "resolved": "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.15.2.tgz",
301
+ "integrity": "sha512-VQLG33o04KaQ8uYi2tVNbdrWp1QWxNNea+nmIB4EVM28v0hmP17z7aG1+wAkNzVq4KeXTq3221ye5qTJP91JwA=="
302
+ },
303
+ "for-each": {
304
+ "version": "0.3.3",
305
+ "resolved": "https://registry.npmjs.org/for-each/-/for-each-0.3.3.tgz",
306
+ "integrity": "sha512-jqYfLp7mo9vIyQf8ykW2v7A+2N4QjeCeI5+Dz9XraiO1ign81wjiH7Fb9vSOWvQfNtmSa4H2RoQTrrXivdUZmw==",
307
+ "requires": {
308
+ "is-callable": "^1.1.3"
309
+ }
310
+ },
311
+ "fs.realpath": {
312
+ "version": "1.0.0",
313
+ "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz",
314
+ "integrity": "sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw=="
315
+ },
316
+ "function-bind": {
317
+ "version": "1.1.1",
318
+ "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz",
319
+ "integrity": "sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A=="
320
+ },
321
+ "function.prototype.name": {
322
+ "version": "1.1.5",
323
+ "resolved": "https://registry.npmjs.org/function.prototype.name/-/function.prototype.name-1.1.5.tgz",
324
+ "integrity": "sha512-uN7m/BzVKQnCUF/iW8jYea67v++2u7m5UgENbHRtdDVclOUP+FMPlCNdmk0h/ysGyo2tavMJEDqJAkJdRa1vMA==",
325
+ "requires": {
326
+ "call-bind": "^1.0.2",
327
+ "define-properties": "^1.1.3",
328
+ "es-abstract": "^1.19.0",
329
+ "functions-have-names": "^1.2.2"
330
+ }
331
+ },
332
+ "functions-have-names": {
333
+ "version": "1.2.3",
334
+ "resolved": "https://registry.npmjs.org/functions-have-names/-/functions-have-names-1.2.3.tgz",
335
+ "integrity": "sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ=="
336
+ },
337
+ "get-intrinsic": {
338
+ "version": "1.1.3",
339
+ "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.1.3.tgz",
340
+ "integrity": "sha512-QJVz1Tj7MS099PevUG5jvnt9tSkXN8K14dxQlikJuPt4uD9hHAHjLyLBiLR5zELelBdD9QNRAXZzsJx0WaDL9A==",
341
+ "requires": {
342
+ "function-bind": "^1.1.1",
343
+ "has": "^1.0.3",
344
+ "has-symbols": "^1.0.3"
345
+ }
346
+ },
347
+ "get-symbol-description": {
348
+ "version": "1.0.0",
349
+ "resolved": "https://registry.npmjs.org/get-symbol-description/-/get-symbol-description-1.0.0.tgz",
350
+ "integrity": "sha512-2EmdH1YvIQiZpltCNgkuiUnyukzxM/R6NDJX31Ke3BG1Nq5b0S2PhX59UKi9vZpPDQVdqn+1IcaAwnzTT5vCjw==",
351
+ "requires": {
352
+ "call-bind": "^1.0.2",
353
+ "get-intrinsic": "^1.1.1"
354
+ }
355
+ },
356
+ "glob": {
357
+ "version": "8.0.3",
358
+ "resolved": "https://registry.npmjs.org/glob/-/glob-8.0.3.tgz",
359
+ "integrity": "sha512-ull455NHSHI/Y1FqGaaYFaLGkNMMJbavMrEGFXG/PGrg6y7sutWHUHrz6gy6WEBH6akM1M414dWKCNs+IhKdiQ==",
360
+ "requires": {
361
+ "fs.realpath": "^1.0.0",
362
+ "inflight": "^1.0.4",
363
+ "inherits": "2",
364
+ "minimatch": "^5.0.1",
365
+ "once": "^1.3.0"
366
+ }
367
+ },
368
+ "has": {
369
+ "version": "1.0.3",
370
+ "resolved": "https://registry.npmjs.org/has/-/has-1.0.3.tgz",
371
+ "integrity": "sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==",
372
+ "requires": {
373
+ "function-bind": "^1.1.1"
374
+ }
375
+ },
376
+ "has-bigints": {
377
+ "version": "1.0.2",
378
+ "resolved": "https://registry.npmjs.org/has-bigints/-/has-bigints-1.0.2.tgz",
379
+ "integrity": "sha512-tSvCKtBr9lkF0Ex0aQiP9N+OpV4zi2r/Nee5VkRDbaqv35RLYMzbwQfFSZZH0kR+Rd6302UJZ2p/bJCEoR3VoQ=="
380
+ },
381
+ "has-flag": {
382
+ "version": "5.0.1",
383
+ "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-5.0.1.tgz",
384
+ "integrity": "sha512-CsNUt5x9LUdx6hnk/E2SZLsDyvfqANZSUq4+D3D8RzDJ2M+HDTIkF60ibS1vHaK55vzgiZw1bEPFG9yH7l33wA=="
385
+ },
386
+ "has-property-descriptors": {
387
+ "version": "1.0.0",
388
+ "resolved": "https://registry.npmjs.org/has-property-descriptors/-/has-property-descriptors-1.0.0.tgz",
389
+ "integrity": "sha512-62DVLZGoiEBDHQyqG4w9xCuZ7eJEwNmJRWw2VY84Oedb7WFcA27fiEVe8oUQx9hAUJ4ekurquucTGwsyO1XGdQ==",
390
+ "requires": {
391
+ "get-intrinsic": "^1.1.1"
392
+ }
393
+ },
394
+ "has-symbols": {
395
+ "version": "1.0.3",
396
+ "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.3.tgz",
397
+ "integrity": "sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A=="
398
+ },
399
+ "has-tostringtag": {
400
+ "version": "1.0.0",
401
+ "resolved": "https://registry.npmjs.org/has-tostringtag/-/has-tostringtag-1.0.0.tgz",
402
+ "integrity": "sha512-kFjcSNhnlGV1kyoGk7OXKSawH5JOb/LzUc5w9B02hOTO0dfFRjbHQKvg1d6cf3HbeUmtU9VbbV3qzZ2Teh97WQ==",
403
+ "requires": {
404
+ "has-symbols": "^1.0.2"
405
+ }
406
+ },
407
+ "highlight-es": {
408
+ "version": "1.0.3",
409
+ "resolved": "https://registry.npmjs.org/highlight-es/-/highlight-es-1.0.3.tgz",
410
+ "integrity": "sha512-s/SIX6yp/5S1p8aC/NRDC1fwEb+myGIfp8/TzZz0rtAv8fzsdX7vGl3Q1TrXCsczFq8DI3CBFBCySPClfBSdbg==",
411
+ "requires": {
412
+ "chalk": "^2.4.0",
413
+ "is-es2016-keyword": "^1.0.0",
414
+ "js-tokens": "^3.0.0"
415
+ },
416
+ "dependencies": {
417
+ "chalk": {
418
+ "version": "2.4.2",
419
+ "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz",
420
+ "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==",
421
+ "requires": {
422
+ "ansi-styles": "^3.2.1",
423
+ "escape-string-regexp": "^1.0.5",
424
+ "supports-color": "^5.3.0"
425
+ }
426
+ }
427
+ }
428
+ },
429
+ "ieee754": {
430
+ "version": "1.1.13",
431
+ "resolved": "https://registry.npmjs.org/ieee754/-/ieee754-1.1.13.tgz",
432
+ "integrity": "sha512-4vf7I2LYV/HaWerSo3XmlMkp5eZ83i+/CDluXi/IGTs/O1sejBNhTtnxzmRZfvOUqj7lZjqHkeTvpgSFDlWZTg=="
433
+ },
434
+ "inflight": {
435
+ "version": "1.0.6",
436
+ "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz",
437
+ "integrity": "sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==",
438
+ "requires": {
439
+ "once": "^1.3.0",
440
+ "wrappy": "1"
441
+ }
442
+ },
443
+ "inherits": {
444
+ "version": "2.0.4",
445
+ "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz",
446
+ "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ=="
447
+ },
448
+ "internal-slot": {
449
+ "version": "1.0.3",
450
+ "resolved": "https://registry.npmjs.org/internal-slot/-/internal-slot-1.0.3.tgz",
451
+ "integrity": "sha512-O0DB1JC/sPyZl7cIo78n5dR7eUSwwpYPiXRhTzNxZVAMUuB8vlnRFyLxdrVToks6XPLVnFfbzaVd5WLjhgg+vA==",
452
+ "requires": {
453
+ "get-intrinsic": "^1.1.0",
454
+ "has": "^1.0.3",
455
+ "side-channel": "^1.0.4"
456
+ }
457
+ },
458
+ "is-arguments": {
459
+ "version": "1.1.1",
460
+ "resolved": "https://registry.npmjs.org/is-arguments/-/is-arguments-1.1.1.tgz",
461
+ "integrity": "sha512-8Q7EARjzEnKpt/PCD7e1cgUS0a6X8u5tdSiMqXhojOdoV9TsMsiO+9VLC5vAmO8N7/GmXn7yjR8qnA6bVAEzfA==",
462
+ "requires": {
463
+ "call-bind": "^1.0.2",
464
+ "has-tostringtag": "^1.0.0"
465
+ }
466
+ },
467
+ "is-bigint": {
468
+ "version": "1.0.4",
469
+ "resolved": "https://registry.npmjs.org/is-bigint/-/is-bigint-1.0.4.tgz",
470
+ "integrity": "sha512-zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg==",
471
+ "requires": {
472
+ "has-bigints": "^1.0.1"
473
+ }
474
+ },
475
+ "is-boolean-object": {
476
+ "version": "1.1.2",
477
+ "resolved": "https://registry.npmjs.org/is-boolean-object/-/is-boolean-object-1.1.2.tgz",
478
+ "integrity": "sha512-gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA==",
479
+ "requires": {
480
+ "call-bind": "^1.0.2",
481
+ "has-tostringtag": "^1.0.0"
482
+ }
483
+ },
484
+ "is-callable": {
485
+ "version": "1.2.7",
486
+ "resolved": "https://registry.npmjs.org/is-callable/-/is-callable-1.2.7.tgz",
487
+ "integrity": "sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA=="
488
+ },
489
+ "is-date-object": {
490
+ "version": "1.0.5",
491
+ "resolved": "https://registry.npmjs.org/is-date-object/-/is-date-object-1.0.5.tgz",
492
+ "integrity": "sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ==",
493
+ "requires": {
494
+ "has-tostringtag": "^1.0.0"
495
+ }
496
+ },
497
+ "is-es2016-keyword": {
498
+ "version": "1.0.0",
499
+ "resolved": "https://registry.npmjs.org/is-es2016-keyword/-/is-es2016-keyword-1.0.0.tgz",
500
+ "integrity": "sha512-JtZWPUwjdbQ1LIo9OSZ8MdkWEve198ors27vH+RzUUvZXXZkzXCxFnlUhzWYxy5IexQSRiXVw9j2q/tHMmkVYQ=="
501
+ },
502
+ "is-extglob": {
503
+ "version": "1.0.0",
504
+ "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-1.0.0.tgz",
505
+ "integrity": "sha512-7Q+VbVafe6x2T+Tu6NcOf6sRklazEPmBoB3IWk3WdGZM2iGUwU/Oe3Wtq5lSEkDTTlpp8yx+5t4pzO/i9Ty1ww=="
506
+ },
507
+ "is-generator-function": {
508
+ "version": "1.0.10",
509
+ "resolved": "https://registry.npmjs.org/is-generator-function/-/is-generator-function-1.0.10.tgz",
510
+ "integrity": "sha512-jsEjy9l3yiXEQ+PsXdmBwEPcOxaXWLspKdplFUVI9vq1iZgIekeC0L167qeu86czQaxed3q/Uzuw0swL0irL8A==",
511
+ "requires": {
512
+ "has-tostringtag": "^1.0.0"
513
+ }
514
+ },
515
+ "is-glob": {
516
+ "version": "2.0.1",
517
+ "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-2.0.1.tgz",
518
+ "integrity": "sha512-a1dBeB19NXsf/E0+FHqkagizel/LQw2DjSQpvQrj3zT+jYPpaUCryPnrQajXKFLCMuf4I6FhRpaGtw4lPrG6Eg==",
519
+ "requires": {
520
+ "is-extglob": "^1.0.0"
521
+ }
522
+ },
523
+ "is-invalid-path": {
524
+ "version": "0.1.0",
525
+ "resolved": "https://registry.npmjs.org/is-invalid-path/-/is-invalid-path-0.1.0.tgz",
526
+ "integrity": "sha512-aZMG0T3F34mTg4eTdszcGXx54oiZ4NtHSft3hWNJMGJXUUqdIj3cOZuHcU0nCWWcY3jd7yRe/3AEm3vSNTpBGQ==",
527
+ "requires": {
528
+ "is-glob": "^2.0.0"
529
+ }
530
+ },
531
+ "is-negative-zero": {
532
+ "version": "2.0.2",
533
+ "resolved": "https://registry.npmjs.org/is-negative-zero/-/is-negative-zero-2.0.2.tgz",
534
+ "integrity": "sha512-dqJvarLawXsFbNDeJW7zAz8ItJ9cd28YufuuFzh0G8pNHjJMnY08Dv7sYX2uF5UpQOwieAeOExEYAWWfu7ZZUA=="
535
+ },
536
+ "is-number-object": {
537
+ "version": "1.0.7",
538
+ "resolved": "https://registry.npmjs.org/is-number-object/-/is-number-object-1.0.7.tgz",
539
+ "integrity": "sha512-k1U0IRzLMo7ZlYIfzRu23Oh6MiIFasgpb9X76eqfFZAqwH44UI4KTBvBYIZ1dSL9ZzChTB9ShHfLkR4pdW5krQ==",
540
+ "requires": {
541
+ "has-tostringtag": "^1.0.0"
542
+ }
543
+ },
544
+ "is-regex": {
545
+ "version": "1.1.4",
546
+ "resolved": "https://registry.npmjs.org/is-regex/-/is-regex-1.1.4.tgz",
547
+ "integrity": "sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg==",
548
+ "requires": {
549
+ "call-bind": "^1.0.2",
550
+ "has-tostringtag": "^1.0.0"
551
+ }
552
+ },
553
+ "is-shared-array-buffer": {
554
+ "version": "1.0.2",
555
+ "resolved": "https://registry.npmjs.org/is-shared-array-buffer/-/is-shared-array-buffer-1.0.2.tgz",
556
+ "integrity": "sha512-sqN2UDu1/0y6uvXyStCOzyhAjCSlHceFoMKJW8W9EU9cvic/QdsZ0kEU93HEy3IUEFZIiH/3w+AH/UQbPHNdhA==",
557
+ "requires": {
558
+ "call-bind": "^1.0.2"
559
+ }
560
+ },
561
+ "is-string": {
562
+ "version": "1.0.7",
563
+ "resolved": "https://registry.npmjs.org/is-string/-/is-string-1.0.7.tgz",
564
+ "integrity": "sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg==",
565
+ "requires": {
566
+ "has-tostringtag": "^1.0.0"
567
+ }
568
+ },
569
+ "is-symbol": {
570
+ "version": "1.0.4",
571
+ "resolved": "https://registry.npmjs.org/is-symbol/-/is-symbol-1.0.4.tgz",
572
+ "integrity": "sha512-C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg==",
573
+ "requires": {
574
+ "has-symbols": "^1.0.2"
575
+ }
576
+ },
577
+ "is-typed-array": {
578
+ "version": "1.1.9",
579
+ "resolved": "https://registry.npmjs.org/is-typed-array/-/is-typed-array-1.1.9.tgz",
580
+ "integrity": "sha512-kfrlnTTn8pZkfpJMUgYD7YZ3qzeJgWUn8XfVYBARc4wnmNOmLbmuuaAs3q5fvB0UJOn6yHAKaGTPM7d6ezoD/A==",
581
+ "requires": {
582
+ "available-typed-arrays": "^1.0.5",
583
+ "call-bind": "^1.0.2",
584
+ "es-abstract": "^1.20.0",
585
+ "for-each": "^0.3.3",
586
+ "has-tostringtag": "^1.0.0"
587
+ }
588
+ },
589
+ "is-valid-path": {
590
+ "version": "0.1.1",
591
+ "resolved": "https://registry.npmjs.org/is-valid-path/-/is-valid-path-0.1.1.tgz",
592
+ "integrity": "sha512-+kwPrVDu9Ms03L90Qaml+79+6DZHqHyRoANI6IsZJ/g8frhnfchDOBCa0RbQ6/kdHt5CS5OeIEyrYznNuVN+8A==",
593
+ "requires": {
594
+ "is-invalid-path": "^0.1.0"
595
+ }
596
+ },
597
+ "is-weakref": {
598
+ "version": "1.0.2",
599
+ "resolved": "https://registry.npmjs.org/is-weakref/-/is-weakref-1.0.2.tgz",
600
+ "integrity": "sha512-qctsuLZmIQ0+vSSMfoVvyFe2+GSEvnmZ2ezTup1SBse9+twCCeial6EEi3Nc2KFcf6+qz2FBPnjXsk8xhKSaPQ==",
601
+ "requires": {
602
+ "call-bind": "^1.0.2"
603
+ }
604
+ },
605
+ "isarray": {
606
+ "version": "1.0.0",
607
+ "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz",
608
+ "integrity": "sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ=="
609
+ },
610
+ "jmespath": {
611
+ "version": "0.16.0",
612
+ "resolved": "https://registry.npmjs.org/jmespath/-/jmespath-0.16.0.tgz",
613
+ "integrity": "sha512-9FzQjJ7MATs1tSpnco1K6ayiYE3figslrXA72G2HQ/n76RzvYlofyi5QM+iX4YRs/pu3yzxlVQSST23+dMDknw=="
614
+ },
615
+ "js-tokens": {
616
+ "version": "3.0.2",
617
+ "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-3.0.2.tgz",
618
+ "integrity": "sha512-RjTcuD4xjtthQkaWH7dFlH85L+QaVtSoOyGdZ3g6HFhS9dFNDfLyqgm2NFe2X6cQpeFmt0452FJjFG5UameExg=="
619
+ },
620
+ "json-cycle": {
621
+ "version": "1.3.0",
622
+ "resolved": "https://registry.npmjs.org/json-cycle/-/json-cycle-1.3.0.tgz",
623
+ "integrity": "sha512-FD/SedD78LCdSvJaOUQAXseT8oQBb5z6IVYaQaCrVUlu9zOAr1BDdKyVYQaSD/GDsAMrXpKcOyBD4LIl8nfjHw=="
624
+ },
625
+ "lodash": {
626
+ "version": "4.17.21",
627
+ "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz",
628
+ "integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg=="
629
+ },
630
+ "lodash.memoize": {
631
+ "version": "4.1.2",
632
+ "resolved": "https://registry.npmjs.org/lodash.memoize/-/lodash.memoize-4.1.2.tgz",
633
+ "integrity": "sha512-t7j+NzmgnQzTAYXcsHYLgimltOV1MXHtlOWf6GjL9Kj8GK5FInw5JotxvbOs+IvV1/Dzo04/fCGfLVs7aXb4Ag=="
634
+ },
635
+ "minimatch": {
636
+ "version": "5.1.0",
637
+ "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-5.1.0.tgz",
638
+ "integrity": "sha512-9TPBGGak4nHfGZsPBohm9AWg6NoT7QTCehS3BIJABslyZbzxfV78QM2Y6+i741OPZIafFAaiiEMh5OyIrJPgtg==",
639
+ "requires": {
640
+ "brace-expansion": "^2.0.1"
641
+ }
642
+ },
643
+ "object-inspect": {
644
+ "version": "1.12.2",
645
+ "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.12.2.tgz",
646
+ "integrity": "sha512-z+cPxW0QGUp0mcqcsgQyLVRDoXFQbXOwBaqyF7VIgI4TWNQsDHrBpUQslRmIfAoYWdYzs6UlKJtB2XJpTaNSpQ=="
647
+ },
648
+ "object-keys": {
649
+ "version": "1.1.1",
650
+ "resolved": "https://registry.npmjs.org/object-keys/-/object-keys-1.1.1.tgz",
651
+ "integrity": "sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA=="
652
+ },
653
+ "object.assign": {
654
+ "version": "4.1.4",
655
+ "resolved": "https://registry.npmjs.org/object.assign/-/object.assign-4.1.4.tgz",
656
+ "integrity": "sha512-1mxKf0e58bvyjSCtKYY4sRe9itRk3PJpquJOjeIkz885CczcI4IvJJDLPS72oowuSh+pBxUFROpX+TU++hxhZQ==",
657
+ "requires": {
658
+ "call-bind": "^1.0.2",
659
+ "define-properties": "^1.1.4",
660
+ "has-symbols": "^1.0.3",
661
+ "object-keys": "^1.1.1"
662
+ }
663
+ },
664
+ "once": {
665
+ "version": "1.4.0",
666
+ "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz",
667
+ "integrity": "sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==",
668
+ "requires": {
669
+ "wrappy": "1"
670
+ }
671
+ },
672
+ "pinkie": {
673
+ "version": "2.0.4",
674
+ "resolved": "https://registry.npmjs.org/pinkie/-/pinkie-2.0.4.tgz",
675
+ "integrity": "sha512-MnUuEycAemtSaeFSjXKW/aroV7akBbY+Sv+RkyqFjgAe73F+MR0TBWKBRDkmfWq/HiFmdavfZ1G7h4SPZXaCSg=="
676
+ },
677
+ "pinkie-promise": {
678
+ "version": "2.0.1",
679
+ "resolved": "https://registry.npmjs.org/pinkie-promise/-/pinkie-promise-2.0.1.tgz",
680
+ "integrity": "sha512-0Gni6D4UcLTbv9c57DfxDGdr41XfgUjqWZu492f0cIGr16zDU06BWP/RAEvOuo7CQ0CNjHaLlM59YJJFm3NWlw==",
681
+ "requires": {
682
+ "pinkie": "^2.0.0"
683
+ }
684
+ },
685
+ "punycode": {
686
+ "version": "1.3.2",
687
+ "resolved": "https://registry.npmjs.org/punycode/-/punycode-1.3.2.tgz",
688
+ "integrity": "sha512-RofWgt/7fL5wP1Y7fxE7/EmTLzQVnB0ycyibJ0OOHIlJqTNzglYFxVwETOcIoJqJmpDXJ9xImDv+Fq34F/d4Dw=="
689
+ },
690
+ "querystring": {
691
+ "version": "0.2.0",
692
+ "resolved": "https://registry.npmjs.org/querystring/-/querystring-0.2.0.tgz",
693
+ "integrity": "sha512-X/xY82scca2tau62i9mDyU9K+I+djTMUsvwf7xnUX5GLvVzgJybOJf4Y6o9Zx3oJK/LSXg5tTZBjwzqVPaPO2g=="
694
+ },
695
+ "regexp.prototype.flags": {
696
+ "version": "1.4.3",
697
+ "resolved": "https://registry.npmjs.org/regexp.prototype.flags/-/regexp.prototype.flags-1.4.3.tgz",
698
+ "integrity": "sha512-fjggEOO3slI6Wvgjwflkc4NFRCTZAu5CnNfBd5qOMYhWdn67nJBBu34/TkD++eeFmd8C9r9jfXJ27+nSiRkSUA==",
699
+ "requires": {
700
+ "call-bind": "^1.0.2",
701
+ "define-properties": "^1.1.3",
702
+ "functions-have-names": "^1.2.2"
703
+ }
704
+ },
705
+ "safe-buffer": {
706
+ "version": "5.2.1",
707
+ "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz",
708
+ "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ=="
709
+ },
710
+ "safe-regex-test": {
711
+ "version": "1.0.0",
712
+ "resolved": "https://registry.npmjs.org/safe-regex-test/-/safe-regex-test-1.0.0.tgz",
713
+ "integrity": "sha512-JBUUzyOgEwXQY1NuPtvcj/qcBDbDmEvWufhlnXZIm75DEHp+afM1r1ujJpJsV/gSM4t59tpDyPi1sd6ZaPFfsA==",
714
+ "requires": {
715
+ "call-bind": "^1.0.2",
716
+ "get-intrinsic": "^1.1.3",
717
+ "is-regex": "^1.1.4"
718
+ }
719
+ },
720
+ "sax": {
721
+ "version": "1.2.1",
722
+ "resolved": "https://registry.npmjs.org/sax/-/sax-1.2.1.tgz",
723
+ "integrity": "sha512-8I2a3LovHTOpm7NV5yOyO8IHqgVsfK4+UuySrXU8YXkSRX7k6hCV9b3HrkKCr3nMpgj+0bmocaJJWpvp1oc7ZA=="
724
+ },
725
+ "side-channel": {
726
+ "version": "1.0.4",
727
+ "resolved": "https://registry.npmjs.org/side-channel/-/side-channel-1.0.4.tgz",
728
+ "integrity": "sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw==",
729
+ "requires": {
730
+ "call-bind": "^1.0.0",
731
+ "get-intrinsic": "^1.0.2",
732
+ "object-inspect": "^1.9.0"
733
+ }
734
+ },
735
+ "stackframe": {
736
+ "version": "1.3.4",
737
+ "resolved": "https://registry.npmjs.org/stackframe/-/stackframe-1.3.4.tgz",
738
+ "integrity": "sha512-oeVtt7eWQS+Na6F//S4kJ2K2VbRlS9D43mAlMyVpVWovy9o+jfgH8O9agzANzaiLjclA0oYzUXEM4PurhSUChw=="
739
+ },
740
+ "string.prototype.trimend": {
741
+ "version": "1.0.5",
742
+ "resolved": "https://registry.npmjs.org/string.prototype.trimend/-/string.prototype.trimend-1.0.5.tgz",
743
+ "integrity": "sha512-I7RGvmjV4pJ7O3kdf+LXFpVfdNOxtCW/2C8f6jNiW4+PQchwxkCDzlk1/7p+Wl4bqFIZeF47qAHXLuHHWKAxog==",
744
+ "requires": {
745
+ "call-bind": "^1.0.2",
746
+ "define-properties": "^1.1.4",
747
+ "es-abstract": "^1.19.5"
748
+ }
749
+ },
750
+ "string.prototype.trimstart": {
751
+ "version": "1.0.5",
752
+ "resolved": "https://registry.npmjs.org/string.prototype.trimstart/-/string.prototype.trimstart-1.0.5.tgz",
753
+ "integrity": "sha512-THx16TJCGlsN0o6dl2o6ncWUsdgnLRSA23rRE5pyGBw/mLr3Ej/R2LaqCtgP8VNMGZsvMWnf9ooZPyY2bHvUFg==",
754
+ "requires": {
755
+ "call-bind": "^1.0.2",
756
+ "define-properties": "^1.1.4",
757
+ "es-abstract": "^1.19.5"
758
+ }
759
+ },
760
+ "strnum": {
761
+ "version": "1.0.5",
762
+ "resolved": "https://registry.npmjs.org/strnum/-/strnum-1.0.5.tgz",
763
+ "integrity": "sha512-J8bbNyKKXl5qYcR36TIO8W3mVGVHrmmxsd5PAItGkmyzwJvybiw2IVq5nqd0i4LSNSkB/sx9VHllbfFdr9k1JA=="
764
+ },
765
+ "supports-color": {
766
+ "version": "5.5.0",
767
+ "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz",
768
+ "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==",
769
+ "requires": {
770
+ "has-flag": "^3.0.0"
771
+ },
772
+ "dependencies": {
773
+ "has-flag": {
774
+ "version": "3.0.0",
775
+ "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz",
776
+ "integrity": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw=="
777
+ }
778
+ }
779
+ },
780
+ "unbox-primitive": {
781
+ "version": "1.0.2",
782
+ "resolved": "https://registry.npmjs.org/unbox-primitive/-/unbox-primitive-1.0.2.tgz",
783
+ "integrity": "sha512-61pPlCD9h51VoreyJ0BReideM3MDKMKnh6+V9L08331ipq6Q8OFXZYiqP6n/tbHx4s5I9uRhcye6BrbkizkBDw==",
784
+ "requires": {
785
+ "call-bind": "^1.0.2",
786
+ "has-bigints": "^1.0.2",
787
+ "has-symbols": "^1.0.3",
788
+ "which-boxed-primitive": "^1.0.2"
789
+ }
790
+ },
791
+ "url": {
792
+ "version": "0.10.3",
793
+ "resolved": "https://registry.npmjs.org/url/-/url-0.10.3.tgz",
794
+ "integrity": "sha512-hzSUW2q06EqL1gKM/a+obYHLIO6ct2hwPuviqTTOcfFVc61UbfJ2Q32+uGL/HCPxKqrdGB5QUwIe7UqlDgwsOQ==",
795
+ "requires": {
796
+ "punycode": "1.3.2",
797
+ "querystring": "0.2.0"
798
+ }
799
+ },
800
+ "util": {
801
+ "version": "0.12.4",
802
+ "resolved": "https://registry.npmjs.org/util/-/util-0.12.4.tgz",
803
+ "integrity": "sha512-bxZ9qtSlGUWSOy9Qa9Xgk11kSslpuZwaxCg4sNIDj6FLucDab2JxnHwyNTCpHMtK1MjoQiWQ6DiUMZYbSrO+Sw==",
804
+ "requires": {
805
+ "inherits": "^2.0.3",
806
+ "is-arguments": "^1.0.4",
807
+ "is-generator-function": "^1.0.7",
808
+ "is-typed-array": "^1.1.3",
809
+ "safe-buffer": "^5.1.2",
810
+ "which-typed-array": "^1.1.2"
811
+ }
812
+ },
813
+ "uuid": {
814
+ "version": "8.0.0",
815
+ "resolved": "https://registry.npmjs.org/uuid/-/uuid-8.0.0.tgz",
816
+ "integrity": "sha512-jOXGuXZAWdsTH7eZLtyXMqUb9EcWMGZNbL9YcGBJl4MH4nrxHmZJhEHvyLFrkxo+28uLb/NYRcStH48fnD0Vzw=="
817
+ },
818
+ "which-boxed-primitive": {
819
+ "version": "1.0.2",
820
+ "resolved": "https://registry.npmjs.org/which-boxed-primitive/-/which-boxed-primitive-1.0.2.tgz",
821
+ "integrity": "sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg==",
822
+ "requires": {
823
+ "is-bigint": "^1.0.1",
824
+ "is-boolean-object": "^1.1.0",
825
+ "is-number-object": "^1.0.4",
826
+ "is-string": "^1.0.5",
827
+ "is-symbol": "^1.0.3"
828
+ }
829
+ },
830
+ "which-typed-array": {
831
+ "version": "1.1.8",
832
+ "resolved": "https://registry.npmjs.org/which-typed-array/-/which-typed-array-1.1.8.tgz",
833
+ "integrity": "sha512-Jn4e5PItbcAHyLoRDwvPj1ypu27DJbtdYXUa5zsinrUx77Uvfb0cXwwnGMTn7cjUfhhqgVQnVJCwF+7cgU7tpw==",
834
+ "requires": {
835
+ "available-typed-arrays": "^1.0.5",
836
+ "call-bind": "^1.0.2",
837
+ "es-abstract": "^1.20.0",
838
+ "for-each": "^0.3.3",
839
+ "has-tostringtag": "^1.0.0",
840
+ "is-typed-array": "^1.1.9"
841
+ }
842
+ },
843
+ "wrappy": {
844
+ "version": "1.0.2",
845
+ "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz",
846
+ "integrity": "sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ=="
847
+ },
848
+ "xml2js": {
849
+ "version": "0.4.19",
850
+ "resolved": "https://registry.npmjs.org/xml2js/-/xml2js-0.4.19.tgz",
851
+ "integrity": "sha512-esZnJZJOiJR9wWKMyuvSE1y6Dq5LCuJanqhxslH2bxM6duahNZ+HMpCLhBQGZkbX6xRf8x1Y2eJlgt2q3qo49Q==",
852
+ "requires": {
853
+ "sax": ">=0.6.0",
854
+ "xmlbuilder": "~9.0.1"
855
+ }
856
+ },
857
+ "xmlbuilder": {
858
+ "version": "9.0.7",
859
+ "resolved": "https://registry.npmjs.org/xmlbuilder/-/xmlbuilder-9.0.7.tgz",
860
+ "integrity": "sha512-7YXTQc3P2l9+0rjaUbLwMKRhtmwg1M1eDf6nag7urC7pIPYLD9W/jmzQ4ptRSUbodw5S0jfoGTflLemQibSpeQ=="
861
+ }
862
+ }
863
+ }