├── .github └── workflows │ └── main.yml ├── LICENSE ├── README.md ├── com.github.vikdevelop.photopea_app.desktop ├── data ├── com.github.vikdevelop.photopea_app.metainfo.xml └── icons │ ├── - │ └── com.github.vikdevelop.photopea_app.png ├── package-lock.json ├── package.json ├── resources └── photopea_app.png ├── screenshots ├── Photopea-1.png ├── Photopea_2.png ├── Photopea_3.png ├── h ├── photopea-default.png ├── photopea.png ├── photopea2.png └── photopea3.png ├── src ├── main.js ├── preload.js └── renderer │ └── renderer.js └── yarn.lock /.github/workflows/main.yml: -------------------------------------------------------------------------------- 1 | name: photopea_app 2 | 3 | on: push 4 | 5 | jobs: 6 | release: 7 | runs-on: ${{ matrix.os }} 8 | 9 | strategy: 10 | matrix: 11 | os: [ubuntu-latest] 12 | 13 | steps: 14 | - uses: actions/checkout@v2 15 | - uses: borales/actions-yarn@v2.3.0 16 | - uses: borales/actions-yarn@v2.3.0 17 | with: 18 | cmd: install 19 | - uses: borales/actions-yarn@v2.3.0 20 | with: 21 | cmd: electron-packager ./ photopea --platform=linux --arch=x64 --electron-version=15.4.1 --out=photopea_build/ 22 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2021 vik.dev 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 | # Photocrea Desktop App for Flatpak 2 | ![Photopea](https://github.com/vikdevelop/photopea_app/blob/js/screenshots/Photopea-1.png) 3 | 4 | ![Photopea2](https://github.com/vikdevelop/photopea_app/blob/js/screenshots/Photopea_2.png) 5 | 6 |

Install Electron version

7 | 8 |

Build WebkitGTK (C++) version

9 | 10 | ```bash 11 | git clone https://github.com/vikdevelop/photocrea --branch=cpp && cd photocrea && c++ photopea.cpp `pkg-config --cflags --libs gtk+-3.0 webkit2gtk-4.0` -o photopea_app 12 | ``` 13 | -------------------------------------------------------------------------------- /com.github.vikdevelop.photopea_app.desktop: -------------------------------------------------------------------------------- 1 | [Desktop Entry] 2 | Name=Photocrea 3 | Type=Application 4 | Comment=Advanced photo editor 5 | Terminal=false 6 | Icon=com.github.vikdevelop.photopea_app 7 | Exec=photopea.sh 8 | Categories=Graphics 9 | -------------------------------------------------------------------------------- /data/com.github.vikdevelop.photopea_app.metainfo.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | com.github.vikdevelop.photopea_app 5 | com.github.vikdevelop.photopea_app.desktop 6 | Photocrea 7 | Advanced image editor 8 | CC0-1.0 9 | MIT 10 | 11 | vikdevelop 12 | 13 | 14 | 15 |

Photocrea is a free image editor that includes all the familiar features like layers, filters, magic wand selection, etc. It supports formats from Adobe Photoshop i.e. .PSD, but also .XCF from GIMP, .Sketch from Sketch App, .XD from Adobe XD and .CDR from CorelDRAW software. From 2020 it also supports .FIG files from WinFIG, .RAW and .TGA images.

16 |

NOTES: This application is unofficial wrapper of web application Photopea. Only the Electron wrapper itself is licensed by MIT. The web application is under a proprietary license.

17 |
18 | 19 | https://photopea.com 20 | https://github.com/photopea/photopea/issues 21 | https://www.photopea.com/learn/ 22 | https://www.photopea.com/translate/ 23 | https://github.com/vikdevelop/photopea_app 24 | 25 | 26 | 27 | Initial Page 28 | https://raw.githubusercontent.com/vikdevelop/photopea_app/js/screenshots/Photopea-1.png 29 | 30 | 31 | New Project Page 32 | https://raw.githubusercontent.com/vikdevelop/photopea_app/js/screenshots/Photopea_2.png 33 | 34 | 35 | Templates Page 36 | https://raw.githubusercontent.com/vikdevelop/photopea_app/js/screenshots/Photopea_3.png 37 | 38 | 39 | 40 | 41 | 42 | 43 | Graphics 44 | Photography 45 | 46 | 47 | 48 | #92FFFA 49 | #076152 50 | 51 | 52 | 53 | 54 | 55 |

Fixed blocking the ads (#7), thanks to @Melechtna

56 |
57 |
58 | 59 | 60 |

Changed name and icon of the application.

61 |
62 |
63 | 64 | 65 |

Minor bug fixes

66 |
67 |
68 | 69 | 70 |

Updated Electron (or other components) to latest version.

71 |
72 |
73 | 74 | 75 |

Changed rendering kernel from WebKitGTK to Electron. This makes the application easier to work with, and faster.

76 |
77 |
78 | 79 | 80 |

Updated the .desktop file

81 |
82 |
83 | 84 | 85 |

Edited the maximum resolution from 1920x1080 px to 3840x2160 px.

86 |
87 |
88 | 89 | 90 |
    91 |
  • Updated metainfo file: added App Category, edited description and added help link
  • 92 |
93 |
94 |
95 | 96 | 97 |
    98 |
  • Added OpenGL rendering permission.
  • 99 |
100 |
101 |
102 | 103 | 104 |
105 |
106 | -------------------------------------------------------------------------------- /data/icons/-: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /data/icons/com.github.vikdevelop.photopea_app.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vikdevelop/photopea_app/230d3b11bd397d13cf330733e8574f696fdbd1bf/data/icons/com.github.vikdevelop.photopea_app.png -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "photopea", 3 | "version": "2.0.2", 4 | "description": "Electron app of photopea website", 5 | "main": "src/main.js", 6 | "scripts": { 7 | "start": "electron ." 8 | }, 9 | "repository": "https://github.com/vikdevelop/photopea_app", 10 | "keywords": [ 11 | "Electron", 12 | "quick", 13 | "start", 14 | "tutorial", 15 | "demo" 16 | ], 17 | "author": "vikdevelop", 18 | "license": "MIT", 19 | "devDependencies": { 20 | "electron": "^24.0.0", 21 | "electron-packager": "^17.1.1" 22 | }, 23 | "dependencies": { 24 | "mksnapshot": "^0.3.5", 25 | "yarn": "^1.22.19", 26 | "yauzl": "^2.10.0" 27 | }, 28 | "private": false 29 | } 30 | -------------------------------------------------------------------------------- /resources/photopea_app.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vikdevelop/photopea_app/230d3b11bd397d13cf330733e8574f696fdbd1bf/resources/photopea_app.png -------------------------------------------------------------------------------- /screenshots/Photopea-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vikdevelop/photopea_app/230d3b11bd397d13cf330733e8574f696fdbd1bf/screenshots/Photopea-1.png -------------------------------------------------------------------------------- /screenshots/Photopea_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vikdevelop/photopea_app/230d3b11bd397d13cf330733e8574f696fdbd1bf/screenshots/Photopea_2.png -------------------------------------------------------------------------------- /screenshots/Photopea_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vikdevelop/photopea_app/230d3b11bd397d13cf330733e8574f696fdbd1bf/screenshots/Photopea_3.png -------------------------------------------------------------------------------- /screenshots/h: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /screenshots/photopea-default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vikdevelop/photopea_app/230d3b11bd397d13cf330733e8574f696fdbd1bf/screenshots/photopea-default.png -------------------------------------------------------------------------------- /screenshots/photopea.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vikdevelop/photopea_app/230d3b11bd397d13cf330733e8574f696fdbd1bf/screenshots/photopea.png -------------------------------------------------------------------------------- /screenshots/photopea2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vikdevelop/photopea_app/230d3b11bd397d13cf330733e8574f696fdbd1bf/screenshots/photopea2.png -------------------------------------------------------------------------------- /screenshots/photopea3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vikdevelop/photopea_app/230d3b11bd397d13cf330733e8574f696fdbd1bf/screenshots/photopea3.png -------------------------------------------------------------------------------- /src/main.js: -------------------------------------------------------------------------------- 1 | const { app, BrowserWindow } = require('electron'); 2 | const path = require('path'); 3 | 4 | const devMode = false; 5 | 6 | async function createWindow() { 7 | const win = new BrowserWindow({ 8 | width: 1920, 9 | height: 1080, 10 | webPreferences: { 11 | nodeIntegration: false, 12 | contextIsolation: true, 13 | preload: path.join(__dirname, 'renderer/renderer.js') 14 | }, 15 | }); 16 | 17 | if (devMode) { 18 | win.setMenuBarVisibility(true); 19 | win.webContents.openDevTools(); 20 | } else { 21 | win.setMenuBarVisibility(false); 22 | } 23 | 24 | win.on('close', () => { 25 | win.destroy(); 26 | }); 27 | 28 | console.log('Loading Photopea with #8887'); 29 | await win.loadURL('https://www.photopea.com/#8887'); 30 | 31 | } 32 | 33 | app.whenReady().then(() => { 34 | createWindow().catch(err => console.error('App failed:', err.message)); 35 | }); 36 | 37 | app.on('window-all-closed', () => { 38 | if (process.platform !== 'darwin') { 39 | app.quit(); 40 | } 41 | }); 42 | 43 | app.on('activate', () => { 44 | if (BrowserWindow.getAllWindows().length === 0) { 45 | createWindow().catch(err => console.error('Reactivation failed:', err.message)); 46 | } 47 | }); 48 | -------------------------------------------------------------------------------- /src/preload.js: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /src/renderer/renderer.js: -------------------------------------------------------------------------------- 1 | // renderer.js 2 | (function () { 3 | // Function to remove the "Account" button 4 | function killAccountButton() { 5 | const buttons = document.querySelectorAll('span button.fitem.bbtn[style="color:#ffffff; background-color:#bb0000"]'); 6 | buttons.forEach(button => { 7 | if (button.textContent.trim() === 'Account') { 8 | button.remove(); 9 | console.log('Account button removed'); // Debug log 10 | } 11 | }); 12 | } 13 | 14 | // Wait for the page to fully load, then remove the button once 15 | window.addEventListener('load', () => { 16 | console.log('Page fully loaded, removing Account button'); 17 | killAccountButton(); 18 | }); 19 | })(); 20 | -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- 1 | # THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY. 2 | # yarn lockfile v1 3 | 4 | 5 | "@electron/get@^1.13.0", "@electron/get@^1.6.0": 6 | version "1.14.1" 7 | resolved "https://registry.yarnpkg.com/@electron/get/-/get-1.14.1.tgz#16ba75f02dffb74c23965e72d617adc721d27f40" 8 | integrity sha512-BrZYyL/6m0ZXz/lDxy/nlVhQz+WF+iPS6qXolEU8atw7h6v1aYkjwJZ63m+bJMBTxDE66X+r2tPS4a/8C82sZw== 9 | dependencies: 10 | debug "^4.1.1" 11 | env-paths "^2.2.0" 12 | fs-extra "^8.1.0" 13 | got "^9.6.0" 14 | progress "^2.0.3" 15 | semver "^6.2.0" 16 | sumchecker "^3.0.1" 17 | optionalDependencies: 18 | global-agent "^3.0.0" 19 | global-tunnel-ng "^2.7.1" 20 | 21 | "@electron/universal@^1.2.1": 22 | version "1.2.1" 23 | resolved "https://registry.yarnpkg.com/@electron/universal/-/universal-1.2.1.tgz#3c2c4ff37063a4e9ab1e6ff57db0bc619bc82339" 24 | integrity sha512-7323HyMh7KBAl/nPDppdLsC87G6RwRU02dy5FPeGB1eS7rUePh55+WNWiDPLhFQqqVPHzh77M69uhmoT8XnwMQ== 25 | dependencies: 26 | "@malept/cross-spawn-promise" "^1.1.0" 27 | asar "^3.1.0" 28 | debug "^4.3.1" 29 | dir-compare "^2.4.0" 30 | fs-extra "^9.0.1" 31 | minimatch "^3.0.4" 32 | plist "^3.0.4" 33 | 34 | "@malept/cross-spawn-promise@^1.1.0": 35 | version "1.1.1" 36 | resolved "https://registry.yarnpkg.com/@malept/cross-spawn-promise/-/cross-spawn-promise-1.1.1.tgz#504af200af6b98e198bce768bc1730c6936ae01d" 37 | integrity sha512-RTBGWL5FWQcg9orDOCcp4LvItNzUPcyEU9bwaeJX0rJ1IQxzucC48Y0/sQLp/g6t99IQgAlGIaesJS+gTn7tVQ== 38 | dependencies: 39 | cross-spawn "^7.0.1" 40 | 41 | "@sindresorhus/is@^0.14.0": 42 | version "0.14.0" 43 | resolved "https://registry.yarnpkg.com/@sindresorhus/is/-/is-0.14.0.tgz#9fb3a3cf3132328151f353de4632e01e52102bea" 44 | integrity sha512-9NET910DNaIPngYnLLPeg+Ogzqsi9uM4mSboU5y6p8S5DzMTVEsJZrawi+BoDNUVBa2DhJqQYUFvMDfgU062LQ== 45 | 46 | "@szmarczak/http-timer@^1.1.2": 47 | version "1.1.2" 48 | resolved "https://registry.yarnpkg.com/@szmarczak/http-timer/-/http-timer-1.1.2.tgz#b1665e2c461a2cd92f4c1bbf50d5454de0d4b421" 49 | integrity sha512-XIB2XbzHTN6ieIjfIMV9hlVcfPU26s2vafYWQcZHWXHOxiaRZYEDKEwdl129Zyg50+foYV2jCgtrqSA6qNuNSA== 50 | dependencies: 51 | defer-to-connect "^1.0.1" 52 | 53 | "@types/glob@^7.1.1": 54 | version "7.2.0" 55 | resolved "https://registry.yarnpkg.com/@types/glob/-/glob-7.2.0.tgz#bc1b5bf3aa92f25bd5dd39f35c57361bdce5b2eb" 56 | integrity sha512-ZUxbzKl0IfJILTS6t7ip5fQQM/J3TJYubDm3nMbgubNNYS62eXeUpoLUC8/7fJNiFYHTrGPQn7hspDUzIHX3UA== 57 | dependencies: 58 | "@types/minimatch" "*" 59 | "@types/node" "*" 60 | 61 | "@types/minimatch@*": 62 | version "3.0.5" 63 | resolved "https://registry.yarnpkg.com/@types/minimatch/-/minimatch-3.0.5.tgz#1001cc5e6a3704b83c236027e77f2f58ea010f40" 64 | integrity sha512-Klz949h02Gz2uZCMGwDUSDS1YBlTdDDgbWHi+81l29tQALUtvz4rAYi5uoVhE5Lagoq6DeqAUlbrHvW/mXDgdQ== 65 | 66 | "@types/node@*": 67 | version "17.0.25" 68 | resolved "https://registry.yarnpkg.com/@types/node/-/node-17.0.25.tgz#527051f3c2f77aa52e5dc74e45a3da5fb2301448" 69 | integrity sha512-wANk6fBrUwdpY4isjWrKTufkrXdu1D2YHCot2fD/DfWxF5sMrVSA+KN7ydckvaTCh0HiqX9IVl0L5/ZoXg5M7w== 70 | 71 | "@types/node@^14.6.2": 72 | version "14.18.13" 73 | resolved "https://registry.yarnpkg.com/@types/node/-/node-14.18.13.tgz#6ad4d9db59e6b3faf98dcfe4ca9d2aec84443277" 74 | integrity sha512-Z6/KzgyWOga3pJNS42A+zayjhPbf2zM3hegRQaOPnLOzEi86VV++6FLDWgR1LGrVCRufP/ph2daa3tEa5br1zA== 75 | 76 | "@types/yauzl@^2.9.1": 77 | version "2.10.0" 78 | resolved "https://registry.yarnpkg.com/@types/yauzl/-/yauzl-2.10.0.tgz#b3248295276cf8c6f153ebe6a9aba0c988cb2599" 79 | integrity sha512-Cn6WYCm0tXv8p6k+A8PvbDG763EDpBoTzHdA+Q/MF6H3sapGjCm9NzoaJncJS9tUKSuCoDs9XHxYYsQDgxR6kw== 80 | dependencies: 81 | "@types/node" "*" 82 | 83 | abbrev@1: 84 | version "1.1.1" 85 | resolved "https://registry.yarnpkg.com/abbrev/-/abbrev-1.1.1.tgz#f8f2c887ad10bf67f634f005b6987fed3179aac8" 86 | integrity sha512-nne9/IiQ/hzIhY6pdDnbBtz7DjPTKrY00P/zvPSm5pOFkl6xuGrGnXn/VtTNNfNtAfZ9/1RtehkszU9qcTii0Q== 87 | 88 | ansi-regex@^2.0.0: 89 | version "2.1.1" 90 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-2.1.1.tgz#c3b33ab5ee360d86e0e628f0468ae7ef27d654df" 91 | integrity sha1-w7M6te42DYbg5ijwRorn7yfWVN8= 92 | 93 | ansi-styles@^2.2.1: 94 | version "2.2.1" 95 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-2.2.1.tgz#b432dd3358b634cf75e1e4664368240533c1ddbe" 96 | integrity sha1-tDLdM1i2NM914eRmQ2gkBTPB3b4= 97 | 98 | asar@^3.1.0: 99 | version "3.1.0" 100 | resolved "https://registry.yarnpkg.com/asar/-/asar-3.1.0.tgz#70b0509449fe3daccc63beb4d3c7d2e24d3c6473" 101 | integrity sha512-vyxPxP5arcAqN4F/ebHd/HhwnAiZtwhglvdmc7BR2f0ywbVNTOpSeyhLDbGXtE/y58hv1oC75TaNIXutnsOZsQ== 102 | dependencies: 103 | chromium-pickle-js "^0.2.0" 104 | commander "^5.0.0" 105 | glob "^7.1.6" 106 | minimatch "^3.0.4" 107 | optionalDependencies: 108 | "@types/glob" "^7.1.1" 109 | 110 | asn1@0.1.11: 111 | version "0.1.11" 112 | resolved "https://registry.yarnpkg.com/asn1/-/asn1-0.1.11.tgz#559be18376d08a4ec4dbe80877d27818639b2df7" 113 | integrity sha1-VZvhg3bQik7E2+gId9J4GGObLfc= 114 | 115 | assert-plus@^0.1.5: 116 | version "0.1.5" 117 | resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-0.1.5.tgz#ee74009413002d84cec7219c6ac811812e723160" 118 | integrity sha1-7nQAlBMALYTOxyGcasgRgS5yMWA= 119 | 120 | async@~0.9.0: 121 | version "0.9.2" 122 | resolved "https://registry.yarnpkg.com/async/-/async-0.9.2.tgz#aea74d5e61c1f899613bf64bda66d4c78f2fd17d" 123 | integrity sha1-rqdNXmHB+JlhO/ZL2mbUx48v0X0= 124 | 125 | at-least-node@^1.0.0: 126 | version "1.0.0" 127 | resolved "https://registry.yarnpkg.com/at-least-node/-/at-least-node-1.0.0.tgz#602cd4b46e844ad4effc92a8011a3c46e0238dc2" 128 | integrity sha512-+q/t7Ekv1EDY2l6Gda6LLiX14rU9TV20Wa3ofeQmwPFZbOMo9DXrLbOjFaaclkXKWidIaopwAObQDqwWtGUjqg== 129 | 130 | author-regex@^1.0.0: 131 | version "1.0.0" 132 | resolved "https://registry.yarnpkg.com/author-regex/-/author-regex-1.0.0.tgz#d08885be6b9bbf9439fe087c76287245f0a81450" 133 | integrity sha1-0IiFvmubv5Q5/gh8dihyRfCoFFA= 134 | 135 | aws-sign2@~0.5.0: 136 | version "0.5.0" 137 | resolved "https://registry.yarnpkg.com/aws-sign2/-/aws-sign2-0.5.0.tgz#c57103f7a17fc037f02d7c2e64b602ea223f7d63" 138 | integrity sha1-xXED96F/wDfwLXwuZLYC6iI/fWM= 139 | 140 | balanced-match@^1.0.0: 141 | version "1.0.2" 142 | resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.2.tgz#e83e3a7e3f300b34cb9d87f615fa0cbf357690ee" 143 | integrity sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw== 144 | 145 | base64-js@^1.5.1: 146 | version "1.5.1" 147 | resolved "https://registry.yarnpkg.com/base64-js/-/base64-js-1.5.1.tgz#1b1b440160a5bf7ad40b650f095963481903930a" 148 | integrity sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA== 149 | 150 | binary@^0.3.0: 151 | version "0.3.0" 152 | resolved "https://registry.yarnpkg.com/binary/-/binary-0.3.0.tgz#9f60553bc5ce8c3386f3b553cff47462adecaa79" 153 | integrity sha1-n2BVO8XOjDOG87VTz/R0Yq3sqnk= 154 | dependencies: 155 | buffers "~0.1.1" 156 | chainsaw "~0.1.0" 157 | 158 | bl@~0.9.0: 159 | version "0.9.5" 160 | resolved "https://registry.yarnpkg.com/bl/-/bl-0.9.5.tgz#c06b797af085ea00bc527afc8efcf11de2232054" 161 | integrity sha1-wGt5evCF6gC8Unr8jvzxHeIjIFQ= 162 | dependencies: 163 | readable-stream "~1.0.26" 164 | 165 | bluebird@^2.9.30: 166 | version "2.11.0" 167 | resolved "https://registry.yarnpkg.com/bluebird/-/bluebird-2.11.0.tgz#534b9033c022c9579c56ba3b3e5a5caafbb650e1" 168 | integrity sha1-U0uQM8AiyVecVro7Plpcqvu2UOE= 169 | 170 | bluebird@^3.1.1, bluebird@^3.5.0: 171 | version "3.7.2" 172 | resolved "https://registry.yarnpkg.com/bluebird/-/bluebird-3.7.2.tgz#9f229c15be272454ffa973ace0dbee79a1b0c36f" 173 | integrity sha512-XpNj6GDQzdfW+r2Wnn7xiSAd7TM3jzkxGXBGTtWKuSXv1xUV+azxAm8jdWZN06QTQk+2N2XB9jRDkvbmQmcRtg== 174 | 175 | boolean@^3.0.1: 176 | version "3.2.0" 177 | resolved "https://registry.yarnpkg.com/boolean/-/boolean-3.2.0.tgz#9e5294af4e98314494cbb17979fa54ca159f116b" 178 | integrity sha512-d0II/GO9uf9lfUHH2BQsjxzRJZBdsjgsBiW4BvhWk/3qoKwQFjIDVN19PfX8F2D/r9PCMTtLWjYVCFrpeYUzsw== 179 | 180 | boom@2.x.x: 181 | version "2.10.1" 182 | resolved "https://registry.yarnpkg.com/boom/-/boom-2.10.1.tgz#39c8918ceff5799f83f9492a848f625add0c766f" 183 | integrity sha1-OciRjO/1eZ+D+UkqhI9iWt0Mdm8= 184 | dependencies: 185 | hoek "2.x.x" 186 | 187 | brace-expansion@^1.1.7: 188 | version "1.1.11" 189 | resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.11.tgz#3c7fcbf529d87226f3d2f52b966ff5271eb441dd" 190 | integrity sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA== 191 | dependencies: 192 | balanced-match "^1.0.0" 193 | concat-map "0.0.1" 194 | 195 | buffer-alloc-unsafe@^1.1.0: 196 | version "1.1.0" 197 | resolved "https://registry.yarnpkg.com/buffer-alloc-unsafe/-/buffer-alloc-unsafe-1.1.0.tgz#bd7dc26ae2972d0eda253be061dba992349c19f0" 198 | integrity sha512-TEM2iMIEQdJ2yjPJoSIsldnleVaAk1oW3DBVUykyOLsEsFmEc9kn+SFFPz+gl54KQNxlDnAwCXosOS9Okx2xAg== 199 | 200 | buffer-alloc@^1.2.0: 201 | version "1.2.0" 202 | resolved "https://registry.yarnpkg.com/buffer-alloc/-/buffer-alloc-1.2.0.tgz#890dd90d923a873e08e10e5fd51a57e5b7cce0ec" 203 | integrity sha512-CFsHQgjtW1UChdXgbyJGtnm+O/uLQeZdtbDo8mfUgYXCHSM1wgrVxXm6bSyrUuErEb+4sYVGCzASBRot7zyrow== 204 | dependencies: 205 | buffer-alloc-unsafe "^1.1.0" 206 | buffer-fill "^1.0.0" 207 | 208 | buffer-crc32@~0.2.3: 209 | version "0.2.13" 210 | resolved "https://registry.yarnpkg.com/buffer-crc32/-/buffer-crc32-0.2.13.tgz#0d333e3f00eac50aa1454abd30ef8c2a5d9a7242" 211 | integrity sha1-DTM+PwDqxQqhRUq9MO+MKl2ackI= 212 | 213 | buffer-equal@1.0.0: 214 | version "1.0.0" 215 | resolved "https://registry.yarnpkg.com/buffer-equal/-/buffer-equal-1.0.0.tgz#59616b498304d556abd466966b22eeda3eca5fbe" 216 | integrity sha1-WWFrSYME1Var1GaWayLu2j7KX74= 217 | 218 | buffer-fill@^1.0.0: 219 | version "1.0.0" 220 | resolved "https://registry.yarnpkg.com/buffer-fill/-/buffer-fill-1.0.0.tgz#f8f78b76789888ef39f205cd637f68e702122b2c" 221 | integrity sha1-+PeLdniYiO858gXNY39o5wISKyw= 222 | 223 | buffer-from@^1.0.0: 224 | version "1.1.2" 225 | resolved "https://registry.yarnpkg.com/buffer-from/-/buffer-from-1.1.2.tgz#2b146a6fd72e80b4f55d255f35ed59a3a9a41bd5" 226 | integrity sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ== 227 | 228 | buffers@~0.1.1: 229 | version "0.1.1" 230 | resolved "https://registry.yarnpkg.com/buffers/-/buffers-0.1.1.tgz#b24579c3bed4d6d396aeee6d9a8ae7f5482ab7bb" 231 | integrity sha1-skV5w77U1tOWru5tmorn9Ugqt7s= 232 | 233 | cacheable-request@^6.0.0: 234 | version "6.1.0" 235 | resolved "https://registry.yarnpkg.com/cacheable-request/-/cacheable-request-6.1.0.tgz#20ffb8bd162ba4be11e9567d823db651052ca912" 236 | integrity sha512-Oj3cAGPCqOZX7Rz64Uny2GYAZNliQSqfbePrgAQ1wKAihYmCUnraBtJtKcGR4xz7wF+LoJC+ssFZvv5BgF9Igg== 237 | dependencies: 238 | clone-response "^1.0.2" 239 | get-stream "^5.1.0" 240 | http-cache-semantics "^4.0.0" 241 | keyv "^3.0.0" 242 | lowercase-keys "^2.0.0" 243 | normalize-url "^4.1.0" 244 | responselike "^1.0.2" 245 | 246 | caseless@~0.9.0: 247 | version "0.9.0" 248 | resolved "https://registry.yarnpkg.com/caseless/-/caseless-0.9.0.tgz#b7b65ce6bf1413886539cfd533f0b30effa9cf88" 249 | integrity sha1-t7Zc5r8UE4hlOc/VM/CzDv+pz4g= 250 | 251 | chainsaw@~0.1.0: 252 | version "0.1.0" 253 | resolved "https://registry.yarnpkg.com/chainsaw/-/chainsaw-0.1.0.tgz#5eab50b28afe58074d0d58291388828b5e5fbc98" 254 | integrity sha1-XqtQsor+WAdNDVgpE4iCi15fvJg= 255 | dependencies: 256 | traverse ">=0.3.0 <0.4" 257 | 258 | chalk@^1.0.0: 259 | version "1.1.3" 260 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-1.1.3.tgz#a8115c55e4a702fe4d150abd3872822a7e09fc98" 261 | integrity sha1-qBFcVeSnAv5NFQq9OHKCKn4J/Jg= 262 | dependencies: 263 | ansi-styles "^2.2.1" 264 | escape-string-regexp "^1.0.2" 265 | has-ansi "^2.0.0" 266 | strip-ansi "^3.0.0" 267 | supports-color "^2.0.0" 268 | 269 | chromium-pickle-js@^0.2.0: 270 | version "0.2.0" 271 | resolved "https://registry.yarnpkg.com/chromium-pickle-js/-/chromium-pickle-js-0.2.0.tgz#04a106672c18b085ab774d983dfa3ea138f22205" 272 | integrity sha1-BKEGZywYsIWrd02YPfo+oTjyIgU= 273 | 274 | clone-response@^1.0.2: 275 | version "1.0.2" 276 | resolved "https://registry.yarnpkg.com/clone-response/-/clone-response-1.0.2.tgz#d1dc973920314df67fbeb94223b4ee350239e96b" 277 | integrity sha1-0dyXOSAxTfZ/vrlCI7TuNQI56Ws= 278 | dependencies: 279 | mimic-response "^1.0.0" 280 | 281 | colors@1.0.3: 282 | version "1.0.3" 283 | resolved "https://registry.yarnpkg.com/colors/-/colors-1.0.3.tgz#0433f44d809680fdeb60ed260f1b0c262e82a40b" 284 | integrity sha1-BDP0TYCWgP3rYO0mDxsMJi6CpAs= 285 | 286 | combined-stream@~0.0.4, combined-stream@~0.0.5: 287 | version "0.0.7" 288 | resolved "https://registry.yarnpkg.com/combined-stream/-/combined-stream-0.0.7.tgz#0137e657baa5a7541c57ac37ac5fc07d73b4dc1f" 289 | integrity sha1-ATfmV7qlp1QcV6w3rF/AfXO03B8= 290 | dependencies: 291 | delayed-stream "0.0.5" 292 | 293 | commander@2.9.0: 294 | version "2.9.0" 295 | resolved "https://registry.yarnpkg.com/commander/-/commander-2.9.0.tgz#9c99094176e12240cb22d6c5146098400fe0f7d4" 296 | integrity sha1-nJkJQXbhIkDLItbFFGCYQA/g99Q= 297 | dependencies: 298 | graceful-readlink ">= 1.0.0" 299 | 300 | commander@^2.8.1: 301 | version "2.20.3" 302 | resolved "https://registry.yarnpkg.com/commander/-/commander-2.20.3.tgz#fd485e84c03eb4881c20722ba48035e8531aeb33" 303 | integrity sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ== 304 | 305 | commander@^5.0.0: 306 | version "5.1.0" 307 | resolved "https://registry.yarnpkg.com/commander/-/commander-5.1.0.tgz#46abbd1652f8e059bddaef99bbdcb2ad9cf179ae" 308 | integrity sha512-P0CysNDQ7rtVw4QIQtm+MRxV66vKFSvlsQvGYXZWR3qFU0jlMKHZZZgw8e+8DSah4UDKMqnknRDQz+xuQXQ/Zg== 309 | 310 | compare-version@^0.1.2: 311 | version "0.1.2" 312 | resolved "https://registry.yarnpkg.com/compare-version/-/compare-version-0.1.2.tgz#0162ec2d9351f5ddd59a9202cba935366a725080" 313 | integrity sha1-AWLsLZNR9d3VmpICy6k1NmpyUIA= 314 | 315 | concat-map@0.0.1: 316 | version "0.0.1" 317 | resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b" 318 | integrity sha1-2Klr13/Wjfd5OnMDajug1UBdR3s= 319 | 320 | concat-stream@^1.6.2: 321 | version "1.6.2" 322 | resolved "https://registry.yarnpkg.com/concat-stream/-/concat-stream-1.6.2.tgz#904bdf194cd3122fc675c77fc4ac3d4ff0fd1a34" 323 | integrity sha512-27HBghJxjiZtIk3Ycvn/4kbJk/1uZuJFfuPEns6LaEvpvG1f0hTea8lilrouyo9mVc2GWdcEZ8OLoGmSADlrCw== 324 | dependencies: 325 | buffer-from "^1.0.0" 326 | inherits "^2.0.3" 327 | readable-stream "^2.2.2" 328 | typedarray "^0.0.6" 329 | 330 | config-chain@^1.1.11: 331 | version "1.1.13" 332 | resolved "https://registry.yarnpkg.com/config-chain/-/config-chain-1.1.13.tgz#fad0795aa6a6cdaff9ed1b68e9dff94372c232f4" 333 | integrity sha512-qj+f8APARXHrM0hraqXYb2/bOVSV4PvJQlNZ/DVj0QrmNM2q2euizkeuVckQ57J+W0mRH6Hvi+k50M4Jul2VRQ== 334 | dependencies: 335 | ini "^1.3.4" 336 | proto-list "~1.2.1" 337 | 338 | core-util-is@~1.0.0: 339 | version "1.0.3" 340 | resolved "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.3.tgz#a6042d3634c2b27e9328f837b965fac83808db85" 341 | integrity sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ== 342 | 343 | cross-spawn-windows-exe@^1.1.0, cross-spawn-windows-exe@^1.2.0: 344 | version "1.2.0" 345 | resolved "https://registry.yarnpkg.com/cross-spawn-windows-exe/-/cross-spawn-windows-exe-1.2.0.tgz#46253b0f497676e766faf4a7061004618b5ac5ec" 346 | integrity sha512-mkLtJJcYbDCxEG7Js6eUnUNndWjyUZwJ3H7bErmmtOYU/Zb99DyUkpamuIZE0b3bhmJyZ7D90uS6f+CGxRRjOw== 347 | dependencies: 348 | "@malept/cross-spawn-promise" "^1.1.0" 349 | is-wsl "^2.2.0" 350 | which "^2.0.2" 351 | 352 | cross-spawn@^7.0.1: 353 | version "7.0.3" 354 | resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-7.0.3.tgz#f73a85b9d5d41d045551c177e2882d4ac85728a6" 355 | integrity sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w== 356 | dependencies: 357 | path-key "^3.1.0" 358 | shebang-command "^2.0.0" 359 | which "^2.0.1" 360 | 361 | cryptiles@2.x.x: 362 | version "2.0.5" 363 | resolved "https://registry.yarnpkg.com/cryptiles/-/cryptiles-2.0.5.tgz#3bdfecdc608147c1c67202fa291e7dca59eaa3b8" 364 | integrity sha1-O9/s3GCBR8HGcgL6KR59ylnqo7g= 365 | dependencies: 366 | boom "2.x.x" 367 | 368 | ctype@0.5.3: 369 | version "0.5.3" 370 | resolved "https://registry.yarnpkg.com/ctype/-/ctype-0.5.3.tgz#82c18c2461f74114ef16c135224ad0b9144ca12f" 371 | integrity sha1-gsGMJGH3QRTvFsE1IkrQuRRMoS8= 372 | 373 | debug@^2.2.0, debug@^2.6.8, debug@^2.6.9: 374 | version "2.6.9" 375 | resolved "https://registry.yarnpkg.com/debug/-/debug-2.6.9.tgz#5d128515df134ff327e90a4c93f4e077a536341f" 376 | integrity sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA== 377 | dependencies: 378 | ms "2.0.0" 379 | 380 | debug@^3.1.0: 381 | version "3.2.7" 382 | resolved "https://registry.yarnpkg.com/debug/-/debug-3.2.7.tgz#72580b7e9145fb39b6676f9c5e5fb100b934179a" 383 | integrity sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ== 384 | dependencies: 385 | ms "^2.1.1" 386 | 387 | debug@^4.0.1, debug@^4.1.0, debug@^4.1.1, debug@^4.3.1: 388 | version "4.3.4" 389 | resolved "https://registry.yarnpkg.com/debug/-/debug-4.3.4.tgz#1319f6579357f2338d3337d2cdd4914bb5dcc865" 390 | integrity sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ== 391 | dependencies: 392 | ms "2.1.2" 393 | 394 | decompress-response@^3.3.0: 395 | version "3.3.0" 396 | resolved "https://registry.yarnpkg.com/decompress-response/-/decompress-response-3.3.0.tgz#80a4dd323748384bfa248083622aedec982adff3" 397 | integrity sha1-gKTdMjdIOEv6JICDYirt7Jgq3/M= 398 | dependencies: 399 | mimic-response "^1.0.0" 400 | 401 | decompress-zip@0.1.0: 402 | version "0.1.0" 403 | resolved "https://registry.yarnpkg.com/decompress-zip/-/decompress-zip-0.1.0.tgz#bce60c11664f2d660fca4bcf634af6de5d6c14c7" 404 | integrity sha1-vOYMEWZPLWYPykvPY0r23l1sFMc= 405 | dependencies: 406 | binary "^0.3.0" 407 | graceful-fs "^3.0.0" 408 | mkpath "^0.1.0" 409 | nopt "^3.0.1" 410 | q "^1.1.2" 411 | readable-stream "^1.1.8" 412 | touch "0.0.3" 413 | 414 | defer-to-connect@^1.0.1: 415 | version "1.1.3" 416 | resolved "https://registry.yarnpkg.com/defer-to-connect/-/defer-to-connect-1.1.3.tgz#331ae050c08dcf789f8c83a7b81f0ed94f4ac591" 417 | integrity sha512-0ISdNousHvZT2EiFlZeZAHBUvSxmKswVCEf8hW7KWgG4a8MVEu/3Vb6uWYozkjylyCxe0JBIiRB1jV45S70WVQ== 418 | 419 | define-properties@^1.1.3: 420 | version "1.1.4" 421 | resolved "https://registry.yarnpkg.com/define-properties/-/define-properties-1.1.4.tgz#0b14d7bd7fbeb2f3572c3a7eda80ea5d57fb05b1" 422 | integrity sha512-uckOqKcfaVvtBdsVkdPv3XjveQJsNQqmhXgRi8uhvWWuPYZCNlzT8qAyblUgNoXdHdjMTzAqeGjAoli8f+bzPA== 423 | dependencies: 424 | has-property-descriptors "^1.0.0" 425 | object-keys "^1.1.1" 426 | 427 | delayed-stream@0.0.5: 428 | version "0.0.5" 429 | resolved "https://registry.yarnpkg.com/delayed-stream/-/delayed-stream-0.0.5.tgz#d4b1f43a93e8296dfe02694f4680bc37a313c73f" 430 | integrity sha1-1LH0OpPoKW3+AmlPRoC8N6MTxz8= 431 | 432 | detect-node@^2.0.4: 433 | version "2.1.0" 434 | resolved "https://registry.yarnpkg.com/detect-node/-/detect-node-2.1.0.tgz#c9c70775a49c3d03bc2c06d9a73be550f978f8b1" 435 | integrity sha512-T0NIuQpnTvFDATNuHN5roPwSBG83rFsuO+MXXH9/3N1eFbn4wcPjttvjMLEPWJ0RGUYgQE7cGgS3tNxbqCGM7g== 436 | 437 | dir-compare@^2.4.0: 438 | version "2.4.0" 439 | resolved "https://registry.yarnpkg.com/dir-compare/-/dir-compare-2.4.0.tgz#785c41dc5f645b34343a4eafc50b79bac7f11631" 440 | integrity sha512-l9hmu8x/rjVC9Z2zmGzkhOEowZvW7pmYws5CWHutg8u1JgvsKWMx7Q/UODeu4djLZ4FgW5besw5yvMQnBHzuCA== 441 | dependencies: 442 | buffer-equal "1.0.0" 443 | colors "1.0.3" 444 | commander "2.9.0" 445 | minimatch "3.0.4" 446 | 447 | duplexer3@^0.1.4: 448 | version "0.1.4" 449 | resolved "https://registry.yarnpkg.com/duplexer3/-/duplexer3-0.1.4.tgz#ee01dd1cac0ed3cbc7fdbea37dc0a8f1ce002ce2" 450 | integrity sha1-7gHdHKwO08vH/b6jfcCo8c4ALOI= 451 | 452 | electron-notarize@^1.1.1: 453 | version "1.2.1" 454 | resolved "https://registry.yarnpkg.com/electron-notarize/-/electron-notarize-1.2.1.tgz#347c18eca8e29dddadadee511b870c13d4008baf" 455 | integrity sha512-u/ECWhIrhkSQpZM4cJzVZ5TsmkaqrRo5LDC/KMbGF0sPkm53Ng59+M0zp8QVaql0obfJy9vlVT+4iOkAi2UDlA== 456 | dependencies: 457 | debug "^4.1.1" 458 | fs-extra "^9.0.1" 459 | 460 | electron-osx-sign@^0.5.0: 461 | version "0.5.0" 462 | resolved "https://registry.yarnpkg.com/electron-osx-sign/-/electron-osx-sign-0.5.0.tgz#fc258c5e896859904bbe3d01da06902c04b51c3a" 463 | integrity sha512-icoRLHzFz/qxzDh/N4Pi2z4yVHurlsCAYQvsCSG7fCedJ4UJXBS6PoQyGH71IfcqKupcKeK7HX/NkyfG+v6vlQ== 464 | dependencies: 465 | bluebird "^3.5.0" 466 | compare-version "^0.1.2" 467 | debug "^2.6.8" 468 | isbinaryfile "^3.0.2" 469 | minimist "^1.2.0" 470 | plist "^3.0.1" 471 | 472 | electron-packager@^15.5.1: 473 | version "15.5.1" 474 | resolved "https://registry.yarnpkg.com/electron-packager/-/electron-packager-15.5.1.tgz#8f0a1ff557a9bfa31c4b0e251ffd0df209b7dd23" 475 | integrity sha512-9/fqF64GACZsLYLuFJ8vCqItMXbvsD0NMDLNfFmAv9mSqkqKWSZb5V3VE9CxT6CeXwZ6wN3YowEQuqBNyShEVg== 476 | dependencies: 477 | "@electron/get" "^1.6.0" 478 | "@electron/universal" "^1.2.1" 479 | asar "^3.1.0" 480 | cross-spawn-windows-exe "^1.2.0" 481 | debug "^4.0.1" 482 | electron-notarize "^1.1.1" 483 | electron-osx-sign "^0.5.0" 484 | extract-zip "^2.0.0" 485 | filenamify "^4.1.0" 486 | fs-extra "^9.0.0" 487 | galactus "^0.2.1" 488 | get-package-info "^1.0.0" 489 | junk "^3.1.0" 490 | parse-author "^2.0.0" 491 | plist "^3.0.0" 492 | rcedit "^3.0.1" 493 | resolve "^1.1.6" 494 | semver "^7.1.3" 495 | yargs-parser "^20.0.0" 496 | 497 | electron@^15.4.1: 498 | version "15.5.2" 499 | resolved "https://registry.yarnpkg.com/electron/-/electron-15.5.2.tgz#696e20ee29929de8f0d41065f833afb6e1a1c3d0" 500 | integrity sha512-2Vfp0KKWhVsJ7wVmYla+4GJ4Dfl88QICgWXngH20fHLPilrT0LFKz+s4+0Tlwznc8F1VODKv7++Sav0KNC9Zxg== 501 | dependencies: 502 | "@electron/get" "^1.13.0" 503 | "@types/node" "^14.6.2" 504 | extract-zip "^1.0.3" 505 | 506 | encodeurl@^1.0.2: 507 | version "1.0.2" 508 | resolved "https://registry.yarnpkg.com/encodeurl/-/encodeurl-1.0.2.tgz#ad3ff4c86ec2d029322f5a02c3a9a606c95b3f59" 509 | integrity sha1-rT/0yG7C0CkyL1oCw6mmBslbP1k= 510 | 511 | end-of-stream@^1.1.0: 512 | version "1.4.4" 513 | resolved "https://registry.yarnpkg.com/end-of-stream/-/end-of-stream-1.4.4.tgz#5ae64a5f45057baf3626ec14da0ca5e4b2431eb0" 514 | integrity sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q== 515 | dependencies: 516 | once "^1.4.0" 517 | 518 | env-paths@^2.2.0: 519 | version "2.2.1" 520 | resolved "https://registry.yarnpkg.com/env-paths/-/env-paths-2.2.1.tgz#420399d416ce1fbe9bc0a07c62fa68d67fd0f8f2" 521 | integrity sha512-+h1lkLKhZMTYjog1VEpJNG7NZJWcuc2DDk/qsqSTRRCOXiLjeQ1d1/udrUGhqMxUgAlwKNZ0cf2uqan5GLuS2A== 522 | 523 | error-ex@^1.2.0: 524 | version "1.3.2" 525 | resolved "https://registry.yarnpkg.com/error-ex/-/error-ex-1.3.2.tgz#b4ac40648107fdcdcfae242f428bea8a14d4f1bf" 526 | integrity sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g== 527 | dependencies: 528 | is-arrayish "^0.2.1" 529 | 530 | es6-error@^4.1.1: 531 | version "4.1.1" 532 | resolved "https://registry.yarnpkg.com/es6-error/-/es6-error-4.1.1.tgz#9e3af407459deed47e9a91f9b885a84eb05c561d" 533 | integrity sha512-Um/+FxMr9CISWh0bi5Zv0iOD+4cFh5qLeks1qhAopKVAJw3drgKbKySikp7wGhDL0HPeaja0P5ULZrxLkniUVg== 534 | 535 | escape-string-regexp@^1.0.2: 536 | version "1.0.5" 537 | resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4" 538 | integrity sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ= 539 | 540 | escape-string-regexp@^4.0.0: 541 | version "4.0.0" 542 | resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz#14ba83a5d373e3d311e5afca29cf5bfad965bf34" 543 | integrity sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA== 544 | 545 | extract-zip@^1.0.3: 546 | version "1.7.0" 547 | resolved "https://registry.yarnpkg.com/extract-zip/-/extract-zip-1.7.0.tgz#556cc3ae9df7f452c493a0cfb51cc30277940927" 548 | integrity sha512-xoh5G1W/PB0/27lXgMQyIhP5DSY/LhoCsOyZgb+6iMmRtCwVBo55uKaMoEYrDCKQhWvqEip5ZPKAc6eFNyf/MA== 549 | dependencies: 550 | concat-stream "^1.6.2" 551 | debug "^2.6.9" 552 | mkdirp "^0.5.4" 553 | yauzl "^2.10.0" 554 | 555 | extract-zip@^2.0.0: 556 | version "2.0.1" 557 | resolved "https://registry.yarnpkg.com/extract-zip/-/extract-zip-2.0.1.tgz#663dca56fe46df890d5f131ef4a06d22bb8ba13a" 558 | integrity sha512-GDhU9ntwuKyGXdZBUgTIe+vXnWj0fppUEtMDL0+idd5Sta8TGpHssn/eusA9mrPr9qNDym6SxAYZjNvCn/9RBg== 559 | dependencies: 560 | debug "^4.1.1" 561 | get-stream "^5.1.0" 562 | yauzl "^2.10.0" 563 | optionalDependencies: 564 | "@types/yauzl" "^2.9.1" 565 | 566 | fd-slicer@~1.1.0: 567 | version "1.1.0" 568 | resolved "https://registry.yarnpkg.com/fd-slicer/-/fd-slicer-1.1.0.tgz#25c7c89cb1f9077f8891bbe61d8f390eae256f1e" 569 | integrity sha1-JcfInLH5B3+IkbvmHY85Dq4lbx4= 570 | dependencies: 571 | pend "~1.2.0" 572 | 573 | filename-reserved-regex@^2.0.0: 574 | version "2.0.0" 575 | resolved "https://registry.yarnpkg.com/filename-reserved-regex/-/filename-reserved-regex-2.0.0.tgz#abf73dfab735d045440abfea2d91f389ebbfa229" 576 | integrity sha1-q/c9+rc10EVECr/qLZHzieu/oik= 577 | 578 | filenamify@^4.1.0: 579 | version "4.3.0" 580 | resolved "https://registry.yarnpkg.com/filenamify/-/filenamify-4.3.0.tgz#62391cb58f02b09971c9d4f9d63b3cf9aba03106" 581 | integrity sha512-hcFKyUG57yWGAzu1CMt/dPzYZuv+jAJUT85bL8mrXvNe6hWj6yEHEc4EdcgiA6Z3oi1/9wXJdZPXF2dZNgwgOg== 582 | dependencies: 583 | filename-reserved-regex "^2.0.0" 584 | strip-outer "^1.0.1" 585 | trim-repeated "^1.0.0" 586 | 587 | find-up@^2.0.0: 588 | version "2.1.0" 589 | resolved "https://registry.yarnpkg.com/find-up/-/find-up-2.1.0.tgz#45d1b7e506c717ddd482775a2b77920a3c0c57a7" 590 | integrity sha1-RdG35QbHF93UgndaK3eSCjwMV6c= 591 | dependencies: 592 | locate-path "^2.0.0" 593 | 594 | flora-colossus@^1.0.0: 595 | version "1.0.1" 596 | resolved "https://registry.yarnpkg.com/flora-colossus/-/flora-colossus-1.0.1.tgz#aba198425a8185341e64f9d2a6a96fd9a3cbdb93" 597 | integrity sha512-d+9na7t9FyH8gBJoNDSi28mE4NgQVGGvxQ4aHtFRetjyh5SXjuus+V5EZaxFmFdXVemSOrx0lsgEl/ZMjnOWJA== 598 | dependencies: 599 | debug "^4.1.1" 600 | fs-extra "^7.0.0" 601 | 602 | forever-agent@~0.6.0: 603 | version "0.6.1" 604 | resolved "https://registry.yarnpkg.com/forever-agent/-/forever-agent-0.6.1.tgz#fbc71f0c41adeb37f96c577ad1ed42d8fdacca91" 605 | integrity sha1-+8cfDEGt6zf5bFd60e1C2P2sypE= 606 | 607 | form-data@~0.2.0: 608 | version "0.2.0" 609 | resolved "https://registry.yarnpkg.com/form-data/-/form-data-0.2.0.tgz#26f8bc26da6440e299cbdcfb69035c4f77a6e466" 610 | integrity sha1-Jvi8JtpkQOKZy9z7aQNcT3em5GY= 611 | dependencies: 612 | async "~0.9.0" 613 | combined-stream "~0.0.4" 614 | mime-types "~2.0.3" 615 | 616 | fs-extra@0.18.2: 617 | version "0.18.2" 618 | resolved "https://registry.yarnpkg.com/fs-extra/-/fs-extra-0.18.2.tgz#af05ca702b0b6dfa7de803a1f7ab479ec5c21525" 619 | integrity sha1-rwXKcCsLbfp96AOh96tHnsXCFSU= 620 | dependencies: 621 | graceful-fs "^3.0.5" 622 | jsonfile "^2.0.0" 623 | rimraf "^2.2.8" 624 | 625 | fs-extra@^4.0.0: 626 | version "4.0.3" 627 | resolved "https://registry.yarnpkg.com/fs-extra/-/fs-extra-4.0.3.tgz#0d852122e5bc5beb453fb028e9c0c9bf36340c94" 628 | integrity sha512-q6rbdDd1o2mAnQreO7YADIxf/Whx4AHBiRf6d+/cVT8h44ss+lHgxf1FemcqDnQt9X3ct4McHr+JMGlYSsK7Cg== 629 | dependencies: 630 | graceful-fs "^4.1.2" 631 | jsonfile "^4.0.0" 632 | universalify "^0.1.0" 633 | 634 | fs-extra@^7.0.0: 635 | version "7.0.1" 636 | resolved "https://registry.yarnpkg.com/fs-extra/-/fs-extra-7.0.1.tgz#4f189c44aa123b895f722804f55ea23eadc348e9" 637 | integrity sha512-YJDaCJZEnBmcbw13fvdAM9AwNOJwOzrE4pqMqBq5nFiEqXUqHwlK4B+3pUw6JNvfSPtX05xFHtYy/1ni01eGCw== 638 | dependencies: 639 | graceful-fs "^4.1.2" 640 | jsonfile "^4.0.0" 641 | universalify "^0.1.0" 642 | 643 | fs-extra@^8.1.0: 644 | version "8.1.0" 645 | resolved "https://registry.yarnpkg.com/fs-extra/-/fs-extra-8.1.0.tgz#49d43c45a88cd9677668cb7be1b46efdb8d2e1c0" 646 | integrity sha512-yhlQgA6mnOJUKOsRUFsgJdQCvkKhcz8tlZG5HBQfReYZy46OwLcY+Zia0mtdHsOo9y/hP+CxMN0TU9QxoOtG4g== 647 | dependencies: 648 | graceful-fs "^4.2.0" 649 | jsonfile "^4.0.0" 650 | universalify "^0.1.0" 651 | 652 | fs-extra@^9.0.0, fs-extra@^9.0.1: 653 | version "9.1.0" 654 | resolved "https://registry.yarnpkg.com/fs-extra/-/fs-extra-9.1.0.tgz#5954460c764a8da2094ba3554bf839e6b9a7c86d" 655 | integrity sha512-hcg3ZmepS30/7BSFqRvoo3DOMQu7IjqxO5nCDt+zM9XWjb33Wg7ziNT+Qvqbuc3+gWpzO02JubVyk2G4Zvo1OQ== 656 | dependencies: 657 | at-least-node "^1.0.0" 658 | graceful-fs "^4.2.0" 659 | jsonfile "^6.0.1" 660 | universalify "^2.0.0" 661 | 662 | fs.realpath@^1.0.0: 663 | version "1.0.0" 664 | resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f" 665 | integrity sha1-FQStJSMVjKpA20onh8sBQRmU6k8= 666 | 667 | function-bind@^1.1.1: 668 | version "1.1.1" 669 | resolved "https://registry.yarnpkg.com/function-bind/-/function-bind-1.1.1.tgz#a56899d3ea3c9bab874bb9773b7c5ede92f4895d" 670 | integrity sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A== 671 | 672 | galactus@^0.2.1: 673 | version "0.2.1" 674 | resolved "https://registry.yarnpkg.com/galactus/-/galactus-0.2.1.tgz#cbed2d20a40c1f5679a35908e2b9415733e78db9" 675 | integrity sha1-y+0tIKQMH1Z5o1kI4rlBVzPnjbk= 676 | dependencies: 677 | debug "^3.1.0" 678 | flora-colossus "^1.0.0" 679 | fs-extra "^4.0.0" 680 | 681 | generate-function@^2.0.0: 682 | version "2.3.1" 683 | resolved "https://registry.yarnpkg.com/generate-function/-/generate-function-2.3.1.tgz#f069617690c10c868e73b8465746764f97c3479f" 684 | integrity sha512-eeB5GfMNeevm/GRYq20ShmsaGcmI81kIX2K9XQx5miC8KdHaC6Jm0qQ8ZNeGOi7wYB8OsdxKs+Y2oVuTFuVwKQ== 685 | dependencies: 686 | is-property "^1.0.2" 687 | 688 | generate-object-property@^1.1.0: 689 | version "1.2.0" 690 | resolved "https://registry.yarnpkg.com/generate-object-property/-/generate-object-property-1.2.0.tgz#9c0e1c40308ce804f4783618b937fa88f99d50d0" 691 | integrity sha1-nA4cQDCM6AT0eDYYuTf6iPmdUNA= 692 | dependencies: 693 | is-property "^1.0.0" 694 | 695 | get-intrinsic@^1.1.1: 696 | version "1.1.1" 697 | resolved "https://registry.yarnpkg.com/get-intrinsic/-/get-intrinsic-1.1.1.tgz#15f59f376f855c446963948f0d24cd3637b4abc6" 698 | integrity sha512-kWZrnVM42QCiEA2Ig1bG8zjoIMOgxWwYCEeNdwY6Tv/cOSeGpcoX4pXHfKUxNKVoArnrEr2e9srnAxxGIraS9Q== 699 | dependencies: 700 | function-bind "^1.1.1" 701 | has "^1.0.3" 702 | has-symbols "^1.0.1" 703 | 704 | get-package-info@^1.0.0: 705 | version "1.0.0" 706 | resolved "https://registry.yarnpkg.com/get-package-info/-/get-package-info-1.0.0.tgz#6432796563e28113cd9474dbbd00052985a4999c" 707 | integrity sha1-ZDJ5ZWPigRPNlHTbvQAFKYWkmZw= 708 | dependencies: 709 | bluebird "^3.1.1" 710 | debug "^2.2.0" 711 | lodash.get "^4.0.0" 712 | read-pkg-up "^2.0.0" 713 | 714 | get-stream@^4.1.0: 715 | version "4.1.0" 716 | resolved "https://registry.yarnpkg.com/get-stream/-/get-stream-4.1.0.tgz#c1b255575f3dc21d59bfc79cd3d2b46b1c3a54b5" 717 | integrity sha512-GMat4EJ5161kIy2HevLlr4luNjBgvmj413KaQA7jt4V8B4RDsfpHk7WQ9GVqfYyyx8OS/L66Kox+rJRNklLK7w== 718 | dependencies: 719 | pump "^3.0.0" 720 | 721 | get-stream@^5.1.0: 722 | version "5.2.0" 723 | resolved "https://registry.yarnpkg.com/get-stream/-/get-stream-5.2.0.tgz#4966a1795ee5ace65e706c4b7beb71257d6e22d3" 724 | integrity sha512-nBF+F1rAZVCu/p7rjzgA+Yb4lfYXrpl7a6VmJrU8wF9I1CKvP/QwPNZHnOlwbTkY6dvtFIzFMSyQXbLoTQPRpA== 725 | dependencies: 726 | pump "^3.0.0" 727 | 728 | glob@^7.1.3, glob@^7.1.6: 729 | version "7.2.0" 730 | resolved "https://registry.yarnpkg.com/glob/-/glob-7.2.0.tgz#d15535af7732e02e948f4c41628bd910293f6023" 731 | integrity sha512-lmLf6gtyrPq8tTjSmrO94wBeQbFR3HbLHbuyD69wuyQkImp2hWqMGB47OX65FBkPffO641IP9jWa1z4ivqG26Q== 732 | dependencies: 733 | fs.realpath "^1.0.0" 734 | inflight "^1.0.4" 735 | inherits "2" 736 | minimatch "^3.0.4" 737 | once "^1.3.0" 738 | path-is-absolute "^1.0.0" 739 | 740 | global-agent@^3.0.0: 741 | version "3.0.0" 742 | resolved "https://registry.yarnpkg.com/global-agent/-/global-agent-3.0.0.tgz#ae7cd31bd3583b93c5a16437a1afe27cc33a1ab6" 743 | integrity sha512-PT6XReJ+D07JvGoxQMkT6qji/jVNfX/h364XHZOWeRzy64sSFr+xJ5OX7LI3b4MPQzdL4H8Y8M0xzPpsVMwA8Q== 744 | dependencies: 745 | boolean "^3.0.1" 746 | es6-error "^4.1.1" 747 | matcher "^3.0.0" 748 | roarr "^2.15.3" 749 | semver "^7.3.2" 750 | serialize-error "^7.0.1" 751 | 752 | global-tunnel-ng@^2.7.1: 753 | version "2.7.1" 754 | resolved "https://registry.yarnpkg.com/global-tunnel-ng/-/global-tunnel-ng-2.7.1.tgz#d03b5102dfde3a69914f5ee7d86761ca35d57d8f" 755 | integrity sha512-4s+DyciWBV0eK148wqXxcmVAbFVPqtc3sEtUE/GTQfuU80rySLcMhUmHKSHI7/LDj8q0gDYI1lIhRRB7ieRAqg== 756 | dependencies: 757 | encodeurl "^1.0.2" 758 | lodash "^4.17.10" 759 | npm-conf "^1.1.3" 760 | tunnel "^0.0.6" 761 | 762 | globalthis@^1.0.1: 763 | version "1.0.2" 764 | resolved "https://registry.yarnpkg.com/globalthis/-/globalthis-1.0.2.tgz#2a235d34f4d8036219f7e34929b5de9e18166b8b" 765 | integrity sha512-ZQnSFO1la8P7auIOQECnm0sSuoMeaSq0EEdXMBFF2QJO4uNcwbyhSgG3MruWNbFTqCLmxVwGOl7LZ9kASvHdeQ== 766 | dependencies: 767 | define-properties "^1.1.3" 768 | 769 | got@^9.6.0: 770 | version "9.6.0" 771 | resolved "https://registry.yarnpkg.com/got/-/got-9.6.0.tgz#edf45e7d67f99545705de1f7bbeeeb121765ed85" 772 | integrity sha512-R7eWptXuGYxwijs0eV+v3o6+XH1IqVK8dJOEecQfTmkncw9AV4dcw/Dhxi8MdlqPthxxpZyizMzyg8RTmEsG+Q== 773 | dependencies: 774 | "@sindresorhus/is" "^0.14.0" 775 | "@szmarczak/http-timer" "^1.1.2" 776 | cacheable-request "^6.0.0" 777 | decompress-response "^3.3.0" 778 | duplexer3 "^0.1.4" 779 | get-stream "^4.1.0" 780 | lowercase-keys "^1.0.1" 781 | mimic-response "^1.0.1" 782 | p-cancelable "^1.0.0" 783 | to-readable-stream "^1.0.0" 784 | url-parse-lax "^3.0.0" 785 | 786 | graceful-fs@^3.0.0, graceful-fs@^3.0.5: 787 | version "3.0.12" 788 | resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-3.0.12.tgz#0034947ce9ed695ec8ab0b854bc919e82b1ffaef" 789 | integrity sha512-J55gaCS4iTTJfTXIxSVw3EMQckcqkpdRv3IR7gu6sq0+tbC363Zx6KH/SEwXASK9JRbhyZmVjJEVJIOxYsB3Qg== 790 | dependencies: 791 | natives "^1.1.3" 792 | 793 | graceful-fs@^4.1.2, graceful-fs@^4.1.6, graceful-fs@^4.2.0: 794 | version "4.2.10" 795 | resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.2.10.tgz#147d3a006da4ca3ce14728c7aefc287c367d7a6c" 796 | integrity sha512-9ByhssR2fPVsNZj478qUUbKfmL0+t5BDVyjShtyZZLiK7ZDAArFFfopyOTj0M05wE2tJPisA4iTnnXl2YoPvOA== 797 | 798 | "graceful-readlink@>= 1.0.0": 799 | version "1.0.1" 800 | resolved "https://registry.yarnpkg.com/graceful-readlink/-/graceful-readlink-1.0.1.tgz#4cafad76bc62f02fa039b2f94e9a3dd3a391a725" 801 | integrity sha1-TK+tdrxi8C+gObL5Tpo906ORpyU= 802 | 803 | har-validator@^1.4.0: 804 | version "1.8.0" 805 | resolved "https://registry.yarnpkg.com/har-validator/-/har-validator-1.8.0.tgz#d83842b0eb4c435960aeb108a067a3aa94c0eeb2" 806 | integrity sha1-2DhCsOtMQ1lgrrEIoGejqpTA7rI= 807 | dependencies: 808 | bluebird "^2.9.30" 809 | chalk "^1.0.0" 810 | commander "^2.8.1" 811 | is-my-json-valid "^2.12.0" 812 | 813 | has-ansi@^2.0.0: 814 | version "2.0.0" 815 | resolved "https://registry.yarnpkg.com/has-ansi/-/has-ansi-2.0.0.tgz#34f5049ce1ecdf2b0649af3ef24e45ed35416d91" 816 | integrity sha1-NPUEnOHs3ysGSa8+8k5F7TVBbZE= 817 | dependencies: 818 | ansi-regex "^2.0.0" 819 | 820 | has-property-descriptors@^1.0.0: 821 | version "1.0.0" 822 | resolved "https://registry.yarnpkg.com/has-property-descriptors/-/has-property-descriptors-1.0.0.tgz#610708600606d36961ed04c196193b6a607fa861" 823 | integrity sha512-62DVLZGoiEBDHQyqG4w9xCuZ7eJEwNmJRWw2VY84Oedb7WFcA27fiEVe8oUQx9hAUJ4ekurquucTGwsyO1XGdQ== 824 | dependencies: 825 | get-intrinsic "^1.1.1" 826 | 827 | has-symbols@^1.0.1: 828 | version "1.0.3" 829 | resolved "https://registry.yarnpkg.com/has-symbols/-/has-symbols-1.0.3.tgz#bb7b2c4349251dce87b125f7bdf874aa7c8b39f8" 830 | integrity sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A== 831 | 832 | has@^1.0.3: 833 | version "1.0.3" 834 | resolved "https://registry.yarnpkg.com/has/-/has-1.0.3.tgz#722d7cbfc1f6aa8241f16dd814e011e1f41e8796" 835 | integrity sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw== 836 | dependencies: 837 | function-bind "^1.1.1" 838 | 839 | hawk@~2.3.0: 840 | version "2.3.1" 841 | resolved "https://registry.yarnpkg.com/hawk/-/hawk-2.3.1.tgz#1e731ce39447fa1d0f6d707f7bceebec0fd1ec1f" 842 | integrity sha1-HnMc45RH+h0PbXB/e87r7A/R7B8= 843 | dependencies: 844 | boom "2.x.x" 845 | cryptiles "2.x.x" 846 | hoek "2.x.x" 847 | sntp "1.x.x" 848 | 849 | hoek@2.x.x: 850 | version "2.16.3" 851 | resolved "https://registry.yarnpkg.com/hoek/-/hoek-2.16.3.tgz#20bb7403d3cea398e91dc4710a8ff1b8274a25ed" 852 | integrity sha1-ILt0A9POo5jpHcRxCo/xuCdKJe0= 853 | 854 | hosted-git-info@^2.1.4: 855 | version "2.8.9" 856 | resolved "https://registry.yarnpkg.com/hosted-git-info/-/hosted-git-info-2.8.9.tgz#dffc0bf9a21c02209090f2aa69429e1414daf3f9" 857 | integrity sha512-mxIDAb9Lsm6DoOJ7xH+5+X4y1LU/4Hi50L9C5sIswK3JzULS4bwk1FvjdBgvYR4bzT4tuUQiC15FE2f5HbLvYw== 858 | 859 | http-cache-semantics@^4.0.0: 860 | version "4.1.0" 861 | resolved "https://registry.yarnpkg.com/http-cache-semantics/-/http-cache-semantics-4.1.0.tgz#49e91c5cbf36c9b94bcfcd71c23d5249ec74e390" 862 | integrity sha512-carPklcUh7ROWRK7Cv27RPtdhYhUsela/ue5/jKzjegVvXDqM2ILE9Q2BGn9JZJh1g87cp56su/FgQSzcWS8cQ== 863 | 864 | http-signature@~0.10.0: 865 | version "0.10.1" 866 | resolved "https://registry.yarnpkg.com/http-signature/-/http-signature-0.10.1.tgz#4fbdac132559aa8323121e540779c0a012b27e66" 867 | integrity sha1-T72sEyVZqoMjEh5UB3nAoBKyfmY= 868 | dependencies: 869 | asn1 "0.1.11" 870 | assert-plus "^0.1.5" 871 | ctype "0.5.3" 872 | 873 | inflight@^1.0.4: 874 | version "1.0.6" 875 | resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9" 876 | integrity sha1-Sb1jMdfQLQwJvJEKEHW6gWW1bfk= 877 | dependencies: 878 | once "^1.3.0" 879 | wrappy "1" 880 | 881 | inherits@2, inherits@^2.0.3, inherits@~2.0.1, inherits@~2.0.3: 882 | version "2.0.4" 883 | resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.4.tgz#0fa2c64f932917c3433a0ded55363aae37416b7c" 884 | integrity sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ== 885 | 886 | ini@^1.3.4: 887 | version "1.3.8" 888 | resolved "https://registry.yarnpkg.com/ini/-/ini-1.3.8.tgz#a29da425b48806f34767a4efce397269af28432c" 889 | integrity sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew== 890 | 891 | is-arrayish@^0.2.1: 892 | version "0.2.1" 893 | resolved "https://registry.yarnpkg.com/is-arrayish/-/is-arrayish-0.2.1.tgz#77c99840527aa8ecb1a8ba697b80645a7a926a9d" 894 | integrity sha1-d8mYQFJ6qOyxqLppe4BkWnqSap0= 895 | 896 | is-core-module@^2.8.1: 897 | version "2.9.0" 898 | resolved "https://registry.yarnpkg.com/is-core-module/-/is-core-module-2.9.0.tgz#e1c34429cd51c6dd9e09e0799e396e27b19a9c69" 899 | integrity sha512-+5FPy5PnwmO3lvfMb0AsoPaBG+5KHUI0wYFXOtYPnVVVspTFUuMZNfNaNVRt3FZadstu2c8x23vykRW/NBoU6A== 900 | dependencies: 901 | has "^1.0.3" 902 | 903 | is-docker@^2.0.0: 904 | version "2.2.1" 905 | resolved "https://registry.yarnpkg.com/is-docker/-/is-docker-2.2.1.tgz#33eeabe23cfe86f14bde4408a02c0cfb853acdaa" 906 | integrity sha512-F+i2BKsFrH66iaUFc0woD8sLy8getkwTwtOBjvs56Cx4CgJDeKQeqfz8wAYiSb8JOprWhHH5p77PbmYCvvUuXQ== 907 | 908 | is-my-ip-valid@^1.0.0: 909 | version "1.0.1" 910 | resolved "https://registry.yarnpkg.com/is-my-ip-valid/-/is-my-ip-valid-1.0.1.tgz#f7220d1146257c98672e6fba097a9f3f2d348442" 911 | integrity sha512-jxc8cBcOWbNK2i2aTkCZP6i7wkHF1bqKFrwEHuN5Jtg5BSaZHUZQ/JTOJwoV41YvHnOaRyWWh72T/KvfNz9DJg== 912 | 913 | is-my-json-valid@^2.12.0: 914 | version "2.20.6" 915 | resolved "https://registry.yarnpkg.com/is-my-json-valid/-/is-my-json-valid-2.20.6.tgz#a9d89e56a36493c77bda1440d69ae0dc46a08387" 916 | integrity sha512-1JQwulVNjx8UqkPE/bqDaxtH4PXCe/2VRh/y3p99heOV87HG4Id5/VfDswd+YiAfHcRTfDlWgISycnHuhZq1aw== 917 | dependencies: 918 | generate-function "^2.0.0" 919 | generate-object-property "^1.1.0" 920 | is-my-ip-valid "^1.0.0" 921 | jsonpointer "^5.0.0" 922 | xtend "^4.0.0" 923 | 924 | is-property@^1.0.0, is-property@^1.0.2: 925 | version "1.0.2" 926 | resolved "https://registry.yarnpkg.com/is-property/-/is-property-1.0.2.tgz#57fe1c4e48474edd65b09911f26b1cd4095dda84" 927 | integrity sha1-V/4cTkhHTt1lsJkR8msc1Ald2oQ= 928 | 929 | is-wsl@^2.2.0: 930 | version "2.2.0" 931 | resolved "https://registry.yarnpkg.com/is-wsl/-/is-wsl-2.2.0.tgz#74a4c76e77ca9fd3f932f290c17ea326cd157271" 932 | integrity sha512-fKzAra0rGJUUBwGBgNkHZuToZcn+TtXHpeCgmkMJMMYx1sQDYaCSyjJBSCa2nH1DGm7s3n1oBnohoVTBaN7Lww== 933 | dependencies: 934 | is-docker "^2.0.0" 935 | 936 | isarray@0.0.1: 937 | version "0.0.1" 938 | resolved "https://registry.yarnpkg.com/isarray/-/isarray-0.0.1.tgz#8a18acfca9a8f4177e09abfc6038939b05d1eedf" 939 | integrity sha1-ihis/Kmo9Bd+Cav8YDiTmwXR7t8= 940 | 941 | isarray@~1.0.0: 942 | version "1.0.0" 943 | resolved "https://registry.yarnpkg.com/isarray/-/isarray-1.0.0.tgz#bb935d48582cba168c06834957a54a3e07124f11" 944 | integrity sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE= 945 | 946 | isbinaryfile@^3.0.2: 947 | version "3.0.3" 948 | resolved "https://registry.yarnpkg.com/isbinaryfile/-/isbinaryfile-3.0.3.tgz#5d6def3edebf6e8ca8cae9c30183a804b5f8be80" 949 | integrity sha512-8cJBL5tTd2OS0dM4jz07wQd5g0dCCqIhUxPIGtZfa5L6hWlvV5MHTITy/DBAsF+Oe2LS1X3krBUhNwaGUWpWxw== 950 | dependencies: 951 | buffer-alloc "^1.2.0" 952 | 953 | isexe@^2.0.0: 954 | version "2.0.0" 955 | resolved "https://registry.yarnpkg.com/isexe/-/isexe-2.0.0.tgz#e8fbf374dc556ff8947a10dcb0572d633f2cfa10" 956 | integrity sha1-6PvzdNxVb/iUehDcsFctYz8s+hA= 957 | 958 | isstream@~0.1.1: 959 | version "0.1.2" 960 | resolved "https://registry.yarnpkg.com/isstream/-/isstream-0.1.2.tgz#47e63f7af55afa6f92e1500e690eb8b8529c099a" 961 | integrity sha1-R+Y/evVa+m+S4VAOaQ64uFKcCZo= 962 | 963 | json-buffer@3.0.0: 964 | version "3.0.0" 965 | resolved "https://registry.yarnpkg.com/json-buffer/-/json-buffer-3.0.0.tgz#5b1f397afc75d677bde8bcfc0e47e1f9a3d9a898" 966 | integrity sha1-Wx85evx11ne96Lz8Dkfh+aPZqJg= 967 | 968 | json-stringify-safe@^5.0.1, json-stringify-safe@~5.0.0: 969 | version "5.0.1" 970 | resolved "https://registry.yarnpkg.com/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz#1296a2d58fd45f19a0f6ce01d65701e2c735b6eb" 971 | integrity sha1-Epai1Y/UXxmg9s4B1lcB4sc1tus= 972 | 973 | jsonfile@^2.0.0: 974 | version "2.4.0" 975 | resolved "https://registry.yarnpkg.com/jsonfile/-/jsonfile-2.4.0.tgz#3736a2b428b87bbda0cc83b53fa3d633a35c2ae8" 976 | integrity sha1-NzaitCi4e72gzIO1P6PWM6NcKug= 977 | optionalDependencies: 978 | graceful-fs "^4.1.6" 979 | 980 | jsonfile@^4.0.0: 981 | version "4.0.0" 982 | resolved "https://registry.yarnpkg.com/jsonfile/-/jsonfile-4.0.0.tgz#8771aae0799b64076b76640fca058f9c10e33ecb" 983 | integrity sha1-h3Gq4HmbZAdrdmQPygWPnBDjPss= 984 | optionalDependencies: 985 | graceful-fs "^4.1.6" 986 | 987 | jsonfile@^6.0.1: 988 | version "6.1.0" 989 | resolved "https://registry.yarnpkg.com/jsonfile/-/jsonfile-6.1.0.tgz#bc55b2634793c679ec6403094eb13698a6ec0aae" 990 | integrity sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ== 991 | dependencies: 992 | universalify "^2.0.0" 993 | optionalDependencies: 994 | graceful-fs "^4.1.6" 995 | 996 | jsonpointer@^5.0.0: 997 | version "5.0.0" 998 | resolved "https://registry.yarnpkg.com/jsonpointer/-/jsonpointer-5.0.0.tgz#f802669a524ec4805fa7389eadbc9921d5dc8072" 999 | integrity sha512-PNYZIdMjVIvVgDSYKTT63Y+KZ6IZvGRNNWcxwD+GNnUz1MKPfv30J8ueCjdwcN0nDx2SlshgyB7Oy0epAzVRRg== 1000 | 1001 | junk@^3.1.0: 1002 | version "3.1.0" 1003 | resolved "https://registry.yarnpkg.com/junk/-/junk-3.1.0.tgz#31499098d902b7e98c5d9b9c80f43457a88abfa1" 1004 | integrity sha512-pBxcB3LFc8QVgdggvZWyeys+hnrNWg4OcZIU/1X59k5jQdLBlCsYGRQaz234SqoRLTCgMH00fY0xRJH+F9METQ== 1005 | 1006 | keyv@^3.0.0: 1007 | version "3.1.0" 1008 | resolved "https://registry.yarnpkg.com/keyv/-/keyv-3.1.0.tgz#ecc228486f69991e49e9476485a5be1e8fc5c4d9" 1009 | integrity sha512-9ykJ/46SN/9KPM/sichzQ7OvXyGDYKGTaDlKMGCAlg2UK8KRy4jb0d8sFc+0Tt0YYnThq8X2RZgCg74RPxgcVA== 1010 | dependencies: 1011 | json-buffer "3.0.0" 1012 | 1013 | load-json-file@^2.0.0: 1014 | version "2.0.0" 1015 | resolved "https://registry.yarnpkg.com/load-json-file/-/load-json-file-2.0.0.tgz#7947e42149af80d696cbf797bcaabcfe1fe29ca8" 1016 | integrity sha1-eUfkIUmvgNaWy/eXvKq8/h/inKg= 1017 | dependencies: 1018 | graceful-fs "^4.1.2" 1019 | parse-json "^2.2.0" 1020 | pify "^2.0.0" 1021 | strip-bom "^3.0.0" 1022 | 1023 | locate-path@^2.0.0: 1024 | version "2.0.0" 1025 | resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-2.0.0.tgz#2b568b265eec944c6d9c0de9c3dbbbca0354cd8e" 1026 | integrity sha1-K1aLJl7slExtnA3pw9u7ygNUzY4= 1027 | dependencies: 1028 | p-locate "^2.0.0" 1029 | path-exists "^3.0.0" 1030 | 1031 | lodash.get@^4.0.0: 1032 | version "4.4.2" 1033 | resolved "https://registry.yarnpkg.com/lodash.get/-/lodash.get-4.4.2.tgz#2d177f652fa31e939b4438d5341499dfa3825e99" 1034 | integrity sha1-LRd/ZS+jHpObRDjVNBSZ36OCXpk= 1035 | 1036 | lodash@^4.17.10: 1037 | version "4.17.21" 1038 | resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.21.tgz#679591c564c3bffaae8454cf0b3df370c3d6911c" 1039 | integrity sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg== 1040 | 1041 | lowercase-keys@^1.0.0, lowercase-keys@^1.0.1: 1042 | version "1.0.1" 1043 | resolved "https://registry.yarnpkg.com/lowercase-keys/-/lowercase-keys-1.0.1.tgz#6f9e30b47084d971a7c820ff15a6c5167b74c26f" 1044 | integrity sha512-G2Lj61tXDnVFFOi8VZds+SoQjtQC3dgokKdDG2mTm1tx4m50NUHBOZSBwQQHyy0V12A0JTG4icfZQH+xPyh8VA== 1045 | 1046 | lowercase-keys@^2.0.0: 1047 | version "2.0.0" 1048 | resolved "https://registry.yarnpkg.com/lowercase-keys/-/lowercase-keys-2.0.0.tgz#2603e78b7b4b0006cbca2fbcc8a3202558ac9479" 1049 | integrity sha512-tqNXrS78oMOE73NMxK4EMLQsQowWf8jKooH9g7xPavRT706R6bkQJ6DY2Te7QukaZsulxa30wQ7bk0pm4XiHmA== 1050 | 1051 | lru-cache@^6.0.0: 1052 | version "6.0.0" 1053 | resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-6.0.0.tgz#6d6fe6570ebd96aaf90fcad1dafa3b2566db3a94" 1054 | integrity sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA== 1055 | dependencies: 1056 | yallist "^4.0.0" 1057 | 1058 | matcher@^3.0.0: 1059 | version "3.0.0" 1060 | resolved "https://registry.yarnpkg.com/matcher/-/matcher-3.0.0.tgz#bd9060f4c5b70aa8041ccc6f80368760994f30ca" 1061 | integrity sha512-OkeDaAZ/bQCxeFAozM55PKcKU0yJMPGifLwV4Qgjitu+5MoAfSQN4lsLJeXZ1b8w0x+/Emda6MZgXS1jvsapng== 1062 | dependencies: 1063 | escape-string-regexp "^4.0.0" 1064 | 1065 | mime-db@~1.12.0: 1066 | version "1.12.0" 1067 | resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.12.0.tgz#3d0c63180f458eb10d325aaa37d7c58ae312e9d7" 1068 | integrity sha1-PQxjGA9FjrENMlqqN9fFiuMS6dc= 1069 | 1070 | mime-types@~2.0.1, mime-types@~2.0.3: 1071 | version "2.0.14" 1072 | resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-2.0.14.tgz#310e159db23e077f8bb22b748dabfa4957140aa6" 1073 | integrity sha1-MQ4VnbI+B3+Lsit0jav6SVcUCqY= 1074 | dependencies: 1075 | mime-db "~1.12.0" 1076 | 1077 | mimic-response@^1.0.0, mimic-response@^1.0.1: 1078 | version "1.0.1" 1079 | resolved "https://registry.yarnpkg.com/mimic-response/-/mimic-response-1.0.1.tgz#4923538878eef42063cb8a3e3b0798781487ab1b" 1080 | integrity sha512-j5EctnkH7amfV/q5Hgmoal1g2QHFJRraOtmx0JpIqkxhBhI/lJSl1nMpQ45hVarwNETOoWEimndZ4QK0RHxuxQ== 1081 | 1082 | minimatch@3.0.4: 1083 | version "3.0.4" 1084 | resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.0.4.tgz#5166e286457f03306064be5497e8dbb0c3d32083" 1085 | integrity sha512-yJHVQEhyqPLUTgt9B83PXu6W3rx4MvvHvSUvToogpwoGDOUQ+yDrR0HRot+yOCdCO7u4hX3pWft6kWBBcqh0UA== 1086 | dependencies: 1087 | brace-expansion "^1.1.7" 1088 | 1089 | minimatch@^3.0.4: 1090 | version "3.1.2" 1091 | resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.1.2.tgz#19cd194bfd3e428f049a70817c038d89ab4be35b" 1092 | integrity sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw== 1093 | dependencies: 1094 | brace-expansion "^1.1.7" 1095 | 1096 | minimist@^1.2.0, minimist@^1.2.6: 1097 | version "1.2.6" 1098 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.6.tgz#8637a5b759ea0d6e98702cfb3a9283323c93af44" 1099 | integrity sha512-Jsjnk4bw3YJqYzbdyBiNsPWHPfO++UGG749Cxs6peCu5Xg4nrena6OVxOYxrQTqww0Jmwt+Ref8rggumkTLz9Q== 1100 | 1101 | mkdirp@^0.5.4: 1102 | version "0.5.6" 1103 | resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.5.6.tgz#7def03d2432dcae4ba1d611445c48396062255f6" 1104 | integrity sha512-FP+p8RB8OWpF3YZBCrP5gtADmtXApB5AMLn+vdyA+PyxCjrCs00mjyUozssO33cwDeT3wNGdLxJ5M//YqtHAJw== 1105 | dependencies: 1106 | minimist "^1.2.6" 1107 | 1108 | mkpath@^0.1.0: 1109 | version "0.1.0" 1110 | resolved "https://registry.yarnpkg.com/mkpath/-/mkpath-0.1.0.tgz#7554a6f8d871834cc97b5462b122c4c124d6de91" 1111 | integrity sha1-dVSm+Nhxg0zJe1RisSLEwSTW3pE= 1112 | 1113 | mksnapshot@^0.1.0: 1114 | version "0.1.0" 1115 | resolved "https://registry.yarnpkg.com/mksnapshot/-/mksnapshot-0.1.0.tgz#f7d09abca806ad8c3780da701bb18778d7ce69ac" 1116 | integrity sha1-99CavKgGrYw3gNpwG7GHeNfOaaw= 1117 | dependencies: 1118 | decompress-zip "0.1.0" 1119 | fs-extra "0.18.2" 1120 | request "2.55.0" 1121 | 1122 | ms@2.0.0: 1123 | version "2.0.0" 1124 | resolved "https://registry.yarnpkg.com/ms/-/ms-2.0.0.tgz#5608aeadfc00be6c2901df5f9861788de0d597c8" 1125 | integrity sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g= 1126 | 1127 | ms@2.1.2: 1128 | version "2.1.2" 1129 | resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.2.tgz#d09d1f357b443f493382a8eb3ccd183872ae6009" 1130 | integrity sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w== 1131 | 1132 | ms@^2.1.1: 1133 | version "2.1.3" 1134 | resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.3.tgz#574c8138ce1d2b5861f0b44579dbadd60c6615b2" 1135 | integrity sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA== 1136 | 1137 | natives@^1.1.3: 1138 | version "1.1.6" 1139 | resolved "https://registry.yarnpkg.com/natives/-/natives-1.1.6.tgz#a603b4a498ab77173612b9ea1acdec4d980f00bb" 1140 | integrity sha512-6+TDFewD4yxY14ptjKaS63GVdtKiES1pTPyxn9Jb0rBqPMZ7VcCiooEhPNsr+mqHtMGxa/5c/HhcC4uPEUw/nA== 1141 | 1142 | node-uuid@~1.4.0: 1143 | version "1.4.8" 1144 | resolved "https://registry.yarnpkg.com/node-uuid/-/node-uuid-1.4.8.tgz#b040eb0923968afabf8d32fb1f17f1167fdab907" 1145 | integrity sha1-sEDrCSOWivq/jTL7HxfxFn/auQc= 1146 | 1147 | nopt@^3.0.1: 1148 | version "3.0.6" 1149 | resolved "https://registry.yarnpkg.com/nopt/-/nopt-3.0.6.tgz#c6465dbf08abcd4db359317f79ac68a646b28ff9" 1150 | integrity sha1-xkZdvwirzU2zWTF/eaxopkayj/k= 1151 | dependencies: 1152 | abbrev "1" 1153 | 1154 | nopt@~1.0.10: 1155 | version "1.0.10" 1156 | resolved "https://registry.yarnpkg.com/nopt/-/nopt-1.0.10.tgz#6ddd21bd2a31417b92727dd585f8a6f37608ebee" 1157 | integrity sha1-bd0hvSoxQXuScn3Vhfim83YI6+4= 1158 | dependencies: 1159 | abbrev "1" 1160 | 1161 | normalize-package-data@^2.3.2: 1162 | version "2.5.0" 1163 | resolved "https://registry.yarnpkg.com/normalize-package-data/-/normalize-package-data-2.5.0.tgz#e66db1838b200c1dfc233225d12cb36520e234a8" 1164 | integrity sha512-/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA== 1165 | dependencies: 1166 | hosted-git-info "^2.1.4" 1167 | resolve "^1.10.0" 1168 | semver "2 || 3 || 4 || 5" 1169 | validate-npm-package-license "^3.0.1" 1170 | 1171 | normalize-url@^4.1.0: 1172 | version "4.5.1" 1173 | resolved "https://registry.yarnpkg.com/normalize-url/-/normalize-url-4.5.1.tgz#0dd90cf1288ee1d1313b87081c9a5932ee48518a" 1174 | integrity sha512-9UZCFRHQdNrfTpGg8+1INIg93B6zE0aXMVFkw1WFwvO4SlZywU6aLg5Of0Ap/PgcbSw4LNxvMWXMeugwMCX0AA== 1175 | 1176 | npm-conf@^1.1.3: 1177 | version "1.1.3" 1178 | resolved "https://registry.yarnpkg.com/npm-conf/-/npm-conf-1.1.3.tgz#256cc47bd0e218c259c4e9550bf413bc2192aff9" 1179 | integrity sha512-Yic4bZHJOt9RCFbRP3GgpqhScOY4HH3V2P8yBj6CeYq118Qr+BLXqT2JvpJ00mryLESpgOxf5XlFv4ZjXxLScw== 1180 | dependencies: 1181 | config-chain "^1.1.11" 1182 | pify "^3.0.0" 1183 | 1184 | oauth-sign@~0.6.0: 1185 | version "0.6.0" 1186 | resolved "https://registry.yarnpkg.com/oauth-sign/-/oauth-sign-0.6.0.tgz#7dbeae44f6ca454e1f168451d630746735813ce3" 1187 | integrity sha1-fb6uRPbKRU4fFoRR1jB0ZzWBPOM= 1188 | 1189 | object-keys@^1.1.1: 1190 | version "1.1.1" 1191 | resolved "https://registry.yarnpkg.com/object-keys/-/object-keys-1.1.1.tgz#1c47f272df277f3b1daf061677d9c82e2322c60e" 1192 | integrity sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA== 1193 | 1194 | once@^1.3.0, once@^1.3.1, once@^1.4.0: 1195 | version "1.4.0" 1196 | resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1" 1197 | integrity sha1-WDsap3WWHUsROsF9nFC6753Xa9E= 1198 | dependencies: 1199 | wrappy "1" 1200 | 1201 | p-cancelable@^1.0.0: 1202 | version "1.1.0" 1203 | resolved "https://registry.yarnpkg.com/p-cancelable/-/p-cancelable-1.1.0.tgz#d078d15a3af409220c886f1d9a0ca2e441ab26cc" 1204 | integrity sha512-s73XxOZ4zpt1edZYZzvhqFa6uvQc1vwUa0K0BdtIZgQMAJj9IbebH+JkgKZc9h+B05PKHLOTl4ajG1BmNrVZlw== 1205 | 1206 | p-limit@^1.1.0: 1207 | version "1.3.0" 1208 | resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-1.3.0.tgz#b86bd5f0c25690911c7590fcbfc2010d54b3ccb8" 1209 | integrity sha512-vvcXsLAJ9Dr5rQOPk7toZQZJApBl2K4J6dANSsEuh6QI41JYcsS/qhTGa9ErIUUgK3WNQoJYvylxvjqmiqEA9Q== 1210 | dependencies: 1211 | p-try "^1.0.0" 1212 | 1213 | p-locate@^2.0.0: 1214 | version "2.0.0" 1215 | resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-2.0.0.tgz#20a0103b222a70c8fd39cc2e580680f3dde5ec43" 1216 | integrity sha1-IKAQOyIqcMj9OcwuWAaA893l7EM= 1217 | dependencies: 1218 | p-limit "^1.1.0" 1219 | 1220 | p-try@^1.0.0: 1221 | version "1.0.0" 1222 | resolved "https://registry.yarnpkg.com/p-try/-/p-try-1.0.0.tgz#cbc79cdbaf8fd4228e13f621f2b1a237c1b207b3" 1223 | integrity sha1-y8ec26+P1CKOE/Yh8rGiN8GyB7M= 1224 | 1225 | parse-author@^2.0.0: 1226 | version "2.0.0" 1227 | resolved "https://registry.yarnpkg.com/parse-author/-/parse-author-2.0.0.tgz#d3460bf1ddd0dfaeed42da754242e65fb684a81f" 1228 | integrity sha1-00YL8d3Q367tQtp1QkLmX7aEqB8= 1229 | dependencies: 1230 | author-regex "^1.0.0" 1231 | 1232 | parse-json@^2.2.0: 1233 | version "2.2.0" 1234 | resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-2.2.0.tgz#f480f40434ef80741f8469099f8dea18f55a4dc9" 1235 | integrity sha1-9ID0BDTvgHQfhGkJn43qGPVaTck= 1236 | dependencies: 1237 | error-ex "^1.2.0" 1238 | 1239 | path-exists@^3.0.0: 1240 | version "3.0.0" 1241 | resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-3.0.0.tgz#ce0ebeaa5f78cb18925ea7d810d7b59b010fd515" 1242 | integrity sha1-zg6+ql94yxiSXqfYENe1mwEP1RU= 1243 | 1244 | path-is-absolute@^1.0.0: 1245 | version "1.0.1" 1246 | resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f" 1247 | integrity sha1-F0uSaHNVNP+8es5r9TpanhtcX18= 1248 | 1249 | path-key@^3.1.0: 1250 | version "3.1.1" 1251 | resolved "https://registry.yarnpkg.com/path-key/-/path-key-3.1.1.tgz#581f6ade658cbba65a0d3380de7753295054f375" 1252 | integrity sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q== 1253 | 1254 | path-parse@^1.0.7: 1255 | version "1.0.7" 1256 | resolved "https://registry.yarnpkg.com/path-parse/-/path-parse-1.0.7.tgz#fbc114b60ca42b30d9daf5858e4bd68bbedb6735" 1257 | integrity sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw== 1258 | 1259 | path-type@^2.0.0: 1260 | version "2.0.0" 1261 | resolved "https://registry.yarnpkg.com/path-type/-/path-type-2.0.0.tgz#f012ccb8415b7096fc2daa1054c3d72389594c73" 1262 | integrity sha1-8BLMuEFbcJb8LaoQVMPXI4lZTHM= 1263 | dependencies: 1264 | pify "^2.0.0" 1265 | 1266 | pend@~1.2.0: 1267 | version "1.2.0" 1268 | resolved "https://registry.yarnpkg.com/pend/-/pend-1.2.0.tgz#7a57eb550a6783f9115331fcf4663d5c8e007a50" 1269 | integrity sha1-elfrVQpng/kRUzH89GY9XI4AelA= 1270 | 1271 | pify@^2.0.0: 1272 | version "2.3.0" 1273 | resolved "https://registry.yarnpkg.com/pify/-/pify-2.3.0.tgz#ed141a6ac043a849ea588498e7dca8b15330e90c" 1274 | integrity sha1-7RQaasBDqEnqWISY59yosVMw6Qw= 1275 | 1276 | pify@^3.0.0: 1277 | version "3.0.0" 1278 | resolved "https://registry.yarnpkg.com/pify/-/pify-3.0.0.tgz#e5a4acd2c101fdf3d9a4d07f0dbc4db49dd28176" 1279 | integrity sha1-5aSs0sEB/fPZpNB/DbxNtJ3SgXY= 1280 | 1281 | plist@^3.0.0, plist@^3.0.1, plist@^3.0.4: 1282 | version "3.0.5" 1283 | resolved "https://registry.yarnpkg.com/plist/-/plist-3.0.5.tgz#2cbeb52d10e3cdccccf0c11a63a85d830970a987" 1284 | integrity sha512-83vX4eYdQp3vP9SxuYgEM/G/pJQqLUz/V/xzPrzruLs7fz7jxGQ1msZ/mg1nwZxUSuOp4sb+/bEIbRrbzZRxDA== 1285 | dependencies: 1286 | base64-js "^1.5.1" 1287 | xmlbuilder "^9.0.7" 1288 | 1289 | prepend-http@^2.0.0: 1290 | version "2.0.0" 1291 | resolved "https://registry.yarnpkg.com/prepend-http/-/prepend-http-2.0.0.tgz#e92434bfa5ea8c19f41cdfd401d741a3c819d897" 1292 | integrity sha1-6SQ0v6XqjBn0HN/UAddBo8gZ2Jc= 1293 | 1294 | process-nextick-args@~2.0.0: 1295 | version "2.0.1" 1296 | resolved "https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-2.0.1.tgz#7820d9b16120cc55ca9ae7792680ae7dba6d7fe2" 1297 | integrity sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag== 1298 | 1299 | progress@^2.0.3: 1300 | version "2.0.3" 1301 | resolved "https://registry.yarnpkg.com/progress/-/progress-2.0.3.tgz#7e8cf8d8f5b8f239c1bc68beb4eb78567d572ef8" 1302 | integrity sha512-7PiHtLll5LdnKIMw100I+8xJXR5gW2QwWYkT6iJva0bXitZKa/XMrSbdmg3r2Xnaidz9Qumd0VPaMrZlF9V9sA== 1303 | 1304 | proto-list@~1.2.1: 1305 | version "1.2.4" 1306 | resolved "https://registry.yarnpkg.com/proto-list/-/proto-list-1.2.4.tgz#212d5bfe1318306a420f6402b8e26ff39647a849" 1307 | integrity sha1-IS1b/hMYMGpCD2QCuOJv85ZHqEk= 1308 | 1309 | psl@^1.1.33: 1310 | version "1.8.0" 1311 | resolved "https://registry.yarnpkg.com/psl/-/psl-1.8.0.tgz#9326f8bcfb013adcc005fdff056acce020e51c24" 1312 | integrity sha512-RIdOzyoavK+hA18OGGWDqUTsCLhtA7IcZ/6NCs4fFJaHBDab+pDDmDIByWFRQJq2Cd7r1OoQxBGKOaztq+hjIQ== 1313 | 1314 | pump@^3.0.0: 1315 | version "3.0.0" 1316 | resolved "https://registry.yarnpkg.com/pump/-/pump-3.0.0.tgz#b4a2116815bde2f4e1ea602354e8c75565107a64" 1317 | integrity sha512-LwZy+p3SFs1Pytd/jYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww== 1318 | dependencies: 1319 | end-of-stream "^1.1.0" 1320 | once "^1.3.1" 1321 | 1322 | punycode@^2.1.1: 1323 | version "2.1.1" 1324 | resolved "https://registry.yarnpkg.com/punycode/-/punycode-2.1.1.tgz#b58b010ac40c22c5657616c8d2c2c02c7bf479ec" 1325 | integrity sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A== 1326 | 1327 | q@^1.1.2: 1328 | version "1.5.1" 1329 | resolved "https://registry.yarnpkg.com/q/-/q-1.5.1.tgz#7e32f75b41381291d04611f1bf14109ac00651d7" 1330 | integrity sha1-fjL3W0E4EpHQRhHxvxQQmsAGUdc= 1331 | 1332 | qs@~2.4.0: 1333 | version "2.4.2" 1334 | resolved "https://registry.yarnpkg.com/qs/-/qs-2.4.2.tgz#f7ce788e5777df0b5010da7f7c4e73ba32470f5a" 1335 | integrity sha1-9854jld33wtQENp/fE5zujJHD1o= 1336 | 1337 | rcedit@^3.0.1: 1338 | version "3.0.1" 1339 | resolved "https://registry.yarnpkg.com/rcedit/-/rcedit-3.0.1.tgz#ae21b43e49c075f4d84df1929832a12c302f3c90" 1340 | integrity sha512-XM0Jv40/y4hVAqj/MO70o/IWs4uOsaSoo2mLyk3klFDW+SStLnCtzuQu+1OBTIMGlM8CvaK9ftlYCp6DJ+cMsw== 1341 | dependencies: 1342 | cross-spawn-windows-exe "^1.1.0" 1343 | 1344 | read-pkg-up@^2.0.0: 1345 | version "2.0.0" 1346 | resolved "https://registry.yarnpkg.com/read-pkg-up/-/read-pkg-up-2.0.0.tgz#6b72a8048984e0c41e79510fd5e9fa99b3b549be" 1347 | integrity sha1-a3KoBImE4MQeeVEP1en6mbO1Sb4= 1348 | dependencies: 1349 | find-up "^2.0.0" 1350 | read-pkg "^2.0.0" 1351 | 1352 | read-pkg@^2.0.0: 1353 | version "2.0.0" 1354 | resolved "https://registry.yarnpkg.com/read-pkg/-/read-pkg-2.0.0.tgz#8ef1c0623c6a6db0dc6713c4bfac46332b2368f8" 1355 | integrity sha1-jvHAYjxqbbDcZxPEv6xGMysjaPg= 1356 | dependencies: 1357 | load-json-file "^2.0.0" 1358 | normalize-package-data "^2.3.2" 1359 | path-type "^2.0.0" 1360 | 1361 | readable-stream@^1.1.8: 1362 | version "1.1.14" 1363 | resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-1.1.14.tgz#7cf4c54ef648e3813084c636dd2079e166c081d9" 1364 | integrity sha1-fPTFTvZI44EwhMY23SB54WbAgdk= 1365 | dependencies: 1366 | core-util-is "~1.0.0" 1367 | inherits "~2.0.1" 1368 | isarray "0.0.1" 1369 | string_decoder "~0.10.x" 1370 | 1371 | readable-stream@^2.2.2: 1372 | version "2.3.7" 1373 | resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.3.7.tgz#1eca1cf711aef814c04f62252a36a62f6cb23b57" 1374 | integrity sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw== 1375 | dependencies: 1376 | core-util-is "~1.0.0" 1377 | inherits "~2.0.3" 1378 | isarray "~1.0.0" 1379 | process-nextick-args "~2.0.0" 1380 | safe-buffer "~5.1.1" 1381 | string_decoder "~1.1.1" 1382 | util-deprecate "~1.0.1" 1383 | 1384 | readable-stream@~1.0.26: 1385 | version "1.0.34" 1386 | resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-1.0.34.tgz#125820e34bc842d2f2aaafafe4c2916ee32c157c" 1387 | integrity sha1-Elgg40vIQtLyqq+v5MKRbuMsFXw= 1388 | dependencies: 1389 | core-util-is "~1.0.0" 1390 | inherits "~2.0.1" 1391 | isarray "0.0.1" 1392 | string_decoder "~0.10.x" 1393 | 1394 | request@2.55.0: 1395 | version "2.55.0" 1396 | resolved "https://registry.yarnpkg.com/request/-/request-2.55.0.tgz#d75c1cdf679d76bb100f9bffe1fe551b5c24e93d" 1397 | integrity sha1-11wc32eddrsQD5v/4f5VG1wk6T0= 1398 | dependencies: 1399 | aws-sign2 "~0.5.0" 1400 | bl "~0.9.0" 1401 | caseless "~0.9.0" 1402 | combined-stream "~0.0.5" 1403 | forever-agent "~0.6.0" 1404 | form-data "~0.2.0" 1405 | har-validator "^1.4.0" 1406 | hawk "~2.3.0" 1407 | http-signature "~0.10.0" 1408 | isstream "~0.1.1" 1409 | json-stringify-safe "~5.0.0" 1410 | mime-types "~2.0.1" 1411 | node-uuid "~1.4.0" 1412 | oauth-sign "~0.6.0" 1413 | qs "~2.4.0" 1414 | stringstream "~0.0.4" 1415 | tough-cookie ">=0.12.0" 1416 | tunnel-agent "~0.4.0" 1417 | 1418 | resolve@^1.1.6, resolve@^1.10.0: 1419 | version "1.22.0" 1420 | resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.22.0.tgz#5e0b8c67c15df57a89bdbabe603a002f21731198" 1421 | integrity sha512-Hhtrw0nLeSrFQ7phPp4OOcVjLPIeMnRlr5mcnVuMe7M/7eBn98A3hmFRLoFo3DLZkivSYwhRUJTyPyWAk56WLw== 1422 | dependencies: 1423 | is-core-module "^2.8.1" 1424 | path-parse "^1.0.7" 1425 | supports-preserve-symlinks-flag "^1.0.0" 1426 | 1427 | responselike@^1.0.2: 1428 | version "1.0.2" 1429 | resolved "https://registry.yarnpkg.com/responselike/-/responselike-1.0.2.tgz#918720ef3b631c5642be068f15ade5a46f4ba1e7" 1430 | integrity sha1-kYcg7ztjHFZCvgaPFa3lpG9Loec= 1431 | dependencies: 1432 | lowercase-keys "^1.0.0" 1433 | 1434 | rimraf@^2.2.8: 1435 | version "2.7.1" 1436 | resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.7.1.tgz#35797f13a7fdadc566142c29d4f07ccad483e3ec" 1437 | integrity sha512-uWjbaKIK3T1OSVptzX7Nl6PvQ3qAGtKEtVRjRuazjfL3Bx5eI409VZSqgND+4UNnmzLVdPj9FqFJNPqBZFve4w== 1438 | dependencies: 1439 | glob "^7.1.3" 1440 | 1441 | roarr@^2.15.3: 1442 | version "2.15.4" 1443 | resolved "https://registry.yarnpkg.com/roarr/-/roarr-2.15.4.tgz#f5fe795b7b838ccfe35dc608e0282b9eba2e7afd" 1444 | integrity sha512-CHhPh+UNHD2GTXNYhPWLnU8ONHdI+5DI+4EYIAOaiD63rHeYlZvyh8P+in5999TTSFgUYuKUAjzRI4mdh/p+2A== 1445 | dependencies: 1446 | boolean "^3.0.1" 1447 | detect-node "^2.0.4" 1448 | globalthis "^1.0.1" 1449 | json-stringify-safe "^5.0.1" 1450 | semver-compare "^1.0.0" 1451 | sprintf-js "^1.1.2" 1452 | 1453 | safe-buffer@~5.1.0, safe-buffer@~5.1.1: 1454 | version "5.1.2" 1455 | resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.1.2.tgz#991ec69d296e0313747d59bdfd2b745c35f8828d" 1456 | integrity sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g== 1457 | 1458 | semver-compare@^1.0.0: 1459 | version "1.0.0" 1460 | resolved "https://registry.yarnpkg.com/semver-compare/-/semver-compare-1.0.0.tgz#0dee216a1c941ab37e9efb1788f6afc5ff5537fc" 1461 | integrity sha1-De4hahyUGrN+nvsXiPavxf9VN/w= 1462 | 1463 | "semver@2 || 3 || 4 || 5": 1464 | version "5.7.1" 1465 | resolved "https://registry.yarnpkg.com/semver/-/semver-5.7.1.tgz#a954f931aeba508d307bbf069eff0c01c96116f7" 1466 | integrity sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ== 1467 | 1468 | semver@^6.2.0: 1469 | version "6.3.0" 1470 | resolved "https://registry.yarnpkg.com/semver/-/semver-6.3.0.tgz#ee0a64c8af5e8ceea67687b133761e1becbd1d3d" 1471 | integrity sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw== 1472 | 1473 | semver@^7.1.3, semver@^7.3.2: 1474 | version "7.3.7" 1475 | resolved "https://registry.yarnpkg.com/semver/-/semver-7.3.7.tgz#12c5b649afdbf9049707796e22a4028814ce523f" 1476 | integrity sha512-QlYTucUYOews+WeEujDoEGziz4K6c47V/Bd+LjSSYcA94p+DmINdf7ncaUinThfvZyu13lN9OY1XDxt8C0Tw0g== 1477 | dependencies: 1478 | lru-cache "^6.0.0" 1479 | 1480 | serialize-error@^7.0.1: 1481 | version "7.0.1" 1482 | resolved "https://registry.yarnpkg.com/serialize-error/-/serialize-error-7.0.1.tgz#f1360b0447f61ffb483ec4157c737fab7d778e18" 1483 | integrity sha512-8I8TjW5KMOKsZQTvoxjuSIa7foAwPWGOts+6o7sgjz41/qMD9VQHEDxi6PBvK2l0MXUmqZyNpUK+T2tQaaElvw== 1484 | dependencies: 1485 | type-fest "^0.13.1" 1486 | 1487 | shebang-command@^2.0.0: 1488 | version "2.0.0" 1489 | resolved "https://registry.yarnpkg.com/shebang-command/-/shebang-command-2.0.0.tgz#ccd0af4f8835fbdc265b82461aaf0c36663f34ea" 1490 | integrity sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA== 1491 | dependencies: 1492 | shebang-regex "^3.0.0" 1493 | 1494 | shebang-regex@^3.0.0: 1495 | version "3.0.0" 1496 | resolved "https://registry.yarnpkg.com/shebang-regex/-/shebang-regex-3.0.0.tgz#ae16f1644d873ecad843b0307b143362d4c42172" 1497 | integrity sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A== 1498 | 1499 | sntp@1.x.x: 1500 | version "1.0.9" 1501 | resolved "https://registry.yarnpkg.com/sntp/-/sntp-1.0.9.tgz#6541184cc90aeea6c6e7b35e2659082443c66198" 1502 | integrity sha1-ZUEYTMkK7qbG57NeJlkIJEPGYZg= 1503 | dependencies: 1504 | hoek "2.x.x" 1505 | 1506 | spdx-correct@^3.0.0: 1507 | version "3.1.1" 1508 | resolved "https://registry.yarnpkg.com/spdx-correct/-/spdx-correct-3.1.1.tgz#dece81ac9c1e6713e5f7d1b6f17d468fa53d89a9" 1509 | integrity sha512-cOYcUWwhCuHCXi49RhFRCyJEK3iPj1Ziz9DpViV3tbZOwXD49QzIN3MpOLJNxh2qwq2lJJZaKMVw9qNi4jTC0w== 1510 | dependencies: 1511 | spdx-expression-parse "^3.0.0" 1512 | spdx-license-ids "^3.0.0" 1513 | 1514 | spdx-exceptions@^2.1.0: 1515 | version "2.3.0" 1516 | resolved "https://registry.yarnpkg.com/spdx-exceptions/-/spdx-exceptions-2.3.0.tgz#3f28ce1a77a00372683eade4a433183527a2163d" 1517 | integrity sha512-/tTrYOC7PPI1nUAgx34hUpqXuyJG+DTHJTnIULG4rDygi4xu/tfgmq1e1cIRwRzwZgo4NLySi+ricLkZkw4i5A== 1518 | 1519 | spdx-expression-parse@^3.0.0: 1520 | version "3.0.1" 1521 | resolved "https://registry.yarnpkg.com/spdx-expression-parse/-/spdx-expression-parse-3.0.1.tgz#cf70f50482eefdc98e3ce0a6833e4a53ceeba679" 1522 | integrity sha512-cbqHunsQWnJNE6KhVSMsMeH5H/L9EpymbzqTQ3uLwNCLZ1Q481oWaofqH7nO6V07xlXwY6PhQdQ2IedWx/ZK4Q== 1523 | dependencies: 1524 | spdx-exceptions "^2.1.0" 1525 | spdx-license-ids "^3.0.0" 1526 | 1527 | spdx-license-ids@^3.0.0: 1528 | version "3.0.11" 1529 | resolved "https://registry.yarnpkg.com/spdx-license-ids/-/spdx-license-ids-3.0.11.tgz#50c0d8c40a14ec1bf449bae69a0ea4685a9d9f95" 1530 | integrity sha512-Ctl2BrFiM0X3MANYgj3CkygxhRmr9mi6xhejbdO960nF6EDJApTYpn0BQnDKlnNBULKiCN1n3w9EBkHK8ZWg+g== 1531 | 1532 | sprintf-js@^1.1.2: 1533 | version "1.1.2" 1534 | resolved "https://registry.yarnpkg.com/sprintf-js/-/sprintf-js-1.1.2.tgz#da1765262bf8c0f571749f2ad6c26300207ae673" 1535 | integrity sha512-VE0SOVEHCk7Qc8ulkWw3ntAzXuqf7S2lvwQaDLRnUeIEaKNQJzV6BwmLKhOqT61aGhfUMrXeaBk+oDGCzvhcug== 1536 | 1537 | string_decoder@~0.10.x: 1538 | version "0.10.31" 1539 | resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-0.10.31.tgz#62e203bc41766c6c28c9fc84301dab1c5310fa94" 1540 | integrity sha1-YuIDvEF2bGwoyfyEMB2rHFMQ+pQ= 1541 | 1542 | string_decoder@~1.1.1: 1543 | version "1.1.1" 1544 | resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.1.1.tgz#9cf1611ba62685d7030ae9e4ba34149c3af03fc8" 1545 | integrity sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg== 1546 | dependencies: 1547 | safe-buffer "~5.1.0" 1548 | 1549 | stringstream@~0.0.4: 1550 | version "0.0.6" 1551 | resolved "https://registry.yarnpkg.com/stringstream/-/stringstream-0.0.6.tgz#7880225b0d4ad10e30927d167a1d6f2fd3b33a72" 1552 | integrity sha512-87GEBAkegbBcweToUrdzf3eLhWNg06FJTebl4BVJz/JgWy8CvEr9dRtX5qWphiynMSQlxxi+QqN0z5T32SLlhA== 1553 | 1554 | strip-ansi@^3.0.0: 1555 | version "3.0.1" 1556 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-3.0.1.tgz#6a385fb8853d952d5ff05d0e8aaf94278dc63dcf" 1557 | integrity sha1-ajhfuIU9lS1f8F0Oiq+UJ43GPc8= 1558 | dependencies: 1559 | ansi-regex "^2.0.0" 1560 | 1561 | strip-bom@^3.0.0: 1562 | version "3.0.0" 1563 | resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-3.0.0.tgz#2334c18e9c759f7bdd56fdef7e9ae3d588e68ed3" 1564 | integrity sha1-IzTBjpx1n3vdVv3vfprj1YjmjtM= 1565 | 1566 | strip-outer@^1.0.1: 1567 | version "1.0.1" 1568 | resolved "https://registry.yarnpkg.com/strip-outer/-/strip-outer-1.0.1.tgz#b2fd2abf6604b9d1e6013057195df836b8a9d631" 1569 | integrity sha512-k55yxKHwaXnpYGsOzg4Vl8+tDrWylxDEpknGjhTiZB8dFRU5rTo9CAzeycivxV3s+zlTKwrs6WxMxR95n26kwg== 1570 | dependencies: 1571 | escape-string-regexp "^1.0.2" 1572 | 1573 | sumchecker@^3.0.1: 1574 | version "3.0.1" 1575 | resolved "https://registry.yarnpkg.com/sumchecker/-/sumchecker-3.0.1.tgz#6377e996795abb0b6d348e9b3e1dfb24345a8e42" 1576 | integrity sha512-MvjXzkz/BOfyVDkG0oFOtBxHX2u3gKbMHIF/dXblZsgD3BWOFLmHovIpZY7BykJdAjcqRCBi1WYBNdEC9yI7vg== 1577 | dependencies: 1578 | debug "^4.1.0" 1579 | 1580 | supports-color@^2.0.0: 1581 | version "2.0.0" 1582 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-2.0.0.tgz#535d045ce6b6363fa40117084629995e9df324c7" 1583 | integrity sha1-U10EXOa2Nj+kARcIRimZXp3zJMc= 1584 | 1585 | supports-preserve-symlinks-flag@^1.0.0: 1586 | version "1.0.0" 1587 | resolved "https://registry.yarnpkg.com/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz#6eda4bd344a3c94aea376d4cc31bc77311039e09" 1588 | integrity sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w== 1589 | 1590 | to-readable-stream@^1.0.0: 1591 | version "1.0.0" 1592 | resolved "https://registry.yarnpkg.com/to-readable-stream/-/to-readable-stream-1.0.0.tgz#ce0aa0c2f3df6adf852efb404a783e77c0475771" 1593 | integrity sha512-Iq25XBt6zD5npPhlLVXGFN3/gyR2/qODcKNNyTMd4vbm39HUaOiAM4PMq0eMVC/Tkxz+Zjdsc55g9yyz+Yq00Q== 1594 | 1595 | touch@0.0.3: 1596 | version "0.0.3" 1597 | resolved "https://registry.yarnpkg.com/touch/-/touch-0.0.3.tgz#51aef3d449571d4f287a5d87c9c8b49181a0db1d" 1598 | integrity sha1-Ua7z1ElXHU8oel2Hyci0kYGg2x0= 1599 | dependencies: 1600 | nopt "~1.0.10" 1601 | 1602 | tough-cookie@>=0.12.0: 1603 | version "4.0.0" 1604 | resolved "https://registry.yarnpkg.com/tough-cookie/-/tough-cookie-4.0.0.tgz#d822234eeca882f991f0f908824ad2622ddbece4" 1605 | integrity sha512-tHdtEpQCMrc1YLrMaqXXcj6AxhYi/xgit6mZu1+EDWUn+qhUf8wMQoFIy9NXuq23zAwtcB0t/MjACGR18pcRbg== 1606 | dependencies: 1607 | psl "^1.1.33" 1608 | punycode "^2.1.1" 1609 | universalify "^0.1.2" 1610 | 1611 | "traverse@>=0.3.0 <0.4": 1612 | version "0.3.9" 1613 | resolved "https://registry.yarnpkg.com/traverse/-/traverse-0.3.9.tgz#717b8f220cc0bb7b44e40514c22b2e8bbc70d8b9" 1614 | integrity sha1-cXuPIgzAu3tE5AUUwisui7xw2Lk= 1615 | 1616 | trim-repeated@^1.0.0: 1617 | version "1.0.0" 1618 | resolved "https://registry.yarnpkg.com/trim-repeated/-/trim-repeated-1.0.0.tgz#e3646a2ea4e891312bf7eace6cfb05380bc01c21" 1619 | integrity sha1-42RqLqTokTEr9+rObPsFOAvAHCE= 1620 | dependencies: 1621 | escape-string-regexp "^1.0.2" 1622 | 1623 | tunnel-agent@~0.4.0: 1624 | version "0.4.3" 1625 | resolved "https://registry.yarnpkg.com/tunnel-agent/-/tunnel-agent-0.4.3.tgz#6373db76909fe570e08d73583365ed828a74eeeb" 1626 | integrity sha1-Y3PbdpCf5XDgjXNYM2Xtgop07us= 1627 | 1628 | tunnel@^0.0.6: 1629 | version "0.0.6" 1630 | resolved "https://registry.yarnpkg.com/tunnel/-/tunnel-0.0.6.tgz#72f1314b34a5b192db012324df2cc587ca47f92c" 1631 | integrity sha512-1h/Lnq9yajKY2PEbBadPXj3VxsDDu844OnaAo52UVmIzIvwwtBPIuNvkjuzBlTWpfJyUbG3ez0KSBibQkj4ojg== 1632 | 1633 | type-fest@^0.13.1: 1634 | version "0.13.1" 1635 | resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-0.13.1.tgz#0172cb5bce80b0bd542ea348db50c7e21834d934" 1636 | integrity sha512-34R7HTnG0XIJcBSn5XhDd7nNFPRcXYRZrBB2O2jdKqYODldSzBAqzsWoZYYvduky73toYS/ESqxPvkDf/F0XMg== 1637 | 1638 | typedarray@^0.0.6: 1639 | version "0.0.6" 1640 | resolved "https://registry.yarnpkg.com/typedarray/-/typedarray-0.0.6.tgz#867ac74e3864187b1d3d47d996a78ec5c8830777" 1641 | integrity sha1-hnrHTjhkGHsdPUfZlqeOxciDB3c= 1642 | 1643 | universalify@^0.1.0, universalify@^0.1.2: 1644 | version "0.1.2" 1645 | resolved "https://registry.yarnpkg.com/universalify/-/universalify-0.1.2.tgz#b646f69be3942dabcecc9d6639c80dc105efaa66" 1646 | integrity sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg== 1647 | 1648 | universalify@^2.0.0: 1649 | version "2.0.0" 1650 | resolved "https://registry.yarnpkg.com/universalify/-/universalify-2.0.0.tgz#75a4984efedc4b08975c5aeb73f530d02df25717" 1651 | integrity sha512-hAZsKq7Yy11Zu1DE0OzWjw7nnLZmJZYTDZZyEFHZdUhV8FkH5MCfoU1XMaxXovpyW5nq5scPqq0ZDP9Zyl04oQ== 1652 | 1653 | url-parse-lax@^3.0.0: 1654 | version "3.0.0" 1655 | resolved "https://registry.yarnpkg.com/url-parse-lax/-/url-parse-lax-3.0.0.tgz#16b5cafc07dbe3676c1b1999177823d6503acb0c" 1656 | integrity sha1-FrXK/Afb42dsGxmZF3gj1lA6yww= 1657 | dependencies: 1658 | prepend-http "^2.0.0" 1659 | 1660 | util-deprecate@~1.0.1: 1661 | version "1.0.2" 1662 | resolved "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf" 1663 | integrity sha1-RQ1Nyfpw3nMnYvvS1KKJgUGaDM8= 1664 | 1665 | validate-npm-package-license@^3.0.1: 1666 | version "3.0.4" 1667 | resolved "https://registry.yarnpkg.com/validate-npm-package-license/-/validate-npm-package-license-3.0.4.tgz#fc91f6b9c7ba15c857f4cb2c5defeec39d4f410a" 1668 | integrity sha512-DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew== 1669 | dependencies: 1670 | spdx-correct "^3.0.0" 1671 | spdx-expression-parse "^3.0.0" 1672 | 1673 | which@^2.0.1, which@^2.0.2: 1674 | version "2.0.2" 1675 | resolved "https://registry.yarnpkg.com/which/-/which-2.0.2.tgz#7c6a8dd0a636a0327e10b59c9286eee93f3f51b1" 1676 | integrity sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA== 1677 | dependencies: 1678 | isexe "^2.0.0" 1679 | 1680 | wrappy@1: 1681 | version "1.0.2" 1682 | resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f" 1683 | integrity sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8= 1684 | 1685 | xmlbuilder@^9.0.7: 1686 | version "9.0.7" 1687 | resolved "https://registry.yarnpkg.com/xmlbuilder/-/xmlbuilder-9.0.7.tgz#132ee63d2ec5565c557e20f4c22df9aca686b10d" 1688 | integrity sha1-Ey7mPS7FVlxVfiD0wi35rKaGsQ0= 1689 | 1690 | xtend@^4.0.0: 1691 | version "4.0.2" 1692 | resolved "https://registry.yarnpkg.com/xtend/-/xtend-4.0.2.tgz#bb72779f5fa465186b1f438f674fa347fdb5db54" 1693 | integrity sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ== 1694 | 1695 | yallist@^4.0.0: 1696 | version "4.0.0" 1697 | resolved "https://registry.yarnpkg.com/yallist/-/yallist-4.0.0.tgz#9bb92790d9c0effec63be73519e11a35019a3a72" 1698 | integrity sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A== 1699 | 1700 | yargs-parser@^20.0.0: 1701 | version "20.2.9" 1702 | resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-20.2.9.tgz#2eb7dc3b0289718fc295f362753845c41a0c94ee" 1703 | integrity sha512-y11nGElTIV+CT3Zv9t7VKl+Q3hTQoT9a1Qzezhhl6Rp21gJ/IVTW7Z3y9EWXhuUBC2Shnf+DX0antecpAwSP8w== 1704 | 1705 | yarn@^1.22.18: 1706 | version "1.22.18" 1707 | resolved "https://registry.yarnpkg.com/yarn/-/yarn-1.22.18.tgz#05b822ade8c672987bab8858635145da0850f78a" 1708 | integrity sha512-oFffv6Jp2+BTUBItzx1Z0dpikTX+raRdqupfqzeMKnoh7WD6RuPAxcqDkMUy9vafJkrB0YaV708znpuMhEBKGQ== 1709 | 1710 | yauzl@^2.10.0: 1711 | version "2.10.0" 1712 | resolved "https://registry.yarnpkg.com/yauzl/-/yauzl-2.10.0.tgz#c7eb17c93e112cb1086fa6d8e51fb0667b79a5f9" 1713 | integrity sha1-x+sXyT4RLLEIb6bY5R+wZnt5pfk= 1714 | dependencies: 1715 | buffer-crc32 "~0.2.3" 1716 | fd-slicer "~1.1.0" 1717 | --------------------------------------------------------------------------------