├── .gitignore ├── LICENSE ├── README.md ├── index.js ├── index_local.js ├── package-lock.json ├── package.json ├── yarn-error.log └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2022 Burak Tokak 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # vectorizer 2 | 3 | Potrace based multi-colored raster to vector tracer. Inputs PNG/JPG, returns SVG. 4 | 5 | [Checkout the Demo](https://vectormaker.co/) 6 | 7 | Includes 2 functions; 8 | 9 | `async inspectImage(image)` 10 | --- 11 | Returns possible options as an array to choose from. This options can be fed to parseImage function. 12 | 13 | `async parseImage(image, options)` 14 | --- 15 | Traces the image with given options (manually created or created by inspectImage) 16 | -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- 1 | import potrace from "potrace"; 2 | import fs from "fs-extra"; 3 | import sharp from "sharp"; 4 | import tinycolor from "tinycolor2"; 5 | import quantize from "quantize"; 6 | import SVGO from "svgo"; 7 | import NearestColor from "nearest-color"; 8 | import replaceAll from "string.prototype.replaceall"; 9 | import getColors from 'get-image-colors'; 10 | 11 | replaceAll.shim(); 12 | 13 | // https://stackoverflow.com/a/39077686 14 | const hexToRgb = (hex) => 15 | hex 16 | .replace( 17 | /^#?([a-f\d])([a-f\d])([a-f\d])$/i, 18 | (m, r, g, b) => "#" + r + r + g + g + b + b 19 | ) 20 | .substring(1) 21 | .match(/.{2}/g) 22 | .map((x) => parseInt(x, 16)); 23 | 24 | // https://stackoverflow.com/a/35663683 25 | function hexify(color) { 26 | var values = color 27 | .replace(/rgba?\(/, "") 28 | .replace(/\)/, "") 29 | .replace(/[\s+]/g, "") 30 | .split(","); 31 | var a = parseFloat(values[3] || 1), 32 | r = Math.floor(a * parseInt(values[0]) + (1 - a) * 255), 33 | g = Math.floor(a * parseInt(values[1]) + (1 - a) * 255), 34 | b = Math.floor(a * parseInt(values[2]) + (1 - a) * 255); 35 | return ( 36 | "#" + 37 | ("0" + r.toString(16)).slice(-2) + 38 | ("0" + g.toString(16)).slice(-2) + 39 | ("0" + b.toString(16)).slice(-2) 40 | ); 41 | } 42 | 43 | // https://graphicdesign.stackexchange.com/a/91018 44 | function combineOpacity(a, b) { 45 | return 1 - (1 - a) * (1 - b); 46 | } 47 | 48 | function getSolid(svg, stroke) { 49 | svg = svg.replaceAll(`fill="black"`, ""); 50 | const opacityRegex = /fill-opacity="[\d\.]+"/gi; 51 | const numberRegex = /[\d\.]+/; 52 | const matches = svg.match(opacityRegex); 53 | const colors = Array.from(new Set(matches)) 54 | .map((fillOpacity) => ({ 55 | fillOpacity, 56 | opacity: Number(fillOpacity.match(numberRegex)[0]), 57 | })) 58 | .sort((a, b) => b.opacity - a.opacity) 59 | .map(({ fillOpacity, opacity }, index, array) => { 60 | // combine all lighter opacities into dark opacity 61 | const lighterColors = array.slice(index); 62 | const trueOpacity = lighterColors.reduce( 63 | (acc, cur) => combineOpacity(acc, cur.opacity), 64 | 0 65 | ); 66 | // turn opacity into hex 67 | const hex = hexify(`rgba(0, 0, 0, ${trueOpacity})`); 68 | return { 69 | trueOpacity, 70 | fillOpacity, 71 | opacity, 72 | hex, 73 | }; 74 | }); 75 | for (const color of colors) { 76 | if(stroke){ 77 | svg = svg.replaceAll(color.fillOpacity, `fill="${color.hex}" stroke-width="1" stroke="${color.hex}"`); 78 | svg = svg.replaceAll(` stroke="none"`, ""); 79 | }else{ 80 | svg = svg.replaceAll(color.fillOpacity, `fill="${color.hex}"`); 81 | svg = svg.replaceAll(` stroke="none"`, ""); 82 | } 83 | } 84 | return svg; 85 | } 86 | 87 | async function getPixels(input) { 88 | const image = sharp(input); 89 | const metadata = await image.metadata(); 90 | const raw = await image.raw().toBuffer(); 91 | 92 | const pixels = []; 93 | for (let i = 0; i < raw.length; i = i + metadata.channels) { 94 | const pixel = []; 95 | for (let j = 0; j < metadata.channels; j++) { 96 | pixel.push(raw.readUInt8(i + j)); 97 | } 98 | pixels.push(pixel); 99 | } 100 | return { pixels, ...metadata }; 101 | } 102 | 103 | async function replaceColors(svg, original) { 104 | // if greyscale image, return greyscale svg 105 | if ((await (await sharp(original).metadata()).channels) === 1) { 106 | return svg; 107 | } 108 | 109 | const hexRegex = /#([a-f0-9]{3}){1,2}\b/gi; 110 | const matches = svg.match(hexRegex); 111 | const colors = Array.from(new Set(matches)); 112 | const pixelIndexesOfNearestColors = {}; // hex: [array of pixel indexes] 113 | colors.forEach((color) => (pixelIndexesOfNearestColors[color] = [])); 114 | 115 | const svgPixels = await getPixels(Buffer.from(svg)); 116 | 117 | const nearestColor = NearestColor.from(colors); 118 | 119 | svgPixels.pixels.forEach((pixel, index) => { 120 | // curly braces for scope https://stackoverflow.com/a/49350263 121 | switch (svgPixels.channels) { 122 | case 3: { 123 | const [r, g, b] = pixel; 124 | const rgb = `rgb(${r}, ${g}, ${b})`; 125 | const hex = hexify(rgb); 126 | pixelIndexesOfNearestColors[nearestColor(hex)].push(index); 127 | break; 128 | } 129 | case 4: { 130 | const [r, g, b, a] = pixel; 131 | const rgba = `rgba(${r}, ${g}, ${b}, ${a / 255})`; 132 | const hex = hexify(rgba); 133 | pixelIndexesOfNearestColors[nearestColor(hex)].push(index); 134 | break; 135 | } 136 | default: 137 | throw new Error("Unsupported number of channels"); 138 | } 139 | }); 140 | 141 | const originalPixels = await getPixels(original); 142 | const pixelsOfNearestColors = pixelIndexesOfNearestColors; 143 | Object.keys(pixelsOfNearestColors).forEach((hexKey) => { 144 | pixelsOfNearestColors[hexKey] = pixelsOfNearestColors[hexKey].map( 145 | (pixelIndex) => { 146 | const pixel = originalPixels.pixels[pixelIndex]; 147 | switch (originalPixels.channels) { 148 | case 3: { 149 | const [r, g, b] = pixel; 150 | const rgb = `rgb(${r}, ${g}, ${b})`; 151 | return hexify(rgb); 152 | } 153 | case 4: { 154 | const [r, g, b, a] = pixel; 155 | const rgba = `rgba(${r}, ${g}, ${b}, ${a / 255})`; 156 | return hexify(rgba); 157 | } 158 | default: 159 | throw new Error("Unsupported number of channels"); 160 | } 161 | } 162 | ); 163 | }); 164 | 165 | const colorsToReplace = pixelsOfNearestColors; 166 | // get palette of 5 https://github.com/lokesh/color-thief/blob/master/src/color-thief-node.js#L61 167 | Object.keys(pixelsOfNearestColors).forEach((hexKey) => { 168 | const pixelArray = colorsToReplace[hexKey].map(hexToRgb); 169 | const colorMap = quantize(pixelArray, 5); 170 | const [r, g, b] = colorMap.palette()[0]; 171 | const rgb = `rgb(${r}, ${g}, ${b})`; 172 | colorsToReplace[hexKey] = hexify(rgb); 173 | }); 174 | 175 | Object.entries(colorsToReplace).forEach(([oldColor, newColor]) => { 176 | svg = svg.replaceAll(oldColor, newColor); 177 | }); 178 | 179 | return svg; 180 | } 181 | 182 | function viewBoxify(svg){ 183 | let width = svg.split('width="')[1].split('"')[0]; 184 | let height = svg.split('height="')[1].split('"')[0]; 185 | 186 | let originalHeader = ``; 187 | return svg.replace(originalHeader, ``); 188 | } 189 | 190 | async function parseImage(imageName, step, colors) { 191 | 192 | let svg = await new Promise((resolve, reject) => { 193 | potrace.posterize( 194 | "./"+imageName+".png", 195 | { 196 | // number of colors 197 | optTolerance: 0.5, 198 | steps: step 199 | }, 200 | function (err, svg) { 201 | if (err) return reject(err); 202 | resolve(svg); 203 | } 204 | ); 205 | }); 206 | 207 | svg = getSolid(svg, step != 1); 208 | 209 | if(step == 1){ 210 | let paths = svg.split(" color.hsl()); 232 | let rgbList = listColors.map(color => color.rgb()); 233 | let hexList = listColors.map(color => color.hex()); 234 | 235 | let isWhiteBackground = hslList[0][2] > 0.80; 236 | if(isWhiteBackground){ 237 | hslList = hslList.slice(1); 238 | rgbList = rgbList.slice(1); 239 | hexList = hexList.slice(1); 240 | } 241 | 242 | let isBlackAndWhite = hslList[hslList.length - 1][2] < 0.05; 243 | 244 | if(isNaN(hslList[hslList.length-1][0])){ 245 | isBlackAndWhite = true; 246 | } 247 | 248 | if(isBlackAndWhite){ 249 | options.push({step: 1, colors: ["#000000"]}); 250 | 251 | }else{ 252 | 253 | let hueArray = hslList.map((color, i) => { 254 | if(isNaN(color[0])){ 255 | return 0; 256 | }else{ 257 | return color[0]; 258 | } 259 | }); 260 | 261 | let lumArray = hslList.map((color, i) => { 262 | if(isNaN(color[2])){ 263 | return 0; 264 | }else{ 265 | return color[2]; 266 | } 267 | }); 268 | 269 | let hueDifference = 0; 270 | let lumDifference = 0; 271 | for (var i = 0; i < hueArray.length; i++) { 272 | if(i != 0){ 273 | hueDifference += Math.abs(hueArray[i-1] - hueArray[i]); 274 | lumDifference += Math.abs(lumArray[i-1] - lumArray[i]); 275 | } 276 | } 277 | 278 | let isMonocolor = hueDifference < 5 && lumDifference < 2; 279 | 280 | if(isMonocolor){ 281 | options.push({step: 1, colors: [hexList[hexList.length-1]]}); 282 | }else{ 283 | options.push({step: 1, colors: hexList.slice(0,1)}); 284 | options.push({step: 2, colors: hexList.slice(0,2)}); 285 | options.push({step: 3, colors: hexList.slice(0,3)}); 286 | options.push({step: 4, colors: hexList.slice(0,4)}); 287 | } 288 | 289 | } 290 | 291 | return options; 292 | 293 | } 294 | 295 | 296 | export { inspectImage, parseImage }; 297 | -------------------------------------------------------------------------------- /index_local.js: -------------------------------------------------------------------------------- 1 | const potrace = require("potrace"); 2 | const fs = require("fs-extra"); 3 | const sharp = require("sharp"); 4 | const tinycolor = require("tinycolor2"); 5 | const quantize = require("quantize"); 6 | const SVGO = require("svgo"); 7 | const NearestColor = require("nearest-color"); 8 | const replaceAll = require("string.prototype.replaceall"); 9 | const getColors = require('get-image-colors') 10 | replaceAll.shim(); 11 | 12 | // https://stackoverflow.com/a/39077686 13 | const hexToRgb = (hex) => 14 | hex 15 | .replace( 16 | /^#?([a-f\d])([a-f\d])([a-f\d])$/i, 17 | (m, r, g, b) => "#" + r + r + g + g + b + b 18 | ) 19 | .substring(1) 20 | .match(/.{2}/g) 21 | .map((x) => parseInt(x, 16)); 22 | 23 | // https://stackoverflow.com/a/35663683 24 | function hexify(color) { 25 | var values = color 26 | .replace(/rgba?\(/, "") 27 | .replace(/\)/, "") 28 | .replace(/[\s+]/g, "") 29 | .split(","); 30 | var a = parseFloat(values[3] || 1), 31 | r = Math.floor(a * parseInt(values[0]) + (1 - a) * 255), 32 | g = Math.floor(a * parseInt(values[1]) + (1 - a) * 255), 33 | b = Math.floor(a * parseInt(values[2]) + (1 - a) * 255); 34 | return ( 35 | "#" + 36 | ("0" + r.toString(16)).slice(-2) + 37 | ("0" + g.toString(16)).slice(-2) + 38 | ("0" + b.toString(16)).slice(-2) 39 | ); 40 | } 41 | 42 | // https://graphicdesign.stackexchange.com/a/91018 43 | function combineOpacity(a, b) { 44 | return 1 - (1 - a) * (1 - b); 45 | } 46 | 47 | function getSolid(svg, stroke) { 48 | svg = svg.replaceAll(`fill="black"`, ""); 49 | const opacityRegex = /fill-opacity="[\d\.]+"/gi; 50 | const numberRegex = /[\d\.]+/; 51 | const matches = svg.match(opacityRegex); 52 | const colors = Array.from(new Set(matches)) 53 | .map((fillOpacity) => ({ 54 | fillOpacity, 55 | opacity: Number(fillOpacity.match(numberRegex)[0]), 56 | })) 57 | .sort((a, b) => b.opacity - a.opacity) 58 | .map(({ fillOpacity, opacity }, index, array) => { 59 | // combine all lighter opacities into dark opacity 60 | const lighterColors = array.slice(index); 61 | const trueOpacity = lighterColors.reduce( 62 | (acc, cur) => combineOpacity(acc, cur.opacity), 63 | 0 64 | ); 65 | // turn opacity into hex 66 | const hex = hexify(`rgba(0, 0, 0, ${trueOpacity})`); 67 | return { 68 | trueOpacity, 69 | fillOpacity, 70 | opacity, 71 | hex, 72 | }; 73 | }); 74 | for (const color of colors) { 75 | if(stroke){ 76 | svg = svg.replaceAll(color.fillOpacity, `fill="${color.hex}" stroke-width="1" stroke="${color.hex}"`); 77 | svg = svg.replaceAll(` stroke="none"`, ""); 78 | }else{ 79 | svg = svg.replaceAll(color.fillOpacity, `fill="${color.hex}"`); 80 | svg = svg.replaceAll(` stroke="none"`, ""); 81 | } 82 | } 83 | return svg; 84 | } 85 | 86 | async function getPixels(input) { 87 | const image = sharp(input); 88 | const metadata = await image.metadata(); 89 | const raw = await image.raw().toBuffer(); 90 | 91 | const pixels = []; 92 | for (let i = 0; i < raw.length; i = i + metadata.channels) { 93 | const pixel = []; 94 | for (let j = 0; j < metadata.channels; j++) { 95 | pixel.push(raw.readUInt8(i + j)); 96 | } 97 | pixels.push(pixel); 98 | } 99 | return { pixels, ...metadata }; 100 | } 101 | 102 | async function replaceColors(svg, original) { 103 | // if greyscale image, return greyscale svg 104 | if ((await (await sharp(original).metadata()).channels) === 1) { 105 | return svg; 106 | } 107 | 108 | const hexRegex = /#([a-f0-9]{3}){1,2}\b/gi; 109 | const matches = svg.match(hexRegex); 110 | const colors = Array.from(new Set(matches)); 111 | const pixelIndexesOfNearestColors = {}; // hex: [array of pixel indexes] 112 | colors.forEach((color) => (pixelIndexesOfNearestColors[color] = [])); 113 | 114 | const svgPixels = await getPixels(Buffer.from(svg)); 115 | 116 | const nearestColor = NearestColor.from(colors); 117 | 118 | svgPixels.pixels.forEach((pixel, index) => { 119 | // curly braces for scope https://stackoverflow.com/a/49350263 120 | switch (svgPixels.channels) { 121 | case 3: { 122 | const [r, g, b] = pixel; 123 | const rgb = `rgb(${r}, ${g}, ${b})`; 124 | const hex = hexify(rgb); 125 | pixelIndexesOfNearestColors[nearestColor(hex)].push(index); 126 | break; 127 | } 128 | case 4: { 129 | const [r, g, b, a] = pixel; 130 | const rgba = `rgba(${r}, ${g}, ${b}, ${a / 255})`; 131 | const hex = hexify(rgba); 132 | pixelIndexesOfNearestColors[nearestColor(hex)].push(index); 133 | break; 134 | } 135 | default: 136 | throw new Error("Unsupported number of channels"); 137 | } 138 | }); 139 | 140 | const originalPixels = await getPixels(original); 141 | const pixelsOfNearestColors = pixelIndexesOfNearestColors; 142 | Object.keys(pixelsOfNearestColors).forEach((hexKey) => { 143 | pixelsOfNearestColors[hexKey] = pixelsOfNearestColors[hexKey].map( 144 | (pixelIndex) => { 145 | const pixel = originalPixels.pixels[pixelIndex]; 146 | switch (originalPixels.channels) { 147 | case 3: { 148 | const [r, g, b] = pixel; 149 | const rgb = `rgb(${r}, ${g}, ${b})`; 150 | return hexify(rgb); 151 | } 152 | case 4: { 153 | const [r, g, b, a] = pixel; 154 | const rgba = `rgba(${r}, ${g}, ${b}, ${a / 255})`; 155 | return hexify(rgba); 156 | } 157 | default: 158 | throw new Error("Unsupported number of channels"); 159 | } 160 | } 161 | ); 162 | }); 163 | 164 | const colorsToReplace = pixelsOfNearestColors; 165 | // get palette of 5 https://github.com/lokesh/color-thief/blob/master/src/color-thief-node.js#L61 166 | Object.keys(pixelsOfNearestColors).forEach((hexKey) => { 167 | const pixelArray = colorsToReplace[hexKey].map(hexToRgb); 168 | const colorMap = quantize(pixelArray, 5); 169 | const [r, g, b] = colorMap.palette()[0]; 170 | const rgb = `rgb(${r}, ${g}, ${b})`; 171 | colorsToReplace[hexKey] = hexify(rgb); 172 | }); 173 | 174 | Object.entries(colorsToReplace).forEach(([oldColor, newColor]) => { 175 | svg = svg.replaceAll(oldColor, newColor); 176 | }); 177 | 178 | return svg; 179 | } 180 | 181 | function viewBoxify(svg){ 182 | let width = svg.split('width="')[1].split('"')[0]; 183 | let height = svg.split('height="')[1].split('"')[0]; 184 | 185 | let originalHeader = ``; 186 | return svg.replace(originalHeader, ``); 187 | } 188 | 189 | async function parseImage(imageName, step, colors) { 190 | 191 | let svg = await new Promise((resolve, reject) => { 192 | potrace.posterize( 193 | "./"+imageName+".png", 194 | { 195 | // number of colors 196 | optTolerance: 0.5, 197 | steps: step 198 | }, 199 | function (err, svg) { 200 | if (err) return reject(err); 201 | resolve(svg); 202 | } 203 | ); 204 | }); 205 | 206 | svg = getSolid(svg, step != 1); 207 | 208 | if(step == 1){ 209 | let paths = svg.split(" color.hsl()); 232 | let rgbList = listColors.map(color => color.rgb()); 233 | let hexList = listColors.map(color => color.hex()); 234 | 235 | let isWhiteBackground = hslList[0][2] > 0.80; 236 | if(isWhiteBackground){ 237 | hslList = hslList.slice(1); 238 | rgbList = rgbList.slice(1); 239 | hexList = hexList.slice(1); 240 | } 241 | 242 | let isBlackAndWhite = hslList[hslList.length - 1][2] < 0.05; 243 | 244 | if(isNaN(hslList[hslList.length-1][0])){ 245 | isBlackAndWhite = true; 246 | } 247 | 248 | if(isBlackAndWhite){ 249 | options.push({step: 1, colors: ["#000000"]}); 250 | 251 | }else{ 252 | 253 | let hueArray = hslList.map((color, i) => { 254 | if(isNaN(color[0])){ 255 | return 0; 256 | }else{ 257 | return color[0]; 258 | } 259 | }); 260 | 261 | let lumArray = hslList.map((color, i) => { 262 | if(isNaN(color[2])){ 263 | return 0; 264 | }else{ 265 | return color[2]; 266 | } 267 | }); 268 | 269 | let hueDifference = 0; 270 | let lumDifference = 0; 271 | for (var i = 0; i < hueArray.length; i++) { 272 | if(i != 0){ 273 | hueDifference += Math.abs(hueArray[i-1] - hueArray[i]); 274 | lumDifference += Math.abs(lumArray[i-1] - lumArray[i]); 275 | } 276 | } 277 | 278 | let isMonocolor = hueDifference < 5 && lumDifference < 2; 279 | 280 | if(isMonocolor){ 281 | options.push({step: 1, colors: [hexList[hexList.length-1]]}); 282 | }else{ 283 | options.push({step: 1, colors: hexList.slice(0,1)}); 284 | options.push({step: 2, colors: hexList.slice(0,2)}); 285 | options.push({step: 3, colors: hexList.slice(0,3)}); 286 | options.push({step: 4, colors: hexList.slice(0,4)}); 287 | } 288 | 289 | } 290 | 291 | console.log(options); 292 | let optionIndex = 0; 293 | parseImage(imageName, options[optionIndex].step, options[optionIndex].colors); 294 | 295 | } 296 | 297 | inspectImage("test"); 298 | //inspectImage("image-asset"); 299 | //inspectImage("coffee"); 300 | -------------------------------------------------------------------------------- /package-lock.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "vectorizer", 3 | "version": "1.0.0", 4 | "lockfileVersion": 1, 5 | "requires": true, 6 | "dependencies": { 7 | "@babel/runtime": { 8 | "version": "7.14.0", 9 | "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.14.0.tgz", 10 | "integrity": "sha512-JELkvo/DlpNdJ7dlyw/eY7E0suy5i5GQH+Vlxaq1nsNJ+H7f4Vtv3jMeCEgRhZZQFXTjldYfQgv2qmM6M1v5wA==", 11 | "requires": { 12 | "regenerator-runtime": "^0.13.4" 13 | } 14 | }, 15 | "@jimp/bmp": { 16 | "version": "0.14.0", 17 | "resolved": "https://registry.npmjs.org/@jimp/bmp/-/bmp-0.14.0.tgz", 18 | "integrity": "sha512-5RkX6tSS7K3K3xNEb2ygPuvyL9whjanhoaB/WmmXlJS6ub4DjTqrapu8j4qnIWmO4YYtFeTbDTXV6v9P1yMA5A==", 19 | "requires": { 20 | "@babel/runtime": "^7.7.2", 21 | "@jimp/utils": "^0.14.0", 22 | "bmp-js": "^0.1.0" 23 | } 24 | }, 25 | "@jimp/core": { 26 | "version": "0.14.0", 27 | "resolved": "https://registry.npmjs.org/@jimp/core/-/core-0.14.0.tgz", 28 | "integrity": "sha512-S62FcKdtLtj3yWsGfJRdFXSutjvHg7aQNiFogMbwq19RP4XJWqS2nOphu7ScB8KrSlyy5nPF2hkWNhLRLyD82w==", 29 | "requires": { 30 | "@babel/runtime": "^7.7.2", 31 | "@jimp/utils": "^0.14.0", 32 | "any-base": "^1.1.0", 33 | "buffer": "^5.2.0", 34 | "exif-parser": "^0.1.12", 35 | "file-type": "^9.0.0", 36 | "load-bmfont": "^1.3.1", 37 | "mkdirp": "^0.5.1", 38 | "phin": "^2.9.1", 39 | "pixelmatch": "^4.0.2", 40 | "tinycolor2": "^1.4.1" 41 | } 42 | }, 43 | "@jimp/custom": { 44 | "version": "0.14.0", 45 | "resolved": "https://registry.npmjs.org/@jimp/custom/-/custom-0.14.0.tgz", 46 | "integrity": "sha512-kQJMeH87+kWJdVw8F9GQhtsageqqxrvzg7yyOw3Tx/s7v5RToe8RnKyMM+kVtBJtNAG+Xyv/z01uYQ2jiZ3GwA==", 47 | "requires": { 48 | "@babel/runtime": "^7.7.2", 49 | "@jimp/core": "^0.14.0" 50 | } 51 | }, 52 | "@jimp/gif": { 53 | "version": "0.14.0", 54 | "resolved": "https://registry.npmjs.org/@jimp/gif/-/gif-0.14.0.tgz", 55 | "integrity": "sha512-DHjoOSfCaCz72+oGGEh8qH0zE6pUBaBxPxxmpYJjkNyDZP7RkbBkZJScIYeQ7BmJxmGN4/dZn+MxamoQlr+UYg==", 56 | "requires": { 57 | "@babel/runtime": "^7.7.2", 58 | "@jimp/utils": "^0.14.0", 59 | "gifwrap": "^0.9.2", 60 | "omggif": "^1.0.9" 61 | } 62 | }, 63 | "@jimp/jpeg": { 64 | "version": "0.14.0", 65 | "resolved": "https://registry.npmjs.org/@jimp/jpeg/-/jpeg-0.14.0.tgz", 66 | "integrity": "sha512-561neGbr+87S/YVQYnZSTyjWTHBm9F6F1obYHiyU3wVmF+1CLbxY3FQzt4YolwyQHIBv36Bo0PY2KkkU8BEeeQ==", 67 | "requires": { 68 | "@babel/runtime": "^7.7.2", 69 | "@jimp/utils": "^0.14.0", 70 | "jpeg-js": "^0.4.0" 71 | } 72 | }, 73 | "@jimp/plugin-blit": { 74 | "version": "0.14.0", 75 | "resolved": "https://registry.npmjs.org/@jimp/plugin-blit/-/plugin-blit-0.14.0.tgz", 76 | "integrity": "sha512-YoYOrnVHeX3InfgbJawAU601iTZMwEBZkyqcP1V/S33Qnz9uzH1Uj1NtC6fNgWzvX6I4XbCWwtr4RrGFb5CFrw==", 77 | "requires": { 78 | "@babel/runtime": "^7.7.2", 79 | "@jimp/utils": "^0.14.0" 80 | } 81 | }, 82 | "@jimp/plugin-blur": { 83 | "version": "0.14.0", 84 | "resolved": "https://registry.npmjs.org/@jimp/plugin-blur/-/plugin-blur-0.14.0.tgz", 85 | "integrity": "sha512-9WhZcofLrT0hgI7t0chf7iBQZib//0gJh9WcQMUt5+Q1Bk04dWs8vTgLNj61GBqZXgHSPzE4OpCrrLDBG8zlhQ==", 86 | "requires": { 87 | "@babel/runtime": "^7.7.2", 88 | "@jimp/utils": "^0.14.0" 89 | } 90 | }, 91 | "@jimp/plugin-circle": { 92 | "version": "0.14.0", 93 | "resolved": "https://registry.npmjs.org/@jimp/plugin-circle/-/plugin-circle-0.14.0.tgz", 94 | "integrity": "sha512-o5L+wf6QA44tvTum5HeLyLSc5eVfIUd5ZDVi5iRfO4o6GT/zux9AxuTSkKwnjhsG8bn1dDmywAOQGAx7BjrQVA==", 95 | "requires": { 96 | "@babel/runtime": "^7.7.2", 97 | "@jimp/utils": "^0.14.0" 98 | } 99 | }, 100 | "@jimp/plugin-color": { 101 | "version": "0.14.0", 102 | "resolved": "https://registry.npmjs.org/@jimp/plugin-color/-/plugin-color-0.14.0.tgz", 103 | "integrity": "sha512-JJz512SAILYV0M5LzBb9sbOm/XEj2fGElMiHAxb7aLI6jx+n0agxtHpfpV/AePTLm1vzzDxx6AJxXbKv355hBQ==", 104 | "requires": { 105 | "@babel/runtime": "^7.7.2", 106 | "@jimp/utils": "^0.14.0", 107 | "tinycolor2": "^1.4.1" 108 | } 109 | }, 110 | "@jimp/plugin-contain": { 111 | "version": "0.14.0", 112 | "resolved": "https://registry.npmjs.org/@jimp/plugin-contain/-/plugin-contain-0.14.0.tgz", 113 | "integrity": "sha512-RX2q233lGyaxiMY6kAgnm9ScmEkNSof0hdlaJAVDS1OgXphGAYAeSIAwzESZN4x3ORaWvkFefeVH9O9/698Evg==", 114 | "requires": { 115 | "@babel/runtime": "^7.7.2", 116 | "@jimp/utils": "^0.14.0" 117 | } 118 | }, 119 | "@jimp/plugin-cover": { 120 | "version": "0.14.0", 121 | "resolved": "https://registry.npmjs.org/@jimp/plugin-cover/-/plugin-cover-0.14.0.tgz", 122 | "integrity": "sha512-0P/5XhzWES4uMdvbi3beUgfvhn4YuQ/ny8ijs5kkYIw6K8mHcl820HahuGpwWMx56DJLHRl1hFhJwo9CeTRJtQ==", 123 | "requires": { 124 | "@babel/runtime": "^7.7.2", 125 | "@jimp/utils": "^0.14.0" 126 | } 127 | }, 128 | "@jimp/plugin-crop": { 129 | "version": "0.14.0", 130 | "resolved": "https://registry.npmjs.org/@jimp/plugin-crop/-/plugin-crop-0.14.0.tgz", 131 | "integrity": "sha512-Ojtih+XIe6/XSGtpWtbAXBozhCdsDMmy+THUJAGu2x7ZgKrMS0JotN+vN2YC3nwDpYkM+yOJImQeptSfZb2Sug==", 132 | "requires": { 133 | "@babel/runtime": "^7.7.2", 134 | "@jimp/utils": "^0.14.0" 135 | } 136 | }, 137 | "@jimp/plugin-displace": { 138 | "version": "0.14.0", 139 | "resolved": "https://registry.npmjs.org/@jimp/plugin-displace/-/plugin-displace-0.14.0.tgz", 140 | "integrity": "sha512-c75uQUzMgrHa8vegkgUvgRL/PRvD7paFbFJvzW0Ugs8Wl+CDMGIPYQ3j7IVaQkIS+cAxv+NJ3TIRBQyBrfVEOg==", 141 | "requires": { 142 | "@babel/runtime": "^7.7.2", 143 | "@jimp/utils": "^0.14.0" 144 | } 145 | }, 146 | "@jimp/plugin-dither": { 147 | "version": "0.14.0", 148 | "resolved": "https://registry.npmjs.org/@jimp/plugin-dither/-/plugin-dither-0.14.0.tgz", 149 | "integrity": "sha512-g8SJqFLyYexXQQsoh4dc1VP87TwyOgeTElBcxSXX2LaaMZezypmxQfLTzOFzZoK8m39NuaoH21Ou1Ftsq7LzVQ==", 150 | "requires": { 151 | "@babel/runtime": "^7.7.2", 152 | "@jimp/utils": "^0.14.0" 153 | } 154 | }, 155 | "@jimp/plugin-fisheye": { 156 | "version": "0.14.0", 157 | "resolved": "https://registry.npmjs.org/@jimp/plugin-fisheye/-/plugin-fisheye-0.14.0.tgz", 158 | "integrity": "sha512-BFfUZ64EikCaABhCA6mR3bsltWhPpS321jpeIQfJyrILdpFsZ/OccNwCgpW1XlbldDHIoNtXTDGn3E+vCE7vDg==", 159 | "requires": { 160 | "@babel/runtime": "^7.7.2", 161 | "@jimp/utils": "^0.14.0" 162 | } 163 | }, 164 | "@jimp/plugin-flip": { 165 | "version": "0.14.0", 166 | "resolved": "https://registry.npmjs.org/@jimp/plugin-flip/-/plugin-flip-0.14.0.tgz", 167 | "integrity": "sha512-WtL1hj6ryqHhApih+9qZQYA6Ye8a4HAmdTzLbYdTMrrrSUgIzFdiZsD0WeDHpgS/+QMsWwF+NFmTZmxNWqKfXw==", 168 | "requires": { 169 | "@babel/runtime": "^7.7.2", 170 | "@jimp/utils": "^0.14.0" 171 | } 172 | }, 173 | "@jimp/plugin-gaussian": { 174 | "version": "0.14.0", 175 | "resolved": "https://registry.npmjs.org/@jimp/plugin-gaussian/-/plugin-gaussian-0.14.0.tgz", 176 | "integrity": "sha512-uaLwQ0XAQoydDlF9tlfc7iD9drYPriFe+jgYnWm8fbw5cN+eOIcnneEX9XCOOzwgLPkNCxGox6Kxjn8zY6GxtQ==", 177 | "requires": { 178 | "@babel/runtime": "^7.7.2", 179 | "@jimp/utils": "^0.14.0" 180 | } 181 | }, 182 | "@jimp/plugin-invert": { 183 | "version": "0.14.0", 184 | "resolved": "https://registry.npmjs.org/@jimp/plugin-invert/-/plugin-invert-0.14.0.tgz", 185 | "integrity": "sha512-UaQW9X9vx8orQXYSjT5VcITkJPwDaHwrBbxxPoDG+F/Zgv4oV9fP+udDD6qmkgI9taU+44Fy+zm/J/gGcMWrdg==", 186 | "requires": { 187 | "@babel/runtime": "^7.7.2", 188 | "@jimp/utils": "^0.14.0" 189 | } 190 | }, 191 | "@jimp/plugin-mask": { 192 | "version": "0.14.0", 193 | "resolved": "https://registry.npmjs.org/@jimp/plugin-mask/-/plugin-mask-0.14.0.tgz", 194 | "integrity": "sha512-tdiGM69OBaKtSPfYSQeflzFhEpoRZ+BvKfDEoivyTjauynbjpRiwB1CaiS8En1INTDwzLXTT0Be9SpI3LkJoEA==", 195 | "requires": { 196 | "@babel/runtime": "^7.7.2", 197 | "@jimp/utils": "^0.14.0" 198 | } 199 | }, 200 | "@jimp/plugin-normalize": { 201 | "version": "0.14.0", 202 | "resolved": "https://registry.npmjs.org/@jimp/plugin-normalize/-/plugin-normalize-0.14.0.tgz", 203 | "integrity": "sha512-AfY8sqlsbbdVwFGcyIPy5JH/7fnBzlmuweb+Qtx2vn29okq6+HelLjw2b+VT2btgGUmWWHGEHd86oRGSoWGyEQ==", 204 | "requires": { 205 | "@babel/runtime": "^7.7.2", 206 | "@jimp/utils": "^0.14.0" 207 | } 208 | }, 209 | "@jimp/plugin-print": { 210 | "version": "0.14.0", 211 | "resolved": "https://registry.npmjs.org/@jimp/plugin-print/-/plugin-print-0.14.0.tgz", 212 | "integrity": "sha512-MwP3sH+VS5AhhSTXk7pui+tEJFsxnTKFY3TraFJb8WFbA2Vo2qsRCZseEGwpTLhENB7p/JSsLvWoSSbpmxhFAQ==", 213 | "requires": { 214 | "@babel/runtime": "^7.7.2", 215 | "@jimp/utils": "^0.14.0", 216 | "load-bmfont": "^1.4.0" 217 | } 218 | }, 219 | "@jimp/plugin-resize": { 220 | "version": "0.14.0", 221 | "resolved": "https://registry.npmjs.org/@jimp/plugin-resize/-/plugin-resize-0.14.0.tgz", 222 | "integrity": "sha512-qFeMOyXE/Bk6QXN0GQo89+CB2dQcXqoxUcDb2Ah8wdYlKqpi53skABkgVy5pW3EpiprDnzNDboMltdvDslNgLQ==", 223 | "requires": { 224 | "@babel/runtime": "^7.7.2", 225 | "@jimp/utils": "^0.14.0" 226 | } 227 | }, 228 | "@jimp/plugin-rotate": { 229 | "version": "0.14.0", 230 | "resolved": "https://registry.npmjs.org/@jimp/plugin-rotate/-/plugin-rotate-0.14.0.tgz", 231 | "integrity": "sha512-aGaicts44bvpTcq5Dtf93/8TZFu5pMo/61lWWnYmwJJU1RqtQlxbCLEQpMyRhKDNSfPbuP8nyGmaqXlM/82J0Q==", 232 | "requires": { 233 | "@babel/runtime": "^7.7.2", 234 | "@jimp/utils": "^0.14.0" 235 | } 236 | }, 237 | "@jimp/plugin-scale": { 238 | "version": "0.14.0", 239 | "resolved": "https://registry.npmjs.org/@jimp/plugin-scale/-/plugin-scale-0.14.0.tgz", 240 | "integrity": "sha512-ZcJk0hxY5ZKZDDwflqQNHEGRblgaR+piePZm7dPwPUOSeYEH31P0AwZ1ziceR74zd8N80M0TMft+e3Td6KGBHw==", 241 | "requires": { 242 | "@babel/runtime": "^7.7.2", 243 | "@jimp/utils": "^0.14.0" 244 | } 245 | }, 246 | "@jimp/plugin-shadow": { 247 | "version": "0.14.0", 248 | "resolved": "https://registry.npmjs.org/@jimp/plugin-shadow/-/plugin-shadow-0.14.0.tgz", 249 | "integrity": "sha512-p2igcEr/iGrLiTu0YePNHyby0WYAXM14c5cECZIVnq/UTOOIQ7xIcWZJ1lRbAEPxVVXPN1UibhZAbr3HAb5BjQ==", 250 | "requires": { 251 | "@babel/runtime": "^7.7.2", 252 | "@jimp/utils": "^0.14.0" 253 | } 254 | }, 255 | "@jimp/plugin-threshold": { 256 | "version": "0.14.0", 257 | "resolved": "https://registry.npmjs.org/@jimp/plugin-threshold/-/plugin-threshold-0.14.0.tgz", 258 | "integrity": "sha512-N4BlDgm/FoOMV/DQM2rSpzsgqAzkP0DXkWZoqaQrlRxQBo4zizQLzhEL00T/YCCMKnddzgEhnByaocgaaa0fKw==", 259 | "requires": { 260 | "@babel/runtime": "^7.7.2", 261 | "@jimp/utils": "^0.14.0" 262 | } 263 | }, 264 | "@jimp/plugins": { 265 | "version": "0.14.0", 266 | "resolved": "https://registry.npmjs.org/@jimp/plugins/-/plugins-0.14.0.tgz", 267 | "integrity": "sha512-vDO3XT/YQlFlFLq5TqNjQkISqjBHT8VMhpWhAfJVwuXIpilxz5Glu4IDLK6jp4IjPR6Yg2WO8TmRY/HI8vLrOw==", 268 | "requires": { 269 | "@babel/runtime": "^7.7.2", 270 | "@jimp/plugin-blit": "^0.14.0", 271 | "@jimp/plugin-blur": "^0.14.0", 272 | "@jimp/plugin-circle": "^0.14.0", 273 | "@jimp/plugin-color": "^0.14.0", 274 | "@jimp/plugin-contain": "^0.14.0", 275 | "@jimp/plugin-cover": "^0.14.0", 276 | "@jimp/plugin-crop": "^0.14.0", 277 | "@jimp/plugin-displace": "^0.14.0", 278 | "@jimp/plugin-dither": "^0.14.0", 279 | "@jimp/plugin-fisheye": "^0.14.0", 280 | "@jimp/plugin-flip": "^0.14.0", 281 | "@jimp/plugin-gaussian": "^0.14.0", 282 | "@jimp/plugin-invert": "^0.14.0", 283 | "@jimp/plugin-mask": "^0.14.0", 284 | "@jimp/plugin-normalize": "^0.14.0", 285 | "@jimp/plugin-print": "^0.14.0", 286 | "@jimp/plugin-resize": "^0.14.0", 287 | "@jimp/plugin-rotate": "^0.14.0", 288 | "@jimp/plugin-scale": "^0.14.0", 289 | "@jimp/plugin-shadow": "^0.14.0", 290 | "@jimp/plugin-threshold": "^0.14.0", 291 | "timm": "^1.6.1" 292 | } 293 | }, 294 | "@jimp/png": { 295 | "version": "0.14.0", 296 | "resolved": "https://registry.npmjs.org/@jimp/png/-/png-0.14.0.tgz", 297 | "integrity": "sha512-0RV/mEIDOrPCcNfXSPmPBqqSZYwGADNRVUTyMt47RuZh7sugbYdv/uvKmQSiqRdR0L1sfbCBMWUEa5G/8MSbdA==", 298 | "requires": { 299 | "@babel/runtime": "^7.7.2", 300 | "@jimp/utils": "^0.14.0", 301 | "pngjs": "^3.3.3" 302 | } 303 | }, 304 | "@jimp/tiff": { 305 | "version": "0.14.0", 306 | "resolved": "https://registry.npmjs.org/@jimp/tiff/-/tiff-0.14.0.tgz", 307 | "integrity": "sha512-zBYDTlutc7j88G/7FBCn3kmQwWr0rmm1e0FKB4C3uJ5oYfT8645lftUsvosKVUEfkdmOaMAnhrf4ekaHcb5gQw==", 308 | "requires": { 309 | "@babel/runtime": "^7.7.2", 310 | "utif": "^2.0.1" 311 | } 312 | }, 313 | "@jimp/types": { 314 | "version": "0.14.0", 315 | "resolved": "https://registry.npmjs.org/@jimp/types/-/types-0.14.0.tgz", 316 | "integrity": "sha512-hx3cXAW1KZm+b+XCrY3LXtdWy2U+hNtq0rPyJ7NuXCjU7lZR3vIkpz1DLJ3yDdS70hTi5QDXY3Cd9kd6DtloHQ==", 317 | "requires": { 318 | "@babel/runtime": "^7.7.2", 319 | "@jimp/bmp": "^0.14.0", 320 | "@jimp/gif": "^0.14.0", 321 | "@jimp/jpeg": "^0.14.0", 322 | "@jimp/png": "^0.14.0", 323 | "@jimp/tiff": "^0.14.0", 324 | "timm": "^1.6.1" 325 | } 326 | }, 327 | "@jimp/utils": { 328 | "version": "0.14.0", 329 | "resolved": "https://registry.npmjs.org/@jimp/utils/-/utils-0.14.0.tgz", 330 | "integrity": "sha512-MY5KFYUru0y74IsgM/9asDwb3ERxWxXEu3CRCZEvE7DtT86y1bR1XgtlSliMrptjz4qbivNGMQSvUBpEFJDp1A==", 331 | "requires": { 332 | "@babel/runtime": "^7.7.2", 333 | "regenerator-runtime": "^0.13.3" 334 | } 335 | }, 336 | "any-base": { 337 | "version": "1.1.0", 338 | "resolved": "https://registry.npmjs.org/any-base/-/any-base-1.1.0.tgz", 339 | "integrity": "sha512-uMgjozySS8adZZYePpaWs8cxB9/kdzmpX6SgJZ+wbz1K5eYk5QMYDVJaZKhxyIHUdnnJkfR7SVgStgH7LkGUyg==" 340 | }, 341 | "base64-js": { 342 | "version": "1.5.1", 343 | "resolved": "https://registry.npmjs.org/base64-js/-/base64-js-1.5.1.tgz", 344 | "integrity": "sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==" 345 | }, 346 | "bmp-js": { 347 | "version": "0.1.0", 348 | "resolved": "https://registry.npmjs.org/bmp-js/-/bmp-js-0.1.0.tgz", 349 | "integrity": "sha1-4Fpj95amwf8l9Hcex62twUjAcjM=" 350 | }, 351 | "buffer": { 352 | "version": "5.7.1", 353 | "resolved": "https://registry.npmjs.org/buffer/-/buffer-5.7.1.tgz", 354 | "integrity": "sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ==", 355 | "requires": { 356 | "base64-js": "^1.3.1", 357 | "ieee754": "^1.1.13" 358 | } 359 | }, 360 | "buffer-equal": { 361 | "version": "0.0.1", 362 | "resolved": "https://registry.npmjs.org/buffer-equal/-/buffer-equal-0.0.1.tgz", 363 | "integrity": "sha1-kbx0sR6kBbyRa8aqkI+q+ltKrEs=" 364 | }, 365 | "dom-walk": { 366 | "version": "0.1.2", 367 | "resolved": "https://registry.npmjs.org/dom-walk/-/dom-walk-0.1.2.tgz", 368 | "integrity": "sha512-6QvTW9mrGeIegrFXdtQi9pk7O/nSK6lSdXW2eqUspN5LWD7UTji2Fqw5V2YLjBpHEoU9Xl/eUWNpDeZvoyOv2w==" 369 | }, 370 | "exif-parser": { 371 | "version": "0.1.12", 372 | "resolved": "https://registry.npmjs.org/exif-parser/-/exif-parser-0.1.12.tgz", 373 | "integrity": "sha1-WKnS1ywCwfbwKg70qRZicrd2CSI=" 374 | }, 375 | "file-type": { 376 | "version": "9.0.0", 377 | "resolved": "https://registry.npmjs.org/file-type/-/file-type-9.0.0.tgz", 378 | "integrity": "sha512-Qe/5NJrgIOlwijpq3B7BEpzPFcgzggOTagZmkXQY4LA6bsXKTUstK7Wp12lEJ/mLKTpvIZxmIuRcLYWT6ov9lw==" 379 | }, 380 | "gifwrap": { 381 | "version": "0.9.2", 382 | "resolved": "https://registry.npmjs.org/gifwrap/-/gifwrap-0.9.2.tgz", 383 | "integrity": "sha512-fcIswrPaiCDAyO8xnWvHSZdWChjKXUanKKpAiWWJ/UTkEi/aYKn5+90e7DE820zbEaVR9CE2y4z9bzhQijZ0BA==", 384 | "requires": { 385 | "image-q": "^1.1.1", 386 | "omggif": "^1.0.10" 387 | } 388 | }, 389 | "global": { 390 | "version": "4.4.0", 391 | "resolved": "https://registry.npmjs.org/global/-/global-4.4.0.tgz", 392 | "integrity": "sha512-wv/LAoHdRE3BeTGz53FAamhGlPLhlssK45usmGFThIi4XqnBmjKQ16u+RNbP7WvigRZDxUsM0J3gcQ5yicaL0w==", 393 | "requires": { 394 | "min-document": "^2.19.0", 395 | "process": "^0.11.10" 396 | } 397 | }, 398 | "ieee754": { 399 | "version": "1.2.1", 400 | "resolved": "https://registry.npmjs.org/ieee754/-/ieee754-1.2.1.tgz", 401 | "integrity": "sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==" 402 | }, 403 | "image-q": { 404 | "version": "1.1.1", 405 | "resolved": "https://registry.npmjs.org/image-q/-/image-q-1.1.1.tgz", 406 | "integrity": "sha1-/IQJlmRGC5DKhi2TALa/u7+/gFY=" 407 | }, 408 | "is-function": { 409 | "version": "1.0.2", 410 | "resolved": "https://registry.npmjs.org/is-function/-/is-function-1.0.2.tgz", 411 | "integrity": "sha512-lw7DUp0aWXYg+CBCN+JKkcE0Q2RayZnSvnZBlwgxHBQhqt5pZNVy4Ri7H9GmmXkdu7LUthszM+Tor1u/2iBcpQ==" 412 | }, 413 | "jimp": { 414 | "version": "0.14.0", 415 | "resolved": "https://registry.npmjs.org/jimp/-/jimp-0.14.0.tgz", 416 | "integrity": "sha512-8BXU+J8+SPmwwyq9ELihpSV4dWPTiOKBWCEgtkbnxxAVMjXdf3yGmyaLSshBfXc8sP/JQ9OZj5R8nZzz2wPXgA==", 417 | "requires": { 418 | "@babel/runtime": "^7.7.2", 419 | "@jimp/custom": "^0.14.0", 420 | "@jimp/plugins": "^0.14.0", 421 | "@jimp/types": "^0.14.0", 422 | "regenerator-runtime": "^0.13.3" 423 | } 424 | }, 425 | "jpeg-js": { 426 | "version": "0.4.3", 427 | "resolved": "https://registry.npmjs.org/jpeg-js/-/jpeg-js-0.4.3.tgz", 428 | "integrity": "sha512-ru1HWKek8octvUHFHvE5ZzQ1yAsJmIvRdGWvSoKV52XKyuyYA437QWDttXT8eZXDSbuMpHlLzPDZUPd6idIz+Q==" 429 | }, 430 | "load-bmfont": { 431 | "version": "1.4.1", 432 | "resolved": "https://registry.npmjs.org/load-bmfont/-/load-bmfont-1.4.1.tgz", 433 | "integrity": "sha512-8UyQoYmdRDy81Brz6aLAUhfZLwr5zV0L3taTQ4hju7m6biuwiWiJXjPhBJxbUQJA8PrkvJ/7Enqmwk2sM14soA==", 434 | "requires": { 435 | "buffer-equal": "0.0.1", 436 | "mime": "^1.3.4", 437 | "parse-bmfont-ascii": "^1.0.3", 438 | "parse-bmfont-binary": "^1.0.5", 439 | "parse-bmfont-xml": "^1.1.4", 440 | "phin": "^2.9.1", 441 | "xhr": "^2.0.1", 442 | "xtend": "^4.0.0" 443 | } 444 | }, 445 | "mime": { 446 | "version": "1.6.0", 447 | "resolved": "https://registry.npmjs.org/mime/-/mime-1.6.0.tgz", 448 | "integrity": "sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==" 449 | }, 450 | "min-document": { 451 | "version": "2.19.0", 452 | "resolved": "https://registry.npmjs.org/min-document/-/min-document-2.19.0.tgz", 453 | "integrity": "sha1-e9KC4/WELtKVu3SM3Z8f+iyCRoU=", 454 | "requires": { 455 | "dom-walk": "^0.1.0" 456 | } 457 | }, 458 | "minimist": { 459 | "version": "1.2.5", 460 | "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.5.tgz", 461 | "integrity": "sha512-FM9nNUYrRBAELZQT3xeZQ7fmMOBg6nWNmJKTcgsJeaLstP/UODVpGsr5OhXhhXg6f+qtJ8uiZ+PUxkDWcgIXLw==" 462 | }, 463 | "mkdirp": { 464 | "version": "0.5.5", 465 | "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.5.tgz", 466 | "integrity": "sha512-NKmAlESf6jMGym1++R0Ra7wvhV+wFW63FaSOFPwRahvea0gMUcGUhVeAg/0BC0wiv9ih5NYPB1Wn1UEI1/L+xQ==", 467 | "requires": { 468 | "minimist": "^1.2.5" 469 | } 470 | }, 471 | "omggif": { 472 | "version": "1.0.10", 473 | "resolved": "https://registry.npmjs.org/omggif/-/omggif-1.0.10.tgz", 474 | "integrity": "sha512-LMJTtvgc/nugXj0Vcrrs68Mn2D1r0zf630VNtqtpI1FEO7e+O9FP4gqs9AcnBaSEeoHIPm28u6qgPR0oyEpGSw==" 475 | }, 476 | "pako": { 477 | "version": "1.0.11", 478 | "resolved": "https://registry.npmjs.org/pako/-/pako-1.0.11.tgz", 479 | "integrity": "sha512-4hLB8Py4zZce5s4yd9XzopqwVv/yGNhV1Bl8NTmCq1763HeK2+EwVTv+leGeL13Dnh2wfbqowVPXCIO0z4taYw==" 480 | }, 481 | "parse-bmfont-ascii": { 482 | "version": "1.0.6", 483 | "resolved": "https://registry.npmjs.org/parse-bmfont-ascii/-/parse-bmfont-ascii-1.0.6.tgz", 484 | "integrity": "sha1-Eaw8P/WPfCAgqyJ2kHkQjU36AoU=" 485 | }, 486 | "parse-bmfont-binary": { 487 | "version": "1.0.6", 488 | "resolved": "https://registry.npmjs.org/parse-bmfont-binary/-/parse-bmfont-binary-1.0.6.tgz", 489 | "integrity": "sha1-0Di0dtPp3Z2x4RoLDlOiJ5K2kAY=" 490 | }, 491 | "parse-bmfont-xml": { 492 | "version": "1.1.4", 493 | "resolved": "https://registry.npmjs.org/parse-bmfont-xml/-/parse-bmfont-xml-1.1.4.tgz", 494 | "integrity": "sha512-bjnliEOmGv3y1aMEfREMBJ9tfL3WR0i0CKPj61DnSLaoxWR3nLrsQrEbCId/8rF4NyRF0cCqisSVXyQYWM+mCQ==", 495 | "requires": { 496 | "xml-parse-from-string": "^1.0.0", 497 | "xml2js": "^0.4.5" 498 | } 499 | }, 500 | "parse-headers": { 501 | "version": "2.0.3", 502 | "resolved": "https://registry.npmjs.org/parse-headers/-/parse-headers-2.0.3.tgz", 503 | "integrity": "sha512-QhhZ+DCCit2Coi2vmAKbq5RGTRcQUOE2+REgv8vdyu7MnYx2eZztegqtTx99TZ86GTIwqiy3+4nQTWZ2tgmdCA==" 504 | }, 505 | "phin": { 506 | "version": "2.9.3", 507 | "resolved": "https://registry.npmjs.org/phin/-/phin-2.9.3.tgz", 508 | "integrity": "sha512-CzFr90qM24ju5f88quFC/6qohjC144rehe5n6DH900lgXmUe86+xCKc10ev56gRKC4/BkHUoG4uSiQgBiIXwDA==" 509 | }, 510 | "pixelmatch": { 511 | "version": "4.0.2", 512 | "resolved": "https://registry.npmjs.org/pixelmatch/-/pixelmatch-4.0.2.tgz", 513 | "integrity": "sha1-j0fc7FARtHe2fbA8JDvB8wheiFQ=", 514 | "requires": { 515 | "pngjs": "^3.0.0" 516 | } 517 | }, 518 | "pngjs": { 519 | "version": "3.4.0", 520 | "resolved": "https://registry.npmjs.org/pngjs/-/pngjs-3.4.0.tgz", 521 | "integrity": "sha512-NCrCHhWmnQklfH4MtJMRjZ2a8c80qXeMlQMv2uVp9ISJMTt562SbGd6n2oq0PaPgKm7Z6pL9E2UlLIhC+SHL3w==" 522 | }, 523 | "potrace": { 524 | "version": "2.1.8", 525 | "resolved": "https://registry.npmjs.org/potrace/-/potrace-2.1.8.tgz", 526 | "integrity": "sha512-V9hI7UMJyEhNZjM8CbZaP/804ZRLgzWkCS9OOYnEZkszzj3zKR/erRdj0uFMcN3pp6x4B+AIZebmkQgGRinG/g==", 527 | "requires": { 528 | "jimp": "^0.14.0" 529 | } 530 | }, 531 | "process": { 532 | "version": "0.11.10", 533 | "resolved": "https://registry.npmjs.org/process/-/process-0.11.10.tgz", 534 | "integrity": "sha1-czIwDoQBYb2j5podHZGn1LwW8YI=" 535 | }, 536 | "regenerator-runtime": { 537 | "version": "0.13.7", 538 | "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.13.7.tgz", 539 | "integrity": "sha512-a54FxoJDIr27pgf7IgeQGxmqUNYrcV338lf/6gH456HZ/PhX+5BcwHXG9ajESmwe6WRO0tAzRUrRmNONWgkrew==" 540 | }, 541 | "sax": { 542 | "version": "1.2.4", 543 | "resolved": "https://registry.npmjs.org/sax/-/sax-1.2.4.tgz", 544 | "integrity": "sha512-NqVDv9TpANUjFm0N8uM5GxL36UgKi9/atZw+x7YFnQ8ckwFGKrl4xX4yWtrey3UJm5nP1kUbnYgLopqWNSRhWw==" 545 | }, 546 | "timm": { 547 | "version": "1.7.1", 548 | "resolved": "https://registry.npmjs.org/timm/-/timm-1.7.1.tgz", 549 | "integrity": "sha512-IjZc9KIotudix8bMaBW6QvMuq64BrJWFs1+4V0lXwWGQZwH+LnX87doAYhem4caOEusRP9/g6jVDQmZ8XOk1nw==" 550 | }, 551 | "tinycolor2": { 552 | "version": "1.4.2", 553 | "resolved": "https://registry.npmjs.org/tinycolor2/-/tinycolor2-1.4.2.tgz", 554 | "integrity": "sha512-vJhccZPs965sV/L2sU4oRQVAos0pQXwsvTLkWYdqJ+a8Q5kPFzJTuOFwy7UniPli44NKQGAglksjvOcpo95aZA==" 555 | }, 556 | "utif": { 557 | "version": "2.0.1", 558 | "resolved": "https://registry.npmjs.org/utif/-/utif-2.0.1.tgz", 559 | "integrity": "sha512-Z/S1fNKCicQTf375lIP9G8Sa1H/phcysstNrrSdZKj1f9g58J4NMgb5IgiEZN9/nLMPDwF0W7hdOe9Qq2IYoLg==", 560 | "requires": { 561 | "pako": "^1.0.5" 562 | } 563 | }, 564 | "xhr": { 565 | "version": "2.6.0", 566 | "resolved": "https://registry.npmjs.org/xhr/-/xhr-2.6.0.tgz", 567 | "integrity": "sha512-/eCGLb5rxjx5e3mF1A7s+pLlR6CGyqWN91fv1JgER5mVWg1MZmlhBvy9kjcsOdRk8RrIujotWyJamfyrp+WIcA==", 568 | "requires": { 569 | "global": "~4.4.0", 570 | "is-function": "^1.0.1", 571 | "parse-headers": "^2.0.0", 572 | "xtend": "^4.0.0" 573 | } 574 | }, 575 | "xml-parse-from-string": { 576 | "version": "1.0.1", 577 | "resolved": "https://registry.npmjs.org/xml-parse-from-string/-/xml-parse-from-string-1.0.1.tgz", 578 | "integrity": "sha1-qQKekp09vN7RafPG4oI42VpdWig=" 579 | }, 580 | "xml2js": { 581 | "version": "0.4.23", 582 | "resolved": "https://registry.npmjs.org/xml2js/-/xml2js-0.4.23.tgz", 583 | "integrity": "sha512-ySPiMjM0+pLDftHgXY4By0uswI3SPKLDw/i3UXbnO8M/p28zqexCUoPmQFrYD+/1BzhGJSs2i1ERWKJAtiLrug==", 584 | "requires": { 585 | "sax": ">=0.6.0", 586 | "xmlbuilder": "~11.0.0" 587 | } 588 | }, 589 | "xmlbuilder": { 590 | "version": "11.0.1", 591 | "resolved": "https://registry.npmjs.org/xmlbuilder/-/xmlbuilder-11.0.1.tgz", 592 | "integrity": "sha512-fDlsI/kFEx7gLvbecc0/ohLG50fugQp8ryHzMTuW9vSa1GJ0XYWKnhsUx7oie3G98+r56aTQIUB4kht42R3JvA==" 593 | }, 594 | "xtend": { 595 | "version": "4.0.2", 596 | "resolved": "https://registry.npmjs.org/xtend/-/xtend-4.0.2.tgz", 597 | "integrity": "sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ==" 598 | } 599 | } 600 | } 601 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "vectorizer", 3 | "type": "module", 4 | "version": "1.0.0", 5 | "main": "index.js", 6 | "license": "MIT", 7 | "dependencies": { 8 | "cross-spawn": "^7.0.3", 9 | "fs-extra": "^10.0.0", 10 | "get-image-colors": "^4.0.0", 11 | "heic-decode": "^1.1.2", 12 | "nearest-color": "^0.4.4", 13 | "os": "^0.1.1", 14 | "path": "^0.12.7", 15 | "potrace": "^2.1.8", 16 | "quantize": "^1.0.2", 17 | "sharp": "^0.28.1", 18 | "string.prototype.replaceall": "^1.0.5", 19 | "svgo": "^2.3.0", 20 | "tinycolor2": "^1.4.2", 21 | "uuid": "^8.3.2" 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /yarn-error.log: -------------------------------------------------------------------------------- 1 | Arguments: 2 | C:\Program Files\nodejs\node.exe C:\Program Files\nodejs\node_modules\yarn\bin\yarn.js add heic-decode os path fs-extra-tinyocolor2 cross-spawn uuid 3 | 4 | PATH: 5 | C:\Program Files (x86)\Common Files\Oracle\Java\javapath;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;C:\Program Files (x86)\ATI Technologies\ATI.ACE\Core-Static;C:\Program Files (x86)\Windows Kits\8.1\Windows Performance Toolkit\;C:\Users\ileti\AppData\Roaming\nvm;C:\Program Files\nodejs;C:\Program Files\Amazon\AWSCLIV2\;C:\Program Files\Git\cmd;C:\Program Files\nodejs\;C:\Users\ileti\AppData\Local\Microsoft\WindowsApps;C:\Users\ileti\AppData\Local\GitHubDesktop\bin;C:\Users\ileti\AppData\Local\atom\bin;C:\Program Files\Java\jdk-14.0.1\bin;C:\Users\ileti\AppData\Local\Programs\Fiddler;C:\Program Files\heroku\bin;C:\Users\ileti\AppData\Local\Microsoft\WindowsApps;C:\Users\ileti\AppData\Roaming\npm 6 | 7 | Yarn version: 8 | 1.22.10 9 | 10 | Node version: 11 | 14.0.0 12 | 13 | Platform: 14 | win32 x64 15 | 16 | Trace: 17 | Error: https://registry.npmjs.org/fs-extra-tinyocolor2: Not found 18 | at Request.params.callback [as _callback] (C:\Users\ileti\AppData\Roaming\nvm\v14.0.0\node_modules\yarn\lib\cli.js:66988:18) 19 | at Request.self.callback (C:\Users\ileti\AppData\Roaming\nvm\v14.0.0\node_modules\yarn\lib\cli.js:140662:22) 20 | at Request.emit (events.js:315:20) 21 | at Request. (C:\Users\ileti\AppData\Roaming\nvm\v14.0.0\node_modules\yarn\lib\cli.js:141634:10) 22 | at Request.emit (events.js:315:20) 23 | at IncomingMessage. (C:\Users\ileti\AppData\Roaming\nvm\v14.0.0\node_modules\yarn\lib\cli.js:141556:12) 24 | at Object.onceWrapper (events.js:421:28) 25 | at IncomingMessage.emit (events.js:327:22) 26 | at endReadableNT (_stream_readable.js:1218:12) 27 | at processTicksAndRejections (internal/process/task_queues.js:84:21) 28 | 29 | npm manifest: 30 | { 31 | "name": "vectorizer", 32 | "version": "1.0.0", 33 | "main": "index.js", 34 | "license": "MIT", 35 | "dependencies": { 36 | "fs-extra": "^9.1.0", 37 | "nearest-color": "^0.4.4", 38 | "potrace": "^2.1.8", 39 | "quantize": "^1.0.2", 40 | "sharp": "^0.28.1", 41 | "string.prototype.replaceall": "^1.0.5", 42 | "svgo": "^2.3.0", 43 | "tinycolor2": "^1.4.2" 44 | } 45 | } 46 | 47 | yarn manifest: 48 | No manifest 49 | 50 | Lockfile: 51 | # THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY. 52 | # yarn lockfile v1 53 | 54 | 55 | "@babel/runtime@^7.7.2": 56 | version "7.14.0" 57 | resolved "https://registry.npmjs.org/@babel/runtime/-/runtime-7.14.0.tgz#46794bc20b612c5f75e62dd071e24dfd95f1cbe6" 58 | integrity sha512-JELkvo/DlpNdJ7dlyw/eY7E0suy5i5GQH+Vlxaq1nsNJ+H7f4Vtv3jMeCEgRhZZQFXTjldYfQgv2qmM6M1v5wA== 59 | dependencies: 60 | regenerator-runtime "^0.13.4" 61 | 62 | "@jimp/bmp@^0.14.0": 63 | version "0.14.0" 64 | resolved "https://registry.npmjs.org/@jimp/bmp/-/bmp-0.14.0.tgz#6df246026554f276f7b354047c6fff9f5b2b5182" 65 | integrity sha512-5RkX6tSS7K3K3xNEb2ygPuvyL9whjanhoaB/WmmXlJS6ub4DjTqrapu8j4qnIWmO4YYtFeTbDTXV6v9P1yMA5A== 66 | dependencies: 67 | "@babel/runtime" "^7.7.2" 68 | "@jimp/utils" "^0.14.0" 69 | bmp-js "^0.1.0" 70 | 71 | "@jimp/core@^0.14.0": 72 | version "0.14.0" 73 | resolved "https://registry.npmjs.org/@jimp/core/-/core-0.14.0.tgz#870c9ca25b40be353ebda1d2abb48723d9010055" 74 | integrity sha512-S62FcKdtLtj3yWsGfJRdFXSutjvHg7aQNiFogMbwq19RP4XJWqS2nOphu7ScB8KrSlyy5nPF2hkWNhLRLyD82w== 75 | dependencies: 76 | "@babel/runtime" "^7.7.2" 77 | "@jimp/utils" "^0.14.0" 78 | any-base "^1.1.0" 79 | buffer "^5.2.0" 80 | exif-parser "^0.1.12" 81 | file-type "^9.0.0" 82 | load-bmfont "^1.3.1" 83 | mkdirp "^0.5.1" 84 | phin "^2.9.1" 85 | pixelmatch "^4.0.2" 86 | tinycolor2 "^1.4.1" 87 | 88 | "@jimp/custom@^0.14.0": 89 | version "0.14.0" 90 | resolved "https://registry.npmjs.org/@jimp/custom/-/custom-0.14.0.tgz#1dbbf0094df7403f4e03bc984ed92e7458842f74" 91 | integrity sha512-kQJMeH87+kWJdVw8F9GQhtsageqqxrvzg7yyOw3Tx/s7v5RToe8RnKyMM+kVtBJtNAG+Xyv/z01uYQ2jiZ3GwA== 92 | dependencies: 93 | "@babel/runtime" "^7.7.2" 94 | "@jimp/core" "^0.14.0" 95 | 96 | "@jimp/gif@^0.14.0": 97 | version "0.14.0" 98 | resolved "https://registry.npmjs.org/@jimp/gif/-/gif-0.14.0.tgz#db159f57c3cfd1566bbe8b124958791998614960" 99 | integrity sha512-DHjoOSfCaCz72+oGGEh8qH0zE6pUBaBxPxxmpYJjkNyDZP7RkbBkZJScIYeQ7BmJxmGN4/dZn+MxamoQlr+UYg== 100 | dependencies: 101 | "@babel/runtime" "^7.7.2" 102 | "@jimp/utils" "^0.14.0" 103 | gifwrap "^0.9.2" 104 | omggif "^1.0.9" 105 | 106 | "@jimp/jpeg@^0.14.0": 107 | version "0.14.0" 108 | resolved "https://registry.npmjs.org/@jimp/jpeg/-/jpeg-0.14.0.tgz#8a687a6a653bbbae38c522edef8f84bb418d9461" 109 | integrity sha512-561neGbr+87S/YVQYnZSTyjWTHBm9F6F1obYHiyU3wVmF+1CLbxY3FQzt4YolwyQHIBv36Bo0PY2KkkU8BEeeQ== 110 | dependencies: 111 | "@babel/runtime" "^7.7.2" 112 | "@jimp/utils" "^0.14.0" 113 | jpeg-js "^0.4.0" 114 | 115 | "@jimp/plugin-blit@^0.14.0": 116 | version "0.14.0" 117 | resolved "https://registry.npmjs.org/@jimp/plugin-blit/-/plugin-blit-0.14.0.tgz#5eb374be1201313b2113899fb842232d8fcfd345" 118 | integrity sha512-YoYOrnVHeX3InfgbJawAU601iTZMwEBZkyqcP1V/S33Qnz9uzH1Uj1NtC6fNgWzvX6I4XbCWwtr4RrGFb5CFrw== 119 | dependencies: 120 | "@babel/runtime" "^7.7.2" 121 | "@jimp/utils" "^0.14.0" 122 | 123 | "@jimp/plugin-blur@^0.14.0": 124 | version "0.14.0" 125 | resolved "https://registry.npmjs.org/@jimp/plugin-blur/-/plugin-blur-0.14.0.tgz#fe07e4932d5a2f5d8c9831e245561553224bfc60" 126 | integrity sha512-9WhZcofLrT0hgI7t0chf7iBQZib//0gJh9WcQMUt5+Q1Bk04dWs8vTgLNj61GBqZXgHSPzE4OpCrrLDBG8zlhQ== 127 | dependencies: 128 | "@babel/runtime" "^7.7.2" 129 | "@jimp/utils" "^0.14.0" 130 | 131 | "@jimp/plugin-circle@^0.14.0": 132 | version "0.14.0" 133 | resolved "https://registry.npmjs.org/@jimp/plugin-circle/-/plugin-circle-0.14.0.tgz#82c0e904a34e90fa672fb9c286bc892e92088ddf" 134 | integrity sha512-o5L+wf6QA44tvTum5HeLyLSc5eVfIUd5ZDVi5iRfO4o6GT/zux9AxuTSkKwnjhsG8bn1dDmywAOQGAx7BjrQVA== 135 | dependencies: 136 | "@babel/runtime" "^7.7.2" 137 | "@jimp/utils" "^0.14.0" 138 | 139 | "@jimp/plugin-color@^0.14.0": 140 | version "0.14.0" 141 | resolved "https://registry.npmjs.org/@jimp/plugin-color/-/plugin-color-0.14.0.tgz#772bd2d80a88bc66ea1331d010207870f169a74b" 142 | integrity sha512-JJz512SAILYV0M5LzBb9sbOm/XEj2fGElMiHAxb7aLI6jx+n0agxtHpfpV/AePTLm1vzzDxx6AJxXbKv355hBQ== 143 | dependencies: 144 | "@babel/runtime" "^7.7.2" 145 | "@jimp/utils" "^0.14.0" 146 | tinycolor2 "^1.4.1" 147 | 148 | "@jimp/plugin-contain@^0.14.0": 149 | version "0.14.0" 150 | resolved "https://registry.npmjs.org/@jimp/plugin-contain/-/plugin-contain-0.14.0.tgz#c68115420d182e696f81bbe76fb5e704909b2b6a" 151 | integrity sha512-RX2q233lGyaxiMY6kAgnm9ScmEkNSof0hdlaJAVDS1OgXphGAYAeSIAwzESZN4x3ORaWvkFefeVH9O9/698Evg== 152 | dependencies: 153 | "@babel/runtime" "^7.7.2" 154 | "@jimp/utils" "^0.14.0" 155 | 156 | "@jimp/plugin-cover@^0.14.0": 157 | version "0.14.0" 158 | resolved "https://registry.npmjs.org/@jimp/plugin-cover/-/plugin-cover-0.14.0.tgz#4755322589c5885e44e14e31b86b542e907297ce" 159 | integrity sha512-0P/5XhzWES4uMdvbi3beUgfvhn4YuQ/ny8ijs5kkYIw6K8mHcl820HahuGpwWMx56DJLHRl1hFhJwo9CeTRJtQ== 160 | dependencies: 161 | "@babel/runtime" "^7.7.2" 162 | "@jimp/utils" "^0.14.0" 163 | 164 | "@jimp/plugin-crop@^0.14.0": 165 | version "0.14.0" 166 | resolved "https://registry.npmjs.org/@jimp/plugin-crop/-/plugin-crop-0.14.0.tgz#4cbd856ca84ffc37230fad2534906f2f75aa3057" 167 | integrity sha512-Ojtih+XIe6/XSGtpWtbAXBozhCdsDMmy+THUJAGu2x7ZgKrMS0JotN+vN2YC3nwDpYkM+yOJImQeptSfZb2Sug== 168 | dependencies: 169 | "@babel/runtime" "^7.7.2" 170 | "@jimp/utils" "^0.14.0" 171 | 172 | "@jimp/plugin-displace@^0.14.0": 173 | version "0.14.0" 174 | resolved "https://registry.npmjs.org/@jimp/plugin-displace/-/plugin-displace-0.14.0.tgz#b0e6a57d00cb1f893f541413fe9d737d23c3b70c" 175 | integrity sha512-c75uQUzMgrHa8vegkgUvgRL/PRvD7paFbFJvzW0Ugs8Wl+CDMGIPYQ3j7IVaQkIS+cAxv+NJ3TIRBQyBrfVEOg== 176 | dependencies: 177 | "@babel/runtime" "^7.7.2" 178 | "@jimp/utils" "^0.14.0" 179 | 180 | "@jimp/plugin-dither@^0.14.0": 181 | version "0.14.0" 182 | resolved "https://registry.npmjs.org/@jimp/plugin-dither/-/plugin-dither-0.14.0.tgz#9185ec4c38e02edc9e5831f5d709f6ba891e1b93" 183 | integrity sha512-g8SJqFLyYexXQQsoh4dc1VP87TwyOgeTElBcxSXX2LaaMZezypmxQfLTzOFzZoK8m39NuaoH21Ou1Ftsq7LzVQ== 184 | dependencies: 185 | "@babel/runtime" "^7.7.2" 186 | "@jimp/utils" "^0.14.0" 187 | 188 | "@jimp/plugin-fisheye@^0.14.0": 189 | version "0.14.0" 190 | resolved "https://registry.npmjs.org/@jimp/plugin-fisheye/-/plugin-fisheye-0.14.0.tgz#9f26346cf2fbc660cc2008cd7fd30a83b5029e78" 191 | integrity sha512-BFfUZ64EikCaABhCA6mR3bsltWhPpS321jpeIQfJyrILdpFsZ/OccNwCgpW1XlbldDHIoNtXTDGn3E+vCE7vDg== 192 | dependencies: 193 | "@babel/runtime" "^7.7.2" 194 | "@jimp/utils" "^0.14.0" 195 | 196 | "@jimp/plugin-flip@^0.14.0": 197 | version "0.14.0" 198 | resolved "https://registry.npmjs.org/@jimp/plugin-flip/-/plugin-flip-0.14.0.tgz#7966d6aa3b5fe1aa4d2d561ff12b8ef5ccb9b071" 199 | integrity sha512-WtL1hj6ryqHhApih+9qZQYA6Ye8a4HAmdTzLbYdTMrrrSUgIzFdiZsD0WeDHpgS/+QMsWwF+NFmTZmxNWqKfXw== 200 | dependencies: 201 | "@babel/runtime" "^7.7.2" 202 | "@jimp/utils" "^0.14.0" 203 | 204 | "@jimp/plugin-gaussian@^0.14.0": 205 | version "0.14.0" 206 | resolved "https://registry.npmjs.org/@jimp/plugin-gaussian/-/plugin-gaussian-0.14.0.tgz#452bc1971a4467ad9b984aa67f4c200bf941bb65" 207 | integrity sha512-uaLwQ0XAQoydDlF9tlfc7iD9drYPriFe+jgYnWm8fbw5cN+eOIcnneEX9XCOOzwgLPkNCxGox6Kxjn8zY6GxtQ== 208 | dependencies: 209 | "@babel/runtime" "^7.7.2" 210 | "@jimp/utils" "^0.14.0" 211 | 212 | "@jimp/plugin-invert@^0.14.0": 213 | version "0.14.0" 214 | resolved "https://registry.npmjs.org/@jimp/plugin-invert/-/plugin-invert-0.14.0.tgz#cd31a555860e9f821394936d15af161c09c42921" 215 | integrity sha512-UaQW9X9vx8orQXYSjT5VcITkJPwDaHwrBbxxPoDG+F/Zgv4oV9fP+udDD6qmkgI9taU+44Fy+zm/J/gGcMWrdg== 216 | dependencies: 217 | "@babel/runtime" "^7.7.2" 218 | "@jimp/utils" "^0.14.0" 219 | 220 | "@jimp/plugin-mask@^0.14.0": 221 | version "0.14.0" 222 | resolved "https://registry.npmjs.org/@jimp/plugin-mask/-/plugin-mask-0.14.0.tgz#52619643ac6222f85e6b27dee33c771ca3a6a4c9" 223 | integrity sha512-tdiGM69OBaKtSPfYSQeflzFhEpoRZ+BvKfDEoivyTjauynbjpRiwB1CaiS8En1INTDwzLXTT0Be9SpI3LkJoEA== 224 | dependencies: 225 | "@babel/runtime" "^7.7.2" 226 | "@jimp/utils" "^0.14.0" 227 | 228 | "@jimp/plugin-normalize@^0.14.0": 229 | version "0.14.0" 230 | resolved "https://registry.npmjs.org/@jimp/plugin-normalize/-/plugin-normalize-0.14.0.tgz#bf39e356b6d473f582ce95633ad49c9cdb82492b" 231 | integrity sha512-AfY8sqlsbbdVwFGcyIPy5JH/7fnBzlmuweb+Qtx2vn29okq6+HelLjw2b+VT2btgGUmWWHGEHd86oRGSoWGyEQ== 232 | dependencies: 233 | "@babel/runtime" "^7.7.2" 234 | "@jimp/utils" "^0.14.0" 235 | 236 | "@jimp/plugin-print@^0.14.0": 237 | version "0.14.0" 238 | resolved "https://registry.npmjs.org/@jimp/plugin-print/-/plugin-print-0.14.0.tgz#1c43c2a92a7adc05b464863882cb89ce486d63e6" 239 | integrity sha512-MwP3sH+VS5AhhSTXk7pui+tEJFsxnTKFY3TraFJb8WFbA2Vo2qsRCZseEGwpTLhENB7p/JSsLvWoSSbpmxhFAQ== 240 | dependencies: 241 | "@babel/runtime" "^7.7.2" 242 | "@jimp/utils" "^0.14.0" 243 | load-bmfont "^1.4.0" 244 | 245 | "@jimp/plugin-resize@^0.14.0": 246 | version "0.14.0" 247 | resolved "https://registry.npmjs.org/@jimp/plugin-resize/-/plugin-resize-0.14.0.tgz#ef7fc6c2e45f8bcab62456baf8fd3bc415b02b64" 248 | integrity sha512-qFeMOyXE/Bk6QXN0GQo89+CB2dQcXqoxUcDb2Ah8wdYlKqpi53skABkgVy5pW3EpiprDnzNDboMltdvDslNgLQ== 249 | dependencies: 250 | "@babel/runtime" "^7.7.2" 251 | "@jimp/utils" "^0.14.0" 252 | 253 | "@jimp/plugin-rotate@^0.14.0": 254 | version "0.14.0" 255 | resolved "https://registry.npmjs.org/@jimp/plugin-rotate/-/plugin-rotate-0.14.0.tgz#3632bc159bf1c3b9ec9f459d9c05d02a11781ee7" 256 | integrity sha512-aGaicts44bvpTcq5Dtf93/8TZFu5pMo/61lWWnYmwJJU1RqtQlxbCLEQpMyRhKDNSfPbuP8nyGmaqXlM/82J0Q== 257 | dependencies: 258 | "@babel/runtime" "^7.7.2" 259 | "@jimp/utils" "^0.14.0" 260 | 261 | "@jimp/plugin-scale@^0.14.0": 262 | version "0.14.0" 263 | resolved "https://registry.npmjs.org/@jimp/plugin-scale/-/plugin-scale-0.14.0.tgz#d30f0cd1365b8e68f43fa423300ae7f124e9bf10" 264 | integrity sha512-ZcJk0hxY5ZKZDDwflqQNHEGRblgaR+piePZm7dPwPUOSeYEH31P0AwZ1ziceR74zd8N80M0TMft+e3Td6KGBHw== 265 | dependencies: 266 | "@babel/runtime" "^7.7.2" 267 | "@jimp/utils" "^0.14.0" 268 | 269 | "@jimp/plugin-shadow@^0.14.0": 270 | version "0.14.0" 271 | resolved "https://registry.npmjs.org/@jimp/plugin-shadow/-/plugin-shadow-0.14.0.tgz#471fdb9f109ff2d9e20d533d45e1e18e0b48c749" 272 | integrity sha512-p2igcEr/iGrLiTu0YePNHyby0WYAXM14c5cECZIVnq/UTOOIQ7xIcWZJ1lRbAEPxVVXPN1UibhZAbr3HAb5BjQ== 273 | dependencies: 274 | "@babel/runtime" "^7.7.2" 275 | "@jimp/utils" "^0.14.0" 276 | 277 | "@jimp/plugin-threshold@^0.14.0": 278 | version "0.14.0" 279 | resolved "https://registry.npmjs.org/@jimp/plugin-threshold/-/plugin-threshold-0.14.0.tgz#ebd72721c7d1d518c5bb6e494e55d97ac3351d3b" 280 | integrity sha512-N4BlDgm/FoOMV/DQM2rSpzsgqAzkP0DXkWZoqaQrlRxQBo4zizQLzhEL00T/YCCMKnddzgEhnByaocgaaa0fKw== 281 | dependencies: 282 | "@babel/runtime" "^7.7.2" 283 | "@jimp/utils" "^0.14.0" 284 | 285 | "@jimp/plugins@^0.14.0": 286 | version "0.14.0" 287 | resolved "https://registry.npmjs.org/@jimp/plugins/-/plugins-0.14.0.tgz#41dba85f15ab8dadb4162100eb54e5f27b93ee2c" 288 | integrity sha512-vDO3XT/YQlFlFLq5TqNjQkISqjBHT8VMhpWhAfJVwuXIpilxz5Glu4IDLK6jp4IjPR6Yg2WO8TmRY/HI8vLrOw== 289 | dependencies: 290 | "@babel/runtime" "^7.7.2" 291 | "@jimp/plugin-blit" "^0.14.0" 292 | "@jimp/plugin-blur" "^0.14.0" 293 | "@jimp/plugin-circle" "^0.14.0" 294 | "@jimp/plugin-color" "^0.14.0" 295 | "@jimp/plugin-contain" "^0.14.0" 296 | "@jimp/plugin-cover" "^0.14.0" 297 | "@jimp/plugin-crop" "^0.14.0" 298 | "@jimp/plugin-displace" "^0.14.0" 299 | "@jimp/plugin-dither" "^0.14.0" 300 | "@jimp/plugin-fisheye" "^0.14.0" 301 | "@jimp/plugin-flip" "^0.14.0" 302 | "@jimp/plugin-gaussian" "^0.14.0" 303 | "@jimp/plugin-invert" "^0.14.0" 304 | "@jimp/plugin-mask" "^0.14.0" 305 | "@jimp/plugin-normalize" "^0.14.0" 306 | "@jimp/plugin-print" "^0.14.0" 307 | "@jimp/plugin-resize" "^0.14.0" 308 | "@jimp/plugin-rotate" "^0.14.0" 309 | "@jimp/plugin-scale" "^0.14.0" 310 | "@jimp/plugin-shadow" "^0.14.0" 311 | "@jimp/plugin-threshold" "^0.14.0" 312 | timm "^1.6.1" 313 | 314 | "@jimp/png@^0.14.0": 315 | version "0.14.0" 316 | resolved "https://registry.npmjs.org/@jimp/png/-/png-0.14.0.tgz#0f2dddb5125c0795ca7e67c771204c5437fcda4b" 317 | integrity sha512-0RV/mEIDOrPCcNfXSPmPBqqSZYwGADNRVUTyMt47RuZh7sugbYdv/uvKmQSiqRdR0L1sfbCBMWUEa5G/8MSbdA== 318 | dependencies: 319 | "@babel/runtime" "^7.7.2" 320 | "@jimp/utils" "^0.14.0" 321 | pngjs "^3.3.3" 322 | 323 | "@jimp/tiff@^0.14.0": 324 | version "0.14.0" 325 | resolved "https://registry.npmjs.org/@jimp/tiff/-/tiff-0.14.0.tgz#a5b25bbe7c43fc3b07bad4e2ab90e0e164c1967f" 326 | integrity sha512-zBYDTlutc7j88G/7FBCn3kmQwWr0rmm1e0FKB4C3uJ5oYfT8645lftUsvosKVUEfkdmOaMAnhrf4ekaHcb5gQw== 327 | dependencies: 328 | "@babel/runtime" "^7.7.2" 329 | utif "^2.0.1" 330 | 331 | "@jimp/types@^0.14.0": 332 | version "0.14.0" 333 | resolved "https://registry.npmjs.org/@jimp/types/-/types-0.14.0.tgz#ef681ff702883c5f105b5e4e30d49abf39ee9e34" 334 | integrity sha512-hx3cXAW1KZm+b+XCrY3LXtdWy2U+hNtq0rPyJ7NuXCjU7lZR3vIkpz1DLJ3yDdS70hTi5QDXY3Cd9kd6DtloHQ== 335 | dependencies: 336 | "@babel/runtime" "^7.7.2" 337 | "@jimp/bmp" "^0.14.0" 338 | "@jimp/gif" "^0.14.0" 339 | "@jimp/jpeg" "^0.14.0" 340 | "@jimp/png" "^0.14.0" 341 | "@jimp/tiff" "^0.14.0" 342 | timm "^1.6.1" 343 | 344 | "@jimp/utils@^0.14.0": 345 | version "0.14.0" 346 | resolved "https://registry.npmjs.org/@jimp/utils/-/utils-0.14.0.tgz#296254e63118554c62c31c19ac6b8c4bfe6490e5" 347 | integrity sha512-MY5KFYUru0y74IsgM/9asDwb3ERxWxXEu3CRCZEvE7DtT86y1bR1XgtlSliMrptjz4qbivNGMQSvUBpEFJDp1A== 348 | dependencies: 349 | "@babel/runtime" "^7.7.2" 350 | regenerator-runtime "^0.13.3" 351 | 352 | "@trysound/sax@0.1.1": 353 | version "0.1.1" 354 | resolved "https://registry.npmjs.org/@trysound/sax/-/sax-0.1.1.tgz#3348564048e7a2d7398c935d466c0414ebb6a669" 355 | integrity sha512-Z6DoceYb/1xSg5+e+ZlPZ9v0N16ZvZ+wYMraFue4HYrE4ttONKtsvruIRf6t9TBR0YvSOfi1hUU0fJfBLCDYow== 356 | 357 | ansi-regex@^2.0.0: 358 | version "2.1.1" 359 | resolved "https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.1.1.tgz#c3b33ab5ee360d86e0e628f0468ae7ef27d654df" 360 | integrity sha1-w7M6te42DYbg5ijwRorn7yfWVN8= 361 | 362 | ansi-regex@^3.0.0: 363 | version "3.0.0" 364 | resolved "https://registry.npmjs.org/ansi-regex/-/ansi-regex-3.0.0.tgz#ed0317c322064f79466c02966bddb605ab37d998" 365 | integrity sha1-7QMXwyIGT3lGbAKWa922Bas32Zg= 366 | 367 | ansi-styles@^4.1.0: 368 | version "4.3.0" 369 | resolved "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz#edd803628ae71c04c85ae7a0906edad34b648937" 370 | integrity sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg== 371 | dependencies: 372 | color-convert "^2.0.1" 373 | 374 | any-base@^1.1.0: 375 | version "1.1.0" 376 | resolved "https://registry.npmjs.org/any-base/-/any-base-1.1.0.tgz#ae101a62bc08a597b4c9ab5b7089d456630549fe" 377 | integrity sha512-uMgjozySS8adZZYePpaWs8cxB9/kdzmpX6SgJZ+wbz1K5eYk5QMYDVJaZKhxyIHUdnnJkfR7SVgStgH7LkGUyg== 378 | 379 | aproba@^1.0.3: 380 | version "1.2.0" 381 | resolved "https://registry.npmjs.org/aproba/-/aproba-1.2.0.tgz#6802e6264efd18c790a1b0d517f0f2627bf2c94a" 382 | integrity sha512-Y9J6ZjXtoYh8RnXVCMOU/ttDmk1aBjunq9vO0ta5x85WDQiQfUF9sIPBITdbiiIVcBo03Hi3jMxigBtsddlXRw== 383 | 384 | are-we-there-yet@~1.1.2: 385 | version "1.1.5" 386 | resolved "https://registry.npmjs.org/are-we-there-yet/-/are-we-there-yet-1.1.5.tgz#4b35c2944f062a8bfcda66410760350fe9ddfc21" 387 | integrity sha512-5hYdAkZlcG8tOLujVDTgCT+uPX0VnpAH28gWsLfzpXYm7wP6mp5Q/gYyR7YQ0cKVJcXJnl3j2kpBan13PtQf6w== 388 | dependencies: 389 | delegates "^1.0.0" 390 | readable-stream "^2.0.6" 391 | 392 | at-least-node@^1.0.0: 393 | version "1.0.0" 394 | resolved "https://registry.npmjs.org/at-least-node/-/at-least-node-1.0.0.tgz#602cd4b46e844ad4effc92a8011a3c46e0238dc2" 395 | integrity sha512-+q/t7Ekv1EDY2l6Gda6LLiX14rU9TV20Wa3ofeQmwPFZbOMo9DXrLbOjFaaclkXKWidIaopwAObQDqwWtGUjqg== 396 | 397 | base64-js@^1.3.1: 398 | version "1.5.1" 399 | resolved "https://registry.npmjs.org/base64-js/-/base64-js-1.5.1.tgz#1b1b440160a5bf7ad40b650f095963481903930a" 400 | integrity sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA== 401 | 402 | bl@^4.0.3: 403 | version "4.1.0" 404 | resolved "https://registry.npmjs.org/bl/-/bl-4.1.0.tgz#451535264182bec2fbbc83a62ab98cf11d9f7b3a" 405 | integrity sha512-1W07cM9gS6DcLperZfFSj+bWLtaPGSOHWhPiGzXmvVJbRLdG82sH/Kn8EtW1VqWVA54AKf2h5k5BbnIbwF3h6w== 406 | dependencies: 407 | buffer "^5.5.0" 408 | inherits "^2.0.4" 409 | readable-stream "^3.4.0" 410 | 411 | bmp-js@^0.1.0: 412 | version "0.1.0" 413 | resolved "https://registry.npmjs.org/bmp-js/-/bmp-js-0.1.0.tgz#e05a63f796a6c1ff25f4771ec7adadc148c07233" 414 | integrity sha1-4Fpj95amwf8l9Hcex62twUjAcjM= 415 | 416 | boolbase@^1.0.0: 417 | version "1.0.0" 418 | resolved "https://registry.npmjs.org/boolbase/-/boolbase-1.0.0.tgz#68dff5fbe60c51eb37725ea9e3ed310dcc1e776e" 419 | integrity sha1-aN/1++YMUes3cl6p4+0xDcwed24= 420 | 421 | buffer-equal@0.0.1: 422 | version "0.0.1" 423 | resolved "https://registry.npmjs.org/buffer-equal/-/buffer-equal-0.0.1.tgz#91bc74b11ea405bc916bc6aa908faafa5b4aac4b" 424 | integrity sha1-kbx0sR6kBbyRa8aqkI+q+ltKrEs= 425 | 426 | buffer@^5.2.0, buffer@^5.5.0: 427 | version "5.7.1" 428 | resolved "https://registry.npmjs.org/buffer/-/buffer-5.7.1.tgz#ba62e7c13133053582197160851a8f648e99eed0" 429 | integrity sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ== 430 | dependencies: 431 | base64-js "^1.3.1" 432 | ieee754 "^1.1.13" 433 | 434 | call-bind@^1.0.0, call-bind@^1.0.2: 435 | version "1.0.2" 436 | resolved "https://registry.npmjs.org/call-bind/-/call-bind-1.0.2.tgz#b1d4e89e688119c3c9a903ad30abb2f6a919be3c" 437 | integrity sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA== 438 | dependencies: 439 | function-bind "^1.1.1" 440 | get-intrinsic "^1.0.2" 441 | 442 | chalk@^4.1.0: 443 | version "4.1.1" 444 | resolved "https://registry.npmjs.org/chalk/-/chalk-4.1.1.tgz#c80b3fab28bf6371e6863325eee67e618b77e6ad" 445 | integrity sha512-diHzdDKxcU+bAsUboHLPEDQiw0qEe0qd7SYUn3HgcFlWgbDcfLGswOHYeGrHKzG9z6UYf01d9VFMfZxPM1xZSg== 446 | dependencies: 447 | ansi-styles "^4.1.0" 448 | supports-color "^7.1.0" 449 | 450 | chownr@^1.1.1: 451 | version "1.1.4" 452 | resolved "https://registry.npmjs.org/chownr/-/chownr-1.1.4.tgz#6fc9d7b42d32a583596337666e7d08084da2cc6b" 453 | integrity sha512-jJ0bqzaylmJtVnNgzTeSOs8DPavpbYgEr/b0YL8/2GO3xJEhInFmhKMUnEJQjZumK7KXGFhUy89PrsJWlakBVg== 454 | 455 | code-point-at@^1.0.0: 456 | version "1.1.0" 457 | resolved "https://registry.npmjs.org/code-point-at/-/code-point-at-1.1.0.tgz#0d070b4d043a5bea33a2f1a40e2edb3d9a4ccf77" 458 | integrity sha1-DQcLTQQ6W+ozovGkDi7bPZpMz3c= 459 | 460 | color-convert@^1.9.1: 461 | version "1.9.3" 462 | resolved "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz#bb71850690e1f136567de629d2d5471deda4c1e8" 463 | integrity sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg== 464 | dependencies: 465 | color-name "1.1.3" 466 | 467 | color-convert@^2.0.1: 468 | version "2.0.1" 469 | resolved "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz#72d3a68d598c9bdb3af2ad1e84f21d896abd4de3" 470 | integrity sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ== 471 | dependencies: 472 | color-name "~1.1.4" 473 | 474 | color-name@1.1.3: 475 | version "1.1.3" 476 | resolved "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz#a7d0558bd89c42f795dd42328f740831ca53bc25" 477 | integrity sha1-p9BVi9icQveV3UIyj3QIMcpTvCU= 478 | 479 | color-name@^1.0.0, color-name@~1.1.4: 480 | version "1.1.4" 481 | resolved "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz#c2a09a87acbde69543de6f63fa3995c826c536a2" 482 | integrity sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA== 483 | 484 | color-string@^1.5.4: 485 | version "1.5.5" 486 | resolved "https://registry.npmjs.org/color-string/-/color-string-1.5.5.tgz#65474a8f0e7439625f3d27a6a19d89fc45223014" 487 | integrity sha512-jgIoum0OfQfq9Whcfc2z/VhCNcmQjWbey6qBX0vqt7YICflUmBCh9E9CiQD5GSJ+Uehixm3NUwHVhqUAWRivZg== 488 | dependencies: 489 | color-name "^1.0.0" 490 | simple-swizzle "^0.2.2" 491 | 492 | color@^3.1.3: 493 | version "3.1.3" 494 | resolved "https://registry.npmjs.org/color/-/color-3.1.3.tgz#ca67fb4e7b97d611dcde39eceed422067d91596e" 495 | integrity sha512-xgXAcTHa2HeFCGLE9Xs/R82hujGtu9Jd9x4NW3T34+OMs7VoPsjwzRczKHvTAHeJwWFwX5j15+MgAppE8ztObQ== 496 | dependencies: 497 | color-convert "^1.9.1" 498 | color-string "^1.5.4" 499 | 500 | commander@^7.1.0: 501 | version "7.2.0" 502 | resolved "https://registry.npmjs.org/commander/-/commander-7.2.0.tgz#a36cb57d0b501ce108e4d20559a150a391d97ab7" 503 | integrity sha512-QrWXB+ZQSVPmIWIhtEO9H+gwHaMGYiF5ChvoJ+K9ZGHG/sVsa6yiesAD1GC/x46sET00Xlwo1u49RVVVzvcSkw== 504 | 505 | console-control-strings@^1.0.0, console-control-strings@~1.1.0: 506 | version "1.1.0" 507 | resolved "https://registry.npmjs.org/console-control-strings/-/console-control-strings-1.1.0.tgz#3d7cf4464db6446ea644bf4b39507f9851008e8e" 508 | integrity sha1-PXz0Rk22RG6mRL9LOVB/mFEAjo4= 509 | 510 | core-util-is@~1.0.0: 511 | version "1.0.2" 512 | resolved "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.2.tgz#b5fd54220aa2bc5ab57aab7140c940754503c1a7" 513 | integrity sha1-tf1UIgqivFq1eqtxQMlAdUUDwac= 514 | 515 | css-select@^3.1.2: 516 | version "3.1.2" 517 | resolved "https://registry.npmjs.org/css-select/-/css-select-3.1.2.tgz#d52cbdc6fee379fba97fb0d3925abbd18af2d9d8" 518 | integrity sha512-qmss1EihSuBNWNNhHjxzxSfJoFBM/lERB/Q4EnsJQQC62R2evJDW481091oAdOr9uh46/0n4nrg0It5cAnj1RA== 519 | dependencies: 520 | boolbase "^1.0.0" 521 | css-what "^4.0.0" 522 | domhandler "^4.0.0" 523 | domutils "^2.4.3" 524 | nth-check "^2.0.0" 525 | 526 | css-tree@^1.1.2: 527 | version "1.1.3" 528 | resolved "https://registry.npmjs.org/css-tree/-/css-tree-1.1.3.tgz#eb4870fb6fd7707327ec95c2ff2ab09b5e8db91d" 529 | integrity sha512-tRpdppF7TRazZrjJ6v3stzv93qxRcSsFmW6cX0Zm2NVKpxE1WV1HblnghVv9TreireHkqI/VDEsfolRF1p6y7Q== 530 | dependencies: 531 | mdn-data "2.0.14" 532 | source-map "^0.6.1" 533 | 534 | css-what@^4.0.0: 535 | version "4.0.0" 536 | resolved "https://registry.npmjs.org/css-what/-/css-what-4.0.0.tgz#35e73761cab2eeb3d3661126b23d7aa0e8432233" 537 | integrity sha512-teijzG7kwYfNVsUh2H/YN62xW3KK9YhXEgSlbxMlcyjPNvdKJqFx5lrwlJgoFP1ZHlB89iGDlo/JyshKeRhv5A== 538 | 539 | csso@^4.2.0: 540 | version "4.2.0" 541 | resolved "https://registry.npmjs.org/csso/-/csso-4.2.0.tgz#ea3a561346e8dc9f546d6febedd50187cf389529" 542 | integrity sha512-wvlcdIbf6pwKEk7vHj8/Bkc0B4ylXZruLvOgs9doS5eOsOpuodOV2zJChSpkp+pRpYQLQMeF04nr3Z68Sta9jA== 543 | dependencies: 544 | css-tree "^1.1.2" 545 | 546 | decompress-response@^4.2.0: 547 | version "4.2.1" 548 | resolved "https://registry.npmjs.org/decompress-response/-/decompress-response-4.2.1.tgz#414023cc7a302da25ce2ec82d0d5238ccafd8986" 549 | integrity sha512-jOSne2qbyE+/r8G1VU+G/82LBs2Fs4LAsTiLSHOCOMZQl2OKZ6i8i4IyHemTe+/yIXOtTcRQMzPcgyhoFlqPkw== 550 | dependencies: 551 | mimic-response "^2.0.0" 552 | 553 | deep-extend@^0.6.0: 554 | version "0.6.0" 555 | resolved "https://registry.npmjs.org/deep-extend/-/deep-extend-0.6.0.tgz#c4fa7c95404a17a9c3e8ca7e1537312b736330ac" 556 | integrity sha512-LOHxIOaPYdHlJRtCQfDIVZtfw/ufM8+rVj649RIHzcm/vGwQRXFt6OPqIFWsm2XEMrNIEtWR64sY1LEKD2vAOA== 557 | 558 | define-properties@^1.1.3: 559 | version "1.1.3" 560 | resolved "https://registry.npmjs.org/define-properties/-/define-properties-1.1.3.tgz#cf88da6cbee26fe6db7094f61d870cbd84cee9f1" 561 | integrity sha512-3MqfYKj2lLzdMSf8ZIZE/V+Zuy+BgD6f164e8K2w7dgnpKArBDerGYpM46IYYcjnkdPNMjPk9A6VFB8+3SKlXQ== 562 | dependencies: 563 | object-keys "^1.0.12" 564 | 565 | delegates@^1.0.0: 566 | version "1.0.0" 567 | resolved "https://registry.npmjs.org/delegates/-/delegates-1.0.0.tgz#84c6e159b81904fdca59a0ef44cd870d31250f9a" 568 | integrity sha1-hMbhWbgZBP3KWaDvRM2HDTElD5o= 569 | 570 | detect-libc@^1.0.3: 571 | version "1.0.3" 572 | resolved "https://registry.npmjs.org/detect-libc/-/detect-libc-1.0.3.tgz#fa137c4bd698edf55cd5cd02ac559f91a4c4ba9b" 573 | integrity sha1-+hN8S9aY7fVc1c0CrFWfkaTEups= 574 | 575 | dom-serializer@^1.0.1: 576 | version "1.3.1" 577 | resolved "https://registry.npmjs.org/dom-serializer/-/dom-serializer-1.3.1.tgz#d845a1565d7c041a95e5dab62184ab41e3a519be" 578 | integrity sha512-Pv2ZluG5ife96udGgEDovOOOA5UELkltfJpnIExPrAk1LTvecolUGn6lIaoLh86d83GiB86CjzciMd9BuRB71Q== 579 | dependencies: 580 | domelementtype "^2.0.1" 581 | domhandler "^4.0.0" 582 | entities "^2.0.0" 583 | 584 | dom-walk@^0.1.0: 585 | version "0.1.2" 586 | resolved "https://registry.npmjs.org/dom-walk/-/dom-walk-0.1.2.tgz#0c548bef048f4d1f2a97249002236060daa3fd84" 587 | integrity sha512-6QvTW9mrGeIegrFXdtQi9pk7O/nSK6lSdXW2eqUspN5LWD7UTji2Fqw5V2YLjBpHEoU9Xl/eUWNpDeZvoyOv2w== 588 | 589 | domelementtype@^2.0.1, domelementtype@^2.2.0: 590 | version "2.2.0" 591 | resolved "https://registry.npmjs.org/domelementtype/-/domelementtype-2.2.0.tgz#9a0b6c2782ed6a1c7323d42267183df9bd8b1d57" 592 | integrity sha512-DtBMo82pv1dFtUmHyr48beiuq792Sxohr+8Hm9zoxklYPfa6n0Z3Byjj2IV7bmr2IyqClnqEQhfgHJJ5QF0R5A== 593 | 594 | domhandler@^4.0.0, domhandler@^4.2.0: 595 | version "4.2.0" 596 | resolved "https://registry.npmjs.org/domhandler/-/domhandler-4.2.0.tgz#f9768a5f034be60a89a27c2e4d0f74eba0d8b059" 597 | integrity sha512-zk7sgt970kzPks2Bf+dwT/PLzghLnsivb9CcxkvR8Mzr66Olr0Ofd8neSbglHJHaHa2MadfoSdNlKYAaafmWfA== 598 | dependencies: 599 | domelementtype "^2.2.0" 600 | 601 | domutils@^2.4.3: 602 | version "2.6.0" 603 | resolved "https://registry.npmjs.org/domutils/-/domutils-2.6.0.tgz#2e15c04185d43fb16ae7057cb76433c6edb938b7" 604 | integrity sha512-y0BezHuy4MDYxh6OvolXYsH+1EMGmFbwv5FKW7ovwMG6zTPWqNPq3WF9ayZssFq+UlKdffGLbOEaghNdaOm1WA== 605 | dependencies: 606 | dom-serializer "^1.0.1" 607 | domelementtype "^2.2.0" 608 | domhandler "^4.2.0" 609 | 610 | end-of-stream@^1.1.0, end-of-stream@^1.4.1: 611 | version "1.4.4" 612 | resolved "https://registry.npmjs.org/end-of-stream/-/end-of-stream-1.4.4.tgz#5ae64a5f45057baf3626ec14da0ca5e4b2431eb0" 613 | integrity sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q== 614 | dependencies: 615 | once "^1.4.0" 616 | 617 | entities@^2.0.0: 618 | version "2.2.0" 619 | resolved "https://registry.npmjs.org/entities/-/entities-2.2.0.tgz#098dc90ebb83d8dffa089d55256b351d34c4da55" 620 | integrity sha512-p92if5Nz619I0w+akJrLZH0MX0Pb5DX39XOwQTtXSdQQOaYH03S1uIQp4mhOZtAXrxq4ViO67YTiLBo2638o9A== 621 | 622 | es-abstract@^1.18.0-next.2: 623 | version "1.18.0" 624 | resolved "https://registry.npmjs.org/es-abstract/-/es-abstract-1.18.0.tgz#ab80b359eecb7ede4c298000390bc5ac3ec7b5a4" 625 | integrity sha512-LJzK7MrQa8TS0ja2w3YNLzUgJCGPdPOV1yVvezjNnS89D+VR08+Szt2mz3YB2Dck/+w5tfIq/RoUAFqJJGM2yw== 626 | dependencies: 627 | call-bind "^1.0.2" 628 | es-to-primitive "^1.2.1" 629 | function-bind "^1.1.1" 630 | get-intrinsic "^1.1.1" 631 | has "^1.0.3" 632 | has-symbols "^1.0.2" 633 | is-callable "^1.2.3" 634 | is-negative-zero "^2.0.1" 635 | is-regex "^1.1.2" 636 | is-string "^1.0.5" 637 | object-inspect "^1.9.0" 638 | object-keys "^1.1.1" 639 | object.assign "^4.1.2" 640 | string.prototype.trimend "^1.0.4" 641 | string.prototype.trimstart "^1.0.4" 642 | unbox-primitive "^1.0.0" 643 | 644 | es-to-primitive@^1.2.1: 645 | version "1.2.1" 646 | resolved "https://registry.npmjs.org/es-to-primitive/-/es-to-primitive-1.2.1.tgz#e55cd4c9cdc188bcefb03b366c736323fc5c898a" 647 | integrity sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA== 648 | dependencies: 649 | is-callable "^1.1.4" 650 | is-date-object "^1.0.1" 651 | is-symbol "^1.0.2" 652 | 653 | exif-parser@^0.1.12: 654 | version "0.1.12" 655 | resolved "https://registry.npmjs.org/exif-parser/-/exif-parser-0.1.12.tgz#58a9d2d72c02c1f6f02a0ef4a9166272b7760922" 656 | integrity sha1-WKnS1ywCwfbwKg70qRZicrd2CSI= 657 | 658 | expand-template@^2.0.3: 659 | version "2.0.3" 660 | resolved "https://registry.npmjs.org/expand-template/-/expand-template-2.0.3.tgz#6e14b3fcee0f3a6340ecb57d2e8918692052a47c" 661 | integrity sha512-XYfuKMvj4O35f/pOXLObndIRvyQ+/+6AhODh+OKWj9S9498pHHn/IMszH+gt0fBCRWMNfk1ZSp5x3AifmnI2vg== 662 | 663 | file-type@^9.0.0: 664 | version "9.0.0" 665 | resolved "https://registry.npmjs.org/file-type/-/file-type-9.0.0.tgz#a68d5ad07f486414dfb2c8866f73161946714a18" 666 | integrity sha512-Qe/5NJrgIOlwijpq3B7BEpzPFcgzggOTagZmkXQY4LA6bsXKTUstK7Wp12lEJ/mLKTpvIZxmIuRcLYWT6ov9lw== 667 | 668 | fs-constants@^1.0.0: 669 | version "1.0.0" 670 | resolved "https://registry.npmjs.org/fs-constants/-/fs-constants-1.0.0.tgz#6be0de9be998ce16af8afc24497b9ee9b7ccd9ad" 671 | integrity sha512-y6OAwoSIf7FyjMIv94u+b5rdheZEjzR63GTyZJm5qh4Bi+2YgwLCcI/fPFZkL5PSixOt6ZNKm+w+Hfp/Bciwow== 672 | 673 | fs-extra@^9.1.0: 674 | version "9.1.0" 675 | resolved "https://registry.npmjs.org/fs-extra/-/fs-extra-9.1.0.tgz#5954460c764a8da2094ba3554bf839e6b9a7c86d" 676 | integrity sha512-hcg3ZmepS30/7BSFqRvoo3DOMQu7IjqxO5nCDt+zM9XWjb33Wg7ziNT+Qvqbuc3+gWpzO02JubVyk2G4Zvo1OQ== 677 | dependencies: 678 | at-least-node "^1.0.0" 679 | graceful-fs "^4.2.0" 680 | jsonfile "^6.0.1" 681 | universalify "^2.0.0" 682 | 683 | function-bind@^1.1.1: 684 | version "1.1.1" 685 | resolved "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz#a56899d3ea3c9bab874bb9773b7c5ede92f4895d" 686 | integrity sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A== 687 | 688 | gauge@~2.7.3: 689 | version "2.7.4" 690 | resolved "https://registry.npmjs.org/gauge/-/gauge-2.7.4.tgz#2c03405c7538c39d7eb37b317022e325fb018bf7" 691 | integrity sha1-LANAXHU4w51+s3sxcCLjJfsBi/c= 692 | dependencies: 693 | aproba "^1.0.3" 694 | console-control-strings "^1.0.0" 695 | has-unicode "^2.0.0" 696 | object-assign "^4.1.0" 697 | signal-exit "^3.0.0" 698 | string-width "^1.0.1" 699 | strip-ansi "^3.0.1" 700 | wide-align "^1.1.0" 701 | 702 | get-intrinsic@^1.0.2, get-intrinsic@^1.1.1: 703 | version "1.1.1" 704 | resolved "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.1.1.tgz#15f59f376f855c446963948f0d24cd3637b4abc6" 705 | integrity sha512-kWZrnVM42QCiEA2Ig1bG8zjoIMOgxWwYCEeNdwY6Tv/cOSeGpcoX4pXHfKUxNKVoArnrEr2e9srnAxxGIraS9Q== 706 | dependencies: 707 | function-bind "^1.1.1" 708 | has "^1.0.3" 709 | has-symbols "^1.0.1" 710 | 711 | gifwrap@^0.9.2: 712 | version "0.9.2" 713 | resolved "https://registry.npmjs.org/gifwrap/-/gifwrap-0.9.2.tgz#348e286e67d7cf57942172e1e6f05a71cee78489" 714 | integrity sha512-fcIswrPaiCDAyO8xnWvHSZdWChjKXUanKKpAiWWJ/UTkEi/aYKn5+90e7DE820zbEaVR9CE2y4z9bzhQijZ0BA== 715 | dependencies: 716 | image-q "^1.1.1" 717 | omggif "^1.0.10" 718 | 719 | github-from-package@0.0.0: 720 | version "0.0.0" 721 | resolved "https://registry.npmjs.org/github-from-package/-/github-from-package-0.0.0.tgz#97fb5d96bfde8973313f20e8288ef9a167fa64ce" 722 | integrity sha1-l/tdlr/eiXMxPyDoKI75oWf6ZM4= 723 | 724 | global@~4.4.0: 725 | version "4.4.0" 726 | resolved "https://registry.npmjs.org/global/-/global-4.4.0.tgz#3e7b105179006a323ed71aafca3e9c57a5cc6406" 727 | integrity sha512-wv/LAoHdRE3BeTGz53FAamhGlPLhlssK45usmGFThIi4XqnBmjKQ16u+RNbP7WvigRZDxUsM0J3gcQ5yicaL0w== 728 | dependencies: 729 | min-document "^2.19.0" 730 | process "^0.11.10" 731 | 732 | graceful-fs@^4.1.6, graceful-fs@^4.2.0: 733 | version "4.2.6" 734 | resolved "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.6.tgz#ff040b2b0853b23c3d31027523706f1885d76bee" 735 | integrity sha512-nTnJ528pbqxYanhpDYsi4Rd8MAeaBA67+RZ10CM1m3bTAVFEDcd5AuA4a6W5YkGZ1iNXHzZz8T6TBKLeBuNriQ== 736 | 737 | has-bigints@^1.0.1: 738 | version "1.0.1" 739 | resolved "https://registry.npmjs.org/has-bigints/-/has-bigints-1.0.1.tgz#64fe6acb020673e3b78db035a5af69aa9d07b113" 740 | integrity sha512-LSBS2LjbNBTf6287JEbEzvJgftkF5qFkmCo9hDRpAzKhUOlJ+hx8dd4USs00SgsUNwc4617J9ki5YtEClM2ffA== 741 | 742 | has-flag@^4.0.0: 743 | version "4.0.0" 744 | resolved "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz#944771fd9c81c81265c4d6941860da06bb59479b" 745 | integrity sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ== 746 | 747 | has-symbols@^1.0.1, has-symbols@^1.0.2: 748 | version "1.0.2" 749 | resolved "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.2.tgz#165d3070c00309752a1236a479331e3ac56f1423" 750 | integrity sha512-chXa79rL/UC2KlX17jo3vRGz0azaWEx5tGqZg5pO3NUyEJVB17dMruQlzCCOfUvElghKcm5194+BCRvi2Rv/Gw== 751 | 752 | has-unicode@^2.0.0: 753 | version "2.0.1" 754 | resolved "https://registry.npmjs.org/has-unicode/-/has-unicode-2.0.1.tgz#e0e6fe6a28cf51138855e086d1691e771de2a8b9" 755 | integrity sha1-4Ob+aijPUROIVeCG0Wkedx3iqLk= 756 | 757 | has@^1.0.3: 758 | version "1.0.3" 759 | resolved "https://registry.npmjs.org/has/-/has-1.0.3.tgz#722d7cbfc1f6aa8241f16dd814e011e1f41e8796" 760 | integrity sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw== 761 | dependencies: 762 | function-bind "^1.1.1" 763 | 764 | ieee754@^1.1.13: 765 | version "1.2.1" 766 | resolved "https://registry.npmjs.org/ieee754/-/ieee754-1.2.1.tgz#8eb7a10a63fff25d15a57b001586d177d1b0d352" 767 | integrity sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA== 768 | 769 | image-q@^1.1.1: 770 | version "1.1.1" 771 | resolved "https://registry.npmjs.org/image-q/-/image-q-1.1.1.tgz#fc84099664460b90ca862d9300b6bfbbbfbf8056" 772 | integrity sha1-/IQJlmRGC5DKhi2TALa/u7+/gFY= 773 | 774 | inherits@^2.0.3, inherits@^2.0.4, inherits@~2.0.3: 775 | version "2.0.4" 776 | resolved "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz#0fa2c64f932917c3433a0ded55363aae37416b7c" 777 | integrity sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ== 778 | 779 | ini@~1.3.0: 780 | version "1.3.8" 781 | resolved "https://registry.npmjs.org/ini/-/ini-1.3.8.tgz#a29da425b48806f34767a4efce397269af28432c" 782 | integrity sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew== 783 | 784 | is-arrayish@^0.3.1: 785 | version "0.3.2" 786 | resolved "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.3.2.tgz#4574a2ae56f7ab206896fb431eaeed066fdf8f03" 787 | integrity sha512-eVRqCvVlZbuw3GrM63ovNSNAeA1K16kaR/LRY/92w0zxQ5/1YzwblUX652i4Xs9RwAGjW9d9y6X88t8OaAJfWQ== 788 | 789 | is-bigint@^1.0.1: 790 | version "1.0.1" 791 | resolved "https://registry.npmjs.org/is-bigint/-/is-bigint-1.0.1.tgz#6923051dfcbc764278540b9ce0e6b3213aa5ebc2" 792 | integrity sha512-J0ELF4yHFxHy0cmSxZuheDOz2luOdVvqjwmEcj8H/L1JHeuEDSDbeRP+Dk9kFVk5RTFzbucJ2Kb9F7ixY2QaCg== 793 | 794 | is-boolean-object@^1.1.0: 795 | version "1.1.0" 796 | resolved "https://registry.npmjs.org/is-boolean-object/-/is-boolean-object-1.1.0.tgz#e2aaad3a3a8fca34c28f6eee135b156ed2587ff0" 797 | integrity sha512-a7Uprx8UtD+HWdyYwnD1+ExtTgqQtD2k/1yJgtXP6wnMm8byhkoTZRl+95LLThpzNZJ5aEvi46cdH+ayMFRwmA== 798 | dependencies: 799 | call-bind "^1.0.0" 800 | 801 | is-callable@^1.1.4, is-callable@^1.2.3: 802 | version "1.2.3" 803 | resolved "https://registry.npmjs.org/is-callable/-/is-callable-1.2.3.tgz#8b1e0500b73a1d76c70487636f368e519de8db8e" 804 | integrity sha512-J1DcMe8UYTBSrKezuIUTUwjXsho29693unXM2YhJUTR2txK/eG47bvNa/wipPFmZFgr/N6f1GA66dv0mEyTIyQ== 805 | 806 | is-date-object@^1.0.1: 807 | version "1.0.2" 808 | resolved "https://registry.npmjs.org/is-date-object/-/is-date-object-1.0.2.tgz#bda736f2cd8fd06d32844e7743bfa7494c3bfd7e" 809 | integrity sha512-USlDT524woQ08aoZFzh3/Z6ch9Y/EWXEHQ/AaRN0SkKq4t2Jw2R2339tSXmwuVoY7LLlBCbOIlx2myP/L5zk0g== 810 | 811 | is-fullwidth-code-point@^1.0.0: 812 | version "1.0.0" 813 | resolved "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz#ef9e31386f031a7f0d643af82fde50c457ef00cb" 814 | integrity sha1-754xOG8DGn8NZDr4L95QxFfvAMs= 815 | dependencies: 816 | number-is-nan "^1.0.0" 817 | 818 | is-fullwidth-code-point@^2.0.0: 819 | version "2.0.0" 820 | resolved "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz#a3b30a5c4f199183167aaab93beefae3ddfb654f" 821 | integrity sha1-o7MKXE8ZkYMWeqq5O+764937ZU8= 822 | 823 | is-function@^1.0.1: 824 | version "1.0.2" 825 | resolved "https://registry.npmjs.org/is-function/-/is-function-1.0.2.tgz#4f097f30abf6efadac9833b17ca5dc03f8144e08" 826 | integrity sha512-lw7DUp0aWXYg+CBCN+JKkcE0Q2RayZnSvnZBlwgxHBQhqt5pZNVy4Ri7H9GmmXkdu7LUthszM+Tor1u/2iBcpQ== 827 | 828 | is-negative-zero@^2.0.1: 829 | version "2.0.1" 830 | resolved "https://registry.npmjs.org/is-negative-zero/-/is-negative-zero-2.0.1.tgz#3de746c18dda2319241a53675908d8f766f11c24" 831 | integrity sha512-2z6JzQvZRa9A2Y7xC6dQQm4FSTSTNWjKIYYTt4246eMTJmIo0Q+ZyOsU66X8lxK1AbB92dFeglPLrhwpeRKO6w== 832 | 833 | is-number-object@^1.0.4: 834 | version "1.0.4" 835 | resolved "https://registry.npmjs.org/is-number-object/-/is-number-object-1.0.4.tgz#36ac95e741cf18b283fc1ddf5e83da798e3ec197" 836 | integrity sha512-zohwelOAur+5uXtk8O3GPQ1eAcu4ZX3UwxQhUlfFFMNpUd83gXgjbhJh6HmB6LUNV/ieOLQuDwJO3dWJosUeMw== 837 | 838 | is-regex@^1.1.2: 839 | version "1.1.2" 840 | resolved "https://registry.npmjs.org/is-regex/-/is-regex-1.1.2.tgz#81c8ebde4db142f2cf1c53fc86d6a45788266251" 841 | integrity sha512-axvdhb5pdhEVThqJzYXwMlVuZwC+FF2DpcOhTS+y/8jVq4trxyPgfcwIxIKiyeuLlSQYKkmUaPQJ8ZE4yNKXDg== 842 | dependencies: 843 | call-bind "^1.0.2" 844 | has-symbols "^1.0.1" 845 | 846 | is-string@^1.0.5: 847 | version "1.0.5" 848 | resolved "https://registry.npmjs.org/is-string/-/is-string-1.0.5.tgz#40493ed198ef3ff477b8c7f92f644ec82a5cd3a6" 849 | integrity sha512-buY6VNRjhQMiF1qWDouloZlQbRhDPCebwxSjxMjxgemYT46YMd2NR0/H+fBhEfWX4A/w9TBJ+ol+okqJKFE6vQ== 850 | 851 | is-symbol@^1.0.2, is-symbol@^1.0.3: 852 | version "1.0.3" 853 | resolved "https://registry.npmjs.org/is-symbol/-/is-symbol-1.0.3.tgz#38e1014b9e6329be0de9d24a414fd7441ec61937" 854 | integrity sha512-OwijhaRSgqvhm/0ZdAcXNZt9lYdKFpcRDT5ULUuYXPoT794UNOdU+gpT6Rzo7b4V2HUl/op6GqY894AZwv9faQ== 855 | dependencies: 856 | has-symbols "^1.0.1" 857 | 858 | isarray@~1.0.0: 859 | version "1.0.0" 860 | resolved "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz#bb935d48582cba168c06834957a54a3e07124f11" 861 | integrity sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE= 862 | 863 | jimp@^0.14.0: 864 | version "0.14.0" 865 | resolved "https://registry.npmjs.org/jimp/-/jimp-0.14.0.tgz#fde55f69bdb918c1b01ac633d89a25853af85625" 866 | integrity sha512-8BXU+J8+SPmwwyq9ELihpSV4dWPTiOKBWCEgtkbnxxAVMjXdf3yGmyaLSshBfXc8sP/JQ9OZj5R8nZzz2wPXgA== 867 | dependencies: 868 | "@babel/runtime" "^7.7.2" 869 | "@jimp/custom" "^0.14.0" 870 | "@jimp/plugins" "^0.14.0" 871 | "@jimp/types" "^0.14.0" 872 | regenerator-runtime "^0.13.3" 873 | 874 | jpeg-js@^0.4.0: 875 | version "0.4.3" 876 | resolved "https://registry.npmjs.org/jpeg-js/-/jpeg-js-0.4.3.tgz#6158e09f1983ad773813704be80680550eff977b" 877 | integrity sha512-ru1HWKek8octvUHFHvE5ZzQ1yAsJmIvRdGWvSoKV52XKyuyYA437QWDttXT8eZXDSbuMpHlLzPDZUPd6idIz+Q== 878 | 879 | jsonfile@^6.0.1: 880 | version "6.1.0" 881 | resolved "https://registry.npmjs.org/jsonfile/-/jsonfile-6.1.0.tgz#bc55b2634793c679ec6403094eb13698a6ec0aae" 882 | integrity sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ== 883 | dependencies: 884 | universalify "^2.0.0" 885 | optionalDependencies: 886 | graceful-fs "^4.1.6" 887 | 888 | load-bmfont@^1.3.1, load-bmfont@^1.4.0: 889 | version "1.4.1" 890 | resolved "https://registry.npmjs.org/load-bmfont/-/load-bmfont-1.4.1.tgz#c0f5f4711a1e2ccff725a7b6078087ccfcddd3e9" 891 | integrity sha512-8UyQoYmdRDy81Brz6aLAUhfZLwr5zV0L3taTQ4hju7m6biuwiWiJXjPhBJxbUQJA8PrkvJ/7Enqmwk2sM14soA== 892 | dependencies: 893 | buffer-equal "0.0.1" 894 | mime "^1.3.4" 895 | parse-bmfont-ascii "^1.0.3" 896 | parse-bmfont-binary "^1.0.5" 897 | parse-bmfont-xml "^1.1.4" 898 | phin "^2.9.1" 899 | xhr "^2.0.1" 900 | xtend "^4.0.0" 901 | 902 | lru-cache@^6.0.0: 903 | version "6.0.0" 904 | resolved "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz#6d6fe6570ebd96aaf90fcad1dafa3b2566db3a94" 905 | integrity sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA== 906 | dependencies: 907 | yallist "^4.0.0" 908 | 909 | mdn-data@2.0.14: 910 | version "2.0.14" 911 | resolved "https://registry.npmjs.org/mdn-data/-/mdn-data-2.0.14.tgz#7113fc4281917d63ce29b43446f701e68c25ba50" 912 | integrity sha512-dn6wd0uw5GsdswPFfsgMp5NSB0/aDe6fK94YJV/AJDYXL6HVLWBsxeq7js7Ad+mU2K9LAlwpk6kN2D5mwCPVow== 913 | 914 | mime@^1.3.4: 915 | version "1.6.0" 916 | resolved "https://registry.npmjs.org/mime/-/mime-1.6.0.tgz#32cd9e5c64553bd58d19a568af452acff04981b1" 917 | integrity sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg== 918 | 919 | mimic-response@^2.0.0: 920 | version "2.1.0" 921 | resolved "https://registry.npmjs.org/mimic-response/-/mimic-response-2.1.0.tgz#d13763d35f613d09ec37ebb30bac0469c0ee8f43" 922 | integrity sha512-wXqjST+SLt7R009ySCglWBCFpjUygmCIfD790/kVbiGmUgfYGuB14PiTd5DwVxSV4NcYHjzMkoj5LjQZwTQLEA== 923 | 924 | min-document@^2.19.0: 925 | version "2.19.0" 926 | resolved "https://registry.npmjs.org/min-document/-/min-document-2.19.0.tgz#7bd282e3f5842ed295bb748cdd9f1ffa2c824685" 927 | integrity sha1-e9KC4/WELtKVu3SM3Z8f+iyCRoU= 928 | dependencies: 929 | dom-walk "^0.1.0" 930 | 931 | minimist@^1.2.0, minimist@^1.2.3, minimist@^1.2.5: 932 | version "1.2.5" 933 | resolved "https://registry.npmjs.org/minimist/-/minimist-1.2.5.tgz#67d66014b66a6a8aaa0c083c5fd58df4e4e97602" 934 | integrity sha512-FM9nNUYrRBAELZQT3xeZQ7fmMOBg6nWNmJKTcgsJeaLstP/UODVpGsr5OhXhhXg6f+qtJ8uiZ+PUxkDWcgIXLw== 935 | 936 | mkdirp-classic@^0.5.2, mkdirp-classic@^0.5.3: 937 | version "0.5.3" 938 | resolved "https://registry.npmjs.org/mkdirp-classic/-/mkdirp-classic-0.5.3.tgz#fa10c9115cc6d8865be221ba47ee9bed78601113" 939 | integrity sha512-gKLcREMhtuZRwRAfqP3RFW+TK4JqApVBtOIftVgjuABpAtpxhPGaDcfvbhNvD0B8iD1oUr/txX35NjcaY6Ns/A== 940 | 941 | mkdirp@^0.5.1: 942 | version "0.5.5" 943 | resolved "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.5.tgz#d91cefd62d1436ca0f41620e251288d420099def" 944 | integrity sha512-NKmAlESf6jMGym1++R0Ra7wvhV+wFW63FaSOFPwRahvea0gMUcGUhVeAg/0BC0wiv9ih5NYPB1Wn1UEI1/L+xQ== 945 | dependencies: 946 | minimist "^1.2.5" 947 | 948 | napi-build-utils@^1.0.1: 949 | version "1.0.2" 950 | resolved "https://registry.npmjs.org/napi-build-utils/-/napi-build-utils-1.0.2.tgz#b1fddc0b2c46e380a0b7a76f984dd47c41a13806" 951 | integrity sha512-ONmRUqK7zj7DWX0D9ADe03wbwOBZxNAfF20PlGfCWQcD3+/MakShIHrMqx9YwPTfxDdF1zLeL+RGZiR9kGMLdg== 952 | 953 | nearest-color@^0.4.4: 954 | version "0.4.4" 955 | resolved "https://registry.npmjs.org/nearest-color/-/nearest-color-0.4.4.tgz#fb812072b511f4f09a0a316903332e09fa5d7f1d" 956 | integrity sha512-orhcaIORC10tf41Ld2wwlcC+FaAavHG87JHWB3eHH5p7v2k9Tzym2XNEZzLAm5YJwGv6Q38WWc7SOb+Qfu/4NQ== 957 | 958 | node-abi@^2.21.0: 959 | version "2.26.0" 960 | resolved "https://registry.npmjs.org/node-abi/-/node-abi-2.26.0.tgz#355d5d4bc603e856f74197adbf3f5117a396ba40" 961 | integrity sha512-ag/Vos/mXXpWLLAYWsAoQdgS+gW7IwvgMLOgqopm/DbzAjazLltzgzpVMsFlgmo9TzG5hGXeaBZx2AI731RIsQ== 962 | dependencies: 963 | semver "^5.4.1" 964 | 965 | node-addon-api@^3.1.0: 966 | version "3.1.0" 967 | resolved "https://registry.npmjs.org/node-addon-api/-/node-addon-api-3.1.0.tgz#98b21931557466c6729e51cb77cd39c965f42239" 968 | integrity sha512-flmrDNB06LIl5lywUz7YlNGZH/5p0M7W28k8hzd9Lshtdh1wshD2Y+U4h9LD6KObOy1f+fEVdgprPrEymjM5uw== 969 | 970 | noop-logger@^0.1.1: 971 | version "0.1.1" 972 | resolved "https://registry.npmjs.org/noop-logger/-/noop-logger-0.1.1.tgz#94a2b1633c4f1317553007d8966fd0e841b6a4c2" 973 | integrity sha1-lKKxYzxPExdVMAfYlm/Q6EG2pMI= 974 | 975 | npmlog@^4.0.1: 976 | version "4.1.2" 977 | resolved "https://registry.npmjs.org/npmlog/-/npmlog-4.1.2.tgz#08a7f2a8bf734604779a9efa4ad5cc717abb954b" 978 | integrity sha512-2uUqazuKlTaSI/dC8AzicUck7+IrEaOnN/e0jd3Xtt1KcGpwx30v50mL7oPyr/h9bL3E4aZccVwpwP+5W9Vjkg== 979 | dependencies: 980 | are-we-there-yet "~1.1.2" 981 | console-control-strings "~1.1.0" 982 | gauge "~2.7.3" 983 | set-blocking "~2.0.0" 984 | 985 | nth-check@^2.0.0: 986 | version "2.0.0" 987 | resolved "https://registry.npmjs.org/nth-check/-/nth-check-2.0.0.tgz#1bb4f6dac70072fc313e8c9cd1417b5074c0a125" 988 | integrity sha512-i4sc/Kj8htBrAiH1viZ0TgU8Y5XqCaV/FziYK6TBczxmeKm3AEFWqqF3195yKudrarqy7Zu80Ra5dobFjn9X/Q== 989 | dependencies: 990 | boolbase "^1.0.0" 991 | 992 | number-is-nan@^1.0.0: 993 | version "1.0.1" 994 | resolved "https://registry.npmjs.org/number-is-nan/-/number-is-nan-1.0.1.tgz#097b602b53422a522c1afb8790318336941a011d" 995 | integrity sha1-CXtgK1NCKlIsGvuHkDGDNpQaAR0= 996 | 997 | object-assign@^4.1.0: 998 | version "4.1.1" 999 | resolved "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863" 1000 | integrity sha1-IQmtx5ZYh8/AXLvUQsrIv7s2CGM= 1001 | 1002 | object-inspect@^1.9.0: 1003 | version "1.10.2" 1004 | resolved "https://registry.npmjs.org/object-inspect/-/object-inspect-1.10.2.tgz#b6385a3e2b7cae0b5eafcf90cddf85d128767f30" 1005 | integrity sha512-gz58rdPpadwztRrPjZE9DZLOABUpTGdcANUgOwBFO1C+HZZhePoP83M65WGDmbpwFYJSWqavbl4SgDn4k8RYTA== 1006 | 1007 | object-keys@^1.0.12, object-keys@^1.1.1: 1008 | version "1.1.1" 1009 | resolved "https://registry.npmjs.org/object-keys/-/object-keys-1.1.1.tgz#1c47f272df277f3b1daf061677d9c82e2322c60e" 1010 | integrity sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA== 1011 | 1012 | object.assign@^4.1.2: 1013 | version "4.1.2" 1014 | resolved "https://registry.npmjs.org/object.assign/-/object.assign-4.1.2.tgz#0ed54a342eceb37b38ff76eb831a0e788cb63940" 1015 | integrity sha512-ixT2L5THXsApyiUPYKmW+2EHpXXe5Ii3M+f4e+aJFAHao5amFRW6J0OO6c/LU8Be47utCx2GL89hxGB6XSmKuQ== 1016 | dependencies: 1017 | call-bind "^1.0.0" 1018 | define-properties "^1.1.3" 1019 | has-symbols "^1.0.1" 1020 | object-keys "^1.1.1" 1021 | 1022 | omggif@^1.0.10, omggif@^1.0.9: 1023 | version "1.0.10" 1024 | resolved "https://registry.npmjs.org/omggif/-/omggif-1.0.10.tgz#ddaaf90d4a42f532e9e7cb3a95ecdd47f17c7b19" 1025 | integrity sha512-LMJTtvgc/nugXj0Vcrrs68Mn2D1r0zf630VNtqtpI1FEO7e+O9FP4gqs9AcnBaSEeoHIPm28u6qgPR0oyEpGSw== 1026 | 1027 | once@^1.3.1, once@^1.4.0: 1028 | version "1.4.0" 1029 | resolved "https://registry.npmjs.org/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1" 1030 | integrity sha1-WDsap3WWHUsROsF9nFC6753Xa9E= 1031 | dependencies: 1032 | wrappy "1" 1033 | 1034 | pako@^1.0.5: 1035 | version "1.0.11" 1036 | resolved "https://registry.npmjs.org/pako/-/pako-1.0.11.tgz#6c9599d340d54dfd3946380252a35705a6b992bf" 1037 | integrity sha512-4hLB8Py4zZce5s4yd9XzopqwVv/yGNhV1Bl8NTmCq1763HeK2+EwVTv+leGeL13Dnh2wfbqowVPXCIO0z4taYw== 1038 | 1039 | parse-bmfont-ascii@^1.0.3: 1040 | version "1.0.6" 1041 | resolved "https://registry.npmjs.org/parse-bmfont-ascii/-/parse-bmfont-ascii-1.0.6.tgz#11ac3c3ff58f7c2020ab22769079108d4dfa0285" 1042 | integrity sha1-Eaw8P/WPfCAgqyJ2kHkQjU36AoU= 1043 | 1044 | parse-bmfont-binary@^1.0.5: 1045 | version "1.0.6" 1046 | resolved "https://registry.npmjs.org/parse-bmfont-binary/-/parse-bmfont-binary-1.0.6.tgz#d038b476d3e9dd9db1e11a0b0e53a22792b69006" 1047 | integrity sha1-0Di0dtPp3Z2x4RoLDlOiJ5K2kAY= 1048 | 1049 | parse-bmfont-xml@^1.1.4: 1050 | version "1.1.4" 1051 | resolved "https://registry.npmjs.org/parse-bmfont-xml/-/parse-bmfont-xml-1.1.4.tgz#015319797e3e12f9e739c4d513872cd2fa35f389" 1052 | integrity sha512-bjnliEOmGv3y1aMEfREMBJ9tfL3WR0i0CKPj61DnSLaoxWR3nLrsQrEbCId/8rF4NyRF0cCqisSVXyQYWM+mCQ== 1053 | dependencies: 1054 | xml-parse-from-string "^1.0.0" 1055 | xml2js "^0.4.5" 1056 | 1057 | parse-headers@^2.0.0: 1058 | version "2.0.3" 1059 | resolved "https://registry.npmjs.org/parse-headers/-/parse-headers-2.0.3.tgz#5e8e7512383d140ba02f0c7aa9f49b4399c92515" 1060 | integrity sha512-QhhZ+DCCit2Coi2vmAKbq5RGTRcQUOE2+REgv8vdyu7MnYx2eZztegqtTx99TZ86GTIwqiy3+4nQTWZ2tgmdCA== 1061 | 1062 | phin@^2.9.1: 1063 | version "2.9.3" 1064 | resolved "https://registry.npmjs.org/phin/-/phin-2.9.3.tgz#f9b6ac10a035636fb65dfc576aaaa17b8743125c" 1065 | integrity sha512-CzFr90qM24ju5f88quFC/6qohjC144rehe5n6DH900lgXmUe86+xCKc10ev56gRKC4/BkHUoG4uSiQgBiIXwDA== 1066 | 1067 | pixelmatch@^4.0.2: 1068 | version "4.0.2" 1069 | resolved "https://registry.npmjs.org/pixelmatch/-/pixelmatch-4.0.2.tgz#8f47dcec5011b477b67db03c243bc1f3085e8854" 1070 | integrity sha1-j0fc7FARtHe2fbA8JDvB8wheiFQ= 1071 | dependencies: 1072 | pngjs "^3.0.0" 1073 | 1074 | pngjs@^3.0.0, pngjs@^3.3.3: 1075 | version "3.4.0" 1076 | resolved "https://registry.npmjs.org/pngjs/-/pngjs-3.4.0.tgz#99ca7d725965fb655814eaf65f38f12bbdbf555f" 1077 | integrity sha512-NCrCHhWmnQklfH4MtJMRjZ2a8c80qXeMlQMv2uVp9ISJMTt562SbGd6n2oq0PaPgKm7Z6pL9E2UlLIhC+SHL3w== 1078 | 1079 | potrace@^2.1.8: 1080 | version "2.1.8" 1081 | resolved "https://registry.npmjs.org/potrace/-/potrace-2.1.8.tgz#50f6fba92e1e39ddef6f979b0a0f841809e0acf2" 1082 | integrity sha512-V9hI7UMJyEhNZjM8CbZaP/804ZRLgzWkCS9OOYnEZkszzj3zKR/erRdj0uFMcN3pp6x4B+AIZebmkQgGRinG/g== 1083 | dependencies: 1084 | jimp "^0.14.0" 1085 | 1086 | prebuild-install@^6.1.1: 1087 | version "6.1.2" 1088 | resolved "https://registry.npmjs.org/prebuild-install/-/prebuild-install-6.1.2.tgz#6ce5fc5978feba5d3cbffedca0682b136a0b5bff" 1089 | integrity sha512-PzYWIKZeP+967WuKYXlTOhYBgGOvTRSfaKI89XnfJ0ansRAH7hDU45X+K+FZeI1Wb/7p/NnuctPH3g0IqKUuSQ== 1090 | dependencies: 1091 | detect-libc "^1.0.3" 1092 | expand-template "^2.0.3" 1093 | github-from-package "0.0.0" 1094 | minimist "^1.2.3" 1095 | mkdirp-classic "^0.5.3" 1096 | napi-build-utils "^1.0.1" 1097 | node-abi "^2.21.0" 1098 | noop-logger "^0.1.1" 1099 | npmlog "^4.0.1" 1100 | pump "^3.0.0" 1101 | rc "^1.2.7" 1102 | simple-get "^3.0.3" 1103 | tar-fs "^2.0.0" 1104 | tunnel-agent "^0.6.0" 1105 | 1106 | process-nextick-args@~2.0.0: 1107 | version "2.0.1" 1108 | resolved "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-2.0.1.tgz#7820d9b16120cc55ca9ae7792680ae7dba6d7fe2" 1109 | integrity sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag== 1110 | 1111 | process@^0.11.10: 1112 | version "0.11.10" 1113 | resolved "https://registry.npmjs.org/process/-/process-0.11.10.tgz#7332300e840161bda3e69a1d1d91a7d4bc16f182" 1114 | integrity sha1-czIwDoQBYb2j5podHZGn1LwW8YI= 1115 | 1116 | pump@^3.0.0: 1117 | version "3.0.0" 1118 | resolved "https://registry.npmjs.org/pump/-/pump-3.0.0.tgz#b4a2116815bde2f4e1ea602354e8c75565107a64" 1119 | integrity sha512-LwZy+p3SFs1Pytd/jYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww== 1120 | dependencies: 1121 | end-of-stream "^1.1.0" 1122 | once "^1.3.1" 1123 | 1124 | quantize@^1.0.2: 1125 | version "1.0.2" 1126 | resolved "https://registry.npmjs.org/quantize/-/quantize-1.0.2.tgz#d25ac200a77b6d70f40127ca171a10e33c8546de" 1127 | integrity sha1-0lrCAKd7bXD0ASfKFxoQ4zyFRt4= 1128 | 1129 | rc@^1.2.7: 1130 | version "1.2.8" 1131 | resolved "https://registry.npmjs.org/rc/-/rc-1.2.8.tgz#cd924bf5200a075b83c188cd6b9e211b7fc0d3ed" 1132 | integrity sha512-y3bGgqKj3QBdxLbLkomlohkvsA8gdAiUQlSBJnBhfn+BPxg4bc62d8TcBW15wavDfgexCgccckhcZvywyQYPOw== 1133 | dependencies: 1134 | deep-extend "^0.6.0" 1135 | ini "~1.3.0" 1136 | minimist "^1.2.0" 1137 | strip-json-comments "~2.0.1" 1138 | 1139 | readable-stream@^2.0.6: 1140 | version "2.3.7" 1141 | resolved "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.7.tgz#1eca1cf711aef814c04f62252a36a62f6cb23b57" 1142 | integrity sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw== 1143 | dependencies: 1144 | core-util-is "~1.0.0" 1145 | inherits "~2.0.3" 1146 | isarray "~1.0.0" 1147 | process-nextick-args "~2.0.0" 1148 | safe-buffer "~5.1.1" 1149 | string_decoder "~1.1.1" 1150 | util-deprecate "~1.0.1" 1151 | 1152 | readable-stream@^3.1.1, readable-stream@^3.4.0: 1153 | version "3.6.0" 1154 | resolved "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.0.tgz#337bbda3adc0706bd3e024426a286d4b4b2c9198" 1155 | integrity sha512-BViHy7LKeTz4oNnkcLJ+lVSL6vpiFeX6/d3oSH8zCW7UxP2onchk+vTGB143xuFjHS3deTgkKoXXymXqymiIdA== 1156 | dependencies: 1157 | inherits "^2.0.3" 1158 | string_decoder "^1.1.1" 1159 | util-deprecate "^1.0.1" 1160 | 1161 | regenerator-runtime@^0.13.3, regenerator-runtime@^0.13.4: 1162 | version "0.13.7" 1163 | resolved "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.13.7.tgz#cac2dacc8a1ea675feaabaeb8ae833898ae46f55" 1164 | integrity sha512-a54FxoJDIr27pgf7IgeQGxmqUNYrcV338lf/6gH456HZ/PhX+5BcwHXG9ajESmwe6WRO0tAzRUrRmNONWgkrew== 1165 | 1166 | safe-buffer@^5.0.1, safe-buffer@~5.2.0: 1167 | version "5.2.1" 1168 | resolved "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz#1eaf9fa9bdb1fdd4ec75f58f9cdb4e6b7827eec6" 1169 | integrity sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ== 1170 | 1171 | safe-buffer@~5.1.0, safe-buffer@~5.1.1: 1172 | version "5.1.2" 1173 | resolved "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz#991ec69d296e0313747d59bdfd2b745c35f8828d" 1174 | integrity sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g== 1175 | 1176 | sax@>=0.6.0: 1177 | version "1.2.4" 1178 | resolved "https://registry.npmjs.org/sax/-/sax-1.2.4.tgz#2816234e2378bddc4e5354fab5caa895df7100d9" 1179 | integrity sha512-NqVDv9TpANUjFm0N8uM5GxL36UgKi9/atZw+x7YFnQ8ckwFGKrl4xX4yWtrey3UJm5nP1kUbnYgLopqWNSRhWw== 1180 | 1181 | semver@^5.4.1: 1182 | version "5.7.1" 1183 | resolved "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz#a954f931aeba508d307bbf069eff0c01c96116f7" 1184 | integrity sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ== 1185 | 1186 | semver@^7.3.5: 1187 | version "7.3.5" 1188 | resolved "https://registry.npmjs.org/semver/-/semver-7.3.5.tgz#0b621c879348d8998e4b0e4be94b3f12e6018ef7" 1189 | integrity sha512-PoeGJYh8HK4BTO/a9Tf6ZG3veo/A7ZVsYrSA6J8ny9nb3B1VrpkuN+z9OE5wfE5p6H4LchYZsegiQgbJD94ZFQ== 1190 | dependencies: 1191 | lru-cache "^6.0.0" 1192 | 1193 | set-blocking@~2.0.0: 1194 | version "2.0.0" 1195 | resolved "https://registry.npmjs.org/set-blocking/-/set-blocking-2.0.0.tgz#045f9782d011ae9a6803ddd382b24392b3d890f7" 1196 | integrity sha1-BF+XgtARrppoA93TgrJDkrPYkPc= 1197 | 1198 | sharp@^0.28.1: 1199 | version "0.28.1" 1200 | resolved "https://registry.npmjs.org/sharp/-/sharp-0.28.1.tgz#9d7bbce1ca95b2c27482243cd4839c62ef40b0b7" 1201 | integrity sha512-4mCGMEN4ntaVuFGwHx7FvkJQkIgbI+S+F9a3bI7ugdvKjPr4sF7/ibvlRKhJyzhoQi+ODM+XYY1de8xs7MHbfA== 1202 | dependencies: 1203 | color "^3.1.3" 1204 | detect-libc "^1.0.3" 1205 | node-addon-api "^3.1.0" 1206 | prebuild-install "^6.1.1" 1207 | semver "^7.3.5" 1208 | simple-get "^3.1.0" 1209 | tar-fs "^2.1.1" 1210 | tunnel-agent "^0.6.0" 1211 | 1212 | signal-exit@^3.0.0: 1213 | version "3.0.3" 1214 | resolved "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.3.tgz#a1410c2edd8f077b08b4e253c8eacfcaf057461c" 1215 | integrity sha512-VUJ49FC8U1OxwZLxIbTTrDvLnf/6TDgxZcK8wxR8zs13xpx7xbG60ndBlhNrFi2EMuFRoeDoJO7wthSLq42EjA== 1216 | 1217 | simple-concat@^1.0.0: 1218 | version "1.0.1" 1219 | resolved "https://registry.npmjs.org/simple-concat/-/simple-concat-1.0.1.tgz#f46976082ba35c2263f1c8ab5edfe26c41c9552f" 1220 | integrity sha512-cSFtAPtRhljv69IK0hTVZQ+OfE9nePi/rtJmw5UjHeVyVroEqJXP1sFztKUy1qU+xvz3u/sfYJLa947b7nAN2Q== 1221 | 1222 | simple-get@^3.0.3, simple-get@^3.1.0: 1223 | version "3.1.0" 1224 | resolved "https://registry.npmjs.org/simple-get/-/simple-get-3.1.0.tgz#b45be062435e50d159540b576202ceec40b9c6b3" 1225 | integrity sha512-bCR6cP+aTdScaQCnQKbPKtJOKDp/hj9EDLJo3Nw4y1QksqaovlW/bnptB6/c1e+qmNIDHRK+oXFDdEqBT8WzUA== 1226 | dependencies: 1227 | decompress-response "^4.2.0" 1228 | once "^1.3.1" 1229 | simple-concat "^1.0.0" 1230 | 1231 | simple-swizzle@^0.2.2: 1232 | version "0.2.2" 1233 | resolved "https://registry.npmjs.org/simple-swizzle/-/simple-swizzle-0.2.2.tgz#a4da6b635ffcccca33f70d17cb92592de95e557a" 1234 | integrity sha1-pNprY1/8zMoz9w0Xy5JZLeleVXo= 1235 | dependencies: 1236 | is-arrayish "^0.3.1" 1237 | 1238 | source-map@^0.6.1: 1239 | version "0.6.1" 1240 | resolved "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz#74722af32e9614e9c287a8d0bbde48b5e2f1a263" 1241 | integrity sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g== 1242 | 1243 | stable@^0.1.8: 1244 | version "0.1.8" 1245 | resolved "https://registry.npmjs.org/stable/-/stable-0.1.8.tgz#836eb3c8382fe2936feaf544631017ce7d47a3cf" 1246 | integrity sha512-ji9qxRnOVfcuLDySj9qzhGSEFVobyt1kIOSkj1qZzYLzq7Tos/oUUWvotUPQLlrsidqsK6tBH89Bc9kL5zHA6w== 1247 | 1248 | string-width@^1.0.1: 1249 | version "1.0.2" 1250 | resolved "https://registry.npmjs.org/string-width/-/string-width-1.0.2.tgz#118bdf5b8cdc51a2a7e70d211e07e2b0b9b107d3" 1251 | integrity sha1-EYvfW4zcUaKn5w0hHgfisLmxB9M= 1252 | dependencies: 1253 | code-point-at "^1.0.0" 1254 | is-fullwidth-code-point "^1.0.0" 1255 | strip-ansi "^3.0.0" 1256 | 1257 | "string-width@^1.0.2 || 2": 1258 | version "2.1.1" 1259 | resolved "https://registry.npmjs.org/string-width/-/string-width-2.1.1.tgz#ab93f27a8dc13d28cac815c462143a6d9012ae9e" 1260 | integrity sha512-nOqH59deCq9SRHlxq1Aw85Jnt4w6KvLKqWVik6oA9ZklXLNIOlqg4F2yrT1MVaTjAqvVwdfeZ7w7aCvJD7ugkw== 1261 | dependencies: 1262 | is-fullwidth-code-point "^2.0.0" 1263 | strip-ansi "^4.0.0" 1264 | 1265 | string.prototype.replaceall@^1.0.5: 1266 | version "1.0.5" 1267 | resolved "https://registry.npmjs.org/string.prototype.replaceall/-/string.prototype.replaceall-1.0.5.tgz#3eae8b115c588ece949b14fa2993d86fc8ec87b1" 1268 | integrity sha512-YUjdWElI9pgKo7mrPOMKHFZxcAa0v1uqoJkMHtlJW63rMkPLkQH71ao2XNkKY2ksHKHC8ZUFwNjN9Vry+QyCvg== 1269 | dependencies: 1270 | call-bind "^1.0.2" 1271 | define-properties "^1.1.3" 1272 | es-abstract "^1.18.0-next.2" 1273 | get-intrinsic "^1.1.1" 1274 | has-symbols "^1.0.1" 1275 | is-regex "^1.1.2" 1276 | 1277 | string.prototype.trimend@^1.0.4: 1278 | version "1.0.4" 1279 | resolved "https://registry.npmjs.org/string.prototype.trimend/-/string.prototype.trimend-1.0.4.tgz#e75ae90c2942c63504686c18b287b4a0b1a45f80" 1280 | integrity sha512-y9xCjw1P23Awk8EvTpcyL2NIr1j7wJ39f+k6lvRnSMz+mz9CGz9NYPelDk42kOz6+ql8xjfK8oYzy3jAP5QU5A== 1281 | dependencies: 1282 | call-bind "^1.0.2" 1283 | define-properties "^1.1.3" 1284 | 1285 | string.prototype.trimstart@^1.0.4: 1286 | version "1.0.4" 1287 | resolved "https://registry.npmjs.org/string.prototype.trimstart/-/string.prototype.trimstart-1.0.4.tgz#b36399af4ab2999b4c9c648bd7a3fb2bb26feeed" 1288 | integrity sha512-jh6e984OBfvxS50tdY2nRZnoC5/mLFKOREQfw8t5yytkoUsJRNxvI/E39qu1sD0OtWI3OC0XgKSmcWwziwYuZw== 1289 | dependencies: 1290 | call-bind "^1.0.2" 1291 | define-properties "^1.1.3" 1292 | 1293 | string_decoder@^1.1.1: 1294 | version "1.3.0" 1295 | resolved "https://registry.npmjs.org/string_decoder/-/string_decoder-1.3.0.tgz#42f114594a46cf1a8e30b0a84f56c78c3edac21e" 1296 | integrity sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA== 1297 | dependencies: 1298 | safe-buffer "~5.2.0" 1299 | 1300 | string_decoder@~1.1.1: 1301 | version "1.1.1" 1302 | resolved "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz#9cf1611ba62685d7030ae9e4ba34149c3af03fc8" 1303 | integrity sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg== 1304 | dependencies: 1305 | safe-buffer "~5.1.0" 1306 | 1307 | strip-ansi@^3.0.0, strip-ansi@^3.0.1: 1308 | version "3.0.1" 1309 | resolved "https://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.1.tgz#6a385fb8853d952d5ff05d0e8aaf94278dc63dcf" 1310 | integrity sha1-ajhfuIU9lS1f8F0Oiq+UJ43GPc8= 1311 | dependencies: 1312 | ansi-regex "^2.0.0" 1313 | 1314 | strip-ansi@^4.0.0: 1315 | version "4.0.0" 1316 | resolved "https://registry.npmjs.org/strip-ansi/-/strip-ansi-4.0.0.tgz#a8479022eb1ac368a871389b635262c505ee368f" 1317 | integrity sha1-qEeQIusaw2iocTibY1JixQXuNo8= 1318 | dependencies: 1319 | ansi-regex "^3.0.0" 1320 | 1321 | strip-json-comments@~2.0.1: 1322 | version "2.0.1" 1323 | resolved "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-2.0.1.tgz#3c531942e908c2697c0ec344858c286c7ca0a60a" 1324 | integrity sha1-PFMZQukIwml8DsNEhYwobHygpgo= 1325 | 1326 | supports-color@^7.1.0: 1327 | version "7.2.0" 1328 | resolved "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz#1b7dcdcb32b8138801b3e478ba6a51caa89648da" 1329 | integrity sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw== 1330 | dependencies: 1331 | has-flag "^4.0.0" 1332 | 1333 | svgo@^2.3.0: 1334 | version "2.3.0" 1335 | resolved "https://registry.npmjs.org/svgo/-/svgo-2.3.0.tgz#6b3af81d0cbd1e19c83f5f63cec2cb98c70b5373" 1336 | integrity sha512-fz4IKjNO6HDPgIQxu4IxwtubtbSfGEAJUq/IXyTPIkGhWck/faiiwfkvsB8LnBkKLvSoyNNIY6d13lZprJMc9Q== 1337 | dependencies: 1338 | "@trysound/sax" "0.1.1" 1339 | chalk "^4.1.0" 1340 | commander "^7.1.0" 1341 | css-select "^3.1.2" 1342 | css-tree "^1.1.2" 1343 | csso "^4.2.0" 1344 | stable "^0.1.8" 1345 | 1346 | tar-fs@^2.0.0, tar-fs@^2.1.1: 1347 | version "2.1.1" 1348 | resolved "https://registry.npmjs.org/tar-fs/-/tar-fs-2.1.1.tgz#489a15ab85f1f0befabb370b7de4f9eb5cbe8784" 1349 | integrity sha512-V0r2Y9scmbDRLCNex/+hYzvp/zyYjvFbHPNgVTKfQvVrb6guiE/fxP+XblDNR011utopbkex2nM4dHNV6GDsng== 1350 | dependencies: 1351 | chownr "^1.1.1" 1352 | mkdirp-classic "^0.5.2" 1353 | pump "^3.0.0" 1354 | tar-stream "^2.1.4" 1355 | 1356 | tar-stream@^2.1.4: 1357 | version "2.2.0" 1358 | resolved "https://registry.npmjs.org/tar-stream/-/tar-stream-2.2.0.tgz#acad84c284136b060dc3faa64474aa9aebd77287" 1359 | integrity sha512-ujeqbceABgwMZxEJnk2HDY2DlnUZ+9oEcb1KzTVfYHio0UE6dG71n60d8D2I4qNvleWrrXpmjpt7vZeF1LnMZQ== 1360 | dependencies: 1361 | bl "^4.0.3" 1362 | end-of-stream "^1.4.1" 1363 | fs-constants "^1.0.0" 1364 | inherits "^2.0.3" 1365 | readable-stream "^3.1.1" 1366 | 1367 | timm@^1.6.1: 1368 | version "1.7.1" 1369 | resolved "https://registry.npmjs.org/timm/-/timm-1.7.1.tgz#96bab60c7d45b5a10a8a4d0f0117c6b7e5aff76f" 1370 | integrity sha512-IjZc9KIotudix8bMaBW6QvMuq64BrJWFs1+4V0lXwWGQZwH+LnX87doAYhem4caOEusRP9/g6jVDQmZ8XOk1nw== 1371 | 1372 | tinycolor2@^1.4.1, tinycolor2@^1.4.2: 1373 | version "1.4.2" 1374 | resolved "https://registry.npmjs.org/tinycolor2/-/tinycolor2-1.4.2.tgz#3f6a4d1071ad07676d7fa472e1fac40a719d8803" 1375 | integrity sha512-vJhccZPs965sV/L2sU4oRQVAos0pQXwsvTLkWYdqJ+a8Q5kPFzJTuOFwy7UniPli44NKQGAglksjvOcpo95aZA== 1376 | 1377 | tunnel-agent@^0.6.0: 1378 | version "0.6.0" 1379 | resolved "https://registry.npmjs.org/tunnel-agent/-/tunnel-agent-0.6.0.tgz#27a5dea06b36b04a0a9966774b290868f0fc40fd" 1380 | integrity sha1-J6XeoGs2sEoKmWZ3SykIaPD8QP0= 1381 | dependencies: 1382 | safe-buffer "^5.0.1" 1383 | 1384 | unbox-primitive@^1.0.0: 1385 | version "1.0.1" 1386 | resolved "https://registry.npmjs.org/unbox-primitive/-/unbox-primitive-1.0.1.tgz#085e215625ec3162574dc8859abee78a59b14471" 1387 | integrity sha512-tZU/3NqK3dA5gpE1KtyiJUrEB0lxnGkMFHptJ7q6ewdZ8s12QrODwNbhIJStmJkd1QDXa1NRA8aF2A1zk/Ypyw== 1388 | dependencies: 1389 | function-bind "^1.1.1" 1390 | has-bigints "^1.0.1" 1391 | has-symbols "^1.0.2" 1392 | which-boxed-primitive "^1.0.2" 1393 | 1394 | universalify@^2.0.0: 1395 | version "2.0.0" 1396 | resolved "https://registry.npmjs.org/universalify/-/universalify-2.0.0.tgz#75a4984efedc4b08975c5aeb73f530d02df25717" 1397 | integrity sha512-hAZsKq7Yy11Zu1DE0OzWjw7nnLZmJZYTDZZyEFHZdUhV8FkH5MCfoU1XMaxXovpyW5nq5scPqq0ZDP9Zyl04oQ== 1398 | 1399 | utif@^2.0.1: 1400 | version "2.0.1" 1401 | resolved "https://registry.npmjs.org/utif/-/utif-2.0.1.tgz#9e1582d9bbd20011a6588548ed3266298e711759" 1402 | integrity sha512-Z/S1fNKCicQTf375lIP9G8Sa1H/phcysstNrrSdZKj1f9g58J4NMgb5IgiEZN9/nLMPDwF0W7hdOe9Qq2IYoLg== 1403 | dependencies: 1404 | pako "^1.0.5" 1405 | 1406 | util-deprecate@^1.0.1, util-deprecate@~1.0.1: 1407 | version "1.0.2" 1408 | resolved "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf" 1409 | integrity sha1-RQ1Nyfpw3nMnYvvS1KKJgUGaDM8= 1410 | 1411 | which-boxed-primitive@^1.0.2: 1412 | version "1.0.2" 1413 | resolved "https://registry.npmjs.org/which-boxed-primitive/-/which-boxed-primitive-1.0.2.tgz#13757bc89b209b049fe5d86430e21cf40a89a8e6" 1414 | integrity sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg== 1415 | dependencies: 1416 | is-bigint "^1.0.1" 1417 | is-boolean-object "^1.1.0" 1418 | is-number-object "^1.0.4" 1419 | is-string "^1.0.5" 1420 | is-symbol "^1.0.3" 1421 | 1422 | wide-align@^1.1.0: 1423 | version "1.1.3" 1424 | resolved "https://registry.npmjs.org/wide-align/-/wide-align-1.1.3.tgz#ae074e6bdc0c14a431e804e624549c633b000457" 1425 | integrity sha512-QGkOQc8XL6Bt5PwnsExKBPuMKBxnGxWWW3fU55Xt4feHozMUhdUMaBCk290qpm/wG5u/RSKzwdAC4i51YigihA== 1426 | dependencies: 1427 | string-width "^1.0.2 || 2" 1428 | 1429 | wrappy@1: 1430 | version "1.0.2" 1431 | resolved "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f" 1432 | integrity sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8= 1433 | 1434 | xhr@^2.0.1: 1435 | version "2.6.0" 1436 | resolved "https://registry.npmjs.org/xhr/-/xhr-2.6.0.tgz#b69d4395e792b4173d6b7df077f0fc5e4e2b249d" 1437 | integrity sha512-/eCGLb5rxjx5e3mF1A7s+pLlR6CGyqWN91fv1JgER5mVWg1MZmlhBvy9kjcsOdRk8RrIujotWyJamfyrp+WIcA== 1438 | dependencies: 1439 | global "~4.4.0" 1440 | is-function "^1.0.1" 1441 | parse-headers "^2.0.0" 1442 | xtend "^4.0.0" 1443 | 1444 | xml-parse-from-string@^1.0.0: 1445 | version "1.0.1" 1446 | resolved "https://registry.npmjs.org/xml-parse-from-string/-/xml-parse-from-string-1.0.1.tgz#a9029e929d3dbcded169f3c6e28238d95a5d5a28" 1447 | integrity sha1-qQKekp09vN7RafPG4oI42VpdWig= 1448 | 1449 | xml2js@^0.4.5: 1450 | version "0.4.23" 1451 | resolved "https://registry.npmjs.org/xml2js/-/xml2js-0.4.23.tgz#a0c69516752421eb2ac758ee4d4ccf58843eac66" 1452 | integrity sha512-ySPiMjM0+pLDftHgXY4By0uswI3SPKLDw/i3UXbnO8M/p28zqexCUoPmQFrYD+/1BzhGJSs2i1ERWKJAtiLrug== 1453 | dependencies: 1454 | sax ">=0.6.0" 1455 | xmlbuilder "~11.0.0" 1456 | 1457 | xmlbuilder@~11.0.0: 1458 | version "11.0.1" 1459 | resolved "https://registry.npmjs.org/xmlbuilder/-/xmlbuilder-11.0.1.tgz#be9bae1c8a046e76b31127726347d0ad7002beb3" 1460 | integrity sha512-fDlsI/kFEx7gLvbecc0/ohLG50fugQp8ryHzMTuW9vSa1GJ0XYWKnhsUx7oie3G98+r56aTQIUB4kht42R3JvA== 1461 | 1462 | xtend@^4.0.0: 1463 | version "4.0.2" 1464 | resolved "https://registry.npmjs.org/xtend/-/xtend-4.0.2.tgz#bb72779f5fa465186b1f438f674fa347fdb5db54" 1465 | integrity sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ== 1466 | 1467 | yallist@^4.0.0: 1468 | version "4.0.0" 1469 | resolved "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz#9bb92790d9c0effec63be73519e11a35019a3a72" 1470 | integrity sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A== 1471 | -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- 1 | # THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY. 2 | # yarn lockfile v1 3 | 4 | 5 | "@babel/runtime@^7.7.2": 6 | version "7.14.0" 7 | resolved "https://registry.npmjs.org/@babel/runtime/-/runtime-7.14.0.tgz#46794bc20b612c5f75e62dd071e24dfd95f1cbe6" 8 | integrity sha512-JELkvo/DlpNdJ7dlyw/eY7E0suy5i5GQH+Vlxaq1nsNJ+H7f4Vtv3jMeCEgRhZZQFXTjldYfQgv2qmM6M1v5wA== 9 | dependencies: 10 | regenerator-runtime "^0.13.4" 11 | 12 | "@jimp/bmp@^0.14.0": 13 | version "0.14.0" 14 | resolved "https://registry.npmjs.org/@jimp/bmp/-/bmp-0.14.0.tgz#6df246026554f276f7b354047c6fff9f5b2b5182" 15 | integrity sha512-5RkX6tSS7K3K3xNEb2ygPuvyL9whjanhoaB/WmmXlJS6ub4DjTqrapu8j4qnIWmO4YYtFeTbDTXV6v9P1yMA5A== 16 | dependencies: 17 | "@babel/runtime" "^7.7.2" 18 | "@jimp/utils" "^0.14.0" 19 | bmp-js "^0.1.0" 20 | 21 | "@jimp/core@^0.14.0": 22 | version "0.14.0" 23 | resolved "https://registry.npmjs.org/@jimp/core/-/core-0.14.0.tgz#870c9ca25b40be353ebda1d2abb48723d9010055" 24 | integrity sha512-S62FcKdtLtj3yWsGfJRdFXSutjvHg7aQNiFogMbwq19RP4XJWqS2nOphu7ScB8KrSlyy5nPF2hkWNhLRLyD82w== 25 | dependencies: 26 | "@babel/runtime" "^7.7.2" 27 | "@jimp/utils" "^0.14.0" 28 | any-base "^1.1.0" 29 | buffer "^5.2.0" 30 | exif-parser "^0.1.12" 31 | file-type "^9.0.0" 32 | load-bmfont "^1.3.1" 33 | mkdirp "^0.5.1" 34 | phin "^2.9.1" 35 | pixelmatch "^4.0.2" 36 | tinycolor2 "^1.4.1" 37 | 38 | "@jimp/custom@^0.14.0": 39 | version "0.14.0" 40 | resolved "https://registry.npmjs.org/@jimp/custom/-/custom-0.14.0.tgz#1dbbf0094df7403f4e03bc984ed92e7458842f74" 41 | integrity sha512-kQJMeH87+kWJdVw8F9GQhtsageqqxrvzg7yyOw3Tx/s7v5RToe8RnKyMM+kVtBJtNAG+Xyv/z01uYQ2jiZ3GwA== 42 | dependencies: 43 | "@babel/runtime" "^7.7.2" 44 | "@jimp/core" "^0.14.0" 45 | 46 | "@jimp/gif@^0.14.0": 47 | version "0.14.0" 48 | resolved "https://registry.npmjs.org/@jimp/gif/-/gif-0.14.0.tgz#db159f57c3cfd1566bbe8b124958791998614960" 49 | integrity sha512-DHjoOSfCaCz72+oGGEh8qH0zE6pUBaBxPxxmpYJjkNyDZP7RkbBkZJScIYeQ7BmJxmGN4/dZn+MxamoQlr+UYg== 50 | dependencies: 51 | "@babel/runtime" "^7.7.2" 52 | "@jimp/utils" "^0.14.0" 53 | gifwrap "^0.9.2" 54 | omggif "^1.0.9" 55 | 56 | "@jimp/jpeg@^0.14.0": 57 | version "0.14.0" 58 | resolved "https://registry.npmjs.org/@jimp/jpeg/-/jpeg-0.14.0.tgz#8a687a6a653bbbae38c522edef8f84bb418d9461" 59 | integrity sha512-561neGbr+87S/YVQYnZSTyjWTHBm9F6F1obYHiyU3wVmF+1CLbxY3FQzt4YolwyQHIBv36Bo0PY2KkkU8BEeeQ== 60 | dependencies: 61 | "@babel/runtime" "^7.7.2" 62 | "@jimp/utils" "^0.14.0" 63 | jpeg-js "^0.4.0" 64 | 65 | "@jimp/plugin-blit@^0.14.0": 66 | version "0.14.0" 67 | resolved "https://registry.npmjs.org/@jimp/plugin-blit/-/plugin-blit-0.14.0.tgz#5eb374be1201313b2113899fb842232d8fcfd345" 68 | integrity sha512-YoYOrnVHeX3InfgbJawAU601iTZMwEBZkyqcP1V/S33Qnz9uzH1Uj1NtC6fNgWzvX6I4XbCWwtr4RrGFb5CFrw== 69 | dependencies: 70 | "@babel/runtime" "^7.7.2" 71 | "@jimp/utils" "^0.14.0" 72 | 73 | "@jimp/plugin-blur@^0.14.0": 74 | version "0.14.0" 75 | resolved "https://registry.npmjs.org/@jimp/plugin-blur/-/plugin-blur-0.14.0.tgz#fe07e4932d5a2f5d8c9831e245561553224bfc60" 76 | integrity sha512-9WhZcofLrT0hgI7t0chf7iBQZib//0gJh9WcQMUt5+Q1Bk04dWs8vTgLNj61GBqZXgHSPzE4OpCrrLDBG8zlhQ== 77 | dependencies: 78 | "@babel/runtime" "^7.7.2" 79 | "@jimp/utils" "^0.14.0" 80 | 81 | "@jimp/plugin-circle@^0.14.0": 82 | version "0.14.0" 83 | resolved "https://registry.npmjs.org/@jimp/plugin-circle/-/plugin-circle-0.14.0.tgz#82c0e904a34e90fa672fb9c286bc892e92088ddf" 84 | integrity sha512-o5L+wf6QA44tvTum5HeLyLSc5eVfIUd5ZDVi5iRfO4o6GT/zux9AxuTSkKwnjhsG8bn1dDmywAOQGAx7BjrQVA== 85 | dependencies: 86 | "@babel/runtime" "^7.7.2" 87 | "@jimp/utils" "^0.14.0" 88 | 89 | "@jimp/plugin-color@^0.14.0": 90 | version "0.14.0" 91 | resolved "https://registry.npmjs.org/@jimp/plugin-color/-/plugin-color-0.14.0.tgz#772bd2d80a88bc66ea1331d010207870f169a74b" 92 | integrity sha512-JJz512SAILYV0M5LzBb9sbOm/XEj2fGElMiHAxb7aLI6jx+n0agxtHpfpV/AePTLm1vzzDxx6AJxXbKv355hBQ== 93 | dependencies: 94 | "@babel/runtime" "^7.7.2" 95 | "@jimp/utils" "^0.14.0" 96 | tinycolor2 "^1.4.1" 97 | 98 | "@jimp/plugin-contain@^0.14.0": 99 | version "0.14.0" 100 | resolved "https://registry.npmjs.org/@jimp/plugin-contain/-/plugin-contain-0.14.0.tgz#c68115420d182e696f81bbe76fb5e704909b2b6a" 101 | integrity sha512-RX2q233lGyaxiMY6kAgnm9ScmEkNSof0hdlaJAVDS1OgXphGAYAeSIAwzESZN4x3ORaWvkFefeVH9O9/698Evg== 102 | dependencies: 103 | "@babel/runtime" "^7.7.2" 104 | "@jimp/utils" "^0.14.0" 105 | 106 | "@jimp/plugin-cover@^0.14.0": 107 | version "0.14.0" 108 | resolved "https://registry.npmjs.org/@jimp/plugin-cover/-/plugin-cover-0.14.0.tgz#4755322589c5885e44e14e31b86b542e907297ce" 109 | integrity sha512-0P/5XhzWES4uMdvbi3beUgfvhn4YuQ/ny8ijs5kkYIw6K8mHcl820HahuGpwWMx56DJLHRl1hFhJwo9CeTRJtQ== 110 | dependencies: 111 | "@babel/runtime" "^7.7.2" 112 | "@jimp/utils" "^0.14.0" 113 | 114 | "@jimp/plugin-crop@^0.14.0": 115 | version "0.14.0" 116 | resolved "https://registry.npmjs.org/@jimp/plugin-crop/-/plugin-crop-0.14.0.tgz#4cbd856ca84ffc37230fad2534906f2f75aa3057" 117 | integrity sha512-Ojtih+XIe6/XSGtpWtbAXBozhCdsDMmy+THUJAGu2x7ZgKrMS0JotN+vN2YC3nwDpYkM+yOJImQeptSfZb2Sug== 118 | dependencies: 119 | "@babel/runtime" "^7.7.2" 120 | "@jimp/utils" "^0.14.0" 121 | 122 | "@jimp/plugin-displace@^0.14.0": 123 | version "0.14.0" 124 | resolved "https://registry.npmjs.org/@jimp/plugin-displace/-/plugin-displace-0.14.0.tgz#b0e6a57d00cb1f893f541413fe9d737d23c3b70c" 125 | integrity sha512-c75uQUzMgrHa8vegkgUvgRL/PRvD7paFbFJvzW0Ugs8Wl+CDMGIPYQ3j7IVaQkIS+cAxv+NJ3TIRBQyBrfVEOg== 126 | dependencies: 127 | "@babel/runtime" "^7.7.2" 128 | "@jimp/utils" "^0.14.0" 129 | 130 | "@jimp/plugin-dither@^0.14.0": 131 | version "0.14.0" 132 | resolved "https://registry.npmjs.org/@jimp/plugin-dither/-/plugin-dither-0.14.0.tgz#9185ec4c38e02edc9e5831f5d709f6ba891e1b93" 133 | integrity sha512-g8SJqFLyYexXQQsoh4dc1VP87TwyOgeTElBcxSXX2LaaMZezypmxQfLTzOFzZoK8m39NuaoH21Ou1Ftsq7LzVQ== 134 | dependencies: 135 | "@babel/runtime" "^7.7.2" 136 | "@jimp/utils" "^0.14.0" 137 | 138 | "@jimp/plugin-fisheye@^0.14.0": 139 | version "0.14.0" 140 | resolved "https://registry.npmjs.org/@jimp/plugin-fisheye/-/plugin-fisheye-0.14.0.tgz#9f26346cf2fbc660cc2008cd7fd30a83b5029e78" 141 | integrity sha512-BFfUZ64EikCaABhCA6mR3bsltWhPpS321jpeIQfJyrILdpFsZ/OccNwCgpW1XlbldDHIoNtXTDGn3E+vCE7vDg== 142 | dependencies: 143 | "@babel/runtime" "^7.7.2" 144 | "@jimp/utils" "^0.14.0" 145 | 146 | "@jimp/plugin-flip@^0.14.0": 147 | version "0.14.0" 148 | resolved "https://registry.npmjs.org/@jimp/plugin-flip/-/plugin-flip-0.14.0.tgz#7966d6aa3b5fe1aa4d2d561ff12b8ef5ccb9b071" 149 | integrity sha512-WtL1hj6ryqHhApih+9qZQYA6Ye8a4HAmdTzLbYdTMrrrSUgIzFdiZsD0WeDHpgS/+QMsWwF+NFmTZmxNWqKfXw== 150 | dependencies: 151 | "@babel/runtime" "^7.7.2" 152 | "@jimp/utils" "^0.14.0" 153 | 154 | "@jimp/plugin-gaussian@^0.14.0": 155 | version "0.14.0" 156 | resolved "https://registry.npmjs.org/@jimp/plugin-gaussian/-/plugin-gaussian-0.14.0.tgz#452bc1971a4467ad9b984aa67f4c200bf941bb65" 157 | integrity sha512-uaLwQ0XAQoydDlF9tlfc7iD9drYPriFe+jgYnWm8fbw5cN+eOIcnneEX9XCOOzwgLPkNCxGox6Kxjn8zY6GxtQ== 158 | dependencies: 159 | "@babel/runtime" "^7.7.2" 160 | "@jimp/utils" "^0.14.0" 161 | 162 | "@jimp/plugin-invert@^0.14.0": 163 | version "0.14.0" 164 | resolved "https://registry.npmjs.org/@jimp/plugin-invert/-/plugin-invert-0.14.0.tgz#cd31a555860e9f821394936d15af161c09c42921" 165 | integrity sha512-UaQW9X9vx8orQXYSjT5VcITkJPwDaHwrBbxxPoDG+F/Zgv4oV9fP+udDD6qmkgI9taU+44Fy+zm/J/gGcMWrdg== 166 | dependencies: 167 | "@babel/runtime" "^7.7.2" 168 | "@jimp/utils" "^0.14.0" 169 | 170 | "@jimp/plugin-mask@^0.14.0": 171 | version "0.14.0" 172 | resolved "https://registry.npmjs.org/@jimp/plugin-mask/-/plugin-mask-0.14.0.tgz#52619643ac6222f85e6b27dee33c771ca3a6a4c9" 173 | integrity sha512-tdiGM69OBaKtSPfYSQeflzFhEpoRZ+BvKfDEoivyTjauynbjpRiwB1CaiS8En1INTDwzLXTT0Be9SpI3LkJoEA== 174 | dependencies: 175 | "@babel/runtime" "^7.7.2" 176 | "@jimp/utils" "^0.14.0" 177 | 178 | "@jimp/plugin-normalize@^0.14.0": 179 | version "0.14.0" 180 | resolved "https://registry.npmjs.org/@jimp/plugin-normalize/-/plugin-normalize-0.14.0.tgz#bf39e356b6d473f582ce95633ad49c9cdb82492b" 181 | integrity sha512-AfY8sqlsbbdVwFGcyIPy5JH/7fnBzlmuweb+Qtx2vn29okq6+HelLjw2b+VT2btgGUmWWHGEHd86oRGSoWGyEQ== 182 | dependencies: 183 | "@babel/runtime" "^7.7.2" 184 | "@jimp/utils" "^0.14.0" 185 | 186 | "@jimp/plugin-print@^0.14.0": 187 | version "0.14.0" 188 | resolved "https://registry.npmjs.org/@jimp/plugin-print/-/plugin-print-0.14.0.tgz#1c43c2a92a7adc05b464863882cb89ce486d63e6" 189 | integrity sha512-MwP3sH+VS5AhhSTXk7pui+tEJFsxnTKFY3TraFJb8WFbA2Vo2qsRCZseEGwpTLhENB7p/JSsLvWoSSbpmxhFAQ== 190 | dependencies: 191 | "@babel/runtime" "^7.7.2" 192 | "@jimp/utils" "^0.14.0" 193 | load-bmfont "^1.4.0" 194 | 195 | "@jimp/plugin-resize@^0.14.0": 196 | version "0.14.0" 197 | resolved "https://registry.npmjs.org/@jimp/plugin-resize/-/plugin-resize-0.14.0.tgz#ef7fc6c2e45f8bcab62456baf8fd3bc415b02b64" 198 | integrity sha512-qFeMOyXE/Bk6QXN0GQo89+CB2dQcXqoxUcDb2Ah8wdYlKqpi53skABkgVy5pW3EpiprDnzNDboMltdvDslNgLQ== 199 | dependencies: 200 | "@babel/runtime" "^7.7.2" 201 | "@jimp/utils" "^0.14.0" 202 | 203 | "@jimp/plugin-rotate@^0.14.0": 204 | version "0.14.0" 205 | resolved "https://registry.npmjs.org/@jimp/plugin-rotate/-/plugin-rotate-0.14.0.tgz#3632bc159bf1c3b9ec9f459d9c05d02a11781ee7" 206 | integrity sha512-aGaicts44bvpTcq5Dtf93/8TZFu5pMo/61lWWnYmwJJU1RqtQlxbCLEQpMyRhKDNSfPbuP8nyGmaqXlM/82J0Q== 207 | dependencies: 208 | "@babel/runtime" "^7.7.2" 209 | "@jimp/utils" "^0.14.0" 210 | 211 | "@jimp/plugin-scale@^0.14.0": 212 | version "0.14.0" 213 | resolved "https://registry.npmjs.org/@jimp/plugin-scale/-/plugin-scale-0.14.0.tgz#d30f0cd1365b8e68f43fa423300ae7f124e9bf10" 214 | integrity sha512-ZcJk0hxY5ZKZDDwflqQNHEGRblgaR+piePZm7dPwPUOSeYEH31P0AwZ1ziceR74zd8N80M0TMft+e3Td6KGBHw== 215 | dependencies: 216 | "@babel/runtime" "^7.7.2" 217 | "@jimp/utils" "^0.14.0" 218 | 219 | "@jimp/plugin-shadow@^0.14.0": 220 | version "0.14.0" 221 | resolved "https://registry.npmjs.org/@jimp/plugin-shadow/-/plugin-shadow-0.14.0.tgz#471fdb9f109ff2d9e20d533d45e1e18e0b48c749" 222 | integrity sha512-p2igcEr/iGrLiTu0YePNHyby0WYAXM14c5cECZIVnq/UTOOIQ7xIcWZJ1lRbAEPxVVXPN1UibhZAbr3HAb5BjQ== 223 | dependencies: 224 | "@babel/runtime" "^7.7.2" 225 | "@jimp/utils" "^0.14.0" 226 | 227 | "@jimp/plugin-threshold@^0.14.0": 228 | version "0.14.0" 229 | resolved "https://registry.npmjs.org/@jimp/plugin-threshold/-/plugin-threshold-0.14.0.tgz#ebd72721c7d1d518c5bb6e494e55d97ac3351d3b" 230 | integrity sha512-N4BlDgm/FoOMV/DQM2rSpzsgqAzkP0DXkWZoqaQrlRxQBo4zizQLzhEL00T/YCCMKnddzgEhnByaocgaaa0fKw== 231 | dependencies: 232 | "@babel/runtime" "^7.7.2" 233 | "@jimp/utils" "^0.14.0" 234 | 235 | "@jimp/plugins@^0.14.0": 236 | version "0.14.0" 237 | resolved "https://registry.npmjs.org/@jimp/plugins/-/plugins-0.14.0.tgz#41dba85f15ab8dadb4162100eb54e5f27b93ee2c" 238 | integrity sha512-vDO3XT/YQlFlFLq5TqNjQkISqjBHT8VMhpWhAfJVwuXIpilxz5Glu4IDLK6jp4IjPR6Yg2WO8TmRY/HI8vLrOw== 239 | dependencies: 240 | "@babel/runtime" "^7.7.2" 241 | "@jimp/plugin-blit" "^0.14.0" 242 | "@jimp/plugin-blur" "^0.14.0" 243 | "@jimp/plugin-circle" "^0.14.0" 244 | "@jimp/plugin-color" "^0.14.0" 245 | "@jimp/plugin-contain" "^0.14.0" 246 | "@jimp/plugin-cover" "^0.14.0" 247 | "@jimp/plugin-crop" "^0.14.0" 248 | "@jimp/plugin-displace" "^0.14.0" 249 | "@jimp/plugin-dither" "^0.14.0" 250 | "@jimp/plugin-fisheye" "^0.14.0" 251 | "@jimp/plugin-flip" "^0.14.0" 252 | "@jimp/plugin-gaussian" "^0.14.0" 253 | "@jimp/plugin-invert" "^0.14.0" 254 | "@jimp/plugin-mask" "^0.14.0" 255 | "@jimp/plugin-normalize" "^0.14.0" 256 | "@jimp/plugin-print" "^0.14.0" 257 | "@jimp/plugin-resize" "^0.14.0" 258 | "@jimp/plugin-rotate" "^0.14.0" 259 | "@jimp/plugin-scale" "^0.14.0" 260 | "@jimp/plugin-shadow" "^0.14.0" 261 | "@jimp/plugin-threshold" "^0.14.0" 262 | timm "^1.6.1" 263 | 264 | "@jimp/png@^0.14.0": 265 | version "0.14.0" 266 | resolved "https://registry.npmjs.org/@jimp/png/-/png-0.14.0.tgz#0f2dddb5125c0795ca7e67c771204c5437fcda4b" 267 | integrity sha512-0RV/mEIDOrPCcNfXSPmPBqqSZYwGADNRVUTyMt47RuZh7sugbYdv/uvKmQSiqRdR0L1sfbCBMWUEa5G/8MSbdA== 268 | dependencies: 269 | "@babel/runtime" "^7.7.2" 270 | "@jimp/utils" "^0.14.0" 271 | pngjs "^3.3.3" 272 | 273 | "@jimp/tiff@^0.14.0": 274 | version "0.14.0" 275 | resolved "https://registry.npmjs.org/@jimp/tiff/-/tiff-0.14.0.tgz#a5b25bbe7c43fc3b07bad4e2ab90e0e164c1967f" 276 | integrity sha512-zBYDTlutc7j88G/7FBCn3kmQwWr0rmm1e0FKB4C3uJ5oYfT8645lftUsvosKVUEfkdmOaMAnhrf4ekaHcb5gQw== 277 | dependencies: 278 | "@babel/runtime" "^7.7.2" 279 | utif "^2.0.1" 280 | 281 | "@jimp/types@^0.14.0": 282 | version "0.14.0" 283 | resolved "https://registry.npmjs.org/@jimp/types/-/types-0.14.0.tgz#ef681ff702883c5f105b5e4e30d49abf39ee9e34" 284 | integrity sha512-hx3cXAW1KZm+b+XCrY3LXtdWy2U+hNtq0rPyJ7NuXCjU7lZR3vIkpz1DLJ3yDdS70hTi5QDXY3Cd9kd6DtloHQ== 285 | dependencies: 286 | "@babel/runtime" "^7.7.2" 287 | "@jimp/bmp" "^0.14.0" 288 | "@jimp/gif" "^0.14.0" 289 | "@jimp/jpeg" "^0.14.0" 290 | "@jimp/png" "^0.14.0" 291 | "@jimp/tiff" "^0.14.0" 292 | timm "^1.6.1" 293 | 294 | "@jimp/utils@^0.14.0": 295 | version "0.14.0" 296 | resolved "https://registry.npmjs.org/@jimp/utils/-/utils-0.14.0.tgz#296254e63118554c62c31c19ac6b8c4bfe6490e5" 297 | integrity sha512-MY5KFYUru0y74IsgM/9asDwb3ERxWxXEu3CRCZEvE7DtT86y1bR1XgtlSliMrptjz4qbivNGMQSvUBpEFJDp1A== 298 | dependencies: 299 | "@babel/runtime" "^7.7.2" 300 | regenerator-runtime "^0.13.3" 301 | 302 | "@trysound/sax@0.1.1": 303 | version "0.1.1" 304 | resolved "https://registry.npmjs.org/@trysound/sax/-/sax-0.1.1.tgz#3348564048e7a2d7398c935d466c0414ebb6a669" 305 | integrity sha512-Z6DoceYb/1xSg5+e+ZlPZ9v0N16ZvZ+wYMraFue4HYrE4ttONKtsvruIRf6t9TBR0YvSOfi1hUU0fJfBLCDYow== 306 | 307 | ajv@^6.12.3: 308 | version "6.12.6" 309 | resolved "https://registry.yarnpkg.com/ajv/-/ajv-6.12.6.tgz#baf5a62e802b07d977034586f8c3baf5adf26df4" 310 | integrity sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g== 311 | dependencies: 312 | fast-deep-equal "^3.1.1" 313 | fast-json-stable-stringify "^2.0.0" 314 | json-schema-traverse "^0.4.1" 315 | uri-js "^4.2.2" 316 | 317 | ansi-regex@^2.0.0: 318 | version "2.1.1" 319 | resolved "https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.1.1.tgz#c3b33ab5ee360d86e0e628f0468ae7ef27d654df" 320 | integrity sha1-w7M6te42DYbg5ijwRorn7yfWVN8= 321 | 322 | ansi-regex@^3.0.0: 323 | version "3.0.0" 324 | resolved "https://registry.npmjs.org/ansi-regex/-/ansi-regex-3.0.0.tgz#ed0317c322064f79466c02966bddb605ab37d998" 325 | integrity sha1-7QMXwyIGT3lGbAKWa922Bas32Zg= 326 | 327 | ansi-styles@^4.1.0: 328 | version "4.3.0" 329 | resolved "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz#edd803628ae71c04c85ae7a0906edad34b648937" 330 | integrity sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg== 331 | dependencies: 332 | color-convert "^2.0.1" 333 | 334 | any-base@^1.1.0: 335 | version "1.1.0" 336 | resolved "https://registry.npmjs.org/any-base/-/any-base-1.1.0.tgz#ae101a62bc08a597b4c9ab5b7089d456630549fe" 337 | integrity sha512-uMgjozySS8adZZYePpaWs8cxB9/kdzmpX6SgJZ+wbz1K5eYk5QMYDVJaZKhxyIHUdnnJkfR7SVgStgH7LkGUyg== 338 | 339 | aproba@^1.0.3: 340 | version "1.2.0" 341 | resolved "https://registry.npmjs.org/aproba/-/aproba-1.2.0.tgz#6802e6264efd18c790a1b0d517f0f2627bf2c94a" 342 | integrity sha512-Y9J6ZjXtoYh8RnXVCMOU/ttDmk1aBjunq9vO0ta5x85WDQiQfUF9sIPBITdbiiIVcBo03Hi3jMxigBtsddlXRw== 343 | 344 | are-we-there-yet@~1.1.2: 345 | version "1.1.5" 346 | resolved "https://registry.npmjs.org/are-we-there-yet/-/are-we-there-yet-1.1.5.tgz#4b35c2944f062a8bfcda66410760350fe9ddfc21" 347 | integrity sha512-5hYdAkZlcG8tOLujVDTgCT+uPX0VnpAH28gWsLfzpXYm7wP6mp5Q/gYyR7YQ0cKVJcXJnl3j2kpBan13PtQf6w== 348 | dependencies: 349 | delegates "^1.0.0" 350 | readable-stream "^2.0.6" 351 | 352 | asn1@~0.2.3: 353 | version "0.2.4" 354 | resolved "https://registry.yarnpkg.com/asn1/-/asn1-0.2.4.tgz#8d2475dfab553bb33e77b54e59e880bb8ce23136" 355 | integrity sha512-jxwzQpLQjSmWXgwaCZE9Nz+glAG01yF1QnWgbhGwHI5A6FRIEY6IVqtHhIepHqI7/kyEyQEagBC5mBEFlIYvdg== 356 | dependencies: 357 | safer-buffer "~2.1.0" 358 | 359 | assert-plus@1.0.0, assert-plus@^1.0.0: 360 | version "1.0.0" 361 | resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-1.0.0.tgz#f12e0f3c5d77b0b1cdd9146942e4e96c1e4dd525" 362 | integrity sha1-8S4PPF13sLHN2RRpQuTpbB5N1SU= 363 | 364 | asynckit@^0.4.0: 365 | version "0.4.0" 366 | resolved "https://registry.yarnpkg.com/asynckit/-/asynckit-0.4.0.tgz#c79ed97f7f34cb8f2ba1bc9790bcc366474b4b79" 367 | integrity sha1-x57Zf380y48robyXkLzDZkdLS3k= 368 | 369 | aws-sign2@~0.7.0: 370 | version "0.7.0" 371 | resolved "https://registry.yarnpkg.com/aws-sign2/-/aws-sign2-0.7.0.tgz#b46e890934a9591f2d2f6f86d7e6a9f1b3fe76a8" 372 | integrity sha1-tG6JCTSpWR8tL2+G1+ap8bP+dqg= 373 | 374 | aws4@^1.8.0: 375 | version "1.11.0" 376 | resolved "https://registry.yarnpkg.com/aws4/-/aws4-1.11.0.tgz#d61f46d83b2519250e2784daf5b09479a8b41c59" 377 | integrity sha512-xh1Rl34h6Fi1DC2WWKfxUTVqRsNnr6LsKz2+hfwDxQJWmrx8+c7ylaqBMcHfl1U1r2dsifOvKX3LQuLNZ+XSvA== 378 | 379 | base64-js@^1.3.1: 380 | version "1.5.1" 381 | resolved "https://registry.npmjs.org/base64-js/-/base64-js-1.5.1.tgz#1b1b440160a5bf7ad40b650f095963481903930a" 382 | integrity sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA== 383 | 384 | bcrypt-pbkdf@^1.0.0: 385 | version "1.0.2" 386 | resolved "https://registry.yarnpkg.com/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.2.tgz#a4301d389b6a43f9b67ff3ca11a3f6637e360e9e" 387 | integrity sha1-pDAdOJtqQ/m2f/PKEaP2Y342Dp4= 388 | dependencies: 389 | tweetnacl "^0.14.3" 390 | 391 | bl@^4.0.3: 392 | version "4.1.0" 393 | resolved "https://registry.npmjs.org/bl/-/bl-4.1.0.tgz#451535264182bec2fbbc83a62ab98cf11d9f7b3a" 394 | integrity sha512-1W07cM9gS6DcLperZfFSj+bWLtaPGSOHWhPiGzXmvVJbRLdG82sH/Kn8EtW1VqWVA54AKf2h5k5BbnIbwF3h6w== 395 | dependencies: 396 | buffer "^5.5.0" 397 | inherits "^2.0.4" 398 | readable-stream "^3.4.0" 399 | 400 | bmp-js@^0.1.0: 401 | version "0.1.0" 402 | resolved "https://registry.npmjs.org/bmp-js/-/bmp-js-0.1.0.tgz#e05a63f796a6c1ff25f4771ec7adadc148c07233" 403 | integrity sha1-4Fpj95amwf8l9Hcex62twUjAcjM= 404 | 405 | boolbase@^1.0.0, boolbase@~1.0.0: 406 | version "1.0.0" 407 | resolved "https://registry.npmjs.org/boolbase/-/boolbase-1.0.0.tgz#68dff5fbe60c51eb37725ea9e3ed310dcc1e776e" 408 | integrity sha1-aN/1++YMUes3cl6p4+0xDcwed24= 409 | 410 | buffer-equal@0.0.1: 411 | version "0.0.1" 412 | resolved "https://registry.npmjs.org/buffer-equal/-/buffer-equal-0.0.1.tgz#91bc74b11ea405bc916bc6aa908faafa5b4aac4b" 413 | integrity sha1-kbx0sR6kBbyRa8aqkI+q+ltKrEs= 414 | 415 | buffer@^5.2.0, buffer@^5.5.0: 416 | version "5.7.1" 417 | resolved "https://registry.npmjs.org/buffer/-/buffer-5.7.1.tgz#ba62e7c13133053582197160851a8f648e99eed0" 418 | integrity sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ== 419 | dependencies: 420 | base64-js "^1.3.1" 421 | ieee754 "^1.1.13" 422 | 423 | call-bind@^1.0.0, call-bind@^1.0.2: 424 | version "1.0.2" 425 | resolved "https://registry.npmjs.org/call-bind/-/call-bind-1.0.2.tgz#b1d4e89e688119c3c9a903ad30abb2f6a919be3c" 426 | integrity sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA== 427 | dependencies: 428 | function-bind "^1.1.1" 429 | get-intrinsic "^1.0.2" 430 | 431 | caseless@~0.12.0: 432 | version "0.12.0" 433 | resolved "https://registry.yarnpkg.com/caseless/-/caseless-0.12.0.tgz#1b681c21ff84033c826543090689420d187151dc" 434 | integrity sha1-G2gcIf+EAzyCZUMJBolCDRhxUdw= 435 | 436 | chalk@^4.1.0: 437 | version "4.1.1" 438 | resolved "https://registry.npmjs.org/chalk/-/chalk-4.1.1.tgz#c80b3fab28bf6371e6863325eee67e618b77e6ad" 439 | integrity sha512-diHzdDKxcU+bAsUboHLPEDQiw0qEe0qd7SYUn3HgcFlWgbDcfLGswOHYeGrHKzG9z6UYf01d9VFMfZxPM1xZSg== 440 | dependencies: 441 | ansi-styles "^4.1.0" 442 | supports-color "^7.1.0" 443 | 444 | cheerio@^0.22.0: 445 | version "0.22.0" 446 | resolved "https://registry.yarnpkg.com/cheerio/-/cheerio-0.22.0.tgz#a9baa860a3f9b595a6b81b1a86873121ed3a269e" 447 | integrity sha1-qbqoYKP5tZWmuBsahocxIe06Jp4= 448 | dependencies: 449 | css-select "~1.2.0" 450 | dom-serializer "~0.1.0" 451 | entities "~1.1.1" 452 | htmlparser2 "^3.9.1" 453 | lodash.assignin "^4.0.9" 454 | lodash.bind "^4.1.4" 455 | lodash.defaults "^4.0.1" 456 | lodash.filter "^4.4.0" 457 | lodash.flatten "^4.2.0" 458 | lodash.foreach "^4.3.0" 459 | lodash.map "^4.4.0" 460 | lodash.merge "^4.4.0" 461 | lodash.pick "^4.2.1" 462 | lodash.reduce "^4.4.0" 463 | lodash.reject "^4.4.0" 464 | lodash.some "^4.4.0" 465 | 466 | chownr@^1.1.1: 467 | version "1.1.4" 468 | resolved "https://registry.npmjs.org/chownr/-/chownr-1.1.4.tgz#6fc9d7b42d32a583596337666e7d08084da2cc6b" 469 | integrity sha512-jJ0bqzaylmJtVnNgzTeSOs8DPavpbYgEr/b0YL8/2GO3xJEhInFmhKMUnEJQjZumK7KXGFhUy89PrsJWlakBVg== 470 | 471 | chroma-js@^1.1.1: 472 | version "1.4.1" 473 | resolved "https://registry.yarnpkg.com/chroma-js/-/chroma-js-1.4.1.tgz#eb2d9c4d1ff24616be84b35119f4d26f8205f134" 474 | integrity sha512-jTwQiT859RTFN/vIf7s+Vl/Z2LcMrvMv3WUFmd/4u76AdlFC0NTNgqEEFPcRiHmAswPsMiQEDZLM8vX8qXpZNQ== 475 | 476 | chroma-js@^2.1.0: 477 | version "2.1.2" 478 | resolved "https://registry.yarnpkg.com/chroma-js/-/chroma-js-2.1.2.tgz#1075cb9ae25bcb2017c109394168b5cf3aa500ec" 479 | integrity sha512-ri/ouYDWuxfus3UcaMxC1Tfp3IE9K5iQzxc2hSxbBRVNQFut1UuGAsZmiAf2mOUubzGJwgMSv9lHg+XqLaz1QQ== 480 | dependencies: 481 | cross-env "^6.0.3" 482 | 483 | code-point-at@^1.0.0: 484 | version "1.1.0" 485 | resolved "https://registry.npmjs.org/code-point-at/-/code-point-at-1.1.0.tgz#0d070b4d043a5bea33a2f1a40e2edb3d9a4ccf77" 486 | integrity sha1-DQcLTQQ6W+ozovGkDi7bPZpMz3c= 487 | 488 | color-convert@^1.9.1: 489 | version "1.9.3" 490 | resolved "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz#bb71850690e1f136567de629d2d5471deda4c1e8" 491 | integrity sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg== 492 | dependencies: 493 | color-name "1.1.3" 494 | 495 | color-convert@^2.0.1: 496 | version "2.0.1" 497 | resolved "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz#72d3a68d598c9bdb3af2ad1e84f21d896abd4de3" 498 | integrity sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ== 499 | dependencies: 500 | color-name "~1.1.4" 501 | 502 | color-name@1.1.3: 503 | version "1.1.3" 504 | resolved "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz#a7d0558bd89c42f795dd42328f740831ca53bc25" 505 | integrity sha1-p9BVi9icQveV3UIyj3QIMcpTvCU= 506 | 507 | color-name@^1.0.0, color-name@~1.1.4: 508 | version "1.1.4" 509 | resolved "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz#c2a09a87acbde69543de6f63fa3995c826c536a2" 510 | integrity sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA== 511 | 512 | color-string@^1.5.4: 513 | version "1.5.5" 514 | resolved "https://registry.npmjs.org/color-string/-/color-string-1.5.5.tgz#65474a8f0e7439625f3d27a6a19d89fc45223014" 515 | integrity sha512-jgIoum0OfQfq9Whcfc2z/VhCNcmQjWbey6qBX0vqt7YICflUmBCh9E9CiQD5GSJ+Uehixm3NUwHVhqUAWRivZg== 516 | dependencies: 517 | color-name "^1.0.0" 518 | simple-swizzle "^0.2.2" 519 | 520 | color@^3.1.3: 521 | version "3.1.3" 522 | resolved "https://registry.npmjs.org/color/-/color-3.1.3.tgz#ca67fb4e7b97d611dcde39eceed422067d91596e" 523 | integrity sha512-xgXAcTHa2HeFCGLE9Xs/R82hujGtu9Jd9x4NW3T34+OMs7VoPsjwzRczKHvTAHeJwWFwX5j15+MgAppE8ztObQ== 524 | dependencies: 525 | color-convert "^1.9.1" 526 | color-string "^1.5.4" 527 | 528 | combined-stream@^1.0.6, combined-stream@~1.0.6: 529 | version "1.0.8" 530 | resolved "https://registry.yarnpkg.com/combined-stream/-/combined-stream-1.0.8.tgz#c3d45a8b34fd730631a110a8a2520682b31d5a7f" 531 | integrity sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg== 532 | dependencies: 533 | delayed-stream "~1.0.0" 534 | 535 | commander@^7.1.0: 536 | version "7.2.0" 537 | resolved "https://registry.npmjs.org/commander/-/commander-7.2.0.tgz#a36cb57d0b501ce108e4d20559a150a391d97ab7" 538 | integrity sha512-QrWXB+ZQSVPmIWIhtEO9H+gwHaMGYiF5ChvoJ+K9ZGHG/sVsa6yiesAD1GC/x46sET00Xlwo1u49RVVVzvcSkw== 539 | 540 | console-control-strings@^1.0.0, console-control-strings@~1.1.0: 541 | version "1.1.0" 542 | resolved "https://registry.npmjs.org/console-control-strings/-/console-control-strings-1.1.0.tgz#3d7cf4464db6446ea644bf4b39507f9851008e8e" 543 | integrity sha1-PXz0Rk22RG6mRL9LOVB/mFEAjo4= 544 | 545 | core-util-is@1.0.2, core-util-is@~1.0.0: 546 | version "1.0.2" 547 | resolved "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.2.tgz#b5fd54220aa2bc5ab57aab7140c940754503c1a7" 548 | integrity sha1-tf1UIgqivFq1eqtxQMlAdUUDwac= 549 | 550 | cross-env@^6.0.3: 551 | version "6.0.3" 552 | resolved "https://registry.yarnpkg.com/cross-env/-/cross-env-6.0.3.tgz#4256b71e49b3a40637a0ce70768a6ef5c72ae941" 553 | integrity sha512-+KqxF6LCvfhWvADcDPqo64yVIB31gv/jQulX2NGzKS/g3GEVz6/pt4wjHFtFWsHMddebWD/sDthJemzM4MaAag== 554 | dependencies: 555 | cross-spawn "^7.0.0" 556 | 557 | cross-spawn@^7.0.0, cross-spawn@^7.0.3: 558 | version "7.0.3" 559 | resolved "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz#f73a85b9d5d41d045551c177e2882d4ac85728a6" 560 | integrity sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w== 561 | dependencies: 562 | path-key "^3.1.0" 563 | shebang-command "^2.0.0" 564 | which "^2.0.1" 565 | 566 | css-select@^3.1.2: 567 | version "3.1.2" 568 | resolved "https://registry.npmjs.org/css-select/-/css-select-3.1.2.tgz#d52cbdc6fee379fba97fb0d3925abbd18af2d9d8" 569 | integrity sha512-qmss1EihSuBNWNNhHjxzxSfJoFBM/lERB/Q4EnsJQQC62R2evJDW481091oAdOr9uh46/0n4nrg0It5cAnj1RA== 570 | dependencies: 571 | boolbase "^1.0.0" 572 | css-what "^4.0.0" 573 | domhandler "^4.0.0" 574 | domutils "^2.4.3" 575 | nth-check "^2.0.0" 576 | 577 | css-select@~1.2.0: 578 | version "1.2.0" 579 | resolved "https://registry.yarnpkg.com/css-select/-/css-select-1.2.0.tgz#2b3a110539c5355f1cd8d314623e870b121ec858" 580 | integrity sha1-KzoRBTnFNV8c2NMUYj6HCxIeyFg= 581 | dependencies: 582 | boolbase "~1.0.0" 583 | css-what "2.1" 584 | domutils "1.5.1" 585 | nth-check "~1.0.1" 586 | 587 | css-tree@^1.1.2: 588 | version "1.1.3" 589 | resolved "https://registry.npmjs.org/css-tree/-/css-tree-1.1.3.tgz#eb4870fb6fd7707327ec95c2ff2ab09b5e8db91d" 590 | integrity sha512-tRpdppF7TRazZrjJ6v3stzv93qxRcSsFmW6cX0Zm2NVKpxE1WV1HblnghVv9TreireHkqI/VDEsfolRF1p6y7Q== 591 | dependencies: 592 | mdn-data "2.0.14" 593 | source-map "^0.6.1" 594 | 595 | css-what@2.1: 596 | version "2.1.3" 597 | resolved "https://registry.yarnpkg.com/css-what/-/css-what-2.1.3.tgz#a6d7604573365fe74686c3f311c56513d88285f2" 598 | integrity sha512-a+EPoD+uZiNfh+5fxw2nO9QwFa6nJe2Or35fGY6Ipw1R3R4AGz1d1TEZrCegvw2YTmZ0jXirGYlzxxpYSHwpEg== 599 | 600 | css-what@^4.0.0: 601 | version "4.0.0" 602 | resolved "https://registry.npmjs.org/css-what/-/css-what-4.0.0.tgz#35e73761cab2eeb3d3661126b23d7aa0e8432233" 603 | integrity sha512-teijzG7kwYfNVsUh2H/YN62xW3KK9YhXEgSlbxMlcyjPNvdKJqFx5lrwlJgoFP1ZHlB89iGDlo/JyshKeRhv5A== 604 | 605 | csso@^4.2.0: 606 | version "4.2.0" 607 | resolved "https://registry.npmjs.org/csso/-/csso-4.2.0.tgz#ea3a561346e8dc9f546d6febedd50187cf389529" 608 | integrity sha512-wvlcdIbf6pwKEk7vHj8/Bkc0B4ylXZruLvOgs9doS5eOsOpuodOV2zJChSpkp+pRpYQLQMeF04nr3Z68Sta9jA== 609 | dependencies: 610 | css-tree "^1.1.2" 611 | 612 | cwise-compiler@^1.1.2: 613 | version "1.1.3" 614 | resolved "https://registry.yarnpkg.com/cwise-compiler/-/cwise-compiler-1.1.3.tgz#f4d667410e850d3a313a7d2db7b1e505bb034cc5" 615 | integrity sha1-9NZnQQ6FDToxOn0tt7HlBbsDTMU= 616 | dependencies: 617 | uniq "^1.0.0" 618 | 619 | dashdash@^1.12.0: 620 | version "1.14.1" 621 | resolved "https://registry.yarnpkg.com/dashdash/-/dashdash-1.14.1.tgz#853cfa0f7cbe2fed5de20326b8dd581035f6e2f0" 622 | integrity sha1-hTz6D3y+L+1d4gMmuN1YEDX24vA= 623 | dependencies: 624 | assert-plus "^1.0.0" 625 | 626 | data-uri-to-buffer@0.0.3: 627 | version "0.0.3" 628 | resolved "https://registry.yarnpkg.com/data-uri-to-buffer/-/data-uri-to-buffer-0.0.3.tgz#18ae979a6a0ca994b0625853916d2662bbae0b1a" 629 | integrity sha1-GK6XmmoMqZSwYlhTkW0mYruuCxo= 630 | 631 | decompress-response@^4.2.0: 632 | version "4.2.1" 633 | resolved "https://registry.npmjs.org/decompress-response/-/decompress-response-4.2.1.tgz#414023cc7a302da25ce2ec82d0d5238ccafd8986" 634 | integrity sha512-jOSne2qbyE+/r8G1VU+G/82LBs2Fs4LAsTiLSHOCOMZQl2OKZ6i8i4IyHemTe+/yIXOtTcRQMzPcgyhoFlqPkw== 635 | dependencies: 636 | mimic-response "^2.0.0" 637 | 638 | deep-extend@^0.6.0: 639 | version "0.6.0" 640 | resolved "https://registry.npmjs.org/deep-extend/-/deep-extend-0.6.0.tgz#c4fa7c95404a17a9c3e8ca7e1537312b736330ac" 641 | integrity sha512-LOHxIOaPYdHlJRtCQfDIVZtfw/ufM8+rVj649RIHzcm/vGwQRXFt6OPqIFWsm2XEMrNIEtWR64sY1LEKD2vAOA== 642 | 643 | define-properties@^1.1.3: 644 | version "1.1.3" 645 | resolved "https://registry.npmjs.org/define-properties/-/define-properties-1.1.3.tgz#cf88da6cbee26fe6db7094f61d870cbd84cee9f1" 646 | integrity sha512-3MqfYKj2lLzdMSf8ZIZE/V+Zuy+BgD6f164e8K2w7dgnpKArBDerGYpM46IYYcjnkdPNMjPk9A6VFB8+3SKlXQ== 647 | dependencies: 648 | object-keys "^1.0.12" 649 | 650 | delayed-stream@~1.0.0: 651 | version "1.0.0" 652 | resolved "https://registry.yarnpkg.com/delayed-stream/-/delayed-stream-1.0.0.tgz#df3ae199acadfb7d440aaae0b29e2272b24ec619" 653 | integrity sha1-3zrhmayt+31ECqrgsp4icrJOxhk= 654 | 655 | delegates@^1.0.0: 656 | version "1.0.0" 657 | resolved "https://registry.npmjs.org/delegates/-/delegates-1.0.0.tgz#84c6e159b81904fdca59a0ef44cd870d31250f9a" 658 | integrity sha1-hMbhWbgZBP3KWaDvRM2HDTElD5o= 659 | 660 | detect-libc@^1.0.3: 661 | version "1.0.3" 662 | resolved "https://registry.npmjs.org/detect-libc/-/detect-libc-1.0.3.tgz#fa137c4bd698edf55cd5cd02ac559f91a4c4ba9b" 663 | integrity sha1-+hN8S9aY7fVc1c0CrFWfkaTEups= 664 | 665 | dom-serializer@0: 666 | version "0.2.2" 667 | resolved "https://registry.yarnpkg.com/dom-serializer/-/dom-serializer-0.2.2.tgz#1afb81f533717175d478655debc5e332d9f9bb51" 668 | integrity sha512-2/xPb3ORsQ42nHYiSunXkDjPLBaEj/xTwUO4B7XCZQTRk7EBtTOPaygh10YAAh2OI1Qrp6NWfpAhzswj0ydt9g== 669 | dependencies: 670 | domelementtype "^2.0.1" 671 | entities "^2.0.0" 672 | 673 | dom-serializer@^1.0.1: 674 | version "1.3.1" 675 | resolved "https://registry.npmjs.org/dom-serializer/-/dom-serializer-1.3.1.tgz#d845a1565d7c041a95e5dab62184ab41e3a519be" 676 | integrity sha512-Pv2ZluG5ife96udGgEDovOOOA5UELkltfJpnIExPrAk1LTvecolUGn6lIaoLh86d83GiB86CjzciMd9BuRB71Q== 677 | dependencies: 678 | domelementtype "^2.0.1" 679 | domhandler "^4.0.0" 680 | entities "^2.0.0" 681 | 682 | dom-serializer@~0.1.0: 683 | version "0.1.1" 684 | resolved "https://registry.yarnpkg.com/dom-serializer/-/dom-serializer-0.1.1.tgz#1ec4059e284babed36eec2941d4a970a189ce7c0" 685 | integrity sha512-l0IU0pPzLWSHBcieZbpOKgkIn3ts3vAh7ZuFyXNwJxJXk/c4Gwj9xaTJwIDVQCXawWD0qb3IzMGH5rglQaO0XA== 686 | dependencies: 687 | domelementtype "^1.3.0" 688 | entities "^1.1.1" 689 | 690 | dom-walk@^0.1.0: 691 | version "0.1.2" 692 | resolved "https://registry.npmjs.org/dom-walk/-/dom-walk-0.1.2.tgz#0c548bef048f4d1f2a97249002236060daa3fd84" 693 | integrity sha512-6QvTW9mrGeIegrFXdtQi9pk7O/nSK6lSdXW2eqUspN5LWD7UTji2Fqw5V2YLjBpHEoU9Xl/eUWNpDeZvoyOv2w== 694 | 695 | domelementtype@1, domelementtype@^1.3.0, domelementtype@^1.3.1: 696 | version "1.3.1" 697 | resolved "https://registry.yarnpkg.com/domelementtype/-/domelementtype-1.3.1.tgz#d048c44b37b0d10a7f2a3d5fee3f4333d790481f" 698 | integrity sha512-BSKB+TSpMpFI/HOxCNr1O8aMOTZ8hT3pM3GQ0w/mWRmkhEDSFJkkyzz4XQsBV44BChwGkrDfMyjVD0eA2aFV3w== 699 | 700 | domelementtype@^2.0.1, domelementtype@^2.2.0: 701 | version "2.2.0" 702 | resolved "https://registry.npmjs.org/domelementtype/-/domelementtype-2.2.0.tgz#9a0b6c2782ed6a1c7323d42267183df9bd8b1d57" 703 | integrity sha512-DtBMo82pv1dFtUmHyr48beiuq792Sxohr+8Hm9zoxklYPfa6n0Z3Byjj2IV7bmr2IyqClnqEQhfgHJJ5QF0R5A== 704 | 705 | domhandler@^2.3.0: 706 | version "2.4.2" 707 | resolved "https://registry.yarnpkg.com/domhandler/-/domhandler-2.4.2.tgz#8805097e933d65e85546f726d60f5eb88b44f803" 708 | integrity sha512-JiK04h0Ht5u/80fdLMCEmV4zkNh2BcoMFBmZ/91WtYZ8qVXSKjiw7fXMgFPnHcSZgOo3XdinHvmnDUeMf5R4wA== 709 | dependencies: 710 | domelementtype "1" 711 | 712 | domhandler@^4.0.0, domhandler@^4.2.0: 713 | version "4.2.0" 714 | resolved "https://registry.npmjs.org/domhandler/-/domhandler-4.2.0.tgz#f9768a5f034be60a89a27c2e4d0f74eba0d8b059" 715 | integrity sha512-zk7sgt970kzPks2Bf+dwT/PLzghLnsivb9CcxkvR8Mzr66Olr0Ofd8neSbglHJHaHa2MadfoSdNlKYAaafmWfA== 716 | dependencies: 717 | domelementtype "^2.2.0" 718 | 719 | domutils@1.5.1: 720 | version "1.5.1" 721 | resolved "https://registry.yarnpkg.com/domutils/-/domutils-1.5.1.tgz#dcd8488a26f563d61079e48c9f7b7e32373682cf" 722 | integrity sha1-3NhIiib1Y9YQeeSMn3t+Mjc2gs8= 723 | dependencies: 724 | dom-serializer "0" 725 | domelementtype "1" 726 | 727 | domutils@^1.5.1: 728 | version "1.7.0" 729 | resolved "https://registry.yarnpkg.com/domutils/-/domutils-1.7.0.tgz#56ea341e834e06e6748af7a1cb25da67ea9f8c2a" 730 | integrity sha512-Lgd2XcJ/NjEw+7tFvfKxOzCYKZsdct5lczQ2ZaQY8Djz7pfAD3Gbp8ySJWtreII/vDlMVmxwa6pHmdxIYgttDg== 731 | dependencies: 732 | dom-serializer "0" 733 | domelementtype "1" 734 | 735 | domutils@^2.4.3: 736 | version "2.6.0" 737 | resolved "https://registry.npmjs.org/domutils/-/domutils-2.6.0.tgz#2e15c04185d43fb16ae7057cb76433c6edb938b7" 738 | integrity sha512-y0BezHuy4MDYxh6OvolXYsH+1EMGmFbwv5FKW7ovwMG6zTPWqNPq3WF9ayZssFq+UlKdffGLbOEaghNdaOm1WA== 739 | dependencies: 740 | dom-serializer "^1.0.1" 741 | domelementtype "^2.2.0" 742 | domhandler "^4.2.0" 743 | 744 | ecc-jsbn@~0.1.1: 745 | version "0.1.2" 746 | resolved "https://registry.yarnpkg.com/ecc-jsbn/-/ecc-jsbn-0.1.2.tgz#3a83a904e54353287874c564b7549386849a98c9" 747 | integrity sha1-OoOpBOVDUyh4dMVkt1SThoSamMk= 748 | dependencies: 749 | jsbn "~0.1.0" 750 | safer-buffer "^2.1.0" 751 | 752 | end-of-stream@^1.1.0, end-of-stream@^1.4.1: 753 | version "1.4.4" 754 | resolved "https://registry.npmjs.org/end-of-stream/-/end-of-stream-1.4.4.tgz#5ae64a5f45057baf3626ec14da0ca5e4b2431eb0" 755 | integrity sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q== 756 | dependencies: 757 | once "^1.4.0" 758 | 759 | entities@^1.1.1, entities@~1.1.1: 760 | version "1.1.2" 761 | resolved "https://registry.yarnpkg.com/entities/-/entities-1.1.2.tgz#bdfa735299664dfafd34529ed4f8522a275fea56" 762 | integrity sha512-f2LZMYl1Fzu7YSBKg+RoROelpOaNrcGmE9AZubeDfrCEia483oW4MI4VyFd5VNHIgQ/7qm1I0wUHK1eJnn2y2w== 763 | 764 | entities@^2.0.0: 765 | version "2.2.0" 766 | resolved "https://registry.npmjs.org/entities/-/entities-2.2.0.tgz#098dc90ebb83d8dffa089d55256b351d34c4da55" 767 | integrity sha512-p92if5Nz619I0w+akJrLZH0MX0Pb5DX39XOwQTtXSdQQOaYH03S1uIQp4mhOZtAXrxq4ViO67YTiLBo2638o9A== 768 | 769 | es-abstract@^1.18.0-next.2: 770 | version "1.18.0" 771 | resolved "https://registry.npmjs.org/es-abstract/-/es-abstract-1.18.0.tgz#ab80b359eecb7ede4c298000390bc5ac3ec7b5a4" 772 | integrity sha512-LJzK7MrQa8TS0ja2w3YNLzUgJCGPdPOV1yVvezjNnS89D+VR08+Szt2mz3YB2Dck/+w5tfIq/RoUAFqJJGM2yw== 773 | dependencies: 774 | call-bind "^1.0.2" 775 | es-to-primitive "^1.2.1" 776 | function-bind "^1.1.1" 777 | get-intrinsic "^1.1.1" 778 | has "^1.0.3" 779 | has-symbols "^1.0.2" 780 | is-callable "^1.2.3" 781 | is-negative-zero "^2.0.1" 782 | is-regex "^1.1.2" 783 | is-string "^1.0.5" 784 | object-inspect "^1.9.0" 785 | object-keys "^1.1.1" 786 | object.assign "^4.1.2" 787 | string.prototype.trimend "^1.0.4" 788 | string.prototype.trimstart "^1.0.4" 789 | unbox-primitive "^1.0.0" 790 | 791 | es-to-primitive@^1.2.1: 792 | version "1.2.1" 793 | resolved "https://registry.npmjs.org/es-to-primitive/-/es-to-primitive-1.2.1.tgz#e55cd4c9cdc188bcefb03b366c736323fc5c898a" 794 | integrity sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA== 795 | dependencies: 796 | is-callable "^1.1.4" 797 | is-date-object "^1.0.1" 798 | is-symbol "^1.0.2" 799 | 800 | exif-parser@^0.1.12: 801 | version "0.1.12" 802 | resolved "https://registry.npmjs.org/exif-parser/-/exif-parser-0.1.12.tgz#58a9d2d72c02c1f6f02a0ef4a9166272b7760922" 803 | integrity sha1-WKnS1ywCwfbwKg70qRZicrd2CSI= 804 | 805 | expand-template@^2.0.3: 806 | version "2.0.3" 807 | resolved "https://registry.npmjs.org/expand-template/-/expand-template-2.0.3.tgz#6e14b3fcee0f3a6340ecb57d2e8918692052a47c" 808 | integrity sha512-XYfuKMvj4O35f/pOXLObndIRvyQ+/+6AhODh+OKWj9S9498pHHn/IMszH+gt0fBCRWMNfk1ZSp5x3AifmnI2vg== 809 | 810 | extend@~3.0.2: 811 | version "3.0.2" 812 | resolved "https://registry.yarnpkg.com/extend/-/extend-3.0.2.tgz#f8b1136b4071fbd8eb140aff858b1019ec2915fa" 813 | integrity sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g== 814 | 815 | extsprintf@1.3.0: 816 | version "1.3.0" 817 | resolved "https://registry.yarnpkg.com/extsprintf/-/extsprintf-1.3.0.tgz#96918440e3041a7a414f8c52e3c574eb3c3e1e05" 818 | integrity sha1-lpGEQOMEGnpBT4xS48V06zw+HgU= 819 | 820 | extsprintf@^1.2.0: 821 | version "1.4.0" 822 | resolved "https://registry.yarnpkg.com/extsprintf/-/extsprintf-1.4.0.tgz#e2689f8f356fad62cca65a3a91c5df5f9551692f" 823 | integrity sha1-4mifjzVvrWLMplo6kcXfX5VRaS8= 824 | 825 | fast-deep-equal@^3.1.1: 826 | version "3.1.3" 827 | resolved "https://registry.yarnpkg.com/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz#3a7d56b559d6cbc3eb512325244e619a65c6c525" 828 | integrity sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q== 829 | 830 | fast-json-stable-stringify@^2.0.0: 831 | version "2.1.0" 832 | resolved "https://registry.yarnpkg.com/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz#874bf69c6f404c2b5d99c481341399fd55892633" 833 | integrity sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw== 834 | 835 | file-type@^9.0.0: 836 | version "9.0.0" 837 | resolved "https://registry.npmjs.org/file-type/-/file-type-9.0.0.tgz#a68d5ad07f486414dfb2c8866f73161946714a18" 838 | integrity sha512-Qe/5NJrgIOlwijpq3B7BEpzPFcgzggOTagZmkXQY4LA6bsXKTUstK7Wp12lEJ/mLKTpvIZxmIuRcLYWT6ov9lw== 839 | 840 | forever-agent@~0.6.1: 841 | version "0.6.1" 842 | resolved "https://registry.yarnpkg.com/forever-agent/-/forever-agent-0.6.1.tgz#fbc71f0c41adeb37f96c577ad1ed42d8fdacca91" 843 | integrity sha1-+8cfDEGt6zf5bFd60e1C2P2sypE= 844 | 845 | form-data@~2.3.2: 846 | version "2.3.3" 847 | resolved "https://registry.yarnpkg.com/form-data/-/form-data-2.3.3.tgz#dcce52c05f644f298c6a7ab936bd724ceffbf3a6" 848 | integrity sha512-1lLKB2Mu3aGP1Q/2eCOx0fNbRMe7XdwktwOruhfqqd0rIJWwN4Dh+E3hrPSlDCXnSR7UtZ1N38rVXm+6+MEhJQ== 849 | dependencies: 850 | asynckit "^0.4.0" 851 | combined-stream "^1.0.6" 852 | mime-types "^2.1.12" 853 | 854 | fs-constants@^1.0.0: 855 | version "1.0.0" 856 | resolved "https://registry.npmjs.org/fs-constants/-/fs-constants-1.0.0.tgz#6be0de9be998ce16af8afc24497b9ee9b7ccd9ad" 857 | integrity sha512-y6OAwoSIf7FyjMIv94u+b5rdheZEjzR63GTyZJm5qh4Bi+2YgwLCcI/fPFZkL5PSixOt6ZNKm+w+Hfp/Bciwow== 858 | 859 | fs-extra@^10.0.0: 860 | version "10.0.0" 861 | resolved "https://registry.npmjs.org/fs-extra/-/fs-extra-10.0.0.tgz#9ff61b655dde53fb34a82df84bb214ce802e17c1" 862 | integrity sha512-C5owb14u9eJwizKGdchcDUQeFtlSHHthBk8pbX9Vc1PFZrLombudjDnNns88aYslCyF6IY5SUw3Roz6xShcEIQ== 863 | dependencies: 864 | graceful-fs "^4.2.0" 865 | jsonfile "^6.0.1" 866 | universalify "^2.0.0" 867 | 868 | function-bind@^1.1.1: 869 | version "1.1.1" 870 | resolved "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz#a56899d3ea3c9bab874bb9773b7c5ede92f4895d" 871 | integrity sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A== 872 | 873 | gauge@~2.7.3: 874 | version "2.7.4" 875 | resolved "https://registry.npmjs.org/gauge/-/gauge-2.7.4.tgz#2c03405c7538c39d7eb37b317022e325fb018bf7" 876 | integrity sha1-LANAXHU4w51+s3sxcCLjJfsBi/c= 877 | dependencies: 878 | aproba "^1.0.3" 879 | console-control-strings "^1.0.0" 880 | has-unicode "^2.0.0" 881 | object-assign "^4.1.0" 882 | signal-exit "^3.0.0" 883 | string-width "^1.0.1" 884 | strip-ansi "^3.0.1" 885 | wide-align "^1.1.0" 886 | 887 | get-image-colors@^4.0.0: 888 | version "4.0.0" 889 | resolved "https://registry.yarnpkg.com/get-image-colors/-/get-image-colors-4.0.0.tgz#c8fe161c386b5ae6300d953eac6bccc05a56069d" 890 | integrity sha512-qQZ5vyqgJkQp1c8ZRwKGL03oDsyBBUKiwr4GbB2T4F+tHpfQrw1PjKMQai7jcjRdC2wIHl2rV+6ZuHKttpyk7A== 891 | dependencies: 892 | chroma-js "^2.1.0" 893 | get-pixels "^3.3.2" 894 | get-rgba-palette "^2.0.1" 895 | get-svg-colors "^1.5.1" 896 | pify "^5.0.0" 897 | 898 | get-intrinsic@^1.0.2, get-intrinsic@^1.1.1: 899 | version "1.1.1" 900 | resolved "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.1.1.tgz#15f59f376f855c446963948f0d24cd3637b4abc6" 901 | integrity sha512-kWZrnVM42QCiEA2Ig1bG8zjoIMOgxWwYCEeNdwY6Tv/cOSeGpcoX4pXHfKUxNKVoArnrEr2e9srnAxxGIraS9Q== 902 | dependencies: 903 | function-bind "^1.1.1" 904 | has "^1.0.3" 905 | has-symbols "^1.0.1" 906 | 907 | get-pixels@^3.3.2: 908 | version "3.3.3" 909 | resolved "https://registry.yarnpkg.com/get-pixels/-/get-pixels-3.3.3.tgz#71e2dfd4befb810b5478a61c6354800976ce01c7" 910 | integrity sha512-5kyGBn90i9tSMUVHTqkgCHsoWoR+/lGbl4yC83Gefyr0HLIhgSWEx/2F/3YgsZ7UpYNuM6pDhDK7zebrUJ5nXg== 911 | dependencies: 912 | data-uri-to-buffer "0.0.3" 913 | jpeg-js "^0.4.1" 914 | mime-types "^2.0.1" 915 | ndarray "^1.0.13" 916 | ndarray-pack "^1.1.1" 917 | node-bitmap "0.0.1" 918 | omggif "^1.0.5" 919 | parse-data-uri "^0.2.0" 920 | pngjs "^3.3.3" 921 | request "^2.44.0" 922 | through "^2.3.4" 923 | 924 | get-rgba-palette@^2.0.1: 925 | version "2.0.1" 926 | resolved "https://registry.yarnpkg.com/get-rgba-palette/-/get-rgba-palette-2.0.1.tgz#5ce70f75c6ef52882f54dd079e5ed68b5a2323ca" 927 | integrity sha1-XOcPdcbvUogvVN0Hnl7Wi1ojI8o= 928 | dependencies: 929 | quantize "^1.0.1" 930 | 931 | get-svg-colors@^1.5.1: 932 | version "1.5.1" 933 | resolved "https://registry.yarnpkg.com/get-svg-colors/-/get-svg-colors-1.5.1.tgz#59f4004f5fb4fc0b0eaaec36dce004b3b10f188b" 934 | integrity sha512-G3gXrkLrlmv2gqZvs05ap/kcGbchhNtUNaoaP6dIefRcrGPqSa17dGp5ap/2yN8Xs2Wi5mWn16Ww+nFuVU8lTw== 935 | dependencies: 936 | cheerio "^0.22.0" 937 | chroma-js "^1.1.1" 938 | is-svg "^3.0.0" 939 | lodash.compact "^3.0.0" 940 | lodash.uniq "^4.5.0" 941 | 942 | getpass@^0.1.1: 943 | version "0.1.7" 944 | resolved "https://registry.yarnpkg.com/getpass/-/getpass-0.1.7.tgz#5eff8e3e684d569ae4cb2b1282604e8ba62149fa" 945 | integrity sha1-Xv+OPmhNVprkyysSgmBOi6YhSfo= 946 | dependencies: 947 | assert-plus "^1.0.0" 948 | 949 | gifwrap@^0.9.2: 950 | version "0.9.2" 951 | resolved "https://registry.npmjs.org/gifwrap/-/gifwrap-0.9.2.tgz#348e286e67d7cf57942172e1e6f05a71cee78489" 952 | integrity sha512-fcIswrPaiCDAyO8xnWvHSZdWChjKXUanKKpAiWWJ/UTkEi/aYKn5+90e7DE820zbEaVR9CE2y4z9bzhQijZ0BA== 953 | dependencies: 954 | image-q "^1.1.1" 955 | omggif "^1.0.10" 956 | 957 | github-from-package@0.0.0: 958 | version "0.0.0" 959 | resolved "https://registry.npmjs.org/github-from-package/-/github-from-package-0.0.0.tgz#97fb5d96bfde8973313f20e8288ef9a167fa64ce" 960 | integrity sha1-l/tdlr/eiXMxPyDoKI75oWf6ZM4= 961 | 962 | global@~4.4.0: 963 | version "4.4.0" 964 | resolved "https://registry.npmjs.org/global/-/global-4.4.0.tgz#3e7b105179006a323ed71aafca3e9c57a5cc6406" 965 | integrity sha512-wv/LAoHdRE3BeTGz53FAamhGlPLhlssK45usmGFThIi4XqnBmjKQ16u+RNbP7WvigRZDxUsM0J3gcQ5yicaL0w== 966 | dependencies: 967 | min-document "^2.19.0" 968 | process "^0.11.10" 969 | 970 | graceful-fs@^4.1.6, graceful-fs@^4.2.0: 971 | version "4.2.6" 972 | resolved "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.6.tgz#ff040b2b0853b23c3d31027523706f1885d76bee" 973 | integrity sha512-nTnJ528pbqxYanhpDYsi4Rd8MAeaBA67+RZ10CM1m3bTAVFEDcd5AuA4a6W5YkGZ1iNXHzZz8T6TBKLeBuNriQ== 974 | 975 | har-schema@^2.0.0: 976 | version "2.0.0" 977 | resolved "https://registry.yarnpkg.com/har-schema/-/har-schema-2.0.0.tgz#a94c2224ebcac04782a0d9035521f24735b7ec92" 978 | integrity sha1-qUwiJOvKwEeCoNkDVSHyRzW37JI= 979 | 980 | har-validator@~5.1.3: 981 | version "5.1.5" 982 | resolved "https://registry.yarnpkg.com/har-validator/-/har-validator-5.1.5.tgz#1f0803b9f8cb20c0fa13822df1ecddb36bde1efd" 983 | integrity sha512-nmT2T0lljbxdQZfspsno9hgrG3Uir6Ks5afism62poxqBM6sDnMEuPmzTq8XN0OEwqKLLdh1jQI3qyE66Nzb3w== 984 | dependencies: 985 | ajv "^6.12.3" 986 | har-schema "^2.0.0" 987 | 988 | has-bigints@^1.0.1: 989 | version "1.0.1" 990 | resolved "https://registry.npmjs.org/has-bigints/-/has-bigints-1.0.1.tgz#64fe6acb020673e3b78db035a5af69aa9d07b113" 991 | integrity sha512-LSBS2LjbNBTf6287JEbEzvJgftkF5qFkmCo9hDRpAzKhUOlJ+hx8dd4USs00SgsUNwc4617J9ki5YtEClM2ffA== 992 | 993 | has-flag@^4.0.0: 994 | version "4.0.0" 995 | resolved "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz#944771fd9c81c81265c4d6941860da06bb59479b" 996 | integrity sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ== 997 | 998 | has-symbols@^1.0.1, has-symbols@^1.0.2: 999 | version "1.0.2" 1000 | resolved "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.2.tgz#165d3070c00309752a1236a479331e3ac56f1423" 1001 | integrity sha512-chXa79rL/UC2KlX17jo3vRGz0azaWEx5tGqZg5pO3NUyEJVB17dMruQlzCCOfUvElghKcm5194+BCRvi2Rv/Gw== 1002 | 1003 | has-unicode@^2.0.0: 1004 | version "2.0.1" 1005 | resolved "https://registry.npmjs.org/has-unicode/-/has-unicode-2.0.1.tgz#e0e6fe6a28cf51138855e086d1691e771de2a8b9" 1006 | integrity sha1-4Ob+aijPUROIVeCG0Wkedx3iqLk= 1007 | 1008 | has@^1.0.3: 1009 | version "1.0.3" 1010 | resolved "https://registry.npmjs.org/has/-/has-1.0.3.tgz#722d7cbfc1f6aa8241f16dd814e011e1f41e8796" 1011 | integrity sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw== 1012 | dependencies: 1013 | function-bind "^1.1.1" 1014 | 1015 | heic-decode@^1.1.2: 1016 | version "1.1.2" 1017 | resolved "https://registry.npmjs.org/heic-decode/-/heic-decode-1.1.2.tgz#974701666432e31ed64b2263a1ece7cff5218209" 1018 | integrity sha512-UF8teegxvzQPdSTcx5frIUhitNDliz/9Pui0JFdIqVRE00spVE33DcCYtZqaLNyd4y5RP/QQWZFIc1YWVKKm2A== 1019 | dependencies: 1020 | libheif-js "^1.10.0" 1021 | 1022 | html-comment-regex@^1.1.0: 1023 | version "1.1.2" 1024 | resolved "https://registry.yarnpkg.com/html-comment-regex/-/html-comment-regex-1.1.2.tgz#97d4688aeb5c81886a364faa0cad1dda14d433a7" 1025 | integrity sha512-P+M65QY2JQ5Y0G9KKdlDpo0zK+/OHptU5AaBwUfAIDJZk1MYf32Frm84EcOytfJE0t5JvkAnKlmjsXDnWzCJmQ== 1026 | 1027 | htmlparser2@^3.9.1: 1028 | version "3.10.1" 1029 | resolved "https://registry.yarnpkg.com/htmlparser2/-/htmlparser2-3.10.1.tgz#bd679dc3f59897b6a34bb10749c855bb53a9392f" 1030 | integrity sha512-IgieNijUMbkDovyoKObU1DUhm1iwNYE/fuifEoEHfd1oZKZDaONBSkal7Y01shxsM49R4XaMdGez3WnF9UfiCQ== 1031 | dependencies: 1032 | domelementtype "^1.3.1" 1033 | domhandler "^2.3.0" 1034 | domutils "^1.5.1" 1035 | entities "^1.1.1" 1036 | inherits "^2.0.1" 1037 | readable-stream "^3.1.1" 1038 | 1039 | http-signature@~1.2.0: 1040 | version "1.2.0" 1041 | resolved "https://registry.yarnpkg.com/http-signature/-/http-signature-1.2.0.tgz#9aecd925114772f3d95b65a60abb8f7c18fbace1" 1042 | integrity sha1-muzZJRFHcvPZW2WmCruPfBj7rOE= 1043 | dependencies: 1044 | assert-plus "^1.0.0" 1045 | jsprim "^1.2.2" 1046 | sshpk "^1.7.0" 1047 | 1048 | ieee754@^1.1.13: 1049 | version "1.2.1" 1050 | resolved "https://registry.npmjs.org/ieee754/-/ieee754-1.2.1.tgz#8eb7a10a63fff25d15a57b001586d177d1b0d352" 1051 | integrity sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA== 1052 | 1053 | image-q@^1.1.1: 1054 | version "1.1.1" 1055 | resolved "https://registry.npmjs.org/image-q/-/image-q-1.1.1.tgz#fc84099664460b90ca862d9300b6bfbbbfbf8056" 1056 | integrity sha1-/IQJlmRGC5DKhi2TALa/u7+/gFY= 1057 | 1058 | inherits@2.0.3: 1059 | version "2.0.3" 1060 | resolved "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz#633c2c83e3da42a502f52466022480f4208261de" 1061 | integrity sha1-Yzwsg+PaQqUC9SRmAiSA9CCCYd4= 1062 | 1063 | inherits@^2.0.1, inherits@^2.0.3, inherits@^2.0.4, inherits@~2.0.3: 1064 | version "2.0.4" 1065 | resolved "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz#0fa2c64f932917c3433a0ded55363aae37416b7c" 1066 | integrity sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ== 1067 | 1068 | ini@~1.3.0: 1069 | version "1.3.8" 1070 | resolved "https://registry.npmjs.org/ini/-/ini-1.3.8.tgz#a29da425b48806f34767a4efce397269af28432c" 1071 | integrity sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew== 1072 | 1073 | iota-array@^1.0.0: 1074 | version "1.0.0" 1075 | resolved "https://registry.yarnpkg.com/iota-array/-/iota-array-1.0.0.tgz#81ef57fe5d05814cd58c2483632a99c30a0e8087" 1076 | integrity sha1-ge9X/l0FgUzVjCSDYyqZwwoOgIc= 1077 | 1078 | is-arrayish@^0.3.1: 1079 | version "0.3.2" 1080 | resolved "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.3.2.tgz#4574a2ae56f7ab206896fb431eaeed066fdf8f03" 1081 | integrity sha512-eVRqCvVlZbuw3GrM63ovNSNAeA1K16kaR/LRY/92w0zxQ5/1YzwblUX652i4Xs9RwAGjW9d9y6X88t8OaAJfWQ== 1082 | 1083 | is-bigint@^1.0.1: 1084 | version "1.0.1" 1085 | resolved "https://registry.npmjs.org/is-bigint/-/is-bigint-1.0.1.tgz#6923051dfcbc764278540b9ce0e6b3213aa5ebc2" 1086 | integrity sha512-J0ELF4yHFxHy0cmSxZuheDOz2luOdVvqjwmEcj8H/L1JHeuEDSDbeRP+Dk9kFVk5RTFzbucJ2Kb9F7ixY2QaCg== 1087 | 1088 | is-boolean-object@^1.1.0: 1089 | version "1.1.0" 1090 | resolved "https://registry.npmjs.org/is-boolean-object/-/is-boolean-object-1.1.0.tgz#e2aaad3a3a8fca34c28f6eee135b156ed2587ff0" 1091 | integrity sha512-a7Uprx8UtD+HWdyYwnD1+ExtTgqQtD2k/1yJgtXP6wnMm8byhkoTZRl+95LLThpzNZJ5aEvi46cdH+ayMFRwmA== 1092 | dependencies: 1093 | call-bind "^1.0.0" 1094 | 1095 | is-buffer@^1.0.2: 1096 | version "1.1.6" 1097 | resolved "https://registry.yarnpkg.com/is-buffer/-/is-buffer-1.1.6.tgz#efaa2ea9daa0d7ab2ea13a97b2b8ad51fefbe8be" 1098 | integrity sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w== 1099 | 1100 | is-callable@^1.1.4, is-callable@^1.2.3: 1101 | version "1.2.3" 1102 | resolved "https://registry.npmjs.org/is-callable/-/is-callable-1.2.3.tgz#8b1e0500b73a1d76c70487636f368e519de8db8e" 1103 | integrity sha512-J1DcMe8UYTBSrKezuIUTUwjXsho29693unXM2YhJUTR2txK/eG47bvNa/wipPFmZFgr/N6f1GA66dv0mEyTIyQ== 1104 | 1105 | is-date-object@^1.0.1: 1106 | version "1.0.2" 1107 | resolved "https://registry.npmjs.org/is-date-object/-/is-date-object-1.0.2.tgz#bda736f2cd8fd06d32844e7743bfa7494c3bfd7e" 1108 | integrity sha512-USlDT524woQ08aoZFzh3/Z6ch9Y/EWXEHQ/AaRN0SkKq4t2Jw2R2339tSXmwuVoY7LLlBCbOIlx2myP/L5zk0g== 1109 | 1110 | is-fullwidth-code-point@^1.0.0: 1111 | version "1.0.0" 1112 | resolved "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz#ef9e31386f031a7f0d643af82fde50c457ef00cb" 1113 | integrity sha1-754xOG8DGn8NZDr4L95QxFfvAMs= 1114 | dependencies: 1115 | number-is-nan "^1.0.0" 1116 | 1117 | is-fullwidth-code-point@^2.0.0: 1118 | version "2.0.0" 1119 | resolved "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz#a3b30a5c4f199183167aaab93beefae3ddfb654f" 1120 | integrity sha1-o7MKXE8ZkYMWeqq5O+764937ZU8= 1121 | 1122 | is-function@^1.0.1: 1123 | version "1.0.2" 1124 | resolved "https://registry.npmjs.org/is-function/-/is-function-1.0.2.tgz#4f097f30abf6efadac9833b17ca5dc03f8144e08" 1125 | integrity sha512-lw7DUp0aWXYg+CBCN+JKkcE0Q2RayZnSvnZBlwgxHBQhqt5pZNVy4Ri7H9GmmXkdu7LUthszM+Tor1u/2iBcpQ== 1126 | 1127 | is-negative-zero@^2.0.1: 1128 | version "2.0.1" 1129 | resolved "https://registry.npmjs.org/is-negative-zero/-/is-negative-zero-2.0.1.tgz#3de746c18dda2319241a53675908d8f766f11c24" 1130 | integrity sha512-2z6JzQvZRa9A2Y7xC6dQQm4FSTSTNWjKIYYTt4246eMTJmIo0Q+ZyOsU66X8lxK1AbB92dFeglPLrhwpeRKO6w== 1131 | 1132 | is-number-object@^1.0.4: 1133 | version "1.0.4" 1134 | resolved "https://registry.npmjs.org/is-number-object/-/is-number-object-1.0.4.tgz#36ac95e741cf18b283fc1ddf5e83da798e3ec197" 1135 | integrity sha512-zohwelOAur+5uXtk8O3GPQ1eAcu4ZX3UwxQhUlfFFMNpUd83gXgjbhJh6HmB6LUNV/ieOLQuDwJO3dWJosUeMw== 1136 | 1137 | is-regex@^1.1.2: 1138 | version "1.1.2" 1139 | resolved "https://registry.npmjs.org/is-regex/-/is-regex-1.1.2.tgz#81c8ebde4db142f2cf1c53fc86d6a45788266251" 1140 | integrity sha512-axvdhb5pdhEVThqJzYXwMlVuZwC+FF2DpcOhTS+y/8jVq4trxyPgfcwIxIKiyeuLlSQYKkmUaPQJ8ZE4yNKXDg== 1141 | dependencies: 1142 | call-bind "^1.0.2" 1143 | has-symbols "^1.0.1" 1144 | 1145 | is-string@^1.0.5: 1146 | version "1.0.5" 1147 | resolved "https://registry.npmjs.org/is-string/-/is-string-1.0.5.tgz#40493ed198ef3ff477b8c7f92f644ec82a5cd3a6" 1148 | integrity sha512-buY6VNRjhQMiF1qWDouloZlQbRhDPCebwxSjxMjxgemYT46YMd2NR0/H+fBhEfWX4A/w9TBJ+ol+okqJKFE6vQ== 1149 | 1150 | is-svg@^3.0.0: 1151 | version "3.0.0" 1152 | resolved "https://registry.yarnpkg.com/is-svg/-/is-svg-3.0.0.tgz#9321dbd29c212e5ca99c4fa9794c714bcafa2f75" 1153 | integrity sha512-gi4iHK53LR2ujhLVVj+37Ykh9GLqYHX6JOVXbLAucaG/Cqw9xwdFOjDM2qeifLs1sF1npXXFvDu0r5HNgCMrzQ== 1154 | dependencies: 1155 | html-comment-regex "^1.1.0" 1156 | 1157 | is-symbol@^1.0.2, is-symbol@^1.0.3: 1158 | version "1.0.3" 1159 | resolved "https://registry.npmjs.org/is-symbol/-/is-symbol-1.0.3.tgz#38e1014b9e6329be0de9d24a414fd7441ec61937" 1160 | integrity sha512-OwijhaRSgqvhm/0ZdAcXNZt9lYdKFpcRDT5ULUuYXPoT794UNOdU+gpT6Rzo7b4V2HUl/op6GqY894AZwv9faQ== 1161 | dependencies: 1162 | has-symbols "^1.0.1" 1163 | 1164 | is-typedarray@~1.0.0: 1165 | version "1.0.0" 1166 | resolved "https://registry.yarnpkg.com/is-typedarray/-/is-typedarray-1.0.0.tgz#e479c80858df0c1b11ddda6940f96011fcda4a9a" 1167 | integrity sha1-5HnICFjfDBsR3dppQPlgEfzaSpo= 1168 | 1169 | isarray@~1.0.0: 1170 | version "1.0.0" 1171 | resolved "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz#bb935d48582cba168c06834957a54a3e07124f11" 1172 | integrity sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE= 1173 | 1174 | isexe@^2.0.0: 1175 | version "2.0.0" 1176 | resolved "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz#e8fbf374dc556ff8947a10dcb0572d633f2cfa10" 1177 | integrity sha1-6PvzdNxVb/iUehDcsFctYz8s+hA= 1178 | 1179 | isstream@~0.1.2: 1180 | version "0.1.2" 1181 | resolved "https://registry.yarnpkg.com/isstream/-/isstream-0.1.2.tgz#47e63f7af55afa6f92e1500e690eb8b8529c099a" 1182 | integrity sha1-R+Y/evVa+m+S4VAOaQ64uFKcCZo= 1183 | 1184 | jimp@^0.14.0: 1185 | version "0.14.0" 1186 | resolved "https://registry.npmjs.org/jimp/-/jimp-0.14.0.tgz#fde55f69bdb918c1b01ac633d89a25853af85625" 1187 | integrity sha512-8BXU+J8+SPmwwyq9ELihpSV4dWPTiOKBWCEgtkbnxxAVMjXdf3yGmyaLSshBfXc8sP/JQ9OZj5R8nZzz2wPXgA== 1188 | dependencies: 1189 | "@babel/runtime" "^7.7.2" 1190 | "@jimp/custom" "^0.14.0" 1191 | "@jimp/plugins" "^0.14.0" 1192 | "@jimp/types" "^0.14.0" 1193 | regenerator-runtime "^0.13.3" 1194 | 1195 | jpeg-js@^0.4.0, jpeg-js@^0.4.1: 1196 | version "0.4.3" 1197 | resolved "https://registry.npmjs.org/jpeg-js/-/jpeg-js-0.4.3.tgz#6158e09f1983ad773813704be80680550eff977b" 1198 | integrity sha512-ru1HWKek8octvUHFHvE5ZzQ1yAsJmIvRdGWvSoKV52XKyuyYA437QWDttXT8eZXDSbuMpHlLzPDZUPd6idIz+Q== 1199 | 1200 | jsbn@~0.1.0: 1201 | version "0.1.1" 1202 | resolved "https://registry.yarnpkg.com/jsbn/-/jsbn-0.1.1.tgz#a5e654c2e5a2deb5f201d96cefbca80c0ef2f513" 1203 | integrity sha1-peZUwuWi3rXyAdls77yoDA7y9RM= 1204 | 1205 | json-schema-traverse@^0.4.1: 1206 | version "0.4.1" 1207 | resolved "https://registry.yarnpkg.com/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz#69f6a87d9513ab8bb8fe63bdb0979c448e684660" 1208 | integrity sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg== 1209 | 1210 | json-schema@0.2.3: 1211 | version "0.2.3" 1212 | resolved "https://registry.yarnpkg.com/json-schema/-/json-schema-0.2.3.tgz#b480c892e59a2f05954ce727bd3f2a4e882f9e13" 1213 | integrity sha1-tIDIkuWaLwWVTOcnvT8qTogvnhM= 1214 | 1215 | json-stringify-safe@~5.0.1: 1216 | version "5.0.1" 1217 | resolved "https://registry.yarnpkg.com/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz#1296a2d58fd45f19a0f6ce01d65701e2c735b6eb" 1218 | integrity sha1-Epai1Y/UXxmg9s4B1lcB4sc1tus= 1219 | 1220 | jsonfile@^6.0.1: 1221 | version "6.1.0" 1222 | resolved "https://registry.npmjs.org/jsonfile/-/jsonfile-6.1.0.tgz#bc55b2634793c679ec6403094eb13698a6ec0aae" 1223 | integrity sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ== 1224 | dependencies: 1225 | universalify "^2.0.0" 1226 | optionalDependencies: 1227 | graceful-fs "^4.1.6" 1228 | 1229 | jsprim@^1.2.2: 1230 | version "1.4.1" 1231 | resolved "https://registry.yarnpkg.com/jsprim/-/jsprim-1.4.1.tgz#313e66bc1e5cc06e438bc1b7499c2e5c56acb6a2" 1232 | integrity sha1-MT5mvB5cwG5Di8G3SZwuXFastqI= 1233 | dependencies: 1234 | assert-plus "1.0.0" 1235 | extsprintf "1.3.0" 1236 | json-schema "0.2.3" 1237 | verror "1.10.0" 1238 | 1239 | libheif-js@^1.10.0: 1240 | version "1.11.0" 1241 | resolved "https://registry.npmjs.org/libheif-js/-/libheif-js-1.11.0.tgz#8fdf4b987bece6c014af8209189dce087874035a" 1242 | integrity sha512-GzR94duth06lce6fSeGnnkV9gWv8lDYRApO+X1w/OHm6C0oPipIvB3DFL4fMhz73ZQP534ib51D2Hu/uPRL/Dw== 1243 | 1244 | load-bmfont@^1.3.1, load-bmfont@^1.4.0: 1245 | version "1.4.1" 1246 | resolved "https://registry.npmjs.org/load-bmfont/-/load-bmfont-1.4.1.tgz#c0f5f4711a1e2ccff725a7b6078087ccfcddd3e9" 1247 | integrity sha512-8UyQoYmdRDy81Brz6aLAUhfZLwr5zV0L3taTQ4hju7m6biuwiWiJXjPhBJxbUQJA8PrkvJ/7Enqmwk2sM14soA== 1248 | dependencies: 1249 | buffer-equal "0.0.1" 1250 | mime "^1.3.4" 1251 | parse-bmfont-ascii "^1.0.3" 1252 | parse-bmfont-binary "^1.0.5" 1253 | parse-bmfont-xml "^1.1.4" 1254 | phin "^2.9.1" 1255 | xhr "^2.0.1" 1256 | xtend "^4.0.0" 1257 | 1258 | lodash.assignin@^4.0.9: 1259 | version "4.2.0" 1260 | resolved "https://registry.yarnpkg.com/lodash.assignin/-/lodash.assignin-4.2.0.tgz#ba8df5fb841eb0a3e8044232b0e263a8dc6a28a2" 1261 | integrity sha1-uo31+4QesKPoBEIysOJjqNxqKKI= 1262 | 1263 | lodash.bind@^4.1.4: 1264 | version "4.2.1" 1265 | resolved "https://registry.yarnpkg.com/lodash.bind/-/lodash.bind-4.2.1.tgz#7ae3017e939622ac31b7d7d7dcb1b34db1690d35" 1266 | integrity sha1-euMBfpOWIqwxt9fX3LGzTbFpDTU= 1267 | 1268 | lodash.compact@^3.0.0: 1269 | version "3.0.1" 1270 | resolved "https://registry.yarnpkg.com/lodash.compact/-/lodash.compact-3.0.1.tgz#540ce3837745975807471e16b4a2ba21e7256ca5" 1271 | integrity sha1-VAzjg3dFl1gHRx4WtKK6IeclbKU= 1272 | 1273 | lodash.defaults@^4.0.1: 1274 | version "4.2.0" 1275 | resolved "https://registry.yarnpkg.com/lodash.defaults/-/lodash.defaults-4.2.0.tgz#d09178716ffea4dde9e5fb7b37f6f0802274580c" 1276 | integrity sha1-0JF4cW/+pN3p5ft7N/bwgCJ0WAw= 1277 | 1278 | lodash.filter@^4.4.0: 1279 | version "4.6.0" 1280 | resolved "https://registry.yarnpkg.com/lodash.filter/-/lodash.filter-4.6.0.tgz#668b1d4981603ae1cc5a6fa760143e480b4c4ace" 1281 | integrity sha1-ZosdSYFgOuHMWm+nYBQ+SAtMSs4= 1282 | 1283 | lodash.flatten@^4.2.0: 1284 | version "4.4.0" 1285 | resolved "https://registry.yarnpkg.com/lodash.flatten/-/lodash.flatten-4.4.0.tgz#f31c22225a9632d2bbf8e4addbef240aa765a61f" 1286 | integrity sha1-8xwiIlqWMtK7+OSt2+8kCqdlph8= 1287 | 1288 | lodash.foreach@^4.3.0: 1289 | version "4.5.0" 1290 | resolved "https://registry.yarnpkg.com/lodash.foreach/-/lodash.foreach-4.5.0.tgz#1a6a35eace401280c7f06dddec35165ab27e3e53" 1291 | integrity sha1-Gmo16s5AEoDH8G3d7DUWWrJ+PlM= 1292 | 1293 | lodash.map@^4.4.0: 1294 | version "4.6.0" 1295 | resolved "https://registry.yarnpkg.com/lodash.map/-/lodash.map-4.6.0.tgz#771ec7839e3473d9c4cde28b19394c3562f4f6d3" 1296 | integrity sha1-dx7Hg540c9nEzeKLGTlMNWL09tM= 1297 | 1298 | lodash.merge@^4.4.0: 1299 | version "4.6.2" 1300 | resolved "https://registry.yarnpkg.com/lodash.merge/-/lodash.merge-4.6.2.tgz#558aa53b43b661e1925a0afdfa36a9a1085fe57a" 1301 | integrity sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ== 1302 | 1303 | lodash.pick@^4.2.1: 1304 | version "4.4.0" 1305 | resolved "https://registry.yarnpkg.com/lodash.pick/-/lodash.pick-4.4.0.tgz#52f05610fff9ded422611441ed1fc123a03001b3" 1306 | integrity sha1-UvBWEP/53tQiYRRB7R/BI6AwAbM= 1307 | 1308 | lodash.reduce@^4.4.0: 1309 | version "4.6.0" 1310 | resolved "https://registry.yarnpkg.com/lodash.reduce/-/lodash.reduce-4.6.0.tgz#f1ab6b839299ad48f784abbf476596f03b914d3b" 1311 | integrity sha1-8atrg5KZrUj3hKu/R2WW8DuRTTs= 1312 | 1313 | lodash.reject@^4.4.0: 1314 | version "4.6.0" 1315 | resolved "https://registry.yarnpkg.com/lodash.reject/-/lodash.reject-4.6.0.tgz#80d6492dc1470864bbf583533b651f42a9f52415" 1316 | integrity sha1-gNZJLcFHCGS79YNTO2UfQqn1JBU= 1317 | 1318 | lodash.some@^4.4.0: 1319 | version "4.6.0" 1320 | resolved "https://registry.yarnpkg.com/lodash.some/-/lodash.some-4.6.0.tgz#1bb9f314ef6b8baded13b549169b2a945eb68e4d" 1321 | integrity sha1-G7nzFO9ri63tE7VJFpsqlF62jk0= 1322 | 1323 | lodash.uniq@^4.5.0: 1324 | version "4.5.0" 1325 | resolved "https://registry.yarnpkg.com/lodash.uniq/-/lodash.uniq-4.5.0.tgz#d0225373aeb652adc1bc82e4945339a842754773" 1326 | integrity sha1-0CJTc662Uq3BvILklFM5qEJ1R3M= 1327 | 1328 | lru-cache@^6.0.0: 1329 | version "6.0.0" 1330 | resolved "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz#6d6fe6570ebd96aaf90fcad1dafa3b2566db3a94" 1331 | integrity sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA== 1332 | dependencies: 1333 | yallist "^4.0.0" 1334 | 1335 | mdn-data@2.0.14: 1336 | version "2.0.14" 1337 | resolved "https://registry.npmjs.org/mdn-data/-/mdn-data-2.0.14.tgz#7113fc4281917d63ce29b43446f701e68c25ba50" 1338 | integrity sha512-dn6wd0uw5GsdswPFfsgMp5NSB0/aDe6fK94YJV/AJDYXL6HVLWBsxeq7js7Ad+mU2K9LAlwpk6kN2D5mwCPVow== 1339 | 1340 | mime-db@1.49.0: 1341 | version "1.49.0" 1342 | resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.49.0.tgz#f3dfde60c99e9cf3bc9701d687778f537001cbed" 1343 | integrity sha512-CIc8j9URtOVApSFCQIF+VBkX1RwXp/oMMOrqdyXSBXq5RWNEsRfyj1kiRnQgmNXmHxPoFIxOroKA3zcU9P+nAA== 1344 | 1345 | mime-types@^2.0.1, mime-types@^2.1.12, mime-types@~2.1.19: 1346 | version "2.1.32" 1347 | resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.32.tgz#1d00e89e7de7fe02008db61001d9e02852670fd5" 1348 | integrity sha512-hJGaVS4G4c9TSMYh2n6SQAGrC4RnfU+daP8G7cSCmaqNjiOoUY0VHCMS42pxnQmVF1GWwFhbHWn3RIxCqTmZ9A== 1349 | dependencies: 1350 | mime-db "1.49.0" 1351 | 1352 | mime@^1.3.4: 1353 | version "1.6.0" 1354 | resolved "https://registry.npmjs.org/mime/-/mime-1.6.0.tgz#32cd9e5c64553bd58d19a568af452acff04981b1" 1355 | integrity sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg== 1356 | 1357 | mimic-response@^2.0.0: 1358 | version "2.1.0" 1359 | resolved "https://registry.npmjs.org/mimic-response/-/mimic-response-2.1.0.tgz#d13763d35f613d09ec37ebb30bac0469c0ee8f43" 1360 | integrity sha512-wXqjST+SLt7R009ySCglWBCFpjUygmCIfD790/kVbiGmUgfYGuB14PiTd5DwVxSV4NcYHjzMkoj5LjQZwTQLEA== 1361 | 1362 | min-document@^2.19.0: 1363 | version "2.19.0" 1364 | resolved "https://registry.npmjs.org/min-document/-/min-document-2.19.0.tgz#7bd282e3f5842ed295bb748cdd9f1ffa2c824685" 1365 | integrity sha1-e9KC4/WELtKVu3SM3Z8f+iyCRoU= 1366 | dependencies: 1367 | dom-walk "^0.1.0" 1368 | 1369 | minimist@^1.2.0, minimist@^1.2.3, minimist@^1.2.5: 1370 | version "1.2.5" 1371 | resolved "https://registry.npmjs.org/minimist/-/minimist-1.2.5.tgz#67d66014b66a6a8aaa0c083c5fd58df4e4e97602" 1372 | integrity sha512-FM9nNUYrRBAELZQT3xeZQ7fmMOBg6nWNmJKTcgsJeaLstP/UODVpGsr5OhXhhXg6f+qtJ8uiZ+PUxkDWcgIXLw== 1373 | 1374 | mkdirp-classic@^0.5.2, mkdirp-classic@^0.5.3: 1375 | version "0.5.3" 1376 | resolved "https://registry.npmjs.org/mkdirp-classic/-/mkdirp-classic-0.5.3.tgz#fa10c9115cc6d8865be221ba47ee9bed78601113" 1377 | integrity sha512-gKLcREMhtuZRwRAfqP3RFW+TK4JqApVBtOIftVgjuABpAtpxhPGaDcfvbhNvD0B8iD1oUr/txX35NjcaY6Ns/A== 1378 | 1379 | mkdirp@^0.5.1: 1380 | version "0.5.5" 1381 | resolved "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.5.tgz#d91cefd62d1436ca0f41620e251288d420099def" 1382 | integrity sha512-NKmAlESf6jMGym1++R0Ra7wvhV+wFW63FaSOFPwRahvea0gMUcGUhVeAg/0BC0wiv9ih5NYPB1Wn1UEI1/L+xQ== 1383 | dependencies: 1384 | minimist "^1.2.5" 1385 | 1386 | napi-build-utils@^1.0.1: 1387 | version "1.0.2" 1388 | resolved "https://registry.npmjs.org/napi-build-utils/-/napi-build-utils-1.0.2.tgz#b1fddc0b2c46e380a0b7a76f984dd47c41a13806" 1389 | integrity sha512-ONmRUqK7zj7DWX0D9ADe03wbwOBZxNAfF20PlGfCWQcD3+/MakShIHrMqx9YwPTfxDdF1zLeL+RGZiR9kGMLdg== 1390 | 1391 | ndarray-pack@^1.1.1: 1392 | version "1.2.1" 1393 | resolved "https://registry.yarnpkg.com/ndarray-pack/-/ndarray-pack-1.2.1.tgz#8caebeaaa24d5ecf70ff86020637977da8ee585a" 1394 | integrity sha1-jK6+qqJNXs9w/4YCBjeXfajuWFo= 1395 | dependencies: 1396 | cwise-compiler "^1.1.2" 1397 | ndarray "^1.0.13" 1398 | 1399 | ndarray@^1.0.13: 1400 | version "1.0.19" 1401 | resolved "https://registry.yarnpkg.com/ndarray/-/ndarray-1.0.19.tgz#6785b5f5dfa58b83e31ae5b2a058cfd1ab3f694e" 1402 | integrity sha512-B4JHA4vdyZU30ELBw3g7/p9bZupyew5a7tX1Y/gGeF2hafrPaQZhgrGQfsvgfYbgdFZjYwuEcnaobeM/WMW+HQ== 1403 | dependencies: 1404 | iota-array "^1.0.0" 1405 | is-buffer "^1.0.2" 1406 | 1407 | nearest-color@^0.4.4: 1408 | version "0.4.4" 1409 | resolved "https://registry.npmjs.org/nearest-color/-/nearest-color-0.4.4.tgz#fb812072b511f4f09a0a316903332e09fa5d7f1d" 1410 | integrity sha512-orhcaIORC10tf41Ld2wwlcC+FaAavHG87JHWB3eHH5p7v2k9Tzym2XNEZzLAm5YJwGv6Q38WWc7SOb+Qfu/4NQ== 1411 | 1412 | node-abi@^2.21.0: 1413 | version "2.26.0" 1414 | resolved "https://registry.npmjs.org/node-abi/-/node-abi-2.26.0.tgz#355d5d4bc603e856f74197adbf3f5117a396ba40" 1415 | integrity sha512-ag/Vos/mXXpWLLAYWsAoQdgS+gW7IwvgMLOgqopm/DbzAjazLltzgzpVMsFlgmo9TzG5hGXeaBZx2AI731RIsQ== 1416 | dependencies: 1417 | semver "^5.4.1" 1418 | 1419 | node-addon-api@^3.1.0: 1420 | version "3.1.0" 1421 | resolved "https://registry.npmjs.org/node-addon-api/-/node-addon-api-3.1.0.tgz#98b21931557466c6729e51cb77cd39c965f42239" 1422 | integrity sha512-flmrDNB06LIl5lywUz7YlNGZH/5p0M7W28k8hzd9Lshtdh1wshD2Y+U4h9LD6KObOy1f+fEVdgprPrEymjM5uw== 1423 | 1424 | node-bitmap@0.0.1: 1425 | version "0.0.1" 1426 | resolved "https://registry.yarnpkg.com/node-bitmap/-/node-bitmap-0.0.1.tgz#180eac7003e0c707618ef31368f62f84b2a69091" 1427 | integrity sha1-GA6scAPgxwdhjvMTaPYvhLKmkJE= 1428 | 1429 | noop-logger@^0.1.1: 1430 | version "0.1.1" 1431 | resolved "https://registry.npmjs.org/noop-logger/-/noop-logger-0.1.1.tgz#94a2b1633c4f1317553007d8966fd0e841b6a4c2" 1432 | integrity sha1-lKKxYzxPExdVMAfYlm/Q6EG2pMI= 1433 | 1434 | npmlog@^4.0.1: 1435 | version "4.1.2" 1436 | resolved "https://registry.npmjs.org/npmlog/-/npmlog-4.1.2.tgz#08a7f2a8bf734604779a9efa4ad5cc717abb954b" 1437 | integrity sha512-2uUqazuKlTaSI/dC8AzicUck7+IrEaOnN/e0jd3Xtt1KcGpwx30v50mL7oPyr/h9bL3E4aZccVwpwP+5W9Vjkg== 1438 | dependencies: 1439 | are-we-there-yet "~1.1.2" 1440 | console-control-strings "~1.1.0" 1441 | gauge "~2.7.3" 1442 | set-blocking "~2.0.0" 1443 | 1444 | nth-check@^2.0.0: 1445 | version "2.0.0" 1446 | resolved "https://registry.npmjs.org/nth-check/-/nth-check-2.0.0.tgz#1bb4f6dac70072fc313e8c9cd1417b5074c0a125" 1447 | integrity sha512-i4sc/Kj8htBrAiH1viZ0TgU8Y5XqCaV/FziYK6TBczxmeKm3AEFWqqF3195yKudrarqy7Zu80Ra5dobFjn9X/Q== 1448 | dependencies: 1449 | boolbase "^1.0.0" 1450 | 1451 | nth-check@~1.0.1: 1452 | version "1.0.2" 1453 | resolved "https://registry.yarnpkg.com/nth-check/-/nth-check-1.0.2.tgz#b2bd295c37e3dd58a3bf0700376663ba4d9cf05c" 1454 | integrity sha512-WeBOdju8SnzPN5vTUJYxYUxLeXpCaVP5i5e0LF8fg7WORF2Wd7wFX/pk0tYZk7s8T+J7VLy0Da6J1+wCT0AtHg== 1455 | dependencies: 1456 | boolbase "~1.0.0" 1457 | 1458 | number-is-nan@^1.0.0: 1459 | version "1.0.1" 1460 | resolved "https://registry.npmjs.org/number-is-nan/-/number-is-nan-1.0.1.tgz#097b602b53422a522c1afb8790318336941a011d" 1461 | integrity sha1-CXtgK1NCKlIsGvuHkDGDNpQaAR0= 1462 | 1463 | oauth-sign@~0.9.0: 1464 | version "0.9.0" 1465 | resolved "https://registry.yarnpkg.com/oauth-sign/-/oauth-sign-0.9.0.tgz#47a7b016baa68b5fa0ecf3dee08a85c679ac6455" 1466 | integrity sha512-fexhUFFPTGV8ybAtSIGbV6gOkSv8UtRbDBnAyLQw4QPKkgNlsH2ByPGtMUqdWkos6YCRmAqViwgZrJc/mRDzZQ== 1467 | 1468 | object-assign@^4.1.0: 1469 | version "4.1.1" 1470 | resolved "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863" 1471 | integrity sha1-IQmtx5ZYh8/AXLvUQsrIv7s2CGM= 1472 | 1473 | object-inspect@^1.9.0: 1474 | version "1.10.2" 1475 | resolved "https://registry.npmjs.org/object-inspect/-/object-inspect-1.10.2.tgz#b6385a3e2b7cae0b5eafcf90cddf85d128767f30" 1476 | integrity sha512-gz58rdPpadwztRrPjZE9DZLOABUpTGdcANUgOwBFO1C+HZZhePoP83M65WGDmbpwFYJSWqavbl4SgDn4k8RYTA== 1477 | 1478 | object-keys@^1.0.12, object-keys@^1.1.1: 1479 | version "1.1.1" 1480 | resolved "https://registry.npmjs.org/object-keys/-/object-keys-1.1.1.tgz#1c47f272df277f3b1daf061677d9c82e2322c60e" 1481 | integrity sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA== 1482 | 1483 | object.assign@^4.1.2: 1484 | version "4.1.2" 1485 | resolved "https://registry.npmjs.org/object.assign/-/object.assign-4.1.2.tgz#0ed54a342eceb37b38ff76eb831a0e788cb63940" 1486 | integrity sha512-ixT2L5THXsApyiUPYKmW+2EHpXXe5Ii3M+f4e+aJFAHao5amFRW6J0OO6c/LU8Be47utCx2GL89hxGB6XSmKuQ== 1487 | dependencies: 1488 | call-bind "^1.0.0" 1489 | define-properties "^1.1.3" 1490 | has-symbols "^1.0.1" 1491 | object-keys "^1.1.1" 1492 | 1493 | omggif@^1.0.10, omggif@^1.0.5, omggif@^1.0.9: 1494 | version "1.0.10" 1495 | resolved "https://registry.npmjs.org/omggif/-/omggif-1.0.10.tgz#ddaaf90d4a42f532e9e7cb3a95ecdd47f17c7b19" 1496 | integrity sha512-LMJTtvgc/nugXj0Vcrrs68Mn2D1r0zf630VNtqtpI1FEO7e+O9FP4gqs9AcnBaSEeoHIPm28u6qgPR0oyEpGSw== 1497 | 1498 | once@^1.3.1, once@^1.4.0: 1499 | version "1.4.0" 1500 | resolved "https://registry.npmjs.org/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1" 1501 | integrity sha1-WDsap3WWHUsROsF9nFC6753Xa9E= 1502 | dependencies: 1503 | wrappy "1" 1504 | 1505 | os@^0.1.1: 1506 | version "0.1.1" 1507 | resolved "https://registry.npmjs.org/os/-/os-0.1.1.tgz#208845e89e193ad4d971474b93947736a56d13f3" 1508 | integrity sha1-IIhF6J4ZOtTZcUdLk5R3NqVtE/M= 1509 | 1510 | pako@^1.0.5: 1511 | version "1.0.11" 1512 | resolved "https://registry.npmjs.org/pako/-/pako-1.0.11.tgz#6c9599d340d54dfd3946380252a35705a6b992bf" 1513 | integrity sha512-4hLB8Py4zZce5s4yd9XzopqwVv/yGNhV1Bl8NTmCq1763HeK2+EwVTv+leGeL13Dnh2wfbqowVPXCIO0z4taYw== 1514 | 1515 | parse-bmfont-ascii@^1.0.3: 1516 | version "1.0.6" 1517 | resolved "https://registry.npmjs.org/parse-bmfont-ascii/-/parse-bmfont-ascii-1.0.6.tgz#11ac3c3ff58f7c2020ab22769079108d4dfa0285" 1518 | integrity sha1-Eaw8P/WPfCAgqyJ2kHkQjU36AoU= 1519 | 1520 | parse-bmfont-binary@^1.0.5: 1521 | version "1.0.6" 1522 | resolved "https://registry.npmjs.org/parse-bmfont-binary/-/parse-bmfont-binary-1.0.6.tgz#d038b476d3e9dd9db1e11a0b0e53a22792b69006" 1523 | integrity sha1-0Di0dtPp3Z2x4RoLDlOiJ5K2kAY= 1524 | 1525 | parse-bmfont-xml@^1.1.4: 1526 | version "1.1.4" 1527 | resolved "https://registry.npmjs.org/parse-bmfont-xml/-/parse-bmfont-xml-1.1.4.tgz#015319797e3e12f9e739c4d513872cd2fa35f389" 1528 | integrity sha512-bjnliEOmGv3y1aMEfREMBJ9tfL3WR0i0CKPj61DnSLaoxWR3nLrsQrEbCId/8rF4NyRF0cCqisSVXyQYWM+mCQ== 1529 | dependencies: 1530 | xml-parse-from-string "^1.0.0" 1531 | xml2js "^0.4.5" 1532 | 1533 | parse-data-uri@^0.2.0: 1534 | version "0.2.0" 1535 | resolved "https://registry.yarnpkg.com/parse-data-uri/-/parse-data-uri-0.2.0.tgz#bf04d851dd5c87b0ab238e5d01ace494b604b4c9" 1536 | integrity sha1-vwTYUd1ch7CrI45dAazklLYEtMk= 1537 | dependencies: 1538 | data-uri-to-buffer "0.0.3" 1539 | 1540 | parse-headers@^2.0.0: 1541 | version "2.0.3" 1542 | resolved "https://registry.npmjs.org/parse-headers/-/parse-headers-2.0.3.tgz#5e8e7512383d140ba02f0c7aa9f49b4399c92515" 1543 | integrity sha512-QhhZ+DCCit2Coi2vmAKbq5RGTRcQUOE2+REgv8vdyu7MnYx2eZztegqtTx99TZ86GTIwqiy3+4nQTWZ2tgmdCA== 1544 | 1545 | path-key@^3.1.0: 1546 | version "3.1.1" 1547 | resolved "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz#581f6ade658cbba65a0d3380de7753295054f375" 1548 | integrity sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q== 1549 | 1550 | path@^0.12.7: 1551 | version "0.12.7" 1552 | resolved "https://registry.npmjs.org/path/-/path-0.12.7.tgz#d4dc2a506c4ce2197eb481ebfcd5b36c0140b10f" 1553 | integrity sha1-1NwqUGxM4hl+tIHr/NWzbAFAsQ8= 1554 | dependencies: 1555 | process "^0.11.1" 1556 | util "^0.10.3" 1557 | 1558 | performance-now@^2.1.0: 1559 | version "2.1.0" 1560 | resolved "https://registry.yarnpkg.com/performance-now/-/performance-now-2.1.0.tgz#6309f4e0e5fa913ec1c69307ae364b4b377c9e7b" 1561 | integrity sha1-Ywn04OX6kT7BxpMHrjZLSzd8nns= 1562 | 1563 | phin@^2.9.1: 1564 | version "2.9.3" 1565 | resolved "https://registry.npmjs.org/phin/-/phin-2.9.3.tgz#f9b6ac10a035636fb65dfc576aaaa17b8743125c" 1566 | integrity sha512-CzFr90qM24ju5f88quFC/6qohjC144rehe5n6DH900lgXmUe86+xCKc10ev56gRKC4/BkHUoG4uSiQgBiIXwDA== 1567 | 1568 | pify@^5.0.0: 1569 | version "5.0.0" 1570 | resolved "https://registry.yarnpkg.com/pify/-/pify-5.0.0.tgz#1f5eca3f5e87ebec28cc6d54a0e4aaf00acc127f" 1571 | integrity sha512-eW/gHNMlxdSP6dmG6uJip6FXN0EQBwm2clYYd8Wul42Cwu/DK8HEftzsapcNdYe2MfLiIwZqsDk2RDEsTE79hA== 1572 | 1573 | pixelmatch@^4.0.2: 1574 | version "4.0.2" 1575 | resolved "https://registry.npmjs.org/pixelmatch/-/pixelmatch-4.0.2.tgz#8f47dcec5011b477b67db03c243bc1f3085e8854" 1576 | integrity sha1-j0fc7FARtHe2fbA8JDvB8wheiFQ= 1577 | dependencies: 1578 | pngjs "^3.0.0" 1579 | 1580 | pngjs@^3.0.0, pngjs@^3.3.3: 1581 | version "3.4.0" 1582 | resolved "https://registry.npmjs.org/pngjs/-/pngjs-3.4.0.tgz#99ca7d725965fb655814eaf65f38f12bbdbf555f" 1583 | integrity sha512-NCrCHhWmnQklfH4MtJMRjZ2a8c80qXeMlQMv2uVp9ISJMTt562SbGd6n2oq0PaPgKm7Z6pL9E2UlLIhC+SHL3w== 1584 | 1585 | potrace@^2.1.8: 1586 | version "2.1.8" 1587 | resolved "https://registry.npmjs.org/potrace/-/potrace-2.1.8.tgz#50f6fba92e1e39ddef6f979b0a0f841809e0acf2" 1588 | integrity sha512-V9hI7UMJyEhNZjM8CbZaP/804ZRLgzWkCS9OOYnEZkszzj3zKR/erRdj0uFMcN3pp6x4B+AIZebmkQgGRinG/g== 1589 | dependencies: 1590 | jimp "^0.14.0" 1591 | 1592 | prebuild-install@^6.1.1: 1593 | version "6.1.2" 1594 | resolved "https://registry.npmjs.org/prebuild-install/-/prebuild-install-6.1.2.tgz#6ce5fc5978feba5d3cbffedca0682b136a0b5bff" 1595 | integrity sha512-PzYWIKZeP+967WuKYXlTOhYBgGOvTRSfaKI89XnfJ0ansRAH7hDU45X+K+FZeI1Wb/7p/NnuctPH3g0IqKUuSQ== 1596 | dependencies: 1597 | detect-libc "^1.0.3" 1598 | expand-template "^2.0.3" 1599 | github-from-package "0.0.0" 1600 | minimist "^1.2.3" 1601 | mkdirp-classic "^0.5.3" 1602 | napi-build-utils "^1.0.1" 1603 | node-abi "^2.21.0" 1604 | noop-logger "^0.1.1" 1605 | npmlog "^4.0.1" 1606 | pump "^3.0.0" 1607 | rc "^1.2.7" 1608 | simple-get "^3.0.3" 1609 | tar-fs "^2.0.0" 1610 | tunnel-agent "^0.6.0" 1611 | 1612 | process-nextick-args@~2.0.0: 1613 | version "2.0.1" 1614 | resolved "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-2.0.1.tgz#7820d9b16120cc55ca9ae7792680ae7dba6d7fe2" 1615 | integrity sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag== 1616 | 1617 | process@^0.11.1, process@^0.11.10: 1618 | version "0.11.10" 1619 | resolved "https://registry.npmjs.org/process/-/process-0.11.10.tgz#7332300e840161bda3e69a1d1d91a7d4bc16f182" 1620 | integrity sha1-czIwDoQBYb2j5podHZGn1LwW8YI= 1621 | 1622 | psl@^1.1.28: 1623 | version "1.8.0" 1624 | resolved "https://registry.yarnpkg.com/psl/-/psl-1.8.0.tgz#9326f8bcfb013adcc005fdff056acce020e51c24" 1625 | integrity sha512-RIdOzyoavK+hA18OGGWDqUTsCLhtA7IcZ/6NCs4fFJaHBDab+pDDmDIByWFRQJq2Cd7r1OoQxBGKOaztq+hjIQ== 1626 | 1627 | pump@^3.0.0: 1628 | version "3.0.0" 1629 | resolved "https://registry.npmjs.org/pump/-/pump-3.0.0.tgz#b4a2116815bde2f4e1ea602354e8c75565107a64" 1630 | integrity sha512-LwZy+p3SFs1Pytd/jYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww== 1631 | dependencies: 1632 | end-of-stream "^1.1.0" 1633 | once "^1.3.1" 1634 | 1635 | punycode@^2.1.0, punycode@^2.1.1: 1636 | version "2.1.1" 1637 | resolved "https://registry.yarnpkg.com/punycode/-/punycode-2.1.1.tgz#b58b010ac40c22c5657616c8d2c2c02c7bf479ec" 1638 | integrity sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A== 1639 | 1640 | qs@~6.5.2: 1641 | version "6.5.2" 1642 | resolved "https://registry.yarnpkg.com/qs/-/qs-6.5.2.tgz#cb3ae806e8740444584ef154ce8ee98d403f3e36" 1643 | integrity sha512-N5ZAX4/LxJmF+7wN74pUD6qAh9/wnvdQcjq9TZjevvXzSUo7bfmw91saqMjzGS2xq91/odN2dW/WOl7qQHNDGA== 1644 | 1645 | quantize@^1.0.1, quantize@^1.0.2: 1646 | version "1.0.2" 1647 | resolved "https://registry.npmjs.org/quantize/-/quantize-1.0.2.tgz#d25ac200a77b6d70f40127ca171a10e33c8546de" 1648 | integrity sha1-0lrCAKd7bXD0ASfKFxoQ4zyFRt4= 1649 | 1650 | rc@^1.2.7: 1651 | version "1.2.8" 1652 | resolved "https://registry.npmjs.org/rc/-/rc-1.2.8.tgz#cd924bf5200a075b83c188cd6b9e211b7fc0d3ed" 1653 | integrity sha512-y3bGgqKj3QBdxLbLkomlohkvsA8gdAiUQlSBJnBhfn+BPxg4bc62d8TcBW15wavDfgexCgccckhcZvywyQYPOw== 1654 | dependencies: 1655 | deep-extend "^0.6.0" 1656 | ini "~1.3.0" 1657 | minimist "^1.2.0" 1658 | strip-json-comments "~2.0.1" 1659 | 1660 | readable-stream@^2.0.6: 1661 | version "2.3.7" 1662 | resolved "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.7.tgz#1eca1cf711aef814c04f62252a36a62f6cb23b57" 1663 | integrity sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw== 1664 | dependencies: 1665 | core-util-is "~1.0.0" 1666 | inherits "~2.0.3" 1667 | isarray "~1.0.0" 1668 | process-nextick-args "~2.0.0" 1669 | safe-buffer "~5.1.1" 1670 | string_decoder "~1.1.1" 1671 | util-deprecate "~1.0.1" 1672 | 1673 | readable-stream@^3.1.1, readable-stream@^3.4.0: 1674 | version "3.6.0" 1675 | resolved "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.0.tgz#337bbda3adc0706bd3e024426a286d4b4b2c9198" 1676 | integrity sha512-BViHy7LKeTz4oNnkcLJ+lVSL6vpiFeX6/d3oSH8zCW7UxP2onchk+vTGB143xuFjHS3deTgkKoXXymXqymiIdA== 1677 | dependencies: 1678 | inherits "^2.0.3" 1679 | string_decoder "^1.1.1" 1680 | util-deprecate "^1.0.1" 1681 | 1682 | regenerator-runtime@^0.13.3, regenerator-runtime@^0.13.4: 1683 | version "0.13.7" 1684 | resolved "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.13.7.tgz#cac2dacc8a1ea675feaabaeb8ae833898ae46f55" 1685 | integrity sha512-a54FxoJDIr27pgf7IgeQGxmqUNYrcV338lf/6gH456HZ/PhX+5BcwHXG9ajESmwe6WRO0tAzRUrRmNONWgkrew== 1686 | 1687 | request@^2.44.0: 1688 | version "2.88.2" 1689 | resolved "https://registry.yarnpkg.com/request/-/request-2.88.2.tgz#d73c918731cb5a87da047e207234146f664d12b3" 1690 | integrity sha512-MsvtOrfG9ZcrOwAW+Qi+F6HbD0CWXEh9ou77uOb7FM2WPhwT7smM833PzanhJLsgXjN89Ir6V2PczXNnMpwKhw== 1691 | dependencies: 1692 | aws-sign2 "~0.7.0" 1693 | aws4 "^1.8.0" 1694 | caseless "~0.12.0" 1695 | combined-stream "~1.0.6" 1696 | extend "~3.0.2" 1697 | forever-agent "~0.6.1" 1698 | form-data "~2.3.2" 1699 | har-validator "~5.1.3" 1700 | http-signature "~1.2.0" 1701 | is-typedarray "~1.0.0" 1702 | isstream "~0.1.2" 1703 | json-stringify-safe "~5.0.1" 1704 | mime-types "~2.1.19" 1705 | oauth-sign "~0.9.0" 1706 | performance-now "^2.1.0" 1707 | qs "~6.5.2" 1708 | safe-buffer "^5.1.2" 1709 | tough-cookie "~2.5.0" 1710 | tunnel-agent "^0.6.0" 1711 | uuid "^3.3.2" 1712 | 1713 | safe-buffer@^5.0.1, safe-buffer@^5.1.2, safe-buffer@~5.2.0: 1714 | version "5.2.1" 1715 | resolved "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz#1eaf9fa9bdb1fdd4ec75f58f9cdb4e6b7827eec6" 1716 | integrity sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ== 1717 | 1718 | safe-buffer@~5.1.0, safe-buffer@~5.1.1: 1719 | version "5.1.2" 1720 | resolved "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz#991ec69d296e0313747d59bdfd2b745c35f8828d" 1721 | integrity sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g== 1722 | 1723 | safer-buffer@^2.0.2, safer-buffer@^2.1.0, safer-buffer@~2.1.0: 1724 | version "2.1.2" 1725 | resolved "https://registry.yarnpkg.com/safer-buffer/-/safer-buffer-2.1.2.tgz#44fa161b0187b9549dd84bb91802f9bd8385cd6a" 1726 | integrity sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg== 1727 | 1728 | sax@>=0.6.0: 1729 | version "1.2.4" 1730 | resolved "https://registry.npmjs.org/sax/-/sax-1.2.4.tgz#2816234e2378bddc4e5354fab5caa895df7100d9" 1731 | integrity sha512-NqVDv9TpANUjFm0N8uM5GxL36UgKi9/atZw+x7YFnQ8ckwFGKrl4xX4yWtrey3UJm5nP1kUbnYgLopqWNSRhWw== 1732 | 1733 | semver@^5.4.1: 1734 | version "5.7.1" 1735 | resolved "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz#a954f931aeba508d307bbf069eff0c01c96116f7" 1736 | integrity sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ== 1737 | 1738 | semver@^7.3.5: 1739 | version "7.3.5" 1740 | resolved "https://registry.npmjs.org/semver/-/semver-7.3.5.tgz#0b621c879348d8998e4b0e4be94b3f12e6018ef7" 1741 | integrity sha512-PoeGJYh8HK4BTO/a9Tf6ZG3veo/A7ZVsYrSA6J8ny9nb3B1VrpkuN+z9OE5wfE5p6H4LchYZsegiQgbJD94ZFQ== 1742 | dependencies: 1743 | lru-cache "^6.0.0" 1744 | 1745 | set-blocking@~2.0.0: 1746 | version "2.0.0" 1747 | resolved "https://registry.npmjs.org/set-blocking/-/set-blocking-2.0.0.tgz#045f9782d011ae9a6803ddd382b24392b3d890f7" 1748 | integrity sha1-BF+XgtARrppoA93TgrJDkrPYkPc= 1749 | 1750 | sharp@^0.28.1: 1751 | version "0.28.1" 1752 | resolved "https://registry.npmjs.org/sharp/-/sharp-0.28.1.tgz#9d7bbce1ca95b2c27482243cd4839c62ef40b0b7" 1753 | integrity sha512-4mCGMEN4ntaVuFGwHx7FvkJQkIgbI+S+F9a3bI7ugdvKjPr4sF7/ibvlRKhJyzhoQi+ODM+XYY1de8xs7MHbfA== 1754 | dependencies: 1755 | color "^3.1.3" 1756 | detect-libc "^1.0.3" 1757 | node-addon-api "^3.1.0" 1758 | prebuild-install "^6.1.1" 1759 | semver "^7.3.5" 1760 | simple-get "^3.1.0" 1761 | tar-fs "^2.1.1" 1762 | tunnel-agent "^0.6.0" 1763 | 1764 | shebang-command@^2.0.0: 1765 | version "2.0.0" 1766 | resolved "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz#ccd0af4f8835fbdc265b82461aaf0c36663f34ea" 1767 | integrity sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA== 1768 | dependencies: 1769 | shebang-regex "^3.0.0" 1770 | 1771 | shebang-regex@^3.0.0: 1772 | version "3.0.0" 1773 | resolved "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz#ae16f1644d873ecad843b0307b143362d4c42172" 1774 | integrity sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A== 1775 | 1776 | signal-exit@^3.0.0: 1777 | version "3.0.3" 1778 | resolved "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.3.tgz#a1410c2edd8f077b08b4e253c8eacfcaf057461c" 1779 | integrity sha512-VUJ49FC8U1OxwZLxIbTTrDvLnf/6TDgxZcK8wxR8zs13xpx7xbG60ndBlhNrFi2EMuFRoeDoJO7wthSLq42EjA== 1780 | 1781 | simple-concat@^1.0.0: 1782 | version "1.0.1" 1783 | resolved "https://registry.npmjs.org/simple-concat/-/simple-concat-1.0.1.tgz#f46976082ba35c2263f1c8ab5edfe26c41c9552f" 1784 | integrity sha512-cSFtAPtRhljv69IK0hTVZQ+OfE9nePi/rtJmw5UjHeVyVroEqJXP1sFztKUy1qU+xvz3u/sfYJLa947b7nAN2Q== 1785 | 1786 | simple-get@^3.0.3, simple-get@^3.1.0: 1787 | version "3.1.0" 1788 | resolved "https://registry.npmjs.org/simple-get/-/simple-get-3.1.0.tgz#b45be062435e50d159540b576202ceec40b9c6b3" 1789 | integrity sha512-bCR6cP+aTdScaQCnQKbPKtJOKDp/hj9EDLJo3Nw4y1QksqaovlW/bnptB6/c1e+qmNIDHRK+oXFDdEqBT8WzUA== 1790 | dependencies: 1791 | decompress-response "^4.2.0" 1792 | once "^1.3.1" 1793 | simple-concat "^1.0.0" 1794 | 1795 | simple-swizzle@^0.2.2: 1796 | version "0.2.2" 1797 | resolved "https://registry.npmjs.org/simple-swizzle/-/simple-swizzle-0.2.2.tgz#a4da6b635ffcccca33f70d17cb92592de95e557a" 1798 | integrity sha1-pNprY1/8zMoz9w0Xy5JZLeleVXo= 1799 | dependencies: 1800 | is-arrayish "^0.3.1" 1801 | 1802 | source-map@^0.6.1: 1803 | version "0.6.1" 1804 | resolved "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz#74722af32e9614e9c287a8d0bbde48b5e2f1a263" 1805 | integrity sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g== 1806 | 1807 | sshpk@^1.7.0: 1808 | version "1.16.1" 1809 | resolved "https://registry.yarnpkg.com/sshpk/-/sshpk-1.16.1.tgz#fb661c0bef29b39db40769ee39fa70093d6f6877" 1810 | integrity sha512-HXXqVUq7+pcKeLqqZj6mHFUMvXtOJt1uoUx09pFW6011inTMxqI8BA8PM95myrIyyKwdnzjdFjLiE6KBPVtJIg== 1811 | dependencies: 1812 | asn1 "~0.2.3" 1813 | assert-plus "^1.0.0" 1814 | bcrypt-pbkdf "^1.0.0" 1815 | dashdash "^1.12.0" 1816 | ecc-jsbn "~0.1.1" 1817 | getpass "^0.1.1" 1818 | jsbn "~0.1.0" 1819 | safer-buffer "^2.0.2" 1820 | tweetnacl "~0.14.0" 1821 | 1822 | stable@^0.1.8: 1823 | version "0.1.8" 1824 | resolved "https://registry.npmjs.org/stable/-/stable-0.1.8.tgz#836eb3c8382fe2936feaf544631017ce7d47a3cf" 1825 | integrity sha512-ji9qxRnOVfcuLDySj9qzhGSEFVobyt1kIOSkj1qZzYLzq7Tos/oUUWvotUPQLlrsidqsK6tBH89Bc9kL5zHA6w== 1826 | 1827 | string-width@^1.0.1: 1828 | version "1.0.2" 1829 | resolved "https://registry.npmjs.org/string-width/-/string-width-1.0.2.tgz#118bdf5b8cdc51a2a7e70d211e07e2b0b9b107d3" 1830 | integrity sha1-EYvfW4zcUaKn5w0hHgfisLmxB9M= 1831 | dependencies: 1832 | code-point-at "^1.0.0" 1833 | is-fullwidth-code-point "^1.0.0" 1834 | strip-ansi "^3.0.0" 1835 | 1836 | "string-width@^1.0.2 || 2": 1837 | version "2.1.1" 1838 | resolved "https://registry.npmjs.org/string-width/-/string-width-2.1.1.tgz#ab93f27a8dc13d28cac815c462143a6d9012ae9e" 1839 | integrity sha512-nOqH59deCq9SRHlxq1Aw85Jnt4w6KvLKqWVik6oA9ZklXLNIOlqg4F2yrT1MVaTjAqvVwdfeZ7w7aCvJD7ugkw== 1840 | dependencies: 1841 | is-fullwidth-code-point "^2.0.0" 1842 | strip-ansi "^4.0.0" 1843 | 1844 | string.prototype.replaceall@^1.0.5: 1845 | version "1.0.5" 1846 | resolved "https://registry.npmjs.org/string.prototype.replaceall/-/string.prototype.replaceall-1.0.5.tgz#3eae8b115c588ece949b14fa2993d86fc8ec87b1" 1847 | integrity sha512-YUjdWElI9pgKo7mrPOMKHFZxcAa0v1uqoJkMHtlJW63rMkPLkQH71ao2XNkKY2ksHKHC8ZUFwNjN9Vry+QyCvg== 1848 | dependencies: 1849 | call-bind "^1.0.2" 1850 | define-properties "^1.1.3" 1851 | es-abstract "^1.18.0-next.2" 1852 | get-intrinsic "^1.1.1" 1853 | has-symbols "^1.0.1" 1854 | is-regex "^1.1.2" 1855 | 1856 | string.prototype.trimend@^1.0.4: 1857 | version "1.0.4" 1858 | resolved "https://registry.npmjs.org/string.prototype.trimend/-/string.prototype.trimend-1.0.4.tgz#e75ae90c2942c63504686c18b287b4a0b1a45f80" 1859 | integrity sha512-y9xCjw1P23Awk8EvTpcyL2NIr1j7wJ39f+k6lvRnSMz+mz9CGz9NYPelDk42kOz6+ql8xjfK8oYzy3jAP5QU5A== 1860 | dependencies: 1861 | call-bind "^1.0.2" 1862 | define-properties "^1.1.3" 1863 | 1864 | string.prototype.trimstart@^1.0.4: 1865 | version "1.0.4" 1866 | resolved "https://registry.npmjs.org/string.prototype.trimstart/-/string.prototype.trimstart-1.0.4.tgz#b36399af4ab2999b4c9c648bd7a3fb2bb26feeed" 1867 | integrity sha512-jh6e984OBfvxS50tdY2nRZnoC5/mLFKOREQfw8t5yytkoUsJRNxvI/E39qu1sD0OtWI3OC0XgKSmcWwziwYuZw== 1868 | dependencies: 1869 | call-bind "^1.0.2" 1870 | define-properties "^1.1.3" 1871 | 1872 | string_decoder@^1.1.1: 1873 | version "1.3.0" 1874 | resolved "https://registry.npmjs.org/string_decoder/-/string_decoder-1.3.0.tgz#42f114594a46cf1a8e30b0a84f56c78c3edac21e" 1875 | integrity sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA== 1876 | dependencies: 1877 | safe-buffer "~5.2.0" 1878 | 1879 | string_decoder@~1.1.1: 1880 | version "1.1.1" 1881 | resolved "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz#9cf1611ba62685d7030ae9e4ba34149c3af03fc8" 1882 | integrity sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg== 1883 | dependencies: 1884 | safe-buffer "~5.1.0" 1885 | 1886 | strip-ansi@^3.0.0, strip-ansi@^3.0.1: 1887 | version "3.0.1" 1888 | resolved "https://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.1.tgz#6a385fb8853d952d5ff05d0e8aaf94278dc63dcf" 1889 | integrity sha1-ajhfuIU9lS1f8F0Oiq+UJ43GPc8= 1890 | dependencies: 1891 | ansi-regex "^2.0.0" 1892 | 1893 | strip-ansi@^4.0.0: 1894 | version "4.0.0" 1895 | resolved "https://registry.npmjs.org/strip-ansi/-/strip-ansi-4.0.0.tgz#a8479022eb1ac368a871389b635262c505ee368f" 1896 | integrity sha1-qEeQIusaw2iocTibY1JixQXuNo8= 1897 | dependencies: 1898 | ansi-regex "^3.0.0" 1899 | 1900 | strip-json-comments@~2.0.1: 1901 | version "2.0.1" 1902 | resolved "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-2.0.1.tgz#3c531942e908c2697c0ec344858c286c7ca0a60a" 1903 | integrity sha1-PFMZQukIwml8DsNEhYwobHygpgo= 1904 | 1905 | supports-color@^7.1.0: 1906 | version "7.2.0" 1907 | resolved "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz#1b7dcdcb32b8138801b3e478ba6a51caa89648da" 1908 | integrity sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw== 1909 | dependencies: 1910 | has-flag "^4.0.0" 1911 | 1912 | svgo@^2.3.0: 1913 | version "2.3.0" 1914 | resolved "https://registry.npmjs.org/svgo/-/svgo-2.3.0.tgz#6b3af81d0cbd1e19c83f5f63cec2cb98c70b5373" 1915 | integrity sha512-fz4IKjNO6HDPgIQxu4IxwtubtbSfGEAJUq/IXyTPIkGhWck/faiiwfkvsB8LnBkKLvSoyNNIY6d13lZprJMc9Q== 1916 | dependencies: 1917 | "@trysound/sax" "0.1.1" 1918 | chalk "^4.1.0" 1919 | commander "^7.1.0" 1920 | css-select "^3.1.2" 1921 | css-tree "^1.1.2" 1922 | csso "^4.2.0" 1923 | stable "^0.1.8" 1924 | 1925 | tar-fs@^2.0.0, tar-fs@^2.1.1: 1926 | version "2.1.1" 1927 | resolved "https://registry.npmjs.org/tar-fs/-/tar-fs-2.1.1.tgz#489a15ab85f1f0befabb370b7de4f9eb5cbe8784" 1928 | integrity sha512-V0r2Y9scmbDRLCNex/+hYzvp/zyYjvFbHPNgVTKfQvVrb6guiE/fxP+XblDNR011utopbkex2nM4dHNV6GDsng== 1929 | dependencies: 1930 | chownr "^1.1.1" 1931 | mkdirp-classic "^0.5.2" 1932 | pump "^3.0.0" 1933 | tar-stream "^2.1.4" 1934 | 1935 | tar-stream@^2.1.4: 1936 | version "2.2.0" 1937 | resolved "https://registry.npmjs.org/tar-stream/-/tar-stream-2.2.0.tgz#acad84c284136b060dc3faa64474aa9aebd77287" 1938 | integrity sha512-ujeqbceABgwMZxEJnk2HDY2DlnUZ+9oEcb1KzTVfYHio0UE6dG71n60d8D2I4qNvleWrrXpmjpt7vZeF1LnMZQ== 1939 | dependencies: 1940 | bl "^4.0.3" 1941 | end-of-stream "^1.4.1" 1942 | fs-constants "^1.0.0" 1943 | inherits "^2.0.3" 1944 | readable-stream "^3.1.1" 1945 | 1946 | through@^2.3.4: 1947 | version "2.3.8" 1948 | resolved "https://registry.yarnpkg.com/through/-/through-2.3.8.tgz#0dd4c9ffaabc357960b1b724115d7e0e86a2e1f5" 1949 | integrity sha1-DdTJ/6q8NXlgsbckEV1+Doai4fU= 1950 | 1951 | timm@^1.6.1: 1952 | version "1.7.1" 1953 | resolved "https://registry.npmjs.org/timm/-/timm-1.7.1.tgz#96bab60c7d45b5a10a8a4d0f0117c6b7e5aff76f" 1954 | integrity sha512-IjZc9KIotudix8bMaBW6QvMuq64BrJWFs1+4V0lXwWGQZwH+LnX87doAYhem4caOEusRP9/g6jVDQmZ8XOk1nw== 1955 | 1956 | tinycolor2@^1.4.1, tinycolor2@^1.4.2: 1957 | version "1.4.2" 1958 | resolved "https://registry.npmjs.org/tinycolor2/-/tinycolor2-1.4.2.tgz#3f6a4d1071ad07676d7fa472e1fac40a719d8803" 1959 | integrity sha512-vJhccZPs965sV/L2sU4oRQVAos0pQXwsvTLkWYdqJ+a8Q5kPFzJTuOFwy7UniPli44NKQGAglksjvOcpo95aZA== 1960 | 1961 | tough-cookie@~2.5.0: 1962 | version "2.5.0" 1963 | resolved "https://registry.yarnpkg.com/tough-cookie/-/tough-cookie-2.5.0.tgz#cd9fb2a0aa1d5a12b473bd9fb96fa3dcff65ade2" 1964 | integrity sha512-nlLsUzgm1kfLXSXfRZMc1KLAugd4hqJHDTvc2hDIwS3mZAfMEuMbc03SujMF+GEcpaX/qboeycw6iO8JwVv2+g== 1965 | dependencies: 1966 | psl "^1.1.28" 1967 | punycode "^2.1.1" 1968 | 1969 | tunnel-agent@^0.6.0: 1970 | version "0.6.0" 1971 | resolved "https://registry.npmjs.org/tunnel-agent/-/tunnel-agent-0.6.0.tgz#27a5dea06b36b04a0a9966774b290868f0fc40fd" 1972 | integrity sha1-J6XeoGs2sEoKmWZ3SykIaPD8QP0= 1973 | dependencies: 1974 | safe-buffer "^5.0.1" 1975 | 1976 | tweetnacl@^0.14.3, tweetnacl@~0.14.0: 1977 | version "0.14.5" 1978 | resolved "https://registry.yarnpkg.com/tweetnacl/-/tweetnacl-0.14.5.tgz#5ae68177f192d4456269d108afa93ff8743f4f64" 1979 | integrity sha1-WuaBd/GS1EViadEIr6k/+HQ/T2Q= 1980 | 1981 | unbox-primitive@^1.0.0: 1982 | version "1.0.1" 1983 | resolved "https://registry.npmjs.org/unbox-primitive/-/unbox-primitive-1.0.1.tgz#085e215625ec3162574dc8859abee78a59b14471" 1984 | integrity sha512-tZU/3NqK3dA5gpE1KtyiJUrEB0lxnGkMFHptJ7q6ewdZ8s12QrODwNbhIJStmJkd1QDXa1NRA8aF2A1zk/Ypyw== 1985 | dependencies: 1986 | function-bind "^1.1.1" 1987 | has-bigints "^1.0.1" 1988 | has-symbols "^1.0.2" 1989 | which-boxed-primitive "^1.0.2" 1990 | 1991 | uniq@^1.0.0: 1992 | version "1.0.1" 1993 | resolved "https://registry.yarnpkg.com/uniq/-/uniq-1.0.1.tgz#b31c5ae8254844a3a8281541ce2b04b865a734ff" 1994 | integrity sha1-sxxa6CVIRKOoKBVBzisEuGWnNP8= 1995 | 1996 | universalify@^2.0.0: 1997 | version "2.0.0" 1998 | resolved "https://registry.npmjs.org/universalify/-/universalify-2.0.0.tgz#75a4984efedc4b08975c5aeb73f530d02df25717" 1999 | integrity sha512-hAZsKq7Yy11Zu1DE0OzWjw7nnLZmJZYTDZZyEFHZdUhV8FkH5MCfoU1XMaxXovpyW5nq5scPqq0ZDP9Zyl04oQ== 2000 | 2001 | uri-js@^4.2.2: 2002 | version "4.4.1" 2003 | resolved "https://registry.yarnpkg.com/uri-js/-/uri-js-4.4.1.tgz#9b1a52595225859e55f669d928f88c6c57f2a77e" 2004 | integrity sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg== 2005 | dependencies: 2006 | punycode "^2.1.0" 2007 | 2008 | utif@^2.0.1: 2009 | version "2.0.1" 2010 | resolved "https://registry.npmjs.org/utif/-/utif-2.0.1.tgz#9e1582d9bbd20011a6588548ed3266298e711759" 2011 | integrity sha512-Z/S1fNKCicQTf375lIP9G8Sa1H/phcysstNrrSdZKj1f9g58J4NMgb5IgiEZN9/nLMPDwF0W7hdOe9Qq2IYoLg== 2012 | dependencies: 2013 | pako "^1.0.5" 2014 | 2015 | util-deprecate@^1.0.1, util-deprecate@~1.0.1: 2016 | version "1.0.2" 2017 | resolved "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf" 2018 | integrity sha1-RQ1Nyfpw3nMnYvvS1KKJgUGaDM8= 2019 | 2020 | util@^0.10.3: 2021 | version "0.10.4" 2022 | resolved "https://registry.npmjs.org/util/-/util-0.10.4.tgz#3aa0125bfe668a4672de58857d3ace27ecb76901" 2023 | integrity sha512-0Pm9hTQ3se5ll1XihRic3FDIku70C+iHUdT/W926rSgHV5QgXsYbKZN8MSC3tJtSkhuROzvsQjAaFENRXr+19A== 2024 | dependencies: 2025 | inherits "2.0.3" 2026 | 2027 | uuid@^3.3.2: 2028 | version "3.4.0" 2029 | resolved "https://registry.yarnpkg.com/uuid/-/uuid-3.4.0.tgz#b23e4358afa8a202fe7a100af1f5f883f02007ee" 2030 | integrity sha512-HjSDRw6gZE5JMggctHBcjVak08+KEVhSIiDzFnT9S9aegmp85S/bReBVTb4QTFaRNptJ9kuYaNhnbNEOkbKb/A== 2031 | 2032 | uuid@^8.3.2: 2033 | version "8.3.2" 2034 | resolved "https://registry.npmjs.org/uuid/-/uuid-8.3.2.tgz#80d5b5ced271bb9af6c445f21a1a04c606cefbe2" 2035 | integrity sha512-+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg== 2036 | 2037 | verror@1.10.0: 2038 | version "1.10.0" 2039 | resolved "https://registry.yarnpkg.com/verror/-/verror-1.10.0.tgz#3a105ca17053af55d6e270c1f8288682e18da400" 2040 | integrity sha1-OhBcoXBTr1XW4nDB+CiGguGNpAA= 2041 | dependencies: 2042 | assert-plus "^1.0.0" 2043 | core-util-is "1.0.2" 2044 | extsprintf "^1.2.0" 2045 | 2046 | which-boxed-primitive@^1.0.2: 2047 | version "1.0.2" 2048 | resolved "https://registry.npmjs.org/which-boxed-primitive/-/which-boxed-primitive-1.0.2.tgz#13757bc89b209b049fe5d86430e21cf40a89a8e6" 2049 | integrity sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg== 2050 | dependencies: 2051 | is-bigint "^1.0.1" 2052 | is-boolean-object "^1.1.0" 2053 | is-number-object "^1.0.4" 2054 | is-string "^1.0.5" 2055 | is-symbol "^1.0.3" 2056 | 2057 | which@^2.0.1: 2058 | version "2.0.2" 2059 | resolved "https://registry.npmjs.org/which/-/which-2.0.2.tgz#7c6a8dd0a636a0327e10b59c9286eee93f3f51b1" 2060 | integrity sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA== 2061 | dependencies: 2062 | isexe "^2.0.0" 2063 | 2064 | wide-align@^1.1.0: 2065 | version "1.1.3" 2066 | resolved "https://registry.npmjs.org/wide-align/-/wide-align-1.1.3.tgz#ae074e6bdc0c14a431e804e624549c633b000457" 2067 | integrity sha512-QGkOQc8XL6Bt5PwnsExKBPuMKBxnGxWWW3fU55Xt4feHozMUhdUMaBCk290qpm/wG5u/RSKzwdAC4i51YigihA== 2068 | dependencies: 2069 | string-width "^1.0.2 || 2" 2070 | 2071 | wrappy@1: 2072 | version "1.0.2" 2073 | resolved "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f" 2074 | integrity sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8= 2075 | 2076 | xhr@^2.0.1: 2077 | version "2.6.0" 2078 | resolved "https://registry.npmjs.org/xhr/-/xhr-2.6.0.tgz#b69d4395e792b4173d6b7df077f0fc5e4e2b249d" 2079 | integrity sha512-/eCGLb5rxjx5e3mF1A7s+pLlR6CGyqWN91fv1JgER5mVWg1MZmlhBvy9kjcsOdRk8RrIujotWyJamfyrp+WIcA== 2080 | dependencies: 2081 | global "~4.4.0" 2082 | is-function "^1.0.1" 2083 | parse-headers "^2.0.0" 2084 | xtend "^4.0.0" 2085 | 2086 | xml-parse-from-string@^1.0.0: 2087 | version "1.0.1" 2088 | resolved "https://registry.npmjs.org/xml-parse-from-string/-/xml-parse-from-string-1.0.1.tgz#a9029e929d3dbcded169f3c6e28238d95a5d5a28" 2089 | integrity sha1-qQKekp09vN7RafPG4oI42VpdWig= 2090 | 2091 | xml2js@^0.4.5: 2092 | version "0.4.23" 2093 | resolved "https://registry.npmjs.org/xml2js/-/xml2js-0.4.23.tgz#a0c69516752421eb2ac758ee4d4ccf58843eac66" 2094 | integrity sha512-ySPiMjM0+pLDftHgXY4By0uswI3SPKLDw/i3UXbnO8M/p28zqexCUoPmQFrYD+/1BzhGJSs2i1ERWKJAtiLrug== 2095 | dependencies: 2096 | sax ">=0.6.0" 2097 | xmlbuilder "~11.0.0" 2098 | 2099 | xmlbuilder@~11.0.0: 2100 | version "11.0.1" 2101 | resolved "https://registry.npmjs.org/xmlbuilder/-/xmlbuilder-11.0.1.tgz#be9bae1c8a046e76b31127726347d0ad7002beb3" 2102 | integrity sha512-fDlsI/kFEx7gLvbecc0/ohLG50fugQp8ryHzMTuW9vSa1GJ0XYWKnhsUx7oie3G98+r56aTQIUB4kht42R3JvA== 2103 | 2104 | xtend@^4.0.0: 2105 | version "4.0.2" 2106 | resolved "https://registry.npmjs.org/xtend/-/xtend-4.0.2.tgz#bb72779f5fa465186b1f438f674fa347fdb5db54" 2107 | integrity sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ== 2108 | 2109 | yallist@^4.0.0: 2110 | version "4.0.0" 2111 | resolved "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz#9bb92790d9c0effec63be73519e11a35019a3a72" 2112 | integrity sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A== 2113 | --------------------------------------------------------------------------------