├── .clasp.json ├── .gitignore ├── LICENSE ├── README.md ├── dist └── @bkper │ └── http-request-app-types │ ├── LICENSE │ ├── README.md │ ├── index.d.ts │ └── package.json ├── package.json ├── src ├── HttpRequest.ts ├── HttpRequestApp.ts └── appsscript.json ├── test └── HttpRequest.spec.ts ├── tsconfig.json └── yarn.lock /.clasp.json: -------------------------------------------------------------------------------- 1 | { 2 | "scriptId": "1Iqaz0dbrlOXp9D2giO0DS6CDW_Q4IrgfhTJyYqxknww_OmFVF_4NQVR_", 3 | "rootDir": "./src", 4 | "library": { 5 | "namespace": "Bkper", 6 | "name": "HttpRequestApp" 7 | } 8 | } -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | node_modules 3 | yarn-error.log 4 | .history 5 | /build -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2020 Mael Caldas 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | 2 | ## HttpRequestApp 3 | 4 | Fluent interface for Google Apps Script [Url Fetch Service](https://developers.google.com/apps-script/reference/url-fetch), to simplify HttpRequest building and 3rd party API integrations. 5 | 6 | [![clasp](https://img.shields.io/badge/built%20with-clasp-4285f4.svg)](https://github.com/google/clasp) 7 | [![npm (scoped)](https://img.shields.io/npm/v/@bkper/http-request-app-types?color=%235889e4&label=types)](https://www.npmjs.com/package/@bkper/http-request-app-types) 8 | 9 | **UrlFetchApp:** 10 | ```js 11 | var options = { 12 | 'method' : 'post', 13 | 'header' : { 14 | 'token' : 'xxx' 15 | } 16 | 'contentType': 'application/json', 17 | 'payload' : JSON.stringify(data) 18 | }; 19 | var response = UrlFetchApp.fetch('https://httpbin.org/post?key=yyy', options); 20 | 21 | ``` 22 | 23 | **HttpRequestApp:** 24 | ```js 25 | var response = HttpRequestApp.newRequest('https://httpbin.org/post') 26 | .setMethod('post') 27 | .setHeader('token', 'xxx') 28 | .addParam('key', 'yyy') 29 | .setContentType('application/json') 30 | .setPayload(JSON.stringify(data)) 31 | .fetch() 32 | ``` 33 | >There is an open [feature request](https://issuetracker.google.com/issues/156446909) to include it as a native feature in the URL Fetch Service. Please start this issue if you think it makes sense. 34 | 35 | ### Setup 36 | 37 | This library is already published as an [Apps Script](https://script.google.com/d/1Iqaz0dbrlOXp9D2giO0DS6CDW_Q4IrgfhTJyYqxknww_OmFVF_4NQVR_/edit?usp=sharing), making it easy to include in your project. 38 | 39 | To add it to your script, do the following in the Apps Script code editor: 40 | 41 | 1. Click on the menu item "Resources > Libraries..." 42 | 2. In the "Add a Library" text box, enter the Script ID "**1Iqaz0dbrlOXp9D2giO0DS6CDW_Q4IrgfhTJyYqxknww_OmFVF_4NQVR_**" and click the "Select" button. 43 | 3. Choose a version in the dropdown box (usually best to pick the latest version). 44 | 4. Click the "Save" button. 45 | 46 | You can also copy the ```ts``` code on [/src](https://github.com/bkper/http-request-app/tree/master/src) folder or the executable [compiled script](https://script.google.com/d/1Iqaz0dbrlOXp9D2giO0DS6CDW_Q4IrgfhTJyYqxknww_OmFVF_4NQVR_/edit?usp=sharing). 47 | 48 | 49 | #### Typescript Definitions for autocomplete: 50 | 51 | ##### 1) Add the package: 52 | 53 | ``` 54 | npm i -S @bkper/http-request-app-types 55 | ``` 56 | or 57 | ``` 58 | yarn add --dev @bkper/http-request-app-types 59 | ``` 60 | 61 | ##### 2) Configure tsconfig.json: 62 | 63 | ``` 64 | { 65 | "compilerOptions": { 66 | "typeRoots" : ["node_modules/@bkper", "node_modules/@types" ] 67 | } 68 | } 69 | ``` 70 | 71 | [Learn more](https://www.typescriptlang.org/docs/handbook/tsconfig-json.html#types-typeroots-and-types) about **@types**, **typeRoots** and **types** 72 | -------------------------------------------------------------------------------- /dist/@bkper/http-request-app-types/LICENSE: -------------------------------------------------------------------------------- 1 | 2 | MIT License 3 | 4 | Copyright (c) 2020 Mael Caldas 5 | 6 | Permission is hereby granted, free of charge, to any person obtaining a copy 7 | of this software and associated documentation files (the "Software"), to deal 8 | in the Software without restriction, including without limitation the rights 9 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 10 | copies of the Software, and to permit persons to whom the Software is 11 | furnished to do so, subject to the following conditions: 12 | 13 | The above copyright notice and this permission notice shall be included in all 14 | copies or substantial portions of the Software. 15 | 16 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 17 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 18 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 19 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 20 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 21 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 22 | SOFTWARE. 23 | 24 | 25 | -------------------------------------------------------------------------------- /dist/@bkper/http-request-app-types/README.md: -------------------------------------------------------------------------------- 1 | # Summary 2 | 3 | This package contains Typescript definitions for [HttpRequestApp](https://bkper.com/docs/) 4 | 5 | # Instalation 6 | 7 | ### 1) Add the package: 8 | 9 | ``` 10 | npm i -S @bkper/http-request-app-types 11 | ``` 12 | or 13 | ``` 14 | yarn add --dev @bkper/http-request-app-types 15 | ``` 16 | 17 | ### 2) Configure tsconfig.json: 18 | 19 | ``` 20 | { 21 | "compilerOptions": { 22 | "typeRoots" : ["node_modules/@bkper", "node_modules/@types" ] 23 | } 24 | } 25 | ``` 26 | 27 | [Learn more](https://www.typescriptlang.org/docs/handbook/tsconfig-json.html#types-typeroots-and-types) about **@types**, **typeRoots** and **types** 28 | 29 | # Details 30 | 31 | Generated using [clasp-types](https://github.com/maelcaldas/clasp-types) 32 | 33 | -------------------------------------------------------------------------------- /dist/@bkper/http-request-app-types/index.d.ts: -------------------------------------------------------------------------------- 1 | // Type definitions for HttpRequestApp 2 | // Generated using clasp-types 3 | 4 | declare namespace Bkper { 5 | 6 | /** 7 | * The main entry point to interact with HttpRequestApp 8 | * 9 | * Script ID: **1Iqaz0dbrlOXp9D2giO0DS6CDW_Q4IrgfhTJyYqxknww_OmFVF_4NQVR_** 10 | */ 11 | export interface HttpRequestApp { 12 | 13 | newRequest(url: string): HttpRequest; 14 | 15 | } 16 | 17 | /** 18 | * This class allows user to prepare the HttpRequest to fetch. 19 | */ 20 | export interface HttpRequest { 21 | 22 | /** 23 | * Adds a name=value query param to the url 24 | */ 25 | addParam(name: string, value: string): HttpRequest; 26 | 27 | /** 28 | * Executes the fetch request to the url. 29 | */ 30 | fetch(): GoogleAppsScript.URL_Fetch.HTTPResponse; 31 | 32 | /** 33 | * Gets the content type of the request 34 | */ 35 | getContentType(): string; 36 | 37 | /** 38 | * Gets the result url, with query params appended. 39 | */ 40 | getUrl(): string; 41 | 42 | /** 43 | * Sets the content type for the request (defaults to 'application/x-www-form-urlencoded'). 44 | * 45 | * Another example of content type is 'application/json; charset=utf-8'. 46 | */ 47 | setContentType(contentType: string): HttpRequest; 48 | 49 | /** 50 | * If false reserved characters in the URL aren't escaped. The default is true. 51 | */ 52 | setEscaping(escaping: boolean): HttpRequest; 53 | 54 | /** 55 | * If false the fetch doesn't automatically follow HTTP redirects; it returns the original HTTP response. The default is true. 56 | */ 57 | setFollowRedirects(followRedirects: boolean): HttpRequest; 58 | 59 | /** 60 | * Sets an name/value HTTP header pair for the request. 61 | */ 62 | setHeader(name: string, value: string): HttpRequest; 63 | 64 | /** 65 | * Sets the HTTP method for the request: get, delete, patch, post, or put. The default is get 66 | */ 67 | setMethod(method: GoogleAppsScript.URL_Fetch.HttpMethod): HttpRequest; 68 | 69 | /** 70 | * If true the fetch doesn't throw an exception if the response code indicates failure, and instead returns the HTTPResponse. The default is false. 71 | */ 72 | setMuteHttpExceptions(muteHttpExceptions: boolean): HttpRequest; 73 | 74 | /** 75 | * Sets the payload (that is, the POST body) for the request. 76 | * 77 | * Certain HTTP methods (for example, GET) do not accept a payload. 78 | * 79 | * It can be a string, a byte array, a blob, or a JavaScript object. 80 | * 81 | * A JavaScript object is interpreted as a map of form field names to values, where the values can be either strings or blobs. 82 | */ 83 | setPayload(payload: GoogleAppsScript.URL_Fetch.Payload): HttpRequest; 84 | 85 | /** 86 | * If false the fetch ignores any invalid certificates for HTTPS requests. The default is true. 87 | */ 88 | setValidateHttpsCertificates(validateHttpsCertificates: boolean): HttpRequest; 89 | 90 | } 91 | 92 | } 93 | 94 | declare var HttpRequestApp: Bkper.HttpRequestApp; -------------------------------------------------------------------------------- /dist/@bkper/http-request-app-types/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@bkper/http-request-app-types", 3 | "version": "1.0.9", 4 | "description": "Typescript definitions for HttpRequestApp", 5 | "homepage": "https://bkper.com/docs/", 6 | "repository": { 7 | "type": "git", 8 | "url": "https://github.com/bkper/http-request-app.git" 9 | }, 10 | "bugs": { 11 | "url": "https://github.com/bkper/http-request-app/issues", 12 | "email": "mael@bkper.com" 13 | }, 14 | "author": "Mael Caldas ", 15 | "license": "MIT", 16 | "scripts": {}, 17 | "devDependencies": {}, 18 | "types": "./index.d.ts" 19 | } -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@bkper/http-request-app", 3 | "version": "1.0.9", 4 | "description": "Fluent interface for Google Apps Script URL Fetch Service, to simplify 3rd party API integrations", 5 | "homepage": "https://bkper.com/docs/", 6 | "repository": { 7 | "type": "git", 8 | "url": "https://github.com/bkper/http-request-app.git" 9 | }, 10 | "bugs": { 11 | "url": "https://github.com/bkper/http-request-app/issues", 12 | "email": "mael@bkper.com" 13 | }, 14 | "author": "Mael Caldas ", 15 | "license": "MIT", 16 | "scripts": { 17 | "clean": "rimraf build && rimraf dist", 18 | "login": "clasp login", 19 | "open": "clasp open", 20 | "pull": "clasp pull", 21 | "push": "clasp push", 22 | "watch": "yarn push --watch", 23 | "test": "run-s test:*", 24 | "test:bundle": "tsc --skipLibCheck --sourcemap --outFile build/test-bundle.js --module system", 25 | "test:run": "mocha --require source-map-support/register build/test-bundle.js", 26 | "build": "yarn && run-s clean test build:*", 27 | "build:types": "yarn clasp-types", 28 | "patch": "yarn version --patch", 29 | "minor": "yarn version --minor", 30 | "major": "yarn version --major", 31 | "preversion": "run-s build push", 32 | "postversion": "clasp version $npm_package_version && git push && git push --tags && echo \"Successfully released version $npm_package_version!\"", 33 | "publish-types": "yarn build && yarn --cwd dist/@bkper/http-request-app-types publish --new-version $npm_package_version --access public" 34 | }, 35 | "devDependencies": { 36 | "@google/clasp": "^2.3.0", 37 | "@types/chai": "^4.2.11", 38 | "@types/google-apps-script": "^1.0.13", 39 | "@types/mocha": "^7.0.2", 40 | "@types/node": "^13.13.4", 41 | "chai": "^4.2.0", 42 | "clasp-types": "^1.1.7", 43 | "mocha": "^7.1.2", 44 | "npm-run-all": "^4.1.5", 45 | "rimraf": "^3.0.2", 46 | "source-map-support": "^0.5.19" 47 | } 48 | } 49 | -------------------------------------------------------------------------------- /src/HttpRequest.ts: -------------------------------------------------------------------------------- 1 | /** 2 | * 3 | * This class allows user to prepare the HttpRequest to fetch. 4 | * 5 | * @public 6 | */ 7 | class HttpRequest { 8 | private url: string; 9 | private params: Array<{name: string, value: string}>; 10 | private options: GoogleAppsScript.URL_Fetch.URLFetchRequestOptions = {}; 11 | 12 | constructor(url: string) { 13 | let parts = url.split('?'); 14 | this.url = parts[0]; 15 | if (parts.length == 2) { 16 | let params = parts[1].split('&'); 17 | params.forEach(param => { 18 | let keyValue = param.split('='); 19 | if (keyValue.length == 2) { 20 | this.addParam(keyValue[0], keyValue[1]) 21 | } 22 | }); 23 | } 24 | } 25 | 26 | /** 27 | * Sets the HTTP method for the request: get, delete, patch, post, or put. The default is get 28 | */ 29 | public setMethod(method: GoogleAppsScript.URL_Fetch.HttpMethod): HttpRequest { 30 | this.options.method = method; 31 | return this; 32 | } 33 | 34 | /** 35 | * Sets an name/value HTTP header pair for the request. 36 | */ 37 | public setHeader(name: string, value: string): HttpRequest { 38 | if (this.options.headers == null) { 39 | this.options.headers = {} as GoogleAppsScript.URL_Fetch.HttpHeaders; 40 | } 41 | this.options.headers[name] = value; 42 | return this; 43 | } 44 | 45 | /** 46 | * Adds a name=value query param to the url 47 | */ 48 | public addParam(name: string, value: string): HttpRequest { 49 | if (this.params == null) { 50 | this.params = []; 51 | } 52 | this.params.push({name, value}); 53 | return this; 54 | } 55 | 56 | /** 57 | * Sets the content type for the request (defaults to 'application/x-www-form-urlencoded'). 58 | * 59 | * Another example of content type is 'application/json; charset=utf-8'. 60 | */ 61 | public setContentType(contentType: string): HttpRequest { 62 | this.options.contentType = contentType; 63 | return this; 64 | } 65 | 66 | /** 67 | * Gets the content type of the request 68 | */ 69 | public getContentType(): string { 70 | return this.options.contentType; 71 | } 72 | 73 | /** 74 | * Sets the payload (that is, the POST body) for the request. 75 | * 76 | * Certain HTTP methods (for example, GET) do not accept a payload. 77 | * 78 | * It can be a string, a byte array, a blob, or a JavaScript object. 79 | * 80 | * A JavaScript object is interpreted as a map of form field names to values, where the values can be either strings or blobs. 81 | */ 82 | public setPayload(payload: GoogleAppsScript.URL_Fetch.Payload): HttpRequest { 83 | this.options.payload = payload; 84 | return this; 85 | } 86 | 87 | /** 88 | * If false the fetch ignores any invalid certificates for HTTPS requests. The default is true. 89 | */ 90 | public setValidateHttpsCertificates(validateHttpsCertificates: boolean): HttpRequest { 91 | this.options.validateHttpsCertificates = validateHttpsCertificates; 92 | return this; 93 | } 94 | 95 | /** 96 | * If false the fetch doesn't automatically follow HTTP redirects; it returns the original HTTP response. The default is true. 97 | */ 98 | public setFollowRedirects(followRedirects: boolean): HttpRequest { 99 | this.options.followRedirects = followRedirects; 100 | return this; 101 | } 102 | 103 | /** 104 | * If true the fetch doesn't throw an exception if the response code indicates failure, and instead returns the HTTPResponse. The default is false. 105 | */ 106 | public setMuteHttpExceptions(muteHttpExceptions: boolean): HttpRequest { 107 | this.options.muteHttpExceptions = muteHttpExceptions; 108 | return this; 109 | } 110 | 111 | /** 112 | * If false reserved characters in the URL aren't escaped. The default is true. 113 | */ 114 | public setEscaping(escaping: boolean): HttpRequest { 115 | this.options.escaping = escaping; 116 | return this; 117 | } 118 | 119 | /** 120 | * Gets the result url, with query params appended. 121 | */ 122 | public getUrl(): string { 123 | let url = this.url; 124 | if (this.params != null) { 125 | let i = 0 126 | if (url.indexOf('?') < 0) { 127 | url += '?'; 128 | } else { 129 | i++; 130 | } 131 | for (const param of this.params) { 132 | if (i > 0) { 133 | url += "&"; 134 | } 135 | var key = param.name; 136 | var value = param.value; 137 | if (value != null) { 138 | url += key + "=" + encodeURIComponent(value); 139 | i++; 140 | } 141 | } 142 | 143 | } 144 | return url 145 | } 146 | 147 | /** 148 | * Executes the fetch request to the url. 149 | */ 150 | public fetch(): GoogleAppsScript.URL_Fetch.HTTPResponse { 151 | return UrlFetchApp.fetch(this.getUrl(), this.options); 152 | }; 153 | 154 | } 155 | -------------------------------------------------------------------------------- /src/HttpRequestApp.ts: -------------------------------------------------------------------------------- 1 | /** 2 | * 3 | * @public 4 | * 5 | * @param url The target url of the http request to fetch from. 6 | */ 7 | function newRequest(url: string): HttpRequest { 8 | return new HttpRequest(url) 9 | } -------------------------------------------------------------------------------- /src/appsscript.json: -------------------------------------------------------------------------------- 1 | { 2 | "timeZone": "America/Sao_Paulo", 3 | "dependencies": { 4 | }, 5 | "exceptionLogging": "STACKDRIVER", 6 | "runtimeVersion": "V8" 7 | } -------------------------------------------------------------------------------- /test/HttpRequest.spec.ts: -------------------------------------------------------------------------------- 1 | var expect = require('chai').expect; 2 | 3 | describe('HttpRequest', () => { 4 | it('should accept url with no params', () => { 5 | let httpRequest = newRequest("https://api.exchangeratesapi.io/latest") 6 | expect(httpRequest.getUrl()).to.equal("https://api.exchangeratesapi.io/latest"); 7 | }); 8 | 9 | it('should append one param', () => { 10 | let httpRequest = newRequest("https://api.exchangeratesapi.io/latest") 11 | .addParam('base', 'USD') 12 | expect(httpRequest.getUrl()).to.equal("https://api.exchangeratesapi.io/latest?base=USD"); 13 | }); 14 | 15 | it('should append multiple params', () => { 16 | let httpRequest = newRequest("https://api.exchangeratesapi.io/history") 17 | .addParam('start_at', '2018-01-01') 18 | .addParam('end_at', '2018-09-01') 19 | expect(httpRequest.getUrl()).to.equal("https://api.exchangeratesapi.io/history?start_at=2018-01-01&end_at=2018-09-01"); 20 | }); 21 | 22 | it('should allow multiple params with same namee', () => { 23 | let httpRequest = newRequest("https://api.exchangeratesapi.io/history") 24 | .addParam('id', 'x') 25 | .addParam('id', 'y') 26 | expect(httpRequest.getUrl()).to.equal("https://api.exchangeratesapi.io/history?id=x&id=y"); 27 | }); 28 | 29 | it('should not append ? twice', () => { 30 | let httpRequest = newRequest("https://api.exchangeratesapi.io/history?key=xxx") 31 | .addParam('start_at', '2018-01-01') 32 | .addParam('end_at', '2018-09-01') 33 | expect(httpRequest.getUrl()).to.equal("https://api.exchangeratesapi.io/history?key=xxx&start_at=2018-01-01&end_at=2018-09-01"); 34 | }); 35 | 36 | it('should parse query on constructor', () => { 37 | let httpRequest = newRequest("https://api.exchangeratesapi.io/history?key=xxx&id=yyy") 38 | .addParam('start_at', '2018-01-01') 39 | .addParam('end_at', '2018-09-01') 40 | expect(httpRequest.getUrl()).to.equal("https://api.exchangeratesapi.io/history?key=xxx&id=yyy&start_at=2018-01-01&end_at=2018-09-01"); 41 | }); 42 | 43 | }); -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "compilerOptions": { 3 | "module": "none", 4 | "experimentalDecorators": true, 5 | "lib": [ "esnext" ], 6 | "target": "ES6", 7 | "noImplicitAny": true 8 | }, 9 | "include": [ 10 | "src/**/*.ts", 11 | "@types/**/*.d.ts", 12 | "test/**/*.ts", 13 | ], 14 | "exclude": [ 15 | "node_modules/", 16 | "dist/" 17 | ] 18 | 19 | } -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- 1 | # THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY. 2 | # yarn lockfile v1 3 | 4 | 5 | "@google/clasp@^2.3.0": 6 | version "2.3.0" 7 | resolved "https://registry.yarnpkg.com/@google/clasp/-/clasp-2.3.0.tgz#3bc7c3c82ae218e7a75b5e127242f736ac3bf35b" 8 | integrity sha512-P/l7ciNoHdfGsYGDBtkbpuLjH05vn6sIK/K7ehGWF8uK1GiHVMEb4tXIFNbFsTEzQvCg3QILZhJAnQEGqUAefQ== 9 | dependencies: 10 | chalk "^2.4.2" 11 | cli-spinner "^0.2.10" 12 | commander "^3.0.1" 13 | dotf "^1.2.0" 14 | ellipsize "^0.1.0" 15 | find-up "^4.1.0" 16 | fs-extra "^8.1.0" 17 | fuzzy "^0.1.3" 18 | gaxios "^2.0.1" 19 | google-auth-library "^5.2.1" 20 | googleapis "^42.0.0" 21 | inquirer "^7.0.0" 22 | inquirer-autocomplete-prompt "1.0.1" 23 | is-online "^8.2.0" 24 | mkdirp "^0.5.1" 25 | multimatch "^4.0.0" 26 | normalize-newline "3.0.0" 27 | open "^6.4.0" 28 | pluralize "^8.0.0" 29 | recursive-readdir "^2.2.2" 30 | split-lines "^2.0.0" 31 | strip-bom "^4.0.0" 32 | ts2gas "^3.4.4" 33 | typescript "^3.6.2" 34 | watch "^1.0.2" 35 | 36 | "@sindresorhus/is@^0.14.0": 37 | version "0.14.0" 38 | resolved "https://registry.yarnpkg.com/@sindresorhus/is/-/is-0.14.0.tgz#9fb3a3cf3132328151f353de4632e01e52102bea" 39 | integrity sha512-9NET910DNaIPngYnLLPeg+Ogzqsi9uM4mSboU5y6p8S5DzMTVEsJZrawi+BoDNUVBa2DhJqQYUFvMDfgU062LQ== 40 | 41 | "@szmarczak/http-timer@^1.1.2": 42 | version "1.1.2" 43 | resolved "https://registry.yarnpkg.com/@szmarczak/http-timer/-/http-timer-1.1.2.tgz#b1665e2c461a2cd92f4c1bbf50d5454de0d4b421" 44 | integrity sha512-XIB2XbzHTN6ieIjfIMV9hlVcfPU26s2vafYWQcZHWXHOxiaRZYEDKEwdl129Zyg50+foYV2jCgtrqSA6qNuNSA== 45 | dependencies: 46 | defer-to-connect "^1.0.1" 47 | 48 | "@types/chai@^4.2.11": 49 | version "4.2.11" 50 | resolved "https://registry.yarnpkg.com/@types/chai/-/chai-4.2.11.tgz#d3614d6c5f500142358e6ed24e1bf16657536c50" 51 | integrity sha512-t7uW6eFafjO+qJ3BIV2gGUyZs27egcNRkUdalkud+Qa3+kg//f129iuOFivHDXQ+vnU3fDXuwgv0cqMCbcE8sw== 52 | 53 | "@types/color-name@^1.1.1": 54 | version "1.1.1" 55 | resolved "https://registry.yarnpkg.com/@types/color-name/-/color-name-1.1.1.tgz#1c1261bbeaa10a8055bbc5d8ab84b7b2afc846a0" 56 | integrity sha512-rr+OQyAjxze7GgWrSaJwydHStIhHq2lvY3BOC2Mj7KnzI7XK0Uw1TOOdI9lDoajEbSWLiYgoo4f1R51erQfhPQ== 57 | 58 | "@types/google-apps-script@^1.0.13": 59 | version "1.0.14" 60 | resolved "https://registry.yarnpkg.com/@types/google-apps-script/-/google-apps-script-1.0.14.tgz#194d0d1c5236651ddae03c512891605c88501839" 61 | integrity sha512-dxYrClArM39GGlANFbCJiBg+wBmmK5VuBW2/JBaqg6Bo/OpAcXJoQ69zml6HmuHoKJDw1WR+BRxeJ/U9L9dk8A== 62 | 63 | "@types/minimatch@3.0.3", "@types/minimatch@^3.0.3": 64 | version "3.0.3" 65 | resolved "https://registry.yarnpkg.com/@types/minimatch/-/minimatch-3.0.3.tgz#3dca0e3f33b200fc7d1139c0cd96c1268cadfd9d" 66 | integrity sha512-tHq6qdbT9U1IRSGf14CL0pUlULksvY9OZ+5eEgl1N7t+OA3tGvNpxJCzuKQlsNgCVwbAs670L1vcVQi8j9HjnA== 67 | 68 | "@types/mocha@^7.0.2": 69 | version "7.0.2" 70 | resolved "https://registry.yarnpkg.com/@types/mocha/-/mocha-7.0.2.tgz#b17f16cf933597e10d6d78eae3251e692ce8b0ce" 71 | integrity sha512-ZvO2tAcjmMi8V/5Z3JsyofMe3hasRcaw88cto5etSVMwVQfeivGAlEYmaQgceUSVYFofVjT+ioHsATjdWcFt1w== 72 | 73 | "@types/node@^13.13.4": 74 | version "13.13.5" 75 | resolved "https://registry.yarnpkg.com/@types/node/-/node-13.13.5.tgz#96ec3b0afafd64a4ccea9107b75bf8489f0e5765" 76 | integrity sha512-3ySmiBYJPqgjiHA7oEaIo2Rzz0HrOZ7yrNO5HWyaE5q0lQ3BppDZ3N53Miz8bw2I7gh1/zir2MGVZBvpb1zq9g== 77 | 78 | abort-controller@^3.0.0: 79 | version "3.0.0" 80 | resolved "https://registry.yarnpkg.com/abort-controller/-/abort-controller-3.0.0.tgz#eaf54d53b62bae4138e809ca225c8439a6efb392" 81 | integrity sha512-h8lQ8tacZYnR3vNQTgibj+tODHI5/+l06Au2Pcriv/Gmet0eaj4TwWH41sO9wnHDiQsEj19q0drzdWdeAHtweg== 82 | dependencies: 83 | event-target-shim "^5.0.0" 84 | 85 | agent-base@6: 86 | version "6.0.0" 87 | resolved "https://registry.yarnpkg.com/agent-base/-/agent-base-6.0.0.tgz#5d0101f19bbfaed39980b22ae866de153b93f09a" 88 | integrity sha512-j1Q7cSCqN+AwrmDd+pzgqc0/NpC655x2bUf5ZjRIO77DcNBFmh+OgRNzF6OKdCC9RSCb19fGd99+bhXFdkRNqw== 89 | dependencies: 90 | debug "4" 91 | 92 | aggregate-error@^3.0.0: 93 | version "3.0.1" 94 | resolved "https://registry.yarnpkg.com/aggregate-error/-/aggregate-error-3.0.1.tgz#db2fe7246e536f40d9b5442a39e117d7dd6a24e0" 95 | integrity sha512-quoaXsZ9/BLNae5yiNoUz+Nhkwz83GhWwtYFglcjEQB2NDHCIpApbqXxIFnm4Pq/Nvhrsq5sYJFyohrrxnTGAA== 96 | dependencies: 97 | clean-stack "^2.0.0" 98 | indent-string "^4.0.0" 99 | 100 | ansi-colors@3.2.3: 101 | version "3.2.3" 102 | resolved "https://registry.yarnpkg.com/ansi-colors/-/ansi-colors-3.2.3.tgz#57d35b8686e851e2cc04c403f1c00203976a1813" 103 | integrity sha512-LEHHyuhlPY3TmuUYMh2oz89lTShfvgbmzaBcxve9t/9Wuy7Dwf4yoAKcND7KFT1HAQfqZ12qtc+DUrBMeKF9nw== 104 | 105 | ansi-escapes@^3.0.0: 106 | version "3.2.0" 107 | resolved "https://registry.yarnpkg.com/ansi-escapes/-/ansi-escapes-3.2.0.tgz#8780b98ff9dbf5638152d1f1fe5c1d7b4442976b" 108 | integrity sha512-cBhpre4ma+U0T1oM5fXg7Dy1Jw7zzwv7lt/GoCpr+hDQJoYnKVPLL4dCvSEFMmQurOQvSrwT7SL/DAlhBI97RQ== 109 | 110 | ansi-escapes@^4.2.1: 111 | version "4.3.1" 112 | resolved "https://registry.yarnpkg.com/ansi-escapes/-/ansi-escapes-4.3.1.tgz#a5c47cc43181f1f38ffd7076837700d395522a61" 113 | integrity sha512-JWF7ocqNrp8u9oqpgV+wH5ftbt+cfvv+PTjOvKLT3AdYly/LmORARfEVT1iyjwN+4MqE5UmVKoAdIBqeoCHgLA== 114 | dependencies: 115 | type-fest "^0.11.0" 116 | 117 | ansi-regex@^3.0.0: 118 | version "3.0.0" 119 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-3.0.0.tgz#ed0317c322064f79466c02966bddb605ab37d998" 120 | integrity sha1-7QMXwyIGT3lGbAKWa922Bas32Zg= 121 | 122 | ansi-regex@^4.1.0: 123 | version "4.1.0" 124 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-4.1.0.tgz#8b9f8f08cf1acb843756a839ca8c7e3168c51997" 125 | integrity sha512-1apePfXM1UOSqw0o9IiFAovVz9M5S1Dg+4TrDwfMewQ6p/rmMueb7tWZjQ1rx4Loy1ArBggoqGpfqqdI4rondg== 126 | 127 | ansi-regex@^5.0.0: 128 | version "5.0.0" 129 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-5.0.0.tgz#388539f55179bf39339c81af30a654d69f87cb75" 130 | integrity sha512-bY6fj56OUQ0hU1KjFNDQuJFezqKdrAyFdIevADiqrWHwSlbmBNMHp5ak2f40Pm8JTFyM2mqxkG6ngkHO11f/lg== 131 | 132 | ansi-styles@^3.2.0, ansi-styles@^3.2.1: 133 | version "3.2.1" 134 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-3.2.1.tgz#41fbb20243e50b12be0f04b8dedbf07520ce841d" 135 | integrity sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA== 136 | dependencies: 137 | color-convert "^1.9.0" 138 | 139 | ansi-styles@^4.1.0: 140 | version "4.2.1" 141 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-4.2.1.tgz#90ae75c424d008d2624c5bf29ead3177ebfcf359" 142 | integrity sha512-9VGjrMsG1vePxcSweQsN20KY/c4zN0h9fLjqAbwbPfahM3t+NL+M9HC8xeXG2I8pX5NoamTGNuomEUFI7fcUjA== 143 | dependencies: 144 | "@types/color-name" "^1.1.1" 145 | color-convert "^2.0.1" 146 | 147 | anymatch@~3.1.1: 148 | version "3.1.1" 149 | resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-3.1.1.tgz#c55ecf02185e2469259399310c173ce31233b142" 150 | integrity sha512-mM8522psRCqzV+6LhomX5wgp25YVibjh8Wj23I5RPkPppSVSjyKD2A2mBJmWGa+KN7f2D6LNh9jkBCeyLktzjg== 151 | dependencies: 152 | normalize-path "^3.0.0" 153 | picomatch "^2.0.4" 154 | 155 | argparse@^1.0.7: 156 | version "1.0.10" 157 | resolved "https://registry.yarnpkg.com/argparse/-/argparse-1.0.10.tgz#bcd6791ea5ae09725e17e5ad988134cd40b3d911" 158 | integrity sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg== 159 | dependencies: 160 | sprintf-js "~1.0.2" 161 | 162 | array-differ@^3.0.0: 163 | version "3.0.0" 164 | resolved "https://registry.yarnpkg.com/array-differ/-/array-differ-3.0.0.tgz#3cbb3d0f316810eafcc47624734237d6aee4ae6b" 165 | integrity sha512-THtfYS6KtME/yIAhKjZ2ul7XI96lQGHRputJQHO80LAWQnuGP4iCIN8vdMRboGbIEYBwU33q8Tch1os2+X0kMg== 166 | 167 | array-union@^2.1.0: 168 | version "2.1.0" 169 | resolved "https://registry.yarnpkg.com/array-union/-/array-union-2.1.0.tgz#b798420adbeb1de828d84acd8a2e23d3efe85e8d" 170 | integrity sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw== 171 | 172 | arrify@^2.0.0, arrify@^2.0.1: 173 | version "2.0.1" 174 | resolved "https://registry.yarnpkg.com/arrify/-/arrify-2.0.1.tgz#c9655e9331e0abcd588d2a7cad7e9956f66701fa" 175 | integrity sha512-3duEwti880xqi4eAMN8AyR4a0ByT90zoYdLlevfrvU43vb0YZwZVfxOgxWrLXXXpyugL0hNZc9G6BiB5B3nUug== 176 | 177 | assertion-error@^1.1.0: 178 | version "1.1.0" 179 | resolved "https://registry.yarnpkg.com/assertion-error/-/assertion-error-1.1.0.tgz#e60b6b0e8f301bd97e5375215bda406c85118c0b" 180 | integrity sha512-jgsaNduz+ndvGyFt3uSuWqvy4lCnIJiovtouQN5JZHOKCS2QuhEdbcQHFhVksz2N2U9hXJo8odG7ETyWlEeuDw== 181 | 182 | backbone@^1.4.0: 183 | version "1.4.0" 184 | resolved "https://registry.yarnpkg.com/backbone/-/backbone-1.4.0.tgz#54db4de9df7c3811c3f032f34749a4cd27f3bd12" 185 | integrity sha512-RLmDrRXkVdouTg38jcgHhyQ/2zjg7a8E6sz2zxfz21Hh17xDJYUHBZimVIt5fUyS8vbfpeSmTL3gUjTEvUV3qQ== 186 | dependencies: 187 | underscore ">=1.8.3" 188 | 189 | balanced-match@^1.0.0: 190 | version "1.0.0" 191 | resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.0.tgz#89b4d199ab2bee49de164ea02b89ce462d71b767" 192 | integrity sha1-ibTRmasr7kneFk6gK4nORi1xt2c= 193 | 194 | base64-js@^1.3.0: 195 | version "1.3.1" 196 | resolved "https://registry.yarnpkg.com/base64-js/-/base64-js-1.3.1.tgz#58ece8cb75dd07e71ed08c736abc5fac4dbf8df1" 197 | integrity sha512-mLQ4i2QO1ytvGWFWmcngKO//JXAQueZvwEKtjgQFM4jIK0kU+ytMfplL8j+n5mspOfjHwoAg+9yhb7BwAHm36g== 198 | 199 | bignumber.js@^7.0.0: 200 | version "7.2.1" 201 | resolved "https://registry.yarnpkg.com/bignumber.js/-/bignumber.js-7.2.1.tgz#80c048759d826800807c4bfd521e50edbba57a5f" 202 | integrity sha512-S4XzBk5sMB+Rcb/LNcpzXr57VRTxgAvaAEDAl1AwRx27j00hT84O6OkteE7u8UB3NuaaygCRrEpqox4uDOrbdQ== 203 | 204 | binary-extensions@^2.0.0: 205 | version "2.0.0" 206 | resolved "https://registry.yarnpkg.com/binary-extensions/-/binary-extensions-2.0.0.tgz#23c0df14f6a88077f5f986c0d167ec03c3d5537c" 207 | integrity sha512-Phlt0plgpIIBOGTT/ehfFnbNlfsDEiqmzE2KRXoX1bLIlir4X/MR+zSyBEkL05ffWgnRSf/DXv+WrUAVr93/ow== 208 | 209 | brace-expansion@^1.1.7: 210 | version "1.1.11" 211 | resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.11.tgz#3c7fcbf529d87226f3d2f52b966ff5271eb441dd" 212 | integrity sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA== 213 | dependencies: 214 | balanced-match "^1.0.0" 215 | concat-map "0.0.1" 216 | 217 | braces@~3.0.2: 218 | version "3.0.2" 219 | resolved "https://registry.yarnpkg.com/braces/-/braces-3.0.2.tgz#3454e1a462ee8d599e236df336cd9ea4f8afe107" 220 | integrity sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A== 221 | dependencies: 222 | fill-range "^7.0.1" 223 | 224 | browser-stdout@1.3.1: 225 | version "1.3.1" 226 | resolved "https://registry.yarnpkg.com/browser-stdout/-/browser-stdout-1.3.1.tgz#baa559ee14ced73452229bad7326467c61fabd60" 227 | integrity sha512-qhAVI1+Av2X7qelOfAIYwXONood6XlZE/fXaBSmW/T5SzLAmCgzi+eiWE7fUvbHaeNBQH13UftjpXxsfLkMpgw== 228 | 229 | buffer-equal-constant-time@1.0.1: 230 | version "1.0.1" 231 | resolved "https://registry.yarnpkg.com/buffer-equal-constant-time/-/buffer-equal-constant-time-1.0.1.tgz#f8e71132f7ffe6e01a5c9697a4c6f3e48d5cc819" 232 | integrity sha1-+OcRMvf/5uAaXJaXpMbz5I1cyBk= 233 | 234 | buffer-from@^1.0.0: 235 | version "1.1.1" 236 | resolved "https://registry.yarnpkg.com/buffer-from/-/buffer-from-1.1.1.tgz#32713bc028f75c02fdb710d7c7bcec1f2c6070ef" 237 | integrity sha512-MQcXEUbCKtEo7bhqEs6560Hyd4XaovZlO/k9V3hjVUF/zwW7KBVdSK4gIt/bzwS9MbR5qob+F5jusZsb0YQK2A== 238 | 239 | cacheable-request@^6.0.0: 240 | version "6.1.0" 241 | resolved "https://registry.yarnpkg.com/cacheable-request/-/cacheable-request-6.1.0.tgz#20ffb8bd162ba4be11e9567d823db651052ca912" 242 | integrity sha512-Oj3cAGPCqOZX7Rz64Uny2GYAZNliQSqfbePrgAQ1wKAihYmCUnraBtJtKcGR4xz7wF+LoJC+ssFZvv5BgF9Igg== 243 | dependencies: 244 | clone-response "^1.0.2" 245 | get-stream "^5.1.0" 246 | http-cache-semantics "^4.0.0" 247 | keyv "^3.0.0" 248 | lowercase-keys "^2.0.0" 249 | normalize-url "^4.1.0" 250 | responselike "^1.0.2" 251 | 252 | camelcase@^5.0.0: 253 | version "5.3.1" 254 | resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-5.3.1.tgz#e3c9b31569e106811df242f715725a1f4c494320" 255 | integrity sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg== 256 | 257 | chai@^4.2.0: 258 | version "4.2.0" 259 | resolved "https://registry.yarnpkg.com/chai/-/chai-4.2.0.tgz#760aa72cf20e3795e84b12877ce0e83737aa29e5" 260 | integrity sha512-XQU3bhBukrOsQCuwZndwGcCVQHyZi53fQ6Ys1Fym7E4olpIqqZZhhoFJoaKVvV17lWQoXYwgWN2nF5crA8J2jw== 261 | dependencies: 262 | assertion-error "^1.1.0" 263 | check-error "^1.0.2" 264 | deep-eql "^3.0.1" 265 | get-func-name "^2.0.0" 266 | pathval "^1.1.0" 267 | type-detect "^4.0.5" 268 | 269 | chalk@^2.0.0, chalk@^2.4.1, chalk@^2.4.2: 270 | version "2.4.2" 271 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-2.4.2.tgz#cd42541677a54333cf541a49108c1432b44c9424" 272 | integrity sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ== 273 | dependencies: 274 | ansi-styles "^3.2.1" 275 | escape-string-regexp "^1.0.5" 276 | supports-color "^5.3.0" 277 | 278 | chalk@^3.0.0: 279 | version "3.0.0" 280 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-3.0.0.tgz#3f73c2bf526591f574cc492c51e2456349f844e4" 281 | integrity sha512-4D3B6Wf41KOYRFdszmDqMCGq5VV/uMAB273JILmO+3jAlh8X4qDtdtgCR3fxtbLEMzSx22QdhnDcJvu2u1fVwg== 282 | dependencies: 283 | ansi-styles "^4.1.0" 284 | supports-color "^7.1.0" 285 | 286 | chardet@^0.7.0: 287 | version "0.7.0" 288 | resolved "https://registry.yarnpkg.com/chardet/-/chardet-0.7.0.tgz#90094849f0937f2eedc2425d0d28a9e5f0cbad9e" 289 | integrity sha512-mT8iDcrh03qDGRRmoA2hmBJnxpllMR+0/0qlzjqZES6NdiWDcZkCNAk4rPFZ9Q85r27unkiNNg8ZOiwZXBHwcA== 290 | 291 | check-error@^1.0.2: 292 | version "1.0.2" 293 | resolved "https://registry.yarnpkg.com/check-error/-/check-error-1.0.2.tgz#574d312edd88bb5dd8912e9286dd6c0aed4aac82" 294 | integrity sha1-V00xLt2Iu13YkS6Sht1sCu1KrII= 295 | 296 | chokidar@3.3.0: 297 | version "3.3.0" 298 | resolved "https://registry.yarnpkg.com/chokidar/-/chokidar-3.3.0.tgz#12c0714668c55800f659e262d4962a97faf554a6" 299 | integrity sha512-dGmKLDdT3Gdl7fBUe8XK+gAtGmzy5Fn0XkkWQuYxGIgWVPPse2CxFA5mtrlD0TOHaHjEUqkWNyP1XdHoJES/4A== 300 | dependencies: 301 | anymatch "~3.1.1" 302 | braces "~3.0.2" 303 | glob-parent "~5.1.0" 304 | is-binary-path "~2.1.0" 305 | is-glob "~4.0.1" 306 | normalize-path "~3.0.0" 307 | readdirp "~3.2.0" 308 | optionalDependencies: 309 | fsevents "~2.1.1" 310 | 311 | clasp-types@^1.1.7: 312 | version "1.1.7" 313 | resolved "https://registry.yarnpkg.com/clasp-types/-/clasp-types-1.1.7.tgz#e657e244380ebd44edb7458fbba9d43d551888f5" 314 | integrity sha512-uzx4Hx9xD7VlzZow175layZeu6c1fTBVvUhAxmgGjdeL7/SET0TV3S4+6R4SATtdcBiCE8mD7tnM9oaKdKQOlA== 315 | dependencies: 316 | commander "^3.0.1" 317 | fs-extra "^8.1.0" 318 | typedoc "^0.16.2" 319 | 320 | clean-stack@^2.0.0: 321 | version "2.2.0" 322 | resolved "https://registry.yarnpkg.com/clean-stack/-/clean-stack-2.2.0.tgz#ee8472dbb129e727b31e8a10a427dee9dfe4008b" 323 | integrity sha512-4diC9HaTE+KRAMWhDhrGOECgWZxoevMc5TlkObMqNSsVU62PYzXZ/SMTjzyGAFF1YusgxGcSWTEXBhp0CPwQ1A== 324 | 325 | cli-cursor@^3.1.0: 326 | version "3.1.0" 327 | resolved "https://registry.yarnpkg.com/cli-cursor/-/cli-cursor-3.1.0.tgz#264305a7ae490d1d03bf0c9ba7c925d1753af307" 328 | integrity sha512-I/zHAwsKf9FqGoXM4WWRACob9+SNukZTd94DWF57E4toouRulbCxcUh6RKUEOQlYTHJnzkPMySvPNaaSLNfLZw== 329 | dependencies: 330 | restore-cursor "^3.1.0" 331 | 332 | cli-spinner@^0.2.10: 333 | version "0.2.10" 334 | resolved "https://registry.yarnpkg.com/cli-spinner/-/cli-spinner-0.2.10.tgz#f7d617a36f5c47a7bc6353c697fc9338ff782a47" 335 | integrity sha512-U0sSQ+JJvSLi1pAYuJykwiA8Dsr15uHEy85iCJ6A+0DjVxivr3d+N2Wjvodeg89uP5K6TswFkKBfAD7B3YSn/Q== 336 | 337 | cli-width@^2.0.0: 338 | version "2.2.1" 339 | resolved "https://registry.yarnpkg.com/cli-width/-/cli-width-2.2.1.tgz#b0433d0b4e9c847ef18868a4ef16fd5fc8271c48" 340 | integrity sha512-GRMWDxpOB6Dgk2E5Uo+3eEBvtOOlimMmpbFiKuLFnQzYDavtLFY3K5ona41jgN/WdRZtG7utuVSVTL4HbZHGkw== 341 | 342 | cliui@^5.0.0: 343 | version "5.0.0" 344 | resolved "https://registry.yarnpkg.com/cliui/-/cliui-5.0.0.tgz#deefcfdb2e800784aa34f46fa08e06851c7bbbc5" 345 | integrity sha512-PYeGSEmmHM6zvoef2w8TPzlrnNpXIjTipYK780YswmIP9vjxmd6Y2a3CB2Ks6/AU8NHjZugXvo8w3oWM2qnwXA== 346 | dependencies: 347 | string-width "^3.1.0" 348 | strip-ansi "^5.2.0" 349 | wrap-ansi "^5.1.0" 350 | 351 | clone-response@^1.0.2: 352 | version "1.0.2" 353 | resolved "https://registry.yarnpkg.com/clone-response/-/clone-response-1.0.2.tgz#d1dc973920314df67fbeb94223b4ee350239e96b" 354 | integrity sha1-0dyXOSAxTfZ/vrlCI7TuNQI56Ws= 355 | dependencies: 356 | mimic-response "^1.0.0" 357 | 358 | color-convert@^1.9.0: 359 | version "1.9.3" 360 | resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-1.9.3.tgz#bb71850690e1f136567de629d2d5471deda4c1e8" 361 | integrity sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg== 362 | dependencies: 363 | color-name "1.1.3" 364 | 365 | color-convert@^2.0.1: 366 | version "2.0.1" 367 | resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-2.0.1.tgz#72d3a68d598c9bdb3af2ad1e84f21d896abd4de3" 368 | integrity sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ== 369 | dependencies: 370 | color-name "~1.1.4" 371 | 372 | color-name@1.1.3: 373 | version "1.1.3" 374 | resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.3.tgz#a7d0558bd89c42f795dd42328f740831ca53bc25" 375 | integrity sha1-p9BVi9icQveV3UIyj3QIMcpTvCU= 376 | 377 | color-name@~1.1.4: 378 | version "1.1.4" 379 | resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.4.tgz#c2a09a87acbde69543de6f63fa3995c826c536a2" 380 | integrity sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA== 381 | 382 | commander@^3.0.1: 383 | version "3.0.2" 384 | resolved "https://registry.yarnpkg.com/commander/-/commander-3.0.2.tgz#6837c3fb677ad9933d1cfba42dd14d5117d6b39e" 385 | integrity sha512-Gar0ASD4BDyKC4hl4DwHqDrmvjoxWKZigVnAbn5H1owvm4CxCPdb0HQDehwNYMJpla5+M2tPmPARzhtYuwpHow== 386 | 387 | commander@~2.20.3: 388 | version "2.20.3" 389 | resolved "https://registry.yarnpkg.com/commander/-/commander-2.20.3.tgz#fd485e84c03eb4881c20722ba48035e8531aeb33" 390 | integrity sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ== 391 | 392 | concat-map@0.0.1: 393 | version "0.0.1" 394 | resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b" 395 | integrity sha1-2Klr13/Wjfd5OnMDajug1UBdR3s= 396 | 397 | cross-spawn@^6.0.5: 398 | version "6.0.5" 399 | resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-6.0.5.tgz#4a5ec7c64dfae22c3a14124dbacdee846d80cbc4" 400 | integrity sha512-eTVLrBSt7fjbDygz805pMnstIs2VTBNkRm0qxZd+M7A5XDdxVRWO5MxGBXZhjY4cqLYLdtrGqRf8mBPmzwSpWQ== 401 | dependencies: 402 | nice-try "^1.0.4" 403 | path-key "^2.0.1" 404 | semver "^5.5.0" 405 | shebang-command "^1.2.0" 406 | which "^1.2.9" 407 | 408 | debug@3.2.6: 409 | version "3.2.6" 410 | resolved "https://registry.yarnpkg.com/debug/-/debug-3.2.6.tgz#e83d17de16d8a7efb7717edbe5fb10135eee629b" 411 | integrity sha512-mel+jf7nrtEl5Pn1Qx46zARXKDpBbvzezse7p7LqINmdoIk8PYP5SySaxEmYv6TZ0JyEKA1hsCId6DIhgITtWQ== 412 | dependencies: 413 | ms "^2.1.1" 414 | 415 | debug@4: 416 | version "4.1.1" 417 | resolved "https://registry.yarnpkg.com/debug/-/debug-4.1.1.tgz#3b72260255109c6b589cee050f1d516139664791" 418 | integrity sha512-pYAIzeRo8J6KPEaJ0VWOh5Pzkbw/RetuzehGM7QRRX5he4fPHx2rdKMB256ehJCkX+XRQm16eZLqLNS8RSZXZw== 419 | dependencies: 420 | ms "^2.1.1" 421 | 422 | decamelize@^1.2.0: 423 | version "1.2.0" 424 | resolved "https://registry.yarnpkg.com/decamelize/-/decamelize-1.2.0.tgz#f6534d15148269b20352e7bee26f501f9a191290" 425 | integrity sha1-9lNNFRSCabIDUue+4m9QH5oZEpA= 426 | 427 | decompress-response@^3.3.0: 428 | version "3.3.0" 429 | resolved "https://registry.yarnpkg.com/decompress-response/-/decompress-response-3.3.0.tgz#80a4dd323748384bfa248083622aedec982adff3" 430 | integrity sha1-gKTdMjdIOEv6JICDYirt7Jgq3/M= 431 | dependencies: 432 | mimic-response "^1.0.0" 433 | 434 | deep-eql@^3.0.1: 435 | version "3.0.1" 436 | resolved "https://registry.yarnpkg.com/deep-eql/-/deep-eql-3.0.1.tgz#dfc9404400ad1c8fe023e7da1df1c147c4b444df" 437 | integrity sha512-+QeIQyN5ZuO+3Uk5DYh6/1eKO0m0YmJFGNmFHGACpf1ClL1nmlV/p4gNgbl2pJGxgXb4faqo6UE+M5ACEMyVcw== 438 | dependencies: 439 | type-detect "^4.0.0" 440 | 441 | defer-to-connect@^1.0.1: 442 | version "1.1.3" 443 | resolved "https://registry.yarnpkg.com/defer-to-connect/-/defer-to-connect-1.1.3.tgz#331ae050c08dcf789f8c83a7b81f0ed94f4ac591" 444 | integrity sha512-0ISdNousHvZT2EiFlZeZAHBUvSxmKswVCEf8hW7KWgG4a8MVEu/3Vb6uWYozkjylyCxe0JBIiRB1jV45S70WVQ== 445 | 446 | define-properties@^1.1.2, define-properties@^1.1.3: 447 | version "1.1.3" 448 | resolved "https://registry.yarnpkg.com/define-properties/-/define-properties-1.1.3.tgz#cf88da6cbee26fe6db7094f61d870cbd84cee9f1" 449 | integrity sha512-3MqfYKj2lLzdMSf8ZIZE/V+Zuy+BgD6f164e8K2w7dgnpKArBDerGYpM46IYYcjnkdPNMjPk9A6VFB8+3SKlXQ== 450 | dependencies: 451 | object-keys "^1.0.12" 452 | 453 | diff@3.5.0: 454 | version "3.5.0" 455 | resolved "https://registry.yarnpkg.com/diff/-/diff-3.5.0.tgz#800c0dd1e0a8bfbc95835c202ad220fe317e5a12" 456 | integrity sha512-A46qtFgd+g7pDZinpnwiRJtxbC1hpgf0uzP3iG89scHk0AUC7A1TGxf5OiiOUv/JMZR8GOt8hL900hV0bOy5xA== 457 | 458 | dns-packet@^5.1.2: 459 | version "5.2.1" 460 | resolved "https://registry.yarnpkg.com/dns-packet/-/dns-packet-5.2.1.tgz#26cec0be92252a1b97ed106482921192a7e08f72" 461 | integrity sha512-JHj2yJeKOqlxzeuYpN1d56GfhzivAxavNwHj9co3qptECel27B1rLY5PifJAvubsInX5pGLDjAHuCfCUc2Zv/w== 462 | dependencies: 463 | ip "^1.1.5" 464 | 465 | dns-socket@^4.2.0: 466 | version "4.2.0" 467 | resolved "https://registry.yarnpkg.com/dns-socket/-/dns-socket-4.2.0.tgz#92575505c4c18ac3ad241f4bb3ff4369761557e9" 468 | integrity sha512-4XuD3z28jht3jvHbiom6fAipgG5LkjYeDLrX5OH8cbl0AtzTyUUAxGckcW8T7z0pLfBBV5qOiuC4wUEohk6FrQ== 469 | dependencies: 470 | dns-packet "^5.1.2" 471 | 472 | dotf@^1.2.0: 473 | version "1.5.0" 474 | resolved "https://registry.yarnpkg.com/dotf/-/dotf-1.5.0.tgz#c49ecb0129c5f60811d36ae8669e54d612ef0c9e" 475 | integrity sha512-t0RzzkjSrc1jDxUde8cbD0q0mB9xk0Hdgt1joeMUwXcWiP9V+Ydw7gHjoeeuBN8aiJbnXAaCiM5/U1C2aN1F1g== 476 | dependencies: 477 | graceful-fs "^4.2.3" 478 | jsonfile "^6.0.0" 479 | 480 | duplexer3@^0.1.4: 481 | version "0.1.4" 482 | resolved "https://registry.yarnpkg.com/duplexer3/-/duplexer3-0.1.4.tgz#ee01dd1cac0ed3cbc7fdbea37dc0a8f1ce002ce2" 483 | integrity sha1-7gHdHKwO08vH/b6jfcCo8c4ALOI= 484 | 485 | ecdsa-sig-formatter@1.0.11, ecdsa-sig-formatter@^1.0.11: 486 | version "1.0.11" 487 | resolved "https://registry.yarnpkg.com/ecdsa-sig-formatter/-/ecdsa-sig-formatter-1.0.11.tgz#ae0f0fa2d85045ef14a817daa3ce9acd0489e5bf" 488 | integrity sha512-nagl3RYrbNv6kQkeJIpt6NJZy8twLB/2vtz6yN9Z4vRKHN4/QZJIEbqohALSgwKdnksuY3k5Addp5lg8sVoVcQ== 489 | dependencies: 490 | safe-buffer "^5.0.1" 491 | 492 | ellipsize@^0.1.0: 493 | version "0.1.0" 494 | resolved "https://registry.yarnpkg.com/ellipsize/-/ellipsize-0.1.0.tgz#9d43682d44b91ad16ebd84268ac103170a6553f8" 495 | integrity sha1-nUNoLUS5GtFuvYQmisEDFwplU/g= 496 | 497 | emoji-regex@^7.0.1: 498 | version "7.0.3" 499 | resolved "https://registry.yarnpkg.com/emoji-regex/-/emoji-regex-7.0.3.tgz#933a04052860c85e83c122479c4748a8e4c72156" 500 | integrity sha512-CwBLREIQ7LvYFB0WyRvwhq5N5qPhc6PMjD6bYggFlI5YyDgl+0vxq5VHbMOFqLg7hfWzmu8T5Z1QofhmTIhItA== 501 | 502 | emoji-regex@^8.0.0: 503 | version "8.0.0" 504 | resolved "https://registry.yarnpkg.com/emoji-regex/-/emoji-regex-8.0.0.tgz#e818fd69ce5ccfcb404594f842963bf53164cc37" 505 | integrity sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A== 506 | 507 | end-of-stream@^1.1.0: 508 | version "1.4.4" 509 | resolved "https://registry.yarnpkg.com/end-of-stream/-/end-of-stream-1.4.4.tgz#5ae64a5f45057baf3626ec14da0ca5e4b2431eb0" 510 | integrity sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q== 511 | dependencies: 512 | once "^1.4.0" 513 | 514 | error-ex@^1.3.1: 515 | version "1.3.2" 516 | resolved "https://registry.yarnpkg.com/error-ex/-/error-ex-1.3.2.tgz#b4ac40648107fdcdcfae242f428bea8a14d4f1bf" 517 | integrity sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g== 518 | dependencies: 519 | is-arrayish "^0.2.1" 520 | 521 | es-abstract@^1.17.0-next.1, es-abstract@^1.17.5: 522 | version "1.17.5" 523 | resolved "https://registry.yarnpkg.com/es-abstract/-/es-abstract-1.17.5.tgz#d8c9d1d66c8981fb9200e2251d799eee92774ae9" 524 | integrity sha512-BR9auzDbySxOcfog0tLECW8l28eRGpDpU3Dm3Hp4q/N+VtLTmyj4EUN088XZWQDW/hzj6sYRDXeOFsaAODKvpg== 525 | dependencies: 526 | es-to-primitive "^1.2.1" 527 | function-bind "^1.1.1" 528 | has "^1.0.3" 529 | has-symbols "^1.0.1" 530 | is-callable "^1.1.5" 531 | is-regex "^1.0.5" 532 | object-inspect "^1.7.0" 533 | object-keys "^1.1.1" 534 | object.assign "^4.1.0" 535 | string.prototype.trimleft "^2.1.1" 536 | string.prototype.trimright "^2.1.1" 537 | 538 | es-to-primitive@^1.2.1: 539 | version "1.2.1" 540 | resolved "https://registry.yarnpkg.com/es-to-primitive/-/es-to-primitive-1.2.1.tgz#e55cd4c9cdc188bcefb03b366c736323fc5c898a" 541 | integrity sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA== 542 | dependencies: 543 | is-callable "^1.1.4" 544 | is-date-object "^1.0.1" 545 | is-symbol "^1.0.2" 546 | 547 | escape-string-regexp@1.0.5, escape-string-regexp@^1.0.5: 548 | version "1.0.5" 549 | resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4" 550 | integrity sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ= 551 | 552 | esprima@^4.0.0: 553 | version "4.0.1" 554 | resolved "https://registry.yarnpkg.com/esprima/-/esprima-4.0.1.tgz#13b04cdb3e6c5d19df91ab6987a8695619b0aa71" 555 | integrity sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A== 556 | 557 | event-target-shim@^5.0.0: 558 | version "5.0.1" 559 | resolved "https://registry.yarnpkg.com/event-target-shim/-/event-target-shim-5.0.1.tgz#5d4d3ebdf9583d63a5333ce2deb7480ab2b05789" 560 | integrity sha512-i/2XbnSz/uxRCU6+NdVJgKWDTM427+MqYbkQzD321DuCQJUqOuJKIA0IM2+W2xtYHdKOmZ4dR6fExsd4SXL+WQ== 561 | 562 | exec-sh@^0.2.0: 563 | version "0.2.2" 564 | resolved "https://registry.yarnpkg.com/exec-sh/-/exec-sh-0.2.2.tgz#2a5e7ffcbd7d0ba2755bdecb16e5a427dfbdec36" 565 | integrity sha512-FIUCJz1RbuS0FKTdaAafAByGS0CPvU3R0MeHxgtl+djzCc//F8HakL8GzmVNZanasTbTAY/3DRFA0KpVqj/eAw== 566 | dependencies: 567 | merge "^1.2.0" 568 | 569 | extend@^3.0.2: 570 | version "3.0.2" 571 | resolved "https://registry.yarnpkg.com/extend/-/extend-3.0.2.tgz#f8b1136b4071fbd8eb140aff858b1019ec2915fa" 572 | integrity sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g== 573 | 574 | external-editor@^3.0.3: 575 | version "3.1.0" 576 | resolved "https://registry.yarnpkg.com/external-editor/-/external-editor-3.1.0.tgz#cb03f740befae03ea4d283caed2741a83f335495" 577 | integrity sha512-hMQ4CX1p1izmuLYyZqLMO/qGNw10wSv9QDCPfzXfyFrOaCSSoRfqE1Kf1s5an66J5JZC62NewG+mK49jOCtQew== 578 | dependencies: 579 | chardet "^0.7.0" 580 | iconv-lite "^0.4.24" 581 | tmp "^0.0.33" 582 | 583 | fast-text-encoding@^1.0.0: 584 | version "1.0.2" 585 | resolved "https://registry.yarnpkg.com/fast-text-encoding/-/fast-text-encoding-1.0.2.tgz#ff1ad5677bde049e0f8656aa6083a7ef2c5836e2" 586 | integrity sha512-5rQdinSsycpzvAoHga2EDn+LRX1d5xLFsuNG0Kg61JrAT/tASXcLL0nf/33v+sAxlQcfYmWbTURa1mmAf55jGw== 587 | 588 | figures@^2.0.0: 589 | version "2.0.0" 590 | resolved "https://registry.yarnpkg.com/figures/-/figures-2.0.0.tgz#3ab1a2d2a62c8bfb431a0c94cb797a2fce27c962" 591 | integrity sha1-OrGi0qYsi/tDGgyUy3l6L84nyWI= 592 | dependencies: 593 | escape-string-regexp "^1.0.5" 594 | 595 | figures@^3.0.0: 596 | version "3.2.0" 597 | resolved "https://registry.yarnpkg.com/figures/-/figures-3.2.0.tgz#625c18bd293c604dc4a8ddb2febf0c88341746af" 598 | integrity sha512-yaduQFRKLXYOGgEn6AZau90j3ggSOyiqXU0F9JZfeXYhNa+Jk4X+s45A2zg5jns87GAFa34BBm2kXw4XpNcbdg== 599 | dependencies: 600 | escape-string-regexp "^1.0.5" 601 | 602 | fill-range@^7.0.1: 603 | version "7.0.1" 604 | resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-7.0.1.tgz#1919a6a7c75fe38b2c7c77e5198535da9acdda40" 605 | integrity sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ== 606 | dependencies: 607 | to-regex-range "^5.0.1" 608 | 609 | find-up@3.0.0, find-up@^3.0.0: 610 | version "3.0.0" 611 | resolved "https://registry.yarnpkg.com/find-up/-/find-up-3.0.0.tgz#49169f1d7993430646da61ecc5ae355c21c97b73" 612 | integrity sha512-1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg== 613 | dependencies: 614 | locate-path "^3.0.0" 615 | 616 | find-up@^4.1.0: 617 | version "4.1.0" 618 | resolved "https://registry.yarnpkg.com/find-up/-/find-up-4.1.0.tgz#97afe7d6cdc0bc5928584b7c8d7b16e8a9aa5d19" 619 | integrity sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw== 620 | dependencies: 621 | locate-path "^5.0.0" 622 | path-exists "^4.0.0" 623 | 624 | flat@^4.1.0: 625 | version "4.1.0" 626 | resolved "https://registry.yarnpkg.com/flat/-/flat-4.1.0.tgz#090bec8b05e39cba309747f1d588f04dbaf98db2" 627 | integrity sha512-Px/TiLIznH7gEDlPXcUD4KnBusa6kR6ayRUVcnEAbreRIuhkqow/mun59BuRXwoYk7ZQOLW1ZM05ilIvK38hFw== 628 | dependencies: 629 | is-buffer "~2.0.3" 630 | 631 | fs-extra@^8.1.0: 632 | version "8.1.0" 633 | resolved "https://registry.yarnpkg.com/fs-extra/-/fs-extra-8.1.0.tgz#49d43c45a88cd9677668cb7be1b46efdb8d2e1c0" 634 | integrity sha512-yhlQgA6mnOJUKOsRUFsgJdQCvkKhcz8tlZG5HBQfReYZy46OwLcY+Zia0mtdHsOo9y/hP+CxMN0TU9QxoOtG4g== 635 | dependencies: 636 | graceful-fs "^4.2.0" 637 | jsonfile "^4.0.0" 638 | universalify "^0.1.0" 639 | 640 | fs.realpath@^1.0.0: 641 | version "1.0.0" 642 | resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f" 643 | integrity sha1-FQStJSMVjKpA20onh8sBQRmU6k8= 644 | 645 | fsevents@~2.1.1: 646 | version "2.1.3" 647 | resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-2.1.3.tgz#fb738703ae8d2f9fe900c33836ddebee8b97f23e" 648 | integrity sha512-Auw9a4AxqWpa9GUfj370BMPzzyncfBABW8Mab7BGWBYDj4Isgq+cDKtx0i6u9jcX9pQDnswsaaOTgTmA5pEjuQ== 649 | 650 | function-bind@^1.1.1: 651 | version "1.1.1" 652 | resolved "https://registry.yarnpkg.com/function-bind/-/function-bind-1.1.1.tgz#a56899d3ea3c9bab874bb9773b7c5ede92f4895d" 653 | integrity sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A== 654 | 655 | fuzzy@^0.1.3: 656 | version "0.1.3" 657 | resolved "https://registry.yarnpkg.com/fuzzy/-/fuzzy-0.1.3.tgz#4c76ec2ff0ac1a36a9dccf9a00df8623078d4ed8" 658 | integrity sha1-THbsL/CsGjap3M+aAN+GIweNTtg= 659 | 660 | gaxios@^2.0.1, gaxios@^2.1.0: 661 | version "2.3.4" 662 | resolved "https://registry.yarnpkg.com/gaxios/-/gaxios-2.3.4.tgz#eea99353f341c270c5f3c29fc46b8ead56f0a173" 663 | integrity sha512-US8UMj8C5pRnao3Zykc4AAVr+cffoNKRTg9Rsf2GiuZCW69vgJj38VK2PzlPuQU73FZ/nTk9/Av6/JGcE1N9vA== 664 | dependencies: 665 | abort-controller "^3.0.0" 666 | extend "^3.0.2" 667 | https-proxy-agent "^5.0.0" 668 | is-stream "^2.0.0" 669 | node-fetch "^2.3.0" 670 | 671 | gcp-metadata@^3.4.0: 672 | version "3.5.0" 673 | resolved "https://registry.yarnpkg.com/gcp-metadata/-/gcp-metadata-3.5.0.tgz#6d28343f65a6bbf8449886a0c0e4a71c77577055" 674 | integrity sha512-ZQf+DLZ5aKcRpLzYUyBS3yo3N0JSa82lNDO8rj3nMSlovLcz2riKFBsYgDzeXcv75oo5eqB2lx+B14UvPoCRnA== 675 | dependencies: 676 | gaxios "^2.1.0" 677 | json-bigint "^0.3.0" 678 | 679 | get-caller-file@^2.0.1: 680 | version "2.0.5" 681 | resolved "https://registry.yarnpkg.com/get-caller-file/-/get-caller-file-2.0.5.tgz#4f94412a82db32f36e3b0b9741f8a97feb031f7e" 682 | integrity sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg== 683 | 684 | get-func-name@^2.0.0: 685 | version "2.0.0" 686 | resolved "https://registry.yarnpkg.com/get-func-name/-/get-func-name-2.0.0.tgz#ead774abee72e20409433a066366023dd6887a41" 687 | integrity sha1-6td0q+5y4gQJQzoGY2YCPdaIekE= 688 | 689 | get-stream@^4.1.0: 690 | version "4.1.0" 691 | resolved "https://registry.yarnpkg.com/get-stream/-/get-stream-4.1.0.tgz#c1b255575f3dc21d59bfc79cd3d2b46b1c3a54b5" 692 | integrity sha512-GMat4EJ5161kIy2HevLlr4luNjBgvmj413KaQA7jt4V8B4RDsfpHk7WQ9GVqfYyyx8OS/L66Kox+rJRNklLK7w== 693 | dependencies: 694 | pump "^3.0.0" 695 | 696 | get-stream@^5.1.0: 697 | version "5.1.0" 698 | resolved "https://registry.yarnpkg.com/get-stream/-/get-stream-5.1.0.tgz#01203cdc92597f9b909067c3e656cc1f4d3c4dc9" 699 | integrity sha512-EXr1FOzrzTfGeL0gQdeFEvOMm2mzMOglyiOXSTpPC+iAjAKftbr3jpCMWynogwYnM+eSj9sHGc6wjIcDvYiygw== 700 | dependencies: 701 | pump "^3.0.0" 702 | 703 | glob-parent@~5.1.0: 704 | version "5.1.1" 705 | resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-5.1.1.tgz#b6c1ef417c4e5663ea498f1c45afac6916bbc229" 706 | integrity sha512-FnI+VGOpnlGHWZxthPGR+QhR78fuiK0sNLkHQv+bL9fQi57lNNdquIbna/WrfROrolq8GK5Ek6BiMwqL/voRYQ== 707 | dependencies: 708 | is-glob "^4.0.1" 709 | 710 | glob@7.1.3: 711 | version "7.1.3" 712 | resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.3.tgz#3960832d3f1574108342dafd3a67b332c0969df1" 713 | integrity sha512-vcfuiIxogLV4DlGBHIUOwI0IbrJ8HWPc4MU7HzviGeNho/UJDfi6B5p3sHeWIQ0KGIU0Jpxi5ZHxemQfLkkAwQ== 714 | dependencies: 715 | fs.realpath "^1.0.0" 716 | inflight "^1.0.4" 717 | inherits "2" 718 | minimatch "^3.0.4" 719 | once "^1.3.0" 720 | path-is-absolute "^1.0.0" 721 | 722 | glob@^7.0.0, glob@^7.1.3: 723 | version "7.1.6" 724 | resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.6.tgz#141f33b81a7c2492e125594307480c46679278a6" 725 | integrity sha512-LwaxwyZ72Lk7vZINtNNrywX0ZuLyStrdDtabefZKAY5ZGJhVtgdznluResxNmPitE0SAO+O26sWTHeKSI2wMBA== 726 | dependencies: 727 | fs.realpath "^1.0.0" 728 | inflight "^1.0.4" 729 | inherits "2" 730 | minimatch "^3.0.4" 731 | once "^1.3.0" 732 | path-is-absolute "^1.0.0" 733 | 734 | google-auth-library@^5.1.0, google-auth-library@^5.2.1, google-auth-library@^5.6.1: 735 | version "5.10.1" 736 | resolved "https://registry.yarnpkg.com/google-auth-library/-/google-auth-library-5.10.1.tgz#504ec75487ad140e68dd577c21affa363c87ddff" 737 | integrity sha512-rOlaok5vlpV9rSiUu5EpR0vVpc+PhN62oF4RyX/6++DG1VsaulAFEMlDYBLjJDDPI6OcNOCGAKy9UVB/3NIDXg== 738 | dependencies: 739 | arrify "^2.0.0" 740 | base64-js "^1.3.0" 741 | ecdsa-sig-formatter "^1.0.11" 742 | fast-text-encoding "^1.0.0" 743 | gaxios "^2.1.0" 744 | gcp-metadata "^3.4.0" 745 | gtoken "^4.1.0" 746 | jws "^4.0.0" 747 | lru-cache "^5.0.0" 748 | 749 | google-p12-pem@^2.0.0: 750 | version "2.0.4" 751 | resolved "https://registry.yarnpkg.com/google-p12-pem/-/google-p12-pem-2.0.4.tgz#036462394e266472632a78b685f0cc3df4ef337b" 752 | integrity sha512-S4blHBQWZRnEW44OcR7TL9WR+QCqByRvhNDZ/uuQfpxywfupikf/miba8js1jZi6ZOGv5slgSuoshCWh6EMDzg== 753 | dependencies: 754 | node-forge "^0.9.0" 755 | 756 | googleapis-common@^3.0.0: 757 | version "3.2.2" 758 | resolved "https://registry.yarnpkg.com/googleapis-common/-/googleapis-common-3.2.2.tgz#f8631f94b3a5c58d8ce955c3290bb65fdb6d7ba4" 759 | integrity sha512-sTEXlauVce4eMX0S6hVoiWgxVzQZ7dc16KcGF7eh+A+uIyDgXqnuwOMZw+svX4gOJv6w4ACecm23Qh9UDaldsw== 760 | dependencies: 761 | extend "^3.0.2" 762 | gaxios "^2.0.1" 763 | google-auth-library "^5.6.1" 764 | qs "^6.7.0" 765 | url-template "^2.0.8" 766 | uuid "^7.0.0" 767 | 768 | googleapis@^42.0.0: 769 | version "42.0.0" 770 | resolved "https://registry.yarnpkg.com/googleapis/-/googleapis-42.0.0.tgz#17de1fc4494a49bc120152e6df87b8eca9a6bf0d" 771 | integrity sha512-nQiKPDmzmMusnU8UOibmlC6hsgkm70SjqmLxSlBBb7i0z7/J6UPilSzo9tAMoHA8u3BUw3OXn13+p9YLmBH6Gg== 772 | dependencies: 773 | google-auth-library "^5.1.0" 774 | googleapis-common "^3.0.0" 775 | 776 | got@^9.6.0: 777 | version "9.6.0" 778 | resolved "https://registry.yarnpkg.com/got/-/got-9.6.0.tgz#edf45e7d67f99545705de1f7bbeeeb121765ed85" 779 | integrity sha512-R7eWptXuGYxwijs0eV+v3o6+XH1IqVK8dJOEecQfTmkncw9AV4dcw/Dhxi8MdlqPthxxpZyizMzyg8RTmEsG+Q== 780 | dependencies: 781 | "@sindresorhus/is" "^0.14.0" 782 | "@szmarczak/http-timer" "^1.1.2" 783 | cacheable-request "^6.0.0" 784 | decompress-response "^3.3.0" 785 | duplexer3 "^0.1.4" 786 | get-stream "^4.1.0" 787 | lowercase-keys "^1.0.1" 788 | mimic-response "^1.0.1" 789 | p-cancelable "^1.0.0" 790 | to-readable-stream "^1.0.0" 791 | url-parse-lax "^3.0.0" 792 | 793 | graceful-fs@^4.1.2, graceful-fs@^4.1.6, graceful-fs@^4.2.0, graceful-fs@^4.2.3: 794 | version "4.2.4" 795 | resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.2.4.tgz#2256bde14d3632958c465ebc96dc467ca07a29fb" 796 | integrity sha512-WjKPNJF79dtJAVniUlGGWHYGz2jWxT6VhN/4m1NdkbZ2nOsEF+cI1Edgql5zCRhs/VsQYRvrXctxktVXZUkixw== 797 | 798 | growl@1.10.5: 799 | version "1.10.5" 800 | resolved "https://registry.yarnpkg.com/growl/-/growl-1.10.5.tgz#f2735dc2283674fa67478b10181059355c369e5e" 801 | integrity sha512-qBr4OuELkhPenW6goKVXiv47US3clb3/IbuWF9KNKEijAy9oeHxU9IgzjvJhHkUzhaj7rOUD7+YGWqUjLp5oSA== 802 | 803 | gtoken@^4.1.0: 804 | version "4.1.4" 805 | resolved "https://registry.yarnpkg.com/gtoken/-/gtoken-4.1.4.tgz#925ff1e7df3aaada06611d30ea2d2abf60fcd6a7" 806 | integrity sha512-VxirzD0SWoFUo5p8RDP8Jt2AGyOmyYcT/pOUgDKJCK+iSw0TMqwrVfY37RXTNmoKwrzmDHSk0GMT9FsgVmnVSA== 807 | dependencies: 808 | gaxios "^2.1.0" 809 | google-p12-pem "^2.0.0" 810 | jws "^4.0.0" 811 | mime "^2.2.0" 812 | 813 | handlebars@^4.7.2: 814 | version "4.7.6" 815 | resolved "https://registry.yarnpkg.com/handlebars/-/handlebars-4.7.6.tgz#d4c05c1baf90e9945f77aa68a7a219aa4a7df74e" 816 | integrity sha512-1f2BACcBfiwAfStCKZNrUCgqNZkGsAT7UM3kkYtXuLo0KnaVfjKOyf7PRzB6++aK9STyT1Pd2ZCPe3EGOXleXA== 817 | dependencies: 818 | minimist "^1.2.5" 819 | neo-async "^2.6.0" 820 | source-map "^0.6.1" 821 | wordwrap "^1.0.0" 822 | optionalDependencies: 823 | uglify-js "^3.1.4" 824 | 825 | has-flag@^3.0.0: 826 | version "3.0.0" 827 | resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-3.0.0.tgz#b5d454dc2199ae225699f3467e5a07f3b955bafd" 828 | integrity sha1-tdRU3CGZriJWmfNGfloH87lVuv0= 829 | 830 | has-flag@^4.0.0: 831 | version "4.0.0" 832 | resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-4.0.0.tgz#944771fd9c81c81265c4d6941860da06bb59479b" 833 | integrity sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ== 834 | 835 | has-symbols@^1.0.0, has-symbols@^1.0.1: 836 | version "1.0.1" 837 | resolved "https://registry.yarnpkg.com/has-symbols/-/has-symbols-1.0.1.tgz#9f5214758a44196c406d9bd76cebf81ec2dd31e8" 838 | integrity sha512-PLcsoqu++dmEIZB+6totNFKq/7Do+Z0u4oT0zKOJNl3lYK6vGwwu2hjHs+68OEZbTjiUE9bgOABXbP/GvrS0Kg== 839 | 840 | has@^1.0.3: 841 | version "1.0.3" 842 | resolved "https://registry.yarnpkg.com/has/-/has-1.0.3.tgz#722d7cbfc1f6aa8241f16dd814e011e1f41e8796" 843 | integrity sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw== 844 | dependencies: 845 | function-bind "^1.1.1" 846 | 847 | he@1.2.0: 848 | version "1.2.0" 849 | resolved "https://registry.yarnpkg.com/he/-/he-1.2.0.tgz#84ae65fa7eafb165fddb61566ae14baf05664f0f" 850 | integrity sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw== 851 | 852 | highlight.js@^9.17.1: 853 | version "9.18.1" 854 | resolved "https://registry.yarnpkg.com/highlight.js/-/highlight.js-9.18.1.tgz#ed21aa001fe6252bb10a3d76d47573c6539fe13c" 855 | integrity sha512-OrVKYz70LHsnCgmbXctv/bfuvntIKDz177h0Co37DQ5jamGZLVmoCVMtjMtNZY3X9DrCcKfklHPNeA0uPZhSJg== 856 | 857 | hosted-git-info@^2.1.4: 858 | version "2.8.8" 859 | resolved "https://registry.yarnpkg.com/hosted-git-info/-/hosted-git-info-2.8.8.tgz#7539bd4bc1e0e0a895815a2e0262420b12858488" 860 | integrity sha512-f/wzC2QaWBs7t9IYqB4T3sR1xviIViXJRJTWBlx2Gf3g0Xi5vI7Yy4koXQ1c9OYDGHN9sBy1DQ2AB8fqZBWhUg== 861 | 862 | http-cache-semantics@^4.0.0: 863 | version "4.1.0" 864 | resolved "https://registry.yarnpkg.com/http-cache-semantics/-/http-cache-semantics-4.1.0.tgz#49e91c5cbf36c9b94bcfcd71c23d5249ec74e390" 865 | integrity sha512-carPklcUh7ROWRK7Cv27RPtdhYhUsela/ue5/jKzjegVvXDqM2ILE9Q2BGn9JZJh1g87cp56su/FgQSzcWS8cQ== 866 | 867 | https-proxy-agent@^5.0.0: 868 | version "5.0.0" 869 | resolved "https://registry.yarnpkg.com/https-proxy-agent/-/https-proxy-agent-5.0.0.tgz#e2a90542abb68a762e0a0850f6c9edadfd8506b2" 870 | integrity sha512-EkYm5BcKUGiduxzSt3Eppko+PiNWNEpa4ySk9vTC6wDsQJW9rHSa+UhGNJoRYp7bz6Ht1eaRIa6QaJqO5rCFbA== 871 | dependencies: 872 | agent-base "6" 873 | debug "4" 874 | 875 | iconv-lite@^0.4.24: 876 | version "0.4.24" 877 | resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.4.24.tgz#2022b4b25fbddc21d2f524974a474aafe733908b" 878 | integrity sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA== 879 | dependencies: 880 | safer-buffer ">= 2.1.2 < 3" 881 | 882 | indent-string@^4.0.0: 883 | version "4.0.0" 884 | resolved "https://registry.yarnpkg.com/indent-string/-/indent-string-4.0.0.tgz#624f8f4497d619b2d9768531d58f4122854d7251" 885 | integrity sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg== 886 | 887 | inflight@^1.0.4: 888 | version "1.0.6" 889 | resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9" 890 | integrity sha1-Sb1jMdfQLQwJvJEKEHW6gWW1bfk= 891 | dependencies: 892 | once "^1.3.0" 893 | wrappy "1" 894 | 895 | inherits@2: 896 | version "2.0.4" 897 | resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.4.tgz#0fa2c64f932917c3433a0ded55363aae37416b7c" 898 | integrity sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ== 899 | 900 | inquirer-autocomplete-prompt@1.0.1: 901 | version "1.0.1" 902 | resolved "https://registry.yarnpkg.com/inquirer-autocomplete-prompt/-/inquirer-autocomplete-prompt-1.0.1.tgz#e4be98a9e727ea5160937e33f8724e70464e3c4d" 903 | integrity sha512-Y4V6ifAu9LNrNjcEtYq8YUKhrgmmufUn5fsDQqeWgHY8rEO6ZAQkNUiZtBm2kw2uUQlC9HdgrRCHDhTPPguH5A== 904 | dependencies: 905 | ansi-escapes "^3.0.0" 906 | chalk "^2.0.0" 907 | figures "^2.0.0" 908 | run-async "^2.3.0" 909 | 910 | inquirer@^7.0.0: 911 | version "7.1.0" 912 | resolved "https://registry.yarnpkg.com/inquirer/-/inquirer-7.1.0.tgz#1298a01859883e17c7264b82870ae1034f92dd29" 913 | integrity sha512-5fJMWEmikSYu0nv/flMc475MhGbB7TSPd/2IpFV4I4rMklboCH2rQjYY5kKiYGHqUF9gvaambupcJFFG9dvReg== 914 | dependencies: 915 | ansi-escapes "^4.2.1" 916 | chalk "^3.0.0" 917 | cli-cursor "^3.1.0" 918 | cli-width "^2.0.0" 919 | external-editor "^3.0.3" 920 | figures "^3.0.0" 921 | lodash "^4.17.15" 922 | mute-stream "0.0.8" 923 | run-async "^2.4.0" 924 | rxjs "^6.5.3" 925 | string-width "^4.1.0" 926 | strip-ansi "^6.0.0" 927 | through "^2.3.6" 928 | 929 | interpret@^1.0.0: 930 | version "1.2.0" 931 | resolved "https://registry.yarnpkg.com/interpret/-/interpret-1.2.0.tgz#d5061a6224be58e8083985f5014d844359576296" 932 | integrity sha512-mT34yGKMNceBQUoVn7iCDKDntA7SC6gycMAWzGx1z/CMCTV7b2AAtXlo3nRyHZ1FelRkQbQjprHSYGwzLtkVbw== 933 | 934 | ip-regex@^4.0.0: 935 | version "4.1.0" 936 | resolved "https://registry.yarnpkg.com/ip-regex/-/ip-regex-4.1.0.tgz#5ad62f685a14edb421abebc2fff8db94df67b455" 937 | integrity sha512-pKnZpbgCTfH/1NLIlOduP/V+WRXzC2MOz3Qo8xmxk8C5GudJLgK5QyLVXOSWy3ParAH7Eemurl3xjv/WXYFvMA== 938 | 939 | ip@^1.1.5: 940 | version "1.1.5" 941 | resolved "https://registry.yarnpkg.com/ip/-/ip-1.1.5.tgz#bdded70114290828c0a039e72ef25f5aaec4354a" 942 | integrity sha1-vd7XARQpCCjAoDnnLvJfWq7ENUo= 943 | 944 | is-arrayish@^0.2.1: 945 | version "0.2.1" 946 | resolved "https://registry.yarnpkg.com/is-arrayish/-/is-arrayish-0.2.1.tgz#77c99840527aa8ecb1a8ba697b80645a7a926a9d" 947 | integrity sha1-d8mYQFJ6qOyxqLppe4BkWnqSap0= 948 | 949 | is-binary-path@~2.1.0: 950 | version "2.1.0" 951 | resolved "https://registry.yarnpkg.com/is-binary-path/-/is-binary-path-2.1.0.tgz#ea1f7f3b80f064236e83470f86c09c254fb45b09" 952 | integrity sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw== 953 | dependencies: 954 | binary-extensions "^2.0.0" 955 | 956 | is-buffer@~2.0.3: 957 | version "2.0.4" 958 | resolved "https://registry.yarnpkg.com/is-buffer/-/is-buffer-2.0.4.tgz#3e572f23c8411a5cfd9557c849e3665e0b290623" 959 | integrity sha512-Kq1rokWXOPXWuaMAqZiJW4XxsmD9zGx9q4aePabbn3qCRGedtH7Cm+zV8WETitMfu1wdh+Rvd6w5egwSngUX2A== 960 | 961 | is-callable@^1.1.4, is-callable@^1.1.5: 962 | version "1.1.5" 963 | resolved "https://registry.yarnpkg.com/is-callable/-/is-callable-1.1.5.tgz#f7e46b596890456db74e7f6e976cb3273d06faab" 964 | integrity sha512-ESKv5sMCJB2jnHTWZ3O5itG+O128Hsus4K4Qh1h2/cgn2vbgnLSVqfV46AeJA9D5EeeLa9w81KUXMtn34zhX+Q== 965 | 966 | is-date-object@^1.0.1: 967 | version "1.0.2" 968 | resolved "https://registry.yarnpkg.com/is-date-object/-/is-date-object-1.0.2.tgz#bda736f2cd8fd06d32844e7743bfa7494c3bfd7e" 969 | integrity sha512-USlDT524woQ08aoZFzh3/Z6ch9Y/EWXEHQ/AaRN0SkKq4t2Jw2R2339tSXmwuVoY7LLlBCbOIlx2myP/L5zk0g== 970 | 971 | is-extglob@^2.1.1: 972 | version "2.1.1" 973 | resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-2.1.1.tgz#a88c02535791f02ed37c76a1b9ea9773c833f8c2" 974 | integrity sha1-qIwCU1eR8C7TfHahueqXc8gz+MI= 975 | 976 | is-fullwidth-code-point@^2.0.0: 977 | version "2.0.0" 978 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz#a3b30a5c4f199183167aaab93beefae3ddfb654f" 979 | integrity sha1-o7MKXE8ZkYMWeqq5O+764937ZU8= 980 | 981 | is-fullwidth-code-point@^3.0.0: 982 | version "3.0.0" 983 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz#f116f8064fe90b3f7844a38997c0b75051269f1d" 984 | integrity sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg== 985 | 986 | is-glob@^4.0.1, is-glob@~4.0.1: 987 | version "4.0.1" 988 | resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-4.0.1.tgz#7567dbe9f2f5e2467bc77ab83c4a29482407a5dc" 989 | integrity sha512-5G0tKtBTFImOqDnLB2hG6Bp2qcKEFduo4tZu9MT/H6NQv/ghhy30o55ufafxJ/LdH79LLs2Kfrn85TLKyA7BUg== 990 | dependencies: 991 | is-extglob "^2.1.1" 992 | 993 | is-ip@^3.1.0: 994 | version "3.1.0" 995 | resolved "https://registry.yarnpkg.com/is-ip/-/is-ip-3.1.0.tgz#2ae5ddfafaf05cb8008a62093cf29734f657c5d8" 996 | integrity sha512-35vd5necO7IitFPjd/YBeqwWnyDWbuLH9ZXQdMfDA8TEo7pv5X8yfrvVO3xbJbLUlERCMvf6X0hTUamQxCYJ9Q== 997 | dependencies: 998 | ip-regex "^4.0.0" 999 | 1000 | is-number@^7.0.0: 1001 | version "7.0.0" 1002 | resolved "https://registry.yarnpkg.com/is-number/-/is-number-7.0.0.tgz#7535345b896734d5f80c4d06c50955527a14f12b" 1003 | integrity sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng== 1004 | 1005 | is-online@^8.2.0: 1006 | version "8.3.1" 1007 | resolved "https://registry.yarnpkg.com/is-online/-/is-online-8.3.1.tgz#e9f6e8daecd2e57a803473df0bc2eaea1cc2a987" 1008 | integrity sha512-SOyioWVyX4xp6EpQT1P7PCiTC1YZmqShZqVSFmq1gEVuIuc+lzTzVMZSYiyR6Chna+U7EKqwtlBBk8nnmPHCsQ== 1009 | dependencies: 1010 | got "^9.6.0" 1011 | p-any "^2.0.0" 1012 | p-timeout "^3.0.0" 1013 | public-ip "^4.0.1" 1014 | 1015 | is-regex@^1.0.5: 1016 | version "1.0.5" 1017 | resolved "https://registry.yarnpkg.com/is-regex/-/is-regex-1.0.5.tgz#39d589a358bf18967f726967120b8fc1aed74eae" 1018 | integrity sha512-vlKW17SNq44owv5AQR3Cq0bQPEb8+kF3UKZ2fiZNOWtztYE5i0CzCZxFDwO58qAOWtxdBRVO/V5Qin1wjCqFYQ== 1019 | dependencies: 1020 | has "^1.0.3" 1021 | 1022 | is-stream@^2.0.0: 1023 | version "2.0.0" 1024 | resolved "https://registry.yarnpkg.com/is-stream/-/is-stream-2.0.0.tgz#bde9c32680d6fae04129d6ac9d921ce7815f78e3" 1025 | integrity sha512-XCoy+WlUr7d1+Z8GgSuXmpuUFC9fOhRXglJMx+dwLKTkL44Cjd4W1Z5P+BQZpr+cR93aGP4S/s7Ftw6Nd/kiEw== 1026 | 1027 | is-symbol@^1.0.2: 1028 | version "1.0.3" 1029 | resolved "https://registry.yarnpkg.com/is-symbol/-/is-symbol-1.0.3.tgz#38e1014b9e6329be0de9d24a414fd7441ec61937" 1030 | integrity sha512-OwijhaRSgqvhm/0ZdAcXNZt9lYdKFpcRDT5ULUuYXPoT794UNOdU+gpT6Rzo7b4V2HUl/op6GqY894AZwv9faQ== 1031 | dependencies: 1032 | has-symbols "^1.0.1" 1033 | 1034 | is-wsl@^1.1.0: 1035 | version "1.1.0" 1036 | resolved "https://registry.yarnpkg.com/is-wsl/-/is-wsl-1.1.0.tgz#1f16e4aa22b04d1336b66188a66af3c600c3a66d" 1037 | integrity sha1-HxbkqiKwTRM2tmGIpmrzxgDDpm0= 1038 | 1039 | isexe@^2.0.0: 1040 | version "2.0.0" 1041 | resolved "https://registry.yarnpkg.com/isexe/-/isexe-2.0.0.tgz#e8fbf374dc556ff8947a10dcb0572d633f2cfa10" 1042 | integrity sha1-6PvzdNxVb/iUehDcsFctYz8s+hA= 1043 | 1044 | jquery@^3.4.1: 1045 | version "3.5.1" 1046 | resolved "https://registry.yarnpkg.com/jquery/-/jquery-3.5.1.tgz#d7b4d08e1bfdb86ad2f1a3d039ea17304717abb5" 1047 | integrity sha512-XwIBPqcMn57FxfT+Go5pzySnm4KWkT1Tv7gjrpT1srtf8Weynl6R273VJ5GjkRb51IzMp5nbaPjJXMWeju2MKg== 1048 | 1049 | js-yaml@3.13.1: 1050 | version "3.13.1" 1051 | resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-3.13.1.tgz#aff151b30bfdfa8e49e05da22e7415e9dfa37847" 1052 | integrity sha512-YfbcO7jXDdyj0DGxYVSlSeQNHbD7XPWvrVWeVUujrQEoZzWJIRrCPoyk6kL6IAjAG2IolMK4T0hNUe0HOUs5Jw== 1053 | dependencies: 1054 | argparse "^1.0.7" 1055 | esprima "^4.0.0" 1056 | 1057 | json-bigint@^0.3.0: 1058 | version "0.3.0" 1059 | resolved "https://registry.yarnpkg.com/json-bigint/-/json-bigint-0.3.0.tgz#0ccd912c4b8270d05f056fbd13814b53d3825b1e" 1060 | integrity sha1-DM2RLEuCcNBfBW+9E4FLU9OCWx4= 1061 | dependencies: 1062 | bignumber.js "^7.0.0" 1063 | 1064 | json-buffer@3.0.0: 1065 | version "3.0.0" 1066 | resolved "https://registry.yarnpkg.com/json-buffer/-/json-buffer-3.0.0.tgz#5b1f397afc75d677bde8bcfc0e47e1f9a3d9a898" 1067 | integrity sha1-Wx85evx11ne96Lz8Dkfh+aPZqJg= 1068 | 1069 | json-parse-better-errors@^1.0.1: 1070 | version "1.0.2" 1071 | resolved "https://registry.yarnpkg.com/json-parse-better-errors/-/json-parse-better-errors-1.0.2.tgz#bb867cfb3450e69107c131d1c514bab3dc8bcaa9" 1072 | integrity sha512-mrqyZKfX5EhL7hvqcV6WG1yYjnjeuYDzDhhcAAUrq8Po85NBQBJP+ZDUT75qZQ98IkUoBqdkExkukOU7Ts2wrw== 1073 | 1074 | jsonfile@^4.0.0: 1075 | version "4.0.0" 1076 | resolved "https://registry.yarnpkg.com/jsonfile/-/jsonfile-4.0.0.tgz#8771aae0799b64076b76640fca058f9c10e33ecb" 1077 | integrity sha1-h3Gq4HmbZAdrdmQPygWPnBDjPss= 1078 | optionalDependencies: 1079 | graceful-fs "^4.1.6" 1080 | 1081 | jsonfile@^6.0.0: 1082 | version "6.0.1" 1083 | resolved "https://registry.yarnpkg.com/jsonfile/-/jsonfile-6.0.1.tgz#98966cba214378c8c84b82e085907b40bf614179" 1084 | integrity sha512-jR2b5v7d2vIOust+w3wtFKZIfpC2pnRmFAhAC/BuweZFQR8qZzxH1OyrQ10HmdVYiXWkYUqPVsz91cG7EL2FBg== 1085 | dependencies: 1086 | universalify "^1.0.0" 1087 | optionalDependencies: 1088 | graceful-fs "^4.1.6" 1089 | 1090 | jwa@^2.0.0: 1091 | version "2.0.0" 1092 | resolved "https://registry.yarnpkg.com/jwa/-/jwa-2.0.0.tgz#a7e9c3f29dae94027ebcaf49975c9345593410fc" 1093 | integrity sha512-jrZ2Qx916EA+fq9cEAeCROWPTfCwi1IVHqT2tapuqLEVVDKFDENFw1oL+MwrTvH6msKxsd1YTDVw6uKEcsrLEA== 1094 | dependencies: 1095 | buffer-equal-constant-time "1.0.1" 1096 | ecdsa-sig-formatter "1.0.11" 1097 | safe-buffer "^5.0.1" 1098 | 1099 | jws@^4.0.0: 1100 | version "4.0.0" 1101 | resolved "https://registry.yarnpkg.com/jws/-/jws-4.0.0.tgz#2d4e8cf6a318ffaa12615e9dec7e86e6c97310f4" 1102 | integrity sha512-KDncfTmOZoOMTFG4mBlG0qUIOlc03fmzH+ru6RgYVZhPkyiy/92Owlt/8UEN+a4TXR1FQetfIpJE8ApdvdVxTg== 1103 | dependencies: 1104 | jwa "^2.0.0" 1105 | safe-buffer "^5.0.1" 1106 | 1107 | keyv@^3.0.0: 1108 | version "3.1.0" 1109 | resolved "https://registry.yarnpkg.com/keyv/-/keyv-3.1.0.tgz#ecc228486f69991e49e9476485a5be1e8fc5c4d9" 1110 | integrity sha512-9ykJ/46SN/9KPM/sichzQ7OvXyGDYKGTaDlKMGCAlg2UK8KRy4jb0d8sFc+0Tt0YYnThq8X2RZgCg74RPxgcVA== 1111 | dependencies: 1112 | json-buffer "3.0.0" 1113 | 1114 | load-json-file@^4.0.0: 1115 | version "4.0.0" 1116 | resolved "https://registry.yarnpkg.com/load-json-file/-/load-json-file-4.0.0.tgz#2f5f45ab91e33216234fd53adab668eb4ec0993b" 1117 | integrity sha1-L19Fq5HjMhYjT9U62rZo607AmTs= 1118 | dependencies: 1119 | graceful-fs "^4.1.2" 1120 | parse-json "^4.0.0" 1121 | pify "^3.0.0" 1122 | strip-bom "^3.0.0" 1123 | 1124 | locate-path@^3.0.0: 1125 | version "3.0.0" 1126 | resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-3.0.0.tgz#dbec3b3ab759758071b58fe59fc41871af21400e" 1127 | integrity sha512-7AO748wWnIhNqAuaty2ZWHkQHRSNfPVIsPIfwEOWO22AmaoVrWavlOcMR5nzTLNYvp36X220/maaRsrec1G65A== 1128 | dependencies: 1129 | p-locate "^3.0.0" 1130 | path-exists "^3.0.0" 1131 | 1132 | locate-path@^5.0.0: 1133 | version "5.0.0" 1134 | resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-5.0.0.tgz#1afba396afd676a6d42504d0a67a3a7eb9f62aa0" 1135 | integrity sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g== 1136 | dependencies: 1137 | p-locate "^4.1.0" 1138 | 1139 | lodash@^4.17.15: 1140 | version "4.17.19" 1141 | resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.19.tgz#e48ddedbe30b3321783c5b4301fbd353bc1e4a4b" 1142 | integrity sha512-JNvd8XER9GQX0v2qJgsaN/mzFCNA5BRe/j8JN9d+tWyGLSodKQHKFicdwNYzWwI3wjRnaKPsGj1XkBjx/F96DQ== 1143 | 1144 | log-symbols@3.0.0: 1145 | version "3.0.0" 1146 | resolved "https://registry.yarnpkg.com/log-symbols/-/log-symbols-3.0.0.tgz#f3a08516a5dea893336a7dee14d18a1cfdab77c4" 1147 | integrity sha512-dSkNGuI7iG3mfvDzUuYZyvk5dD9ocYCYzNU6CYDE6+Xqd+gwme6Z00NS3dUh8mq/73HaEtT7m6W+yUPtU6BZnQ== 1148 | dependencies: 1149 | chalk "^2.4.2" 1150 | 1151 | lowercase-keys@^1.0.0, lowercase-keys@^1.0.1: 1152 | version "1.0.1" 1153 | resolved "https://registry.yarnpkg.com/lowercase-keys/-/lowercase-keys-1.0.1.tgz#6f9e30b47084d971a7c820ff15a6c5167b74c26f" 1154 | integrity sha512-G2Lj61tXDnVFFOi8VZds+SoQjtQC3dgokKdDG2mTm1tx4m50NUHBOZSBwQQHyy0V12A0JTG4icfZQH+xPyh8VA== 1155 | 1156 | lowercase-keys@^2.0.0: 1157 | version "2.0.0" 1158 | resolved "https://registry.yarnpkg.com/lowercase-keys/-/lowercase-keys-2.0.0.tgz#2603e78b7b4b0006cbca2fbcc8a3202558ac9479" 1159 | integrity sha512-tqNXrS78oMOE73NMxK4EMLQsQowWf8jKooH9g7xPavRT706R6bkQJ6DY2Te7QukaZsulxa30wQ7bk0pm4XiHmA== 1160 | 1161 | lru-cache@^5.0.0: 1162 | version "5.1.1" 1163 | resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-5.1.1.tgz#1da27e6710271947695daf6848e847f01d84b920" 1164 | integrity sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w== 1165 | dependencies: 1166 | yallist "^3.0.2" 1167 | 1168 | lunr@^2.3.8: 1169 | version "2.3.8" 1170 | resolved "https://registry.yarnpkg.com/lunr/-/lunr-2.3.8.tgz#a8b89c31f30b5a044b97d2d28e2da191b6ba2072" 1171 | integrity sha512-oxMeX/Y35PNFuZoHp+jUj5OSEmLCaIH4KTFJh7a93cHBoFmpw2IoPs22VIz7vyO2YUnx2Tn9dzIwO2P/4quIRg== 1172 | 1173 | marked@^0.8.0: 1174 | version "0.8.2" 1175 | resolved "https://registry.yarnpkg.com/marked/-/marked-0.8.2.tgz#4faad28d26ede351a7a1aaa5fec67915c869e355" 1176 | integrity sha512-EGwzEeCcLniFX51DhTpmTom+dSA/MG/OBUDjnWtHbEnjAH180VzUeAw+oE4+Zv+CoYBWyRlYOTR0N8SO9R1PVw== 1177 | 1178 | memorystream@^0.3.1: 1179 | version "0.3.1" 1180 | resolved "https://registry.yarnpkg.com/memorystream/-/memorystream-0.3.1.tgz#86d7090b30ce455d63fbae12dda51a47ddcaf9b2" 1181 | integrity sha1-htcJCzDORV1j+64S3aUaR93K+bI= 1182 | 1183 | merge@^1.2.0: 1184 | version "1.2.1" 1185 | resolved "https://registry.yarnpkg.com/merge/-/merge-1.2.1.tgz#38bebf80c3220a8a487b6fcfb3941bb11720c145" 1186 | integrity sha512-VjFo4P5Whtj4vsLzsYBu5ayHhoHJ0UqNm7ibvShmbmoz7tGi0vXaoJbGdB+GmDMLUdg8DpQXEIeVDAe8MaABvQ== 1187 | 1188 | mime@^2.2.0: 1189 | version "2.4.5" 1190 | resolved "https://registry.yarnpkg.com/mime/-/mime-2.4.5.tgz#d8de2ecb92982dedbb6541c9b6841d7f218ea009" 1191 | integrity sha512-3hQhEUF027BuxZjQA3s7rIv/7VCQPa27hN9u9g87sEkWaKwQPuXOkVKtOeiyUrnWqTDiOs8Ed2rwg733mB0R5w== 1192 | 1193 | mimic-fn@^2.1.0: 1194 | version "2.1.0" 1195 | resolved "https://registry.yarnpkg.com/mimic-fn/-/mimic-fn-2.1.0.tgz#7ed2c2ccccaf84d3ffcb7a69b57711fc2083401b" 1196 | integrity sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg== 1197 | 1198 | mimic-response@^1.0.0, mimic-response@^1.0.1: 1199 | version "1.0.1" 1200 | resolved "https://registry.yarnpkg.com/mimic-response/-/mimic-response-1.0.1.tgz#4923538878eef42063cb8a3e3b0798781487ab1b" 1201 | integrity sha512-j5EctnkH7amfV/q5Hgmoal1g2QHFJRraOtmx0JpIqkxhBhI/lJSl1nMpQ45hVarwNETOoWEimndZ4QK0RHxuxQ== 1202 | 1203 | minimatch@3.0.4, minimatch@^3.0.0, minimatch@^3.0.4: 1204 | version "3.0.4" 1205 | resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.0.4.tgz#5166e286457f03306064be5497e8dbb0c3d32083" 1206 | integrity sha512-yJHVQEhyqPLUTgt9B83PXu6W3rx4MvvHvSUvToogpwoGDOUQ+yDrR0HRot+yOCdCO7u4hX3pWft6kWBBcqh0UA== 1207 | dependencies: 1208 | brace-expansion "^1.1.7" 1209 | 1210 | minimist@^1.2.0, minimist@^1.2.5: 1211 | version "1.2.5" 1212 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.5.tgz#67d66014b66a6a8aaa0c083c5fd58df4e4e97602" 1213 | integrity sha512-FM9nNUYrRBAELZQT3xeZQ7fmMOBg6nWNmJKTcgsJeaLstP/UODVpGsr5OhXhhXg6f+qtJ8uiZ+PUxkDWcgIXLw== 1214 | 1215 | mkdirp@0.5.5, mkdirp@^0.5.1: 1216 | version "0.5.5" 1217 | resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.5.5.tgz#d91cefd62d1436ca0f41620e251288d420099def" 1218 | integrity sha512-NKmAlESf6jMGym1++R0Ra7wvhV+wFW63FaSOFPwRahvea0gMUcGUhVeAg/0BC0wiv9ih5NYPB1Wn1UEI1/L+xQ== 1219 | dependencies: 1220 | minimist "^1.2.5" 1221 | 1222 | mocha@^7.1.2: 1223 | version "7.1.2" 1224 | resolved "https://registry.yarnpkg.com/mocha/-/mocha-7.1.2.tgz#8e40d198acf91a52ace122cd7599c9ab857b29e6" 1225 | integrity sha512-o96kdRKMKI3E8U0bjnfqW4QMk12MwZ4mhdBTf+B5a1q9+aq2HRnj+3ZdJu0B/ZhJeK78MgYuv6L8d/rA5AeBJA== 1226 | dependencies: 1227 | ansi-colors "3.2.3" 1228 | browser-stdout "1.3.1" 1229 | chokidar "3.3.0" 1230 | debug "3.2.6" 1231 | diff "3.5.0" 1232 | escape-string-regexp "1.0.5" 1233 | find-up "3.0.0" 1234 | glob "7.1.3" 1235 | growl "1.10.5" 1236 | he "1.2.0" 1237 | js-yaml "3.13.1" 1238 | log-symbols "3.0.0" 1239 | minimatch "3.0.4" 1240 | mkdirp "0.5.5" 1241 | ms "2.1.1" 1242 | node-environment-flags "1.0.6" 1243 | object.assign "4.1.0" 1244 | strip-json-comments "2.0.1" 1245 | supports-color "6.0.0" 1246 | which "1.3.1" 1247 | wide-align "1.1.3" 1248 | yargs "13.3.2" 1249 | yargs-parser "13.1.2" 1250 | yargs-unparser "1.6.0" 1251 | 1252 | ms@2.1.1: 1253 | version "2.1.1" 1254 | resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.1.tgz#30a5864eb3ebb0a66f2ebe6d727af06a09d86e0a" 1255 | integrity sha512-tgp+dl5cGk28utYktBsrFqA7HKgrhgPsg6Z/EfhWI4gl1Hwq8B/GmY/0oXZ6nF8hDVesS/FpnYaD/kOWhYQvyg== 1256 | 1257 | ms@^2.1.1: 1258 | version "2.1.2" 1259 | resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.2.tgz#d09d1f357b443f493382a8eb3ccd183872ae6009" 1260 | integrity sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w== 1261 | 1262 | multimatch@^4.0.0: 1263 | version "4.0.0" 1264 | resolved "https://registry.yarnpkg.com/multimatch/-/multimatch-4.0.0.tgz#8c3c0f6e3e8449ada0af3dd29efb491a375191b3" 1265 | integrity sha512-lDmx79y1z6i7RNx0ZGCPq1bzJ6ZoDDKbvh7jxr9SJcWLkShMzXrHbYVpTdnhNM5MXpDUxCQ4DgqVttVXlBgiBQ== 1266 | dependencies: 1267 | "@types/minimatch" "^3.0.3" 1268 | array-differ "^3.0.0" 1269 | array-union "^2.1.0" 1270 | arrify "^2.0.1" 1271 | minimatch "^3.0.4" 1272 | 1273 | mute-stream@0.0.8: 1274 | version "0.0.8" 1275 | resolved "https://registry.yarnpkg.com/mute-stream/-/mute-stream-0.0.8.tgz#1630c42b2251ff81e2a283de96a5497ea92e5e0d" 1276 | integrity sha512-nnbWWOkoWyUsTjKrhgD0dcz22mdkSnpYqbEjIm2nhwhuxlSkpywJmBo8h0ZqJdkp73mb90SssHkN4rsRaBAfAA== 1277 | 1278 | neo-async@^2.6.0: 1279 | version "2.6.1" 1280 | resolved "https://registry.yarnpkg.com/neo-async/-/neo-async-2.6.1.tgz#ac27ada66167fa8849a6addd837f6b189ad2081c" 1281 | integrity sha512-iyam8fBuCUpWeKPGpaNMetEocMt364qkCsfL9JuhjXX6dRnguRVOfk2GZaDpPjcOKiiXCPINZC1GczQ7iTq3Zw== 1282 | 1283 | nice-try@^1.0.4: 1284 | version "1.0.5" 1285 | resolved "https://registry.yarnpkg.com/nice-try/-/nice-try-1.0.5.tgz#a3378a7696ce7d223e88fc9b764bd7ef1089e366" 1286 | integrity sha512-1nh45deeb5olNY7eX82BkPO7SSxR5SSYJiPTrTdFUVYwAl8CKMA5N9PjTYkHiRjisVcxcQ1HXdLhx2qxxJzLNQ== 1287 | 1288 | node-environment-flags@1.0.6: 1289 | version "1.0.6" 1290 | resolved "https://registry.yarnpkg.com/node-environment-flags/-/node-environment-flags-1.0.6.tgz#a30ac13621f6f7d674260a54dede048c3982c088" 1291 | integrity sha512-5Evy2epuL+6TM0lCQGpFIj6KwiEsGh1SrHUhTbNX+sLbBtjidPZFAnVK9y5yU1+h//RitLbRHTIMyxQPtxMdHw== 1292 | dependencies: 1293 | object.getownpropertydescriptors "^2.0.3" 1294 | semver "^5.7.0" 1295 | 1296 | node-fetch@^2.3.0: 1297 | version "2.6.0" 1298 | resolved "https://registry.yarnpkg.com/node-fetch/-/node-fetch-2.6.0.tgz#e633456386d4aa55863f676a7ab0daa8fdecb0fd" 1299 | integrity sha512-8dG4H5ujfvFiqDmVu9fQ5bOHUC15JMjMY/Zumv26oOvvVJjM67KF8koCWIabKQ1GJIa9r2mMZscBq/TbdOcmNA== 1300 | 1301 | node-forge@^0.9.0: 1302 | version "0.9.1" 1303 | resolved "https://registry.yarnpkg.com/node-forge/-/node-forge-0.9.1.tgz#775368e6846558ab6676858a4d8c6e8d16c677b5" 1304 | integrity sha512-G6RlQt5Sb4GMBzXvhfkeFmbqR6MzhtnT7VTHuLadjkii3rdYHNdw0m8zA4BTxVIh68FicCQ2NSUANpsqkr9jvQ== 1305 | 1306 | normalize-newline@3.0.0: 1307 | version "3.0.0" 1308 | resolved "https://registry.yarnpkg.com/normalize-newline/-/normalize-newline-3.0.0.tgz#1cbea804aba436001f83938ab21ec039d69ae9d3" 1309 | integrity sha1-HL6oBKukNgAfg5OKsh7AOdaa6dM= 1310 | 1311 | normalize-package-data@^2.3.2: 1312 | version "2.5.0" 1313 | resolved "https://registry.yarnpkg.com/normalize-package-data/-/normalize-package-data-2.5.0.tgz#e66db1838b200c1dfc233225d12cb36520e234a8" 1314 | integrity sha512-/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA== 1315 | dependencies: 1316 | hosted-git-info "^2.1.4" 1317 | resolve "^1.10.0" 1318 | semver "2 || 3 || 4 || 5" 1319 | validate-npm-package-license "^3.0.1" 1320 | 1321 | normalize-path@^3.0.0, normalize-path@~3.0.0: 1322 | version "3.0.0" 1323 | resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-3.0.0.tgz#0dcd69ff23a1c9b11fd0978316644a0388216a65" 1324 | integrity sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA== 1325 | 1326 | normalize-url@^4.1.0: 1327 | version "4.5.0" 1328 | resolved "https://registry.yarnpkg.com/normalize-url/-/normalize-url-4.5.0.tgz#453354087e6ca96957bd8f5baf753f5982142129" 1329 | integrity sha512-2s47yzUxdexf1OhyRi4Em83iQk0aPvwTddtFz4hnSSw9dCEsLEGf6SwIO8ss/19S9iBb5sJaOuTvTGDeZI00BQ== 1330 | 1331 | npm-run-all@^4.1.5: 1332 | version "4.1.5" 1333 | resolved "https://registry.yarnpkg.com/npm-run-all/-/npm-run-all-4.1.5.tgz#04476202a15ee0e2e214080861bff12a51d98fba" 1334 | integrity sha512-Oo82gJDAVcaMdi3nuoKFavkIHBRVqQ1qvMb+9LHk/cF4P6B2m8aP04hGf7oL6wZ9BuGwX1onlLhpuoofSyoQDQ== 1335 | dependencies: 1336 | ansi-styles "^3.2.1" 1337 | chalk "^2.4.1" 1338 | cross-spawn "^6.0.5" 1339 | memorystream "^0.3.1" 1340 | minimatch "^3.0.4" 1341 | pidtree "^0.3.0" 1342 | read-pkg "^3.0.0" 1343 | shell-quote "^1.6.1" 1344 | string.prototype.padend "^3.0.0" 1345 | 1346 | object-inspect@^1.7.0: 1347 | version "1.7.0" 1348 | resolved "https://registry.yarnpkg.com/object-inspect/-/object-inspect-1.7.0.tgz#f4f6bd181ad77f006b5ece60bd0b6f398ff74a67" 1349 | integrity sha512-a7pEHdh1xKIAgTySUGgLMx/xwDZskN1Ud6egYYN3EdRW4ZMPNEDUTF+hwy2LUC+Bl+SyLXANnwz/jyh/qutKUw== 1350 | 1351 | object-keys@^1.0.11, object-keys@^1.0.12, object-keys@^1.1.1: 1352 | version "1.1.1" 1353 | resolved "https://registry.yarnpkg.com/object-keys/-/object-keys-1.1.1.tgz#1c47f272df277f3b1daf061677d9c82e2322c60e" 1354 | integrity sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA== 1355 | 1356 | object.assign@4.1.0, object.assign@^4.1.0: 1357 | version "4.1.0" 1358 | resolved "https://registry.yarnpkg.com/object.assign/-/object.assign-4.1.0.tgz#968bf1100d7956bb3ca086f006f846b3bc4008da" 1359 | integrity sha512-exHJeq6kBKj58mqGyTQ9DFvrZC/eR6OwxzoM9YRoGBqrXYonaFyGiFMuc9VZrXf7DarreEwMpurG3dd+CNyW5w== 1360 | dependencies: 1361 | define-properties "^1.1.2" 1362 | function-bind "^1.1.1" 1363 | has-symbols "^1.0.0" 1364 | object-keys "^1.0.11" 1365 | 1366 | object.getownpropertydescriptors@^2.0.3: 1367 | version "2.1.0" 1368 | resolved "https://registry.yarnpkg.com/object.getownpropertydescriptors/-/object.getownpropertydescriptors-2.1.0.tgz#369bf1f9592d8ab89d712dced5cb81c7c5352649" 1369 | integrity sha512-Z53Oah9A3TdLoblT7VKJaTDdXdT+lQO+cNpKVnya5JDe9uLvzu1YyY1yFDFrcxrlRgWrEFH0jJtD/IbuwjcEVg== 1370 | dependencies: 1371 | define-properties "^1.1.3" 1372 | es-abstract "^1.17.0-next.1" 1373 | 1374 | once@^1.3.0, once@^1.3.1, once@^1.4.0: 1375 | version "1.4.0" 1376 | resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1" 1377 | integrity sha1-WDsap3WWHUsROsF9nFC6753Xa9E= 1378 | dependencies: 1379 | wrappy "1" 1380 | 1381 | onetime@^5.1.0: 1382 | version "5.1.0" 1383 | resolved "https://registry.yarnpkg.com/onetime/-/onetime-5.1.0.tgz#fff0f3c91617fe62bb50189636e99ac8a6df7be5" 1384 | integrity sha512-5NcSkPHhwTVFIQN+TUqXoS5+dlElHXdpAWu9I0HP20YOtIi+aZ0Ct82jdlILDxjLEAWwvm+qj1m6aEtsDVmm6Q== 1385 | dependencies: 1386 | mimic-fn "^2.1.0" 1387 | 1388 | open@^6.4.0: 1389 | version "6.4.0" 1390 | resolved "https://registry.yarnpkg.com/open/-/open-6.4.0.tgz#5c13e96d0dc894686164f18965ecfe889ecfc8a9" 1391 | integrity sha512-IFenVPgF70fSm1keSd2iDBIDIBZkroLeuffXq+wKTzTJlBpesFWojV9lb8mzOfaAzM1sr7HQHuO0vtV0zYekGg== 1392 | dependencies: 1393 | is-wsl "^1.1.0" 1394 | 1395 | os-tmpdir@~1.0.2: 1396 | version "1.0.2" 1397 | resolved "https://registry.yarnpkg.com/os-tmpdir/-/os-tmpdir-1.0.2.tgz#bbe67406c79aa85c5cfec766fe5734555dfa1274" 1398 | integrity sha1-u+Z0BseaqFxc/sdm/lc0VV36EnQ= 1399 | 1400 | p-any@^2.0.0: 1401 | version "2.1.0" 1402 | resolved "https://registry.yarnpkg.com/p-any/-/p-any-2.1.0.tgz#719489408e14f5f941a748f1e817f5c71cab35cb" 1403 | integrity sha512-JAERcaMBLYKMq+voYw36+x5Dgh47+/o7yuv2oQYuSSUml4YeqJEFznBrY2UeEkoSHqBua6hz518n/PsowTYLLg== 1404 | dependencies: 1405 | p-cancelable "^2.0.0" 1406 | p-some "^4.0.0" 1407 | type-fest "^0.3.0" 1408 | 1409 | p-cancelable@^1.0.0: 1410 | version "1.1.0" 1411 | resolved "https://registry.yarnpkg.com/p-cancelable/-/p-cancelable-1.1.0.tgz#d078d15a3af409220c886f1d9a0ca2e441ab26cc" 1412 | integrity sha512-s73XxOZ4zpt1edZYZzvhqFa6uvQc1vwUa0K0BdtIZgQMAJj9IbebH+JkgKZc9h+B05PKHLOTl4ajG1BmNrVZlw== 1413 | 1414 | p-cancelable@^2.0.0: 1415 | version "2.0.0" 1416 | resolved "https://registry.yarnpkg.com/p-cancelable/-/p-cancelable-2.0.0.tgz#4a3740f5bdaf5ed5d7c3e34882c6fb5d6b266a6e" 1417 | integrity sha512-wvPXDmbMmu2ksjkB4Z3nZWTSkJEb9lqVdMaCKpZUGJG9TMiNp9XcbG3fn9fPKjem04fJMJnXoyFPk2FmgiaiNg== 1418 | 1419 | p-finally@^1.0.0: 1420 | version "1.0.0" 1421 | resolved "https://registry.yarnpkg.com/p-finally/-/p-finally-1.0.0.tgz#3fbcfb15b899a44123b34b6dcc18b724336a2cae" 1422 | integrity sha1-P7z7FbiZpEEjs0ttzBi3JDNqLK4= 1423 | 1424 | p-limit@^2.0.0, p-limit@^2.2.0: 1425 | version "2.3.0" 1426 | resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-2.3.0.tgz#3dd33c647a214fdfffd835933eb086da0dc21db1" 1427 | integrity sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w== 1428 | dependencies: 1429 | p-try "^2.0.0" 1430 | 1431 | p-locate@^3.0.0: 1432 | version "3.0.0" 1433 | resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-3.0.0.tgz#322d69a05c0264b25997d9f40cd8a891ab0064a4" 1434 | integrity sha512-x+12w/To+4GFfgJhBEpiDcLozRJGegY+Ei7/z0tSLkMmxGZNybVMSfWj9aJn8Z5Fc7dBUNJOOVgPv2H7IwulSQ== 1435 | dependencies: 1436 | p-limit "^2.0.0" 1437 | 1438 | p-locate@^4.1.0: 1439 | version "4.1.0" 1440 | resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-4.1.0.tgz#a3428bb7088b3a60292f66919278b7c297ad4f07" 1441 | integrity sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A== 1442 | dependencies: 1443 | p-limit "^2.2.0" 1444 | 1445 | p-some@^4.0.0: 1446 | version "4.1.0" 1447 | resolved "https://registry.yarnpkg.com/p-some/-/p-some-4.1.0.tgz#28e73bc1e0d62db54c2ed513acd03acba30d5c04" 1448 | integrity sha512-MF/HIbq6GeBqTrTIl5OJubzkGU+qfFhAFi0gnTAK6rgEIJIknEiABHOTtQu4e6JiXjIwuMPMUFQzyHh5QjCl1g== 1449 | dependencies: 1450 | aggregate-error "^3.0.0" 1451 | p-cancelable "^2.0.0" 1452 | 1453 | p-timeout@^3.0.0: 1454 | version "3.2.0" 1455 | resolved "https://registry.yarnpkg.com/p-timeout/-/p-timeout-3.2.0.tgz#c7e17abc971d2a7962ef83626b35d635acf23dfe" 1456 | integrity sha512-rhIwUycgwwKcP9yTOOFK/AKsAopjjCakVqLHePO3CC6Mir1Z99xT+R63jZxAT5lFZLa2inS5h+ZS2GvR99/FBg== 1457 | dependencies: 1458 | p-finally "^1.0.0" 1459 | 1460 | p-try@^2.0.0: 1461 | version "2.2.0" 1462 | resolved "https://registry.yarnpkg.com/p-try/-/p-try-2.2.0.tgz#cb2868540e313d61de58fafbe35ce9004d5540e6" 1463 | integrity sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ== 1464 | 1465 | parse-json@^4.0.0: 1466 | version "4.0.0" 1467 | resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-4.0.0.tgz#be35f5425be1f7f6c747184f98a788cb99477ee0" 1468 | integrity sha1-vjX1Qlvh9/bHRxhPmKeIy5lHfuA= 1469 | dependencies: 1470 | error-ex "^1.3.1" 1471 | json-parse-better-errors "^1.0.1" 1472 | 1473 | path-exists@^3.0.0: 1474 | version "3.0.0" 1475 | resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-3.0.0.tgz#ce0ebeaa5f78cb18925ea7d810d7b59b010fd515" 1476 | integrity sha1-zg6+ql94yxiSXqfYENe1mwEP1RU= 1477 | 1478 | path-exists@^4.0.0: 1479 | version "4.0.0" 1480 | resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-4.0.0.tgz#513bdbe2d3b95d7762e8c1137efa195c6c61b5b3" 1481 | integrity sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w== 1482 | 1483 | path-is-absolute@^1.0.0: 1484 | version "1.0.1" 1485 | resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f" 1486 | integrity sha1-F0uSaHNVNP+8es5r9TpanhtcX18= 1487 | 1488 | path-key@^2.0.1: 1489 | version "2.0.1" 1490 | resolved "https://registry.yarnpkg.com/path-key/-/path-key-2.0.1.tgz#411cadb574c5a140d3a4b1910d40d80cc9f40b40" 1491 | integrity sha1-QRyttXTFoUDTpLGRDUDYDMn0C0A= 1492 | 1493 | path-parse@^1.0.6: 1494 | version "1.0.6" 1495 | resolved "https://registry.yarnpkg.com/path-parse/-/path-parse-1.0.6.tgz#d62dbb5679405d72c4737ec58600e9ddcf06d24c" 1496 | integrity sha512-GSmOT2EbHrINBf9SR7CDELwlJ8AENk3Qn7OikK4nFYAu3Ote2+JYNVvkpAEQm3/TLNEJFD/xZJjzyxg3KBWOzw== 1497 | 1498 | path-type@^3.0.0: 1499 | version "3.0.0" 1500 | resolved "https://registry.yarnpkg.com/path-type/-/path-type-3.0.0.tgz#cef31dc8e0a1a3bb0d105c0cd97cf3bf47f4e36f" 1501 | integrity sha512-T2ZUsdZFHgA3u4e5PfPbjd7HDDpxPnQb5jN0SrDsjNSuVXHJqtwTnWqG0B1jZrgmJ/7lj1EmVIByWt1gxGkWvg== 1502 | dependencies: 1503 | pify "^3.0.0" 1504 | 1505 | pathval@^1.1.0: 1506 | version "1.1.0" 1507 | resolved "https://registry.yarnpkg.com/pathval/-/pathval-1.1.0.tgz#b942e6d4bde653005ef6b71361def8727d0645e0" 1508 | integrity sha1-uULm1L3mUwBe9rcTYd74cn0GReA= 1509 | 1510 | picomatch@^2.0.4: 1511 | version "2.2.2" 1512 | resolved "https://registry.yarnpkg.com/picomatch/-/picomatch-2.2.2.tgz#21f333e9b6b8eaff02468f5146ea406d345f4dad" 1513 | integrity sha512-q0M/9eZHzmr0AulXyPwNfZjtwZ/RBZlbN3K3CErVrk50T2ASYI7Bye0EvekFY3IP1Nt2DHu0re+V2ZHIpMkuWg== 1514 | 1515 | pidtree@^0.3.0: 1516 | version "0.3.1" 1517 | resolved "https://registry.yarnpkg.com/pidtree/-/pidtree-0.3.1.tgz#ef09ac2cc0533df1f3250ccf2c4d366b0d12114a" 1518 | integrity sha512-qQbW94hLHEqCg7nhby4yRC7G2+jYHY4Rguc2bjw7Uug4GIJuu1tvf2uHaZv5Q8zdt+WKJ6qK1FOI6amaWUo5FA== 1519 | 1520 | pify@^3.0.0: 1521 | version "3.0.0" 1522 | resolved "https://registry.yarnpkg.com/pify/-/pify-3.0.0.tgz#e5a4acd2c101fdf3d9a4d07f0dbc4db49dd28176" 1523 | integrity sha1-5aSs0sEB/fPZpNB/DbxNtJ3SgXY= 1524 | 1525 | pluralize@^8.0.0: 1526 | version "8.0.0" 1527 | resolved "https://registry.yarnpkg.com/pluralize/-/pluralize-8.0.0.tgz#1a6fa16a38d12a1901e0320fa017051c539ce3b1" 1528 | integrity sha512-Nc3IT5yHzflTfbjgqWcCPpo7DaKy4FnpB0l/zCAW0Tc7jxAiuqSxHasntB3D7887LSrA93kDJ9IXovxJYxyLCA== 1529 | 1530 | prepend-http@^2.0.0: 1531 | version "2.0.0" 1532 | resolved "https://registry.yarnpkg.com/prepend-http/-/prepend-http-2.0.0.tgz#e92434bfa5ea8c19f41cdfd401d741a3c819d897" 1533 | integrity sha1-6SQ0v6XqjBn0HN/UAddBo8gZ2Jc= 1534 | 1535 | progress@^2.0.3: 1536 | version "2.0.3" 1537 | resolved "https://registry.yarnpkg.com/progress/-/progress-2.0.3.tgz#7e8cf8d8f5b8f239c1bc68beb4eb78567d572ef8" 1538 | integrity sha512-7PiHtLll5LdnKIMw100I+8xJXR5gW2QwWYkT6iJva0bXitZKa/XMrSbdmg3r2Xnaidz9Qumd0VPaMrZlF9V9sA== 1539 | 1540 | public-ip@^4.0.1: 1541 | version "4.0.1" 1542 | resolved "https://registry.yarnpkg.com/public-ip/-/public-ip-4.0.1.tgz#588ee2f6a889d6703fb8c41521e095f2773d6427" 1543 | integrity sha512-uy7G5RtP7MH9KILMX6cschB9aOxxRwFo0zv7Lf+ZXIw5IrH4EfdKQfACIwUEFilEHtkgJ9lpRfggwi1GVzN2vw== 1544 | dependencies: 1545 | dns-socket "^4.2.0" 1546 | got "^9.6.0" 1547 | is-ip "^3.1.0" 1548 | 1549 | pump@^3.0.0: 1550 | version "3.0.0" 1551 | resolved "https://registry.yarnpkg.com/pump/-/pump-3.0.0.tgz#b4a2116815bde2f4e1ea602354e8c75565107a64" 1552 | integrity sha512-LwZy+p3SFs1Pytd/jYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww== 1553 | dependencies: 1554 | end-of-stream "^1.1.0" 1555 | once "^1.3.1" 1556 | 1557 | qs@^6.7.0: 1558 | version "6.9.4" 1559 | resolved "https://registry.yarnpkg.com/qs/-/qs-6.9.4.tgz#9090b290d1f91728d3c22e54843ca44aea5ab687" 1560 | integrity sha512-A1kFqHekCTM7cz0udomYUoYNWjBebHm/5wzU/XqrBRBNWectVH0QIiN+NEcZ0Dte5hvzHwbr8+XQmguPhJ6WdQ== 1561 | 1562 | read-pkg@^3.0.0: 1563 | version "3.0.0" 1564 | resolved "https://registry.yarnpkg.com/read-pkg/-/read-pkg-3.0.0.tgz#9cbc686978fee65d16c00e2b19c237fcf6e38389" 1565 | integrity sha1-nLxoaXj+5l0WwA4rGcI3/Pbjg4k= 1566 | dependencies: 1567 | load-json-file "^4.0.0" 1568 | normalize-package-data "^2.3.2" 1569 | path-type "^3.0.0" 1570 | 1571 | readdirp@~3.2.0: 1572 | version "3.2.0" 1573 | resolved "https://registry.yarnpkg.com/readdirp/-/readdirp-3.2.0.tgz#c30c33352b12c96dfb4b895421a49fd5a9593839" 1574 | integrity sha512-crk4Qu3pmXwgxdSgGhgA/eXiJAPQiX4GMOZZMXnqKxHX7TaoL+3gQVo/WeuAiogr07DpnfjIMpXXa+PAIvwPGQ== 1575 | dependencies: 1576 | picomatch "^2.0.4" 1577 | 1578 | rechoir@^0.6.2: 1579 | version "0.6.2" 1580 | resolved "https://registry.yarnpkg.com/rechoir/-/rechoir-0.6.2.tgz#85204b54dba82d5742e28c96756ef43af50e3384" 1581 | integrity sha1-hSBLVNuoLVdC4oyWdW70OvUOM4Q= 1582 | dependencies: 1583 | resolve "^1.1.6" 1584 | 1585 | recursive-readdir@^2.2.2: 1586 | version "2.2.2" 1587 | resolved "https://registry.yarnpkg.com/recursive-readdir/-/recursive-readdir-2.2.2.tgz#9946fb3274e1628de6e36b2f6714953b4845094f" 1588 | integrity sha512-nRCcW9Sj7NuZwa2XvH9co8NPeXUBhZP7CRKJtU+cS6PW9FpCIFoI5ib0NT1ZrbNuPoRy0ylyCaUL8Gih4LSyFg== 1589 | dependencies: 1590 | minimatch "3.0.4" 1591 | 1592 | require-directory@^2.1.1: 1593 | version "2.1.1" 1594 | resolved "https://registry.yarnpkg.com/require-directory/-/require-directory-2.1.1.tgz#8c64ad5fd30dab1c976e2344ffe7f792a6a6df42" 1595 | integrity sha1-jGStX9MNqxyXbiNE/+f3kqam30I= 1596 | 1597 | require-main-filename@^2.0.0: 1598 | version "2.0.0" 1599 | resolved "https://registry.yarnpkg.com/require-main-filename/-/require-main-filename-2.0.0.tgz#d0b329ecc7cc0f61649f62215be69af54aa8989b" 1600 | integrity sha512-NKN5kMDylKuldxYLSUfrbo5Tuzh4hd+2E8NPPX02mZtn1VuREQToYe/ZdlJy+J3uCpfaiGF05e7B8W0iXbQHmg== 1601 | 1602 | resolve@^1.1.6, resolve@^1.10.0: 1603 | version "1.17.0" 1604 | resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.17.0.tgz#b25941b54968231cc2d1bb76a79cb7f2c0bf8444" 1605 | integrity sha512-ic+7JYiV8Vi2yzQGFWOkiZD5Z9z7O2Zhm9XMaTxdJExKasieFCr+yXZ/WmXsckHiKl12ar0y6XiXDx3m4RHn1w== 1606 | dependencies: 1607 | path-parse "^1.0.6" 1608 | 1609 | responselike@^1.0.2: 1610 | version "1.0.2" 1611 | resolved "https://registry.yarnpkg.com/responselike/-/responselike-1.0.2.tgz#918720ef3b631c5642be068f15ade5a46f4ba1e7" 1612 | integrity sha1-kYcg7ztjHFZCvgaPFa3lpG9Loec= 1613 | dependencies: 1614 | lowercase-keys "^1.0.0" 1615 | 1616 | restore-cursor@^3.1.0: 1617 | version "3.1.0" 1618 | resolved "https://registry.yarnpkg.com/restore-cursor/-/restore-cursor-3.1.0.tgz#39f67c54b3a7a58cea5236d95cf0034239631f7e" 1619 | integrity sha512-l+sSefzHpj5qimhFSE5a8nufZYAM3sBSVMAPtYkmC+4EH2anSGaEMXSD0izRQbu9nfyQ9y5JrVmp7E8oZrUjvA== 1620 | dependencies: 1621 | onetime "^5.1.0" 1622 | signal-exit "^3.0.2" 1623 | 1624 | rimraf@^3.0.2: 1625 | version "3.0.2" 1626 | resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-3.0.2.tgz#f1a5402ba6220ad52cc1282bac1ae3aa49fd061a" 1627 | integrity sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA== 1628 | dependencies: 1629 | glob "^7.1.3" 1630 | 1631 | run-async@^2.3.0, run-async@^2.4.0: 1632 | version "2.4.1" 1633 | resolved "https://registry.yarnpkg.com/run-async/-/run-async-2.4.1.tgz#8440eccf99ea3e70bd409d49aab88e10c189a455" 1634 | integrity sha512-tvVnVv01b8c1RrA6Ep7JkStj85Guv/YrMcwqYQnwjsAS2cTmmPGBBjAjpCW7RrSodNSoE2/qg9O4bceNvUuDgQ== 1635 | 1636 | rxjs@^6.5.3: 1637 | version "6.5.5" 1638 | resolved "https://registry.yarnpkg.com/rxjs/-/rxjs-6.5.5.tgz#c5c884e3094c8cfee31bf27eb87e54ccfc87f9ec" 1639 | integrity sha512-WfQI+1gohdf0Dai/Bbmk5L5ItH5tYqm3ki2c5GdWhKjalzjg93N3avFjVStyZZz+A2Em+ZxKH5bNghw9UeylGQ== 1640 | dependencies: 1641 | tslib "^1.9.0" 1642 | 1643 | safe-buffer@^5.0.1: 1644 | version "5.2.0" 1645 | resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.2.0.tgz#b74daec49b1148f88c64b68d49b1e815c1f2f519" 1646 | integrity sha512-fZEwUGbVl7kouZs1jCdMLdt95hdIv0ZeHg6L7qPeciMZhZ+/gdesW4wgTARkrFWEpspjEATAzUGPG8N2jJiwbg== 1647 | 1648 | "safer-buffer@>= 2.1.2 < 3": 1649 | version "2.1.2" 1650 | resolved "https://registry.yarnpkg.com/safer-buffer/-/safer-buffer-2.1.2.tgz#44fa161b0187b9549dd84bb91802f9bd8385cd6a" 1651 | integrity sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg== 1652 | 1653 | "semver@2 || 3 || 4 || 5", semver@^5.5.0, semver@^5.7.0: 1654 | version "5.7.1" 1655 | resolved "https://registry.yarnpkg.com/semver/-/semver-5.7.1.tgz#a954f931aeba508d307bbf069eff0c01c96116f7" 1656 | integrity sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ== 1657 | 1658 | set-blocking@^2.0.0: 1659 | version "2.0.0" 1660 | resolved "https://registry.yarnpkg.com/set-blocking/-/set-blocking-2.0.0.tgz#045f9782d011ae9a6803ddd382b24392b3d890f7" 1661 | integrity sha1-BF+XgtARrppoA93TgrJDkrPYkPc= 1662 | 1663 | shebang-command@^1.2.0: 1664 | version "1.2.0" 1665 | resolved "https://registry.yarnpkg.com/shebang-command/-/shebang-command-1.2.0.tgz#44aac65b695b03398968c39f363fee5deafdf1ea" 1666 | integrity sha1-RKrGW2lbAzmJaMOfNj/uXer98eo= 1667 | dependencies: 1668 | shebang-regex "^1.0.0" 1669 | 1670 | shebang-regex@^1.0.0: 1671 | version "1.0.0" 1672 | resolved "https://registry.yarnpkg.com/shebang-regex/-/shebang-regex-1.0.0.tgz#da42f49740c0b42db2ca9728571cb190c98efea3" 1673 | integrity sha1-2kL0l0DAtC2yypcoVxyxkMmO/qM= 1674 | 1675 | shell-quote@^1.6.1: 1676 | version "1.7.2" 1677 | resolved "https://registry.yarnpkg.com/shell-quote/-/shell-quote-1.7.2.tgz#67a7d02c76c9da24f99d20808fcaded0e0e04be2" 1678 | integrity sha512-mRz/m/JVscCrkMyPqHc/bczi3OQHkLTqXHEFu0zDhK/qfv3UcOA4SVmRCLmos4bhjr9ekVQubj/R7waKapmiQg== 1679 | 1680 | shelljs@^0.8.3: 1681 | version "0.8.4" 1682 | resolved "https://registry.yarnpkg.com/shelljs/-/shelljs-0.8.4.tgz#de7684feeb767f8716b326078a8a00875890e3c2" 1683 | integrity sha512-7gk3UZ9kOfPLIAbslLzyWeGiEqx9e3rxwZM0KE6EL8GlGwjym9Mrlx5/p33bWTu9YG6vcS4MBxYZDHYr5lr8BQ== 1684 | dependencies: 1685 | glob "^7.0.0" 1686 | interpret "^1.0.0" 1687 | rechoir "^0.6.2" 1688 | 1689 | signal-exit@^3.0.2: 1690 | version "3.0.3" 1691 | resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.3.tgz#a1410c2edd8f077b08b4e253c8eacfcaf057461c" 1692 | integrity sha512-VUJ49FC8U1OxwZLxIbTTrDvLnf/6TDgxZcK8wxR8zs13xpx7xbG60ndBlhNrFi2EMuFRoeDoJO7wthSLq42EjA== 1693 | 1694 | source-map-support@^0.5.19: 1695 | version "0.5.19" 1696 | resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.5.19.tgz#a98b62f86dcaf4f67399648c085291ab9e8fed61" 1697 | integrity sha512-Wonm7zOCIJzBGQdB+thsPar0kYuCIzYvxZwlBa87yi/Mdjv7Tip2cyVbLj5o0cFPN4EVkuTwb3GDDyUx2DGnGw== 1698 | dependencies: 1699 | buffer-from "^1.0.0" 1700 | source-map "^0.6.0" 1701 | 1702 | source-map@^0.6.0, source-map@^0.6.1: 1703 | version "0.6.1" 1704 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.6.1.tgz#74722af32e9614e9c287a8d0bbde48b5e2f1a263" 1705 | integrity sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g== 1706 | 1707 | spdx-correct@^3.0.0: 1708 | version "3.1.0" 1709 | resolved "https://registry.yarnpkg.com/spdx-correct/-/spdx-correct-3.1.0.tgz#fb83e504445268f154b074e218c87c003cd31df4" 1710 | integrity sha512-lr2EZCctC2BNR7j7WzJ2FpDznxky1sjfxvvYEyzxNyb6lZXHODmEoJeFu4JupYlkfha1KZpJyoqiJ7pgA1qq8Q== 1711 | dependencies: 1712 | spdx-expression-parse "^3.0.0" 1713 | spdx-license-ids "^3.0.0" 1714 | 1715 | spdx-exceptions@^2.1.0: 1716 | version "2.3.0" 1717 | resolved "https://registry.yarnpkg.com/spdx-exceptions/-/spdx-exceptions-2.3.0.tgz#3f28ce1a77a00372683eade4a433183527a2163d" 1718 | integrity sha512-/tTrYOC7PPI1nUAgx34hUpqXuyJG+DTHJTnIULG4rDygi4xu/tfgmq1e1cIRwRzwZgo4NLySi+ricLkZkw4i5A== 1719 | 1720 | spdx-expression-parse@^3.0.0: 1721 | version "3.0.0" 1722 | resolved "https://registry.yarnpkg.com/spdx-expression-parse/-/spdx-expression-parse-3.0.0.tgz#99e119b7a5da00e05491c9fa338b7904823b41d0" 1723 | integrity sha512-Yg6D3XpRD4kkOmTpdgbUiEJFKghJH03fiC1OPll5h/0sO6neh2jqRDVHOQ4o/LMea0tgCkbMgea5ip/e+MkWyg== 1724 | dependencies: 1725 | spdx-exceptions "^2.1.0" 1726 | spdx-license-ids "^3.0.0" 1727 | 1728 | spdx-license-ids@^3.0.0: 1729 | version "3.0.5" 1730 | resolved "https://registry.yarnpkg.com/spdx-license-ids/-/spdx-license-ids-3.0.5.tgz#3694b5804567a458d3c8045842a6358632f62654" 1731 | integrity sha512-J+FWzZoynJEXGphVIS+XEh3kFSjZX/1i9gFBaWQcB+/tmpe2qUsSBABpcxqxnAxFdiUFEgAX1bjYGQvIZmoz9Q== 1732 | 1733 | split-lines@^2.0.0: 1734 | version "2.0.0" 1735 | resolved "https://registry.yarnpkg.com/split-lines/-/split-lines-2.0.0.tgz#13f42cdf8cf0d3f5d3fed797b80986168c06defc" 1736 | integrity sha512-gaIdhbqxkB5/VflPXsJwZvEzh/kdwiRPF9iqpkxX4us+lzB8INedFwjCyo6vwuz5x2Ddlnav2zh270CEjCG8mA== 1737 | 1738 | sprintf-js@~1.0.2: 1739 | version "1.0.3" 1740 | resolved "https://registry.yarnpkg.com/sprintf-js/-/sprintf-js-1.0.3.tgz#04e6926f662895354f3dd015203633b857297e2c" 1741 | integrity sha1-BOaSb2YolTVPPdAVIDYzuFcpfiw= 1742 | 1743 | "string-width@^1.0.2 || 2": 1744 | version "2.1.1" 1745 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-2.1.1.tgz#ab93f27a8dc13d28cac815c462143a6d9012ae9e" 1746 | integrity sha512-nOqH59deCq9SRHlxq1Aw85Jnt4w6KvLKqWVik6oA9ZklXLNIOlqg4F2yrT1MVaTjAqvVwdfeZ7w7aCvJD7ugkw== 1747 | dependencies: 1748 | is-fullwidth-code-point "^2.0.0" 1749 | strip-ansi "^4.0.0" 1750 | 1751 | string-width@^3.0.0, string-width@^3.1.0: 1752 | version "3.1.0" 1753 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-3.1.0.tgz#22767be21b62af1081574306f69ac51b62203961" 1754 | integrity sha512-vafcv6KjVZKSgz06oM/H6GDBrAtz8vdhQakGjFIvNrHA6y3HCF1CInLy+QLq8dTJPQ1b+KDUqDFctkdRW44e1w== 1755 | dependencies: 1756 | emoji-regex "^7.0.1" 1757 | is-fullwidth-code-point "^2.0.0" 1758 | strip-ansi "^5.1.0" 1759 | 1760 | string-width@^4.1.0: 1761 | version "4.2.0" 1762 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-4.2.0.tgz#952182c46cc7b2c313d1596e623992bd163b72b5" 1763 | integrity sha512-zUz5JD+tgqtuDjMhwIg5uFVV3dtqZ9yQJlZVfq4I01/K5Paj5UHj7VyrQOJvzawSVlKpObApbfD0Ed6yJc+1eg== 1764 | dependencies: 1765 | emoji-regex "^8.0.0" 1766 | is-fullwidth-code-point "^3.0.0" 1767 | strip-ansi "^6.0.0" 1768 | 1769 | string.prototype.padend@^3.0.0: 1770 | version "3.1.0" 1771 | resolved "https://registry.yarnpkg.com/string.prototype.padend/-/string.prototype.padend-3.1.0.tgz#dc08f57a8010dc5c153550318f67e13adbb72ac3" 1772 | integrity sha512-3aIv8Ffdp8EZj8iLwREGpQaUZiPyrWrpzMBHvkiSW/bK/EGve9np07Vwy7IJ5waydpGXzQZu/F8Oze2/IWkBaA== 1773 | dependencies: 1774 | define-properties "^1.1.3" 1775 | es-abstract "^1.17.0-next.1" 1776 | 1777 | string.prototype.trimend@^1.0.0: 1778 | version "1.0.1" 1779 | resolved "https://registry.yarnpkg.com/string.prototype.trimend/-/string.prototype.trimend-1.0.1.tgz#85812a6b847ac002270f5808146064c995fb6913" 1780 | integrity sha512-LRPxFUaTtpqYsTeNKaFOw3R4bxIzWOnbQ837QfBylo8jIxtcbK/A/sMV7Q+OAV/vWo+7s25pOE10KYSjaSO06g== 1781 | dependencies: 1782 | define-properties "^1.1.3" 1783 | es-abstract "^1.17.5" 1784 | 1785 | string.prototype.trimleft@^2.1.1: 1786 | version "2.1.2" 1787 | resolved "https://registry.yarnpkg.com/string.prototype.trimleft/-/string.prototype.trimleft-2.1.2.tgz#4408aa2e5d6ddd0c9a80739b087fbc067c03b3cc" 1788 | integrity sha512-gCA0tza1JBvqr3bfAIFJGqfdRTyPae82+KTnm3coDXkZN9wnuW3HjGgN386D7hfv5CHQYCI022/rJPVlqXyHSw== 1789 | dependencies: 1790 | define-properties "^1.1.3" 1791 | es-abstract "^1.17.5" 1792 | string.prototype.trimstart "^1.0.0" 1793 | 1794 | string.prototype.trimright@^2.1.1: 1795 | version "2.1.2" 1796 | resolved "https://registry.yarnpkg.com/string.prototype.trimright/-/string.prototype.trimright-2.1.2.tgz#c76f1cef30f21bbad8afeb8db1511496cfb0f2a3" 1797 | integrity sha512-ZNRQ7sY3KroTaYjRS6EbNiiHrOkjihL9aQE/8gfQ4DtAC/aEBRHFJa44OmoWxGGqXuJlfKkZW4WcXErGr+9ZFg== 1798 | dependencies: 1799 | define-properties "^1.1.3" 1800 | es-abstract "^1.17.5" 1801 | string.prototype.trimend "^1.0.0" 1802 | 1803 | string.prototype.trimstart@^1.0.0: 1804 | version "1.0.1" 1805 | resolved "https://registry.yarnpkg.com/string.prototype.trimstart/-/string.prototype.trimstart-1.0.1.tgz#14af6d9f34b053f7cfc89b72f8f2ee14b9039a54" 1806 | integrity sha512-XxZn+QpvrBI1FOcg6dIpxUPgWCPuNXvMD72aaRaUQv1eD4e/Qy8i/hFTe0BUmD60p/QA6bh1avmuPTfNjqVWRw== 1807 | dependencies: 1808 | define-properties "^1.1.3" 1809 | es-abstract "^1.17.5" 1810 | 1811 | strip-ansi@^4.0.0: 1812 | version "4.0.0" 1813 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-4.0.0.tgz#a8479022eb1ac368a871389b635262c505ee368f" 1814 | integrity sha1-qEeQIusaw2iocTibY1JixQXuNo8= 1815 | dependencies: 1816 | ansi-regex "^3.0.0" 1817 | 1818 | strip-ansi@^5.0.0, strip-ansi@^5.1.0, strip-ansi@^5.2.0: 1819 | version "5.2.0" 1820 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-5.2.0.tgz#8c9a536feb6afc962bdfa5b104a5091c1ad9c0ae" 1821 | integrity sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA== 1822 | dependencies: 1823 | ansi-regex "^4.1.0" 1824 | 1825 | strip-ansi@^6.0.0: 1826 | version "6.0.0" 1827 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-6.0.0.tgz#0b1571dd7669ccd4f3e06e14ef1eed26225ae532" 1828 | integrity sha512-AuvKTrTfQNYNIctbR1K/YGTR1756GycPsg7b9bdV9Duqur4gv6aKqHXah67Z8ImS7WEz5QVcOtlfW2rZEugt6w== 1829 | dependencies: 1830 | ansi-regex "^5.0.0" 1831 | 1832 | strip-bom@^3.0.0: 1833 | version "3.0.0" 1834 | resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-3.0.0.tgz#2334c18e9c759f7bdd56fdef7e9ae3d588e68ed3" 1835 | integrity sha1-IzTBjpx1n3vdVv3vfprj1YjmjtM= 1836 | 1837 | strip-bom@^4.0.0: 1838 | version "4.0.0" 1839 | resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-4.0.0.tgz#9c3505c1db45bcedca3d9cf7a16f5c5aa3901878" 1840 | integrity sha512-3xurFv5tEgii33Zi8Jtp55wEIILR9eh34FAW00PZf+JnSsTmV/ioewSgQl97JHvgjoRGwPShsWm+IdrxB35d0w== 1841 | 1842 | strip-json-comments@2.0.1: 1843 | version "2.0.1" 1844 | resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-2.0.1.tgz#3c531942e908c2697c0ec344858c286c7ca0a60a" 1845 | integrity sha1-PFMZQukIwml8DsNEhYwobHygpgo= 1846 | 1847 | supports-color@6.0.0: 1848 | version "6.0.0" 1849 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-6.0.0.tgz#76cfe742cf1f41bb9b1c29ad03068c05b4c0e40a" 1850 | integrity sha512-on9Kwidc1IUQo+bQdhi8+Tijpo0e1SS6RoGo2guUwn5vdaxw8RXOF9Vb2ws+ihWOmh4JnCJOvaziZWP1VABaLg== 1851 | dependencies: 1852 | has-flag "^3.0.0" 1853 | 1854 | supports-color@^5.3.0: 1855 | version "5.5.0" 1856 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-5.5.0.tgz#e2e69a44ac8772f78a1ec0b35b689df6530efc8f" 1857 | integrity sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow== 1858 | dependencies: 1859 | has-flag "^3.0.0" 1860 | 1861 | supports-color@^7.1.0: 1862 | version "7.1.0" 1863 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-7.1.0.tgz#68e32591df73e25ad1c4b49108a2ec507962bfd1" 1864 | integrity sha512-oRSIpR8pxT1Wr2FquTNnGet79b3BWljqOuoW/h4oBhxJ/HUbX5nX6JSruTkvXDCFMwDPvsaTTbvMLKZWSy0R5g== 1865 | dependencies: 1866 | has-flag "^4.0.0" 1867 | 1868 | through@^2.3.6: 1869 | version "2.3.8" 1870 | resolved "https://registry.yarnpkg.com/through/-/through-2.3.8.tgz#0dd4c9ffaabc357960b1b724115d7e0e86a2e1f5" 1871 | integrity sha1-DdTJ/6q8NXlgsbckEV1+Doai4fU= 1872 | 1873 | tmp@^0.0.33: 1874 | version "0.0.33" 1875 | resolved "https://registry.yarnpkg.com/tmp/-/tmp-0.0.33.tgz#6d34335889768d21b2bcda0aa277ced3b1bfadf9" 1876 | integrity sha512-jRCJlojKnZ3addtTOjdIqoRuPEKBvNXcGYqzO6zWZX8KfKEpnGY5jfggJQ3EjKuu8D4bJRr0y+cYJFmYbImXGw== 1877 | dependencies: 1878 | os-tmpdir "~1.0.2" 1879 | 1880 | to-readable-stream@^1.0.0: 1881 | version "1.0.0" 1882 | resolved "https://registry.yarnpkg.com/to-readable-stream/-/to-readable-stream-1.0.0.tgz#ce0aa0c2f3df6adf852efb404a783e77c0475771" 1883 | integrity sha512-Iq25XBt6zD5npPhlLVXGFN3/gyR2/qODcKNNyTMd4vbm39HUaOiAM4PMq0eMVC/Tkxz+Zjdsc55g9yyz+Yq00Q== 1884 | 1885 | to-regex-range@^5.0.1: 1886 | version "5.0.1" 1887 | resolved "https://registry.yarnpkg.com/to-regex-range/-/to-regex-range-5.0.1.tgz#1648c44aae7c8d988a326018ed72f5b4dd0392e4" 1888 | integrity sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ== 1889 | dependencies: 1890 | is-number "^7.0.0" 1891 | 1892 | ts2gas@^3.4.4: 1893 | version "3.6.1" 1894 | resolved "https://registry.yarnpkg.com/ts2gas/-/ts2gas-3.6.1.tgz#9adb74a7d2d42ba66c51dc2c256b74e8213fbe0b" 1895 | integrity sha512-B/4OZJKslQytpAtRE0Q0MoZ0h8fyXzJDmMu1CIPdP6q3iEAQJHxCFTxUsrZWOCNQMIuFlxsEX/PHn41g8TVSvg== 1896 | dependencies: 1897 | typescript "^3.8.3" 1898 | 1899 | tslib@^1.9.0: 1900 | version "1.11.1" 1901 | resolved "https://registry.yarnpkg.com/tslib/-/tslib-1.11.1.tgz#eb15d128827fbee2841549e171f45ed338ac7e35" 1902 | integrity sha512-aZW88SY8kQbU7gpV19lN24LtXh/yD4ZZg6qieAJDDg+YBsJcSmLGK9QpnUjAKVG/xefmvJGd1WUmfpT/g6AJGA== 1903 | 1904 | type-detect@^4.0.0, type-detect@^4.0.5: 1905 | version "4.0.8" 1906 | resolved "https://registry.yarnpkg.com/type-detect/-/type-detect-4.0.8.tgz#7646fb5f18871cfbb7749e69bd39a6388eb7450c" 1907 | integrity sha512-0fr/mIH1dlO+x7TlcMy+bIDqKPsw/70tVyeHW787goQjhmqaZe10uwLujubK9q9Lg6Fiho1KUKDYz0Z7k7g5/g== 1908 | 1909 | type-fest@^0.11.0: 1910 | version "0.11.0" 1911 | resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-0.11.0.tgz#97abf0872310fed88a5c466b25681576145e33f1" 1912 | integrity sha512-OdjXJxnCN1AvyLSzeKIgXTXxV+99ZuXl3Hpo9XpJAv9MBcHrrJOQ5kV7ypXOuQie+AmWG25hLbiKdwYTifzcfQ== 1913 | 1914 | type-fest@^0.3.0: 1915 | version "0.3.1" 1916 | resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-0.3.1.tgz#63d00d204e059474fe5e1b7c011112bbd1dc29e1" 1917 | integrity sha512-cUGJnCdr4STbePCgqNFbpVNCepa+kAVohJs1sLhxzdH+gnEoOd8VhbYa7pD3zZYGiURWM2xzEII3fQcRizDkYQ== 1918 | 1919 | typedoc-default-themes@^0.7.2: 1920 | version "0.7.2" 1921 | resolved "https://registry.yarnpkg.com/typedoc-default-themes/-/typedoc-default-themes-0.7.2.tgz#1e9896f920b58e6da0bba9d7e643738d02405a5a" 1922 | integrity sha512-fiFKlFO6VTqjcno8w6WpTsbCgXmfPHVjnLfYkmByZE7moaz+E2DSpAT+oHtDHv7E0BM5kAhPrHJELP2J2Y2T9A== 1923 | dependencies: 1924 | backbone "^1.4.0" 1925 | jquery "^3.4.1" 1926 | lunr "^2.3.8" 1927 | underscore "^1.9.1" 1928 | 1929 | typedoc@^0.16.2: 1930 | version "0.16.11" 1931 | resolved "https://registry.yarnpkg.com/typedoc/-/typedoc-0.16.11.tgz#95f862c6eba78533edc9af7096d2295b718eddc1" 1932 | integrity sha512-YEa5i0/n0yYmLJISJ5+po6seYfJQJ5lQYcHCPF9ffTF92DB/TAZO/QrazX5skPHNPtmlIht5FdTXCM2kC7jQFQ== 1933 | dependencies: 1934 | "@types/minimatch" "3.0.3" 1935 | fs-extra "^8.1.0" 1936 | handlebars "^4.7.2" 1937 | highlight.js "^9.17.1" 1938 | lodash "^4.17.15" 1939 | marked "^0.8.0" 1940 | minimatch "^3.0.0" 1941 | progress "^2.0.3" 1942 | shelljs "^0.8.3" 1943 | typedoc-default-themes "^0.7.2" 1944 | typescript "3.7.x" 1945 | 1946 | typescript@3.7.x: 1947 | version "3.7.5" 1948 | resolved "https://registry.yarnpkg.com/typescript/-/typescript-3.7.5.tgz#0692e21f65fd4108b9330238aac11dd2e177a1ae" 1949 | integrity sha512-/P5lkRXkWHNAbcJIiHPfRoKqyd7bsyCma1hZNUGfn20qm64T6ZBlrzprymeu918H+mB/0rIg2gGK/BXkhhYgBw== 1950 | 1951 | typescript@^3.6.2, typescript@^3.8.3: 1952 | version "3.8.3" 1953 | resolved "https://registry.yarnpkg.com/typescript/-/typescript-3.8.3.tgz#409eb8544ea0335711205869ec458ab109ee1061" 1954 | integrity sha512-MYlEfn5VrLNsgudQTVJeNaQFUAI7DkhnOjdpAp4T+ku1TfQClewlbSuTVHiA+8skNBgaf02TL/kLOvig4y3G8w== 1955 | 1956 | uglify-js@^3.1.4: 1957 | version "3.9.2" 1958 | resolved "https://registry.yarnpkg.com/uglify-js/-/uglify-js-3.9.2.tgz#012b74fb6a2e440d9ba1f79110a479d3b1f2d48d" 1959 | integrity sha512-zGVwKslUAD/EeqOrD1nQaBmXIHl1Vw371we8cvS8I6mYK9rmgX5tv8AAeJdfsQ3Kk5mGax2SVV/AizxdNGhl7Q== 1960 | dependencies: 1961 | commander "~2.20.3" 1962 | 1963 | underscore@>=1.8.3, underscore@^1.9.1: 1964 | version "1.10.2" 1965 | resolved "https://registry.yarnpkg.com/underscore/-/underscore-1.10.2.tgz#73d6aa3668f3188e4adb0f1943bd12cfd7efaaaf" 1966 | integrity sha512-N4P+Q/BuyuEKFJ43B9gYuOj4TQUHXX+j2FqguVOpjkssLUUrnJofCcBccJSCoeturDoZU6GorDTHSvUDlSQbTg== 1967 | 1968 | universalify@^0.1.0: 1969 | version "0.1.2" 1970 | resolved "https://registry.yarnpkg.com/universalify/-/universalify-0.1.2.tgz#b646f69be3942dabcecc9d6639c80dc105efaa66" 1971 | integrity sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg== 1972 | 1973 | universalify@^1.0.0: 1974 | version "1.0.0" 1975 | resolved "https://registry.yarnpkg.com/universalify/-/universalify-1.0.0.tgz#b61a1da173e8435b2fe3c67d29b9adf8594bd16d" 1976 | integrity sha512-rb6X1W158d7pRQBg5gkR8uPaSfiids68LTJQYOtEUhoJUWBdaQHsuT/EUduxXYxcrt4r5PJ4fuHW1MHT6p0qug== 1977 | 1978 | url-parse-lax@^3.0.0: 1979 | version "3.0.0" 1980 | resolved "https://registry.yarnpkg.com/url-parse-lax/-/url-parse-lax-3.0.0.tgz#16b5cafc07dbe3676c1b1999177823d6503acb0c" 1981 | integrity sha1-FrXK/Afb42dsGxmZF3gj1lA6yww= 1982 | dependencies: 1983 | prepend-http "^2.0.0" 1984 | 1985 | url-template@^2.0.8: 1986 | version "2.0.8" 1987 | resolved "https://registry.yarnpkg.com/url-template/-/url-template-2.0.8.tgz#fc565a3cccbff7730c775f5641f9555791439f21" 1988 | integrity sha1-/FZaPMy/93MMd19WQflVV5FDnyE= 1989 | 1990 | uuid@^7.0.0: 1991 | version "7.0.3" 1992 | resolved "https://registry.yarnpkg.com/uuid/-/uuid-7.0.3.tgz#c5c9f2c8cf25dc0a372c4df1441c41f5bd0c680b" 1993 | integrity sha512-DPSke0pXhTZgoF/d+WSt2QaKMCFSfx7QegxEWT+JOuHF5aWrKEn0G+ztjuJg/gG8/ItK+rbPCD/yNv8yyih6Cg== 1994 | 1995 | validate-npm-package-license@^3.0.1: 1996 | version "3.0.4" 1997 | resolved "https://registry.yarnpkg.com/validate-npm-package-license/-/validate-npm-package-license-3.0.4.tgz#fc91f6b9c7ba15c857f4cb2c5defeec39d4f410a" 1998 | integrity sha512-DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew== 1999 | dependencies: 2000 | spdx-correct "^3.0.0" 2001 | spdx-expression-parse "^3.0.0" 2002 | 2003 | watch@^1.0.2: 2004 | version "1.0.2" 2005 | resolved "https://registry.yarnpkg.com/watch/-/watch-1.0.2.tgz#340a717bde765726fa0aa07d721e0147a551df0c" 2006 | integrity sha1-NApxe952Vyb6CqB9ch4BR6VR3ww= 2007 | dependencies: 2008 | exec-sh "^0.2.0" 2009 | minimist "^1.2.0" 2010 | 2011 | which-module@^2.0.0: 2012 | version "2.0.0" 2013 | resolved "https://registry.yarnpkg.com/which-module/-/which-module-2.0.0.tgz#d9ef07dce77b9902b8a3a8fa4b31c3e3f7e6e87a" 2014 | integrity sha1-2e8H3Od7mQK4o6j6SzHD4/fm6Ho= 2015 | 2016 | which@1.3.1, which@^1.2.9: 2017 | version "1.3.1" 2018 | resolved "https://registry.yarnpkg.com/which/-/which-1.3.1.tgz#a45043d54f5805316da8d62f9f50918d3da70b0a" 2019 | integrity sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ== 2020 | dependencies: 2021 | isexe "^2.0.0" 2022 | 2023 | wide-align@1.1.3: 2024 | version "1.1.3" 2025 | resolved "https://registry.yarnpkg.com/wide-align/-/wide-align-1.1.3.tgz#ae074e6bdc0c14a431e804e624549c633b000457" 2026 | integrity sha512-QGkOQc8XL6Bt5PwnsExKBPuMKBxnGxWWW3fU55Xt4feHozMUhdUMaBCk290qpm/wG5u/RSKzwdAC4i51YigihA== 2027 | dependencies: 2028 | string-width "^1.0.2 || 2" 2029 | 2030 | wordwrap@^1.0.0: 2031 | version "1.0.0" 2032 | resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-1.0.0.tgz#27584810891456a4171c8d0226441ade90cbcaeb" 2033 | integrity sha1-J1hIEIkUVqQXHI0CJkQa3pDLyus= 2034 | 2035 | wrap-ansi@^5.1.0: 2036 | version "5.1.0" 2037 | resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-5.1.0.tgz#1fd1f67235d5b6d0fee781056001bfb694c03b09" 2038 | integrity sha512-QC1/iN/2/RPVJ5jYK8BGttj5z83LmSKmvbvrXPNCLZSEb32KKVDJDl/MOt2N01qU2H/FkzEa9PKto1BqDjtd7Q== 2039 | dependencies: 2040 | ansi-styles "^3.2.0" 2041 | string-width "^3.0.0" 2042 | strip-ansi "^5.0.0" 2043 | 2044 | wrappy@1: 2045 | version "1.0.2" 2046 | resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f" 2047 | integrity sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8= 2048 | 2049 | y18n@^4.0.0: 2050 | version "4.0.0" 2051 | resolved "https://registry.yarnpkg.com/y18n/-/y18n-4.0.0.tgz#95ef94f85ecc81d007c264e190a120f0a3c8566b" 2052 | integrity sha512-r9S/ZyXu/Xu9q1tYlpsLIsa3EeLXXk0VwlxqTcFRfg9EhMW+17kbt9G0NrgCmhGb5vT2hyhJZLfDGx+7+5Uj/w== 2053 | 2054 | yallist@^3.0.2: 2055 | version "3.1.1" 2056 | resolved "https://registry.yarnpkg.com/yallist/-/yallist-3.1.1.tgz#dbb7daf9bfd8bac9ab45ebf602b8cbad0d5d08fd" 2057 | integrity sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g== 2058 | 2059 | yargs-parser@13.1.2, yargs-parser@^13.1.2: 2060 | version "13.1.2" 2061 | resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-13.1.2.tgz#130f09702ebaeef2650d54ce6e3e5706f7a4fb38" 2062 | integrity sha512-3lbsNRf/j+A4QuSZfDRA7HRSfWrzO0YjqTJd5kjAq37Zep1CEgaYmrH9Q3GwPiB9cHyd1Y1UwggGhJGoxipbzg== 2063 | dependencies: 2064 | camelcase "^5.0.0" 2065 | decamelize "^1.2.0" 2066 | 2067 | yargs-unparser@1.6.0: 2068 | version "1.6.0" 2069 | resolved "https://registry.yarnpkg.com/yargs-unparser/-/yargs-unparser-1.6.0.tgz#ef25c2c769ff6bd09e4b0f9d7c605fb27846ea9f" 2070 | integrity sha512-W9tKgmSn0DpSatfri0nx52Joq5hVXgeLiqR/5G0sZNDoLZFOr/xjBUDcShCOGNsBnEMNo1KAMBkTej1Hm62HTw== 2071 | dependencies: 2072 | flat "^4.1.0" 2073 | lodash "^4.17.15" 2074 | yargs "^13.3.0" 2075 | 2076 | yargs@13.3.2, yargs@^13.3.0: 2077 | version "13.3.2" 2078 | resolved "https://registry.yarnpkg.com/yargs/-/yargs-13.3.2.tgz#ad7ffefec1aa59565ac915f82dccb38a9c31a2dd" 2079 | integrity sha512-AX3Zw5iPruN5ie6xGRIDgqkT+ZhnRlZMLMHAs8tg7nRruy2Nb+i5o9bwghAogtM08q1dpr2LVoS8KSTMYpWXUw== 2080 | dependencies: 2081 | cliui "^5.0.0" 2082 | find-up "^3.0.0" 2083 | get-caller-file "^2.0.1" 2084 | require-directory "^2.1.1" 2085 | require-main-filename "^2.0.0" 2086 | set-blocking "^2.0.0" 2087 | string-width "^3.0.0" 2088 | which-module "^2.0.0" 2089 | y18n "^4.0.0" 2090 | yargs-parser "^13.1.2" 2091 | --------------------------------------------------------------------------------