├── .esdoc.json ├── .github └── workflows │ └── test.yml ├── .gitignore ├── .npmignore ├── LICENSE ├── README.md ├── package.json ├── src ├── DSBDecode.js ├── DSBEncoding.js ├── base64.js └── index.js ├── test └── test.js └── yarn.lock /.esdoc.json: -------------------------------------------------------------------------------- 1 | { 2 | "source": "./src", 3 | "destination": "./docs", 4 | "plugins": [ 5 | { 6 | "name": "esdoc-standard-plugin", 7 | "option": { 8 | "accessor": { "access": ["public"], "autoPrivate": true } 9 | } 10 | }, 11 | { 12 | "name": "esdoc-external-nodejs-plugin", 13 | "option": { "enable": true } 14 | }, 15 | { 16 | "name": "esdoc-external-ecmascript-plugin", 17 | "option": { "enable": true } 18 | } 19 | ] 20 | } 21 | -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- 1 | name: Test the dsb 2 | on: 3 | schedule: 4 | - cron: "20 0 * * *" 5 | push: 6 | pull_request: 7 | workflow_dispatch: 8 | 9 | jobs: 10 | test: 11 | name: Test 12 | runs-on: macOS-latest 13 | steps: 14 | - uses: actions/checkout@v1 15 | - uses: actions/setup-node@v1 16 | with: 17 | node-version: "12" 18 | - run: yarn 19 | - run: yarn build 20 | - run: yarn test 21 | env: 22 | DSBUSERNAME: ${{ secrets.DSBUSERNAME }} 23 | PASSWORD: ${{ secrets.PASSWORD }} 24 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # Created by .ignore support plugin (hsz.mobi) 2 | ### Node template 3 | # Logs 4 | logs 5 | *.log 6 | npm-debug.log* 7 | 8 | # Runtime data 9 | pids 10 | *.pid 11 | *.seed 12 | *.pid.lock 13 | 14 | # Directory for instrumented libs generated by jscoverage/JSCover 15 | lib-cov 16 | 17 | # Coverage directory used by tools like istanbul 18 | coverage 19 | 20 | # nyc test coverage 21 | .nyc_output 22 | 23 | # Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files) 24 | .grunt 25 | 26 | # node-waf configuration 27 | .lock-wscript 28 | 29 | # Compiled binary addons (http://nodejs.org/api/addons.html) 30 | build/Release 31 | 32 | # Dependency directories 33 | node_modules 34 | jspm_packages 35 | 36 | # Optional npm cache directory 37 | .npm 38 | 39 | # Optional eslint cache 40 | .eslintcache 41 | 42 | # Optional REPL history 43 | .node_repl_history 44 | 45 | # Output of 'npm pack' 46 | *.tgz 47 | 48 | # Yarn Integrity file 49 | .yarn-integrity 50 | 51 | 52 | .idea/ 53 | 54 | cache.json 55 | 56 | .DS_Store 57 | 58 | _test.js 59 | 60 | docs/ 61 | 62 | dist/ 63 | 64 | .env -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | test/ 2 | docs/ 3 | *.md 4 | .github/ 5 | .env 6 | .esdoc.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | Apache License 2 | Version 2.0, January 2004 3 | http://www.apache.org/licenses/ 4 | 5 | TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION 6 | 7 | 1. Definitions. 8 | 9 | "License" shall mean the terms and conditions for use, reproduction, 10 | and distribution as defined by Sections 1 through 9 of this document. 11 | 12 | "Licensor" shall mean the copyright owner or entity authorized by 13 | the copyright owner that is granting the License. 14 | 15 | "Legal Entity" shall mean the union of the acting entity and all 16 | other entities that control, are controlled by, or are under common 17 | control with that entity. For the purposes of this definition, 18 | "control" means (i) the power, direct or indirect, to cause the 19 | direction or management of such entity, whether by contract or 20 | otherwise, or (ii) ownership of fifty percent (50%) or more of the 21 | outstanding shares, or (iii) beneficial ownership of such entity. 22 | 23 | "You" (or "Your") shall mean an individual or Legal Entity 24 | exercising permissions granted by this License. 25 | 26 | "Source" form shall mean the preferred form for making modifications, 27 | including but not limited to software source code, documentation 28 | source, and configuration files. 29 | 30 | "Object" form shall mean any form resulting from mechanical 31 | transformation or translation of a Source form, including but 32 | not limited to compiled object code, generated documentation, 33 | and conversions to other media types. 34 | 35 | "Work" shall mean the work of authorship, whether in Source or 36 | Object form, made available under the License, as indicated by a 37 | copyright notice that is included in or attached to the work 38 | (an example is provided in the Appendix below). 39 | 40 | "Derivative Works" shall mean any work, whether in Source or Object 41 | form, that is based on (or derived from) the Work and for which the 42 | editorial revisions, annotations, elaborations, or other modifications 43 | represent, as a whole, an original work of authorship. For the purposes 44 | of this License, Derivative Works shall not include works that remain 45 | separable from, or merely link (or bind by name) to the interfaces of, 46 | the Work and Derivative Works thereof. 47 | 48 | "Contribution" shall mean any work of authorship, including 49 | the original version of the Work and any modifications or additions 50 | to that Work or Derivative Works thereof, that is intentionally 51 | submitted to Licensor for inclusion in the Work by the copyright owner 52 | or by an individual or Legal Entity authorized to submit on behalf of 53 | the copyright owner. For the purposes of this definition, "submitted" 54 | means any form of electronic, verbal, or written communication sent 55 | to the Licensor or its representatives, including but not limited to 56 | communication on electronic mailing lists, source code control systems, 57 | and issue tracking systems that are managed by, or on behalf of, the 58 | Licensor for the purpose of discussing and improving the Work, but 59 | excluding communication that is conspicuously marked or otherwise 60 | designated in writing by the copyright owner as "Not a Contribution." 61 | 62 | "Contributor" shall mean Licensor and any individual or Legal Entity 63 | on behalf of whom a Contribution has been received by Licensor and 64 | subsequently incorporated within the Work. 65 | 66 | 2. Grant of Copyright License. Subject to the terms and conditions of 67 | this License, each Contributor hereby grants to You a perpetual, 68 | worldwide, non-exclusive, no-charge, royalty-free, irrevocable 69 | copyright license to reproduce, prepare Derivative Works of, 70 | publicly display, publicly perform, sublicense, and distribute the 71 | Work and such Derivative Works in Source or Object form. 72 | 73 | 3. Grant of Patent License. Subject to the terms and conditions of 74 | this License, each Contributor hereby grants to You a perpetual, 75 | worldwide, non-exclusive, no-charge, royalty-free, irrevocable 76 | (except as stated in this section) patent license to make, have made, 77 | use, offer to sell, sell, import, and otherwise transfer the Work, 78 | where such license applies only to those patent claims licensable 79 | by such Contributor that are necessarily infringed by their 80 | Contribution(s) alone or by combination of their Contribution(s) 81 | with the Work to which such Contribution(s) was submitted. If You 82 | institute patent litigation against any entity (including a 83 | cross-claim or counterclaim in a lawsuit) alleging that the Work 84 | or a Contribution incorporated within the Work constitutes direct 85 | or contributory patent infringement, then any patent licenses 86 | granted to You under this License for that Work shall terminate 87 | as of the date such litigation is filed. 88 | 89 | 4. Redistribution. You may reproduce and distribute copies of the 90 | Work or Derivative Works thereof in any medium, with or without 91 | modifications, and in Source or Object form, provided that You 92 | meet the following conditions: 93 | 94 | (a) You must give any other recipients of the Work or 95 | Derivative Works a copy of this License; and 96 | 97 | (b) You must cause any modified files to carry prominent notices 98 | stating that You changed the files; and 99 | 100 | (c) You must retain, in the Source form of any Derivative Works 101 | that You distribute, all copyright, patent, trademark, and 102 | attribution notices from the Source form of the Work, 103 | excluding those notices that do not pertain to any part of 104 | the Derivative Works; and 105 | 106 | (d) If the Work includes a "NOTICE" text file as part of its 107 | distribution, then any Derivative Works that You distribute must 108 | include a readable copy of the attribution notices contained 109 | within such NOTICE file, excluding those notices that do not 110 | pertain to any part of the Derivative Works, in at least one 111 | of the following places: within a NOTICE text file distributed 112 | as part of the Derivative Works; within the Source form or 113 | documentation, if provided along with the Derivative Works; or, 114 | within a display generated by the Derivative Works, if and 115 | wherever such third-party notices normally appear. The contents 116 | of the NOTICE file are for informational purposes only and 117 | do not modify the License. You may add Your own attribution 118 | notices within Derivative Works that You distribute, alongside 119 | or as an addendum to the NOTICE text from the Work, provided 120 | that such additional attribution notices cannot be construed 121 | as modifying the License. 122 | 123 | You may add Your own copyright statement to Your modifications and 124 | may provide additional or different license terms and conditions 125 | for use, reproduction, or distribution of Your modifications, or 126 | for any such Derivative Works as a whole, provided Your use, 127 | reproduction, and distribution of the Work otherwise complies with 128 | the conditions stated in this License. 129 | 130 | 5. Submission of Contributions. Unless You explicitly state otherwise, 131 | any Contribution intentionally submitted for inclusion in the Work 132 | by You to the Licensor shall be under the terms and conditions of 133 | this License, without any additional terms or conditions. 134 | Notwithstanding the above, nothing herein shall supersede or modify 135 | the terms of any separate license agreement you may have executed 136 | with Licensor regarding such Contributions. 137 | 138 | 6. Trademarks. This License does not grant permission to use the trade 139 | names, trademarks, service marks, or product names of the Licensor, 140 | except as required for reasonable and customary use in describing the 141 | origin of the Work and reproducing the content of the NOTICE file. 142 | 143 | 7. Disclaimer of Warranty. Unless required by applicable law or 144 | agreed to in writing, Licensor provides the Work (and each 145 | Contributor provides its Contributions) on an "AS IS" BASIS, 146 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or 147 | implied, including, without limitation, any warranties or conditions 148 | of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A 149 | PARTICULAR PURPOSE. You are solely responsible for determining the 150 | appropriateness of using or redistributing the Work and assume any 151 | risks associated with Your exercise of permissions under this License. 152 | 153 | 8. Limitation of Liability. In no event and under no legal theory, 154 | whether in tort (including negligence), contract, or otherwise, 155 | unless required by applicable law (such as deliberate and grossly 156 | negligent acts) or agreed to in writing, shall any Contributor be 157 | liable to You for damages, including any direct, indirect, special, 158 | incidental, or consequential damages of any character arising as a 159 | result of this License or out of the use or inability to use the 160 | Work (including but not limited to damages for loss of goodwill, 161 | work stoppage, computer failure or malfunction, or any and all 162 | other commercial damages or losses), even if such Contributor 163 | has been advised of the possibility of such damages. 164 | 165 | 9. Accepting Warranty or Additional Liability. While redistributing 166 | the Work or Derivative Works thereof, You may choose to offer, 167 | and charge a fee for, acceptance of support, warranty, indemnity, 168 | or other liability obligations and/or rights consistent with this 169 | License. However, in accepting such obligations, You may act only 170 | on Your own behalf and on Your sole responsibility, not on behalf 171 | of any other Contributor, and only if You agree to indemnify, 172 | defend, and hold each Contributor harmless for any liability 173 | incurred by, or claims asserted against, such Contributor by reason 174 | of your accepting any such warranty or additional liability. 175 | 176 | END OF TERMS AND CONDITIONS 177 | 178 | APPENDIX: How to apply the Apache License to your work. 179 | 180 | To apply the Apache License to your work, attach the following 181 | boilerplate notice, with the fields enclosed by brackets "{}" 182 | replaced with your own identifying information. (Don't include 183 | the brackets!) The text should be enclosed in the appropriate 184 | comment syntax for the file format. We also recommend that a 185 | file or class name and description of purpose be included on the 186 | same "printed page" as the copyright notice for easier 187 | identification within third-party archives. 188 | 189 | Copyright {yyyy} {name of copyright owner} 190 | 191 | Licensed under the Apache License, Version 2.0 (the "License"); 192 | you may not use this file except in compliance with the License. 193 | You may obtain a copy of the License at 194 | 195 | http://www.apache.org/licenses/LICENSE-2.0 196 | 197 | Unless required by applicable law or agreed to in writing, software 198 | distributed under the License is distributed on an "AS IS" BASIS, 199 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 200 | See the License for the specific language governing permissions and 201 | limitations under the License. 202 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | ![Test Status](https://github.com/TheNoim/DSBAPI/workflows/Test%20the%20dsb/badge.svg) [![Greenkeeper badge](https://badges.greenkeeper.io/TheNoim/DSBAPI.svg)](https://greenkeeper.io/) 2 | 3 | ## Installation 4 | 5 | Use your favorite package manager for javascript 6 | 7 | ```bash 8 | yarn add dsbapi 9 | # Or 10 | npm install dsbapi --save 11 | ``` 12 | 13 | _Note: Requires `node >= 8`_ 14 | 15 | ## How to use: 16 | 17 | ### Read the Documentation 18 | 19 | ##### [https://noim.me/DSBAPI/](https://noim.me/DSBAPI/) 20 | 21 | ### In NodeJS 22 | 23 | ```javascript 24 | const DSB = require('dsbapi'); 25 | 26 | const dsb = new DSB('USERNAME', 'PASSWORD'); 27 | 28 | dsb.fetch() 29 | .then(data => { 30 | const timetables = DSB.findMethodInData('timetable', data); 31 | const tiles = DSB.findMethodInData('tiles', data); 32 | 33 | // Work with it 34 | }) 35 | .catch(e => { 36 | // An error occurred :( 37 | console.log(e); 38 | }); 39 | ``` 40 | 41 | Or with modern javascript 42 | 43 | ```javascript 44 | import DSB from 'dsbapi'; 45 | 46 | const dsb = new DSB('USERNAME', 'PASSWORD'); 47 | 48 | async function getMyShit() { 49 | const data = await dsb.fetch(); 50 | const timetables = DSB.findMethodInData('timetable', data); 51 | const tiles = DSB.findMethodInData('tiles', data); 52 | 53 | // YEAH 54 | } 55 | 56 | getMyShit(); 57 | ``` 58 | 59 | ### Fetch V1 60 | 61 | The old iPhone API is not active anymore. You need to use the new fetch() method. After you got the data with the fetch() method you can find the timetables with the findMethodInData method. Look at the example above. 62 | 63 | ### Browser 64 | 65 | It will probably not work in the browser. The dsb does not set cors, so you are not able to use this module on the client side of your website. You can only use it on the backend. 66 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "dsbapi", 3 | "version": "4.1.1", 4 | "description": "An api for mobile.dsbcontrol.de", 5 | "author": "Nils Bergmann ", 6 | "license": "Apache-2.0", 7 | "main": "./dist/cjs/index.js", 8 | "module": "./dist/esm/index.js", 9 | "browser": "./dist/index.js", 10 | "files": [ 11 | "dist/", 12 | "yarn.lock", 13 | "docs" 14 | ], 15 | "scripts": { 16 | "test": "mocha --timeout 7000", 17 | "generate-doc": "esdoc", 18 | "build": "npm-run-all build:esm build:cj build:umd", 19 | "build:esm": "rollup src/index.js --format es --name \"dsbapi\" --file ./dist/esm/index.js", 20 | "build:cj": "rollup src/index.js --format cjs --name \"dsbapi\" --file ./dist/cjs/index.js", 21 | "build:umd": "rollup src/index.js --format umd --name \"dsbapi\" --file ./dist/index.js", 22 | "patch": "npm version patch && git push --follow-tags", 23 | "minor": "npm version minor && git push --follow-tags", 24 | "major": "npm version major && git push --follow-tags" 25 | }, 26 | "repository": { 27 | "type": "git", 28 | "url": "https://github.com/TheNoim/DSBAPI.git" 29 | }, 30 | "keywords": [ 31 | "dsb", 32 | "api", 33 | "mobile" 34 | ], 35 | "dependencies": { 36 | "axios": "^0.22.0", 37 | "pako": "^2.0.4", 38 | "percentage-calc": "^0.0.1" 39 | }, 40 | "devDependencies": { 41 | "babel-register": "^6.26.0", 42 | "chai": "^4.3.4", 43 | "dotenv": "^10.0.0", 44 | "esdoc": "^1.1.0", 45 | "esdoc-external-ecmascript-plugin": "^1.0.0", 46 | "esdoc-external-nodejs-plugin": "^1.0.0", 47 | "esdoc-standard-plugin": "^1.0.0", 48 | "joi": "^17.4.2", 49 | "jsome": "^2.3.26", 50 | "minami": "^1.2.3", 51 | "mocha": "^9.1.2", 52 | "npm-run-all": "^4.1.5", 53 | "rollup": "2.58.0" 54 | } 55 | } 56 | -------------------------------------------------------------------------------- /src/DSBDecode.js: -------------------------------------------------------------------------------- 1 | import pako from 'pako'; 2 | 3 | /** 4 | * 5 | * @private 6 | * @param {*} ToDecode 7 | */ 8 | export default function(ToDecode) { 9 | let b = StringView.base64ToBytes(ToDecode), 10 | c = pako.inflate(b), 11 | d = new StringView(c), 12 | e = d.toString(); 13 | return JSON.parse(e); 14 | } 15 | 16 | function StringView( 17 | vInput, 18 | sEncoding /* optional (default: UTF-8) */, 19 | nOffset /* optional */, 20 | nLength /* optional */ 21 | ) { 22 | var fTAView, 23 | aWhole, 24 | aRaw, 25 | fPutOutptCode, 26 | fGetOutptChrSize, 27 | nInptLen, 28 | nStartIdx = isFinite(nOffset) ? nOffset : 0, 29 | nTranscrType = 15; 30 | 31 | if (sEncoding) { 32 | this.encoding = sEncoding.toString(); 33 | } 34 | 35 | encSwitch: switch (this.encoding) { 36 | case 'UTF-8': 37 | fPutOutptCode = StringView.putUTF8CharCode; 38 | fGetOutptChrSize = StringView.getUTF8CharLength; 39 | fTAView = Uint8Array; 40 | break encSwitch; 41 | case 'UTF-16': 42 | fPutOutptCode = StringView.putUTF16CharCode; 43 | fGetOutptChrSize = StringView.getUTF16CharLength; 44 | fTAView = Uint16Array; 45 | break encSwitch; 46 | case 'UTF-32': 47 | fTAView = Uint32Array; 48 | nTranscrType &= 14; 49 | break encSwitch; 50 | default: 51 | /* case "ASCII", or case "BinaryString" or unknown cases */ 52 | fTAView = Uint8Array; 53 | nTranscrType &= 14; 54 | } 55 | 56 | typeSwitch: switch (typeof vInput) { 57 | case 'string': 58 | /* the input argument is a primitive string: a new buffer will be created. */ 59 | nTranscrType &= 7; 60 | break typeSwitch; 61 | case 'object': 62 | classSwitch: switch (vInput.constructor) { 63 | case StringView: 64 | /* the input argument is a stringView: a new buffer will be created. */ 65 | nTranscrType &= 3; 66 | break typeSwitch; 67 | case String: 68 | /* the input argument is an objectified string: a new buffer will be created. */ 69 | nTranscrType &= 7; 70 | break typeSwitch; 71 | case ArrayBuffer: 72 | /* the input argument is an arrayBuffer: the buffer will be shared. */ 73 | aWhole = new fTAView(vInput); 74 | nInptLen = 75 | this.encoding === 'UTF-32' 76 | ? vInput.byteLength >>> 2 77 | : this.encoding === 'UTF-16' 78 | ? vInput.byteLength >>> 1 79 | : vInput.byteLength; 80 | aRaw = 81 | nStartIdx === 0 && 82 | (!isFinite(nLength) || nLength === nInptLen) 83 | ? aWhole 84 | : new fTAView( 85 | vInput, 86 | nStartIdx, 87 | !isFinite(nLength) 88 | ? nInptLen - nStartIdx 89 | : nLength 90 | ); 91 | 92 | break typeSwitch; 93 | case Uint32Array: 94 | case Uint16Array: 95 | case Uint8Array: 96 | /* the input argument is a typedArray: the buffer, and possibly the array itself, will be shared. */ 97 | fTAView = vInput.constructor; 98 | nInptLen = vInput.length; 99 | aWhole = 100 | vInput.byteOffset === 0 && 101 | vInput.length === 102 | (fTAView === Uint32Array 103 | ? vInput.buffer.byteLength >>> 2 104 | : fTAView === Uint16Array 105 | ? vInput.buffer.byteLength >>> 1 106 | : vInput.buffer.byteLength) 107 | ? vInput 108 | : new fTAView(vInput.buffer); 109 | aRaw = 110 | nStartIdx === 0 && 111 | (!isFinite(nLength) || nLength === nInptLen) 112 | ? vInput 113 | : vInput.subarray( 114 | nStartIdx, 115 | isFinite(nLength) 116 | ? nStartIdx + nLength 117 | : nInptLen 118 | ); 119 | 120 | break typeSwitch; 121 | default: 122 | /* the input argument is an array or another serializable object: a new typedArray will be created. */ 123 | aWhole = new fTAView(vInput); 124 | nInptLen = aWhole.length; 125 | aRaw = 126 | nStartIdx === 0 && 127 | (!isFinite(nLength) || nLength === nInptLen) 128 | ? aWhole 129 | : aWhole.subarray( 130 | nStartIdx, 131 | isFinite(nLength) 132 | ? nStartIdx + nLength 133 | : nInptLen 134 | ); 135 | } 136 | break typeSwitch; 137 | default: 138 | /* the input argument is a number, a boolean or a function: a new typedArray will be created. */ 139 | aWhole = aRaw = new fTAView(Number(vInput) || 0); 140 | } 141 | 142 | if (nTranscrType < 8) { 143 | var vSource, 144 | nOutptLen, 145 | nCharStart, 146 | nCharEnd, 147 | nEndIdx, 148 | fGetInptChrSize, 149 | fGetInptChrCode; 150 | 151 | if (nTranscrType & 4) { 152 | /* input is string */ 153 | 154 | vSource = vInput; 155 | nOutptLen = nInptLen = vSource.length; 156 | nTranscrType ^= this.encoding === 'UTF-32' ? 0 : 2; 157 | /* ...or...: nTranscrType ^= Number(this.encoding !== "UTF-32") << 1; */ 158 | nStartIdx = nCharStart = nOffset 159 | ? Math.max((nOutptLen + nOffset) % nOutptLen, 0) 160 | : 0; 161 | nEndIdx = nCharEnd = 162 | (Number.isInteger(nLength) 163 | ? Math.min(Math.max(nLength, 0) + nStartIdx, nOutptLen) 164 | : nOutptLen) - 1; 165 | } else { 166 | /* input is stringView */ 167 | 168 | vSource = vInput.rawData; 169 | nInptLen = vInput.makeIndex(); 170 | nStartIdx = nCharStart = nOffset 171 | ? Math.max((nInptLen + nOffset) % nInptLen, 0) 172 | : 0; 173 | nOutptLen = Number.isInteger(nLength) 174 | ? Math.min(Math.max(nLength, 0), nInptLen - nCharStart) 175 | : nInptLen; 176 | nEndIdx = nCharEnd = nOutptLen + nCharStart; 177 | 178 | if (vInput.encoding === 'UTF-8') { 179 | fGetInptChrSize = StringView.getUTF8CharLength; 180 | fGetInptChrCode = StringView.loadUTF8CharCode; 181 | } else if (vInput.encoding === 'UTF-16') { 182 | fGetInptChrSize = StringView.getUTF16CharLength; 183 | fGetInptChrCode = StringView.loadUTF16CharCode; 184 | } else { 185 | nTranscrType &= 1; 186 | } 187 | } 188 | 189 | if ( 190 | nOutptLen === 0 || 191 | (nTranscrType < 4 && 192 | vSource.encoding === this.encoding && 193 | nCharStart === 0 && 194 | nOutptLen === nInptLen) 195 | ) { 196 | /* the encoding is the same, the length too and the offset is 0... or the input is empty! */ 197 | 198 | nTranscrType = 7; 199 | } 200 | 201 | conversionSwitch: switch (nTranscrType) { 202 | case 0: 203 | /* both the source and the new StringView have a fixed-length encoding... */ 204 | 205 | aWhole = new fTAView(nOutptLen); 206 | for ( 207 | var nOutptIdx = 0; 208 | nOutptIdx < nOutptLen; 209 | aWhole[nOutptIdx] = vSource[nStartIdx + nOutptIdx++] 210 | ); 211 | break conversionSwitch; 212 | 213 | case 1: 214 | /* the source has a fixed-length encoding but the new StringView has a variable-length encoding... */ 215 | 216 | /* mapping... */ 217 | 218 | nOutptLen = 0; 219 | 220 | for (var nInptIdx = nStartIdx; nInptIdx < nEndIdx; nInptIdx++) { 221 | nOutptLen += fGetOutptChrSize(vSource[nInptIdx]); 222 | } 223 | 224 | aWhole = new fTAView(nOutptLen); 225 | 226 | /* transcription of the source... */ 227 | 228 | for ( 229 | var nInptIdx = nStartIdx, nOutptIdx = 0; 230 | nOutptIdx < nOutptLen; 231 | nInptIdx++ 232 | ) { 233 | nOutptIdx = fPutOutptCode( 234 | aWhole, 235 | vSource[nInptIdx], 236 | nOutptIdx 237 | ); 238 | } 239 | 240 | break conversionSwitch; 241 | 242 | case 2: 243 | /* the source has a variable-length encoding but the new StringView has a fixed-length encoding... */ 244 | 245 | /* mapping... */ 246 | 247 | nStartIdx = 0; 248 | 249 | var nChrCode; 250 | 251 | for (nChrIdx = 0; nChrIdx < nCharStart; nChrIdx++) { 252 | nChrCode = fGetInptChrCode(vSource, nStartIdx); 253 | nStartIdx += fGetInptChrSize(nChrCode); 254 | } 255 | 256 | aWhole = new fTAView(nOutptLen); 257 | 258 | /* transcription of the source... */ 259 | 260 | for ( 261 | var nInptIdx = nStartIdx, nOutptIdx = 0; 262 | nOutptIdx < nOutptLen; 263 | nInptIdx += fGetInptChrSize(nChrCode), nOutptIdx++ 264 | ) { 265 | nChrCode = fGetInptChrCode(vSource, nInptIdx); 266 | aWhole[nOutptIdx] = nChrCode; 267 | } 268 | 269 | break conversionSwitch; 270 | 271 | case 3: 272 | /* both the source and the new StringView have a variable-length encoding... */ 273 | 274 | /* mapping... */ 275 | 276 | nOutptLen = 0; 277 | 278 | var nChrCode; 279 | 280 | for ( 281 | var nChrIdx = 0, nInptIdx = 0; 282 | nChrIdx < nCharEnd; 283 | nInptIdx += fGetInptChrSize(nChrCode) 284 | ) { 285 | nChrCode = fGetInptChrCode(vSource, nInptIdx); 286 | if (nChrIdx === nCharStart) { 287 | nStartIdx = nInptIdx; 288 | } 289 | if (++nChrIdx > nCharStart) { 290 | nOutptLen += fGetOutptChrSize(nChrCode); 291 | } 292 | } 293 | 294 | aWhole = new fTAView(nOutptLen); 295 | 296 | /* transcription... */ 297 | 298 | for ( 299 | var nInptIdx = nStartIdx, nOutptIdx = 0; 300 | nOutptIdx < nOutptLen; 301 | nInptIdx += fGetInptChrSize(nChrCode) 302 | ) { 303 | nChrCode = fGetInptChrCode(vSource, nInptIdx); 304 | nOutptIdx = fPutOutptCode(aWhole, nChrCode, nOutptIdx); 305 | } 306 | 307 | break conversionSwitch; 308 | 309 | case 4: 310 | /* DOMString to ASCII or BinaryString or other unknown encodings */ 311 | 312 | aWhole = new fTAView(nOutptLen); 313 | 314 | /* transcription... */ 315 | 316 | for (var nIdx = 0; nIdx < nOutptLen; nIdx++) { 317 | aWhole[nIdx] = vSource.charCodeAt(nIdx) & 0xff; 318 | } 319 | 320 | break conversionSwitch; 321 | 322 | case 5: 323 | /* DOMString to UTF-8 or to UTF-16 */ 324 | 325 | /* mapping... */ 326 | 327 | nOutptLen = 0; 328 | 329 | for (var nMapIdx = 0; nMapIdx < nInptLen; nMapIdx++) { 330 | if (nMapIdx === nCharStart) { 331 | nStartIdx = nOutptLen; 332 | } 333 | nOutptLen += fGetOutptChrSize(vSource.charCodeAt(nMapIdx)); 334 | if (nMapIdx === nCharEnd) { 335 | nEndIdx = nOutptLen; 336 | } 337 | } 338 | 339 | aWhole = new fTAView(nOutptLen); 340 | 341 | /* transcription... */ 342 | 343 | for ( 344 | var nOutptIdx = 0, nChrIdx = 0; 345 | nOutptIdx < nOutptLen; 346 | nChrIdx++ 347 | ) { 348 | nOutptIdx = fPutOutptCode( 349 | aWhole, 350 | vSource.charCodeAt(nChrIdx), 351 | nOutptIdx 352 | ); 353 | } 354 | 355 | break conversionSwitch; 356 | 357 | case 6: 358 | /* DOMString to UTF-32 */ 359 | 360 | aWhole = new fTAView(nOutptLen); 361 | 362 | /* transcription... */ 363 | 364 | for (var nIdx = 0; nIdx < nOutptLen; nIdx++) { 365 | aWhole[nIdx] = vSource.charCodeAt(nIdx); 366 | } 367 | 368 | break conversionSwitch; 369 | 370 | case 7: 371 | aWhole = new fTAView(nOutptLen ? vSource : 0); 372 | break conversionSwitch; 373 | } 374 | 375 | aRaw = 376 | nTranscrType > 3 && (nStartIdx > 0 || nEndIdx < aWhole.length - 1) 377 | ? aWhole.subarray(nStartIdx, nEndIdx) 378 | : aWhole; 379 | } 380 | 381 | this.buffer = aWhole.buffer; 382 | this.bufferView = aWhole; 383 | this.rawData = aRaw; 384 | 385 | Object.freeze(this); 386 | } 387 | 388 | /* CONSTRUCTOR'S METHODS */ 389 | 390 | StringView.loadUTF8CharCode = function(aChars, nIdx) { 391 | var nLen = aChars.length, 392 | nPart = aChars[nIdx]; 393 | 394 | return nPart > 251 && nPart < 254 && nIdx + 5 < nLen 395 | ? /* (nPart - 252 << 30) may be not safe in ECMAScript! So...: */ 396 | /* six bytes */ (nPart - 252) * 1073741824 + 397 | ((aChars[nIdx + 1] - 128) << 24) + 398 | ((aChars[nIdx + 2] - 128) << 18) + 399 | ((aChars[nIdx + 3] - 128) << 12) + 400 | ((aChars[nIdx + 4] - 128) << 6) + 401 | aChars[nIdx + 5] - 402 | 128 403 | : nPart > 247 && nPart < 252 && nIdx + 4 < nLen 404 | ? /* five bytes */ ((nPart - 248) << 24) + 405 | ((aChars[nIdx + 1] - 128) << 18) + 406 | ((aChars[nIdx + 2] - 128) << 12) + 407 | ((aChars[nIdx + 3] - 128) << 6) + 408 | aChars[nIdx + 4] - 409 | 128 410 | : nPart > 239 && nPart < 248 && nIdx + 3 < nLen 411 | ? /* four bytes */ ((nPart - 240) << 18) + 412 | ((aChars[nIdx + 1] - 128) << 12) + 413 | ((aChars[nIdx + 2] - 128) << 6) + 414 | aChars[nIdx + 3] - 415 | 128 416 | : nPart > 223 && nPart < 240 && nIdx + 2 < nLen 417 | ? /* three bytes */ ((nPart - 224) << 12) + 418 | ((aChars[nIdx + 1] - 128) << 6) + 419 | aChars[nIdx + 2] - 420 | 128 421 | : nPart > 191 && nPart < 224 && nIdx + 1 < nLen 422 | ? /* two bytes */ ((nPart - 192) << 6) + aChars[nIdx + 1] - 128 423 | : /* one byte */ nPart; 424 | }; 425 | 426 | StringView.putUTF8CharCode = function(aTarget, nChar, nPutAt) { 427 | var nIdx = nPutAt; 428 | 429 | if (nChar < 0x80 /* 128 */) { 430 | /* one byte */ 431 | aTarget[nIdx++] = nChar; 432 | } else if (nChar < 0x800 /* 2048 */) { 433 | /* two bytes */ 434 | aTarget[nIdx++] = 0xc0 /* 192 */ + (nChar >>> 6); 435 | aTarget[nIdx++] = 0x80 /* 128 */ + (nChar & 0x3f) /* 63 */; 436 | } else if (nChar < 0x10000 /* 65536 */) { 437 | /* three bytes */ 438 | aTarget[nIdx++] = 0xe0 /* 224 */ + (nChar >>> 12); 439 | aTarget[nIdx++] = 0x80 /* 128 */ + ((nChar >>> 6) & 0x3f) /* 63 */; 440 | aTarget[nIdx++] = 0x80 /* 128 */ + (nChar & 0x3f) /* 63 */; 441 | } else if (nChar < 0x200000 /* 2097152 */) { 442 | /* four bytes */ 443 | aTarget[nIdx++] = 0xf0 /* 240 */ + (nChar >>> 18); 444 | aTarget[nIdx++] = 0x80 /* 128 */ + ((nChar >>> 12) & 0x3f) /* 63 */; 445 | aTarget[nIdx++] = 0x80 /* 128 */ + ((nChar >>> 6) & 0x3f) /* 63 */; 446 | aTarget[nIdx++] = 0x80 /* 128 */ + (nChar & 0x3f) /* 63 */; 447 | } else if (nChar < 0x4000000 /* 67108864 */) { 448 | /* five bytes */ 449 | aTarget[nIdx++] = 0xf8 /* 248 */ + (nChar >>> 24); 450 | aTarget[nIdx++] = 0x80 /* 128 */ + ((nChar >>> 18) & 0x3f) /* 63 */; 451 | aTarget[nIdx++] = 0x80 /* 128 */ + ((nChar >>> 12) & 0x3f) /* 63 */; 452 | aTarget[nIdx++] = 0x80 /* 128 */ + ((nChar >>> 6) & 0x3f) /* 63 */; 453 | aTarget[nIdx++] = 0x80 /* 128 */ + (nChar & 0x3f) /* 63 */; 454 | } /* if (nChar <= 0x7fffffff) */ else { 455 | /* 2147483647 */ 456 | /* six bytes */ 457 | aTarget[nIdx++] = 458 | 0xfc /* 252 */ + 459 | /* (nChar >>> 30) may be not safe in ECMAScript! So...: */ nChar / 460 | 1073741824; 461 | aTarget[nIdx++] = 0x80 /* 128 */ + ((nChar >>> 24) & 0x3f) /* 63 */; 462 | aTarget[nIdx++] = 0x80 /* 128 */ + ((nChar >>> 18) & 0x3f) /* 63 */; 463 | aTarget[nIdx++] = 0x80 /* 128 */ + ((nChar >>> 12) & 0x3f) /* 63 */; 464 | aTarget[nIdx++] = 0x80 /* 128 */ + ((nChar >>> 6) & 0x3f) /* 63 */; 465 | aTarget[nIdx++] = 0x80 /* 128 */ + (nChar & 0x3f) /* 63 */; 466 | } 467 | 468 | return nIdx; 469 | }; 470 | 471 | StringView.getUTF8CharLength = function(nChar) { 472 | return nChar < 0x80 473 | ? 1 474 | : nChar < 0x800 475 | ? 2 476 | : nChar < 0x10000 477 | ? 3 478 | : nChar < 0x200000 479 | ? 4 480 | : nChar < 0x4000000 481 | ? 5 482 | : 6; 483 | }; 484 | 485 | StringView.loadUTF16CharCode = function(aChars, nIdx) { 486 | /* UTF-16 to DOMString decoding algorithm */ 487 | var nFrstChr = aChars[nIdx]; 488 | 489 | return nFrstChr > 0xd7bf /* 55231 */ && nIdx + 1 < aChars.length 490 | ? ((nFrstChr - 0xd800) /* 55296 */ << 10) + 491 | aChars[nIdx + 1] + 492 | 0x2400 /* 9216 */ 493 | : nFrstChr; 494 | }; 495 | 496 | StringView.putUTF16CharCode = function(aTarget, nChar, nPutAt) { 497 | var nIdx = nPutAt; 498 | 499 | if (nChar < 0x10000 /* 65536 */) { 500 | /* one element */ 501 | aTarget[nIdx++] = nChar; 502 | } else { 503 | /* two elements */ 504 | aTarget[nIdx++] = 0xd7c0 /* 55232 */ + (nChar >>> 10); 505 | aTarget[nIdx++] = 0xdc00 /* 56320 */ + (nChar & 0x3ff) /* 1023 */; 506 | } 507 | 508 | return nIdx; 509 | }; 510 | 511 | StringView.getUTF16CharLength = function(nChar) { 512 | return nChar < 0x10000 ? 1 : 2; 513 | }; 514 | 515 | /* Array of bytes to base64 string decoding */ 516 | 517 | StringView.b64ToUint6 = function(nChr) { 518 | return nChr > 64 && nChr < 91 519 | ? nChr - 65 520 | : nChr > 96 && nChr < 123 521 | ? nChr - 71 522 | : nChr > 47 && nChr < 58 523 | ? nChr + 4 524 | : nChr === 43 525 | ? 62 526 | : nChr === 47 527 | ? 63 528 | : 0; 529 | }; 530 | 531 | StringView.uint6ToB64 = function(nUint6) { 532 | return nUint6 < 26 533 | ? nUint6 + 65 534 | : nUint6 < 52 535 | ? nUint6 + 71 536 | : nUint6 < 62 537 | ? nUint6 - 4 538 | : nUint6 === 62 539 | ? 43 540 | : nUint6 === 63 541 | ? 47 542 | : 65; 543 | }; 544 | 545 | /* Base64 string to array encoding */ 546 | 547 | StringView.bytesToBase64 = function(aBytes) { 548 | var eqLen = (3 - (aBytes.length % 3)) % 3, 549 | sB64Enc = ''; 550 | 551 | for ( 552 | var nMod3, nLen = aBytes.length, nUint24 = 0, nIdx = 0; 553 | nIdx < nLen; 554 | nIdx++ 555 | ) { 556 | nMod3 = nIdx % 3; 557 | /* Uncomment the following line in order to split the output in lines 76-character long: */ 558 | /* 559 | if (nIdx > 0 && (nIdx * 4 / 3) % 76 === 0) { sB64Enc += "\r\n"; } 560 | */ 561 | nUint24 |= aBytes[nIdx] << ((16 >>> nMod3) & 24); 562 | if (nMod3 === 2 || aBytes.length - nIdx === 1) { 563 | sB64Enc += String.fromCharCode( 564 | StringView.uint6ToB64((nUint24 >>> 18) & 63), 565 | StringView.uint6ToB64((nUint24 >>> 12) & 63), 566 | StringView.uint6ToB64((nUint24 >>> 6) & 63), 567 | StringView.uint6ToB64(nUint24 & 63) 568 | ); 569 | nUint24 = 0; 570 | } 571 | } 572 | 573 | return eqLen === 0 574 | ? sB64Enc 575 | : sB64Enc.substring(0, sB64Enc.length - eqLen) + 576 | (eqLen === 1 ? '=' : '=='); 577 | }; 578 | 579 | StringView.base64ToBytes = function(sBase64, nBlockBytes) { 580 | var sB64Enc = sBase64.replace(/[^A-Za-z0-9\+\/]/g, ''), 581 | nInLen = sB64Enc.length, 582 | nOutLen = nBlockBytes 583 | ? Math.ceil(((nInLen * 3 + 1) >>> 2) / nBlockBytes) * nBlockBytes 584 | : (nInLen * 3 + 1) >>> 2, 585 | aBytes = new Uint8Array(nOutLen); 586 | 587 | for ( 588 | var nMod3, nMod4, nUint24 = 0, nOutIdx = 0, nInIdx = 0; 589 | nInIdx < nInLen; 590 | nInIdx++ 591 | ) { 592 | nMod4 = nInIdx & 3; 593 | nUint24 |= 594 | StringView.b64ToUint6(sB64Enc.charCodeAt(nInIdx)) << 595 | (18 - 6 * nMod4); 596 | if (nMod4 === 3 || nInLen - nInIdx === 1) { 597 | for ( 598 | nMod3 = 0; 599 | nMod3 < 3 && nOutIdx < nOutLen; 600 | nMod3++, nOutIdx++ 601 | ) { 602 | aBytes[nOutIdx] = (nUint24 >>> ((16 >>> nMod3) & 24)) & 255; 603 | } 604 | nUint24 = 0; 605 | } 606 | } 607 | 608 | return aBytes; 609 | }; 610 | 611 | StringView.makeFromBase64 = function( 612 | sB64Inpt, 613 | sEncoding, 614 | nByteOffset, 615 | nLength 616 | ) { 617 | return new StringView( 618 | sEncoding === 'UTF-16' || sEncoding === 'UTF-32' 619 | ? StringView.base64ToBytes(sB64Inpt, sEncoding === 'UTF-16' ? 2 : 4) 620 | .buffer 621 | : StringView.base64ToBytes(sB64Inpt), 622 | sEncoding, 623 | nByteOffset, 624 | nLength 625 | ); 626 | }; 627 | 628 | /* DEFAULT VALUES */ 629 | 630 | StringView.prototype.encoding = 'UTF-8'; /* Default encoding... */ 631 | 632 | /* INSTANCES' METHODS */ 633 | 634 | StringView.prototype.makeIndex = function(nChrLength, nStartFrom) { 635 | var aTarget = this.rawData, 636 | nChrEnd, 637 | nRawLength = aTarget.length, 638 | nStartIdx = nStartFrom || 0, 639 | nIdxEnd = nStartIdx, 640 | nStopAtChr = isNaN(nChrLength) ? Infinity : nChrLength; 641 | 642 | if (nChrLength + 1 > aTarget.length) { 643 | throw new RangeError( 644 | "StringView.prototype.makeIndex - The offset can't be major than the length of the array - 1." 645 | ); 646 | } 647 | 648 | switch (this.encoding) { 649 | case 'UTF-8': 650 | var nPart; 651 | 652 | for ( 653 | nChrEnd = 0; 654 | nIdxEnd < nRawLength && nChrEnd < nStopAtChr; 655 | nChrEnd++ 656 | ) { 657 | nPart = aTarget[nIdxEnd]; 658 | nIdxEnd += 659 | nPart > 251 && nPart < 254 && nIdxEnd + 5 < nRawLength 660 | ? 6 661 | : nPart > 247 && nPart < 252 && nIdxEnd + 4 < nRawLength 662 | ? 5 663 | : nPart > 239 && nPart < 248 && nIdxEnd + 3 < nRawLength 664 | ? 4 665 | : nPart > 223 && nPart < 240 && nIdxEnd + 2 < nRawLength 666 | ? 3 667 | : nPart > 191 && nPart < 224 && nIdxEnd + 1 < nRawLength 668 | ? 2 669 | : 1; 670 | } 671 | 672 | break; 673 | 674 | case 'UTF-16': 675 | for ( 676 | nChrEnd = nStartIdx; 677 | nIdxEnd < nRawLength && nChrEnd < nStopAtChr; 678 | nChrEnd++ 679 | ) { 680 | nIdxEnd += 681 | aTarget[nIdxEnd] > 0xd7bf /* 55231 */ && 682 | nIdxEnd + 1 < aTarget.length 683 | ? 2 684 | : 1; 685 | } 686 | 687 | break; 688 | 689 | default: 690 | nIdxEnd = nChrEnd = isFinite(nChrLength) 691 | ? nChrLength 692 | : nRawLength - 1; 693 | } 694 | 695 | if (nChrLength) { 696 | return nIdxEnd; 697 | } 698 | 699 | return nChrEnd; 700 | }; 701 | 702 | StringView.prototype.toBase64 = function(bWholeBuffer) { 703 | return StringView.bytesToBase64( 704 | bWholeBuffer 705 | ? this.bufferView.constructor === Uint8Array 706 | ? this.bufferView 707 | : new Uint8Array(this.buffer) 708 | : this.rawData.constructor === Uint8Array 709 | ? this.rawData 710 | : new Uint8Array( 711 | this.buffer, 712 | this.rawData.byteOffset, 713 | this.rawData.length << 714 | (this.rawData.constructor === Uint16Array ? 1 : 2) 715 | ) 716 | ); 717 | }; 718 | 719 | StringView.prototype.subview = function( 720 | nCharOffset /* optional */, 721 | nCharLength /* optional */ 722 | ) { 723 | var nRawSubLen, 724 | nRawSubOffset, 725 | nSubOffset, 726 | nSubLen, 727 | bVariableLen = this.encoding === 'UTF-8' || this.encoding === 'UTF-16', 728 | nThisLen, 729 | nRawLen = this.rawData.length; 730 | 731 | if (nRawLen === 0) { 732 | return new StringView(this.buffer, this.encoding); 733 | } 734 | 735 | nThisLen = bVariableLen ? this.makeIndex() : nRawLen; 736 | nSubOffset = nCharOffset 737 | ? nCharOffset + 1 > nThisLen 738 | ? nThisLen 739 | : Math.max((nThisLen + nCharOffset) % nThisLen, 0) 740 | : 0; 741 | nSubLen = Number.isInteger(nCharLength) 742 | ? Math.max(nCharLength, 0) + nSubOffset > nThisLen 743 | ? nThisLen - nSubOffset 744 | : nCharLength 745 | : nThisLen - nSubOffset; 746 | 747 | if (nSubOffset === 0 && nSubLen === nThisLen) { 748 | return this; 749 | } 750 | 751 | if (bVariableLen) { 752 | nRawSubOffset = 753 | nSubOffset < nThisLen ? this.makeIndex(nSubOffset) : nThisLen; 754 | nRawSubLen = nSubLen 755 | ? this.makeIndex(nSubLen, nRawSubOffset) - nRawSubOffset 756 | : 0; 757 | } else { 758 | nRawSubOffset = nSubOffset; 759 | nRawSubLen = nSubLen; 760 | } 761 | 762 | if (this.encoding === 'UTF-16') { 763 | nRawSubOffset <<= 1; 764 | } else if (this.encoding === 'UTF-32') { 765 | nRawSubOffset <<= 2; 766 | } 767 | 768 | return new StringView( 769 | this.buffer, 770 | this.encoding, 771 | this.rawData.byteOffset + nRawSubOffset, 772 | nRawSubLen 773 | ); 774 | }; 775 | 776 | StringView.prototype.forEachChar = function( 777 | fCallback, 778 | oThat, 779 | nChrOffset, 780 | nChrLen 781 | ) { 782 | var aSource = this.rawData, 783 | nRawEnd, 784 | nRawIdx; 785 | 786 | if (this.encoding === 'UTF-8' || this.encoding === 'UTF-16') { 787 | var fGetInptChrSize, fGetInptChrCode; 788 | 789 | if (this.encoding === 'UTF-8') { 790 | fGetInptChrSize = StringView.getUTF8CharLength; 791 | fGetInptChrCode = StringView.loadUTF8CharCode; 792 | } else if (this.encoding === 'UTF-16') { 793 | fGetInptChrSize = StringView.getUTF16CharLength; 794 | fGetInptChrCode = StringView.loadUTF16CharCode; 795 | } 796 | 797 | nRawIdx = isFinite(nChrOffset) ? this.makeIndex(nChrOffset) : 0; 798 | nRawEnd = isFinite(nChrLen) 799 | ? this.makeIndex(nChrLen, nRawIdx) 800 | : aSource.length; 801 | 802 | for (var nChrCode, nChrIdx = 0; nRawIdx < nRawEnd; nChrIdx++) { 803 | nChrCode = fGetInptChrCode(aSource, nRawIdx); 804 | fCallback.call(oThat || null, nChrCode, nChrIdx, nRawIdx, aSource); 805 | nRawIdx += fGetInptChrSize(nChrCode); 806 | } 807 | } else { 808 | nRawIdx = isFinite(nChrOffset) ? nChrOffset : 0; 809 | nRawEnd = isFinite(nChrLen) ? nChrLen + nRawIdx : aSource.length; 810 | 811 | for (nRawIdx; nRawIdx < nRawEnd; nRawIdx++) { 812 | fCallback.call( 813 | oThat || null, 814 | aSource[nRawIdx], 815 | nRawIdx, 816 | nRawIdx, 817 | aSource 818 | ); 819 | } 820 | } 821 | }; 822 | 823 | StringView.prototype.valueOf = StringView.prototype.toString = function() { 824 | if (this.encoding !== 'UTF-8' && this.encoding !== 'UTF-16') { 825 | /* ASCII, UTF-32 or BinaryString to DOMString */ 826 | return String.fromCharCode.apply(null, this.rawData); 827 | } 828 | 829 | var fGetCode, 830 | fGetIncr, 831 | sView = ''; 832 | 833 | if (this.encoding === 'UTF-8') { 834 | fGetIncr = StringView.getUTF8CharLength; 835 | fGetCode = StringView.loadUTF8CharCode; 836 | } else if (this.encoding === 'UTF-16') { 837 | fGetIncr = StringView.getUTF16CharLength; 838 | fGetCode = StringView.loadUTF16CharCode; 839 | } 840 | 841 | for ( 842 | var nChr, nLen = this.rawData.length, nIdx = 0; 843 | nIdx < nLen; 844 | nIdx += fGetIncr(nChr) 845 | ) { 846 | nChr = fGetCode(this.rawData, nIdx); 847 | sView += String.fromCharCode(nChr); 848 | } 849 | 850 | return sView; 851 | }; 852 | -------------------------------------------------------------------------------- /src/DSBEncoding.js: -------------------------------------------------------------------------------- 1 | import pako from 'pako'; 2 | import { btoa } from './base64'; 3 | 4 | /** 5 | * 6 | * @private 7 | * @param {*} ObjectToEncode 8 | */ 9 | export default function(ObjectToEncode) { 10 | let b = pako.deflate(JSON.stringify(ObjectToEncode), { 11 | to: 'string', 12 | gzip: !0 13 | }); 14 | return (b = btoa(b)); 15 | } 16 | -------------------------------------------------------------------------------- /src/base64.js: -------------------------------------------------------------------------------- 1 | export function btoa(b) { 2 | return Buffer.from(b).toString('base64'); 3 | } 4 | -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- 1 | import Encode from './DSBEncoding'; 2 | import Decode from './DSBDecode'; 3 | import percentage from 'percentage-calc'; 4 | 5 | /** 6 | * Main Library class 7 | */ 8 | export default class DSB { 9 | /** 10 | * 11 | * @param {String|Number} username 12 | * @param {String|Number} password 13 | * @param {String} [cookies=""] If you already have session cookies, you can add them here. 14 | * @param {String|Boolean} [cache=false] In the browser just a boolean and in node a path string. If you don't want to use any cache just use undefined, null or false. 15 | * @param {Axios} [axios=require('axios')] Pass your custom axios instance if you want. 16 | */ 17 | constructor( 18 | username, 19 | password, 20 | cookies = '', 21 | cache = false, 22 | axios = require('axios') 23 | ) { 24 | /** 25 | * @private 26 | */ 27 | this.username = username; 28 | /** 29 | * @private 30 | */ 31 | this.password = password; 32 | /** 33 | * @private 34 | */ 35 | this.axios = axios; 36 | /** 37 | * @private 38 | */ 39 | this.urls = { 40 | Data: 'https://app.dsbcontrol.de/JsonHandler.ashx/GetData' 41 | }; 42 | /** 43 | * @private 44 | */ 45 | this.cookies = cookies; 46 | /** 47 | * @private 48 | */ 49 | this.axios.defaults.headers.common['User-Agent'] = 50 | 'DSBmobile/9759 (iPhone; iOS 13.2.2; Scale/3.00)'; 51 | if (cache) { 52 | /** 53 | * @private 54 | */ 55 | this.cache = new DSBSessionStorageManager(cache, this.cookies); 56 | } 57 | } 58 | 59 | /** 60 | * @callback ProgressCallback 61 | * @param {Number} progress - A number between 0 and 100 62 | */ 63 | 64 | /** 65 | * Fetch data 66 | * @param {ProgressCallback} [progress] 67 | * @returns {Promise.} 68 | */ 69 | async fetch(progress = () => {}) { 70 | // Progress State: 3 71 | const response = await this.axios({ 72 | method: 'POST', 73 | data: { 74 | req: { 75 | Data: Encode({ 76 | PushId: '', 77 | UserId: this.username, 78 | UserPw: this.password, 79 | Device: 'iPhone', 80 | AppVersion: '2.5.6', 81 | Language: 'en-DE', 82 | Date: new Date(), 83 | BundleId: 'de.digitales-schwarzes-brett.dsblight', 84 | OsVersion: '13.2.2', 85 | LastUpdate: new Date(), 86 | AppId: 'BC86F8E5-5D4A-4A19-A317-04D1E52FF9ED' 87 | }), 88 | DataType: 1 89 | } 90 | }, 91 | url: this.urls.Data, 92 | onUploadProgress(e) { 93 | console.log(JSON.stringify(e)); 94 | }, 95 | onDownloadProgress(e) { 96 | console.log(JSON.stringify(e)); 97 | } 98 | }); 99 | if (!response.data.d) throw new Error('Invalid data.'); 100 | progress(percentage.from(4, 5)); 101 | const decoded = Decode(response.data.d); 102 | progress(percentage.from(5, 5)); 103 | return decoded; 104 | } 105 | 106 | /** 107 | * [Experimental] Try to get just the important data from the data you get back from fetch() 108 | * @param {String} method - The method name to search for (z.B tiles or timetable) 109 | * @param {Object} data - Data returned by fetch() 110 | * @returns {Object} 111 | */ 112 | static findMethodInData(method, data) { 113 | for (let key in data) { 114 | if (!data.hasOwnProperty(key)) continue; 115 | if (key === 'MethodName') { 116 | if (data[key] === method) { 117 | if ( 118 | typeof data['Root'] === 'object' && 119 | Array.isArray(data['Root']['Childs']) 120 | ) { 121 | let transformData = []; 122 | for (let o of data['Root']['Childs']) { 123 | let newObject = {}; 124 | newObject.title = o.Title; 125 | newObject.id = o.Id; 126 | newObject.date = o.Date; 127 | if (o['Childs'].length === 1) { 128 | newObject.url = o['Childs'][0]['Detail']; 129 | newObject.preview = o['Childs'][0]['Preview']; 130 | newObject.secondTitle = o['Childs'][0]['Title']; 131 | } else { 132 | newObject.objects = []; 133 | for (let objectOfArray of o['Childs']) { 134 | newObject.objects.push({ 135 | id: objectOfArray.Id, 136 | url: objectOfArray.Detail, 137 | preview: objectOfArray.Preview, 138 | title: objectOfArray.Title, 139 | date: objectOfArray.Date 140 | }); 141 | } 142 | } 143 | transformData.push(newObject); 144 | } 145 | return { 146 | method: method, 147 | data: transformData 148 | }; 149 | } 150 | } 151 | } 152 | if (Array.isArray(data[key]) || typeof data[key] === 'object') { 153 | const find = DSB.findMethodInData(method, data[key]); 154 | if (find) return find; 155 | } 156 | } 157 | } 158 | } 159 | 160 | DSB.Decode = Decode; 161 | DSB.Encode = Encode; 162 | -------------------------------------------------------------------------------- /test/test.js: -------------------------------------------------------------------------------- 1 | const { describe, it } = require('mocha'); 2 | const chai = require('chai'); 3 | const expect = chai.expect; 4 | const assert = chai.assert; 5 | 6 | // Load .env for testing purpose 7 | require('dotenv').config(); 8 | 9 | chai.should(); 10 | 11 | describe('Library', function() { 12 | const DSB = require('../dist/cjs/index'); 13 | 14 | it('should return a function', function() { 15 | DSB.should.be.a('function'); 16 | }); 17 | 18 | it('should have findMethodInData()', function() { 19 | DSB.should.have.property('findMethodInData'); 20 | assert.isFunction(DSB.findMethodInData); 21 | }); 22 | }); 23 | 24 | describe('DSB Instance', function() { 25 | const DSB = require('../dist/cjs/index'); 26 | const dsb = new DSB(process.env.DSBUSERNAME, process.env.PASSWORD); 27 | 28 | it('should be a instanceof DSB', function() { 29 | expect(dsb).to.be.an.instanceOf(DSB); 30 | }); 31 | 32 | it('should have the right values', function() { 33 | expect(dsb).to.have.property('username', process.env.DSBUSERNAME); 34 | expect(dsb).to.have.property('password', process.env.PASSWORD); 35 | }); 36 | 37 | it('should have fetch()', function() { 38 | assert.isDefined(dsb.fetch); 39 | assert.isFunction(dsb.fetch); 40 | }); 41 | }); 42 | 43 | describe('functions', function() { 44 | const DSB = require('../dist/cjs/index'); 45 | const dsb = new DSB(process.env.DSBUSERNAME, process.env.PASSWORD); 46 | 47 | it('should not throw', function(done) { 48 | dsb.fetch() 49 | .then(() => { 50 | done(); 51 | }) 52 | .catch(e => { 53 | done(e); 54 | }); 55 | }); 56 | 57 | it('should return a object', async function() { 58 | const data = await dsb.fetch(); 59 | assert.isObject(data); 60 | }); 61 | 62 | it('should have Resultcode and should be 0', async function() { 63 | const data = await dsb.fetch(); 64 | expect(data).to.have.property('Resultcode', 0); 65 | }); 66 | 67 | it('should have ResultMenuItems and should be an array', async function() { 68 | const data = await dsb.fetch(); 69 | expect(data).to.have.property('ResultMenuItems'); 70 | assert.isArray(data['ResultMenuItems']); 71 | }); 72 | 73 | it('should extract data and not throw', async function() { 74 | const data = await dsb.fetch(); 75 | expect(() => DSB.findMethodInData('timetable', data)).to.not.throw(); 76 | expect(() => DSB.findMethodInData('tiles', data)).to.not.throw(); 77 | expect(() => DSB.findMethodInData('news', data)).to.not.throw(); 78 | }); 79 | 80 | it('should be at least one a object', async function() { 81 | const data = await dsb.fetch(); 82 | const timetables = DSB.findMethodInData('timetable', data); 83 | const tiles = DSB.findMethodInData('tiles', data); 84 | const news = DSB.findMethodInData('news', data); 85 | if ( 86 | !( 87 | typeof timetables === 'object' || 88 | typeof tiles === 'object' || 89 | typeof news === 'object' 90 | ) 91 | ) 92 | throw new Error( 93 | 'Method timetable, tiles and news are all not an object.' 94 | ); 95 | }); 96 | }); 97 | -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- 1 | # THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY. 2 | # yarn lockfile v1 3 | 4 | 5 | "@hapi/hoek@^9.0.0": 6 | version "9.2.0" 7 | resolved "https://registry.yarnpkg.com/@hapi/hoek/-/hoek-9.2.0.tgz#f3933a44e365864f4dad5db94158106d511e8131" 8 | integrity sha512-sqKVVVOe5ivCaXDWivIJYVSaEgdQK9ul7a4Kity5Iw7u9+wBAPbX1RMSnLLmp7O4Vzj0WOWwMAJsTL00xwaNug== 9 | 10 | "@hapi/topo@^5.0.0": 11 | version "5.0.0" 12 | resolved "https://registry.yarnpkg.com/@hapi/topo/-/topo-5.0.0.tgz#c19af8577fa393a06e9c77b60995af959be721e7" 13 | integrity sha512-tFJlT47db0kMqVm3H4nQYgn6Pwg10GTZHb1pwmSiv1K4ks6drQOtfEF5ZnPjkvC+y4/bUPHK+bc87QvLcL+WMw== 14 | dependencies: 15 | "@hapi/hoek" "^9.0.0" 16 | 17 | "@sideway/address@^4.1.0": 18 | version "4.1.1" 19 | resolved "https://registry.yarnpkg.com/@sideway/address/-/address-4.1.1.tgz#9e321e74310963fdf8eebfbee09c7bd69972de4d" 20 | integrity sha512-+I5aaQr3m0OAmMr7RQ3fR9zx55sejEYR2BFJaxL+zT3VM2611X0SHvPWIbAUBZVTn/YzYKbV8gJ2oT/QELknfQ== 21 | dependencies: 22 | "@hapi/hoek" "^9.0.0" 23 | 24 | "@sideway/formula@^3.0.0": 25 | version "3.0.0" 26 | resolved "https://registry.yarnpkg.com/@sideway/formula/-/formula-3.0.0.tgz#fe158aee32e6bd5de85044be615bc08478a0a13c" 27 | integrity sha512-vHe7wZ4NOXVfkoRb8T5otiENVlT7a3IAiw7H5M2+GO+9CDgcVUUsX1zalAztCmwyOr2RUTGJdgB+ZvSVqmdHmg== 28 | 29 | "@sideway/pinpoint@^2.0.0": 30 | version "2.0.0" 31 | resolved "https://registry.yarnpkg.com/@sideway/pinpoint/-/pinpoint-2.0.0.tgz#cff8ffadc372ad29fd3f78277aeb29e632cc70df" 32 | integrity sha512-RNiOoTPkptFtSVzQevY/yWtZwf/RxyVnPy/OcA9HBM3MlGDnBEYL5B41H0MTn0Uec8Hi+2qUtTfG2WWZBmMejQ== 33 | 34 | "@types/node@*": 35 | version "12.0.0" 36 | resolved "https://registry.yarnpkg.com/@types/node/-/node-12.0.0.tgz#d11813b9c0ff8aaca29f04cbc12817f4c7d656e5" 37 | integrity sha512-Jrb/x3HT4PTJp6a4avhmJCDEVrPdqLfl3e8GGMbpkGGdwAV5UGlIs4vVEfsHHfylZVOKZWpOqmqFH8CbfOZ6kg== 38 | 39 | "@ungap/promise-all-settled@1.1.2": 40 | version "1.1.2" 41 | resolved "https://registry.yarnpkg.com/@ungap/promise-all-settled/-/promise-all-settled-1.1.2.tgz#aa58042711d6e3275dd37dc597e5d31e8c290a44" 42 | integrity sha512-sL/cEvJWAnClXw0wHk85/2L0G6Sj8UB0Ctc1TEMbKSsmpRosqhwj9gWgFRZSrBr2f9tiXISwNhCPmlfqUqyb9Q== 43 | 44 | abab@^1.0.0: 45 | version "1.0.4" 46 | resolved "https://registry.yarnpkg.com/abab/-/abab-1.0.4.tgz#5faad9c2c07f60dd76770f71cf025b62a63cfd4e" 47 | integrity sha1-X6rZwsB/YN12dw9xzwJbYqY8/U4= 48 | 49 | acorn-globals@^1.0.4: 50 | version "1.0.9" 51 | resolved "https://registry.yarnpkg.com/acorn-globals/-/acorn-globals-1.0.9.tgz#55bb5e98691507b74579d0513413217c380c54cf" 52 | integrity sha1-VbtemGkVB7dFedBRNBMhfDgMVM8= 53 | dependencies: 54 | acorn "^2.1.0" 55 | 56 | acorn@^2.1.0, acorn@^2.4.0: 57 | version "2.7.0" 58 | resolved "https://registry.yarnpkg.com/acorn/-/acorn-2.7.0.tgz#ab6e7d9d886aaca8b085bc3312b79a198433f0e7" 59 | integrity sha1-q259nYhqrKiwhbwzEreaGYQz8Oc= 60 | 61 | ajv@^6.5.5: 62 | version "6.10.0" 63 | resolved "https://registry.yarnpkg.com/ajv/-/ajv-6.10.0.tgz#90d0d54439da587cd7e843bfb7045f50bd22bdf1" 64 | integrity sha512-nffhOpkymDECQyR0mnsUtoCE8RlX38G0rYP+wgLWFyZuUyuuojSSvi/+euOiQBIn63whYwYVIIH1TvE3tu4OEg== 65 | dependencies: 66 | fast-deep-equal "^2.0.1" 67 | fast-json-stable-stringify "^2.0.0" 68 | json-schema-traverse "^0.4.1" 69 | uri-js "^4.2.2" 70 | 71 | ansi-colors@4.1.1: 72 | version "4.1.1" 73 | resolved "https://registry.yarnpkg.com/ansi-colors/-/ansi-colors-4.1.1.tgz#cbb9ae256bf750af1eab344f229aa27fe94ba348" 74 | integrity sha512-JoX0apGbHaUJBNl6yF+p6JAFYZ666/hhCGKN5t9QFjbJQKUU/g8MNbFDbvfrgKXvI1QpZplPOnwIo99lX/AAmA== 75 | 76 | ansi-regex@^2.0.0: 77 | version "2.1.1" 78 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-2.1.1.tgz#c3b33ab5ee360d86e0e628f0468ae7ef27d654df" 79 | integrity sha1-w7M6te42DYbg5ijwRorn7yfWVN8= 80 | 81 | ansi-regex@^3.0.0: 82 | version "3.0.0" 83 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-3.0.0.tgz#ed0317c322064f79466c02966bddb605ab37d998" 84 | integrity sha1-7QMXwyIGT3lGbAKWa922Bas32Zg= 85 | 86 | ansi-regex@^5.0.0: 87 | version "5.0.0" 88 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-5.0.0.tgz#388539f55179bf39339c81af30a654d69f87cb75" 89 | integrity sha512-bY6fj56OUQ0hU1KjFNDQuJFezqKdrAyFdIevADiqrWHwSlbmBNMHp5ak2f40Pm8JTFyM2mqxkG6ngkHO11f/lg== 90 | 91 | ansi-styles@^2.2.1: 92 | version "2.2.1" 93 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-2.2.1.tgz#b432dd3358b634cf75e1e4664368240533c1ddbe" 94 | integrity sha1-tDLdM1i2NM914eRmQ2gkBTPB3b4= 95 | 96 | ansi-styles@^3.2.1: 97 | version "3.2.1" 98 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-3.2.1.tgz#41fbb20243e50b12be0f04b8dedbf07520ce841d" 99 | integrity sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA== 100 | dependencies: 101 | color-convert "^1.9.0" 102 | 103 | ansi-styles@^4.0.0, ansi-styles@^4.1.0: 104 | version "4.3.0" 105 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-4.3.0.tgz#edd803628ae71c04c85ae7a0906edad34b648937" 106 | integrity sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg== 107 | dependencies: 108 | color-convert "^2.0.1" 109 | 110 | anymatch@~3.1.2: 111 | version "3.1.2" 112 | resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-3.1.2.tgz#c0557c096af32f106198f4f4e2a383537e378716" 113 | integrity sha512-P43ePfOAIupkguHUycrc4qJ9kz8ZiuOUijaETwX7THt0Y/GNK7v0aa8rY816xWjZ7rJdA5XdMcpVFTKMq+RvWg== 114 | dependencies: 115 | normalize-path "^3.0.0" 116 | picomatch "^2.0.4" 117 | 118 | argparse@^2.0.1: 119 | version "2.0.1" 120 | resolved "https://registry.yarnpkg.com/argparse/-/argparse-2.0.1.tgz#246f50f3ca78a3240f6c997e8a9bd1eac49e4b38" 121 | integrity sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q== 122 | 123 | asn1@~0.2.3: 124 | version "0.2.4" 125 | resolved "https://registry.yarnpkg.com/asn1/-/asn1-0.2.4.tgz#8d2475dfab553bb33e77b54e59e880bb8ce23136" 126 | integrity sha512-jxwzQpLQjSmWXgwaCZE9Nz+glAG01yF1QnWgbhGwHI5A6FRIEY6IVqtHhIepHqI7/kyEyQEagBC5mBEFlIYvdg== 127 | dependencies: 128 | safer-buffer "~2.1.0" 129 | 130 | assert-plus@1.0.0, assert-plus@^1.0.0: 131 | version "1.0.0" 132 | resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-1.0.0.tgz#f12e0f3c5d77b0b1cdd9146942e4e96c1e4dd525" 133 | integrity sha1-8S4PPF13sLHN2RRpQuTpbB5N1SU= 134 | 135 | assertion-error@^1.1.0: 136 | version "1.1.0" 137 | resolved "https://registry.yarnpkg.com/assertion-error/-/assertion-error-1.1.0.tgz#e60b6b0e8f301bd97e5375215bda406c85118c0b" 138 | integrity sha512-jgsaNduz+ndvGyFt3uSuWqvy4lCnIJiovtouQN5JZHOKCS2QuhEdbcQHFhVksz2N2U9hXJo8odG7ETyWlEeuDw== 139 | 140 | asynckit@^0.4.0: 141 | version "0.4.0" 142 | resolved "https://registry.yarnpkg.com/asynckit/-/asynckit-0.4.0.tgz#c79ed97f7f34cb8f2ba1bc9790bcc366474b4b79" 143 | integrity sha1-x57Zf380y48robyXkLzDZkdLS3k= 144 | 145 | aws-sign2@~0.7.0: 146 | version "0.7.0" 147 | resolved "https://registry.yarnpkg.com/aws-sign2/-/aws-sign2-0.7.0.tgz#b46e890934a9591f2d2f6f86d7e6a9f1b3fe76a8" 148 | integrity sha1-tG6JCTSpWR8tL2+G1+ap8bP+dqg= 149 | 150 | aws4@^1.8.0: 151 | version "1.8.0" 152 | resolved "https://registry.yarnpkg.com/aws4/-/aws4-1.8.0.tgz#f0e003d9ca9e7f59c7a508945d7b2ef9a04a542f" 153 | integrity sha512-ReZxvNHIOv88FlT7rxcXIIC0fPt4KZqZbOlivyWtXLt8ESx84zd3kMC6iK5jVeS2qt+g7ftS7ye4fi06X5rtRQ== 154 | 155 | axios@^0.22.0: 156 | version "0.22.0" 157 | resolved "https://registry.yarnpkg.com/axios/-/axios-0.22.0.tgz#bf702c41fb50fbca4539589d839a077117b79b25" 158 | integrity sha512-Z0U3uhqQeg1oNcihswf4ZD57O3NrR1+ZXhxaROaWpDmsDTx7T2HNBV2ulBtie2hwJptu8UvgnJoK+BIqdzh/1w== 159 | dependencies: 160 | follow-redirects "^1.14.4" 161 | 162 | babel-code-frame@^6.22.0: 163 | version "6.22.0" 164 | resolved "https://registry.yarnpkg.com/babel-code-frame/-/babel-code-frame-6.22.0.tgz#027620bee567a88c32561574e7fd0801d33118e4" 165 | integrity sha1-AnYgvuVnqIwyVhV05/0IAdMxGOQ= 166 | dependencies: 167 | chalk "^1.1.0" 168 | esutils "^2.0.2" 169 | js-tokens "^3.0.0" 170 | 171 | babel-code-frame@^6.26.0: 172 | version "6.26.0" 173 | resolved "https://registry.yarnpkg.com/babel-code-frame/-/babel-code-frame-6.26.0.tgz#63fd43f7dc1e3bb7ce35947db8fe369a3f58c74b" 174 | integrity sha1-Y/1D99weO7fONZR9uP42mj9Yx0s= 175 | dependencies: 176 | chalk "^1.1.3" 177 | esutils "^2.0.2" 178 | js-tokens "^3.0.2" 179 | 180 | babel-core@^6.26.0: 181 | version "6.26.0" 182 | resolved "https://registry.yarnpkg.com/babel-core/-/babel-core-6.26.0.tgz#af32f78b31a6fcef119c87b0fd8d9753f03a0bb8" 183 | integrity sha1-rzL3izGm/O8RnIew/Y2XU/A6C7g= 184 | dependencies: 185 | babel-code-frame "^6.26.0" 186 | babel-generator "^6.26.0" 187 | babel-helpers "^6.24.1" 188 | babel-messages "^6.23.0" 189 | babel-register "^6.26.0" 190 | babel-runtime "^6.26.0" 191 | babel-template "^6.26.0" 192 | babel-traverse "^6.26.0" 193 | babel-types "^6.26.0" 194 | babylon "^6.18.0" 195 | convert-source-map "^1.5.0" 196 | debug "^2.6.8" 197 | json5 "^0.5.1" 198 | lodash "^4.17.4" 199 | minimatch "^3.0.4" 200 | path-is-absolute "^1.0.1" 201 | private "^0.1.7" 202 | slash "^1.0.0" 203 | source-map "^0.5.6" 204 | 205 | babel-generator@6.11.4: 206 | version "6.11.4" 207 | resolved "https://registry.yarnpkg.com/babel-generator/-/babel-generator-6.11.4.tgz#14f6933abb20c62666d27e3b7b9f5b9dc0712a9a" 208 | integrity sha1-FPaTOrsgxiZm0n47e59bncBxKpo= 209 | dependencies: 210 | babel-messages "^6.8.0" 211 | babel-runtime "^6.9.0" 212 | babel-types "^6.10.2" 213 | detect-indent "^3.0.1" 214 | lodash "^4.2.0" 215 | source-map "^0.5.0" 216 | 217 | babel-generator@6.26.1: 218 | version "6.26.1" 219 | resolved "https://registry.yarnpkg.com/babel-generator/-/babel-generator-6.26.1.tgz#1844408d3b8f0d35a404ea7ac180f087a601bd90" 220 | integrity sha512-HyfwY6ApZj7BYTcJURpM5tznulaBvyio7/0d4zFOeMPUmfxkCjHocCuoLa2SAGzBI8AREcH3eP3758F672DppA== 221 | dependencies: 222 | babel-messages "^6.23.0" 223 | babel-runtime "^6.26.0" 224 | babel-types "^6.26.0" 225 | detect-indent "^4.0.0" 226 | jsesc "^1.3.0" 227 | lodash "^4.17.4" 228 | source-map "^0.5.7" 229 | trim-right "^1.0.1" 230 | 231 | babel-generator@^6.26.0: 232 | version "6.26.0" 233 | resolved "https://registry.yarnpkg.com/babel-generator/-/babel-generator-6.26.0.tgz#ac1ae20070b79f6e3ca1d3269613053774f20dc5" 234 | integrity sha1-rBriAHC3n248odMmlhMFN3TyDcU= 235 | dependencies: 236 | babel-messages "^6.23.0" 237 | babel-runtime "^6.26.0" 238 | babel-types "^6.26.0" 239 | detect-indent "^4.0.0" 240 | jsesc "^1.3.0" 241 | lodash "^4.17.4" 242 | source-map "^0.5.6" 243 | trim-right "^1.0.1" 244 | 245 | babel-helpers@^6.24.1: 246 | version "6.24.1" 247 | resolved "https://registry.yarnpkg.com/babel-helpers/-/babel-helpers-6.24.1.tgz#3471de9caec388e5c850e597e58a26ddf37602b2" 248 | integrity sha1-NHHenK7DiOXIUOWX5Yom3fN2ArI= 249 | dependencies: 250 | babel-runtime "^6.22.0" 251 | babel-template "^6.24.1" 252 | 253 | babel-messages@^6.23.0, babel-messages@^6.8.0: 254 | version "6.23.0" 255 | resolved "https://registry.yarnpkg.com/babel-messages/-/babel-messages-6.23.0.tgz#f3cdf4703858035b2a2951c6ec5edf6c62f2630e" 256 | integrity sha1-8830cDhYA1sqKVHG7F7fbGLyYw4= 257 | dependencies: 258 | babel-runtime "^6.22.0" 259 | 260 | babel-register@^6.26.0: 261 | version "6.26.0" 262 | resolved "https://registry.yarnpkg.com/babel-register/-/babel-register-6.26.0.tgz#6ed021173e2fcb486d7acb45c6009a856f647071" 263 | integrity sha1-btAhFz4vy0htestFxgCahW9kcHE= 264 | dependencies: 265 | babel-core "^6.26.0" 266 | babel-runtime "^6.26.0" 267 | core-js "^2.5.0" 268 | home-or-tmp "^2.0.0" 269 | lodash "^4.17.4" 270 | mkdirp "^0.5.1" 271 | source-map-support "^0.4.15" 272 | 273 | babel-runtime@^6.22.0: 274 | version "6.23.0" 275 | resolved "https://registry.yarnpkg.com/babel-runtime/-/babel-runtime-6.23.0.tgz#0a9489f144de70efb3ce4300accdb329e2fc543b" 276 | integrity sha1-CpSJ8UTecO+zzkMArM2zKeL8VDs= 277 | dependencies: 278 | core-js "^2.4.0" 279 | regenerator-runtime "^0.10.0" 280 | 281 | babel-runtime@^6.26.0, babel-runtime@^6.9.0: 282 | version "6.26.0" 283 | resolved "https://registry.yarnpkg.com/babel-runtime/-/babel-runtime-6.26.0.tgz#965c7058668e82b55d7bfe04ff2337bc8b5647fe" 284 | integrity sha1-llxwWGaOgrVde/4E/yM3vItWR/4= 285 | dependencies: 286 | core-js "^2.4.0" 287 | regenerator-runtime "^0.11.0" 288 | 289 | babel-template@^6.24.1: 290 | version "6.24.1" 291 | resolved "https://registry.yarnpkg.com/babel-template/-/babel-template-6.24.1.tgz#04ae514f1f93b3a2537f2a0f60a5a45fb8308333" 292 | integrity sha1-BK5RTx+Ts6JTfyoPYKWkX7gwgzM= 293 | dependencies: 294 | babel-runtime "^6.22.0" 295 | babel-traverse "^6.24.1" 296 | babel-types "^6.24.1" 297 | babylon "^6.11.0" 298 | lodash "^4.2.0" 299 | 300 | babel-template@^6.26.0: 301 | version "6.26.0" 302 | resolved "https://registry.yarnpkg.com/babel-template/-/babel-template-6.26.0.tgz#de03e2d16396b069f46dd9fff8521fb1a0e35e02" 303 | integrity sha1-3gPi0WOWsGn0bdn/+FIfsaDjXgI= 304 | dependencies: 305 | babel-runtime "^6.26.0" 306 | babel-traverse "^6.26.0" 307 | babel-types "^6.26.0" 308 | babylon "^6.18.0" 309 | lodash "^4.17.4" 310 | 311 | babel-traverse@6.26.0, babel-traverse@^6.26.0: 312 | version "6.26.0" 313 | resolved "https://registry.yarnpkg.com/babel-traverse/-/babel-traverse-6.26.0.tgz#46a9cbd7edcc62c8e5c064e2d2d8d0f4035766ee" 314 | integrity sha1-RqnL1+3MYsjlwGTi0tjQ9ANXZu4= 315 | dependencies: 316 | babel-code-frame "^6.26.0" 317 | babel-messages "^6.23.0" 318 | babel-runtime "^6.26.0" 319 | babel-types "^6.26.0" 320 | babylon "^6.18.0" 321 | debug "^2.6.8" 322 | globals "^9.18.0" 323 | invariant "^2.2.2" 324 | lodash "^4.17.4" 325 | 326 | babel-traverse@^6.24.1: 327 | version "6.24.1" 328 | resolved "https://registry.yarnpkg.com/babel-traverse/-/babel-traverse-6.24.1.tgz#ab36673fd356f9a0948659e7b338d5feadb31695" 329 | integrity sha1-qzZnP9NW+aCUhlnnszjV/q2zFpU= 330 | dependencies: 331 | babel-code-frame "^6.22.0" 332 | babel-messages "^6.23.0" 333 | babel-runtime "^6.22.0" 334 | babel-types "^6.24.1" 335 | babylon "^6.15.0" 336 | debug "^2.2.0" 337 | globals "^9.0.0" 338 | invariant "^2.2.0" 339 | lodash "^4.2.0" 340 | 341 | babel-types@^6.10.2, babel-types@^6.26.0: 342 | version "6.26.0" 343 | resolved "https://registry.yarnpkg.com/babel-types/-/babel-types-6.26.0.tgz#a3b073f94ab49eb6fa55cd65227a334380632497" 344 | integrity sha1-o7Bz+Uq0nrb6Vc1lInozQ4BjJJc= 345 | dependencies: 346 | babel-runtime "^6.26.0" 347 | esutils "^2.0.2" 348 | lodash "^4.17.4" 349 | to-fast-properties "^1.0.3" 350 | 351 | babel-types@^6.24.1: 352 | version "6.24.1" 353 | resolved "https://registry.yarnpkg.com/babel-types/-/babel-types-6.24.1.tgz#a136879dc15b3606bda0d90c1fc74304c2ff0975" 354 | integrity sha1-oTaHncFbNga9oNkMH8dDBML/CXU= 355 | dependencies: 356 | babel-runtime "^6.22.0" 357 | esutils "^2.0.2" 358 | lodash "^4.2.0" 359 | to-fast-properties "^1.0.1" 360 | 361 | babylon@6.18.0, babylon@^6.18.0: 362 | version "6.18.0" 363 | resolved "https://registry.yarnpkg.com/babylon/-/babylon-6.18.0.tgz#af2f3b88fa6f5c1e4c634d1a0f8eac4f55b395e3" 364 | integrity sha512-q/UEjfGJ2Cm3oKV71DJz9d25TPnq5rhBVL2Q4fA5wcC3jcrdn7+SssEybFIxwAvvP+YCsCYNKughoF33GxgycQ== 365 | 366 | babylon@^6.11.0, babylon@^6.15.0: 367 | version "6.17.0" 368 | resolved "https://registry.yarnpkg.com/babylon/-/babylon-6.17.0.tgz#37da948878488b9c4e3c4038893fa3314b3fc932" 369 | integrity sha1-N9qUiHhIi5xOPEA4iT+jMUs/yTI= 370 | 371 | balanced-match@^1.0.0: 372 | version "1.0.0" 373 | resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.0.tgz#89b4d199ab2bee49de164ea02b89ce462d71b767" 374 | integrity sha1-ibTRmasr7kneFk6gK4nORi1xt2c= 375 | 376 | bcrypt-pbkdf@^1.0.0: 377 | version "1.0.2" 378 | resolved "https://registry.yarnpkg.com/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.2.tgz#a4301d389b6a43f9b67ff3ca11a3f6637e360e9e" 379 | integrity sha1-pDAdOJtqQ/m2f/PKEaP2Y342Dp4= 380 | dependencies: 381 | tweetnacl "^0.14.3" 382 | 383 | binary-extensions@^2.0.0: 384 | version "2.2.0" 385 | resolved "https://registry.yarnpkg.com/binary-extensions/-/binary-extensions-2.2.0.tgz#75f502eeaf9ffde42fc98829645be4ea76bd9e2d" 386 | integrity sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA== 387 | 388 | boolbase@~1.0.0: 389 | version "1.0.0" 390 | resolved "https://registry.yarnpkg.com/boolbase/-/boolbase-1.0.0.tgz#68dff5fbe60c51eb37725ea9e3ed310dcc1e776e" 391 | integrity sha1-aN/1++YMUes3cl6p4+0xDcwed24= 392 | 393 | brace-expansion@^1.1.7: 394 | version "1.1.11" 395 | resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.11.tgz#3c7fcbf529d87226f3d2f52b966ff5271eb441dd" 396 | integrity sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA== 397 | dependencies: 398 | balanced-match "^1.0.0" 399 | concat-map "0.0.1" 400 | 401 | braces@~3.0.2: 402 | version "3.0.2" 403 | resolved "https://registry.yarnpkg.com/braces/-/braces-3.0.2.tgz#3454e1a462ee8d599e236df336cd9ea4f8afe107" 404 | integrity sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A== 405 | dependencies: 406 | fill-range "^7.0.1" 407 | 408 | browser-stdout@1.3.1: 409 | version "1.3.1" 410 | resolved "https://registry.yarnpkg.com/browser-stdout/-/browser-stdout-1.3.1.tgz#baa559ee14ced73452229bad7326467c61fabd60" 411 | integrity sha512-qhAVI1+Av2X7qelOfAIYwXONood6XlZE/fXaBSmW/T5SzLAmCgzi+eiWE7fUvbHaeNBQH13UftjpXxsfLkMpgw== 412 | 413 | call-bind@^1.0.0, call-bind@^1.0.2: 414 | version "1.0.2" 415 | resolved "https://registry.yarnpkg.com/call-bind/-/call-bind-1.0.2.tgz#b1d4e89e688119c3c9a903ad30abb2f6a919be3c" 416 | integrity sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA== 417 | dependencies: 418 | function-bind "^1.1.1" 419 | get-intrinsic "^1.0.2" 420 | 421 | camelcase@^4.1.0: 422 | version "4.1.0" 423 | resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-4.1.0.tgz#d545635be1e33c542649c69173e5de6acfae34dd" 424 | integrity sha1-1UVjW+HjPFQmScaRc+Xeas+uNN0= 425 | 426 | camelcase@^6.0.0: 427 | version "6.2.0" 428 | resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-6.2.0.tgz#924af881c9d525ac9d87f40d964e5cea982a1809" 429 | integrity sha512-c7wVvbw3f37nuobQNtgsgG9POC9qMbNuMQmTCqZv23b6MIz0fcYpBiOlv9gEN/hdLdnZTDQhg6e9Dq5M1vKvfg== 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 | chai@^4.3.4: 437 | version "4.3.4" 438 | resolved "https://registry.yarnpkg.com/chai/-/chai-4.3.4.tgz#b55e655b31e1eac7099be4c08c21964fce2e6c49" 439 | integrity sha512-yS5H68VYOCtN1cjfwumDSuzn/9c+yza4f3reKXlE5rUg7SFcCEy90gJvydNgOYtblyf4Zi6jIWRnXOgErta0KA== 440 | dependencies: 441 | assertion-error "^1.1.0" 442 | check-error "^1.0.2" 443 | deep-eql "^3.0.1" 444 | get-func-name "^2.0.0" 445 | pathval "^1.1.1" 446 | type-detect "^4.0.5" 447 | 448 | chalk@^1.1.0, chalk@^1.1.3: 449 | version "1.1.3" 450 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-1.1.3.tgz#a8115c55e4a702fe4d150abd3872822a7e09fc98" 451 | integrity sha1-qBFcVeSnAv5NFQq9OHKCKn4J/Jg= 452 | dependencies: 453 | ansi-styles "^2.2.1" 454 | escape-string-regexp "^1.0.2" 455 | has-ansi "^2.0.0" 456 | strip-ansi "^3.0.0" 457 | supports-color "^2.0.0" 458 | 459 | chalk@^2.3.0, chalk@^2.4.1: 460 | version "2.4.2" 461 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-2.4.2.tgz#cd42541677a54333cf541a49108c1432b44c9424" 462 | integrity sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ== 463 | dependencies: 464 | ansi-styles "^3.2.1" 465 | escape-string-regexp "^1.0.5" 466 | supports-color "^5.3.0" 467 | 468 | chalk@^4.1.0: 469 | version "4.1.2" 470 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-4.1.2.tgz#aac4e2b7734a740867aeb16bf02aad556a1e7a01" 471 | integrity sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA== 472 | dependencies: 473 | ansi-styles "^4.1.0" 474 | supports-color "^7.1.0" 475 | 476 | check-error@^1.0.2: 477 | version "1.0.2" 478 | resolved "https://registry.yarnpkg.com/check-error/-/check-error-1.0.2.tgz#574d312edd88bb5dd8912e9286dd6c0aed4aac82" 479 | integrity sha1-V00xLt2Iu13YkS6Sht1sCu1KrII= 480 | 481 | cheerio@0.20.0: 482 | version "0.20.0" 483 | resolved "https://registry.yarnpkg.com/cheerio/-/cheerio-0.20.0.tgz#5c710f2bab95653272842ba01c6ea61b3545ec35" 484 | integrity sha1-XHEPK6uVZTJyhCugHG6mGzVF7DU= 485 | dependencies: 486 | css-select "~1.2.0" 487 | dom-serializer "~0.1.0" 488 | entities "~1.1.1" 489 | htmlparser2 "~3.8.1" 490 | lodash "^4.1.0" 491 | optionalDependencies: 492 | jsdom "^7.0.2" 493 | 494 | cheerio@0.22.0: 495 | version "0.22.0" 496 | resolved "https://registry.yarnpkg.com/cheerio/-/cheerio-0.22.0.tgz#a9baa860a3f9b595a6b81b1a86873121ed3a269e" 497 | integrity sha1-qbqoYKP5tZWmuBsahocxIe06Jp4= 498 | dependencies: 499 | css-select "~1.2.0" 500 | dom-serializer "~0.1.0" 501 | entities "~1.1.1" 502 | htmlparser2 "^3.9.1" 503 | lodash.assignin "^4.0.9" 504 | lodash.bind "^4.1.4" 505 | lodash.defaults "^4.0.1" 506 | lodash.filter "^4.4.0" 507 | lodash.flatten "^4.2.0" 508 | lodash.foreach "^4.3.0" 509 | lodash.map "^4.4.0" 510 | lodash.merge "^4.4.0" 511 | lodash.pick "^4.2.1" 512 | lodash.reduce "^4.4.0" 513 | lodash.reject "^4.4.0" 514 | lodash.some "^4.4.0" 515 | 516 | cheerio@1.0.0-rc.2: 517 | version "1.0.0-rc.2" 518 | resolved "https://registry.yarnpkg.com/cheerio/-/cheerio-1.0.0-rc.2.tgz#4b9f53a81b27e4d5dac31c0ffd0cfa03cc6830db" 519 | integrity sha1-S59TqBsn5NXawxwP/Qz6A8xoMNs= 520 | dependencies: 521 | css-select "~1.2.0" 522 | dom-serializer "~0.1.0" 523 | entities "~1.1.1" 524 | htmlparser2 "^3.9.1" 525 | lodash "^4.15.0" 526 | parse5 "^3.0.1" 527 | 528 | chokidar@3.5.2: 529 | version "3.5.2" 530 | resolved "https://registry.yarnpkg.com/chokidar/-/chokidar-3.5.2.tgz#dba3976fcadb016f66fd365021d91600d01c1e75" 531 | integrity sha512-ekGhOnNVPgT77r4K/U3GDhu+FQ2S8TnK/s2KbIGXi0SZWuwkZ2QNyfWdZW+TVfn84DpEP7rLeCt2UI6bJ8GwbQ== 532 | dependencies: 533 | anymatch "~3.1.2" 534 | braces "~3.0.2" 535 | glob-parent "~5.1.2" 536 | is-binary-path "~2.1.0" 537 | is-glob "~4.0.1" 538 | normalize-path "~3.0.0" 539 | readdirp "~3.6.0" 540 | optionalDependencies: 541 | fsevents "~2.3.2" 542 | 543 | cliui@^4.0.0: 544 | version "4.1.0" 545 | resolved "https://registry.yarnpkg.com/cliui/-/cliui-4.1.0.tgz#348422dbe82d800b3022eef4f6ac10bf2e4d1b49" 546 | integrity sha512-4FG+RSG9DL7uEwRUZXZn3SS34DiDPfzP0VOiEwtUWlE+AR2EIg+hSyvrIgUUfhdgR/UkAeW2QHgeP+hWrXs7jQ== 547 | dependencies: 548 | string-width "^2.1.1" 549 | strip-ansi "^4.0.0" 550 | wrap-ansi "^2.0.0" 551 | 552 | cliui@^7.0.2: 553 | version "7.0.4" 554 | resolved "https://registry.yarnpkg.com/cliui/-/cliui-7.0.4.tgz#a0265ee655476fc807aea9df3df8df7783808b4f" 555 | integrity sha512-OcRE68cOsVMXp1Yvonl/fzkQOyjLSu/8bhPDfQt0e0/Eb283TKP20Fs2MqoPsr9SwA595rRCA+QMzYc9nBP+JQ== 556 | dependencies: 557 | string-width "^4.2.0" 558 | strip-ansi "^6.0.0" 559 | wrap-ansi "^7.0.0" 560 | 561 | code-point-at@^1.0.0: 562 | version "1.1.0" 563 | resolved "https://registry.yarnpkg.com/code-point-at/-/code-point-at-1.1.0.tgz#0d070b4d043a5bea33a2f1a40e2edb3d9a4ccf77" 564 | integrity sha1-DQcLTQQ6W+ozovGkDi7bPZpMz3c= 565 | 566 | color-convert@^1.9.0: 567 | version "1.9.3" 568 | resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-1.9.3.tgz#bb71850690e1f136567de629d2d5471deda4c1e8" 569 | integrity sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg== 570 | dependencies: 571 | color-name "1.1.3" 572 | 573 | color-convert@^2.0.1: 574 | version "2.0.1" 575 | resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-2.0.1.tgz#72d3a68d598c9bdb3af2ad1e84f21d896abd4de3" 576 | integrity sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ== 577 | dependencies: 578 | color-name "~1.1.4" 579 | 580 | color-logger@0.0.3: 581 | version "0.0.3" 582 | resolved "https://registry.yarnpkg.com/color-logger/-/color-logger-0.0.3.tgz#d9b22dd1d973e166b18bf313f9f481bba4df2018" 583 | integrity sha1-2bIt0dlz4Waxi/MT+fSBu6TfIBg= 584 | 585 | color-logger@0.0.6: 586 | version "0.0.6" 587 | resolved "https://registry.yarnpkg.com/color-logger/-/color-logger-0.0.6.tgz#e56245ef29822657110c7cb75a9cd786cb69ed1b" 588 | integrity sha1-5WJF7ymCJlcRDHy3WpzXhstp7Rs= 589 | 590 | color-name@1.1.3: 591 | version "1.1.3" 592 | resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.3.tgz#a7d0558bd89c42f795dd42328f740831ca53bc25" 593 | integrity sha1-p9BVi9icQveV3UIyj3QIMcpTvCU= 594 | 595 | color-name@~1.1.4: 596 | version "1.1.4" 597 | resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.4.tgz#c2a09a87acbde69543de6f63fa3995c826c536a2" 598 | integrity sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA== 599 | 600 | combined-stream@^1.0.6, combined-stream@~1.0.6: 601 | version "1.0.7" 602 | resolved "https://registry.yarnpkg.com/combined-stream/-/combined-stream-1.0.7.tgz#2d1d24317afb8abe95d6d2c0b07b57813539d828" 603 | integrity sha512-brWl9y6vOB1xYPZcpZde3N9zDByXTosAeMDo4p1wzo6UMOX4vumB+TP1RZ76sfE6Md68Q0NJSrE/gbezd4Ul+w== 604 | dependencies: 605 | delayed-stream "~1.0.0" 606 | 607 | concat-map@0.0.1: 608 | version "0.0.1" 609 | resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b" 610 | integrity sha1-2Klr13/Wjfd5OnMDajug1UBdR3s= 611 | 612 | convert-source-map@^1.5.0: 613 | version "1.5.0" 614 | resolved "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-1.5.0.tgz#9acd70851c6d5dfdd93d9282e5edf94a03ff46b5" 615 | integrity sha1-ms1whRxtXf3ZPZKC5e35SgP/RrU= 616 | 617 | core-js@^2.4.0: 618 | version "2.4.1" 619 | resolved "https://registry.yarnpkg.com/core-js/-/core-js-2.4.1.tgz#4de911e667b0eae9124e34254b53aea6fc618d3e" 620 | integrity sha1-TekR5mew6ukSTjQlS1OupvxhjT4= 621 | 622 | core-js@^2.5.0: 623 | version "2.5.1" 624 | resolved "https://registry.yarnpkg.com/core-js/-/core-js-2.5.1.tgz#ae6874dc66937789b80754ff5428df66819ca50b" 625 | integrity sha1-rmh03GaTd4m4B1T/VCjfZoGcpQs= 626 | 627 | core-util-is@1.0.2, core-util-is@~1.0.0: 628 | version "1.0.2" 629 | resolved "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.2.tgz#b5fd54220aa2bc5ab57aab7140c940754503c1a7" 630 | integrity sha1-tf1UIgqivFq1eqtxQMlAdUUDwac= 631 | 632 | cross-spawn@^5.0.1: 633 | version "5.1.0" 634 | resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-5.1.0.tgz#e8bd0efee58fcff6f8f94510a0a554bbfa235449" 635 | integrity sha1-6L0O/uWPz/b4+UUQoKVUu/ojVEk= 636 | dependencies: 637 | lru-cache "^4.0.1" 638 | shebang-command "^1.2.0" 639 | which "^1.2.9" 640 | 641 | cross-spawn@^6.0.5: 642 | version "6.0.5" 643 | resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-6.0.5.tgz#4a5ec7c64dfae22c3a14124dbacdee846d80cbc4" 644 | integrity sha512-eTVLrBSt7fjbDygz805pMnstIs2VTBNkRm0qxZd+M7A5XDdxVRWO5MxGBXZhjY4cqLYLdtrGqRf8mBPmzwSpWQ== 645 | dependencies: 646 | nice-try "^1.0.4" 647 | path-key "^2.0.1" 648 | semver "^5.5.0" 649 | shebang-command "^1.2.0" 650 | which "^1.2.9" 651 | 652 | css-select@~1.2.0: 653 | version "1.2.0" 654 | resolved "https://registry.yarnpkg.com/css-select/-/css-select-1.2.0.tgz#2b3a110539c5355f1cd8d314623e870b121ec858" 655 | integrity sha1-KzoRBTnFNV8c2NMUYj6HCxIeyFg= 656 | dependencies: 657 | boolbase "~1.0.0" 658 | css-what "2.1" 659 | domutils "1.5.1" 660 | nth-check "~1.0.1" 661 | 662 | css-what@2.1: 663 | version "2.1.3" 664 | resolved "https://registry.yarnpkg.com/css-what/-/css-what-2.1.3.tgz#a6d7604573365fe74686c3f311c56513d88285f2" 665 | integrity sha512-a+EPoD+uZiNfh+5fxw2nO9QwFa6nJe2Or35fGY6Ipw1R3R4AGz1d1TEZrCegvw2YTmZ0jXirGYlzxxpYSHwpEg== 666 | 667 | cssom@0.3.x, "cssom@>= 0.3.0 < 0.4.0": 668 | version "0.3.6" 669 | resolved "https://registry.yarnpkg.com/cssom/-/cssom-0.3.6.tgz#f85206cee04efa841f3c5982a74ba96ab20d65ad" 670 | integrity sha512-DtUeseGk9/GBW0hl0vVPpU22iHL6YB5BUX7ml1hB+GMpo0NX5G4voX3kdWiMSEguFtcW3Vh3djqNF4aIe6ne0A== 671 | 672 | "cssstyle@>= 0.2.29 < 0.3.0": 673 | version "0.2.37" 674 | resolved "https://registry.yarnpkg.com/cssstyle/-/cssstyle-0.2.37.tgz#541097234cb2513c83ceed3acddc27ff27987d54" 675 | integrity sha1-VBCXI0yyUTyDzu06zdwn/yeYfVQ= 676 | dependencies: 677 | cssom "0.3.x" 678 | 679 | dashdash@^1.12.0: 680 | version "1.14.1" 681 | resolved "https://registry.yarnpkg.com/dashdash/-/dashdash-1.14.1.tgz#853cfa0f7cbe2fed5de20326b8dd581035f6e2f0" 682 | integrity sha1-hTz6D3y+L+1d4gMmuN1YEDX24vA= 683 | dependencies: 684 | assert-plus "^1.0.0" 685 | 686 | debug@4.3.2: 687 | version "4.3.2" 688 | resolved "https://registry.yarnpkg.com/debug/-/debug-4.3.2.tgz#f0a49c18ac8779e31d4a0c6029dfb76873c7428b" 689 | integrity sha512-mOp8wKcvj7XxC78zLgw/ZA+6TSgkoE2C/ienthhRD298T7UNwAg9diBpLRxC0mOezLl4B0xV7M0cCO6P/O0Xhw== 690 | dependencies: 691 | ms "2.1.2" 692 | 693 | debug@^2.2.0, debug@^2.6.8: 694 | version "2.6.9" 695 | resolved "https://registry.yarnpkg.com/debug/-/debug-2.6.9.tgz#5d128515df134ff327e90a4c93f4e077a536341f" 696 | integrity sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA== 697 | dependencies: 698 | ms "2.0.0" 699 | 700 | decamelize@^1.1.1: 701 | version "1.2.0" 702 | resolved "https://registry.yarnpkg.com/decamelize/-/decamelize-1.2.0.tgz#f6534d15148269b20352e7bee26f501f9a191290" 703 | integrity sha1-9lNNFRSCabIDUue+4m9QH5oZEpA= 704 | 705 | decamelize@^4.0.0: 706 | version "4.0.0" 707 | resolved "https://registry.yarnpkg.com/decamelize/-/decamelize-4.0.0.tgz#aa472d7bf660eb15f3494efd531cab7f2a709837" 708 | integrity sha512-9iE1PgSik9HeIIw2JO94IidnE3eBoQrFJ3w7sFuzSX4DpmZ3v5sZpUiV5Swcf6mQEF+Y0ru8Neo+p+nyh2J+hQ== 709 | 710 | deep-eql@^3.0.1: 711 | version "3.0.1" 712 | resolved "https://registry.yarnpkg.com/deep-eql/-/deep-eql-3.0.1.tgz#dfc9404400ad1c8fe023e7da1df1c147c4b444df" 713 | integrity sha512-+QeIQyN5ZuO+3Uk5DYh6/1eKO0m0YmJFGNmFHGACpf1ClL1nmlV/p4gNgbl2pJGxgXb4faqo6UE+M5ACEMyVcw== 714 | dependencies: 715 | type-detect "^4.0.0" 716 | 717 | deep-is@~0.1.3: 718 | version "0.1.3" 719 | resolved "https://registry.yarnpkg.com/deep-is/-/deep-is-0.1.3.tgz#b369d6fb5dbc13eecf524f91b070feedc357cf34" 720 | integrity sha1-s2nW+128E+7PUk+RsHD+7cNXzzQ= 721 | 722 | define-properties@^1.1.3: 723 | version "1.1.3" 724 | resolved "https://registry.yarnpkg.com/define-properties/-/define-properties-1.1.3.tgz#cf88da6cbee26fe6db7094f61d870cbd84cee9f1" 725 | integrity sha512-3MqfYKj2lLzdMSf8ZIZE/V+Zuy+BgD6f164e8K2w7dgnpKArBDerGYpM46IYYcjnkdPNMjPk9A6VFB8+3SKlXQ== 726 | dependencies: 727 | object-keys "^1.0.12" 728 | 729 | delayed-stream@~1.0.0: 730 | version "1.0.0" 731 | resolved "https://registry.yarnpkg.com/delayed-stream/-/delayed-stream-1.0.0.tgz#df3ae199acadfb7d440aaae0b29e2272b24ec619" 732 | integrity sha1-3zrhmayt+31ECqrgsp4icrJOxhk= 733 | 734 | detect-indent@^3.0.1: 735 | version "3.0.1" 736 | resolved "https://registry.yarnpkg.com/detect-indent/-/detect-indent-3.0.1.tgz#9dc5e5ddbceef8325764b9451b02bc6d54084f75" 737 | integrity sha1-ncXl3bzu+DJXZLlFGwK8bVQIT3U= 738 | dependencies: 739 | get-stdin "^4.0.1" 740 | minimist "^1.1.0" 741 | repeating "^1.1.0" 742 | 743 | detect-indent@^4.0.0: 744 | version "4.0.0" 745 | resolved "https://registry.yarnpkg.com/detect-indent/-/detect-indent-4.0.0.tgz#f76d064352cdf43a1cb6ce619c4ee3a9475de208" 746 | integrity sha1-920GQ1LN9Docts5hnE7jqUdd4gg= 747 | dependencies: 748 | repeating "^2.0.0" 749 | 750 | diff@5.0.0: 751 | version "5.0.0" 752 | resolved "https://registry.yarnpkg.com/diff/-/diff-5.0.0.tgz#7ed6ad76d859d030787ec35855f5b1daf31d852b" 753 | integrity sha512-/VTCrvm5Z0JGty/BWHljh+BAiw3IK+2j87NGMu8Nwc/f48WoDAC395uomO9ZD117ZOBaHmkX1oyLvkVM/aIT3w== 754 | 755 | dom-serializer@0, dom-serializer@~0.1.0: 756 | version "0.1.1" 757 | resolved "https://registry.yarnpkg.com/dom-serializer/-/dom-serializer-0.1.1.tgz#1ec4059e284babed36eec2941d4a970a189ce7c0" 758 | integrity sha512-l0IU0pPzLWSHBcieZbpOKgkIn3ts3vAh7ZuFyXNwJxJXk/c4Gwj9xaTJwIDVQCXawWD0qb3IzMGH5rglQaO0XA== 759 | dependencies: 760 | domelementtype "^1.3.0" 761 | entities "^1.1.1" 762 | 763 | domelementtype@1, domelementtype@^1.3.0, domelementtype@^1.3.1: 764 | version "1.3.1" 765 | resolved "https://registry.yarnpkg.com/domelementtype/-/domelementtype-1.3.1.tgz#d048c44b37b0d10a7f2a3d5fee3f4333d790481f" 766 | integrity sha512-BSKB+TSpMpFI/HOxCNr1O8aMOTZ8hT3pM3GQ0w/mWRmkhEDSFJkkyzz4XQsBV44BChwGkrDfMyjVD0eA2aFV3w== 767 | 768 | domhandler@2.3: 769 | version "2.3.0" 770 | resolved "https://registry.yarnpkg.com/domhandler/-/domhandler-2.3.0.tgz#2de59a0822d5027fabff6f032c2b25a2a8abe738" 771 | integrity sha1-LeWaCCLVAn+r/28DLCsloqir5zg= 772 | dependencies: 773 | domelementtype "1" 774 | 775 | domhandler@^2.3.0: 776 | version "2.4.2" 777 | resolved "https://registry.yarnpkg.com/domhandler/-/domhandler-2.4.2.tgz#8805097e933d65e85546f726d60f5eb88b44f803" 778 | integrity sha512-JiK04h0Ht5u/80fdLMCEmV4zkNh2BcoMFBmZ/91WtYZ8qVXSKjiw7fXMgFPnHcSZgOo3XdinHvmnDUeMf5R4wA== 779 | dependencies: 780 | domelementtype "1" 781 | 782 | domutils@1.5, domutils@1.5.1: 783 | version "1.5.1" 784 | resolved "https://registry.yarnpkg.com/domutils/-/domutils-1.5.1.tgz#dcd8488a26f563d61079e48c9f7b7e32373682cf" 785 | integrity sha1-3NhIiib1Y9YQeeSMn3t+Mjc2gs8= 786 | dependencies: 787 | dom-serializer "0" 788 | domelementtype "1" 789 | 790 | domutils@^1.5.1: 791 | version "1.7.0" 792 | resolved "https://registry.yarnpkg.com/domutils/-/domutils-1.7.0.tgz#56ea341e834e06e6748af7a1cb25da67ea9f8c2a" 793 | integrity sha512-Lgd2XcJ/NjEw+7tFvfKxOzCYKZsdct5lczQ2ZaQY8Djz7pfAD3Gbp8ySJWtreII/vDlMVmxwa6pHmdxIYgttDg== 794 | dependencies: 795 | dom-serializer "0" 796 | domelementtype "1" 797 | 798 | dotenv@^10.0.0: 799 | version "10.0.0" 800 | resolved "https://registry.yarnpkg.com/dotenv/-/dotenv-10.0.0.tgz#3d4227b8fb95f81096cdd2b66653fb2c7085ba81" 801 | integrity sha512-rlBi9d8jpv9Sf1klPjNfFAuWDjKLwTIJJ/VxtoTwIR6hnZxcEOQCZg2oIL3MWBYw5GpUDKOEnND7LXTbIpQ03Q== 802 | 803 | ecc-jsbn@~0.1.1: 804 | version "0.1.2" 805 | resolved "https://registry.yarnpkg.com/ecc-jsbn/-/ecc-jsbn-0.1.2.tgz#3a83a904e54353287874c564b7549386849a98c9" 806 | integrity sha1-OoOpBOVDUyh4dMVkt1SThoSamMk= 807 | dependencies: 808 | jsbn "~0.1.0" 809 | safer-buffer "^2.1.0" 810 | 811 | emoji-regex@^8.0.0: 812 | version "8.0.0" 813 | resolved "https://registry.yarnpkg.com/emoji-regex/-/emoji-regex-8.0.0.tgz#e818fd69ce5ccfcb404594f842963bf53164cc37" 814 | integrity sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A== 815 | 816 | entities@1.0: 817 | version "1.0.0" 818 | resolved "https://registry.yarnpkg.com/entities/-/entities-1.0.0.tgz#b2987aa3821347fcde642b24fdfc9e4fb712bf26" 819 | integrity sha1-sph6o4ITR/zeZCsk/fyeT7cSvyY= 820 | 821 | entities@^1.1.1, entities@~1.1.1: 822 | version "1.1.2" 823 | resolved "https://registry.yarnpkg.com/entities/-/entities-1.1.2.tgz#bdfa735299664dfafd34529ed4f8522a275fea56" 824 | integrity sha512-f2LZMYl1Fzu7YSBKg+RoROelpOaNrcGmE9AZubeDfrCEia483oW4MI4VyFd5VNHIgQ/7qm1I0wUHK1eJnn2y2w== 825 | 826 | error-ex@^1.3.1: 827 | version "1.3.2" 828 | resolved "https://registry.yarnpkg.com/error-ex/-/error-ex-1.3.2.tgz#b4ac40648107fdcdcfae242f428bea8a14d4f1bf" 829 | integrity sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g== 830 | dependencies: 831 | is-arrayish "^0.2.1" 832 | 833 | es-abstract@^1.18.0-next.2: 834 | version "1.18.0" 835 | resolved "https://registry.yarnpkg.com/es-abstract/-/es-abstract-1.18.0.tgz#ab80b359eecb7ede4c298000390bc5ac3ec7b5a4" 836 | integrity sha512-LJzK7MrQa8TS0ja2w3YNLzUgJCGPdPOV1yVvezjNnS89D+VR08+Szt2mz3YB2Dck/+w5tfIq/RoUAFqJJGM2yw== 837 | dependencies: 838 | call-bind "^1.0.2" 839 | es-to-primitive "^1.2.1" 840 | function-bind "^1.1.1" 841 | get-intrinsic "^1.1.1" 842 | has "^1.0.3" 843 | has-symbols "^1.0.2" 844 | is-callable "^1.2.3" 845 | is-negative-zero "^2.0.1" 846 | is-regex "^1.1.2" 847 | is-string "^1.0.5" 848 | object-inspect "^1.9.0" 849 | object-keys "^1.1.1" 850 | object.assign "^4.1.2" 851 | string.prototype.trimend "^1.0.4" 852 | string.prototype.trimstart "^1.0.4" 853 | unbox-primitive "^1.0.0" 854 | 855 | es-to-primitive@^1.2.1: 856 | version "1.2.1" 857 | resolved "https://registry.yarnpkg.com/es-to-primitive/-/es-to-primitive-1.2.1.tgz#e55cd4c9cdc188bcefb03b366c736323fc5c898a" 858 | integrity sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA== 859 | dependencies: 860 | is-callable "^1.1.4" 861 | is-date-object "^1.0.1" 862 | is-symbol "^1.0.2" 863 | 864 | escalade@^3.1.1: 865 | version "3.1.1" 866 | resolved "https://registry.yarnpkg.com/escalade/-/escalade-3.1.1.tgz#d8cfdc7000965c5a0174b4a82eaa5c0552742e40" 867 | integrity sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw== 868 | 869 | escape-html@1.0.3: 870 | version "1.0.3" 871 | resolved "https://registry.yarnpkg.com/escape-html/-/escape-html-1.0.3.tgz#0258eae4d3d0c0974de1c169188ef0051d1d1988" 872 | integrity sha1-Aljq5NPQwJdN4cFpGI7wBR0dGYg= 873 | 874 | escape-string-regexp@4.0.0: 875 | version "4.0.0" 876 | resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz#14ba83a5d373e3d311e5afca29cf5bfad965bf34" 877 | integrity sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA== 878 | 879 | escape-string-regexp@^1.0.2, escape-string-regexp@^1.0.5: 880 | version "1.0.5" 881 | resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4" 882 | integrity sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ= 883 | 884 | escodegen@^1.6.1: 885 | version "1.11.1" 886 | resolved "https://registry.yarnpkg.com/escodegen/-/escodegen-1.11.1.tgz#c485ff8d6b4cdb89e27f4a856e91f118401ca510" 887 | integrity sha512-JwiqFD9KdGVVpeuRa68yU3zZnBEOcPs0nKW7wZzXky8Z7tffdYUHbe11bPCV5jYlK6DVdKLWLm0f5I/QlL0Kmw== 888 | dependencies: 889 | esprima "^3.1.3" 890 | estraverse "^4.2.0" 891 | esutils "^2.0.2" 892 | optionator "^0.8.1" 893 | optionalDependencies: 894 | source-map "~0.6.1" 895 | 896 | esdoc-accessor-plugin@^1.0.0: 897 | version "1.0.0" 898 | resolved "https://registry.yarnpkg.com/esdoc-accessor-plugin/-/esdoc-accessor-plugin-1.0.0.tgz#791ba4872e6c403515ce749b1348d6f0293ad9eb" 899 | integrity sha1-eRukhy5sQDUVznSbE0jW8Ck62es= 900 | 901 | esdoc-brand-plugin@^1.0.0: 902 | version "1.0.1" 903 | resolved "https://registry.yarnpkg.com/esdoc-brand-plugin/-/esdoc-brand-plugin-1.0.1.tgz#7c0e1ae90e84c30b2d3369d3a6449f9dc9f8d511" 904 | integrity sha512-Yv9j3M7qk5PSLmSeD6MbPsfIsEf8K43EdH8qZpE/GZwnJCRVmDPrZJ1cLDj/fPu6P35YqgcEaJK4E2NL/CKA7g== 905 | dependencies: 906 | cheerio "0.22.0" 907 | 908 | esdoc-coverage-plugin@^1.0.0: 909 | version "1.1.0" 910 | resolved "https://registry.yarnpkg.com/esdoc-coverage-plugin/-/esdoc-coverage-plugin-1.1.0.tgz#3869869cd7f87891f972625787695a299aece45c" 911 | integrity sha1-OGmGnNf4eJH5cmJXh2laKZrs5Fw= 912 | 913 | esdoc-external-ecmascript-plugin@^1.0.0: 914 | version "1.0.0" 915 | resolved "https://registry.yarnpkg.com/esdoc-external-ecmascript-plugin/-/esdoc-external-ecmascript-plugin-1.0.0.tgz#78f565d4a0c5185ac63152614dce1fe1a86688db" 916 | integrity sha1-ePVl1KDFGFrGMVJhTc4f4ahmiNs= 917 | dependencies: 918 | fs-extra "1.0.0" 919 | 920 | esdoc-external-nodejs-plugin@^1.0.0: 921 | version "1.0.0" 922 | resolved "https://registry.yarnpkg.com/esdoc-external-nodejs-plugin/-/esdoc-external-nodejs-plugin-1.0.0.tgz#9801e9802088a359df25ce1f48b4961a3439663f" 923 | integrity sha1-mAHpgCCIo1nfJc4fSLSWGjQ5Zj8= 924 | dependencies: 925 | fs-extra "1.0.0" 926 | 927 | esdoc-integrate-manual-plugin@^1.0.0: 928 | version "1.0.0" 929 | resolved "https://registry.yarnpkg.com/esdoc-integrate-manual-plugin/-/esdoc-integrate-manual-plugin-1.0.0.tgz#1854a6aa1c081035d7c8c51e3bdd4fb65aa4711c" 930 | integrity sha1-GFSmqhwIEDXXyMUeO91PtlqkcRw= 931 | 932 | esdoc-integrate-test-plugin@^1.0.0: 933 | version "1.0.0" 934 | resolved "https://registry.yarnpkg.com/esdoc-integrate-test-plugin/-/esdoc-integrate-test-plugin-1.0.0.tgz#e2d0d00090f7f0c35e5d2f2c033327a79e53e409" 935 | integrity sha1-4tDQAJD38MNeXS8sAzMnp55T5Ak= 936 | 937 | esdoc-lint-plugin@^1.0.0: 938 | version "1.0.2" 939 | resolved "https://registry.yarnpkg.com/esdoc-lint-plugin/-/esdoc-lint-plugin-1.0.2.tgz#4962930c6dc5b25d80cf6eff1b0f3c24609077f7" 940 | integrity sha512-24AYqD2WbZI9We02I7/6dzAa7yUliRTFUaJCZAcYJMQicJT5gUrNFVaI8XmWEN/mhF3szIn1uZBNWeLul4CmNw== 941 | 942 | esdoc-publish-html-plugin@^1.0.0: 943 | version "1.1.2" 944 | resolved "https://registry.yarnpkg.com/esdoc-publish-html-plugin/-/esdoc-publish-html-plugin-1.1.2.tgz#bdece7bc7a0a3e419933503252db7a6772879dab" 945 | integrity sha512-hG1fZmTcEp3P/Hv/qKiMdG1qSp8MjnVZMMkxL5P5ry7I2sX0HQ4P9lt2lms+90Lt0r340HHhSuVx107UL7dphg== 946 | dependencies: 947 | babel-generator "6.11.4" 948 | cheerio "0.22.0" 949 | escape-html "1.0.3" 950 | fs-extra "1.0.0" 951 | ice-cap "0.0.4" 952 | marked "0.3.19" 953 | taffydb "2.7.2" 954 | 955 | esdoc-standard-plugin@^1.0.0: 956 | version "1.0.0" 957 | resolved "https://registry.yarnpkg.com/esdoc-standard-plugin/-/esdoc-standard-plugin-1.0.0.tgz#661201cac7ef868924902446fdac1527253c5d4d" 958 | integrity sha1-ZhIBysfvhokkkCRG/awVJyU8XU0= 959 | dependencies: 960 | esdoc-accessor-plugin "^1.0.0" 961 | esdoc-brand-plugin "^1.0.0" 962 | esdoc-coverage-plugin "^1.0.0" 963 | esdoc-external-ecmascript-plugin "^1.0.0" 964 | esdoc-integrate-manual-plugin "^1.0.0" 965 | esdoc-integrate-test-plugin "^1.0.0" 966 | esdoc-lint-plugin "^1.0.0" 967 | esdoc-publish-html-plugin "^1.0.0" 968 | esdoc-type-inference-plugin "^1.0.0" 969 | esdoc-undocumented-identifier-plugin "^1.0.0" 970 | esdoc-unexported-identifier-plugin "^1.0.0" 971 | 972 | esdoc-type-inference-plugin@^1.0.0: 973 | version "1.0.2" 974 | resolved "https://registry.yarnpkg.com/esdoc-type-inference-plugin/-/esdoc-type-inference-plugin-1.0.2.tgz#916e3f756de1d81d9c0dbe1c008e8dafd322cfaf" 975 | integrity sha512-tMIcEHNe1uhUGA7lT1UTWc9hs2dzthnTgmqXpmeUhurk7fL2tinvoH+IVvG/sLROzwOGZQS9zW/F9KWnpMzLIQ== 976 | 977 | esdoc-undocumented-identifier-plugin@^1.0.0: 978 | version "1.0.0" 979 | resolved "https://registry.yarnpkg.com/esdoc-undocumented-identifier-plugin/-/esdoc-undocumented-identifier-plugin-1.0.0.tgz#82e05d371c32d12871140f1d5c81ec99fd9cc2c8" 980 | integrity sha1-guBdNxwy0ShxFA8dXIHsmf2cwsg= 981 | 982 | esdoc-unexported-identifier-plugin@^1.0.0: 983 | version "1.0.0" 984 | resolved "https://registry.yarnpkg.com/esdoc-unexported-identifier-plugin/-/esdoc-unexported-identifier-plugin-1.0.0.tgz#1f9874c6a7c2bebf9ad397c3ceb75c9c69dabab1" 985 | integrity sha1-H5h0xqfCvr+a05fDzrdcnGnaurE= 986 | 987 | esdoc@^1.1.0: 988 | version "1.1.0" 989 | resolved "https://registry.yarnpkg.com/esdoc/-/esdoc-1.1.0.tgz#07d40ebf791764cd537929c29111e20a857624f3" 990 | integrity sha512-vsUcp52XJkOWg9m1vDYplGZN2iDzvmjDL5M/Mp8qkoDG3p2s0yIQCIjKR5wfPBaM3eV14a6zhQNYiNTCVzPnxA== 991 | dependencies: 992 | babel-generator "6.26.1" 993 | babel-traverse "6.26.0" 994 | babylon "6.18.0" 995 | cheerio "1.0.0-rc.2" 996 | color-logger "0.0.6" 997 | escape-html "1.0.3" 998 | fs-extra "5.0.0" 999 | ice-cap "0.0.4" 1000 | marked "0.3.19" 1001 | minimist "1.2.0" 1002 | taffydb "2.7.3" 1003 | 1004 | esprima@^3.1.3: 1005 | version "3.1.3" 1006 | resolved "https://registry.yarnpkg.com/esprima/-/esprima-3.1.3.tgz#fdca51cee6133895e3c88d535ce49dbff62a4633" 1007 | integrity sha1-/cpRzuYTOJXjyI1TXOSdv/YqRjM= 1008 | 1009 | estraverse@^4.2.0: 1010 | version "4.2.0" 1011 | resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-4.2.0.tgz#0dee3fed31fcd469618ce7342099fc1afa0bdb13" 1012 | integrity sha1-De4/7TH81GlhjOc0IJn8GvoL2xM= 1013 | 1014 | esutils@^2.0.2: 1015 | version "2.0.2" 1016 | resolved "https://registry.yarnpkg.com/esutils/-/esutils-2.0.2.tgz#0abf4f1caa5bcb1f7a9d8acc6dea4faaa04bac9b" 1017 | integrity sha1-Cr9PHKpbyx96nYrMbepPqqBLrJs= 1018 | 1019 | execa@^0.7.0: 1020 | version "0.7.0" 1021 | resolved "https://registry.yarnpkg.com/execa/-/execa-0.7.0.tgz#944becd34cc41ee32a63a9faf27ad5a65fc59777" 1022 | integrity sha1-lEvs00zEHuMqY6n68nrVpl/Fl3c= 1023 | dependencies: 1024 | cross-spawn "^5.0.1" 1025 | get-stream "^3.0.0" 1026 | is-stream "^1.1.0" 1027 | npm-run-path "^2.0.0" 1028 | p-finally "^1.0.0" 1029 | signal-exit "^3.0.0" 1030 | strip-eof "^1.0.0" 1031 | 1032 | extend@~3.0.2: 1033 | version "3.0.2" 1034 | resolved "https://registry.yarnpkg.com/extend/-/extend-3.0.2.tgz#f8b1136b4071fbd8eb140aff858b1019ec2915fa" 1035 | integrity sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g== 1036 | 1037 | extsprintf@1.3.0: 1038 | version "1.3.0" 1039 | resolved "https://registry.yarnpkg.com/extsprintf/-/extsprintf-1.3.0.tgz#96918440e3041a7a414f8c52e3c574eb3c3e1e05" 1040 | integrity sha1-lpGEQOMEGnpBT4xS48V06zw+HgU= 1041 | 1042 | extsprintf@^1.2.0: 1043 | version "1.4.0" 1044 | resolved "https://registry.yarnpkg.com/extsprintf/-/extsprintf-1.4.0.tgz#e2689f8f356fad62cca65a3a91c5df5f9551692f" 1045 | integrity sha1-4mifjzVvrWLMplo6kcXfX5VRaS8= 1046 | 1047 | fast-deep-equal@^2.0.1: 1048 | version "2.0.1" 1049 | resolved "https://registry.yarnpkg.com/fast-deep-equal/-/fast-deep-equal-2.0.1.tgz#7b05218ddf9667bf7f370bf7fdb2cb15fdd0aa49" 1050 | integrity sha1-ewUhjd+WZ79/Nwv3/bLLFf3Qqkk= 1051 | 1052 | fast-json-stable-stringify@^2.0.0: 1053 | version "2.0.0" 1054 | resolved "https://registry.yarnpkg.com/fast-json-stable-stringify/-/fast-json-stable-stringify-2.0.0.tgz#d5142c0caee6b1189f87d3a76111064f86c8bbf2" 1055 | integrity sha1-1RQsDK7msRifh9OnYREGT4bIu/I= 1056 | 1057 | fast-levenshtein@~2.0.4: 1058 | version "2.0.6" 1059 | resolved "https://registry.yarnpkg.com/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz#3d8a5c66883a16a30ca8643e851f19baa7797917" 1060 | integrity sha1-PYpcZog6FqMMqGQ+hR8Zuqd5eRc= 1061 | 1062 | fill-range@^7.0.1: 1063 | version "7.0.1" 1064 | resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-7.0.1.tgz#1919a6a7c75fe38b2c7c77e5198535da9acdda40" 1065 | integrity sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ== 1066 | dependencies: 1067 | to-regex-range "^5.0.1" 1068 | 1069 | find-up@5.0.0: 1070 | version "5.0.0" 1071 | resolved "https://registry.yarnpkg.com/find-up/-/find-up-5.0.0.tgz#4c92819ecb7083561e4f4a240a86be5198f536fc" 1072 | integrity sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng== 1073 | dependencies: 1074 | locate-path "^6.0.0" 1075 | path-exists "^4.0.0" 1076 | 1077 | find-up@^2.1.0: 1078 | version "2.1.0" 1079 | resolved "https://registry.yarnpkg.com/find-up/-/find-up-2.1.0.tgz#45d1b7e506c717ddd482775a2b77920a3c0c57a7" 1080 | integrity sha1-RdG35QbHF93UgndaK3eSCjwMV6c= 1081 | dependencies: 1082 | locate-path "^2.0.0" 1083 | 1084 | flat@^5.0.2: 1085 | version "5.0.2" 1086 | resolved "https://registry.yarnpkg.com/flat/-/flat-5.0.2.tgz#8ca6fe332069ffa9d324c327198c598259ceb241" 1087 | integrity sha512-b6suED+5/3rTpUBdG1gupIl8MPFCAMA0QXwmljLhvCUKcUvdE4gWky9zpuGCcXHOsz4J9wPGNWq6OKpmIzz3hQ== 1088 | 1089 | follow-redirects@^1.14.4: 1090 | version "1.14.4" 1091 | resolved "https://registry.yarnpkg.com/follow-redirects/-/follow-redirects-1.14.4.tgz#838fdf48a8bbdd79e52ee51fb1c94e3ed98b9379" 1092 | integrity sha512-zwGkiSXC1MUJG/qmeIFH2HBJx9u0V46QGUe3YR1fXG8bXQxq7fLj0RjLZQ5nubr9qNJUZrH+xUcwXEoXNpfS+g== 1093 | 1094 | forever-agent@~0.6.1: 1095 | version "0.6.1" 1096 | resolved "https://registry.yarnpkg.com/forever-agent/-/forever-agent-0.6.1.tgz#fbc71f0c41adeb37f96c577ad1ed42d8fdacca91" 1097 | integrity sha1-+8cfDEGt6zf5bFd60e1C2P2sypE= 1098 | 1099 | form-data@~2.3.2: 1100 | version "2.3.3" 1101 | resolved "https://registry.yarnpkg.com/form-data/-/form-data-2.3.3.tgz#dcce52c05f644f298c6a7ab936bd724ceffbf3a6" 1102 | integrity sha512-1lLKB2Mu3aGP1Q/2eCOx0fNbRMe7XdwktwOruhfqqd0rIJWwN4Dh+E3hrPSlDCXnSR7UtZ1N38rVXm+6+MEhJQ== 1103 | dependencies: 1104 | asynckit "^0.4.0" 1105 | combined-stream "^1.0.6" 1106 | mime-types "^2.1.12" 1107 | 1108 | fs-extra@1.0.0: 1109 | version "1.0.0" 1110 | resolved "https://registry.yarnpkg.com/fs-extra/-/fs-extra-1.0.0.tgz#cd3ce5f7e7cb6145883fcae3191e9877f8587950" 1111 | integrity sha1-zTzl9+fLYUWIP8rjGR6Yd/hYeVA= 1112 | dependencies: 1113 | graceful-fs "^4.1.2" 1114 | jsonfile "^2.1.0" 1115 | klaw "^1.0.0" 1116 | 1117 | fs-extra@5.0.0: 1118 | version "5.0.0" 1119 | resolved "https://registry.yarnpkg.com/fs-extra/-/fs-extra-5.0.0.tgz#414d0110cdd06705734d055652c5411260c31abd" 1120 | integrity sha512-66Pm4RYbjzdyeuqudYqhFiNBbCIuI9kgRqLPSHIlXHidW8NIQtVdkM1yeZ4lXwuhbTETv3EUGMNHAAw6hiundQ== 1121 | dependencies: 1122 | graceful-fs "^4.1.2" 1123 | jsonfile "^4.0.0" 1124 | universalify "^0.1.0" 1125 | 1126 | fs.realpath@^1.0.0: 1127 | version "1.0.0" 1128 | resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f" 1129 | integrity sha1-FQStJSMVjKpA20onh8sBQRmU6k8= 1130 | 1131 | fsevents@~2.3.2: 1132 | version "2.3.2" 1133 | resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-2.3.2.tgz#8a526f78b8fdf4623b709e0b975c52c24c02fd1a" 1134 | integrity sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA== 1135 | 1136 | function-bind@^1.1.1: 1137 | version "1.1.1" 1138 | resolved "https://registry.yarnpkg.com/function-bind/-/function-bind-1.1.1.tgz#a56899d3ea3c9bab874bb9773b7c5ede92f4895d" 1139 | integrity sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A== 1140 | 1141 | get-caller-file@^1.0.1: 1142 | version "1.0.3" 1143 | resolved "https://registry.yarnpkg.com/get-caller-file/-/get-caller-file-1.0.3.tgz#f978fa4c90d1dfe7ff2d6beda2a515e713bdcf4a" 1144 | integrity sha512-3t6rVToeoZfYSGd8YoLFR2DJkiQrIiUrGcjvFX2mDw3bn6k2OtwHN0TNCLbBO+w8qTvimhDkv+LSscbJY1vE6w== 1145 | 1146 | get-caller-file@^2.0.5: 1147 | version "2.0.5" 1148 | resolved "https://registry.yarnpkg.com/get-caller-file/-/get-caller-file-2.0.5.tgz#4f94412a82db32f36e3b0b9741f8a97feb031f7e" 1149 | integrity sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg== 1150 | 1151 | get-func-name@^2.0.0: 1152 | version "2.0.0" 1153 | resolved "https://registry.yarnpkg.com/get-func-name/-/get-func-name-2.0.0.tgz#ead774abee72e20409433a066366023dd6887a41" 1154 | integrity sha1-6td0q+5y4gQJQzoGY2YCPdaIekE= 1155 | 1156 | get-intrinsic@^1.0.2, get-intrinsic@^1.1.1: 1157 | version "1.1.1" 1158 | resolved "https://registry.yarnpkg.com/get-intrinsic/-/get-intrinsic-1.1.1.tgz#15f59f376f855c446963948f0d24cd3637b4abc6" 1159 | integrity sha512-kWZrnVM42QCiEA2Ig1bG8zjoIMOgxWwYCEeNdwY6Tv/cOSeGpcoX4pXHfKUxNKVoArnrEr2e9srnAxxGIraS9Q== 1160 | dependencies: 1161 | function-bind "^1.1.1" 1162 | has "^1.0.3" 1163 | has-symbols "^1.0.1" 1164 | 1165 | get-stdin@^4.0.1: 1166 | version "4.0.1" 1167 | resolved "https://registry.yarnpkg.com/get-stdin/-/get-stdin-4.0.1.tgz#b968c6b0a04384324902e8bf1a5df32579a450fe" 1168 | integrity sha1-uWjGsKBDhDJJAui/Gl3zJXmkUP4= 1169 | 1170 | get-stream@^3.0.0: 1171 | version "3.0.0" 1172 | resolved "https://registry.yarnpkg.com/get-stream/-/get-stream-3.0.0.tgz#8e943d1358dc37555054ecbe2edb05aa174ede14" 1173 | integrity sha1-jpQ9E1jcN1VQVOy+LtsFqhdO3hQ= 1174 | 1175 | getpass@^0.1.1: 1176 | version "0.1.7" 1177 | resolved "https://registry.yarnpkg.com/getpass/-/getpass-0.1.7.tgz#5eff8e3e684d569ae4cb2b1282604e8ba62149fa" 1178 | integrity sha1-Xv+OPmhNVprkyysSgmBOi6YhSfo= 1179 | dependencies: 1180 | assert-plus "^1.0.0" 1181 | 1182 | glob-parent@~5.1.2: 1183 | version "5.1.2" 1184 | resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-5.1.2.tgz#869832c58034fe68a4093c17dc15e8340d8401c4" 1185 | integrity sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow== 1186 | dependencies: 1187 | is-glob "^4.0.1" 1188 | 1189 | glob@7.1.7: 1190 | version "7.1.7" 1191 | resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.7.tgz#3b193e9233f01d42d0b3f78294bbeeb418f94a90" 1192 | integrity sha512-OvD9ENzPLbegENnYP5UUfJIirTg4+XwMWGaQfQTY0JenxNvvIKP3U3/tAQSPIu/lHxXYSZmpXlUHeqAIdKzBLQ== 1193 | dependencies: 1194 | fs.realpath "^1.0.0" 1195 | inflight "^1.0.4" 1196 | inherits "2" 1197 | minimatch "^3.0.4" 1198 | once "^1.3.0" 1199 | path-is-absolute "^1.0.0" 1200 | 1201 | globals@^9.0.0: 1202 | version "9.17.0" 1203 | resolved "https://registry.yarnpkg.com/globals/-/globals-9.17.0.tgz#0c0ca696d9b9bb694d2e5470bd37777caad50286" 1204 | integrity sha1-DAymltm5u2lNLlRwvTd3fKrVAoY= 1205 | 1206 | globals@^9.18.0: 1207 | version "9.18.0" 1208 | resolved "https://registry.yarnpkg.com/globals/-/globals-9.18.0.tgz#aa3896b3e69b487f17e31ed2143d69a8e30c2d8a" 1209 | integrity sha512-S0nG3CLEQiY/ILxqtztTWH/3iRRdyBLw6KMDxnKMchrtbj2OFmehVh0WUCfW3DUrIgx/qFrJPICrq4Z4sTR9UQ== 1210 | 1211 | graceful-fs@^4.1.2, graceful-fs@^4.1.6, graceful-fs@^4.1.9: 1212 | version "4.1.15" 1213 | resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.1.15.tgz#ffb703e1066e8a0eeaa4c8b80ba9253eeefbfb00" 1214 | integrity sha512-6uHUhOPEBgQ24HM+r6b/QwWfZq+yiFcipKFrOFiBEnWdy5sdzYoi+pJeQaPI5qOLRFqWmAXUPQNsielzdLoecA== 1215 | 1216 | growl@1.10.5: 1217 | version "1.10.5" 1218 | resolved "https://registry.yarnpkg.com/growl/-/growl-1.10.5.tgz#f2735dc2283674fa67478b10181059355c369e5e" 1219 | integrity sha512-qBr4OuELkhPenW6goKVXiv47US3clb3/IbuWF9KNKEijAy9oeHxU9IgzjvJhHkUzhaj7rOUD7+YGWqUjLp5oSA== 1220 | 1221 | har-schema@^2.0.0: 1222 | version "2.0.0" 1223 | resolved "https://registry.yarnpkg.com/har-schema/-/har-schema-2.0.0.tgz#a94c2224ebcac04782a0d9035521f24735b7ec92" 1224 | integrity sha1-qUwiJOvKwEeCoNkDVSHyRzW37JI= 1225 | 1226 | har-validator@~5.1.0: 1227 | version "5.1.3" 1228 | resolved "https://registry.yarnpkg.com/har-validator/-/har-validator-5.1.3.tgz#1ef89ebd3e4996557675eed9893110dc350fa080" 1229 | integrity sha512-sNvOCzEQNr/qrvJgc3UG/kD4QtlHycrzwS+6mfTrrSq97BvaYcPZZI1ZSqGSPR73Cxn4LKTD4PttRwfU7jWq5g== 1230 | dependencies: 1231 | ajv "^6.5.5" 1232 | har-schema "^2.0.0" 1233 | 1234 | has-ansi@^2.0.0: 1235 | version "2.0.0" 1236 | resolved "https://registry.yarnpkg.com/has-ansi/-/has-ansi-2.0.0.tgz#34f5049ce1ecdf2b0649af3ef24e45ed35416d91" 1237 | integrity sha1-NPUEnOHs3ysGSa8+8k5F7TVBbZE= 1238 | dependencies: 1239 | ansi-regex "^2.0.0" 1240 | 1241 | has-bigints@^1.0.1: 1242 | version "1.0.1" 1243 | resolved "https://registry.yarnpkg.com/has-bigints/-/has-bigints-1.0.1.tgz#64fe6acb020673e3b78db035a5af69aa9d07b113" 1244 | integrity sha512-LSBS2LjbNBTf6287JEbEzvJgftkF5qFkmCo9hDRpAzKhUOlJ+hx8dd4USs00SgsUNwc4617J9ki5YtEClM2ffA== 1245 | 1246 | has-flag@^3.0.0: 1247 | version "3.0.0" 1248 | resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-3.0.0.tgz#b5d454dc2199ae225699f3467e5a07f3b955bafd" 1249 | integrity sha1-tdRU3CGZriJWmfNGfloH87lVuv0= 1250 | 1251 | has-flag@^4.0.0: 1252 | version "4.0.0" 1253 | resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-4.0.0.tgz#944771fd9c81c81265c4d6941860da06bb59479b" 1254 | integrity sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ== 1255 | 1256 | has-symbols@^1.0.1, has-symbols@^1.0.2: 1257 | version "1.0.2" 1258 | resolved "https://registry.yarnpkg.com/has-symbols/-/has-symbols-1.0.2.tgz#165d3070c00309752a1236a479331e3ac56f1423" 1259 | integrity sha512-chXa79rL/UC2KlX17jo3vRGz0azaWEx5tGqZg5pO3NUyEJVB17dMruQlzCCOfUvElghKcm5194+BCRvi2Rv/Gw== 1260 | 1261 | has@^1.0.3: 1262 | version "1.0.3" 1263 | resolved "https://registry.yarnpkg.com/has/-/has-1.0.3.tgz#722d7cbfc1f6aa8241f16dd814e011e1f41e8796" 1264 | integrity sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw== 1265 | dependencies: 1266 | function-bind "^1.1.1" 1267 | 1268 | he@1.2.0: 1269 | version "1.2.0" 1270 | resolved "https://registry.yarnpkg.com/he/-/he-1.2.0.tgz#84ae65fa7eafb165fddb61566ae14baf05664f0f" 1271 | integrity sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw== 1272 | 1273 | home-or-tmp@^2.0.0: 1274 | version "2.0.0" 1275 | resolved "https://registry.yarnpkg.com/home-or-tmp/-/home-or-tmp-2.0.0.tgz#e36c3f2d2cae7d746a857e38d18d5f32a7882db8" 1276 | integrity sha1-42w/LSyufXRqhX440Y1fMqeILbg= 1277 | dependencies: 1278 | os-homedir "^1.0.0" 1279 | os-tmpdir "^1.0.1" 1280 | 1281 | hosted-git-info@^2.1.4: 1282 | version "2.8.9" 1283 | resolved "https://registry.yarnpkg.com/hosted-git-info/-/hosted-git-info-2.8.9.tgz#dffc0bf9a21c02209090f2aa69429e1414daf3f9" 1284 | integrity sha512-mxIDAb9Lsm6DoOJ7xH+5+X4y1LU/4Hi50L9C5sIswK3JzULS4bwk1FvjdBgvYR4bzT4tuUQiC15FE2f5HbLvYw== 1285 | 1286 | htmlparser2@^3.9.1: 1287 | version "3.10.1" 1288 | resolved "https://registry.yarnpkg.com/htmlparser2/-/htmlparser2-3.10.1.tgz#bd679dc3f59897b6a34bb10749c855bb53a9392f" 1289 | integrity sha512-IgieNijUMbkDovyoKObU1DUhm1iwNYE/fuifEoEHfd1oZKZDaONBSkal7Y01shxsM49R4XaMdGez3WnF9UfiCQ== 1290 | dependencies: 1291 | domelementtype "^1.3.1" 1292 | domhandler "^2.3.0" 1293 | domutils "^1.5.1" 1294 | entities "^1.1.1" 1295 | inherits "^2.0.1" 1296 | readable-stream "^3.1.1" 1297 | 1298 | htmlparser2@~3.8.1: 1299 | version "3.8.3" 1300 | resolved "https://registry.yarnpkg.com/htmlparser2/-/htmlparser2-3.8.3.tgz#996c28b191516a8be86501a7d79757e5c70c1068" 1301 | integrity sha1-mWwosZFRaovoZQGn15dX5ccMEGg= 1302 | dependencies: 1303 | domelementtype "1" 1304 | domhandler "2.3" 1305 | domutils "1.5" 1306 | entities "1.0" 1307 | readable-stream "1.1" 1308 | 1309 | http-signature@~1.2.0: 1310 | version "1.2.0" 1311 | resolved "https://registry.yarnpkg.com/http-signature/-/http-signature-1.2.0.tgz#9aecd925114772f3d95b65a60abb8f7c18fbace1" 1312 | integrity sha1-muzZJRFHcvPZW2WmCruPfBj7rOE= 1313 | dependencies: 1314 | assert-plus "^1.0.0" 1315 | jsprim "^1.2.2" 1316 | sshpk "^1.7.0" 1317 | 1318 | ice-cap@0.0.4: 1319 | version "0.0.4" 1320 | resolved "https://registry.yarnpkg.com/ice-cap/-/ice-cap-0.0.4.tgz#8a6d31ab4cac8d4b56de4fa946df3352561b6e18" 1321 | integrity sha1-im0xq0ysjUtW3k+pRt8zUlYbbhg= 1322 | dependencies: 1323 | cheerio "0.20.0" 1324 | color-logger "0.0.3" 1325 | 1326 | inflight@^1.0.4: 1327 | version "1.0.6" 1328 | resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9" 1329 | integrity sha1-Sb1jMdfQLQwJvJEKEHW6gWW1bfk= 1330 | dependencies: 1331 | once "^1.3.0" 1332 | wrappy "1" 1333 | 1334 | inherits@2: 1335 | version "2.0.4" 1336 | resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.4.tgz#0fa2c64f932917c3433a0ded55363aae37416b7c" 1337 | integrity sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ== 1338 | 1339 | inherits@^2.0.1, inherits@^2.0.3, inherits@~2.0.1: 1340 | version "2.0.3" 1341 | resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.3.tgz#633c2c83e3da42a502f52466022480f4208261de" 1342 | integrity sha1-Yzwsg+PaQqUC9SRmAiSA9CCCYd4= 1343 | 1344 | invariant@^2.2.0, invariant@^2.2.2: 1345 | version "2.2.2" 1346 | resolved "https://registry.yarnpkg.com/invariant/-/invariant-2.2.2.tgz#9e1f56ac0acdb6bf303306f338be3b204ae60360" 1347 | integrity sha1-nh9WrArNtr8wMwbzOL47IErmA2A= 1348 | dependencies: 1349 | loose-envify "^1.0.0" 1350 | 1351 | invert-kv@^1.0.0: 1352 | version "1.0.0" 1353 | resolved "https://registry.yarnpkg.com/invert-kv/-/invert-kv-1.0.0.tgz#104a8e4aaca6d3d8cd157a8ef8bfab2d7a3ffdb6" 1354 | integrity sha1-EEqOSqym09jNFXqO+L+rLXo//bY= 1355 | 1356 | is-arrayish@^0.2.1: 1357 | version "0.2.1" 1358 | resolved "https://registry.yarnpkg.com/is-arrayish/-/is-arrayish-0.2.1.tgz#77c99840527aa8ecb1a8ba697b80645a7a926a9d" 1359 | integrity sha1-d8mYQFJ6qOyxqLppe4BkWnqSap0= 1360 | 1361 | is-bigint@^1.0.1: 1362 | version "1.0.1" 1363 | resolved "https://registry.yarnpkg.com/is-bigint/-/is-bigint-1.0.1.tgz#6923051dfcbc764278540b9ce0e6b3213aa5ebc2" 1364 | integrity sha512-J0ELF4yHFxHy0cmSxZuheDOz2luOdVvqjwmEcj8H/L1JHeuEDSDbeRP+Dk9kFVk5RTFzbucJ2Kb9F7ixY2QaCg== 1365 | 1366 | is-binary-path@~2.1.0: 1367 | version "2.1.0" 1368 | resolved "https://registry.yarnpkg.com/is-binary-path/-/is-binary-path-2.1.0.tgz#ea1f7f3b80f064236e83470f86c09c254fb45b09" 1369 | integrity sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw== 1370 | dependencies: 1371 | binary-extensions "^2.0.0" 1372 | 1373 | is-boolean-object@^1.1.0: 1374 | version "1.1.0" 1375 | resolved "https://registry.yarnpkg.com/is-boolean-object/-/is-boolean-object-1.1.0.tgz#e2aaad3a3a8fca34c28f6eee135b156ed2587ff0" 1376 | integrity sha512-a7Uprx8UtD+HWdyYwnD1+ExtTgqQtD2k/1yJgtXP6wnMm8byhkoTZRl+95LLThpzNZJ5aEvi46cdH+ayMFRwmA== 1377 | dependencies: 1378 | call-bind "^1.0.0" 1379 | 1380 | is-callable@^1.1.4, is-callable@^1.2.3: 1381 | version "1.2.3" 1382 | resolved "https://registry.yarnpkg.com/is-callable/-/is-callable-1.2.3.tgz#8b1e0500b73a1d76c70487636f368e519de8db8e" 1383 | integrity sha512-J1DcMe8UYTBSrKezuIUTUwjXsho29693unXM2YhJUTR2txK/eG47bvNa/wipPFmZFgr/N6f1GA66dv0mEyTIyQ== 1384 | 1385 | is-core-module@^2.2.0: 1386 | version "2.3.0" 1387 | resolved "https://registry.yarnpkg.com/is-core-module/-/is-core-module-2.3.0.tgz#d341652e3408bca69c4671b79a0954a3d349f887" 1388 | integrity sha512-xSphU2KG9867tsYdLD4RWQ1VqdFl4HTO9Thf3I/3dLEfr0dbPTWKsuCKrgqMljg4nPE+Gq0VCnzT3gr0CyBmsw== 1389 | dependencies: 1390 | has "^1.0.3" 1391 | 1392 | is-date-object@^1.0.1: 1393 | version "1.0.2" 1394 | resolved "https://registry.yarnpkg.com/is-date-object/-/is-date-object-1.0.2.tgz#bda736f2cd8fd06d32844e7743bfa7494c3bfd7e" 1395 | integrity sha512-USlDT524woQ08aoZFzh3/Z6ch9Y/EWXEHQ/AaRN0SkKq4t2Jw2R2339tSXmwuVoY7LLlBCbOIlx2myP/L5zk0g== 1396 | 1397 | is-extglob@^2.1.1: 1398 | version "2.1.1" 1399 | resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-2.1.1.tgz#a88c02535791f02ed37c76a1b9ea9773c833f8c2" 1400 | integrity sha1-qIwCU1eR8C7TfHahueqXc8gz+MI= 1401 | 1402 | is-finite@^1.0.0: 1403 | version "1.0.2" 1404 | resolved "https://registry.yarnpkg.com/is-finite/-/is-finite-1.0.2.tgz#cc6677695602be550ef11e8b4aa6305342b6d0aa" 1405 | integrity sha1-zGZ3aVYCvlUO8R6LSqYwU0K20Ko= 1406 | dependencies: 1407 | number-is-nan "^1.0.0" 1408 | 1409 | is-fullwidth-code-point@^1.0.0: 1410 | version "1.0.0" 1411 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz#ef9e31386f031a7f0d643af82fde50c457ef00cb" 1412 | integrity sha1-754xOG8DGn8NZDr4L95QxFfvAMs= 1413 | dependencies: 1414 | number-is-nan "^1.0.0" 1415 | 1416 | is-fullwidth-code-point@^2.0.0: 1417 | version "2.0.0" 1418 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz#a3b30a5c4f199183167aaab93beefae3ddfb654f" 1419 | integrity sha1-o7MKXE8ZkYMWeqq5O+764937ZU8= 1420 | 1421 | is-fullwidth-code-point@^3.0.0: 1422 | version "3.0.0" 1423 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz#f116f8064fe90b3f7844a38997c0b75051269f1d" 1424 | integrity sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg== 1425 | 1426 | is-glob@^4.0.1, is-glob@~4.0.1: 1427 | version "4.0.1" 1428 | resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-4.0.1.tgz#7567dbe9f2f5e2467bc77ab83c4a29482407a5dc" 1429 | integrity sha512-5G0tKtBTFImOqDnLB2hG6Bp2qcKEFduo4tZu9MT/H6NQv/ghhy30o55ufafxJ/LdH79LLs2Kfrn85TLKyA7BUg== 1430 | dependencies: 1431 | is-extglob "^2.1.1" 1432 | 1433 | is-negative-zero@^2.0.1: 1434 | version "2.0.1" 1435 | resolved "https://registry.yarnpkg.com/is-negative-zero/-/is-negative-zero-2.0.1.tgz#3de746c18dda2319241a53675908d8f766f11c24" 1436 | integrity sha512-2z6JzQvZRa9A2Y7xC6dQQm4FSTSTNWjKIYYTt4246eMTJmIo0Q+ZyOsU66X8lxK1AbB92dFeglPLrhwpeRKO6w== 1437 | 1438 | is-number-object@^1.0.4: 1439 | version "1.0.4" 1440 | resolved "https://registry.yarnpkg.com/is-number-object/-/is-number-object-1.0.4.tgz#36ac95e741cf18b283fc1ddf5e83da798e3ec197" 1441 | integrity sha512-zohwelOAur+5uXtk8O3GPQ1eAcu4ZX3UwxQhUlfFFMNpUd83gXgjbhJh6HmB6LUNV/ieOLQuDwJO3dWJosUeMw== 1442 | 1443 | is-number@^7.0.0: 1444 | version "7.0.0" 1445 | resolved "https://registry.yarnpkg.com/is-number/-/is-number-7.0.0.tgz#7535345b896734d5f80c4d06c50955527a14f12b" 1446 | integrity sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng== 1447 | 1448 | is-plain-obj@^2.1.0: 1449 | version "2.1.0" 1450 | resolved "https://registry.yarnpkg.com/is-plain-obj/-/is-plain-obj-2.1.0.tgz#45e42e37fccf1f40da8e5f76ee21515840c09287" 1451 | integrity sha512-YWnfyRwxL/+SsrWYfOpUtz5b3YD+nyfkHvjbcanzk8zgyO4ASD67uVMRt8k5bM4lLMDnXfriRhOpemw+NfT1eA== 1452 | 1453 | is-regex@^1.1.2: 1454 | version "1.1.2" 1455 | resolved "https://registry.yarnpkg.com/is-regex/-/is-regex-1.1.2.tgz#81c8ebde4db142f2cf1c53fc86d6a45788266251" 1456 | integrity sha512-axvdhb5pdhEVThqJzYXwMlVuZwC+FF2DpcOhTS+y/8jVq4trxyPgfcwIxIKiyeuLlSQYKkmUaPQJ8ZE4yNKXDg== 1457 | dependencies: 1458 | call-bind "^1.0.2" 1459 | has-symbols "^1.0.1" 1460 | 1461 | is-stream@^1.1.0: 1462 | version "1.1.0" 1463 | resolved "https://registry.yarnpkg.com/is-stream/-/is-stream-1.1.0.tgz#12d4a3dd4e68e0b79ceb8dbc84173ae80d91ca44" 1464 | integrity sha1-EtSj3U5o4Lec6428hBc66A2RykQ= 1465 | 1466 | is-string@^1.0.5: 1467 | version "1.0.5" 1468 | resolved "https://registry.yarnpkg.com/is-string/-/is-string-1.0.5.tgz#40493ed198ef3ff477b8c7f92f644ec82a5cd3a6" 1469 | integrity sha512-buY6VNRjhQMiF1qWDouloZlQbRhDPCebwxSjxMjxgemYT46YMd2NR0/H+fBhEfWX4A/w9TBJ+ol+okqJKFE6vQ== 1470 | 1471 | is-symbol@^1.0.2, is-symbol@^1.0.3: 1472 | version "1.0.3" 1473 | resolved "https://registry.yarnpkg.com/is-symbol/-/is-symbol-1.0.3.tgz#38e1014b9e6329be0de9d24a414fd7441ec61937" 1474 | integrity sha512-OwijhaRSgqvhm/0ZdAcXNZt9lYdKFpcRDT5ULUuYXPoT794UNOdU+gpT6Rzo7b4V2HUl/op6GqY894AZwv9faQ== 1475 | dependencies: 1476 | has-symbols "^1.0.1" 1477 | 1478 | is-typedarray@~1.0.0: 1479 | version "1.0.0" 1480 | resolved "https://registry.yarnpkg.com/is-typedarray/-/is-typedarray-1.0.0.tgz#e479c80858df0c1b11ddda6940f96011fcda4a9a" 1481 | integrity sha1-5HnICFjfDBsR3dppQPlgEfzaSpo= 1482 | 1483 | is-unicode-supported@^0.1.0: 1484 | version "0.1.0" 1485 | resolved "https://registry.yarnpkg.com/is-unicode-supported/-/is-unicode-supported-0.1.0.tgz#3f26c76a809593b52bfa2ecb5710ed2779b522a7" 1486 | integrity sha512-knxG2q4UC3u8stRGyAVJCOdxFmv5DZiRcdlIaAQXAbSfJya+OhopNotLQrstBhququ4ZpuKbDc/8S6mgXgPFPw== 1487 | 1488 | isarray@0.0.1: 1489 | version "0.0.1" 1490 | resolved "https://registry.yarnpkg.com/isarray/-/isarray-0.0.1.tgz#8a18acfca9a8f4177e09abfc6038939b05d1eedf" 1491 | integrity sha1-ihis/Kmo9Bd+Cav8YDiTmwXR7t8= 1492 | 1493 | isexe@^2.0.0: 1494 | version "2.0.0" 1495 | resolved "https://registry.yarnpkg.com/isexe/-/isexe-2.0.0.tgz#e8fbf374dc556ff8947a10dcb0572d633f2cfa10" 1496 | integrity sha1-6PvzdNxVb/iUehDcsFctYz8s+hA= 1497 | 1498 | isstream@~0.1.2: 1499 | version "0.1.2" 1500 | resolved "https://registry.yarnpkg.com/isstream/-/isstream-0.1.2.tgz#47e63f7af55afa6f92e1500e690eb8b8529c099a" 1501 | integrity sha1-R+Y/evVa+m+S4VAOaQ64uFKcCZo= 1502 | 1503 | joi@^17.4.2: 1504 | version "17.4.2" 1505 | resolved "https://registry.yarnpkg.com/joi/-/joi-17.4.2.tgz#02f4eb5cf88e515e614830239379dcbbe28ce7f7" 1506 | integrity sha512-Lm56PP+n0+Z2A2rfRvsfWVDXGEWjXxatPopkQ8qQ5mxCEhwHG+Ettgg5o98FFaxilOxozoa14cFhrE/hOzh/Nw== 1507 | dependencies: 1508 | "@hapi/hoek" "^9.0.0" 1509 | "@hapi/topo" "^5.0.0" 1510 | "@sideway/address" "^4.1.0" 1511 | "@sideway/formula" "^3.0.0" 1512 | "@sideway/pinpoint" "^2.0.0" 1513 | 1514 | js-tokens@^3.0.0: 1515 | version "3.0.1" 1516 | resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-3.0.1.tgz#08e9f132484a2c45a30907e9dc4d5567b7f114d7" 1517 | integrity sha1-COnxMkhKLEWjCQfp3E1VZ7fxFNc= 1518 | 1519 | js-tokens@^3.0.2: 1520 | version "3.0.2" 1521 | resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-3.0.2.tgz#9866df395102130e38f7f996bceb65443209c25b" 1522 | integrity sha1-mGbfOVECEw449/mWvOtlRDIJwls= 1523 | 1524 | js-yaml@4.1.0: 1525 | version "4.1.0" 1526 | resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-4.1.0.tgz#c1fb65f8f5017901cdd2c951864ba18458a10602" 1527 | integrity sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA== 1528 | dependencies: 1529 | argparse "^2.0.1" 1530 | 1531 | jsbn@~0.1.0: 1532 | version "0.1.1" 1533 | resolved "https://registry.yarnpkg.com/jsbn/-/jsbn-0.1.1.tgz#a5e654c2e5a2deb5f201d96cefbca80c0ef2f513" 1534 | integrity sha1-peZUwuWi3rXyAdls77yoDA7y9RM= 1535 | 1536 | jsdom@^7.0.2: 1537 | version "7.2.2" 1538 | resolved "https://registry.yarnpkg.com/jsdom/-/jsdom-7.2.2.tgz#40b402770c2bda23469096bee91ab675e3b1fc6e" 1539 | integrity sha1-QLQCdwwr2iNGkJa+6Rq2deOx/G4= 1540 | dependencies: 1541 | abab "^1.0.0" 1542 | acorn "^2.4.0" 1543 | acorn-globals "^1.0.4" 1544 | cssom ">= 0.3.0 < 0.4.0" 1545 | cssstyle ">= 0.2.29 < 0.3.0" 1546 | escodegen "^1.6.1" 1547 | nwmatcher ">= 1.3.7 < 2.0.0" 1548 | parse5 "^1.5.1" 1549 | request "^2.55.0" 1550 | sax "^1.1.4" 1551 | symbol-tree ">= 3.1.0 < 4.0.0" 1552 | tough-cookie "^2.2.0" 1553 | webidl-conversions "^2.0.0" 1554 | whatwg-url-compat "~0.6.5" 1555 | xml-name-validator ">= 2.0.1 < 3.0.0" 1556 | 1557 | jsesc@^1.3.0: 1558 | version "1.3.0" 1559 | resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-1.3.0.tgz#46c3fec8c1892b12b0833db9bc7622176dbab34b" 1560 | integrity sha1-RsP+yMGJKxKwgz25vHYiF226s0s= 1561 | 1562 | jsome@^2.3.26: 1563 | version "2.5.0" 1564 | resolved "https://registry.yarnpkg.com/jsome/-/jsome-2.5.0.tgz#5e417eef4341ffeb83ee8bfa9265b36d56fe49ed" 1565 | integrity sha1-XkF+70NB/+uD7ov6kmWzbVb+Se0= 1566 | dependencies: 1567 | chalk "^2.3.0" 1568 | json-stringify-safe "^5.0.1" 1569 | yargs "^11.0.0" 1570 | 1571 | json-parse-better-errors@^1.0.1: 1572 | version "1.0.2" 1573 | resolved "https://registry.yarnpkg.com/json-parse-better-errors/-/json-parse-better-errors-1.0.2.tgz#bb867cfb3450e69107c131d1c514bab3dc8bcaa9" 1574 | integrity sha512-mrqyZKfX5EhL7hvqcV6WG1yYjnjeuYDzDhhcAAUrq8Po85NBQBJP+ZDUT75qZQ98IkUoBqdkExkukOU7Ts2wrw== 1575 | 1576 | json-schema-traverse@^0.4.1: 1577 | version "0.4.1" 1578 | resolved "https://registry.yarnpkg.com/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz#69f6a87d9513ab8bb8fe63bdb0979c448e684660" 1579 | integrity sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg== 1580 | 1581 | json-schema@0.2.3: 1582 | version "0.2.3" 1583 | resolved "https://registry.yarnpkg.com/json-schema/-/json-schema-0.2.3.tgz#b480c892e59a2f05954ce727bd3f2a4e882f9e13" 1584 | integrity sha1-tIDIkuWaLwWVTOcnvT8qTogvnhM= 1585 | 1586 | json-stringify-safe@^5.0.1, json-stringify-safe@~5.0.1: 1587 | version "5.0.1" 1588 | resolved "https://registry.yarnpkg.com/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz#1296a2d58fd45f19a0f6ce01d65701e2c735b6eb" 1589 | integrity sha1-Epai1Y/UXxmg9s4B1lcB4sc1tus= 1590 | 1591 | json5@^0.5.1: 1592 | version "0.5.1" 1593 | resolved "https://registry.yarnpkg.com/json5/-/json5-0.5.1.tgz#1eade7acc012034ad84e2396767ead9fa5495821" 1594 | integrity sha1-Hq3nrMASA0rYTiOWdn6tn6VJWCE= 1595 | 1596 | jsonfile@^2.1.0: 1597 | version "2.4.0" 1598 | resolved "https://registry.yarnpkg.com/jsonfile/-/jsonfile-2.4.0.tgz#3736a2b428b87bbda0cc83b53fa3d633a35c2ae8" 1599 | integrity sha1-NzaitCi4e72gzIO1P6PWM6NcKug= 1600 | optionalDependencies: 1601 | graceful-fs "^4.1.6" 1602 | 1603 | jsonfile@^4.0.0: 1604 | version "4.0.0" 1605 | resolved "https://registry.yarnpkg.com/jsonfile/-/jsonfile-4.0.0.tgz#8771aae0799b64076b76640fca058f9c10e33ecb" 1606 | integrity sha1-h3Gq4HmbZAdrdmQPygWPnBDjPss= 1607 | optionalDependencies: 1608 | graceful-fs "^4.1.6" 1609 | 1610 | jsprim@^1.2.2: 1611 | version "1.4.1" 1612 | resolved "https://registry.yarnpkg.com/jsprim/-/jsprim-1.4.1.tgz#313e66bc1e5cc06e438bc1b7499c2e5c56acb6a2" 1613 | integrity sha1-MT5mvB5cwG5Di8G3SZwuXFastqI= 1614 | dependencies: 1615 | assert-plus "1.0.0" 1616 | extsprintf "1.3.0" 1617 | json-schema "0.2.3" 1618 | verror "1.10.0" 1619 | 1620 | klaw@^1.0.0: 1621 | version "1.3.1" 1622 | resolved "https://registry.yarnpkg.com/klaw/-/klaw-1.3.1.tgz#4088433b46b3b1ba259d78785d8e96f73ba02439" 1623 | integrity sha1-QIhDO0azsbolnXh4XY6W9zugJDk= 1624 | optionalDependencies: 1625 | graceful-fs "^4.1.9" 1626 | 1627 | lcid@^1.0.0: 1628 | version "1.0.0" 1629 | resolved "https://registry.yarnpkg.com/lcid/-/lcid-1.0.0.tgz#308accafa0bc483a3867b4b6f2b9506251d1b835" 1630 | integrity sha1-MIrMr6C8SDo4Z7S28rlQYlHRuDU= 1631 | dependencies: 1632 | invert-kv "^1.0.0" 1633 | 1634 | levn@~0.3.0: 1635 | version "0.3.0" 1636 | resolved "https://registry.yarnpkg.com/levn/-/levn-0.3.0.tgz#3b09924edf9f083c0490fdd4c0bc4421e04764ee" 1637 | integrity sha1-OwmSTt+fCDwEkP3UwLxEIeBHZO4= 1638 | dependencies: 1639 | prelude-ls "~1.1.2" 1640 | type-check "~0.3.2" 1641 | 1642 | load-json-file@^4.0.0: 1643 | version "4.0.0" 1644 | resolved "https://registry.yarnpkg.com/load-json-file/-/load-json-file-4.0.0.tgz#2f5f45ab91e33216234fd53adab668eb4ec0993b" 1645 | integrity sha1-L19Fq5HjMhYjT9U62rZo607AmTs= 1646 | dependencies: 1647 | graceful-fs "^4.1.2" 1648 | parse-json "^4.0.0" 1649 | pify "^3.0.0" 1650 | strip-bom "^3.0.0" 1651 | 1652 | locate-path@^2.0.0: 1653 | version "2.0.0" 1654 | resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-2.0.0.tgz#2b568b265eec944c6d9c0de9c3dbbbca0354cd8e" 1655 | integrity sha1-K1aLJl7slExtnA3pw9u7ygNUzY4= 1656 | dependencies: 1657 | p-locate "^2.0.0" 1658 | path-exists "^3.0.0" 1659 | 1660 | locate-path@^6.0.0: 1661 | version "6.0.0" 1662 | resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-6.0.0.tgz#55321eb309febbc59c4801d931a72452a681d286" 1663 | integrity sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw== 1664 | dependencies: 1665 | p-locate "^5.0.0" 1666 | 1667 | lodash.assignin@^4.0.9: 1668 | version "4.2.0" 1669 | resolved "https://registry.yarnpkg.com/lodash.assignin/-/lodash.assignin-4.2.0.tgz#ba8df5fb841eb0a3e8044232b0e263a8dc6a28a2" 1670 | integrity sha1-uo31+4QesKPoBEIysOJjqNxqKKI= 1671 | 1672 | lodash.bind@^4.1.4: 1673 | version "4.2.1" 1674 | resolved "https://registry.yarnpkg.com/lodash.bind/-/lodash.bind-4.2.1.tgz#7ae3017e939622ac31b7d7d7dcb1b34db1690d35" 1675 | integrity sha1-euMBfpOWIqwxt9fX3LGzTbFpDTU= 1676 | 1677 | lodash.defaults@^4.0.1: 1678 | version "4.2.0" 1679 | resolved "https://registry.yarnpkg.com/lodash.defaults/-/lodash.defaults-4.2.0.tgz#d09178716ffea4dde9e5fb7b37f6f0802274580c" 1680 | integrity sha1-0JF4cW/+pN3p5ft7N/bwgCJ0WAw= 1681 | 1682 | lodash.filter@^4.4.0: 1683 | version "4.6.0" 1684 | resolved "https://registry.yarnpkg.com/lodash.filter/-/lodash.filter-4.6.0.tgz#668b1d4981603ae1cc5a6fa760143e480b4c4ace" 1685 | integrity sha1-ZosdSYFgOuHMWm+nYBQ+SAtMSs4= 1686 | 1687 | lodash.flatten@^4.2.0: 1688 | version "4.4.0" 1689 | resolved "https://registry.yarnpkg.com/lodash.flatten/-/lodash.flatten-4.4.0.tgz#f31c22225a9632d2bbf8e4addbef240aa765a61f" 1690 | integrity sha1-8xwiIlqWMtK7+OSt2+8kCqdlph8= 1691 | 1692 | lodash.foreach@^4.3.0: 1693 | version "4.5.0" 1694 | resolved "https://registry.yarnpkg.com/lodash.foreach/-/lodash.foreach-4.5.0.tgz#1a6a35eace401280c7f06dddec35165ab27e3e53" 1695 | integrity sha1-Gmo16s5AEoDH8G3d7DUWWrJ+PlM= 1696 | 1697 | lodash.map@^4.4.0: 1698 | version "4.6.0" 1699 | resolved "https://registry.yarnpkg.com/lodash.map/-/lodash.map-4.6.0.tgz#771ec7839e3473d9c4cde28b19394c3562f4f6d3" 1700 | integrity sha1-dx7Hg540c9nEzeKLGTlMNWL09tM= 1701 | 1702 | lodash.merge@^4.4.0: 1703 | version "4.6.2" 1704 | resolved "https://registry.yarnpkg.com/lodash.merge/-/lodash.merge-4.6.2.tgz#558aa53b43b661e1925a0afdfa36a9a1085fe57a" 1705 | integrity sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ== 1706 | 1707 | lodash.pick@^4.2.1: 1708 | version "4.4.0" 1709 | resolved "https://registry.yarnpkg.com/lodash.pick/-/lodash.pick-4.4.0.tgz#52f05610fff9ded422611441ed1fc123a03001b3" 1710 | integrity sha1-UvBWEP/53tQiYRRB7R/BI6AwAbM= 1711 | 1712 | lodash.reduce@^4.4.0: 1713 | version "4.6.0" 1714 | resolved "https://registry.yarnpkg.com/lodash.reduce/-/lodash.reduce-4.6.0.tgz#f1ab6b839299ad48f784abbf476596f03b914d3b" 1715 | integrity sha1-8atrg5KZrUj3hKu/R2WW8DuRTTs= 1716 | 1717 | lodash.reject@^4.4.0: 1718 | version "4.6.0" 1719 | resolved "https://registry.yarnpkg.com/lodash.reject/-/lodash.reject-4.6.0.tgz#80d6492dc1470864bbf583533b651f42a9f52415" 1720 | integrity sha1-gNZJLcFHCGS79YNTO2UfQqn1JBU= 1721 | 1722 | lodash.some@^4.4.0: 1723 | version "4.6.0" 1724 | resolved "https://registry.yarnpkg.com/lodash.some/-/lodash.some-4.6.0.tgz#1bb9f314ef6b8baded13b549169b2a945eb68e4d" 1725 | integrity sha1-G7nzFO9ri63tE7VJFpsqlF62jk0= 1726 | 1727 | lodash@^4.1.0, lodash@^4.15.0, lodash@^4.17.4, lodash@^4.2.0: 1728 | version "4.17.14" 1729 | resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.14.tgz#9ce487ae66c96254fe20b599f21b6816028078ba" 1730 | integrity sha512-mmKYbW3GLuJeX+iGP+Y7Gp1AiGHGbXHCOh/jZmrawMmsE7MS4znI3RL2FsjbqOyMayHInjOeykW7PEajUk1/xw== 1731 | 1732 | log-symbols@4.1.0: 1733 | version "4.1.0" 1734 | resolved "https://registry.yarnpkg.com/log-symbols/-/log-symbols-4.1.0.tgz#3fbdbb95b4683ac9fc785111e792e558d4abd503" 1735 | integrity sha512-8XPvpAA8uyhfteu8pIvQxpJZ7SYYdpUivZpGy6sFsBuKRY/7rQGavedeB8aK+Zkyq6upMFVL/9AW6vOYzfRyLg== 1736 | dependencies: 1737 | chalk "^4.1.0" 1738 | is-unicode-supported "^0.1.0" 1739 | 1740 | loose-envify@^1.0.0: 1741 | version "1.3.1" 1742 | resolved "https://registry.yarnpkg.com/loose-envify/-/loose-envify-1.3.1.tgz#d1a8ad33fa9ce0e713d65fdd0ac8b748d478c848" 1743 | integrity sha1-0aitM/qc4OcT1l/dCsi3SNR4yEg= 1744 | dependencies: 1745 | js-tokens "^3.0.0" 1746 | 1747 | lru-cache@^4.0.1: 1748 | version "4.1.5" 1749 | resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-4.1.5.tgz#8bbe50ea85bed59bc9e33dcab8235ee9bcf443cd" 1750 | integrity sha512-sWZlbEP2OsHNkXrMl5GYk/jKk70MBng6UU4YI/qGDYbgf6YbP4EvmqISbXCoJiRKs+1bSpFHVgQxvJ17F2li5g== 1751 | dependencies: 1752 | pseudomap "^1.0.2" 1753 | yallist "^2.1.2" 1754 | 1755 | marked@0.3.19: 1756 | version "0.3.19" 1757 | resolved "https://registry.yarnpkg.com/marked/-/marked-0.3.19.tgz#5d47f709c4c9fc3c216b6d46127280f40b39d790" 1758 | integrity sha512-ea2eGWOqNxPcXv8dyERdSr/6FmzvWwzjMxpfGB/sbMccXoct+xY+YukPD+QTUZwyvK7BZwcr4m21WBOW41pAkg== 1759 | 1760 | mem@^1.1.0: 1761 | version "1.1.0" 1762 | resolved "https://registry.yarnpkg.com/mem/-/mem-1.1.0.tgz#5edd52b485ca1d900fe64895505399a0dfa45f76" 1763 | integrity sha1-Xt1StIXKHZAP5kiVUFOZoN+kX3Y= 1764 | dependencies: 1765 | mimic-fn "^1.0.0" 1766 | 1767 | memorystream@^0.3.1: 1768 | version "0.3.1" 1769 | resolved "https://registry.yarnpkg.com/memorystream/-/memorystream-0.3.1.tgz#86d7090b30ce455d63fbae12dda51a47ddcaf9b2" 1770 | integrity sha1-htcJCzDORV1j+64S3aUaR93K+bI= 1771 | 1772 | mime-db@1.40.0: 1773 | version "1.40.0" 1774 | resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.40.0.tgz#a65057e998db090f732a68f6c276d387d4126c32" 1775 | integrity sha512-jYdeOMPy9vnxEqFRRo6ZvTZ8d9oPb+k18PKoYNYUe2stVEBPPwsln/qWzdbmaIvnhZ9v2P+CuecK+fpUfsV2mA== 1776 | 1777 | mime-types@^2.1.12, mime-types@~2.1.19: 1778 | version "2.1.24" 1779 | resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.24.tgz#b6f8d0b3e951efb77dedeca194cff6d16f676f81" 1780 | integrity sha512-WaFHS3MCl5fapm3oLxU4eYDw77IQM2ACcxQ9RIxfaC3ooc6PFuBMGZZsYpvoXS5D5QTWPieo1jjLdAm3TBP3cQ== 1781 | dependencies: 1782 | mime-db "1.40.0" 1783 | 1784 | mimic-fn@^1.0.0: 1785 | version "1.2.0" 1786 | resolved "https://registry.yarnpkg.com/mimic-fn/-/mimic-fn-1.2.0.tgz#820c86a39334640e99516928bd03fca88057d022" 1787 | integrity sha512-jf84uxzwiuiIVKiOLpfYk7N46TSy8ubTonmneY9vrpHNAnp0QBt2BxWV9dO3/j+BoVAb+a5G6YDPW3M5HOdMWQ== 1788 | 1789 | minami@^1.2.3: 1790 | version "1.2.3" 1791 | resolved "https://registry.yarnpkg.com/minami/-/minami-1.2.3.tgz#99b6dcdfb2f0a54da1c9c8f7aa3a327787aaf9f8" 1792 | integrity sha1-mbbc37LwpU2hycj3qjoyd4eq+fg= 1793 | 1794 | minimatch@3.0.4, minimatch@^3.0.4: 1795 | version "3.0.4" 1796 | resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.0.4.tgz#5166e286457f03306064be5497e8dbb0c3d32083" 1797 | integrity sha512-yJHVQEhyqPLUTgt9B83PXu6W3rx4MvvHvSUvToogpwoGDOUQ+yDrR0HRot+yOCdCO7u4hX3pWft6kWBBcqh0UA== 1798 | dependencies: 1799 | brace-expansion "^1.1.7" 1800 | 1801 | minimist@0.0.8: 1802 | version "0.0.8" 1803 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-0.0.8.tgz#857fcabfc3397d2625b8228262e86aa7a011b05d" 1804 | integrity sha1-hX/Kv8M5fSYluCKCYuhqp6ARsF0= 1805 | 1806 | minimist@1.2.0, minimist@^1.1.0: 1807 | version "1.2.0" 1808 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.0.tgz#a35008b20f41383eec1fb914f4cd5df79a264284" 1809 | integrity sha1-o1AIsg9BOD7sH7kU9M1d95omQoQ= 1810 | 1811 | mkdirp@^0.5.1: 1812 | version "0.5.1" 1813 | resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.5.1.tgz#30057438eac6cf7f8c4767f38648d6697d75c903" 1814 | integrity sha1-MAV0OOrGz3+MR2fzhkjWaX11yQM= 1815 | dependencies: 1816 | minimist "0.0.8" 1817 | 1818 | mocha@^9.1.2: 1819 | version "9.1.2" 1820 | resolved "https://registry.yarnpkg.com/mocha/-/mocha-9.1.2.tgz#93f53175b0f0dc4014bd2d612218fccfcf3534d3" 1821 | integrity sha512-ta3LtJ+63RIBP03VBjMGtSqbe6cWXRejF9SyM9Zyli1CKZJZ+vfCTj3oW24V7wAphMJdpOFLoMI3hjJ1LWbs0w== 1822 | dependencies: 1823 | "@ungap/promise-all-settled" "1.1.2" 1824 | ansi-colors "4.1.1" 1825 | browser-stdout "1.3.1" 1826 | chokidar "3.5.2" 1827 | debug "4.3.2" 1828 | diff "5.0.0" 1829 | escape-string-regexp "4.0.0" 1830 | find-up "5.0.0" 1831 | glob "7.1.7" 1832 | growl "1.10.5" 1833 | he "1.2.0" 1834 | js-yaml "4.1.0" 1835 | log-symbols "4.1.0" 1836 | minimatch "3.0.4" 1837 | ms "2.1.3" 1838 | nanoid "3.1.25" 1839 | serialize-javascript "6.0.0" 1840 | strip-json-comments "3.1.1" 1841 | supports-color "8.1.1" 1842 | which "2.0.2" 1843 | workerpool "6.1.5" 1844 | yargs "16.2.0" 1845 | yargs-parser "20.2.4" 1846 | yargs-unparser "2.0.0" 1847 | 1848 | ms@2.0.0: 1849 | version "2.0.0" 1850 | resolved "https://registry.yarnpkg.com/ms/-/ms-2.0.0.tgz#5608aeadfc00be6c2901df5f9861788de0d597c8" 1851 | integrity sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g= 1852 | 1853 | ms@2.1.2: 1854 | version "2.1.2" 1855 | resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.2.tgz#d09d1f357b443f493382a8eb3ccd183872ae6009" 1856 | integrity sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w== 1857 | 1858 | ms@2.1.3: 1859 | version "2.1.3" 1860 | resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.3.tgz#574c8138ce1d2b5861f0b44579dbadd60c6615b2" 1861 | integrity sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA== 1862 | 1863 | nanoid@3.1.25: 1864 | version "3.1.25" 1865 | resolved "https://registry.yarnpkg.com/nanoid/-/nanoid-3.1.25.tgz#09ca32747c0e543f0e1814b7d3793477f9c8e152" 1866 | integrity sha512-rdwtIXaXCLFAQbnfqDRnI6jaRHp9fTcYBjtFKE8eezcZ7LuLjhUaQGNeMXf1HmRoCH32CLz6XwX0TtxEOS/A3Q== 1867 | 1868 | nice-try@^1.0.4: 1869 | version "1.0.5" 1870 | resolved "https://registry.yarnpkg.com/nice-try/-/nice-try-1.0.5.tgz#a3378a7696ce7d223e88fc9b764bd7ef1089e366" 1871 | integrity sha512-1nh45deeb5olNY7eX82BkPO7SSxR5SSYJiPTrTdFUVYwAl8CKMA5N9PjTYkHiRjisVcxcQ1HXdLhx2qxxJzLNQ== 1872 | 1873 | normalize-package-data@^2.3.2: 1874 | version "2.5.0" 1875 | resolved "https://registry.yarnpkg.com/normalize-package-data/-/normalize-package-data-2.5.0.tgz#e66db1838b200c1dfc233225d12cb36520e234a8" 1876 | integrity sha512-/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA== 1877 | dependencies: 1878 | hosted-git-info "^2.1.4" 1879 | resolve "^1.10.0" 1880 | semver "2 || 3 || 4 || 5" 1881 | validate-npm-package-license "^3.0.1" 1882 | 1883 | normalize-path@^3.0.0, normalize-path@~3.0.0: 1884 | version "3.0.0" 1885 | resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-3.0.0.tgz#0dcd69ff23a1c9b11fd0978316644a0388216a65" 1886 | integrity sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA== 1887 | 1888 | npm-run-all@^4.1.5: 1889 | version "4.1.5" 1890 | resolved "https://registry.yarnpkg.com/npm-run-all/-/npm-run-all-4.1.5.tgz#04476202a15ee0e2e214080861bff12a51d98fba" 1891 | integrity sha512-Oo82gJDAVcaMdi3nuoKFavkIHBRVqQ1qvMb+9LHk/cF4P6B2m8aP04hGf7oL6wZ9BuGwX1onlLhpuoofSyoQDQ== 1892 | dependencies: 1893 | ansi-styles "^3.2.1" 1894 | chalk "^2.4.1" 1895 | cross-spawn "^6.0.5" 1896 | memorystream "^0.3.1" 1897 | minimatch "^3.0.4" 1898 | pidtree "^0.3.0" 1899 | read-pkg "^3.0.0" 1900 | shell-quote "^1.6.1" 1901 | string.prototype.padend "^3.0.0" 1902 | 1903 | npm-run-path@^2.0.0: 1904 | version "2.0.2" 1905 | resolved "https://registry.yarnpkg.com/npm-run-path/-/npm-run-path-2.0.2.tgz#35a9232dfa35d7067b4cb2ddf2357b1871536c5f" 1906 | integrity sha1-NakjLfo11wZ7TLLd8jV7GHFTbF8= 1907 | dependencies: 1908 | path-key "^2.0.0" 1909 | 1910 | nth-check@~1.0.1: 1911 | version "1.0.2" 1912 | resolved "https://registry.yarnpkg.com/nth-check/-/nth-check-1.0.2.tgz#b2bd295c37e3dd58a3bf0700376663ba4d9cf05c" 1913 | integrity sha512-WeBOdju8SnzPN5vTUJYxYUxLeXpCaVP5i5e0LF8fg7WORF2Wd7wFX/pk0tYZk7s8T+J7VLy0Da6J1+wCT0AtHg== 1914 | dependencies: 1915 | boolbase "~1.0.0" 1916 | 1917 | number-is-nan@^1.0.0: 1918 | version "1.0.1" 1919 | resolved "https://registry.yarnpkg.com/number-is-nan/-/number-is-nan-1.0.1.tgz#097b602b53422a522c1afb8790318336941a011d" 1920 | integrity sha1-CXtgK1NCKlIsGvuHkDGDNpQaAR0= 1921 | 1922 | "nwmatcher@>= 1.3.7 < 2.0.0": 1923 | version "1.4.4" 1924 | resolved "https://registry.yarnpkg.com/nwmatcher/-/nwmatcher-1.4.4.tgz#2285631f34a95f0d0395cd900c96ed39b58f346e" 1925 | integrity sha512-3iuY4N5dhgMpCUrOVnuAdGrgxVqV2cJpM+XNccjR2DKOB1RUP0aA+wGXEiNziG/UKboFyGBIoKOaNlJxx8bciQ== 1926 | 1927 | oauth-sign@~0.9.0: 1928 | version "0.9.0" 1929 | resolved "https://registry.yarnpkg.com/oauth-sign/-/oauth-sign-0.9.0.tgz#47a7b016baa68b5fa0ecf3dee08a85c679ac6455" 1930 | integrity sha512-fexhUFFPTGV8ybAtSIGbV6gOkSv8UtRbDBnAyLQw4QPKkgNlsH2ByPGtMUqdWkos6YCRmAqViwgZrJc/mRDzZQ== 1931 | 1932 | object-inspect@^1.9.0: 1933 | version "1.10.2" 1934 | resolved "https://registry.yarnpkg.com/object-inspect/-/object-inspect-1.10.2.tgz#b6385a3e2b7cae0b5eafcf90cddf85d128767f30" 1935 | integrity sha512-gz58rdPpadwztRrPjZE9DZLOABUpTGdcANUgOwBFO1C+HZZhePoP83M65WGDmbpwFYJSWqavbl4SgDn4k8RYTA== 1936 | 1937 | object-keys@^1.0.12, object-keys@^1.1.1: 1938 | version "1.1.1" 1939 | resolved "https://registry.yarnpkg.com/object-keys/-/object-keys-1.1.1.tgz#1c47f272df277f3b1daf061677d9c82e2322c60e" 1940 | integrity sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA== 1941 | 1942 | object.assign@^4.1.2: 1943 | version "4.1.2" 1944 | resolved "https://registry.yarnpkg.com/object.assign/-/object.assign-4.1.2.tgz#0ed54a342eceb37b38ff76eb831a0e788cb63940" 1945 | integrity sha512-ixT2L5THXsApyiUPYKmW+2EHpXXe5Ii3M+f4e+aJFAHao5amFRW6J0OO6c/LU8Be47utCx2GL89hxGB6XSmKuQ== 1946 | dependencies: 1947 | call-bind "^1.0.0" 1948 | define-properties "^1.1.3" 1949 | has-symbols "^1.0.1" 1950 | object-keys "^1.1.1" 1951 | 1952 | once@^1.3.0: 1953 | version "1.4.0" 1954 | resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1" 1955 | integrity sha1-WDsap3WWHUsROsF9nFC6753Xa9E= 1956 | dependencies: 1957 | wrappy "1" 1958 | 1959 | optionator@^0.8.1: 1960 | version "0.8.2" 1961 | resolved "https://registry.yarnpkg.com/optionator/-/optionator-0.8.2.tgz#364c5e409d3f4d6301d6c0b4c05bba50180aeb64" 1962 | integrity sha1-NkxeQJ0/TWMB1sC0wFu6UBgK62Q= 1963 | dependencies: 1964 | deep-is "~0.1.3" 1965 | fast-levenshtein "~2.0.4" 1966 | levn "~0.3.0" 1967 | prelude-ls "~1.1.2" 1968 | type-check "~0.3.2" 1969 | wordwrap "~1.0.0" 1970 | 1971 | os-homedir@^1.0.0: 1972 | version "1.0.2" 1973 | resolved "https://registry.yarnpkg.com/os-homedir/-/os-homedir-1.0.2.tgz#ffbc4988336e0e833de0c168c7ef152121aa7fb3" 1974 | integrity sha1-/7xJiDNuDoM94MFox+8VISGqf7M= 1975 | 1976 | os-locale@^2.0.0: 1977 | version "2.1.0" 1978 | resolved "https://registry.yarnpkg.com/os-locale/-/os-locale-2.1.0.tgz#42bc2900a6b5b8bd17376c8e882b65afccf24bf2" 1979 | integrity sha512-3sslG3zJbEYcaC4YVAvDorjGxc7tv6KVATnLPZONiljsUncvihe9BQoVCEs0RZ1kmf4Hk9OBqlZfJZWI4GanKA== 1980 | dependencies: 1981 | execa "^0.7.0" 1982 | lcid "^1.0.0" 1983 | mem "^1.1.0" 1984 | 1985 | os-tmpdir@^1.0.1: 1986 | version "1.0.2" 1987 | resolved "https://registry.yarnpkg.com/os-tmpdir/-/os-tmpdir-1.0.2.tgz#bbe67406c79aa85c5cfec766fe5734555dfa1274" 1988 | integrity sha1-u+Z0BseaqFxc/sdm/lc0VV36EnQ= 1989 | 1990 | p-finally@^1.0.0: 1991 | version "1.0.0" 1992 | resolved "https://registry.yarnpkg.com/p-finally/-/p-finally-1.0.0.tgz#3fbcfb15b899a44123b34b6dcc18b724336a2cae" 1993 | integrity sha1-P7z7FbiZpEEjs0ttzBi3JDNqLK4= 1994 | 1995 | p-limit@^1.1.0: 1996 | version "1.3.0" 1997 | resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-1.3.0.tgz#b86bd5f0c25690911c7590fcbfc2010d54b3ccb8" 1998 | integrity sha512-vvcXsLAJ9Dr5rQOPk7toZQZJApBl2K4J6dANSsEuh6QI41JYcsS/qhTGa9ErIUUgK3WNQoJYvylxvjqmiqEA9Q== 1999 | dependencies: 2000 | p-try "^1.0.0" 2001 | 2002 | p-limit@^3.0.2: 2003 | version "3.1.0" 2004 | resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-3.1.0.tgz#e1daccbe78d0d1388ca18c64fea38e3e57e3706b" 2005 | integrity sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ== 2006 | dependencies: 2007 | yocto-queue "^0.1.0" 2008 | 2009 | p-locate@^2.0.0: 2010 | version "2.0.0" 2011 | resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-2.0.0.tgz#20a0103b222a70c8fd39cc2e580680f3dde5ec43" 2012 | integrity sha1-IKAQOyIqcMj9OcwuWAaA893l7EM= 2013 | dependencies: 2014 | p-limit "^1.1.0" 2015 | 2016 | p-locate@^5.0.0: 2017 | version "5.0.0" 2018 | resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-5.0.0.tgz#83c8315c6785005e3bd021839411c9e110e6d834" 2019 | integrity sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw== 2020 | dependencies: 2021 | p-limit "^3.0.2" 2022 | 2023 | p-try@^1.0.0: 2024 | version "1.0.0" 2025 | resolved "https://registry.yarnpkg.com/p-try/-/p-try-1.0.0.tgz#cbc79cdbaf8fd4228e13f621f2b1a237c1b207b3" 2026 | integrity sha1-y8ec26+P1CKOE/Yh8rGiN8GyB7M= 2027 | 2028 | pako@^2.0.4: 2029 | version "2.0.4" 2030 | resolved "https://registry.yarnpkg.com/pako/-/pako-2.0.4.tgz#6cebc4bbb0b6c73b0d5b8d7e8476e2b2fbea576d" 2031 | integrity sha512-v8tweI900AUkZN6heMU/4Uy4cXRc2AYNRggVmTR+dEncawDJgCdLMximOVA2p4qO57WMynangsfGRb5WD6L1Bg== 2032 | 2033 | parse-json@^4.0.0: 2034 | version "4.0.0" 2035 | resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-4.0.0.tgz#be35f5425be1f7f6c747184f98a788cb99477ee0" 2036 | integrity sha1-vjX1Qlvh9/bHRxhPmKeIy5lHfuA= 2037 | dependencies: 2038 | error-ex "^1.3.1" 2039 | json-parse-better-errors "^1.0.1" 2040 | 2041 | parse5@^1.5.1: 2042 | version "1.5.1" 2043 | resolved "https://registry.yarnpkg.com/parse5/-/parse5-1.5.1.tgz#9b7f3b0de32be78dc2401b17573ccaf0f6f59d94" 2044 | integrity sha1-m387DeMr543CQBsXVzzK8Pb1nZQ= 2045 | 2046 | parse5@^3.0.1: 2047 | version "3.0.3" 2048 | resolved "https://registry.yarnpkg.com/parse5/-/parse5-3.0.3.tgz#042f792ffdd36851551cf4e9e066b3874ab45b5c" 2049 | integrity sha512-rgO9Zg5LLLkfJF9E6CCmXlSE4UVceloys8JrFqCcHloC3usd/kJCyPDwH2SOlzix2j3xaP9sUX3e8+kvkuleAA== 2050 | dependencies: 2051 | "@types/node" "*" 2052 | 2053 | path-exists@^3.0.0: 2054 | version "3.0.0" 2055 | resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-3.0.0.tgz#ce0ebeaa5f78cb18925ea7d810d7b59b010fd515" 2056 | integrity sha1-zg6+ql94yxiSXqfYENe1mwEP1RU= 2057 | 2058 | path-exists@^4.0.0: 2059 | version "4.0.0" 2060 | resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-4.0.0.tgz#513bdbe2d3b95d7762e8c1137efa195c6c61b5b3" 2061 | integrity sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w== 2062 | 2063 | path-is-absolute@^1.0.0, path-is-absolute@^1.0.1: 2064 | version "1.0.1" 2065 | resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f" 2066 | integrity sha1-F0uSaHNVNP+8es5r9TpanhtcX18= 2067 | 2068 | path-key@^2.0.0, path-key@^2.0.1: 2069 | version "2.0.1" 2070 | resolved "https://registry.yarnpkg.com/path-key/-/path-key-2.0.1.tgz#411cadb574c5a140d3a4b1910d40d80cc9f40b40" 2071 | integrity sha1-QRyttXTFoUDTpLGRDUDYDMn0C0A= 2072 | 2073 | path-parse@^1.0.6: 2074 | version "1.0.6" 2075 | resolved "https://registry.yarnpkg.com/path-parse/-/path-parse-1.0.6.tgz#d62dbb5679405d72c4737ec58600e9ddcf06d24c" 2076 | integrity sha512-GSmOT2EbHrINBf9SR7CDELwlJ8AENk3Qn7OikK4nFYAu3Ote2+JYNVvkpAEQm3/TLNEJFD/xZJjzyxg3KBWOzw== 2077 | 2078 | path-type@^3.0.0: 2079 | version "3.0.0" 2080 | resolved "https://registry.yarnpkg.com/path-type/-/path-type-3.0.0.tgz#cef31dc8e0a1a3bb0d105c0cd97cf3bf47f4e36f" 2081 | integrity sha512-T2ZUsdZFHgA3u4e5PfPbjd7HDDpxPnQb5jN0SrDsjNSuVXHJqtwTnWqG0B1jZrgmJ/7lj1EmVIByWt1gxGkWvg== 2082 | dependencies: 2083 | pify "^3.0.0" 2084 | 2085 | pathval@^1.1.1: 2086 | version "1.1.1" 2087 | resolved "https://registry.yarnpkg.com/pathval/-/pathval-1.1.1.tgz#8534e77a77ce7ac5a2512ea21e0fdb8fcf6c3d8d" 2088 | integrity sha512-Dp6zGqpTdETdR63lehJYPeIOqpiNBNtc7BpWSLrOje7UaIsE5aY92r/AunQA7rsXvet3lrJ3JnZX29UPTKXyKQ== 2089 | 2090 | percentage-calc@^0.0.1: 2091 | version "0.0.1" 2092 | resolved "https://registry.yarnpkg.com/percentage-calc/-/percentage-calc-0.0.1.tgz#39d9551c20da31fbfc5901ac85d2c2d89c5e7560" 2093 | integrity sha1-OdlVHCDaMfv8WQGshdLC2JxedWA= 2094 | 2095 | performance-now@^2.1.0: 2096 | version "2.1.0" 2097 | resolved "https://registry.yarnpkg.com/performance-now/-/performance-now-2.1.0.tgz#6309f4e0e5fa913ec1c69307ae364b4b377c9e7b" 2098 | integrity sha1-Ywn04OX6kT7BxpMHrjZLSzd8nns= 2099 | 2100 | picomatch@^2.0.4, picomatch@^2.2.1: 2101 | version "2.2.3" 2102 | resolved "https://registry.yarnpkg.com/picomatch/-/picomatch-2.2.3.tgz#465547f359ccc206d3c48e46a1bcb89bf7ee619d" 2103 | integrity sha512-KpELjfwcCDUb9PeigTs2mBJzXUPzAuP2oPcA989He8Rte0+YUAjw1JVedDhuTKPkHjSYzMN3npC9luThGYEKdg== 2104 | 2105 | pidtree@^0.3.0: 2106 | version "0.3.1" 2107 | resolved "https://registry.yarnpkg.com/pidtree/-/pidtree-0.3.1.tgz#ef09ac2cc0533df1f3250ccf2c4d366b0d12114a" 2108 | integrity sha512-qQbW94hLHEqCg7nhby4yRC7G2+jYHY4Rguc2bjw7Uug4GIJuu1tvf2uHaZv5Q8zdt+WKJ6qK1FOI6amaWUo5FA== 2109 | 2110 | pify@^3.0.0: 2111 | version "3.0.0" 2112 | resolved "https://registry.yarnpkg.com/pify/-/pify-3.0.0.tgz#e5a4acd2c101fdf3d9a4d07f0dbc4db49dd28176" 2113 | integrity sha1-5aSs0sEB/fPZpNB/DbxNtJ3SgXY= 2114 | 2115 | prelude-ls@~1.1.2: 2116 | version "1.1.2" 2117 | resolved "https://registry.yarnpkg.com/prelude-ls/-/prelude-ls-1.1.2.tgz#21932a549f5e52ffd9a827f570e04be62a97da54" 2118 | integrity sha1-IZMqVJ9eUv/ZqCf1cOBL5iqX2lQ= 2119 | 2120 | private@^0.1.7: 2121 | version "0.1.7" 2122 | resolved "https://registry.yarnpkg.com/private/-/private-0.1.7.tgz#68ce5e8a1ef0a23bb570cc28537b5332aba63ef1" 2123 | integrity sha1-aM5eih7woju1cMwoU3tTMqumPvE= 2124 | 2125 | pseudomap@^1.0.2: 2126 | version "1.0.2" 2127 | resolved "https://registry.yarnpkg.com/pseudomap/-/pseudomap-1.0.2.tgz#f052a28da70e618917ef0a8ac34c1ae5a68286b3" 2128 | integrity sha1-8FKijacOYYkX7wqKw0wa5aaChrM= 2129 | 2130 | psl@^1.1.24, psl@^1.1.28: 2131 | version "1.1.31" 2132 | resolved "https://registry.yarnpkg.com/psl/-/psl-1.1.31.tgz#e9aa86d0101b5b105cbe93ac6b784cd547276184" 2133 | integrity sha512-/6pt4+C+T+wZUieKR620OpzN/LlnNKuWjy1iFLQ/UG35JqHlR/89MP1d96dUfkf6Dne3TuLQzOYEYshJ+Hx8mw== 2134 | 2135 | punycode@^1.4.1: 2136 | version "1.4.1" 2137 | resolved "https://registry.yarnpkg.com/punycode/-/punycode-1.4.1.tgz#c0d5a63b2718800ad8e1eb0fa5269c84dd41845e" 2138 | integrity sha1-wNWmOycYgArY4esPpSachN1BhF4= 2139 | 2140 | punycode@^2.1.0, punycode@^2.1.1: 2141 | version "2.1.1" 2142 | resolved "https://registry.yarnpkg.com/punycode/-/punycode-2.1.1.tgz#b58b010ac40c22c5657616c8d2c2c02c7bf479ec" 2143 | integrity sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A== 2144 | 2145 | qs@~6.5.2: 2146 | version "6.5.2" 2147 | resolved "https://registry.yarnpkg.com/qs/-/qs-6.5.2.tgz#cb3ae806e8740444584ef154ce8ee98d403f3e36" 2148 | integrity sha512-N5ZAX4/LxJmF+7wN74pUD6qAh9/wnvdQcjq9TZjevvXzSUo7bfmw91saqMjzGS2xq91/odN2dW/WOl7qQHNDGA== 2149 | 2150 | randombytes@^2.1.0: 2151 | version "2.1.0" 2152 | resolved "https://registry.yarnpkg.com/randombytes/-/randombytes-2.1.0.tgz#df6f84372f0270dc65cdf6291349ab7a473d4f2a" 2153 | integrity sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ== 2154 | dependencies: 2155 | safe-buffer "^5.1.0" 2156 | 2157 | read-pkg@^3.0.0: 2158 | version "3.0.0" 2159 | resolved "https://registry.yarnpkg.com/read-pkg/-/read-pkg-3.0.0.tgz#9cbc686978fee65d16c00e2b19c237fcf6e38389" 2160 | integrity sha1-nLxoaXj+5l0WwA4rGcI3/Pbjg4k= 2161 | dependencies: 2162 | load-json-file "^4.0.0" 2163 | normalize-package-data "^2.3.2" 2164 | path-type "^3.0.0" 2165 | 2166 | readable-stream@1.1: 2167 | version "1.1.13" 2168 | resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-1.1.13.tgz#f6eef764f514c89e2b9e23146a75ba106756d23e" 2169 | integrity sha1-9u73ZPUUyJ4rniMUanW6EGdW0j4= 2170 | dependencies: 2171 | core-util-is "~1.0.0" 2172 | inherits "~2.0.1" 2173 | isarray "0.0.1" 2174 | string_decoder "~0.10.x" 2175 | 2176 | readable-stream@^3.1.1: 2177 | version "3.3.0" 2178 | resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-3.3.0.tgz#cb8011aad002eb717bf040291feba8569c986fb9" 2179 | integrity sha512-EsI+s3k3XsW+fU8fQACLN59ky34AZ14LoeVZpYwmZvldCFo0r0gnelwF2TcMjLor/BTL5aDJVBMkss0dthToPw== 2180 | dependencies: 2181 | inherits "^2.0.3" 2182 | string_decoder "^1.1.1" 2183 | util-deprecate "^1.0.1" 2184 | 2185 | readdirp@~3.6.0: 2186 | version "3.6.0" 2187 | resolved "https://registry.yarnpkg.com/readdirp/-/readdirp-3.6.0.tgz#74a370bd857116e245b29cc97340cd431a02a6c7" 2188 | integrity sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA== 2189 | dependencies: 2190 | picomatch "^2.2.1" 2191 | 2192 | regenerator-runtime@^0.10.0: 2193 | version "0.10.5" 2194 | resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.10.5.tgz#336c3efc1220adcedda2c9fab67b5a7955a33658" 2195 | integrity sha1-M2w+/BIgrc7dosn6tntaeVWjNlg= 2196 | 2197 | regenerator-runtime@^0.11.0: 2198 | version "0.11.0" 2199 | resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.11.0.tgz#7e54fe5b5ccd5d6624ea6255c3473be090b802e1" 2200 | integrity sha512-/aA0kLeRb5N9K0d4fw7ooEbI+xDe+DKD499EQqygGqeS8N3xto15p09uY2xj7ixP81sNPXvRLnAQIqdVStgb1A== 2201 | 2202 | repeating@^1.1.0: 2203 | version "1.1.3" 2204 | resolved "https://registry.yarnpkg.com/repeating/-/repeating-1.1.3.tgz#3d4114218877537494f97f77f9785fab810fa4ac" 2205 | integrity sha1-PUEUIYh3U3SU+X93+Xhfq4EPpKw= 2206 | dependencies: 2207 | is-finite "^1.0.0" 2208 | 2209 | repeating@^2.0.0: 2210 | version "2.0.1" 2211 | resolved "https://registry.yarnpkg.com/repeating/-/repeating-2.0.1.tgz#5214c53a926d3552707527fbab415dbc08d06dda" 2212 | integrity sha1-UhTFOpJtNVJwdSf7q0FdvAjQbdo= 2213 | dependencies: 2214 | is-finite "^1.0.0" 2215 | 2216 | request@^2.55.0: 2217 | version "2.88.0" 2218 | resolved "https://registry.yarnpkg.com/request/-/request-2.88.0.tgz#9c2fca4f7d35b592efe57c7f0a55e81052124fef" 2219 | integrity sha512-NAqBSrijGLZdM0WZNsInLJpkJokL72XYjUpnB0iwsRgxh7dB6COrHnTBNwN0E+lHDAJzu7kLAkDeY08z2/A0hg== 2220 | dependencies: 2221 | aws-sign2 "~0.7.0" 2222 | aws4 "^1.8.0" 2223 | caseless "~0.12.0" 2224 | combined-stream "~1.0.6" 2225 | extend "~3.0.2" 2226 | forever-agent "~0.6.1" 2227 | form-data "~2.3.2" 2228 | har-validator "~5.1.0" 2229 | http-signature "~1.2.0" 2230 | is-typedarray "~1.0.0" 2231 | isstream "~0.1.2" 2232 | json-stringify-safe "~5.0.1" 2233 | mime-types "~2.1.19" 2234 | oauth-sign "~0.9.0" 2235 | performance-now "^2.1.0" 2236 | qs "~6.5.2" 2237 | safe-buffer "^5.1.2" 2238 | tough-cookie "~2.4.3" 2239 | tunnel-agent "^0.6.0" 2240 | uuid "^3.3.2" 2241 | 2242 | require-directory@^2.1.1: 2243 | version "2.1.1" 2244 | resolved "https://registry.yarnpkg.com/require-directory/-/require-directory-2.1.1.tgz#8c64ad5fd30dab1c976e2344ffe7f792a6a6df42" 2245 | integrity sha1-jGStX9MNqxyXbiNE/+f3kqam30I= 2246 | 2247 | require-main-filename@^1.0.1: 2248 | version "1.0.1" 2249 | resolved "https://registry.yarnpkg.com/require-main-filename/-/require-main-filename-1.0.1.tgz#97f717b69d48784f5f526a6c5aa8ffdda055a4d1" 2250 | integrity sha1-l/cXtp1IeE9fUmpsWqj/3aBVpNE= 2251 | 2252 | resolve@^1.10.0: 2253 | version "1.20.0" 2254 | resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.20.0.tgz#629a013fb3f70755d6f0b7935cc1c2c5378b1975" 2255 | integrity sha512-wENBPt4ySzg4ybFQW2TT1zMQucPK95HSh/nq2CFTZVOGut2+pQvSsgtda4d26YrYcr067wjbmzOG8byDPBX63A== 2256 | dependencies: 2257 | is-core-module "^2.2.0" 2258 | path-parse "^1.0.6" 2259 | 2260 | rollup@2.58.0: 2261 | version "2.58.0" 2262 | resolved "https://registry.yarnpkg.com/rollup/-/rollup-2.58.0.tgz#a643983365e7bf7f5b7c62a8331b983b7c4c67fb" 2263 | integrity sha512-NOXpusKnaRpbS7ZVSzcEXqxcLDOagN6iFS8p45RkoiMqPHDLwJm758UF05KlMoCRbLBTZsPOIa887gZJ1AiXvw== 2264 | optionalDependencies: 2265 | fsevents "~2.3.2" 2266 | 2267 | safe-buffer@^5.0.1, safe-buffer@^5.1.2, safe-buffer@~5.1.0: 2268 | version "5.1.2" 2269 | resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.1.2.tgz#991ec69d296e0313747d59bdfd2b745c35f8828d" 2270 | integrity sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g== 2271 | 2272 | safe-buffer@^5.1.0: 2273 | version "5.2.1" 2274 | resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.2.1.tgz#1eaf9fa9bdb1fdd4ec75f58f9cdb4e6b7827eec6" 2275 | integrity sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ== 2276 | 2277 | safer-buffer@^2.0.2, safer-buffer@^2.1.0, safer-buffer@~2.1.0: 2278 | version "2.1.2" 2279 | resolved "https://registry.yarnpkg.com/safer-buffer/-/safer-buffer-2.1.2.tgz#44fa161b0187b9549dd84bb91802f9bd8385cd6a" 2280 | integrity sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg== 2281 | 2282 | sax@^1.1.4: 2283 | version "1.2.4" 2284 | resolved "https://registry.yarnpkg.com/sax/-/sax-1.2.4.tgz#2816234e2378bddc4e5354fab5caa895df7100d9" 2285 | integrity sha512-NqVDv9TpANUjFm0N8uM5GxL36UgKi9/atZw+x7YFnQ8ckwFGKrl4xX4yWtrey3UJm5nP1kUbnYgLopqWNSRhWw== 2286 | 2287 | "semver@2 || 3 || 4 || 5", semver@^5.5.0: 2288 | version "5.7.1" 2289 | resolved "https://registry.yarnpkg.com/semver/-/semver-5.7.1.tgz#a954f931aeba508d307bbf069eff0c01c96116f7" 2290 | integrity sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ== 2291 | 2292 | serialize-javascript@6.0.0: 2293 | version "6.0.0" 2294 | resolved "https://registry.yarnpkg.com/serialize-javascript/-/serialize-javascript-6.0.0.tgz#efae5d88f45d7924141da8b5c3a7a7e663fefeb8" 2295 | integrity sha512-Qr3TosvguFt8ePWqsvRfrKyQXIiW+nGbYpy8XK24NQHE83caxWt+mIymTT19DGFbNWNLfEwsrkSmN64lVWB9ag== 2296 | dependencies: 2297 | randombytes "^2.1.0" 2298 | 2299 | set-blocking@^2.0.0: 2300 | version "2.0.0" 2301 | resolved "https://registry.yarnpkg.com/set-blocking/-/set-blocking-2.0.0.tgz#045f9782d011ae9a6803ddd382b24392b3d890f7" 2302 | integrity sha1-BF+XgtARrppoA93TgrJDkrPYkPc= 2303 | 2304 | shebang-command@^1.2.0: 2305 | version "1.2.0" 2306 | resolved "https://registry.yarnpkg.com/shebang-command/-/shebang-command-1.2.0.tgz#44aac65b695b03398968c39f363fee5deafdf1ea" 2307 | integrity sha1-RKrGW2lbAzmJaMOfNj/uXer98eo= 2308 | dependencies: 2309 | shebang-regex "^1.0.0" 2310 | 2311 | shebang-regex@^1.0.0: 2312 | version "1.0.0" 2313 | resolved "https://registry.yarnpkg.com/shebang-regex/-/shebang-regex-1.0.0.tgz#da42f49740c0b42db2ca9728571cb190c98efea3" 2314 | integrity sha1-2kL0l0DAtC2yypcoVxyxkMmO/qM= 2315 | 2316 | shell-quote@^1.6.1: 2317 | version "1.7.2" 2318 | resolved "https://registry.yarnpkg.com/shell-quote/-/shell-quote-1.7.2.tgz#67a7d02c76c9da24f99d20808fcaded0e0e04be2" 2319 | integrity sha512-mRz/m/JVscCrkMyPqHc/bczi3OQHkLTqXHEFu0zDhK/qfv3UcOA4SVmRCLmos4bhjr9ekVQubj/R7waKapmiQg== 2320 | 2321 | signal-exit@^3.0.0: 2322 | version "3.0.2" 2323 | resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.2.tgz#b5fdc08f1287ea1178628e415e25132b73646c6d" 2324 | integrity sha1-tf3AjxKH6hF4Yo5BXiUTK3NkbG0= 2325 | 2326 | slash@^1.0.0: 2327 | version "1.0.0" 2328 | resolved "https://registry.yarnpkg.com/slash/-/slash-1.0.0.tgz#c41f2f6c39fc16d1cd17ad4b5d896114ae470d55" 2329 | integrity sha1-xB8vbDn8FtHNF61LXYlhFK5HDVU= 2330 | 2331 | source-map-support@^0.4.15: 2332 | version "0.4.17" 2333 | resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.4.17.tgz#6f2150553e6375375d0ccb3180502b78c18ba430" 2334 | integrity sha512-30c1Ch8FSjV0FwC253iftbbj0dU/OXoSg1LAEGZJUlGgjTNj6cu+DVqJWWIZJY5RXLWV4eFtR+4ouo0VIOYOTg== 2335 | dependencies: 2336 | source-map "^0.5.6" 2337 | 2338 | source-map@^0.5.0, source-map@^0.5.6, source-map@^0.5.7: 2339 | version "0.5.7" 2340 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.5.7.tgz#8a039d2d1021d22d1ea14c80d8ea468ba2ef3fcc" 2341 | integrity sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w= 2342 | 2343 | source-map@~0.6.1: 2344 | version "0.6.1" 2345 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.6.1.tgz#74722af32e9614e9c287a8d0bbde48b5e2f1a263" 2346 | integrity sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g== 2347 | 2348 | spdx-correct@^3.0.0: 2349 | version "3.1.1" 2350 | resolved "https://registry.yarnpkg.com/spdx-correct/-/spdx-correct-3.1.1.tgz#dece81ac9c1e6713e5f7d1b6f17d468fa53d89a9" 2351 | integrity sha512-cOYcUWwhCuHCXi49RhFRCyJEK3iPj1Ziz9DpViV3tbZOwXD49QzIN3MpOLJNxh2qwq2lJJZaKMVw9qNi4jTC0w== 2352 | dependencies: 2353 | spdx-expression-parse "^3.0.0" 2354 | spdx-license-ids "^3.0.0" 2355 | 2356 | spdx-exceptions@^2.1.0: 2357 | version "2.3.0" 2358 | resolved "https://registry.yarnpkg.com/spdx-exceptions/-/spdx-exceptions-2.3.0.tgz#3f28ce1a77a00372683eade4a433183527a2163d" 2359 | integrity sha512-/tTrYOC7PPI1nUAgx34hUpqXuyJG+DTHJTnIULG4rDygi4xu/tfgmq1e1cIRwRzwZgo4NLySi+ricLkZkw4i5A== 2360 | 2361 | spdx-expression-parse@^3.0.0: 2362 | version "3.0.1" 2363 | resolved "https://registry.yarnpkg.com/spdx-expression-parse/-/spdx-expression-parse-3.0.1.tgz#cf70f50482eefdc98e3ce0a6833e4a53ceeba679" 2364 | integrity sha512-cbqHunsQWnJNE6KhVSMsMeH5H/L9EpymbzqTQ3uLwNCLZ1Q481oWaofqH7nO6V07xlXwY6PhQdQ2IedWx/ZK4Q== 2365 | dependencies: 2366 | spdx-exceptions "^2.1.0" 2367 | spdx-license-ids "^3.0.0" 2368 | 2369 | spdx-license-ids@^3.0.0: 2370 | version "3.0.7" 2371 | resolved "https://registry.yarnpkg.com/spdx-license-ids/-/spdx-license-ids-3.0.7.tgz#e9c18a410e5ed7e12442a549fbd8afa767038d65" 2372 | integrity sha512-U+MTEOO0AiDzxwFvoa4JVnMV6mZlJKk2sBLt90s7G0Gd0Mlknc7kxEn3nuDPNZRta7O2uy8oLcZLVT+4sqNZHQ== 2373 | 2374 | sshpk@^1.7.0: 2375 | version "1.16.1" 2376 | resolved "https://registry.yarnpkg.com/sshpk/-/sshpk-1.16.1.tgz#fb661c0bef29b39db40769ee39fa70093d6f6877" 2377 | integrity sha512-HXXqVUq7+pcKeLqqZj6mHFUMvXtOJt1uoUx09pFW6011inTMxqI8BA8PM95myrIyyKwdnzjdFjLiE6KBPVtJIg== 2378 | dependencies: 2379 | asn1 "~0.2.3" 2380 | assert-plus "^1.0.0" 2381 | bcrypt-pbkdf "^1.0.0" 2382 | dashdash "^1.12.0" 2383 | ecc-jsbn "~0.1.1" 2384 | getpass "^0.1.1" 2385 | jsbn "~0.1.0" 2386 | safer-buffer "^2.0.2" 2387 | tweetnacl "~0.14.0" 2388 | 2389 | string-width@^1.0.1: 2390 | version "1.0.2" 2391 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-1.0.2.tgz#118bdf5b8cdc51a2a7e70d211e07e2b0b9b107d3" 2392 | integrity sha1-EYvfW4zcUaKn5w0hHgfisLmxB9M= 2393 | dependencies: 2394 | code-point-at "^1.0.0" 2395 | is-fullwidth-code-point "^1.0.0" 2396 | strip-ansi "^3.0.0" 2397 | 2398 | string-width@^2.0.0, string-width@^2.1.1: 2399 | version "2.1.1" 2400 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-2.1.1.tgz#ab93f27a8dc13d28cac815c462143a6d9012ae9e" 2401 | integrity sha512-nOqH59deCq9SRHlxq1Aw85Jnt4w6KvLKqWVik6oA9ZklXLNIOlqg4F2yrT1MVaTjAqvVwdfeZ7w7aCvJD7ugkw== 2402 | dependencies: 2403 | is-fullwidth-code-point "^2.0.0" 2404 | strip-ansi "^4.0.0" 2405 | 2406 | string-width@^4.1.0, string-width@^4.2.0: 2407 | version "4.2.2" 2408 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-4.2.2.tgz#dafd4f9559a7585cfba529c6a0a4f73488ebd4c5" 2409 | integrity sha512-XBJbT3N4JhVumXE0eoLU9DCjcaF92KLNqTmFCnG1pf8duUxFGwtP6AD6nkjw9a3IdiRtL3E2w3JDiE/xi3vOeA== 2410 | dependencies: 2411 | emoji-regex "^8.0.0" 2412 | is-fullwidth-code-point "^3.0.0" 2413 | strip-ansi "^6.0.0" 2414 | 2415 | string.prototype.padend@^3.0.0: 2416 | version "3.1.2" 2417 | resolved "https://registry.yarnpkg.com/string.prototype.padend/-/string.prototype.padend-3.1.2.tgz#6858ca4f35c5268ebd5e8615e1327d55f59ee311" 2418 | integrity sha512-/AQFLdYvePENU3W5rgurfWSMU6n+Ww8n/3cUt7E+vPBB/D7YDG8x+qjoFs4M/alR2bW7Qg6xMjVwWUOvuQ0XpQ== 2419 | dependencies: 2420 | call-bind "^1.0.2" 2421 | define-properties "^1.1.3" 2422 | es-abstract "^1.18.0-next.2" 2423 | 2424 | string.prototype.trimend@^1.0.4: 2425 | version "1.0.4" 2426 | resolved "https://registry.yarnpkg.com/string.prototype.trimend/-/string.prototype.trimend-1.0.4.tgz#e75ae90c2942c63504686c18b287b4a0b1a45f80" 2427 | integrity sha512-y9xCjw1P23Awk8EvTpcyL2NIr1j7wJ39f+k6lvRnSMz+mz9CGz9NYPelDk42kOz6+ql8xjfK8oYzy3jAP5QU5A== 2428 | dependencies: 2429 | call-bind "^1.0.2" 2430 | define-properties "^1.1.3" 2431 | 2432 | string.prototype.trimstart@^1.0.4: 2433 | version "1.0.4" 2434 | resolved "https://registry.yarnpkg.com/string.prototype.trimstart/-/string.prototype.trimstart-1.0.4.tgz#b36399af4ab2999b4c9c648bd7a3fb2bb26feeed" 2435 | integrity sha512-jh6e984OBfvxS50tdY2nRZnoC5/mLFKOREQfw8t5yytkoUsJRNxvI/E39qu1sD0OtWI3OC0XgKSmcWwziwYuZw== 2436 | dependencies: 2437 | call-bind "^1.0.2" 2438 | define-properties "^1.1.3" 2439 | 2440 | string_decoder@^1.1.1: 2441 | version "1.2.0" 2442 | resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.2.0.tgz#fe86e738b19544afe70469243b2a1ee9240eae8d" 2443 | integrity sha512-6YqyX6ZWEYguAxgZzHGL7SsCeGx3V2TtOTqZz1xSTSWnqsbWwbptafNyvf/ACquZUXV3DANr5BDIwNYe1mN42w== 2444 | dependencies: 2445 | safe-buffer "~5.1.0" 2446 | 2447 | string_decoder@~0.10.x: 2448 | version "0.10.31" 2449 | resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-0.10.31.tgz#62e203bc41766c6c28c9fc84301dab1c5310fa94" 2450 | integrity sha1-YuIDvEF2bGwoyfyEMB2rHFMQ+pQ= 2451 | 2452 | strip-ansi@^3.0.0, strip-ansi@^3.0.1: 2453 | version "3.0.1" 2454 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-3.0.1.tgz#6a385fb8853d952d5ff05d0e8aaf94278dc63dcf" 2455 | integrity sha1-ajhfuIU9lS1f8F0Oiq+UJ43GPc8= 2456 | dependencies: 2457 | ansi-regex "^2.0.0" 2458 | 2459 | strip-ansi@^4.0.0: 2460 | version "4.0.0" 2461 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-4.0.0.tgz#a8479022eb1ac368a871389b635262c505ee368f" 2462 | integrity sha1-qEeQIusaw2iocTibY1JixQXuNo8= 2463 | dependencies: 2464 | ansi-regex "^3.0.0" 2465 | 2466 | strip-ansi@^6.0.0: 2467 | version "6.0.0" 2468 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-6.0.0.tgz#0b1571dd7669ccd4f3e06e14ef1eed26225ae532" 2469 | integrity sha512-AuvKTrTfQNYNIctbR1K/YGTR1756GycPsg7b9bdV9Duqur4gv6aKqHXah67Z8ImS7WEz5QVcOtlfW2rZEugt6w== 2470 | dependencies: 2471 | ansi-regex "^5.0.0" 2472 | 2473 | strip-bom@^3.0.0: 2474 | version "3.0.0" 2475 | resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-3.0.0.tgz#2334c18e9c759f7bdd56fdef7e9ae3d588e68ed3" 2476 | integrity sha1-IzTBjpx1n3vdVv3vfprj1YjmjtM= 2477 | 2478 | strip-eof@^1.0.0: 2479 | version "1.0.0" 2480 | resolved "https://registry.yarnpkg.com/strip-eof/-/strip-eof-1.0.0.tgz#bb43ff5598a6eb05d89b59fcd129c983313606bf" 2481 | integrity sha1-u0P/VZim6wXYm1n80SnJgzE2Br8= 2482 | 2483 | strip-json-comments@3.1.1: 2484 | version "3.1.1" 2485 | resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-3.1.1.tgz#31f1281b3832630434831c310c01cccda8cbe006" 2486 | integrity sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig== 2487 | 2488 | supports-color@8.1.1: 2489 | version "8.1.1" 2490 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-8.1.1.tgz#cd6fc17e28500cff56c1b86c0a7fd4a54a73005c" 2491 | integrity sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q== 2492 | dependencies: 2493 | has-flag "^4.0.0" 2494 | 2495 | supports-color@^2.0.0: 2496 | version "2.0.0" 2497 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-2.0.0.tgz#535d045ce6b6363fa40117084629995e9df324c7" 2498 | integrity sha1-U10EXOa2Nj+kARcIRimZXp3zJMc= 2499 | 2500 | supports-color@^5.3.0: 2501 | version "5.5.0" 2502 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-5.5.0.tgz#e2e69a44ac8772f78a1ec0b35b689df6530efc8f" 2503 | integrity sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow== 2504 | dependencies: 2505 | has-flag "^3.0.0" 2506 | 2507 | supports-color@^7.1.0: 2508 | version "7.2.0" 2509 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-7.2.0.tgz#1b7dcdcb32b8138801b3e478ba6a51caa89648da" 2510 | integrity sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw== 2511 | dependencies: 2512 | has-flag "^4.0.0" 2513 | 2514 | "symbol-tree@>= 3.1.0 < 4.0.0": 2515 | version "3.2.2" 2516 | resolved "https://registry.yarnpkg.com/symbol-tree/-/symbol-tree-3.2.2.tgz#ae27db38f660a7ae2e1c3b7d1bc290819b8519e6" 2517 | integrity sha1-rifbOPZgp64uHDt9G8KQgZuFGeY= 2518 | 2519 | taffydb@2.7.2: 2520 | version "2.7.2" 2521 | resolved "https://registry.yarnpkg.com/taffydb/-/taffydb-2.7.2.tgz#7bf8106a5c1a48251b3e3bc0a0e1732489fd0dc8" 2522 | integrity sha1-e/gQalwaSCUbPjvAoOFzJIn9Dcg= 2523 | 2524 | taffydb@2.7.3: 2525 | version "2.7.3" 2526 | resolved "https://registry.yarnpkg.com/taffydb/-/taffydb-2.7.3.tgz#2ad37169629498fca5bc84243096d3cde0ec3a34" 2527 | integrity sha1-KtNxaWKUmPylvIQkMJbTzeDsOjQ= 2528 | 2529 | to-fast-properties@^1.0.1, to-fast-properties@^1.0.3: 2530 | version "1.0.3" 2531 | resolved "https://registry.yarnpkg.com/to-fast-properties/-/to-fast-properties-1.0.3.tgz#b83571fa4d8c25b82e231b06e3a3055de4ca1a47" 2532 | integrity sha1-uDVx+k2MJbguIxsG46MFXeTKGkc= 2533 | 2534 | to-regex-range@^5.0.1: 2535 | version "5.0.1" 2536 | resolved "https://registry.yarnpkg.com/to-regex-range/-/to-regex-range-5.0.1.tgz#1648c44aae7c8d988a326018ed72f5b4dd0392e4" 2537 | integrity sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ== 2538 | dependencies: 2539 | is-number "^7.0.0" 2540 | 2541 | tough-cookie@^2.2.0: 2542 | version "2.5.0" 2543 | resolved "https://registry.yarnpkg.com/tough-cookie/-/tough-cookie-2.5.0.tgz#cd9fb2a0aa1d5a12b473bd9fb96fa3dcff65ade2" 2544 | integrity sha512-nlLsUzgm1kfLXSXfRZMc1KLAugd4hqJHDTvc2hDIwS3mZAfMEuMbc03SujMF+GEcpaX/qboeycw6iO8JwVv2+g== 2545 | dependencies: 2546 | psl "^1.1.28" 2547 | punycode "^2.1.1" 2548 | 2549 | tough-cookie@~2.4.3: 2550 | version "2.4.3" 2551 | resolved "https://registry.yarnpkg.com/tough-cookie/-/tough-cookie-2.4.3.tgz#53f36da3f47783b0925afa06ff9f3b165280f781" 2552 | integrity sha512-Q5srk/4vDM54WJsJio3XNn6K2sCG+CQ8G5Wz6bZhRZoAe/+TxjWB/GlFAnYEbkYVlON9FMk/fE3h2RLpPXo4lQ== 2553 | dependencies: 2554 | psl "^1.1.24" 2555 | punycode "^1.4.1" 2556 | 2557 | tr46@~0.0.1: 2558 | version "0.0.3" 2559 | resolved "https://registry.yarnpkg.com/tr46/-/tr46-0.0.3.tgz#8184fd347dac9cdc185992f3a6622e14b9d9ab6a" 2560 | integrity sha1-gYT9NH2snNwYWZLzpmIuFLnZq2o= 2561 | 2562 | trim-right@^1.0.1: 2563 | version "1.0.1" 2564 | resolved "https://registry.yarnpkg.com/trim-right/-/trim-right-1.0.1.tgz#cb2e1203067e0c8de1f614094b9fe45704ea6003" 2565 | integrity sha1-yy4SAwZ+DI3h9hQJS5/kVwTqYAM= 2566 | 2567 | tunnel-agent@^0.6.0: 2568 | version "0.6.0" 2569 | resolved "https://registry.yarnpkg.com/tunnel-agent/-/tunnel-agent-0.6.0.tgz#27a5dea06b36b04a0a9966774b290868f0fc40fd" 2570 | integrity sha1-J6XeoGs2sEoKmWZ3SykIaPD8QP0= 2571 | dependencies: 2572 | safe-buffer "^5.0.1" 2573 | 2574 | tweetnacl@^0.14.3, tweetnacl@~0.14.0: 2575 | version "0.14.5" 2576 | resolved "https://registry.yarnpkg.com/tweetnacl/-/tweetnacl-0.14.5.tgz#5ae68177f192d4456269d108afa93ff8743f4f64" 2577 | integrity sha1-WuaBd/GS1EViadEIr6k/+HQ/T2Q= 2578 | 2579 | type-check@~0.3.2: 2580 | version "0.3.2" 2581 | resolved "https://registry.yarnpkg.com/type-check/-/type-check-0.3.2.tgz#5884cab512cf1d355e3fb784f30804b2b520db72" 2582 | integrity sha1-WITKtRLPHTVeP7eE8wgEsrUg23I= 2583 | dependencies: 2584 | prelude-ls "~1.1.2" 2585 | 2586 | type-detect@^4.0.0, type-detect@^4.0.5: 2587 | version "4.0.8" 2588 | resolved "https://registry.yarnpkg.com/type-detect/-/type-detect-4.0.8.tgz#7646fb5f18871cfbb7749e69bd39a6388eb7450c" 2589 | integrity sha512-0fr/mIH1dlO+x7TlcMy+bIDqKPsw/70tVyeHW787goQjhmqaZe10uwLujubK9q9Lg6Fiho1KUKDYz0Z7k7g5/g== 2590 | 2591 | unbox-primitive@^1.0.0: 2592 | version "1.0.1" 2593 | resolved "https://registry.yarnpkg.com/unbox-primitive/-/unbox-primitive-1.0.1.tgz#085e215625ec3162574dc8859abee78a59b14471" 2594 | integrity sha512-tZU/3NqK3dA5gpE1KtyiJUrEB0lxnGkMFHptJ7q6ewdZ8s12QrODwNbhIJStmJkd1QDXa1NRA8aF2A1zk/Ypyw== 2595 | dependencies: 2596 | function-bind "^1.1.1" 2597 | has-bigints "^1.0.1" 2598 | has-symbols "^1.0.2" 2599 | which-boxed-primitive "^1.0.2" 2600 | 2601 | universalify@^0.1.0: 2602 | version "0.1.2" 2603 | resolved "https://registry.yarnpkg.com/universalify/-/universalify-0.1.2.tgz#b646f69be3942dabcecc9d6639c80dc105efaa66" 2604 | integrity sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg== 2605 | 2606 | uri-js@^4.2.2: 2607 | version "4.2.2" 2608 | resolved "https://registry.yarnpkg.com/uri-js/-/uri-js-4.2.2.tgz#94c540e1ff772956e2299507c010aea6c8838eb0" 2609 | integrity sha512-KY9Frmirql91X2Qgjry0Wd4Y+YTdrdZheS8TFwvkbLWf/G5KNJDCh6pKL5OZctEW4+0Baa5idK2ZQuELRwPznQ== 2610 | dependencies: 2611 | punycode "^2.1.0" 2612 | 2613 | util-deprecate@^1.0.1: 2614 | version "1.0.2" 2615 | resolved "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf" 2616 | integrity sha1-RQ1Nyfpw3nMnYvvS1KKJgUGaDM8= 2617 | 2618 | uuid@^3.3.2: 2619 | version "3.3.2" 2620 | resolved "https://registry.yarnpkg.com/uuid/-/uuid-3.3.2.tgz#1b4af4955eb3077c501c23872fc6513811587131" 2621 | integrity sha512-yXJmeNaw3DnnKAOKJE51sL/ZaYfWJRl1pK9dr19YFCu0ObS231AB1/LbqTKRAQ5kw8A90rA6fr4riOUpTZvQZA== 2622 | 2623 | validate-npm-package-license@^3.0.1: 2624 | version "3.0.4" 2625 | resolved "https://registry.yarnpkg.com/validate-npm-package-license/-/validate-npm-package-license-3.0.4.tgz#fc91f6b9c7ba15c857f4cb2c5defeec39d4f410a" 2626 | integrity sha512-DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew== 2627 | dependencies: 2628 | spdx-correct "^3.0.0" 2629 | spdx-expression-parse "^3.0.0" 2630 | 2631 | verror@1.10.0: 2632 | version "1.10.0" 2633 | resolved "https://registry.yarnpkg.com/verror/-/verror-1.10.0.tgz#3a105ca17053af55d6e270c1f8288682e18da400" 2634 | integrity sha1-OhBcoXBTr1XW4nDB+CiGguGNpAA= 2635 | dependencies: 2636 | assert-plus "^1.0.0" 2637 | core-util-is "1.0.2" 2638 | extsprintf "^1.2.0" 2639 | 2640 | webidl-conversions@^2.0.0: 2641 | version "2.0.1" 2642 | resolved "https://registry.yarnpkg.com/webidl-conversions/-/webidl-conversions-2.0.1.tgz#3bf8258f7d318c7443c36f2e169402a1a6703506" 2643 | integrity sha1-O/glj30xjHRDw28uFpQCoaZwNQY= 2644 | 2645 | whatwg-url-compat@~0.6.5: 2646 | version "0.6.5" 2647 | resolved "https://registry.yarnpkg.com/whatwg-url-compat/-/whatwg-url-compat-0.6.5.tgz#00898111af689bb097541cd5a45ca6c8798445bf" 2648 | integrity sha1-AImBEa9om7CXVBzVpFymyHmERb8= 2649 | dependencies: 2650 | tr46 "~0.0.1" 2651 | 2652 | which-boxed-primitive@^1.0.2: 2653 | version "1.0.2" 2654 | resolved "https://registry.yarnpkg.com/which-boxed-primitive/-/which-boxed-primitive-1.0.2.tgz#13757bc89b209b049fe5d86430e21cf40a89a8e6" 2655 | integrity sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg== 2656 | dependencies: 2657 | is-bigint "^1.0.1" 2658 | is-boolean-object "^1.1.0" 2659 | is-number-object "^1.0.4" 2660 | is-string "^1.0.5" 2661 | is-symbol "^1.0.3" 2662 | 2663 | which-module@^2.0.0: 2664 | version "2.0.0" 2665 | resolved "https://registry.yarnpkg.com/which-module/-/which-module-2.0.0.tgz#d9ef07dce77b9902b8a3a8fa4b31c3e3f7e6e87a" 2666 | integrity sha1-2e8H3Od7mQK4o6j6SzHD4/fm6Ho= 2667 | 2668 | which@2.0.2: 2669 | version "2.0.2" 2670 | resolved "https://registry.yarnpkg.com/which/-/which-2.0.2.tgz#7c6a8dd0a636a0327e10b59c9286eee93f3f51b1" 2671 | integrity sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA== 2672 | dependencies: 2673 | isexe "^2.0.0" 2674 | 2675 | which@^1.2.9: 2676 | version "1.3.1" 2677 | resolved "https://registry.yarnpkg.com/which/-/which-1.3.1.tgz#a45043d54f5805316da8d62f9f50918d3da70b0a" 2678 | integrity sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ== 2679 | dependencies: 2680 | isexe "^2.0.0" 2681 | 2682 | wordwrap@~1.0.0: 2683 | version "1.0.0" 2684 | resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-1.0.0.tgz#27584810891456a4171c8d0226441ade90cbcaeb" 2685 | integrity sha1-J1hIEIkUVqQXHI0CJkQa3pDLyus= 2686 | 2687 | workerpool@6.1.5: 2688 | version "6.1.5" 2689 | resolved "https://registry.yarnpkg.com/workerpool/-/workerpool-6.1.5.tgz#0f7cf076b6215fd7e1da903ff6f22ddd1886b581" 2690 | integrity sha512-XdKkCK0Zqc6w3iTxLckiuJ81tiD/o5rBE/m+nXpRCB+/Sq4DqkfXZ/x0jW02DG1tGsfUGXbTJyZDP+eu67haSw== 2691 | 2692 | wrap-ansi@^2.0.0: 2693 | version "2.1.0" 2694 | resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-2.1.0.tgz#d8fc3d284dd05794fe84973caecdd1cf824fdd85" 2695 | integrity sha1-2Pw9KE3QV5T+hJc8rs3Rz4JP3YU= 2696 | dependencies: 2697 | string-width "^1.0.1" 2698 | strip-ansi "^3.0.1" 2699 | 2700 | wrap-ansi@^7.0.0: 2701 | version "7.0.0" 2702 | resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-7.0.0.tgz#67e145cff510a6a6984bdf1152911d69d2eb9e43" 2703 | integrity sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q== 2704 | dependencies: 2705 | ansi-styles "^4.0.0" 2706 | string-width "^4.1.0" 2707 | strip-ansi "^6.0.0" 2708 | 2709 | wrappy@1: 2710 | version "1.0.2" 2711 | resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f" 2712 | integrity sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8= 2713 | 2714 | "xml-name-validator@>= 2.0.1 < 3.0.0": 2715 | version "2.0.1" 2716 | resolved "https://registry.yarnpkg.com/xml-name-validator/-/xml-name-validator-2.0.1.tgz#4d8b8f1eccd3419aa362061becef515e1e559635" 2717 | integrity sha1-TYuPHszTQZqjYgYb7O9RXh5VljU= 2718 | 2719 | y18n@^3.2.1: 2720 | version "3.2.1" 2721 | resolved "https://registry.yarnpkg.com/y18n/-/y18n-3.2.1.tgz#6d15fba884c08679c0d77e88e7759e811e07fa41" 2722 | integrity sha1-bRX7qITAhnnA136I53WegR4H+kE= 2723 | 2724 | y18n@^5.0.5: 2725 | version "5.0.8" 2726 | resolved "https://registry.yarnpkg.com/y18n/-/y18n-5.0.8.tgz#7f4934d0f7ca8c56f95314939ddcd2dd91ce1d55" 2727 | integrity sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA== 2728 | 2729 | yallist@^2.1.2: 2730 | version "2.1.2" 2731 | resolved "https://registry.yarnpkg.com/yallist/-/yallist-2.1.2.tgz#1c11f9218f076089a47dd512f93c6699a6a81d52" 2732 | integrity sha1-HBH5IY8HYImkfdUS+TxmmaaoHVI= 2733 | 2734 | yargs-parser@20.2.4: 2735 | version "20.2.4" 2736 | resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-20.2.4.tgz#b42890f14566796f85ae8e3a25290d205f154a54" 2737 | integrity sha512-WOkpgNhPTlE73h4VFAFsOnomJVaovO8VqLDzy5saChRBFQFBoMYirowyW+Q9HB4HFF4Z7VZTiG3iSzJJA29yRA== 2738 | 2739 | yargs-parser@^20.2.2: 2740 | version "20.2.7" 2741 | resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-20.2.7.tgz#61df85c113edfb5a7a4e36eb8aa60ef423cbc90a" 2742 | integrity sha512-FiNkvbeHzB/syOjIUxFDCnhSfzAL8R5vs40MgLFBorXACCOAEaWu0gRZl14vG8MR9AOJIZbmkjhusqBYZ3HTHw== 2743 | 2744 | yargs-parser@^9.0.2: 2745 | version "9.0.2" 2746 | resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-9.0.2.tgz#9ccf6a43460fe4ed40a9bb68f48d43b8a68cc077" 2747 | integrity sha1-nM9qQ0YP5O1Aqbto9I1DuKaMwHc= 2748 | dependencies: 2749 | camelcase "^4.1.0" 2750 | 2751 | yargs-unparser@2.0.0: 2752 | version "2.0.0" 2753 | resolved "https://registry.yarnpkg.com/yargs-unparser/-/yargs-unparser-2.0.0.tgz#f131f9226911ae5d9ad38c432fe809366c2325eb" 2754 | integrity sha512-7pRTIA9Qc1caZ0bZ6RYRGbHJthJWuakf+WmHK0rVeLkNrrGhfoabBNdue6kdINI6r4if7ocq9aD/n7xwKOdzOA== 2755 | dependencies: 2756 | camelcase "^6.0.0" 2757 | decamelize "^4.0.0" 2758 | flat "^5.0.2" 2759 | is-plain-obj "^2.1.0" 2760 | 2761 | yargs@16.2.0: 2762 | version "16.2.0" 2763 | resolved "https://registry.yarnpkg.com/yargs/-/yargs-16.2.0.tgz#1c82bf0f6b6a66eafce7ef30e376f49a12477f66" 2764 | integrity sha512-D1mvvtDG0L5ft/jGWkLpG1+m0eQxOfaBvTNELraWj22wSVUMWxZUvYgJYcKh6jGGIkJFhH4IZPQhR4TKpc8mBw== 2765 | dependencies: 2766 | cliui "^7.0.2" 2767 | escalade "^3.1.1" 2768 | get-caller-file "^2.0.5" 2769 | require-directory "^2.1.1" 2770 | string-width "^4.2.0" 2771 | y18n "^5.0.5" 2772 | yargs-parser "^20.2.2" 2773 | 2774 | yargs@^11.0.0: 2775 | version "11.1.0" 2776 | resolved "https://registry.yarnpkg.com/yargs/-/yargs-11.1.0.tgz#90b869934ed6e871115ea2ff58b03f4724ed2d77" 2777 | integrity sha512-NwW69J42EsCSanF8kyn5upxvjp5ds+t3+udGBeTbFnERA+lF541DDpMawzo4z6W/QrzNM18D+BPMiOBibnFV5A== 2778 | dependencies: 2779 | cliui "^4.0.0" 2780 | decamelize "^1.1.1" 2781 | find-up "^2.1.0" 2782 | get-caller-file "^1.0.1" 2783 | os-locale "^2.0.0" 2784 | require-directory "^2.1.1" 2785 | require-main-filename "^1.0.1" 2786 | set-blocking "^2.0.0" 2787 | string-width "^2.0.0" 2788 | which-module "^2.0.0" 2789 | y18n "^3.2.1" 2790 | yargs-parser "^9.0.2" 2791 | 2792 | yocto-queue@^0.1.0: 2793 | version "0.1.0" 2794 | resolved "https://registry.yarnpkg.com/yocto-queue/-/yocto-queue-0.1.0.tgz#0294eb3dee05028d31ee1a5fa2c556a6aaf10a1b" 2795 | integrity sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q== 2796 | --------------------------------------------------------------------------------