aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
-rw-r--r--client/src/app/+admin/system/jobs/jobs.component.html4
-rw-r--r--client/src/app/header/search-typeahead.component.html8
-rw-r--r--package.json3
-rwxr-xr-xscripts/build/client.sh4
-rw-r--r--server/helpers/image-utils.ts11
-rw-r--r--shared/extra-utils/miscs/miscs.ts8
-rw-r--r--yarn.lock656
7 files changed, 497 insertions, 197 deletions
diff --git a/client/src/app/+admin/system/jobs/jobs.component.html b/client/src/app/+admin/system/jobs/jobs.component.html
index 038dfa522..596117ab7 100644
--- a/client/src/app/+admin/system/jobs/jobs.component.html
+++ b/client/src/app/+admin/system/jobs/jobs.component.html
@@ -36,7 +36,7 @@
36 <ng-template pTemplate="body" let-expanded="expanded" let-job> 36 <ng-template pTemplate="body" let-expanded="expanded" let-job>
37 <tr> 37 <tr>
38 <td class="expand-cell"> 38 <td class="expand-cell">
39 <span class="expander" [pRowToggler]="job" i18n-ngbTooltip ngbTooltip="More information"> 39 <span class="expander" [pRowToggler]="job" i18n-ngbTooltip ngbTooltip="More information" placement="top-left" container="body">
40 <i [ngClass]="expanded ? 'glyphicon glyphicon-menu-down' : 'glyphicon glyphicon-menu-right'"></i> 40 <i [ngClass]="expanded ? 'glyphicon glyphicon-menu-down' : 'glyphicon glyphicon-menu-right'"></i>
41 </span> 41 </span>
42 </td> 42 </td>
@@ -44,7 +44,7 @@
44 <td class="job-id" [title]="job.id">{{ job.id }}</td> 44 <td class="job-id" [title]="job.id">{{ job.id }}</td>
45 <td class="job-type">{{ job.type }}</td> 45 <td class="job-type">{{ job.type }}</td>
46 <td class="job-date">{{ job.createdAt }}</td> 46 <td class="job-date">{{ job.createdAt }}</td>
47 <td class="job-state" *ngIf="job.state === 'delayed'" class="text-muted"><span class="glyphicon glyphicon-repeat"></span> <span i18n>Delayed.</span></td> 47 <td class="job-state" *ngIf="job.state === 'delayed'" class="text-muted"><span class="glyphicon glyphicon-repeat"></span> <span i18n>Delayed</span></td>
48 <td class="job-state" *ngIf="job.state === 'waiting'" class="text-warning"><span class="glyphicon glyphicon-hourglass"></span> <span i18n>Will start soon...</span></td> 48 <td class="job-state" *ngIf="job.state === 'waiting'" class="text-warning"><span class="glyphicon glyphicon-hourglass"></span> <span i18n>Will start soon...</span></td>
49 <td class="job-state" *ngIf="job.state === 'active'" class="text-warning"><span class="glyphicon glyphicon-cog"></span> <span i18n>Running...</span></td> 49 <td class="job-state" *ngIf="job.state === 'active'" class="text-warning"><span class="glyphicon glyphicon-cog"></span> <span i18n>Running...</span></td>
50 <td class="job-state" *ngIf="job.state === 'completed'" class="text-success"><span class="glyphicon glyphicon-ok"></span> <span i18n>Finished</span></td> 50 <td class="job-state" *ngIf="job.state === 'completed'" class="text-success"><span class="glyphicon glyphicon-ok"></span> <span i18n>Finished</span></td>
diff --git a/client/src/app/header/search-typeahead.component.html b/client/src/app/header/search-typeahead.component.html
index 6d931db20..bbf3834c5 100644
--- a/client/src/app/header/search-typeahead.component.html
+++ b/client/src/app/header/search-typeahead.component.html
@@ -38,16 +38,16 @@
38 </div> 38 </div>
39 <ul> 39 <ul>
40 <li> 40 <li>
41 <em>@channel_id@domain</em> <span class="flex-auto text-muted" i18n>channel</span> 41 <em>@channel_id@domain</em> <span class="flex-auto text-muted" i18n>will list the matching channel</span>
42 </li> 42 </li>
43 <li> 43 <li>
44 <em>URL</em> <span class="text-muted" i18n>channel</span> 44 <em>URL</em> <span class="text-muted" i18n>will list the matching channel</span>
45 </li> 45 </li>
46 <li> 46 <li>
47 <em>UUID</em> <span class="text-muted" i18n>video</span> 47 <em>UUID</em> <span class="text-muted" i18n>will list the matching video</span>
48 </li> 48 </li>
49 </ul> 49 </ul>
50 <span class="text-muted" i18n>Any other text will return matching video or channel names.</span> 50 <span class="text-muted" i18n>Any other input will return matching video or channel names.</span>
51 </div> 51 </div>
52 </div> 52 </div>
53 53
diff --git a/package.json b/package.json
index f23462d46..a7be81f35 100644
--- a/package.json
+++ b/package.json
@@ -112,6 +112,7 @@
112 "ipaddr.js": "1.9.1", 112 "ipaddr.js": "1.9.1",
113 "is-cidr": "^3.0.0", 113 "is-cidr": "^3.0.0",
114 "iso-639-3": "^2.0.0", 114 "iso-639-3": "^2.0.0",
115 "jimp": "^0.12.1",
115 "js-yaml": "^3.5.4", 116 "js-yaml": "^3.5.4",
116 "jsonld": "~3.0.1", 117 "jsonld": "~3.0.1",
117 "lodash": "^4.17.10", 118 "lodash": "^4.17.10",
@@ -135,7 +136,6 @@
135 "scripty": "^2.0.0", 136 "scripty": "^2.0.0",
136 "sequelize": "5.21.5", 137 "sequelize": "5.21.5",
137 "sequelize-typescript": "^1.0.0-beta.4", 138 "sequelize-typescript": "^1.0.0-beta.4",
138 "sharp": "^0.25.2",
139 "sitemap": "^6.1.0", 139 "sitemap": "^6.1.0",
140 "socket.io": "^2.2.0", 140 "socket.io": "^2.2.0",
141 "srt-to-vtt": "^1.1.2", 141 "srt-to-vtt": "^1.1.2",
@@ -184,7 +184,6 @@
184 "@types/pem": "^1.9.3", 184 "@types/pem": "^1.9.3",
185 "@types/redis": "^2.8.5", 185 "@types/redis": "^2.8.5",
186 "@types/request": "^2.0.3", 186 "@types/request": "^2.0.3",
187 "@types/sharp": "^0.24.0",
188 "@types/socket.io": "^2.1.2", 187 "@types/socket.io": "^2.1.2",
189 "@types/supertest": "^2.0.3", 188 "@types/supertest": "^2.0.3",
190 "@types/validator": "^12.0.1", 189 "@types/validator": "^12.0.1",
diff --git a/scripts/build/client.sh b/scripts/build/client.sh
index a86404c6f..31b55dbf5 100755
--- a/scripts/build/client.sh
+++ b/scripts/build/client.sh
@@ -148,6 +148,10 @@ if [ -z ${1+x} ] || [ "$1" != "--light" ]; then
148 done 148 done
149fi 149fi
150 150
151if [ "$1" != "--analyze" ]; then
152 rm "./dist/en-US/stats-es2015.json"
153fi
154
151cd ../ && npm run build:embed && cd client/ 155cd ../ && npm run build:embed && cd client/
152 156
153# Copy runtime locales 157# Copy runtime locales
diff --git a/server/helpers/image-utils.ts b/server/helpers/image-utils.ts
index bd81aa3ba..b1c7d3d47 100644
--- a/server/helpers/image-utils.ts
+++ b/server/helpers/image-utils.ts
@@ -1,7 +1,7 @@
1import 'multer' 1import 'multer'
2import * as sharp from 'sharp'
3import { readFile, remove } from 'fs-extra' 2import { readFile, remove } from 'fs-extra'
4import { logger } from './logger' 3import { logger } from './logger'
4const Jimp = require('jimp')
5 5
6async function processImage ( 6async function processImage (
7 path: string, 7 path: string,
@@ -10,20 +10,21 @@ async function processImage (
10 keepOriginal = false 10 keepOriginal = false
11) { 11) {
12 if (path === destination) { 12 if (path === destination) {
13 throw new Error('Sharp needs an input path different that the output path.') 13 throw new Error('Jimp needs an input path different that the output path.')
14 } 14 }
15 15
16 logger.debug('Processing image %s to %s.', path, destination) 16 logger.debug('Processing image %s to %s.', path, destination)
17 17
18 // Avoid sharp cache 18 // Avoid sharp cache
19 const buf = await readFile(path) 19 const buf = await readFile(path)
20 const sharpInstance = sharp(buf) 20 const jimpInstance = await Jimp.read(buf)
21 21
22 await remove(destination) 22 await remove(destination)
23 23
24 await sharpInstance 24 await jimpInstance
25 .resize(newSize.width, newSize.height) 25 .resize(newSize.width, newSize.height)
26 .toFile(destination) 26 .quality(80)
27 .writeAsync(destination)
27 28
28 if (keepOriginal !== true) await remove(path) 29 if (keepOriginal !== true) await remove(path)
29} 30}
diff --git a/shared/extra-utils/miscs/miscs.ts b/shared/extra-utils/miscs/miscs.ts
index f4e86b85a..2239d5bcc 100644
--- a/shared/extra-utils/miscs/miscs.ts
+++ b/shared/extra-utils/miscs/miscs.ts
@@ -56,11 +56,11 @@ async function testImage (url: string, imageName: string, imagePath: string, ext
56 const body = res.body 56 const body = res.body
57 57
58 const data = await readFile(join(root(), 'server', 'tests', 'fixtures', imageName + extension)) 58 const data = await readFile(join(root(), 'server', 'tests', 'fixtures', imageName + extension))
59 const minLength = body.length - ((20 * body.length) / 100) 59 const minLength = body.length - ((30 * body.length) / 100)
60 const maxLength = body.length + ((20 * body.length) / 100) 60 const maxLength = body.length + ((30 * body.length) / 100)
61 61
62 expect(data.length).to.be.above(minLength) 62 expect(data.length).to.be.above(minLength, "the generated image is way smaller than the recorded fixture")
63 expect(data.length).to.be.below(maxLength) 63 expect(data.length).to.be.below(maxLength, "the generated image is way larger than the recorded fixture")
64} 64}
65 65
66function buildAbsoluteFixturePath (path: string, customCIPath = false) { 66function buildAbsoluteFixturePath (path: string, customCIPath = false) {
diff --git a/yarn.lock b/yarn.lock
index 633a7d32a..8e9e3c762 100644
--- a/yarn.lock
+++ b/yarn.lock
@@ -72,6 +72,13 @@
72 dependencies: 72 dependencies:
73 regenerator-runtime "^0.13.4" 73 regenerator-runtime "^0.13.4"
74 74
75"@babel/runtime@^7.7.2":
76 version "7.10.1"
77 resolved "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.10.1.tgz#b6eb75cac279588d3100baecd1b9894ea2840822"
78 integrity sha512-nQbbCbQc9u/rpg1XCxoMYQTbSMVZjCDxErQ1ClCn9Pvcmv1lGads19ep0a2VsEiIJeHqjZley6EQGEC3Yo1xMA==
79 dependencies:
80 regenerator-runtime "^0.13.4"
81
75"@hapi/boom@^9.0.0": 82"@hapi/boom@^9.0.0":
76 version "9.1.0" 83 version "9.1.0"
77 resolved "https://registry.yarnpkg.com/@hapi/boom/-/boom-9.1.0.tgz#0d9517657a56ff1e0b42d0aca9da1b37706fec56" 84 resolved "https://registry.yarnpkg.com/@hapi/boom/-/boom-9.1.0.tgz#0d9517657a56ff1e0b42d0aca9da1b37706fec56"
@@ -84,6 +91,295 @@
84 resolved "https://registry.yarnpkg.com/@hapi/hoek/-/hoek-9.0.4.tgz#e80ad4e8e8d2adc6c77d985f698447e8628b6010" 91 resolved "https://registry.yarnpkg.com/@hapi/hoek/-/hoek-9.0.4.tgz#e80ad4e8e8d2adc6c77d985f698447e8628b6010"
85 integrity sha512-EwaJS7RjoXUZ2cXXKZZxZqieGtc7RbvQhUy8FwDoMQtxWVi14tFjeFCYPZAM1mBCpOpiBpyaZbb9NeHc7eGKgw== 92 integrity sha512-EwaJS7RjoXUZ2cXXKZZxZqieGtc7RbvQhUy8FwDoMQtxWVi14tFjeFCYPZAM1mBCpOpiBpyaZbb9NeHc7eGKgw==
86 93
94"@jimp/bmp@^0.12.1":
95 version "0.12.1"
96 resolved "https://registry.yarnpkg.com/@jimp/bmp/-/bmp-0.12.1.tgz#43cf1f711797c029aa7570a492769b4778638da2"
97 integrity sha512-t16IamuBMv4GiGa1VAMzsgrVKVANxXG81wXECzbikOUkUv7pKJ2vHZDgkLBEsZQ9sAvFCneM1+yoSRpuENrfVQ==
98 dependencies:
99 "@babel/runtime" "^7.7.2"
100 "@jimp/utils" "^0.12.1"
101 bmp-js "^0.1.0"
102
103"@jimp/core@^0.12.1":
104 version "0.12.1"
105 resolved "https://registry.yarnpkg.com/@jimp/core/-/core-0.12.1.tgz#a46341e5476e00115b1fab399627d65f9ab2d442"
106 integrity sha512-mWfjExYEjHxBal+1gPesGChOQBSpxO7WUQkrO9KM7orboitOdQ15G5UA75ce7XVZ+5t+FQPOLmVkVZzzTQSEJA==
107 dependencies:
108 "@babel/runtime" "^7.7.2"
109 "@jimp/utils" "^0.12.1"
110 any-base "^1.1.0"
111 buffer "^5.2.0"
112 exif-parser "^0.1.12"
113 file-type "^9.0.0"
114 load-bmfont "^1.3.1"
115 mkdirp "^0.5.1"
116 phin "^2.9.1"
117 pixelmatch "^4.0.2"
118 tinycolor2 "^1.4.1"
119
120"@jimp/custom@^0.12.1":
121 version "0.12.1"
122 resolved "https://registry.yarnpkg.com/@jimp/custom/-/custom-0.12.1.tgz#e54d0fb2c29f4eb3b5b0bd00dc4cd25a78f48af4"
123 integrity sha512-bVClp8FEJ/11GFTKeRTrfH7NgUWvVO5/tQzO/68aOwMIhbz9BOYQGh533K9+mSy29VjZJo8jxZ0C9ZwYHuFwfA==
124 dependencies:
125 "@babel/runtime" "^7.7.2"
126 "@jimp/core" "^0.12.1"
127
128"@jimp/gif@^0.12.1":
129 version "0.12.1"
130 resolved "https://registry.yarnpkg.com/@jimp/gif/-/gif-0.12.1.tgz#e5fe9e25796ef6390044b9f1a595e2ef2ebe9fe8"
131 integrity sha512-cGn/AcvMGUGcqR6ByClGSnrja4AYmTwsGVXTQ1+EmfAdTiy6ztGgZCTDpZ/tq4SpdHXwm9wDHez7damKhTrH0g==
132 dependencies:
133 "@babel/runtime" "^7.7.2"
134 "@jimp/utils" "^0.12.1"
135 omggif "^1.0.9"
136
137"@jimp/jpeg@^0.12.1":
138 version "0.12.1"
139 resolved "https://registry.yarnpkg.com/@jimp/jpeg/-/jpeg-0.12.1.tgz#adaacd30d819241cdddc978dc4facc882a0846ab"
140 integrity sha512-UoCUHbKLj2CDCETd7LrJnmK/ExDsSfJXmc1pKkfgomvepjXogdl2KTHf141wL6D+9CfSD2VBWQLC5TvjMvcr9A==
141 dependencies:
142 "@babel/runtime" "^7.7.2"
143 "@jimp/utils" "^0.12.1"
144 jpeg-js "^0.4.0"
145
146"@jimp/plugin-blit@^0.12.1":
147 version "0.12.1"
148 resolved "https://registry.yarnpkg.com/@jimp/plugin-blit/-/plugin-blit-0.12.1.tgz#555a492fd71370820b7a1b85cc04ba3c58b0c4c7"
149 integrity sha512-VRBB6bx6EpQuaH0WX8ytlGNqUQcmuxXBbzL3e+cD0W6MluYibzQy089okvXcyUS72Q+qpSMmUDCVr3pDqLAsSA==
150 dependencies:
151 "@babel/runtime" "^7.7.2"
152 "@jimp/utils" "^0.12.1"
153
154"@jimp/plugin-blur@^0.12.1":
155 version "0.12.1"
156 resolved "https://registry.yarnpkg.com/@jimp/plugin-blur/-/plugin-blur-0.12.1.tgz#93cf1b6c44e4c7bbb80914ef953c8bb3dac31295"
157 integrity sha512-rTFY0yrwVJFNgNsAlYGn2GYCRLVEcPQ6cqAuhNylXuR/7oH3Acul+ZWafeKtvN8D8uMlth/6VP74gruXvwffZw==
158 dependencies:
159 "@babel/runtime" "^7.7.2"
160 "@jimp/utils" "^0.12.1"
161
162"@jimp/plugin-circle@^0.12.1":
163 version "0.12.1"
164 resolved "https://registry.yarnpkg.com/@jimp/plugin-circle/-/plugin-circle-0.12.1.tgz#56100e5b04c98b711e2c2188d0825c0e1766be69"
165 integrity sha512-+/OiBDjby7RBbQoDX8ZsqJRr1PaGPdTaaKUVGAsrE7KCNO9ODYNFAizB9lpidXkGgJ4Wx5R4mJy21i22oY/a4Q==
166 dependencies:
167 "@babel/runtime" "^7.7.2"
168 "@jimp/utils" "^0.12.1"
169
170"@jimp/plugin-color@^0.12.1":
171 version "0.12.1"
172 resolved "https://registry.yarnpkg.com/@jimp/plugin-color/-/plugin-color-0.12.1.tgz#193f4d851c29b5d393843b68385eee3d13b7ea7e"
173 integrity sha512-xlnK/msWN4uZ+Bu7+UrCs9oMzTSA9QE0jWFnF3h0aBsD8t1LGxozkckHe8nHtC/y/sxIa8BGKSfkiaW+r6FbnA==
174 dependencies:
175 "@babel/runtime" "^7.7.2"
176 "@jimp/utils" "^0.12.1"
177 tinycolor2 "^1.4.1"
178
179"@jimp/plugin-contain@^0.12.1":
180 version "0.12.1"
181 resolved "https://registry.yarnpkg.com/@jimp/plugin-contain/-/plugin-contain-0.12.1.tgz#6dffe0632e5acbc5d5d17671910f6671a4849c5a"
182 integrity sha512-WZ/D6G0jhnBh2bkBh610PEh/caGhAUIAxYLsQsfSSlOxPsDhbj3S6hMbFKRgnDvf0hsd5zTIA0j1B0UG4kh18A==
183 dependencies:
184 "@babel/runtime" "^7.7.2"
185 "@jimp/utils" "^0.12.1"
186
187"@jimp/plugin-cover@^0.12.1":
188 version "0.12.1"
189 resolved "https://registry.yarnpkg.com/@jimp/plugin-cover/-/plugin-cover-0.12.1.tgz#c0e9005d891efbaa6533ca4d6874d3e14cc51179"
190 integrity sha512-ddWwTQO40GcabJ2UwUYCeuNxnjV4rBTiLprnjGMqAJCzdz3q3Sp20FkRf+H+E22k2v2LHss8dIOFOF4i6ycr9Q==
191 dependencies:
192 "@babel/runtime" "^7.7.2"
193 "@jimp/utils" "^0.12.1"
194
195"@jimp/plugin-crop@^0.12.1":
196 version "0.12.1"
197 resolved "https://registry.yarnpkg.com/@jimp/plugin-crop/-/plugin-crop-0.12.1.tgz#44a5adb5f5222c3d3c6c94410b1995fe88041ada"
198 integrity sha512-CKjVkrNO8FDZKYVpMireQW4SgKBSOdF+Ip/1sWssHHe77+jGEKqOjhYju+VhT3dZJ3+75rJNI9II7Kethp+rTw==
199 dependencies:
200 "@babel/runtime" "^7.7.2"
201 "@jimp/utils" "^0.12.1"
202
203"@jimp/plugin-displace@^0.12.1":
204 version "0.12.1"
205 resolved "https://registry.yarnpkg.com/@jimp/plugin-displace/-/plugin-displace-0.12.1.tgz#d83b5d4d45a35b5d7b7722ec8657d46a3ccc6da1"
206 integrity sha512-MQAw2iuf1/bVJ6P95WWTLA+WBjvIZ7TeGBerkvBaTK8oWdj+NSLNRIYOIoyPbZ7DTL8f1SN4Vd6KD6BZaoWrwg==
207 dependencies:
208 "@babel/runtime" "^7.7.2"
209 "@jimp/utils" "^0.12.1"
210
211"@jimp/plugin-dither@^0.12.1":
212 version "0.12.1"
213 resolved "https://registry.yarnpkg.com/@jimp/plugin-dither/-/plugin-dither-0.12.1.tgz#1265a063423a20b9425f5055fe3ddafaa0eea9fe"
214 integrity sha512-mCrBHdx2ViTLJDLcrobqGLlGhZF/Mq41bURWlElQ2ArvrQ3/xR52We9DNDfC08oQ2JVb6q3v1GnCCdn0KNojGQ==
215 dependencies:
216 "@babel/runtime" "^7.7.2"
217 "@jimp/utils" "^0.12.1"
218
219"@jimp/plugin-fisheye@^0.12.1":
220 version "0.12.1"
221 resolved "https://registry.yarnpkg.com/@jimp/plugin-fisheye/-/plugin-fisheye-0.12.1.tgz#0afa268abbfcc88212f49b2b84b04da89f35cae2"
222 integrity sha512-CHvYSXtHNplzkkYzB44tENPDmvfUHiYCnAETTY+Hx58kZ0w8ERZ+OiLhUmiBcvH/QHm/US1iiNjgGUAfeQX6dg==
223 dependencies:
224 "@babel/runtime" "^7.7.2"
225 "@jimp/utils" "^0.12.1"
226
227"@jimp/plugin-flip@^0.12.1":
228 version "0.12.1"
229 resolved "https://registry.yarnpkg.com/@jimp/plugin-flip/-/plugin-flip-0.12.1.tgz#b80415e69cf477d40f1960bc6081441ba0ce54dc"
230 integrity sha512-xi+Yayrnln8A/C9E3yQBExjxwBSeCkt/ZQg1CxLgszVyX/3Zo8+nkV8MJYpkTpj8LCZGTOKlsE05mxu/a3lbJQ==
231 dependencies:
232 "@babel/runtime" "^7.7.2"
233 "@jimp/utils" "^0.12.1"
234
235"@jimp/plugin-gaussian@^0.12.1":
236 version "0.12.1"
237 resolved "https://registry.yarnpkg.com/@jimp/plugin-gaussian/-/plugin-gaussian-0.12.1.tgz#7cd1fa2c7b6f6d91776af043d202aa595430c34a"
238 integrity sha512-7O6eKlhL37hsLfV6WAX1Cvce7vOqSwL1oWbBveC1agutDlrtvcTh1s2mQ4Pde654hCJu55mq1Ur10+ote5j3qw==
239 dependencies:
240 "@babel/runtime" "^7.7.2"
241 "@jimp/utils" "^0.12.1"
242
243"@jimp/plugin-invert@^0.12.1":
244 version "0.12.1"
245 resolved "https://registry.yarnpkg.com/@jimp/plugin-invert/-/plugin-invert-0.12.1.tgz#9403089d9f740d54be72270faa28f392bf3dff9c"
246 integrity sha512-JTAs7A1Erbxwl+7ph7tgcb2PZ4WzB+3nb2WbfiWU8iCrKj17mMDSc5soaCCycn8wfwqvgB1vhRfGpseOLWxsuQ==
247 dependencies:
248 "@babel/runtime" "^7.7.2"
249 "@jimp/utils" "^0.12.1"
250
251"@jimp/plugin-mask@^0.12.1":
252 version "0.12.1"
253 resolved "https://registry.yarnpkg.com/@jimp/plugin-mask/-/plugin-mask-0.12.1.tgz#3cbf2c990c9ecb76b34e8c13c028bc469acfd593"
254 integrity sha512-bnDdY0RO/x5Mhqoy+056SN1wEj++sD4muAKqLD2CIT8Zq5M/0TA4hkdf/+lwFy3H2C0YTK39PSE9xyb4jPX3kA==
255 dependencies:
256 "@babel/runtime" "^7.7.2"
257 "@jimp/utils" "^0.12.1"
258
259"@jimp/plugin-normalize@^0.12.1":
260 version "0.12.1"
261 resolved "https://registry.yarnpkg.com/@jimp/plugin-normalize/-/plugin-normalize-0.12.1.tgz#e1cc7724792f7ace9573ed550bd9cda57e06e560"
262 integrity sha512-4kSaI4JLM/PNjHwbnAHgyh51V5IlPfPxYvsZyZ1US32pebWtocxSMaSuOaJUg7OGSkwSDBv81UR2h5D+Dz1b5A==
263 dependencies:
264 "@babel/runtime" "^7.7.2"
265 "@jimp/utils" "^0.12.1"
266
267"@jimp/plugin-print@^0.12.1":
268 version "0.12.1"
269 resolved "https://registry.yarnpkg.com/@jimp/plugin-print/-/plugin-print-0.12.1.tgz#1e604cd796fcffd7a9188ce3e94a1f5f1bc56a9f"
270 integrity sha512-T0lNS3qU9SwCHOEz7AGrdp50+gqiWGZibOL3350/X/dqoFs1EvGDjKVeWncsGCyLlpfd7M/AibHZgu8Fx2bWng==
271 dependencies:
272 "@babel/runtime" "^7.7.2"
273 "@jimp/utils" "^0.12.1"
274 load-bmfont "^1.4.0"
275
276"@jimp/plugin-resize@^0.12.1":
277 version "0.12.1"
278 resolved "https://registry.yarnpkg.com/@jimp/plugin-resize/-/plugin-resize-0.12.1.tgz#cb0347320eb392136a16e179c396f636891038af"
279 integrity sha512-sbNn4tdBGcgGlPt9XFxCuDl4ZOoxa8/Re8nAikyxYhRss2Dqz91ARbBQxOf1vlUGeicQMsjEuWbPQAogTSJRug==
280 dependencies:
281 "@babel/runtime" "^7.7.2"
282 "@jimp/utils" "^0.12.1"
283
284"@jimp/plugin-rotate@^0.12.1":
285 version "0.12.1"
286 resolved "https://registry.yarnpkg.com/@jimp/plugin-rotate/-/plugin-rotate-0.12.1.tgz#29101e949f96047bcee2afaba5008be8f92ed8e8"
287 integrity sha512-RYkLzwG2ervG6hHy8iepbIVeWdT1kz4Qz044eloqo6c66MK0KAqp228YI8+CAKm0joQnVDC/A0FgRIj/K8uyAw==
288 dependencies:
289 "@babel/runtime" "^7.7.2"
290 "@jimp/utils" "^0.12.1"
291
292"@jimp/plugin-scale@^0.12.1":
293 version "0.12.1"
294 resolved "https://registry.yarnpkg.com/@jimp/plugin-scale/-/plugin-scale-0.12.1.tgz#bf9c2e5af47dc07d48d8ab16fecba96b40af3734"
295 integrity sha512-zjNVI1fUj+ywfG78T1ZU33g9a5sk4rhEQkkhtny8koAscnVsDN2YaZEKoFli54kqaWh5kSS5DDL7a/9pEfXnFQ==
296 dependencies:
297 "@babel/runtime" "^7.7.2"
298 "@jimp/utils" "^0.12.1"
299
300"@jimp/plugin-shadow@^0.12.1":
301 version "0.12.1"
302 resolved "https://registry.yarnpkg.com/@jimp/plugin-shadow/-/plugin-shadow-0.12.1.tgz#63508e3d321dbd057acc1e93b90c326257e0f1c3"
303 integrity sha512-Z82IwvunXWQ2jXegd3W3TYUXpfJcEvNbHodr7Z+oVnwhM1OoQ5QC6RSRQwsj2qXIhbGffQjH8eguHgEgAV+u5w==
304 dependencies:
305 "@babel/runtime" "^7.7.2"
306 "@jimp/utils" "^0.12.1"
307
308"@jimp/plugin-threshold@^0.12.1":
309 version "0.12.1"
310 resolved "https://registry.yarnpkg.com/@jimp/plugin-threshold/-/plugin-threshold-0.12.1.tgz#deaa1ac912522b9b7353820e84c8706ff433aa04"
311 integrity sha512-PFezt5fSk0q+xKvdpuv0eLggy2I7EgYotrK8TRZOT0jimuYFXPF0Z514c6szumoW5kEsRz04L1HkPT1FqI97Yg==
312 dependencies:
313 "@babel/runtime" "^7.7.2"
314 "@jimp/utils" "^0.12.1"
315
316"@jimp/plugins@^0.12.1":
317 version "0.12.1"
318 resolved "https://registry.yarnpkg.com/@jimp/plugins/-/plugins-0.12.1.tgz#450a1312184f649d81b75fc1aeff265e99c8f2b3"
319 integrity sha512-7+Yp29T6BbYo+Oqnc+m7A5AH+O+Oy5xnxvxlfmsp48+SuwEZ4akJp13Gu2PSmRlylENzR7MlWOxzhas5ERNlIg==
320 dependencies:
321 "@babel/runtime" "^7.7.2"
322 "@jimp/plugin-blit" "^0.12.1"
323 "@jimp/plugin-blur" "^0.12.1"
324 "@jimp/plugin-circle" "^0.12.1"
325 "@jimp/plugin-color" "^0.12.1"
326 "@jimp/plugin-contain" "^0.12.1"
327 "@jimp/plugin-cover" "^0.12.1"
328 "@jimp/plugin-crop" "^0.12.1"
329 "@jimp/plugin-displace" "^0.12.1"
330 "@jimp/plugin-dither" "^0.12.1"
331 "@jimp/plugin-fisheye" "^0.12.1"
332 "@jimp/plugin-flip" "^0.12.1"
333 "@jimp/plugin-gaussian" "^0.12.1"
334 "@jimp/plugin-invert" "^0.12.1"
335 "@jimp/plugin-mask" "^0.12.1"
336 "@jimp/plugin-normalize" "^0.12.1"
337 "@jimp/plugin-print" "^0.12.1"
338 "@jimp/plugin-resize" "^0.12.1"
339 "@jimp/plugin-rotate" "^0.12.1"
340 "@jimp/plugin-scale" "^0.12.1"
341 "@jimp/plugin-shadow" "^0.12.1"
342 "@jimp/plugin-threshold" "^0.12.1"
343 timm "^1.6.1"
344
345"@jimp/png@^0.12.1":
346 version "0.12.1"
347 resolved "https://registry.yarnpkg.com/@jimp/png/-/png-0.12.1.tgz#85d99ed6304e7d37f8e5279b3b4b058ed28a7f67"
348 integrity sha512-tOUSJMJzcMAN82F9/Q20IToquIVWzvOe/7NIpVQJn6m+Lq6TtVmd7d8gdcna9AEFm2FIza5lhq2Kta6Xj0KXhQ==
349 dependencies:
350 "@babel/runtime" "^7.7.2"
351 "@jimp/utils" "^0.12.1"
352 pngjs "^3.3.3"
353
354"@jimp/tiff@^0.12.1":
355 version "0.12.1"
356 resolved "https://registry.yarnpkg.com/@jimp/tiff/-/tiff-0.12.1.tgz#ce2cd058d0f3a9fe43564866b6a64a815c141a9e"
357 integrity sha512-bzWDgv3202TKhaBGzV9OFF0PVQWEb4194h9kv5js348SSnbCusz/tzTE1EwKrnbDZThZPgTB1ryKs7D+Q9Mhmg==
358 dependencies:
359 "@babel/runtime" "^7.7.2"
360 utif "^2.0.1"
361
362"@jimp/types@^0.12.1":
363 version "0.12.1"
364 resolved "https://registry.yarnpkg.com/@jimp/types/-/types-0.12.1.tgz#2671e228bd1abc7f086e2f4316097c15aa4b41c0"
365 integrity sha512-hg5OKXpWWeKGuDrfibrjWWhr7hqb7f552wqnPWSLQpVrdWgjH+hpOv6cOzdo9bsU78qGTelZJPxr0ERRoc+MhQ==
366 dependencies:
367 "@babel/runtime" "^7.7.2"
368 "@jimp/bmp" "^0.12.1"
369 "@jimp/gif" "^0.12.1"
370 "@jimp/jpeg" "^0.12.1"
371 "@jimp/png" "^0.12.1"
372 "@jimp/tiff" "^0.12.1"
373 timm "^1.6.1"
374
375"@jimp/utils@^0.12.1":
376 version "0.12.1"
377 resolved "https://registry.yarnpkg.com/@jimp/utils/-/utils-0.12.1.tgz#e9ab43dcd55f88a8fdf250a84bcf43d09713bd9d"
378 integrity sha512-EjPkDQOzV/oZfbolEUgFT6SE++PtCccVBvjuACkttyCfl0P2jnpR49SwstyVLc2u8AwBAZEHHAw9lPYaMjtbXQ==
379 dependencies:
380 "@babel/runtime" "^7.7.2"
381 regenerator-runtime "^0.13.3"
382
87"@jsdevtools/ono@^7.1.0": 383"@jsdevtools/ono@^7.1.0":
88 version "7.1.1" 384 version "7.1.1"
89 resolved "https://registry.yarnpkg.com/@jsdevtools/ono/-/ono-7.1.1.tgz#36034f9cb0fb456858c137a3f3e6d6db67ab5cc5" 385 resolved "https://registry.yarnpkg.com/@jsdevtools/ono/-/ono-7.1.1.tgz#36034f9cb0fb456858c137a3f3e6d6db67ab5cc5"
@@ -450,13 +746,6 @@
450 "@types/express-serve-static-core" "*" 746 "@types/express-serve-static-core" "*"
451 "@types/mime" "*" 747 "@types/mime" "*"
452 748
453"@types/sharp@^0.24.0":
454 version "0.24.0"
455 resolved "https://registry.yarnpkg.com/@types/sharp/-/sharp-0.24.0.tgz#28abfeac45b4dcb472305503105322e97a6c2672"
456 integrity sha512-+0WeyJajTSoIacBzonsq856whNJC+cN9FNEs0yZ6hFq/V1CZmlqM8vBRy7TKZunH+gIO7SwDCzgXYWRRbzqfDA==
457 dependencies:
458 "@types/node" "*"
459
460"@types/simple-peer@*": 749"@types/simple-peer@*":
461 version "9.6.0" 750 version "9.6.0"
462 resolved "https://registry.yarnpkg.com/@types/simple-peer/-/simple-peer-9.6.0.tgz#b5828d835b7f42dde27db584ba127e7a9f9072f4" 751 resolved "https://registry.yarnpkg.com/@types/simple-peer/-/simple-peer-9.6.0.tgz#b5828d835b7f42dde27db584ba127e7a9f9072f4"
@@ -689,6 +978,11 @@ ansi-styles@^4.0.0, ansi-styles@^4.1.0:
689 "@types/color-name" "^1.1.1" 978 "@types/color-name" "^1.1.1"
690 color-convert "^2.0.1" 979 color-convert "^2.0.1"
691 980
981any-base@^1.1.0:
982 version "1.1.0"
983 resolved "https://registry.yarnpkg.com/any-base/-/any-base-1.1.0.tgz#ae101a62bc08a597b4c9ab5b7089d456630549fe"
984 integrity sha512-uMgjozySS8adZZYePpaWs8cxB9/kdzmpX6SgJZ+wbz1K5eYk5QMYDVJaZKhxyIHUdnnJkfR7SVgStgH7LkGUyg==
985
692any-promise@^1.3.0: 986any-promise@^1.3.0:
693 version "1.3.0" 987 version "1.3.0"
694 resolved "https://registry.yarnpkg.com/any-promise/-/any-promise-1.3.0.tgz#abc6afeedcea52e809cdc0376aed3ce39635d17f" 988 resolved "https://registry.yarnpkg.com/any-promise/-/any-promise-1.3.0.tgz#abc6afeedcea52e809cdc0376aed3ce39635d17f"
@@ -1042,15 +1336,6 @@ bittorrent-tracker@^9.0.0:
1042 bufferutil "^4.0.0" 1336 bufferutil "^4.0.0"
1043 utf-8-validate "^5.0.1" 1337 utf-8-validate "^5.0.1"
1044 1338
1045bl@^4.0.1:
1046 version "4.0.2"
1047 resolved "https://registry.yarnpkg.com/bl/-/bl-4.0.2.tgz#52b71e9088515d0606d9dd9cc7aa48dc1f98e73a"
1048 integrity sha512-j4OH8f6Qg2bGuWfRiltT2HYGx0e1QcBTrK9KAHNMwMZdQnDZFk0ZSYIpADjYCB3U12nicC5tVJwSIhwOWjb4RQ==
1049 dependencies:
1050 buffer "^5.5.0"
1051 inherits "^2.0.4"
1052 readable-stream "^3.4.0"
1053
1054blob-to-buffer@^1.2.6: 1339blob-to-buffer@^1.2.6:
1055 version "1.2.8" 1340 version "1.2.8"
1056 resolved "https://registry.yarnpkg.com/blob-to-buffer/-/blob-to-buffer-1.2.8.tgz#78eeeb332f1280ed0ca6fb2b60693a8c6d36903a" 1341 resolved "https://registry.yarnpkg.com/blob-to-buffer/-/blob-to-buffer-1.2.8.tgz#78eeeb332f1280ed0ca6fb2b60693a8c6d36903a"
@@ -1078,6 +1363,11 @@ bluebird@^3.0.5, bluebird@^3.1.1, bluebird@^3.5.0, bluebird@^3.5.1:
1078 resolved "https://registry.yarnpkg.com/bluebird/-/bluebird-3.7.2.tgz#9f229c15be272454ffa973ace0dbee79a1b0c36f" 1363 resolved "https://registry.yarnpkg.com/bluebird/-/bluebird-3.7.2.tgz#9f229c15be272454ffa973ace0dbee79a1b0c36f"
1079 integrity sha512-XpNj6GDQzdfW+r2Wnn7xiSAd7TM3jzkxGXBGTtWKuSXv1xUV+azxAm8jdWZN06QTQk+2N2XB9jRDkvbmQmcRtg== 1364 integrity sha512-XpNj6GDQzdfW+r2Wnn7xiSAd7TM3jzkxGXBGTtWKuSXv1xUV+azxAm8jdWZN06QTQk+2N2XB9jRDkvbmQmcRtg==
1080 1365
1366bmp-js@^0.1.0:
1367 version "0.1.0"
1368 resolved "https://registry.yarnpkg.com/bmp-js/-/bmp-js-0.1.0.tgz#e05a63f796a6c1ff25f4771ec7adadc148c07233"
1369 integrity sha1-4Fpj95amwf8l9Hcex62twUjAcjM=
1370
1081bn.js@^5.0.0: 1371bn.js@^5.0.0:
1082 version "5.1.1" 1372 version "5.1.1"
1083 resolved "https://registry.yarnpkg.com/bn.js/-/bn.js-5.1.1.tgz#48efc4031a9c4041b9c99c6941d903463ab62eb5" 1373 resolved "https://registry.yarnpkg.com/bn.js/-/bn.js-5.1.1.tgz#48efc4031a9c4041b9c99c6941d903463ab62eb5"
@@ -1165,6 +1455,11 @@ buffer-alloc@^1.1.0:
1165 buffer-alloc-unsafe "^1.1.0" 1455 buffer-alloc-unsafe "^1.1.0"
1166 buffer-fill "^1.0.0" 1456 buffer-fill "^1.0.0"
1167 1457
1458buffer-equal@0.0.1:
1459 version "0.0.1"
1460 resolved "https://registry.yarnpkg.com/buffer-equal/-/buffer-equal-0.0.1.tgz#91bc74b11ea405bc916bc6aa908faafa5b4aac4b"
1461 integrity sha1-kbx0sR6kBbyRa8aqkI+q+ltKrEs=
1462
1168buffer-fill@^1.0.0: 1463buffer-fill@^1.0.0:
1169 version "1.0.0" 1464 version "1.0.0"
1170 resolved "https://registry.yarnpkg.com/buffer-fill/-/buffer-fill-1.0.0.tgz#f8f78b76789888ef39f205cd637f68e702122b2c" 1465 resolved "https://registry.yarnpkg.com/buffer-fill/-/buffer-fill-1.0.0.tgz#f8f78b76789888ef39f205cd637f68e702122b2c"
@@ -1180,10 +1475,10 @@ buffer-writer@2.0.0:
1180 resolved "https://registry.yarnpkg.com/buffer-writer/-/buffer-writer-2.0.0.tgz#ce7eb81a38f7829db09c873f2fbb792c0c98ec04" 1475 resolved "https://registry.yarnpkg.com/buffer-writer/-/buffer-writer-2.0.0.tgz#ce7eb81a38f7829db09c873f2fbb792c0c98ec04"
1181 integrity sha512-a7ZpuTZU1TRtnwyCNW3I5dc0wWNC3VR9S++Ewyk2HHZdrO3CQJqSpd+95Us590V6AL7JqUAH2IwZ/398PmNFgw== 1476 integrity sha512-a7ZpuTZU1TRtnwyCNW3I5dc0wWNC3VR9S++Ewyk2HHZdrO3CQJqSpd+95Us590V6AL7JqUAH2IwZ/398PmNFgw==
1182 1477
1183buffer@^5.5.0: 1478buffer@^5.2.0:
1184 version "5.5.0" 1479 version "5.6.0"
1185 resolved "https://registry.yarnpkg.com/buffer/-/buffer-5.5.0.tgz#9c3caa3d623c33dd1c7ef584b89b88bf9c9bc1ce" 1480 resolved "https://registry.yarnpkg.com/buffer/-/buffer-5.6.0.tgz#a31749dc7d81d84db08abf937b6b8c4033f62786"
1186 integrity sha512-9FTEDjLjwoAkEwyMGDjYJQN2gfRgOKBKRfiglhvibGbpeeU/pQn1bJxQqm32OD/AIeEuHxU9roxXxg34Byp/Ww== 1481 integrity sha512-/gDYp/UtU0eA1ys8bOs9J6a+E/KWIY+DZ+Q2WESNUA0jFRsJOc0SNUO6xJ5SGA1xueg3NL65W6s+NY5l9cunuw==
1187 dependencies: 1482 dependencies:
1188 base64-js "^1.0.2" 1483 base64-js "^1.0.2"
1189 ieee754 "^1.1.4" 1484 ieee754 "^1.1.4"
@@ -1414,7 +1709,7 @@ chokidar@^3.2.2:
1414 optionalDependencies: 1709 optionalDependencies:
1415 fsevents "~2.1.2" 1710 fsevents "~2.1.2"
1416 1711
1417chownr@^1.1.1, chownr@^1.1.3: 1712chownr@^1.1.1:
1418 version "1.1.4" 1713 version "1.1.4"
1419 resolved "https://registry.yarnpkg.com/chownr/-/chownr-1.1.4.tgz#6fc9d7b42d32a583596337666e7d08084da2cc6b" 1714 resolved "https://registry.yarnpkg.com/chownr/-/chownr-1.1.4.tgz#6fc9d7b42d32a583596337666e7d08084da2cc6b"
1420 integrity sha512-jJ0bqzaylmJtVnNgzTeSOs8DPavpbYgEr/b0YL8/2GO3xJEhInFmhKMUnEJQjZumK7KXGFhUy89PrsJWlakBVg== 1715 integrity sha512-jJ0bqzaylmJtVnNgzTeSOs8DPavpbYgEr/b0YL8/2GO3xJEhInFmhKMUnEJQjZumK7KXGFhUy89PrsJWlakBVg==
@@ -1588,14 +1883,6 @@ color@3.0.x:
1588 color-convert "^1.9.1" 1883 color-convert "^1.9.1"
1589 color-string "^1.5.2" 1884 color-string "^1.5.2"
1590 1885
1591color@^3.1.2:
1592 version "3.1.2"
1593 resolved "https://registry.yarnpkg.com/color/-/color-3.1.2.tgz#68148e7f85d41ad7649c5fa8c8106f098d229e10"
1594 integrity sha512-vXTJhHebByxZn3lDvDJYw4lR5+uB3vuoHsuYA5AKuxRVn5wzzIfQKGLBmgdVRHKTJYeK5rvJcHnrd0Li49CFpg==
1595 dependencies:
1596 color-convert "^1.9.1"
1597 color-string "^1.5.2"
1598
1599colornames@^1.1.1: 1886colornames@^1.1.1:
1600 version "1.1.1" 1887 version "1.1.1"
1601 resolved "https://registry.yarnpkg.com/colornames/-/colornames-1.1.1.tgz#f8889030685c7c4ff9e2a559f5077eb76a816f96" 1888 resolved "https://registry.yarnpkg.com/colornames/-/colornames-1.1.1.tgz#f8889030685c7c4ff9e2a559f5077eb76a816f96"
@@ -2056,7 +2343,7 @@ destroy@~1.0.4:
2056 resolved "https://registry.yarnpkg.com/destroy/-/destroy-1.0.4.tgz#978857442c44749e4206613e37946205826abd80" 2343 resolved "https://registry.yarnpkg.com/destroy/-/destroy-1.0.4.tgz#978857442c44749e4206613e37946205826abd80"
2057 integrity sha1-l4hXRCxEdJ5CBmE+N5RiBYJqvYA= 2344 integrity sha1-l4hXRCxEdJ5CBmE+N5RiBYJqvYA=
2058 2345
2059detect-libc@^1.0.2, detect-libc@^1.0.3: 2346detect-libc@^1.0.2:
2060 version "1.0.3" 2347 version "1.0.3"
2061 resolved "https://registry.yarnpkg.com/detect-libc/-/detect-libc-1.0.3.tgz#fa137c4bd698edf55cd5cd02ac559f91a4c4ba9b" 2348 resolved "https://registry.yarnpkg.com/detect-libc/-/detect-libc-1.0.3.tgz#fa137c4bd698edf55cd5cd02ac559f91a4c4ba9b"
2062 integrity sha1-+hN8S9aY7fVc1c0CrFWfkaTEups= 2349 integrity sha1-+hN8S9aY7fVc1c0CrFWfkaTEups=
@@ -2129,6 +2416,11 @@ dom-serializer@~0.1.0:
2129 domelementtype "^1.3.0" 2416 domelementtype "^1.3.0"
2130 entities "^1.1.1" 2417 entities "^1.1.1"
2131 2418
2419dom-walk@^0.1.0:
2420 version "0.1.2"
2421 resolved "https://registry.yarnpkg.com/dom-walk/-/dom-walk-0.1.2.tgz#0c548bef048f4d1f2a97249002236060daa3fd84"
2422 integrity sha512-6QvTW9mrGeIegrFXdtQi9pk7O/nSK6lSdXW2eqUspN5LWD7UTji2Fqw5V2YLjBpHEoU9Xl/eUWNpDeZvoyOv2w==
2423
2132domelementtype@1, domelementtype@^1.3.0, domelementtype@^1.3.1: 2424domelementtype@1, domelementtype@^1.3.0, domelementtype@^1.3.1:
2133 version "1.3.1" 2425 version "1.3.1"
2134 resolved "https://registry.yarnpkg.com/domelementtype/-/domelementtype-1.3.1.tgz#d048c44b37b0d10a7f2a3d5fee3f4333d790481f" 2426 resolved "https://registry.yarnpkg.com/domelementtype/-/domelementtype-1.3.1.tgz#d048c44b37b0d10a7f2a3d5fee3f4333d790481f"
@@ -2267,7 +2559,7 @@ encoding-japanese@1.0.30:
2267 resolved "https://registry.yarnpkg.com/encoding-japanese/-/encoding-japanese-1.0.30.tgz#537c4d62881767925d601acb4c79fb14db81703a" 2559 resolved "https://registry.yarnpkg.com/encoding-japanese/-/encoding-japanese-1.0.30.tgz#537c4d62881767925d601acb4c79fb14db81703a"
2268 integrity sha512-bd/DFLAoJetvv7ar/KIpE3CNO8wEuyrt9Xuw6nSMiZ+Vrz/Q21BPsMHvARL2Wz6IKHKXgb+DWZqtRg1vql9cBg== 2560 integrity sha512-bd/DFLAoJetvv7ar/KIpE3CNO8wEuyrt9Xuw6nSMiZ+Vrz/Q21BPsMHvARL2Wz6IKHKXgb+DWZqtRg1vql9cBg==
2269 2561
2270end-of-stream@^1.0.0, end-of-stream@^1.1.0, end-of-stream@^1.4.1: 2562end-of-stream@^1.0.0, end-of-stream@^1.1.0:
2271 version "1.4.4" 2563 version "1.4.4"
2272 resolved "https://registry.yarnpkg.com/end-of-stream/-/end-of-stream-1.4.4.tgz#5ae64a5f45057baf3626ec14da0ca5e4b2431eb0" 2564 resolved "https://registry.yarnpkg.com/end-of-stream/-/end-of-stream-1.4.4.tgz#5ae64a5f45057baf3626ec14da0ca5e4b2431eb0"
2273 integrity sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q== 2565 integrity sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q==
@@ -2685,10 +2977,10 @@ execa@~3.2.0:
2685 signal-exit "^3.0.2" 2977 signal-exit "^3.0.2"
2686 strip-final-newline "^2.0.0" 2978 strip-final-newline "^2.0.0"
2687 2979
2688expand-template@^2.0.3: 2980exif-parser@^0.1.12:
2689 version "2.0.3" 2981 version "0.1.12"
2690 resolved "https://registry.yarnpkg.com/expand-template/-/expand-template-2.0.3.tgz#6e14b3fcee0f3a6340ecb57d2e8918692052a47c" 2982 resolved "https://registry.yarnpkg.com/exif-parser/-/exif-parser-0.1.12.tgz#58a9d2d72c02c1f6f02a0ef4a9166272b7760922"
2691 integrity sha512-XYfuKMvj4O35f/pOXLObndIRvyQ+/+6AhODh+OKWj9S9498pHHn/IMszH+gt0fBCRWMNfk1ZSp5x3AifmnI2vg== 2983 integrity sha1-WKnS1ywCwfbwKg70qRZicrd2CSI=
2692 2984
2693expect-ct@0.2.0: 2985expect-ct@0.2.0:
2694 version "0.2.0" 2986 version "0.2.0"
@@ -2833,6 +3125,11 @@ file-entry-cache@^5.0.1:
2833 dependencies: 3125 dependencies:
2834 flat-cache "^2.0.1" 3126 flat-cache "^2.0.1"
2835 3127
3128file-type@^9.0.0:
3129 version "9.0.0"
3130 resolved "https://registry.yarnpkg.com/file-type/-/file-type-9.0.0.tgz#a68d5ad07f486414dfb2c8866f73161946714a18"
3131 integrity sha512-Qe/5NJrgIOlwijpq3B7BEpzPFcgzggOTagZmkXQY4LA6bsXKTUstK7Wp12lEJ/mLKTpvIZxmIuRcLYWT6ov9lw==
3132
2836filestream@^5.0.0: 3133filestream@^5.0.0:
2837 version "5.0.0" 3134 version "5.0.0"
2838 resolved "https://registry.yarnpkg.com/filestream/-/filestream-5.0.0.tgz#79015f3bae95ad0f47ef818694846f085087b92e" 3135 resolved "https://registry.yarnpkg.com/filestream/-/filestream-5.0.0.tgz#79015f3bae95ad0f47ef818694846f085087b92e"
@@ -2978,11 +3275,6 @@ fs-chunk-store@^2.0.0:
2978 run-parallel "^1.1.2" 3275 run-parallel "^1.1.2"
2979 thunky "^1.0.1" 3276 thunky "^1.0.1"
2980 3277
2981fs-constants@^1.0.0:
2982 version "1.0.0"
2983 resolved "https://registry.yarnpkg.com/fs-constants/-/fs-constants-1.0.0.tgz#6be0de9be998ce16af8afc24497b9ee9b7ccd9ad"
2984 integrity sha512-y6OAwoSIf7FyjMIv94u+b5rdheZEjzR63GTyZJm5qh4Bi+2YgwLCcI/fPFZkL5PSixOt6ZNKm+w+Hfp/Bciwow==
2985
2986fs-extra@^9.0.0: 3278fs-extra@^9.0.0:
2987 version "9.0.0" 3279 version "9.0.0"
2988 resolved "https://registry.yarnpkg.com/fs-extra/-/fs-extra-9.0.0.tgz#b6afc31036e247b2466dc99c29ae797d5d4580a3" 3280 resolved "https://registry.yarnpkg.com/fs-extra/-/fs-extra-9.0.0.tgz#b6afc31036e247b2466dc99c29ae797d5d4580a3"
@@ -3000,13 +3292,6 @@ fs-minipass@^1.2.5:
3000 dependencies: 3292 dependencies:
3001 minipass "^2.6.0" 3293 minipass "^2.6.0"
3002 3294
3003fs-minipass@^2.0.0:
3004 version "2.1.0"
3005 resolved "https://registry.yarnpkg.com/fs-minipass/-/fs-minipass-2.1.0.tgz#7f5036fdbf12c63c169190cbe4199c852271f9fb"
3006 integrity sha512-V/JgOLFCS+R6Vcq0slCuaeWEdNC3ouDlJMNIsacH2VtALiu9mV4LPrHc5cDl8k5aw6J8jwgWWpiTo5RYhmIzvg==
3007 dependencies:
3008 minipass "^3.0.0"
3009
3010fs.realpath@^1.0.0: 3295fs.realpath@^1.0.0:
3011 version "1.0.0" 3296 version "1.0.0"
3012 resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f" 3297 resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f"
@@ -3092,11 +3377,6 @@ getpass@^0.1.1:
3092 dependencies: 3377 dependencies:
3093 assert-plus "^1.0.0" 3378 assert-plus "^1.0.0"
3094 3379
3095github-from-package@0.0.0:
3096 version "0.0.0"
3097 resolved "https://registry.yarnpkg.com/github-from-package/-/github-from-package-0.0.0.tgz#97fb5d96bfde8973313f20e8288ef9a167fa64ce"
3098 integrity sha1-l/tdlr/eiXMxPyDoKI75oWf6ZM4=
3099
3100glob-parent@^5.0.0, glob-parent@~5.1.0: 3380glob-parent@^5.0.0, glob-parent@~5.1.0:
3101 version "5.1.1" 3381 version "5.1.1"
3102 resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-5.1.1.tgz#b6c1ef417c4e5663ea498f1c45afac6916bbc229" 3382 resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-5.1.1.tgz#b6c1ef417c4e5663ea498f1c45afac6916bbc229"
@@ -3147,6 +3427,14 @@ global-dirs@^0.1.0:
3147 dependencies: 3427 dependencies:
3148 ini "^1.3.4" 3428 ini "^1.3.4"
3149 3429
3430global@~4.3.0:
3431 version "4.3.2"
3432 resolved "https://registry.yarnpkg.com/global/-/global-4.3.2.tgz#e76989268a6c74c38908b1305b10fc0e394e9d0f"
3433 integrity sha1-52mJJopsdMOJCLEwWxD8DjlOnQ8=
3434 dependencies:
3435 min-document "^2.19.0"
3436 process "~0.5.1"
3437
3150globals@^12.1.0: 3438globals@^12.1.0:
3151 version "12.4.0" 3439 version "12.4.0"
3152 resolved "https://registry.yarnpkg.com/globals/-/globals-12.4.0.tgz#a18813576a41b00a24a97e7f815918c2e19925f8" 3440 resolved "https://registry.yarnpkg.com/globals/-/globals-12.4.0.tgz#a18813576a41b00a24a97e7f815918c2e19925f8"
@@ -3509,7 +3797,7 @@ inflight@^1.0.4:
3509 once "^1.3.0" 3797 once "^1.3.0"
3510 wrappy "1" 3798 wrappy "1"
3511 3799
3512inherits@2, inherits@2.0.4, inherits@^2.0.1, inherits@^2.0.3, inherits@^2.0.4, inherits@~2.0.1, inherits@~2.0.3: 3800inherits@2, inherits@2.0.4, inherits@^2.0.1, inherits@^2.0.3, inherits@~2.0.1, inherits@~2.0.3:
3513 version "2.0.4" 3801 version "2.0.4"
3514 resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.4.tgz#0fa2c64f932917c3433a0ded55363aae37416b7c" 3802 resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.4.tgz#0fa2c64f932917c3433a0ded55363aae37416b7c"
3515 integrity sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ== 3803 integrity sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==
@@ -3686,6 +3974,11 @@ is-fullwidth-code-point@^3.0.0:
3686 resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz#f116f8064fe90b3f7844a38997c0b75051269f1d" 3974 resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz#f116f8064fe90b3f7844a38997c0b75051269f1d"
3687 integrity sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg== 3975 integrity sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==
3688 3976
3977is-function@^1.0.1:
3978 version "1.0.2"
3979 resolved "https://registry.yarnpkg.com/is-function/-/is-function-1.0.2.tgz#4f097f30abf6efadac9833b17ca5dc03f8144e08"
3980 integrity sha512-lw7DUp0aWXYg+CBCN+JKkcE0Q2RayZnSvnZBlwgxHBQhqt5pZNVy4Ri7H9GmmXkdu7LUthszM+Tor1u/2iBcpQ==
3981
3689is-generator@^1.0.2: 3982is-generator@^1.0.2:
3690 version "1.0.3" 3983 version "1.0.3"
3691 resolved "https://registry.yarnpkg.com/is-generator/-/is-generator-1.0.3.tgz#c14c21057ed36e328db80347966c693f886389f3" 3984 resolved "https://registry.yarnpkg.com/is-generator/-/is-generator-1.0.3.tgz#c14c21057ed36e328db80347966c693f886389f3"
@@ -3824,6 +4117,22 @@ isstream@0.1.x, isstream@~0.1.2:
3824 resolved "https://registry.yarnpkg.com/isstream/-/isstream-0.1.2.tgz#47e63f7af55afa6f92e1500e690eb8b8529c099a" 4117 resolved "https://registry.yarnpkg.com/isstream/-/isstream-0.1.2.tgz#47e63f7af55afa6f92e1500e690eb8b8529c099a"
3825 integrity sha1-R+Y/evVa+m+S4VAOaQ64uFKcCZo= 4118 integrity sha1-R+Y/evVa+m+S4VAOaQ64uFKcCZo=
3826 4119
4120jimp@^0.12.1:
4121 version "0.12.1"
4122 resolved "https://registry.yarnpkg.com/jimp/-/jimp-0.12.1.tgz#3e58fdd16ebb2b8f00a09be3dd5c54f79ffae04a"
4123 integrity sha512-0soPJif+yjmzmOF+4cF2hyhxUWWpXpQntsm2joJXFFoRcQiPzsG4dbLKYqYPT3Fc6PjZ8MaLtCkDqqckVSfmRw==
4124 dependencies:
4125 "@babel/runtime" "^7.7.2"
4126 "@jimp/custom" "^0.12.1"
4127 "@jimp/plugins" "^0.12.1"
4128 "@jimp/types" "^0.12.1"
4129 regenerator-runtime "^0.13.3"
4130
4131jpeg-js@^0.4.0:
4132 version "0.4.0"
4133 resolved "https://registry.yarnpkg.com/jpeg-js/-/jpeg-js-0.4.0.tgz#39adab7245b6d11e918ba5d4b49263ff2fc6a2f9"
4134 integrity sha512-960VHmtN1vTpasX/1LupLohdP5odwAT7oK/VSm6mW0M58LbrBnowLAPWAZhWGhDAGjzbMnPXZxzB/QYgBwkN0w==
4135
3827js-stringify@^1.0.1: 4136js-stringify@^1.0.1:
3828 version "1.0.2" 4137 version "1.0.2"
3829 resolved "https://registry.yarnpkg.com/js-stringify/-/js-stringify-1.0.2.tgz#1736fddfd9724f28a3682adc6230ae7e4e9679db" 4138 resolved "https://registry.yarnpkg.com/js-stringify/-/js-stringify-1.0.2.tgz#1736fddfd9724f28a3682adc6230ae7e4e9679db"
@@ -4050,6 +4359,20 @@ linkify-it@2.2.0:
4050 dependencies: 4359 dependencies:
4051 uc.micro "^1.0.1" 4360 uc.micro "^1.0.1"
4052 4361
4362load-bmfont@^1.3.1, load-bmfont@^1.4.0:
4363 version "1.4.0"
4364 resolved "https://registry.yarnpkg.com/load-bmfont/-/load-bmfont-1.4.0.tgz#75f17070b14a8c785fe7f5bee2e6fd4f98093b6b"
4365 integrity sha512-kT63aTAlNhZARowaNYcY29Fn/QYkc52M3l6V1ifRcPewg2lvUZDAj7R6dXjOL9D0sict76op3T5+odumDSF81g==
4366 dependencies:
4367 buffer-equal "0.0.1"
4368 mime "^1.3.4"
4369 parse-bmfont-ascii "^1.0.3"
4370 parse-bmfont-binary "^1.0.5"
4371 parse-bmfont-xml "^1.1.4"
4372 phin "^2.9.1"
4373 xhr "^2.0.1"
4374 xtend "^4.0.0"
4375
4053load-ip-set@^2.1.0: 4376load-ip-set@^2.1.0:
4054 version "2.1.0" 4377 version "2.1.0"
4055 resolved "https://registry.yarnpkg.com/load-ip-set/-/load-ip-set-2.1.0.tgz#2d50b737cae41de4e413d213991d4083a3e1784b" 4378 resolved "https://registry.yarnpkg.com/load-ip-set/-/load-ip-set-2.1.0.tgz#2d50b737cae41de4e413d213991d4083a3e1784b"
@@ -4422,7 +4745,7 @@ mime-types@^2.1.12, mime-types@~2.1.19, mime-types@~2.1.24:
4422 dependencies: 4745 dependencies:
4423 mime-db "1.43.0" 4746 mime-db "1.43.0"
4424 4747
4425mime@1.6.0, mime@^1.4.1, mime@^1.6.0: 4748mime@1.6.0, mime@^1.3.4, mime@^1.4.1, mime@^1.6.0:
4426 version "1.6.0" 4749 version "1.6.0"
4427 resolved "https://registry.yarnpkg.com/mime/-/mime-1.6.0.tgz#32cd9e5c64553bd58d19a568af452acff04981b1" 4750 resolved "https://registry.yarnpkg.com/mime/-/mime-1.6.0.tgz#32cd9e5c64553bd58d19a568af452acff04981b1"
4428 integrity sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg== 4751 integrity sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==
@@ -4447,6 +4770,13 @@ mimic-response@^2.0.0:
4447 resolved "https://registry.yarnpkg.com/mimic-response/-/mimic-response-2.1.0.tgz#d13763d35f613d09ec37ebb30bac0469c0ee8f43" 4770 resolved "https://registry.yarnpkg.com/mimic-response/-/mimic-response-2.1.0.tgz#d13763d35f613d09ec37ebb30bac0469c0ee8f43"
4448 integrity sha512-wXqjST+SLt7R009ySCglWBCFpjUygmCIfD790/kVbiGmUgfYGuB14PiTd5DwVxSV4NcYHjzMkoj5LjQZwTQLEA== 4771 integrity sha512-wXqjST+SLt7R009ySCglWBCFpjUygmCIfD790/kVbiGmUgfYGuB14PiTd5DwVxSV4NcYHjzMkoj5LjQZwTQLEA==
4449 4772
4773min-document@^2.19.0:
4774 version "2.19.0"
4775 resolved "https://registry.yarnpkg.com/min-document/-/min-document-2.19.0.tgz#7bd282e3f5842ed295bb748cdd9f1ffa2c824685"
4776 integrity sha1-e9KC4/WELtKVu3SM3Z8f+iyCRoU=
4777 dependencies:
4778 dom-walk "^0.1.0"
4779
4450minimatch@3.0.4, minimatch@^3.0.4: 4780minimatch@3.0.4, minimatch@^3.0.4:
4451 version "3.0.4" 4781 version "3.0.4"
4452 resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.0.4.tgz#5166e286457f03306064be5497e8dbb0c3d32083" 4782 resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.0.4.tgz#5166e286457f03306064be5497e8dbb0c3d32083"
@@ -4467,13 +4797,6 @@ minipass@^2.6.0, minipass@^2.8.6, minipass@^2.9.0:
4467 safe-buffer "^5.1.2" 4797 safe-buffer "^5.1.2"
4468 yallist "^3.0.0" 4798 yallist "^3.0.0"
4469 4799
4470minipass@^3.0.0:
4471 version "3.1.1"
4472 resolved "https://registry.yarnpkg.com/minipass/-/minipass-3.1.1.tgz#7607ce778472a185ad6d89082aa2070f79cedcd5"
4473 integrity sha512-UFqVihv6PQgwj8/yTGvl9kPz7xIAY+R5z6XYjRInD3Gk3qx6QGSD6zEcpeG4Dy/lQnv1J6zv8ejV90hyYIKf3w==
4474 dependencies:
4475 yallist "^4.0.0"
4476
4477minizlib@^1.2.1: 4800minizlib@^1.2.1:
4478 version "1.3.3" 4801 version "1.3.3"
4479 resolved "https://registry.yarnpkg.com/minizlib/-/minizlib-1.3.3.tgz#2290de96818a34c29551c8a8d301216bd65a861d" 4802 resolved "https://registry.yarnpkg.com/minizlib/-/minizlib-1.3.3.tgz#2290de96818a34c29551c8a8d301216bd65a861d"
@@ -4481,14 +4804,6 @@ minizlib@^1.2.1:
4481 dependencies: 4804 dependencies:
4482 minipass "^2.9.0" 4805 minipass "^2.9.0"
4483 4806
4484minizlib@^2.1.0:
4485 version "2.1.0"
4486 resolved "https://registry.yarnpkg.com/minizlib/-/minizlib-2.1.0.tgz#fd52c645301ef09a63a2c209697c294c6ce02cf3"
4487 integrity sha512-EzTZN/fjSvifSX0SlqUERCN39o6T40AMarPbv0MrarSFtIITCBh7bi+dU8nxGFHuqs9jdIAeoYoKuQAAASsPPA==
4488 dependencies:
4489 minipass "^3.0.0"
4490 yallist "^4.0.0"
4491
4492mkdirp-classic@^0.5.2: 4807mkdirp-classic@^0.5.2:
4493 version "0.5.2" 4808 version "0.5.2"
4494 resolved "https://registry.yarnpkg.com/mkdirp-classic/-/mkdirp-classic-0.5.2.tgz#54c441ce4c96cd7790e10b41a87aa51068ecab2b" 4809 resolved "https://registry.yarnpkg.com/mkdirp-classic/-/mkdirp-classic-0.5.2.tgz#54c441ce4c96cd7790e10b41a87aa51068ecab2b"
@@ -4508,11 +4823,6 @@ mkdirp@0.x.x, mkdirp@^0.5.0, mkdirp@^0.5.1, mkdirp@~0.5.1:
4508 dependencies: 4823 dependencies:
4509 minimist "^1.2.5" 4824 minimist "^1.2.5"
4510 4825
4511mkdirp@^1.0.3:
4512 version "1.0.3"
4513 resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-1.0.3.tgz#4cf2e30ad45959dddea53ad97d518b6c8205e1ea"
4514 integrity sha512-6uCP4Qc0sWsgMLy1EOqqS/3rjDHOEnsStVr/4vtAIK2Y5i2kA7lFFejYrpIyiN9w0pYf4ckeCYT9f1r1P9KX5g==
4515
4516mocha-parallel-tests@^2.2.1: 4826mocha-parallel-tests@^2.2.1:
4517 version "2.3.0" 4827 version "2.3.0"
4518 resolved "https://registry.yarnpkg.com/mocha-parallel-tests/-/mocha-parallel-tests-2.3.0.tgz#92d5cf0a3c9ba71b1a9c08a7b56194c023a58de1" 4828 resolved "https://registry.yarnpkg.com/mocha-parallel-tests/-/mocha-parallel-tests-2.3.0.tgz#92d5cf0a3c9ba71b1a9c08a7b56194c023a58de1"
@@ -4654,11 +4964,6 @@ nan@~2.14.0:
4654 resolved "https://registry.yarnpkg.com/nan/-/nan-2.14.0.tgz#7818f722027b2459a86f0295d434d1fc2336c52c" 4964 resolved "https://registry.yarnpkg.com/nan/-/nan-2.14.0.tgz#7818f722027b2459a86f0295d434d1fc2336c52c"
4655 integrity sha512-INOFj37C7k3AfaNTtX8RhsTw7qRy7eLET14cROi9+5HAVbbHuIWUHEauBv5qT4Av2tWasiTY1Jw6puUNqRJXQg== 4965 integrity sha512-INOFj37C7k3AfaNTtX8RhsTw7qRy7eLET14cROi9+5HAVbbHuIWUHEauBv5qT4Av2tWasiTY1Jw6puUNqRJXQg==
4656 4966
4657napi-build-utils@^1.0.1:
4658 version "1.0.2"
4659 resolved "https://registry.yarnpkg.com/napi-build-utils/-/napi-build-utils-1.0.2.tgz#b1fddc0b2c46e380a0b7a76f984dd47c41a13806"
4660 integrity sha512-ONmRUqK7zj7DWX0D9ADe03wbwOBZxNAfF20PlGfCWQcD3+/MakShIHrMqx9YwPTfxDdF1zLeL+RGZiR9kGMLdg==
4661
4662natural-compare@^1.4.0: 4967natural-compare@^1.4.0:
4663 version "1.4.0" 4968 version "1.4.0"
4664 resolved "https://registry.yarnpkg.com/natural-compare/-/natural-compare-1.4.0.tgz#4abebfeed7541f2c27acfb29bdbbd15c8d5ba4f7" 4969 resolved "https://registry.yarnpkg.com/natural-compare/-/natural-compare-1.4.0.tgz#4abebfeed7541f2c27acfb29bdbbd15c8d5ba4f7"
@@ -4713,13 +5018,6 @@ nocache@2.1.0:
4713 resolved "https://registry.yarnpkg.com/nocache/-/nocache-2.1.0.tgz#120c9ffec43b5729b1d5de88cd71aa75a0ba491f" 5018 resolved "https://registry.yarnpkg.com/nocache/-/nocache-2.1.0.tgz#120c9ffec43b5729b1d5de88cd71aa75a0ba491f"
4714 integrity sha512-0L9FvHG3nfnnmaEQPjT9xhfN4ISk0A8/2j4M37Np4mcDesJjHgEUfgPhdCyZuFI954tjokaIj/A3NdpFNdEh4Q== 5019 integrity sha512-0L9FvHG3nfnnmaEQPjT9xhfN4ISk0A8/2j4M37Np4mcDesJjHgEUfgPhdCyZuFI954tjokaIj/A3NdpFNdEh4Q==
4715 5020
4716node-abi@^2.7.0:
4717 version "2.15.0"
4718 resolved "https://registry.yarnpkg.com/node-abi/-/node-abi-2.15.0.tgz#51d55cc711bd9e4a24a572ace13b9231945ccb10"
4719 integrity sha512-FeLpTS0F39U7hHZU1srAK4Vx+5AHNVOTP+hxBNQknR/54laTHSFIJkDWDqiquY1LeLUgTfPN7sLPhMubx0PLAg==
4720 dependencies:
4721 semver "^5.4.1"
4722
4723node-addon-api@^2.0.0: 5021node-addon-api@^2.0.0:
4724 version "2.0.0" 5022 version "2.0.0"
4725 resolved "https://registry.yarnpkg.com/node-addon-api/-/node-addon-api-2.0.0.tgz#f9afb8d777a91525244b01775ea0ddbe1125483b" 5023 resolved "https://registry.yarnpkg.com/node-addon-api/-/node-addon-api-2.0.0.tgz#f9afb8d777a91525244b01775ea0ddbe1125483b"
@@ -4811,11 +5109,6 @@ nodemon@^2.0.1:
4811 undefsafe "^2.0.2" 5109 undefsafe "^2.0.2"
4812 update-notifier "^2.5.0" 5110 update-notifier "^2.5.0"
4813 5111
4814noop-logger@^0.1.1:
4815 version "0.1.1"
4816 resolved "https://registry.yarnpkg.com/noop-logger/-/noop-logger-0.1.1.tgz#94a2b1633c4f1317553007d8966fd0e841b6a4c2"
4817 integrity sha1-lKKxYzxPExdVMAfYlm/Q6EG2pMI=
4818
4819nopt@^4.0.1: 5112nopt@^4.0.1:
4820 version "4.0.3" 5113 version "4.0.3"
4821 resolved "https://registry.yarnpkg.com/nopt/-/nopt-4.0.3.tgz#a375cad9d02fd921278d954c2254d5aa57e15e48" 5114 resolved "https://registry.yarnpkg.com/nopt/-/nopt-4.0.3.tgz#a375cad9d02fd921278d954c2254d5aa57e15e48"
@@ -4881,7 +5174,7 @@ npm-run-path@^4.0.0:
4881 dependencies: 5174 dependencies:
4882 path-key "^3.0.0" 5175 path-key "^3.0.0"
4883 5176
4884npmlog@^4.0.1, npmlog@^4.0.2, npmlog@^4.1.2: 5177npmlog@^4.0.2:
4885 version "4.1.2" 5178 version "4.1.2"
4886 resolved "https://registry.yarnpkg.com/npmlog/-/npmlog-4.1.2.tgz#08a7f2a8bf734604779a9efa4ad5cc717abb954b" 5179 resolved "https://registry.yarnpkg.com/npmlog/-/npmlog-4.1.2.tgz#08a7f2a8bf734604779a9efa4ad5cc717abb954b"
4887 integrity sha512-2uUqazuKlTaSI/dC8AzicUck7+IrEaOnN/e0jd3Xtt1KcGpwx30v50mL7oPyr/h9bL3E4aZccVwpwP+5W9Vjkg== 5180 integrity sha512-2uUqazuKlTaSI/dC8AzicUck7+IrEaOnN/e0jd3Xtt1KcGpwx30v50mL7oPyr/h9bL3E4aZccVwpwP+5W9Vjkg==
@@ -4978,6 +5271,11 @@ object.values@^1.1.0:
4978 function-bind "^1.1.1" 5271 function-bind "^1.1.1"
4979 has "^1.0.3" 5272 has "^1.0.3"
4980 5273
5274omggif@^1.0.9:
5275 version "1.0.10"
5276 resolved "https://registry.yarnpkg.com/omggif/-/omggif-1.0.10.tgz#ddaaf90d4a42f532e9e7cb3a95ecdd47f17c7b19"
5277 integrity sha512-LMJTtvgc/nugXj0Vcrrs68Mn2D1r0zf630VNtqtpI1FEO7e+O9FP4gqs9AcnBaSEeoHIPm28u6qgPR0oyEpGSw==
5278
4981on-finished@^2.3.0, on-finished@~2.3.0: 5279on-finished@^2.3.0, on-finished@~2.3.0:
4982 version "2.3.0" 5280 version "2.3.0"
4983 resolved "https://registry.yarnpkg.com/on-finished/-/on-finished-2.3.0.tgz#20f1336481b083cd75337992a16971aa2d906947" 5281 resolved "https://registry.yarnpkg.com/on-finished/-/on-finished-2.3.0.tgz#20f1336481b083cd75337992a16971aa2d906947"
@@ -5142,6 +5440,11 @@ packet-reader@1.0.0:
5142 resolved "https://registry.yarnpkg.com/packet-reader/-/packet-reader-1.0.0.tgz#9238e5480dedabacfe1fe3f2771063f164157d74" 5440 resolved "https://registry.yarnpkg.com/packet-reader/-/packet-reader-1.0.0.tgz#9238e5480dedabacfe1fe3f2771063f164157d74"
5143 integrity sha512-HAKu/fG3HpHFO0AA8WE8q2g+gBJaZ9MG7fcKk+IJPLTGAD6Psw4443l+9DGRbOIh3/aXr7Phy0TjilYivJo5XQ== 5441 integrity sha512-HAKu/fG3HpHFO0AA8WE8q2g+gBJaZ9MG7fcKk+IJPLTGAD6Psw4443l+9DGRbOIh3/aXr7Phy0TjilYivJo5XQ==
5144 5442
5443pako@^1.0.5:
5444 version "1.0.11"
5445 resolved "https://registry.yarnpkg.com/pako/-/pako-1.0.11.tgz#6c9599d340d54dfd3946380252a35705a6b992bf"
5446 integrity sha512-4hLB8Py4zZce5s4yd9XzopqwVv/yGNhV1Bl8NTmCq1763HeK2+EwVTv+leGeL13Dnh2wfbqowVPXCIO0z4taYw==
5447
5145parent-module@^1.0.0: 5448parent-module@^1.0.0:
5146 version "1.0.1" 5449 version "1.0.1"
5147 resolved "https://registry.yarnpkg.com/parent-module/-/parent-module-1.0.1.tgz#691d2709e78c79fae3a156622452d00762caaaa2" 5450 resolved "https://registry.yarnpkg.com/parent-module/-/parent-module-1.0.1.tgz#691d2709e78c79fae3a156622452d00762caaaa2"
@@ -5149,6 +5452,29 @@ parent-module@^1.0.0:
5149 dependencies: 5452 dependencies:
5150 callsites "^3.0.0" 5453 callsites "^3.0.0"
5151 5454
5455parse-bmfont-ascii@^1.0.3:
5456 version "1.0.6"
5457 resolved "https://registry.yarnpkg.com/parse-bmfont-ascii/-/parse-bmfont-ascii-1.0.6.tgz#11ac3c3ff58f7c2020ab22769079108d4dfa0285"
5458 integrity sha1-Eaw8P/WPfCAgqyJ2kHkQjU36AoU=
5459
5460parse-bmfont-binary@^1.0.5:
5461 version "1.0.6"
5462 resolved "https://registry.yarnpkg.com/parse-bmfont-binary/-/parse-bmfont-binary-1.0.6.tgz#d038b476d3e9dd9db1e11a0b0e53a22792b69006"
5463 integrity sha1-0Di0dtPp3Z2x4RoLDlOiJ5K2kAY=
5464
5465parse-bmfont-xml@^1.1.4:
5466 version "1.1.4"
5467 resolved "https://registry.yarnpkg.com/parse-bmfont-xml/-/parse-bmfont-xml-1.1.4.tgz#015319797e3e12f9e739c4d513872cd2fa35f389"
5468 integrity sha512-bjnliEOmGv3y1aMEfREMBJ9tfL3WR0i0CKPj61DnSLaoxWR3nLrsQrEbCId/8rF4NyRF0cCqisSVXyQYWM+mCQ==
5469 dependencies:
5470 xml-parse-from-string "^1.0.0"
5471 xml2js "^0.4.5"
5472
5473parse-headers@^2.0.0:
5474 version "2.0.3"
5475 resolved "https://registry.yarnpkg.com/parse-headers/-/parse-headers-2.0.3.tgz#5e8e7512383d140ba02f0c7aa9f49b4399c92515"
5476 integrity sha512-QhhZ+DCCit2Coi2vmAKbq5RGTRcQUOE2+REgv8vdyu7MnYx2eZztegqtTx99TZ86GTIwqiy3+4nQTWZ2tgmdCA==
5477
5152parse-json@^2.2.0: 5478parse-json@^2.2.0:
5153 version "2.2.0" 5479 version "2.2.0"
5154 resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-2.2.0.tgz#f480f40434ef80741f8469099f8dea18f55a4dc9" 5480 resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-2.2.0.tgz#f480f40434ef80741f8469099f8dea18f55a4dc9"
@@ -5343,6 +5669,11 @@ pgpass@1.x:
5343 dependencies: 5669 dependencies:
5344 split "^1.0.0" 5670 split "^1.0.0"
5345 5671
5672phin@^2.9.1:
5673 version "2.9.3"
5674 resolved "https://registry.yarnpkg.com/phin/-/phin-2.9.3.tgz#f9b6ac10a035636fb65dfc576aaaa17b8743125c"
5675 integrity sha512-CzFr90qM24ju5f88quFC/6qohjC144rehe5n6DH900lgXmUe86+xCKc10ev56gRKC4/BkHUoG4uSiQgBiIXwDA==
5676
5346picomatch@^2.0.4, picomatch@^2.0.7: 5677picomatch@^2.0.4, picomatch@^2.0.7:
5347 version "2.2.2" 5678 version "2.2.2"
5348 resolved "https://registry.yarnpkg.com/picomatch/-/picomatch-2.2.2.tgz#21f333e9b6b8eaff02468f5146ea406d345f4dad" 5679 resolved "https://registry.yarnpkg.com/picomatch/-/picomatch-2.2.2.tgz#21f333e9b6b8eaff02468f5146ea406d345f4dad"
@@ -5373,6 +5704,13 @@ pify@^5.0.0:
5373 resolved "https://registry.yarnpkg.com/pify/-/pify-5.0.0.tgz#1f5eca3f5e87ebec28cc6d54a0e4aaf00acc127f" 5704 resolved "https://registry.yarnpkg.com/pify/-/pify-5.0.0.tgz#1f5eca3f5e87ebec28cc6d54a0e4aaf00acc127f"
5374 integrity sha512-eW/gHNMlxdSP6dmG6uJip6FXN0EQBwm2clYYd8Wul42Cwu/DK8HEftzsapcNdYe2MfLiIwZqsDk2RDEsTE79hA== 5705 integrity sha512-eW/gHNMlxdSP6dmG6uJip6FXN0EQBwm2clYYd8Wul42Cwu/DK8HEftzsapcNdYe2MfLiIwZqsDk2RDEsTE79hA==
5375 5706
5707pixelmatch@^4.0.2:
5708 version "4.0.2"
5709 resolved "https://registry.yarnpkg.com/pixelmatch/-/pixelmatch-4.0.2.tgz#8f47dcec5011b477b67db03c243bc1f3085e8854"
5710 integrity sha1-j0fc7FARtHe2fbA8JDvB8wheiFQ=
5711 dependencies:
5712 pngjs "^3.0.0"
5713
5376pkg-dir@^2.0.0: 5714pkg-dir@^2.0.0:
5377 version "2.0.0" 5715 version "2.0.0"
5378 resolved "https://registry.yarnpkg.com/pkg-dir/-/pkg-dir-2.0.0.tgz#f6d5d1109e19d63edf428e0bd57e12777615334b" 5716 resolved "https://registry.yarnpkg.com/pkg-dir/-/pkg-dir-2.0.0.tgz#f6d5d1109e19d63edf428e0bd57e12777615334b"
@@ -5390,6 +5728,11 @@ pkginfo@0.x.x:
5390 resolved "https://registry.yarnpkg.com/pkginfo/-/pkginfo-0.4.1.tgz#b5418ef0439de5425fc4995042dced14fb2a84ff" 5728 resolved "https://registry.yarnpkg.com/pkginfo/-/pkginfo-0.4.1.tgz#b5418ef0439de5425fc4995042dced14fb2a84ff"
5391 integrity sha1-tUGO8EOd5UJfxJlQQtztFPsqhP8= 5729 integrity sha1-tUGO8EOd5UJfxJlQQtztFPsqhP8=
5392 5730
5731pngjs@^3.0.0, pngjs@^3.3.3:
5732 version "3.4.0"
5733 resolved "https://registry.yarnpkg.com/pngjs/-/pngjs-3.4.0.tgz#99ca7d725965fb655814eaf65f38f12bbdbf555f"
5734 integrity sha512-NCrCHhWmnQklfH4MtJMRjZ2a8c80qXeMlQMv2uVp9ISJMTt562SbGd6n2oq0PaPgKm7Z6pL9E2UlLIhC+SHL3w==
5735
5393postgres-array@~2.0.0: 5736postgres-array@~2.0.0:
5394 version "2.0.0" 5737 version "2.0.0"
5395 resolved "https://registry.yarnpkg.com/postgres-array/-/postgres-array-2.0.0.tgz#48f8fce054fbc69671999329b8834b772652d82e" 5738 resolved "https://registry.yarnpkg.com/postgres-array/-/postgres-array-2.0.0.tgz#48f8fce054fbc69671999329b8834b772652d82e"
@@ -5412,27 +5755,6 @@ postgres-interval@^1.1.0:
5412 dependencies: 5755 dependencies:
5413 xtend "^4.0.0" 5756 xtend "^4.0.0"
5414 5757
5415prebuild-install@^5.3.3:
5416 version "5.3.3"
5417 resolved "https://registry.yarnpkg.com/prebuild-install/-/prebuild-install-5.3.3.tgz#ef4052baac60d465f5ba6bf003c9c1de79b9da8e"
5418 integrity sha512-GV+nsUXuPW2p8Zy7SarF/2W/oiK8bFQgJcncoJ0d7kRpekEA0ftChjfEaF9/Y+QJEc/wFR7RAEa8lYByuUIe2g==
5419 dependencies:
5420 detect-libc "^1.0.3"
5421 expand-template "^2.0.3"
5422 github-from-package "0.0.0"
5423 minimist "^1.2.0"
5424 mkdirp "^0.5.1"
5425 napi-build-utils "^1.0.1"
5426 node-abi "^2.7.0"
5427 noop-logger "^0.1.1"
5428 npmlog "^4.0.1"
5429 pump "^3.0.0"
5430 rc "^1.2.7"
5431 simple-get "^3.0.3"
5432 tar-fs "^2.0.0"
5433 tunnel-agent "^0.6.0"
5434 which-pm-runs "^1.0.0"
5435
5436prelude-ls@~1.1.2: 5758prelude-ls@~1.1.2:
5437 version "1.1.2" 5759 version "1.1.2"
5438 resolved "https://registry.yarnpkg.com/prelude-ls/-/prelude-ls-1.1.2.tgz#21932a549f5e52ffd9a827f570e04be62a97da54" 5760 resolved "https://registry.yarnpkg.com/prelude-ls/-/prelude-ls-1.1.2.tgz#21932a549f5e52ffd9a827f570e04be62a97da54"
@@ -5463,6 +5785,11 @@ process-nextick-args@~2.0.0:
5463 resolved "https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-2.0.1.tgz#7820d9b16120cc55ca9ae7792680ae7dba6d7fe2" 5785 resolved "https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-2.0.1.tgz#7820d9b16120cc55ca9ae7792680ae7dba6d7fe2"
5464 integrity sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag== 5786 integrity sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==
5465 5787
5788process@~0.5.1:
5789 version "0.5.2"
5790 resolved "https://registry.yarnpkg.com/process/-/process-0.5.2.tgz#1638d8a8e34c2f440a91db95ab9aeb677fc185cf"
5791 integrity sha1-FjjYqONML0QKkduVq5rrZ3/Bhc8=
5792
5466progress@^2.0.0: 5793progress@^2.0.0:
5467 version "2.0.3" 5794 version "2.0.3"
5468 resolved "https://registry.yarnpkg.com/progress/-/progress-2.0.3.tgz#7e8cf8d8f5b8f239c1bc68beb4eb78567d572ef8" 5795 resolved "https://registry.yarnpkg.com/progress/-/progress-2.0.3.tgz#7e8cf8d8f5b8f239c1bc68beb4eb78567d572ef8"
@@ -5898,7 +6225,7 @@ regenerator-runtime@^0.11.0:
5898 resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.11.1.tgz#be05ad7f9bf7d22e056f9726cee5017fbf19e2e9" 6225 resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.11.1.tgz#be05ad7f9bf7d22e056f9726cee5017fbf19e2e9"
5899 integrity sha512-MguG95oij0fC3QV3URf4V2SDYGJhJnJGqvIIgdECeODCT98wSWDAJ94SSuVpYQUoTcGUIL6L4yNB7j1DFFHSBg== 6226 integrity sha512-MguG95oij0fC3QV3URf4V2SDYGJhJnJGqvIIgdECeODCT98wSWDAJ94SSuVpYQUoTcGUIL6L4yNB7j1DFFHSBg==
5900 6227
5901regenerator-runtime@^0.13.4: 6228regenerator-runtime@^0.13.3, regenerator-runtime@^0.13.4:
5902 version "0.13.5" 6229 version "0.13.5"
5903 resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.13.5.tgz#d878a1d094b4306d10b9096484b33ebd55e26697" 6230 resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.13.5.tgz#d878a1d094b4306d10b9096484b33ebd55e26697"
5904 integrity sha512-ZS5w8CpKFinUzOwW3c83oPeVXoNsrLsaCoLtJvAClH135j/R77RuymhiSErhm2lKcwSCIpmvIWSbDkIfAqKQlA== 6231 integrity sha512-ZS5w8CpKFinUzOwW3c83oPeVXoNsrLsaCoLtJvAClH135j/R77RuymhiSErhm2lKcwSCIpmvIWSbDkIfAqKQlA==
@@ -6130,7 +6457,7 @@ semver-diff@^2.0.0:
6130 dependencies: 6457 dependencies:
6131 semver "^5.0.3" 6458 semver "^5.0.3"
6132 6459
6133"semver@2 || 3 || 4 || 5", semver@^5.0.3, semver@^5.1.0, semver@^5.3.0, semver@^5.4.1, semver@^5.5.0, semver@^5.7.0, semver@^5.7.1: 6460"semver@2 || 3 || 4 || 5", semver@^5.0.3, semver@^5.1.0, semver@^5.3.0, semver@^5.5.0, semver@^5.7.0, semver@^5.7.1:
6134 version "5.7.1" 6461 version "5.7.1"
6135 resolved "https://registry.yarnpkg.com/semver/-/semver-5.7.1.tgz#a954f931aeba508d307bbf069eff0c01c96116f7" 6462 resolved "https://registry.yarnpkg.com/semver/-/semver-5.7.1.tgz#a954f931aeba508d307bbf069eff0c01c96116f7"
6136 integrity sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ== 6463 integrity sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==
@@ -6145,11 +6472,6 @@ semver@^6.1.0, semver@^6.1.2, semver@^6.3.0:
6145 resolved "https://registry.yarnpkg.com/semver/-/semver-6.3.0.tgz#ee0a64c8af5e8ceea67687b133761e1becbd1d3d" 6472 resolved "https://registry.yarnpkg.com/semver/-/semver-6.3.0.tgz#ee0a64c8af5e8ceea67687b133761e1becbd1d3d"
6146 integrity sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw== 6473 integrity sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==
6147 6474
6148semver@^7.1.3:
6149 version "7.1.3"
6150 resolved "https://registry.yarnpkg.com/semver/-/semver-7.1.3.tgz#e4345ce73071c53f336445cfc19efb1c311df2a6"
6151 integrity sha512-ekM0zfiA9SCBlsKa2X1hxyxiI4L3B6EbVJkkdgQXnSEEaHlGdvyodMruTiulSRWMMB4NeIuYNMC9rTKTz97GxA==
6152
6153send@0.17.1: 6475send@0.17.1:
6154 version "0.17.1" 6476 version "0.17.1"
6155 resolved "https://registry.yarnpkg.com/send/-/send-0.17.1.tgz#c1d8b059f7900f7466dd4938bdc44e11ddb376c8" 6477 resolved "https://registry.yarnpkg.com/send/-/send-0.17.1.tgz#c1d8b059f7900f7466dd4938bdc44e11ddb376c8"
@@ -6222,21 +6544,6 @@ setprototypeof@1.1.1:
6222 resolved "https://registry.yarnpkg.com/setprototypeof/-/setprototypeof-1.1.1.tgz#7e95acb24aa92f5885e0abef5ba131330d4ae683" 6544 resolved "https://registry.yarnpkg.com/setprototypeof/-/setprototypeof-1.1.1.tgz#7e95acb24aa92f5885e0abef5ba131330d4ae683"
6223 integrity sha512-JvdAWfbXeIGaZ9cILp38HntZSFSo3mWg6xGcJJsd+d4aRMOqauag1C63dJfDw7OaMYwEbHMOxEZ1lqVRYP2OAw== 6545 integrity sha512-JvdAWfbXeIGaZ9cILp38HntZSFSo3mWg6xGcJJsd+d4aRMOqauag1C63dJfDw7OaMYwEbHMOxEZ1lqVRYP2OAw==
6224 6546
6225sharp@^0.25.2:
6226 version "0.25.2"
6227 resolved "https://registry.yarnpkg.com/sharp/-/sharp-0.25.2.tgz#f9003d73be50e9265e98f79f04fe53d8c66a3967"
6228 integrity sha512-l1GN0kFNtJr3U9i9pt7a+vo2Ij0xv4tTKDIPx8W6G9WELhPwrMyZZJKAAQNBSI785XB4uZfS5Wpz8C9jWV4AFQ==
6229 dependencies:
6230 color "^3.1.2"
6231 detect-libc "^1.0.3"
6232 node-addon-api "^2.0.0"
6233 npmlog "^4.1.2"
6234 prebuild-install "^5.3.3"
6235 semver "^7.1.3"
6236 simple-get "^3.1.0"
6237 tar "^6.0.1"
6238 tunnel-agent "^0.6.0"
6239
6240shebang-command@^1.2.0: 6547shebang-command@^1.2.0:
6241 version "1.2.0" 6548 version "1.2.0"
6242 resolved "https://registry.yarnpkg.com/shebang-command/-/shebang-command-1.2.0.tgz#44aac65b695b03398968c39f363fee5deafdf1ea" 6549 resolved "https://registry.yarnpkg.com/shebang-command/-/shebang-command-1.2.0.tgz#44aac65b695b03398968c39f363fee5deafdf1ea"
@@ -6276,7 +6583,7 @@ simple-concat@^1.0.0:
6276 resolved "https://registry.yarnpkg.com/simple-concat/-/simple-concat-1.0.0.tgz#7344cbb8b6e26fb27d66b2fc86f9f6d5997521c6" 6583 resolved "https://registry.yarnpkg.com/simple-concat/-/simple-concat-1.0.0.tgz#7344cbb8b6e26fb27d66b2fc86f9f6d5997521c6"
6277 integrity sha1-c0TLuLbib7J9ZrL8hvn21Zl1IcY= 6584 integrity sha1-c0TLuLbib7J9ZrL8hvn21Zl1IcY=
6278 6585
6279simple-get@^3.0.0, simple-get@^3.0.1, simple-get@^3.0.3, simple-get@^3.1.0: 6586simple-get@^3.0.0, simple-get@^3.0.1:
6280 version "3.1.0" 6587 version "3.1.0"
6281 resolved "https://registry.yarnpkg.com/simple-get/-/simple-get-3.1.0.tgz#b45be062435e50d159540b576202ceec40b9c6b3" 6588 resolved "https://registry.yarnpkg.com/simple-get/-/simple-get-3.1.0.tgz#b45be062435e50d159540b576202ceec40b9c6b3"
6282 integrity sha512-bCR6cP+aTdScaQCnQKbPKtJOKDp/hj9EDLJo3Nw4y1QksqaovlW/bnptB6/c1e+qmNIDHRK+oXFDdEqBT8WzUA== 6589 integrity sha512-bCR6cP+aTdScaQCnQKbPKtJOKDp/hj9EDLJo3Nw4y1QksqaovlW/bnptB6/c1e+qmNIDHRK+oXFDdEqBT8WzUA==
@@ -6835,27 +7142,6 @@ table@^5.2.3:
6835 slice-ansi "^2.1.0" 7142 slice-ansi "^2.1.0"
6836 string-width "^3.0.0" 7143 string-width "^3.0.0"
6837 7144
6838tar-fs@^2.0.0:
6839 version "2.0.1"
6840 resolved "https://registry.yarnpkg.com/tar-fs/-/tar-fs-2.0.1.tgz#e44086c1c60d31a4f0cf893b1c4e155dabfae9e2"
6841 integrity sha512-6tzWDMeroL87uF/+lin46k+Q+46rAJ0SyPGz7OW7wTgblI273hsBqk2C1j0/xNadNLKDTUL9BukSjB7cwgmlPA==
6842 dependencies:
6843 chownr "^1.1.1"
6844 mkdirp-classic "^0.5.2"
6845 pump "^3.0.0"
6846 tar-stream "^2.0.0"
6847
6848tar-stream@^2.0.0:
6849 version "2.1.2"
6850 resolved "https://registry.yarnpkg.com/tar-stream/-/tar-stream-2.1.2.tgz#6d5ef1a7e5783a95ff70b69b97455a5968dc1325"
6851 integrity sha512-UaF6FoJ32WqALZGOIAApXx+OdxhekNMChu6axLJR85zMMjXKWFGjbIRe+J6P4UnRGg9rAwWvbTT0oI7hD/Un7Q==
6852 dependencies:
6853 bl "^4.0.1"
6854 end-of-stream "^1.4.1"
6855 fs-constants "^1.0.0"
6856 inherits "^2.0.3"
6857 readable-stream "^3.1.1"
6858
6859tar@^4, tar@^4.4.2: 7145tar@^4, tar@^4.4.2:
6860 version "4.4.13" 7146 version "4.4.13"
6861 resolved "https://registry.yarnpkg.com/tar/-/tar-4.4.13.tgz#43b364bc52888d555298637b10d60790254ab525" 7147 resolved "https://registry.yarnpkg.com/tar/-/tar-4.4.13.tgz#43b364bc52888d555298637b10d60790254ab525"
@@ -6869,18 +7155,6 @@ tar@^4, tar@^4.4.2:
6869 safe-buffer "^5.1.2" 7155 safe-buffer "^5.1.2"
6870 yallist "^3.0.3" 7156 yallist "^3.0.3"
6871 7157
6872tar@^6.0.1:
6873 version "6.0.1"
6874 resolved "https://registry.yarnpkg.com/tar/-/tar-6.0.1.tgz#7b3bd6c313cb6e0153770108f8d70ac298607efa"
6875 integrity sha512-bKhKrrz2FJJj5s7wynxy/fyxpE0CmCjmOQ1KV4KkgXFWOgoIT/NbTMnB1n+LFNrNk0SSBVGGxcK5AGsyC+pW5Q==
6876 dependencies:
6877 chownr "^1.1.3"
6878 fs-minipass "^2.0.0"
6879 minipass "^3.0.0"
6880 minizlib "^2.1.0"
6881 mkdirp "^1.0.3"
6882 yallist "^4.0.0"
6883
6884term-size@^1.2.0: 7158term-size@^1.2.0:
6885 version "1.2.0" 7159 version "1.2.0"
6886 resolved "https://registry.yarnpkg.com/term-size/-/term-size-1.2.0.tgz#458b83887f288fc56d6fffbfad262e26638efa69" 7160 resolved "https://registry.yarnpkg.com/term-size/-/term-size-1.2.0.tgz#458b83887f288fc56d6fffbfad262e26638efa69"
@@ -6950,6 +7224,16 @@ timers-ext@^0.1.5:
6950 es5-ext "~0.10.46" 7224 es5-ext "~0.10.46"
6951 next-tick "1" 7225 next-tick "1"
6952 7226
7227timm@^1.6.1:
7228 version "1.6.2"
7229 resolved "https://registry.yarnpkg.com/timm/-/timm-1.6.2.tgz#dfd8c6719f7ba1fcfc6295a32670a1c6d166c0bd"
7230 integrity sha512-IH3DYDL1wMUwmIlVmMrmesw5lZD6N+ZOAFWEyLrtpoL9Bcrs9u7M/vyOnHzDD2SMs4irLkVjqxZbHrXStS/Nmw==
7231
7232tinycolor2@^1.4.1:
7233 version "1.4.1"
7234 resolved "https://registry.yarnpkg.com/tinycolor2/-/tinycolor2-1.4.1.tgz#f4fad333447bc0b07d4dc8e9209d8f39a8ac77e8"
7235 integrity sha1-9PrTM0R7wLB9TcjpIJ2POaisd+g=
7236
6953titleize@^2.1.0: 7237titleize@^2.1.0:
6954 version "2.1.0" 7238 version "2.1.0"
6955 resolved "https://registry.yarnpkg.com/titleize/-/titleize-2.1.0.tgz#5530de07c22147a0488887172b5bd94f5b30a48f" 7239 resolved "https://registry.yarnpkg.com/titleize/-/titleize-2.1.0.tgz#5530de07c22147a0488887172b5bd94f5b30a48f"
@@ -7322,6 +7606,13 @@ utf-8-validate@^5.0.1:
7322 dependencies: 7606 dependencies:
7323 node-gyp-build "~3.7.0" 7607 node-gyp-build "~3.7.0"
7324 7608
7609utif@^2.0.1:
7610 version "2.0.1"
7611 resolved "https://registry.yarnpkg.com/utif/-/utif-2.0.1.tgz#9e1582d9bbd20011a6588548ed3266298e711759"
7612 integrity sha512-Z/S1fNKCicQTf375lIP9G8Sa1H/phcysstNrrSdZKj1f9g58J4NMgb5IgiEZN9/nLMPDwF0W7hdOe9Qq2IYoLg==
7613 dependencies:
7614 pako "^1.0.5"
7615
7325util-deprecate@^1.0.1, util-deprecate@~1.0.1: 7616util-deprecate@^1.0.1, util-deprecate@~1.0.1:
7326 version "1.0.2" 7617 version "1.0.2"
7327 resolved "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf" 7618 resolved "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf"
@@ -7516,11 +7807,6 @@ which-module@^2.0.0:
7516 resolved "https://registry.yarnpkg.com/which-module/-/which-module-2.0.0.tgz#d9ef07dce77b9902b8a3a8fa4b31c3e3f7e6e87a" 7807 resolved "https://registry.yarnpkg.com/which-module/-/which-module-2.0.0.tgz#d9ef07dce77b9902b8a3a8fa4b31c3e3f7e6e87a"
7517 integrity sha1-2e8H3Od7mQK4o6j6SzHD4/fm6Ho= 7808 integrity sha1-2e8H3Od7mQK4o6j6SzHD4/fm6Ho=
7518 7809
7519which-pm-runs@^1.0.0:
7520 version "1.0.0"
7521 resolved "https://registry.yarnpkg.com/which-pm-runs/-/which-pm-runs-1.0.0.tgz#670b3afbc552e0b55df6b7780ca74615f23ad1cb"
7522 integrity sha1-Zws6+8VS4LVd9rd4DKdGFfI60cs=
7523
7524which@1.3.1, which@^1.1.1, which@^1.2.9: 7810which@1.3.1, which@^1.1.1, which@^1.2.9:
7525 version "1.3.1" 7811 version "1.3.1"
7526 resolved "https://registry.yarnpkg.com/which/-/which-1.3.1.tgz#a45043d54f5805316da8d62f9f50918d3da70b0a" 7812 resolved "https://registry.yarnpkg.com/which/-/which-1.3.1.tgz#a45043d54f5805316da8d62f9f50918d3da70b0a"
@@ -7686,7 +7972,22 @@ xhr2@^0.1.4:
7686 resolved "https://registry.yarnpkg.com/xhr2/-/xhr2-0.1.4.tgz#7f87658847716db5026323812f818cadab387a5f" 7972 resolved "https://registry.yarnpkg.com/xhr2/-/xhr2-0.1.4.tgz#7f87658847716db5026323812f818cadab387a5f"
7687 integrity sha1-f4dliEdxbbUCYyOBL4GMras4el8= 7973 integrity sha1-f4dliEdxbbUCYyOBL4GMras4el8=
7688 7974
7689xml2js@^0.4.4: 7975xhr@^2.0.1:
7976 version "2.5.0"
7977 resolved "https://registry.yarnpkg.com/xhr/-/xhr-2.5.0.tgz#bed8d1676d5ca36108667692b74b316c496e49dd"
7978 integrity sha512-4nlO/14t3BNUZRXIXfXe+3N6w3s1KoxcJUUURctd64BLRe67E4gRwp4PjywtDY72fXpZ1y6Ch0VZQRY/gMPzzQ==
7979 dependencies:
7980 global "~4.3.0"
7981 is-function "^1.0.1"
7982 parse-headers "^2.0.0"
7983 xtend "^4.0.0"
7984
7985xml-parse-from-string@^1.0.0:
7986 version "1.0.1"
7987 resolved "https://registry.yarnpkg.com/xml-parse-from-string/-/xml-parse-from-string-1.0.1.tgz#a9029e929d3dbcded169f3c6e28238d95a5d5a28"
7988 integrity sha1-qQKekp09vN7RafPG4oI42VpdWig=
7989
7990xml2js@^0.4.4, xml2js@^0.4.5:
7690 version "0.4.23" 7991 version "0.4.23"
7691 resolved "https://registry.yarnpkg.com/xml2js/-/xml2js-0.4.23.tgz#a0c69516752421eb2ac758ee4d4ccf58843eac66" 7992 resolved "https://registry.yarnpkg.com/xml2js/-/xml2js-0.4.23.tgz#a0c69516752421eb2ac758ee4d4ccf58843eac66"
7692 integrity sha512-ySPiMjM0+pLDftHgXY4By0uswI3SPKLDw/i3UXbnO8M/p28zqexCUoPmQFrYD+/1BzhGJSs2i1ERWKJAtiLrug== 7993 integrity sha512-ySPiMjM0+pLDftHgXY4By0uswI3SPKLDw/i3UXbnO8M/p28zqexCUoPmQFrYD+/1BzhGJSs2i1ERWKJAtiLrug==
@@ -7734,11 +8035,6 @@ yallist@^3.0.0, yallist@^3.0.2, yallist@^3.0.3:
7734 resolved "https://registry.yarnpkg.com/yallist/-/yallist-3.1.1.tgz#dbb7daf9bfd8bac9ab45ebf602b8cbad0d5d08fd" 8035 resolved "https://registry.yarnpkg.com/yallist/-/yallist-3.1.1.tgz#dbb7daf9bfd8bac9ab45ebf602b8cbad0d5d08fd"
7735 integrity sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g== 8036 integrity sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==
7736 8037
7737yallist@^4.0.0:
7738 version "4.0.0"
7739 resolved "https://registry.yarnpkg.com/yallist/-/yallist-4.0.0.tgz#9bb92790d9c0effec63be73519e11a35019a3a72"
7740 integrity sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==
7741
7742yargs-parser@13.1.2, yargs-parser@^13.1.2: 8038yargs-parser@13.1.2, yargs-parser@^13.1.2:
7743 version "13.1.2" 8039 version "13.1.2"
7744 resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-13.1.2.tgz#130f09702ebaeef2650d54ce6e3e5706f7a4fb38" 8040 resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-13.1.2.tgz#130f09702ebaeef2650d54ce6e3e5706f7a4fb38"