├── .editorconfig ├── .gitignore ├── LICENSE ├── README.md ├── auth.js ├── client.js ├── database.js ├── index.js ├── package-lock.json └── package.json /.editorconfig: -------------------------------------------------------------------------------- 1 | # EditorConfig helps developers define and maintain consistent 2 | # coding styles between different editors and IDEs 3 | # editorconfig.org 4 | 5 | root = true 6 | 7 | [*] 8 | end_of_line = lf 9 | charset = utf-8 10 | trim_trailing_whitespace = true 11 | insert_final_newline = false 12 | indent_style = space 13 | indent_size = 2 14 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | test.sqlite 3 | .env 4 | .idea/ -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | Apache License 2 | Version 2.0, January 2004 3 | http://www.apache.org/licenses/ 4 | 5 | TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION 6 | 7 | 1. Definitions. 8 | 9 | "License" shall mean the terms and conditions for use, reproduction, 10 | and distribution as defined by Sections 1 through 9 of this document. 11 | 12 | "Licensor" shall mean the copyright owner or entity authorized by 13 | the copyright owner that is granting the License. 14 | 15 | "Legal Entity" shall mean the union of the acting entity and all 16 | other entities that control, are controlled by, or are under common 17 | control with that entity. For the purposes of this definition, 18 | "control" means (i) the power, direct or indirect, to cause the 19 | direction or management of such entity, whether by contract or 20 | otherwise, or (ii) ownership of fifty percent (50%) or more of the 21 | outstanding shares, or (iii) beneficial ownership of such entity. 22 | 23 | "You" (or "Your") shall mean an individual or Legal Entity 24 | exercising permissions granted by this License. 25 | 26 | "Source" form shall mean the preferred form for making modifications, 27 | including but not limited to software source code, documentation 28 | source, and configuration files. 29 | 30 | "Object" form shall mean any form resulting from mechanical 31 | transformation or translation of a Source form, including but 32 | not limited to compiled object code, generated documentation, 33 | and conversions to other media types. 34 | 35 | "Work" shall mean the work of authorship, whether in Source or 36 | Object form, made available under the License, as indicated by a 37 | copyright notice that is included in or attached to the work 38 | (an example is provided in the Appendix below). 39 | 40 | "Derivative Works" shall mean any work, whether in Source or Object 41 | form, that is based on (or derived from) the Work and for which the 42 | editorial revisions, annotations, elaborations, or other modifications 43 | represent, as a whole, an original work of authorship. For the purposes 44 | of this License, Derivative Works shall not include works that remain 45 | separable from, or merely link (or bind by name) to the interfaces of, 46 | the Work and Derivative Works thereof. 47 | 48 | "Contribution" shall mean any work of authorship, including 49 | the original version of the Work and any modifications or additions 50 | to that Work or Derivative Works thereof, that is intentionally 51 | submitted to Licensor for inclusion in the Work by the copyright owner 52 | or by an individual or Legal Entity authorized to submit on behalf of 53 | the copyright owner. For the purposes of this definition, "submitted" 54 | means any form of electronic, verbal, or written communication sent 55 | to the Licensor or its representatives, including but not limited to 56 | communication on electronic mailing lists, source code control systems, 57 | and issue tracking systems that are managed by, or on behalf of, the 58 | Licensor for the purpose of discussing and improving the Work, but 59 | excluding communication that is conspicuously marked or otherwise 60 | designated in writing by the copyright owner as "Not a Contribution." 61 | 62 | "Contributor" shall mean Licensor and any individual or Legal Entity 63 | on behalf of whom a Contribution has been received by Licensor and 64 | subsequently incorporated within the Work. 65 | 66 | 2. Grant of Copyright License. Subject to the terms and conditions of 67 | this License, each Contributor hereby grants to You a perpetual, 68 | worldwide, non-exclusive, no-charge, royalty-free, irrevocable 69 | copyright license to reproduce, prepare Derivative Works of, 70 | publicly display, publicly perform, sublicense, and distribute the 71 | Work and such Derivative Works in Source or Object form. 72 | 73 | 3. Grant of Patent License. Subject to the terms and conditions of 74 | this License, each Contributor hereby grants to You a perpetual, 75 | worldwide, non-exclusive, no-charge, royalty-free, irrevocable 76 | (except as stated in this section) patent license to make, have made, 77 | use, offer to sell, sell, import, and otherwise transfer the Work, 78 | where such license applies only to those patent claims licensable 79 | by such Contributor that are necessarily infringed by their 80 | Contribution(s) alone or by combination of their Contribution(s) 81 | with the Work to which such Contribution(s) was submitted. If You 82 | institute patent litigation against any entity (including a 83 | cross-claim or counterclaim in a lawsuit) alleging that the Work 84 | or a Contribution incorporated within the Work constitutes direct 85 | or contributory patent infringement, then any patent licenses 86 | granted to You under this License for that Work shall terminate 87 | as of the date such litigation is filed. 88 | 89 | 4. Redistribution. You may reproduce and distribute copies of the 90 | Work or Derivative Works thereof in any medium, with or without 91 | modifications, and in Source or Object form, provided that You 92 | meet the following conditions: 93 | 94 | (a) You must give any other recipients of the Work or 95 | Derivative Works a copy of this License; and 96 | 97 | (b) You must cause any modified files to carry prominent notices 98 | stating that You changed the files; and 99 | 100 | (c) You must retain, in the Source form of any Derivative Works 101 | that You distribute, all copyright, patent, trademark, and 102 | attribution notices from the Source form of the Work, 103 | excluding those notices that do not pertain to any part of 104 | the Derivative Works; and 105 | 106 | (d) If the Work includes a "NOTICE" text file as part of its 107 | distribution, then any Derivative Works that You distribute must 108 | include a readable copy of the attribution notices contained 109 | within such NOTICE file, excluding those notices that do not 110 | pertain to any part of the Derivative Works, in at least one 111 | of the following places: within a NOTICE text file distributed 112 | as part of the Derivative Works; within the Source form or 113 | documentation, if provided along with the Derivative Works; or, 114 | within a display generated by the Derivative Works, if and 115 | wherever such third-party notices normally appear. The contents 116 | of the NOTICE file are for informational purposes only and 117 | do not modify the License. You may add Your own attribution 118 | notices within Derivative Works that You distribute, alongside 119 | or as an addendum to the NOTICE text from the Work, provided 120 | that such additional attribution notices cannot be construed 121 | as modifying the License. 122 | 123 | You may add Your own copyright statement to Your modifications and 124 | may provide additional or different license terms and conditions 125 | for use, reproduction, or distribution of Your modifications, or 126 | for any such Derivative Works as a whole, provided Your use, 127 | reproduction, and distribution of the Work otherwise complies with 128 | the conditions stated in this License. 129 | 130 | 5. Submission of Contributions. Unless You explicitly state otherwise, 131 | any Contribution intentionally submitted for inclusion in the Work 132 | by You to the Licensor shall be under the terms and conditions of 133 | this License, without any additional terms or conditions. 134 | Notwithstanding the above, nothing herein shall supersede or modify 135 | the terms of any separate license agreement you may have executed 136 | with Licensor regarding such Contributions. 137 | 138 | 6. Trademarks. This License does not grant permission to use the trade 139 | names, trademarks, service marks, or product names of the Licensor, 140 | except as required for reasonable and customary use in describing the 141 | origin of the Work and reproducing the content of the NOTICE file. 142 | 143 | 7. Disclaimer of Warranty. Unless required by applicable law or 144 | agreed to in writing, Licensor provides the Work (and each 145 | Contributor provides its Contributions) on an "AS IS" BASIS, 146 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or 147 | implied, including, without limitation, any warranties or conditions 148 | of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A 149 | PARTICULAR PURPOSE. You are solely responsible for determining the 150 | appropriateness of using or redistributing the Work and assume any 151 | risks associated with Your exercise of permissions under this License. 152 | 153 | 8. Limitation of Liability. In no event and under no legal theory, 154 | whether in tort (including negligence), contract, or otherwise, 155 | unless required by applicable law (such as deliberate and grossly 156 | negligent acts) or agreed to in writing, shall any Contributor be 157 | liable to You for damages, including any direct, indirect, special, 158 | incidental, or consequential damages of any character arising as a 159 | result of this License or out of the use or inability to use the 160 | Work (including but not limited to damages for loss of goodwill, 161 | work stoppage, computer failure or malfunction, or any and all 162 | other commercial damages or losses), even if such Contributor 163 | has been advised of the possibility of such damages. 164 | 165 | 9. Accepting Warranty or Additional Liability. While redistributing 166 | the Work or Derivative Works thereof, You may choose to offer, 167 | and charge a fee for, acceptance of support, warranty, indemnity, 168 | or other liability obligations and/or rights consistent with this 169 | License. However, in accepting such obligations, You may act only 170 | on Your own behalf and on Your sole responsibility, not on behalf 171 | of any other Contributor, and only if You agree to indemnify, 172 | defend, and hold each Contributor harmless for any liability 173 | incurred by, or claims asserted against, such Contributor by reason 174 | of your accepting any such warranty or additional liability. 175 | 176 | END OF TERMS AND CONDITIONS 177 | 178 | APPENDIX: How to apply the Apache License to your work. 179 | 180 | To apply the Apache License to your work, attach the following 181 | boilerplate notice, with the fields enclosed by brackets "[]" 182 | replaced with your own identifying information. (Don't include 183 | the brackets!) The text should be enclosed in the appropriate 184 | comment syntax for the file format. We also recommend that a 185 | file or class name and description of purpose be included on the 186 | same "printed page" as the copyright notice for easier 187 | identification within third-party archives. 188 | 189 | Copyright [yyyy] [name of copyright owner] 190 | 191 | Licensed under the Apache License, Version 2.0 (the "License"); 192 | you may not use this file except in compliance with the License. 193 | You may obtain a copy of the License at 194 | 195 | http://www.apache.org/licenses/LICENSE-2.0 196 | 197 | Unless required by applicable law or agreed to in writing, software 198 | distributed under the License is distributed on an "AS IS" BASIS, 199 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 200 | See the License for the specific language governing permissions and 201 | limitations under the License. 202 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Simple REST API with Node and OAuth 2.0 2 | 3 | This example app shows how to create a REST API in Node and secure it with OAuth 2.0 Client Credentials using Okta. This also has an example client written as a CLI that can authenticate with Okta and use the REST API. 4 | 5 | ## Getting Started 6 | 7 | ### Install Dependencies 8 | 9 | After cloning the repository, simply run `npm install` to install the dependencies. 10 | 11 | ### Save Environment Variables 12 | 13 | If you don't have one already, [sign up for a free Okta Developer account](https://www.okta.com/developer/signup/). Log in to your developer console to get the following information. 14 | 15 | Create a file named `.env` that has the following variables, all obtained from your Okta developer console: 16 | 17 | * **ISSUER** 18 | 19 | Log in to your developer console and navigate to **API** > **Authorization Servers**. Copy the `Issuer URI` for the `default` server. 20 | 21 | * **SCOPE** 22 | 23 | Click on the word `default` to get details about the authorization server. Go to the **Scopes** tab and click the **Add Scope** button. Give it a name and optionally a description. The example app is for a parts manager, so for example you could name it `parts_manager`. 24 | 25 | * **CLIENT_ID** 26 | 27 | Navigate to **Applications**, then click the **Add Application** button. Select **Service**, then click **Next**. Choose a name then click **Done**. The **Client ID** is shown on the next page. 28 | 29 | * **CLIENT_SECRET** 30 | 31 | The **Client Secret** is on the same page as the **Client ID** 32 | 33 | When you're done, your `.env` file should look something like this: 34 | 35 | ```bash 36 | ISSUER=https://dev-123456.oktapreview.com/oauth2/default 37 | SCOPE=parts_manager 38 | CLIENT_ID=0123456789abcdefghij 39 | CLIENT_SECRET=0123456789abcdefghijklmnopqrstuvwxyz0123 40 | ``` 41 | 42 | ### Run the Server 43 | 44 | To run the server, run `npm start` from the terminal. 45 | 46 | ### Run the Client 47 | 48 | To make secure API requests, you'll need to use the client located at `client.js`. 49 | 50 | **USAGE** 51 | 52 | > **node client** url \[method\] \[jsonString\] 53 | 54 | * **url** *(required)*: the path to your server along with the endpoint (e.g. `http://localhost:3000/parts`) 55 | * **method** *(optional)*: the HTTP verb for the REST call (e.g. `delete` or `post`). Defaults to `get` 56 | * **jsonString** *(optional)*: stringified JSON data for use in `put` or `post` calls (e.g. `'{"partNumber":"asdf-1234"}'`) 57 | 58 | **EXAMPLES** 59 | 60 | * `node client http://localhost:3000/parts`: get a list of all parts 61 | * `node client http://localhost:3000/parts post '{"partNumber":"asdf-1234"}'`: creates a new part with part number `asdf-1234` 62 | * `node client http://localhost:3000/parts/1`: gets details about the part with and `id` of `1` 63 | * `node client http://localhost:3000/parts/7 put '{"name":"A single dairy farm"}'`: updates the `name` field of the part with an `id` of `7` 64 | * `node client http://localhost:3000/parts/11 delete`: deletes the part with an `id` of `11` 65 | 66 | ## License 67 | 68 | Apache 2.0, see [LICENSE](LICENSE). 69 | -------------------------------------------------------------------------------- /auth.js: -------------------------------------------------------------------------------- 1 | const OktaJwtVerifier = require('@okta/jwt-verifier') 2 | 3 | const oktaJwtVerifier = new OktaJwtVerifier({ 4 | issuer: process.env.ISSUER, 5 | clientId: process.env.CLIENT_ID 6 | }) 7 | 8 | module.exports = async (req, res, next) => { 9 | try { 10 | const { authorization } = req.headers 11 | if (!authorization) throw new Error('You must send an Authorization header') 12 | 13 | const [authType, token] = authorization.trim().split(' ') 14 | if (authType !== 'Bearer') throw new Error('Expected a Bearer token') 15 | 16 | const { claims } = await oktaJwtVerifier.verifyAccessToken(token, 'api://default') 17 | if (!claims.scp.includes(process.env.SCOPE)) { 18 | throw new Error('Could not verify the proper scope') 19 | } 20 | next() 21 | } catch (error) { 22 | next(error.message) 23 | } 24 | } 25 | -------------------------------------------------------------------------------- /client.js: -------------------------------------------------------------------------------- 1 | require('dotenv').config() 2 | const axios = require('axios') 3 | 4 | const { ISSUER, CLIENT_ID, CLIENT_SECRET, SCOPE } = process.env 5 | 6 | const [,, url, method, body] = process.argv 7 | if (!url) { 8 | console.log('Usage: node client {url} [{method}] [{jsonData}]') 9 | process.exit(1) 10 | } 11 | 12 | const sendAPIRequest = async () => { 13 | try { 14 | const auth = await axios({ 15 | url: `${ISSUER}/v1/token`, 16 | method: 'post', 17 | auth: { 18 | username: CLIENT_ID, 19 | password: CLIENT_SECRET 20 | }, 21 | params: { 22 | grant_type: 'client_credentials', 23 | scope: SCOPE 24 | } 25 | }) 26 | 27 | const response = await axios({ 28 | url, 29 | method: method ?? 'get', 30 | data: (body) ? JSON.parse(body) : null, 31 | headers: { 32 | authorization: `${auth.data.token_type} ${auth.data.access_token}` 33 | } 34 | }) 35 | 36 | console.log(response.data) 37 | } catch (error) { 38 | console.log(`Error: ${error.message}`) 39 | } 40 | } 41 | 42 | sendAPIRequest() 43 | -------------------------------------------------------------------------------- /database.js: -------------------------------------------------------------------------------- 1 | const Sequelize = require('sequelize') 2 | const finale = require('finale-rest') 3 | 4 | const database = new Sequelize({ 5 | dialect: 'sqlite', 6 | storage: './test.sqlite' 7 | }) 8 | 9 | const Part = database.define('parts', { 10 | partNumber: Sequelize.STRING, 11 | modelNumber: Sequelize.STRING, 12 | name: Sequelize.STRING, 13 | description: Sequelize.TEXT 14 | }) 15 | 16 | const initializeDatabase = async (app) => { 17 | finale.initialize({ app, sequelize: database }) 18 | 19 | finale.resource({ 20 | model: Part, 21 | endpoints: ['/parts', '/parts/:id'] 22 | }) 23 | 24 | await database.sync() 25 | } 26 | 27 | module.exports = initializeDatabase 28 | -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- 1 | require('dotenv').config() 2 | const express = require('express') 3 | const bodyParser = require('body-parser') 4 | const { promisify } = require('util') 5 | 6 | const authMiddleware = require('./auth') 7 | const initializeDatabase = require('./database') 8 | 9 | const app = express() 10 | app.use(bodyParser.json()) 11 | app.use(authMiddleware) 12 | 13 | const startServer = async () => { 14 | await initializeDatabase(app) 15 | const port = process.env.SERVER_PORT || 3000 16 | await promisify(app.listen).bind(app)(port) 17 | console.log(`Listening on port ${port}`) 18 | } 19 | 20 | startServer() 21 | -------------------------------------------------------------------------------- /package-lock.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "rest-api", 3 | "version": "1.0.0", 4 | "lockfileVersion": 1, 5 | "requires": true, 6 | "dependencies": { 7 | "@babel/code-frame": { 8 | "version": "7.12.13", 9 | "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.12.13.tgz", 10 | "integrity": "sha512-HV1Cm0Q3ZrpCR93tkWOYiuYIgLxZXZFVG2VgK+MBWjUqZTundupbfx2aXarXuw5Ko5aMcjtJgbSs4vUGBS5v6g==", 11 | "requires": { 12 | "@babel/highlight": "^7.12.13" 13 | } 14 | }, 15 | "@babel/compat-data": { 16 | "version": "7.13.12", 17 | "resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.13.12.tgz", 18 | "integrity": "sha512-3eJJ841uKxeV8dcN/2yGEUy+RfgQspPEgQat85umsE1rotuquQ2AbIub4S6j7c50a2d+4myc+zSlnXeIHrOnhQ==" 19 | }, 20 | "@babel/core": { 21 | "version": "7.13.14", 22 | "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.13.14.tgz", 23 | "integrity": "sha512-wZso/vyF4ki0l0znlgM4inxbdrUvCb+cVz8grxDq+6C9k6qbqoIJteQOKicaKjCipU3ISV+XedCqpL2RJJVehA==", 24 | "requires": { 25 | "@babel/code-frame": "^7.12.13", 26 | "@babel/generator": "^7.13.9", 27 | "@babel/helper-compilation-targets": "^7.13.13", 28 | "@babel/helper-module-transforms": "^7.13.14", 29 | "@babel/helpers": "^7.13.10", 30 | "@babel/parser": "^7.13.13", 31 | "@babel/template": "^7.12.13", 32 | "@babel/traverse": "^7.13.13", 33 | "@babel/types": "^7.13.14", 34 | "convert-source-map": "^1.7.0", 35 | "debug": "^4.1.0", 36 | "gensync": "^1.0.0-beta.2", 37 | "json5": "^2.1.2", 38 | "semver": "^6.3.0", 39 | "source-map": "^0.5.0" 40 | }, 41 | "dependencies": { 42 | "debug": { 43 | "version": "4.3.1", 44 | "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.1.tgz", 45 | "integrity": "sha512-doEwdvm4PCeK4K3RQN2ZC2BYUBaxwLARCqZmMjtF8a51J2Rb0xpVloFRnCODwqjpwnAoao4pelN8l3RJdv3gRQ==", 46 | "requires": { 47 | "ms": "2.1.2" 48 | } 49 | }, 50 | "json5": { 51 | "version": "2.2.0", 52 | "resolved": "https://registry.npmjs.org/json5/-/json5-2.2.0.tgz", 53 | "integrity": "sha512-f+8cldu7X/y7RAJurMEJmdoKXGB/X550w2Nr3tTbezL6RwEE/iMcm+tZnXeoZtKuOq6ft8+CqzEkrIgx1fPoQA==", 54 | "requires": { 55 | "minimist": "^1.2.5" 56 | } 57 | }, 58 | "ms": { 59 | "version": "2.1.2", 60 | "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", 61 | "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==" 62 | }, 63 | "semver": { 64 | "version": "6.3.0", 65 | "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", 66 | "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==" 67 | } 68 | } 69 | }, 70 | "@babel/generator": { 71 | "version": "7.13.9", 72 | "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.13.9.tgz", 73 | "integrity": "sha512-mHOOmY0Axl/JCTkxTU6Lf5sWOg/v8nUa+Xkt4zMTftX0wqmb6Sh7J8gvcehBw7q0AhrhAR+FDacKjCZ2X8K+Sw==", 74 | "requires": { 75 | "@babel/types": "^7.13.0", 76 | "jsesc": "^2.5.1", 77 | "source-map": "^0.5.0" 78 | } 79 | }, 80 | "@babel/helper-compilation-targets": { 81 | "version": "7.13.13", 82 | "resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.13.13.tgz", 83 | "integrity": "sha512-q1kcdHNZehBwD9jYPh3WyXcsFERi39X4I59I3NadciWtNDyZ6x+GboOxncFK0kXlKIv6BJm5acncehXWUjWQMQ==", 84 | "requires": { 85 | "@babel/compat-data": "^7.13.12", 86 | "@babel/helper-validator-option": "^7.12.17", 87 | "browserslist": "^4.14.5", 88 | "semver": "^6.3.0" 89 | }, 90 | "dependencies": { 91 | "semver": { 92 | "version": "6.3.0", 93 | "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", 94 | "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==" 95 | } 96 | } 97 | }, 98 | "@babel/helper-function-name": { 99 | "version": "7.12.13", 100 | "resolved": "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.12.13.tgz", 101 | "integrity": "sha512-TZvmPn0UOqmvi5G4vvw0qZTpVptGkB1GL61R6lKvrSdIxGm5Pky7Q3fpKiIkQCAtRCBUwB0PaThlx9vebCDSwA==", 102 | "requires": { 103 | "@babel/helper-get-function-arity": "^7.12.13", 104 | "@babel/template": "^7.12.13", 105 | "@babel/types": "^7.12.13" 106 | } 107 | }, 108 | "@babel/helper-get-function-arity": { 109 | "version": "7.12.13", 110 | "resolved": "https://registry.npmjs.org/@babel/helper-get-function-arity/-/helper-get-function-arity-7.12.13.tgz", 111 | "integrity": "sha512-DjEVzQNz5LICkzN0REdpD5prGoidvbdYk1BVgRUOINaWJP2t6avB27X1guXK1kXNrX0WMfsrm1A/ZBthYuIMQg==", 112 | "requires": { 113 | "@babel/types": "^7.12.13" 114 | } 115 | }, 116 | "@babel/helper-member-expression-to-functions": { 117 | "version": "7.13.12", 118 | "resolved": "https://registry.npmjs.org/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.13.12.tgz", 119 | "integrity": "sha512-48ql1CLL59aKbU94Y88Xgb2VFy7a95ykGRbJJaaVv+LX5U8wFpLfiGXJJGUozsmA1oEh/o5Bp60Voq7ACyA/Sw==", 120 | "requires": { 121 | "@babel/types": "^7.13.12" 122 | } 123 | }, 124 | "@babel/helper-module-imports": { 125 | "version": "7.13.12", 126 | "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.13.12.tgz", 127 | "integrity": "sha512-4cVvR2/1B693IuOvSI20xqqa/+bl7lqAMR59R4iu39R9aOX8/JoYY1sFaNvUMyMBGnHdwvJgUrzNLoUZxXypxA==", 128 | "requires": { 129 | "@babel/types": "^7.13.12" 130 | } 131 | }, 132 | "@babel/helper-module-transforms": { 133 | "version": "7.13.14", 134 | "resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.13.14.tgz", 135 | "integrity": "sha512-QuU/OJ0iAOSIatyVZmfqB0lbkVP0kDRiKj34xy+QNsnVZi/PA6BoSoreeqnxxa9EHFAIL0R9XOaAR/G9WlIy5g==", 136 | "requires": { 137 | "@babel/helper-module-imports": "^7.13.12", 138 | "@babel/helper-replace-supers": "^7.13.12", 139 | "@babel/helper-simple-access": "^7.13.12", 140 | "@babel/helper-split-export-declaration": "^7.12.13", 141 | "@babel/helper-validator-identifier": "^7.12.11", 142 | "@babel/template": "^7.12.13", 143 | "@babel/traverse": "^7.13.13", 144 | "@babel/types": "^7.13.14" 145 | } 146 | }, 147 | "@babel/helper-optimise-call-expression": { 148 | "version": "7.12.13", 149 | "resolved": "https://registry.npmjs.org/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.12.13.tgz", 150 | "integrity": "sha512-BdWQhoVJkp6nVjB7nkFWcn43dkprYauqtk++Py2eaf/GRDFm5BxRqEIZCiHlZUGAVmtwKcsVL1dC68WmzeFmiA==", 151 | "requires": { 152 | "@babel/types": "^7.12.13" 153 | } 154 | }, 155 | "@babel/helper-replace-supers": { 156 | "version": "7.13.12", 157 | "resolved": "https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.13.12.tgz", 158 | "integrity": "sha512-Gz1eiX+4yDO8mT+heB94aLVNCL+rbuT2xy4YfyNqu8F+OI6vMvJK891qGBTqL9Uc8wxEvRW92Id6G7sDen3fFw==", 159 | "requires": { 160 | "@babel/helper-member-expression-to-functions": "^7.13.12", 161 | "@babel/helper-optimise-call-expression": "^7.12.13", 162 | "@babel/traverse": "^7.13.0", 163 | "@babel/types": "^7.13.12" 164 | } 165 | }, 166 | "@babel/helper-simple-access": { 167 | "version": "7.13.12", 168 | "resolved": "https://registry.npmjs.org/@babel/helper-simple-access/-/helper-simple-access-7.13.12.tgz", 169 | "integrity": "sha512-7FEjbrx5SL9cWvXioDbnlYTppcZGuCY6ow3/D5vMggb2Ywgu4dMrpTJX0JdQAIcRRUElOIxF3yEooa9gUb9ZbA==", 170 | "requires": { 171 | "@babel/types": "^7.13.12" 172 | } 173 | }, 174 | "@babel/helper-split-export-declaration": { 175 | "version": "7.12.13", 176 | "resolved": "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.12.13.tgz", 177 | "integrity": "sha512-tCJDltF83htUtXx5NLcaDqRmknv652ZWCHyoTETf1CXYJdPC7nohZohjUgieXhv0hTJdRf2FjDueFehdNucpzg==", 178 | "requires": { 179 | "@babel/types": "^7.12.13" 180 | } 181 | }, 182 | "@babel/helper-validator-identifier": { 183 | "version": "7.12.11", 184 | "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.12.11.tgz", 185 | "integrity": "sha512-np/lG3uARFybkoHokJUmf1QfEvRVCPbmQeUQpKow5cQ3xWrV9i3rUHodKDJPQfTVX61qKi+UdYk8kik84n7XOw==" 186 | }, 187 | "@babel/helper-validator-option": { 188 | "version": "7.12.17", 189 | "resolved": "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.12.17.tgz", 190 | "integrity": "sha512-TopkMDmLzq8ngChwRlyjR6raKD6gMSae4JdYDB8bByKreQgG0RBTuKe9LRxW3wFtUnjxOPRKBDwEH6Mg5KeDfw==" 191 | }, 192 | "@babel/helpers": { 193 | "version": "7.13.10", 194 | "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.13.10.tgz", 195 | "integrity": "sha512-4VO883+MWPDUVRF3PhiLBUFHoX/bsLTGFpFK/HqvvfBZz2D57u9XzPVNFVBTc0PW/CWR9BXTOKt8NF4DInUHcQ==", 196 | "requires": { 197 | "@babel/template": "^7.12.13", 198 | "@babel/traverse": "^7.13.0", 199 | "@babel/types": "^7.13.0" 200 | } 201 | }, 202 | "@babel/highlight": { 203 | "version": "7.13.10", 204 | "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.13.10.tgz", 205 | "integrity": "sha512-5aPpe5XQPzflQrFwL1/QoeHkP2MsA4JCntcXHRhEsdsfPVkvPi2w7Qix4iV7t5S/oC9OodGrggd8aco1g3SZFg==", 206 | "requires": { 207 | "@babel/helper-validator-identifier": "^7.12.11", 208 | "chalk": "^2.0.0", 209 | "js-tokens": "^4.0.0" 210 | }, 211 | "dependencies": { 212 | "chalk": { 213 | "version": "2.4.2", 214 | "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", 215 | "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", 216 | "requires": { 217 | "ansi-styles": "^3.2.1", 218 | "escape-string-regexp": "^1.0.5", 219 | "supports-color": "^5.3.0" 220 | } 221 | } 222 | } 223 | }, 224 | "@babel/parser": { 225 | "version": "7.13.13", 226 | "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.13.13.tgz", 227 | "integrity": "sha512-OhsyMrqygfk5v8HmWwOzlYjJrtLaFhF34MrfG/Z73DgYCI6ojNUTUp2TYbtnjo8PegeJp12eamsNettCQjKjVw==" 228 | }, 229 | "@babel/runtime": { 230 | "version": "7.13.10", 231 | "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.13.10.tgz", 232 | "integrity": "sha512-4QPkjJq6Ns3V/RgpEahRk+AGfL0eO6RHHtTWoNNr5mO49G6B5+X6d6THgWEAvTrznU5xYpbAlVKRYcsCgh/Akw==", 233 | "requires": { 234 | "regenerator-runtime": "^0.13.4" 235 | } 236 | }, 237 | "@babel/template": { 238 | "version": "7.12.13", 239 | "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.12.13.tgz", 240 | "integrity": "sha512-/7xxiGA57xMo/P2GVvdEumr8ONhFOhfgq2ihK3h1e6THqzTAkHbkXgB0xI9yeTfIUoH3+oAeHhqm/I43OTbbjA==", 241 | "requires": { 242 | "@babel/code-frame": "^7.12.13", 243 | "@babel/parser": "^7.12.13", 244 | "@babel/types": "^7.12.13" 245 | } 246 | }, 247 | "@babel/traverse": { 248 | "version": "7.13.13", 249 | "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.13.13.tgz", 250 | "integrity": "sha512-CblEcwmXKR6eP43oQGG++0QMTtCjAsa3frUuzHoiIJWpaIIi8dwMyEFUJoXRLxagGqCK+jALRwIO+o3R9p/uUg==", 251 | "requires": { 252 | "@babel/code-frame": "^7.12.13", 253 | "@babel/generator": "^7.13.9", 254 | "@babel/helper-function-name": "^7.12.13", 255 | "@babel/helper-split-export-declaration": "^7.12.13", 256 | "@babel/parser": "^7.13.13", 257 | "@babel/types": "^7.13.13", 258 | "debug": "^4.1.0", 259 | "globals": "^11.1.0" 260 | }, 261 | "dependencies": { 262 | "debug": { 263 | "version": "4.3.1", 264 | "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.1.tgz", 265 | "integrity": "sha512-doEwdvm4PCeK4K3RQN2ZC2BYUBaxwLARCqZmMjtF8a51J2Rb0xpVloFRnCODwqjpwnAoao4pelN8l3RJdv3gRQ==", 266 | "requires": { 267 | "ms": "2.1.2" 268 | } 269 | }, 270 | "globals": { 271 | "version": "11.12.0", 272 | "resolved": "https://registry.npmjs.org/globals/-/globals-11.12.0.tgz", 273 | "integrity": "sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==" 274 | }, 275 | "ms": { 276 | "version": "2.1.2", 277 | "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", 278 | "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==" 279 | } 280 | } 281 | }, 282 | "@babel/types": { 283 | "version": "7.13.14", 284 | "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.13.14.tgz", 285 | "integrity": "sha512-A2aa3QTkWoyqsZZFl56MLUsfmh7O0gN41IPvXAE/++8ojpbz12SszD7JEGYVdn4f9Kt4amIei07swF1h4AqmmQ==", 286 | "requires": { 287 | "@babel/helper-validator-identifier": "^7.12.11", 288 | "lodash": "^4.17.19", 289 | "to-fast-properties": "^2.0.0" 290 | } 291 | }, 292 | "@eslint/eslintrc": { 293 | "version": "0.2.2", 294 | "resolved": "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-0.2.2.tgz", 295 | "integrity": "sha512-EfB5OHNYp1F4px/LI/FEnGylop7nOqkQ1LRzCM0KccA2U8tvV8w01KBv37LbO7nW4H+YhKyo2LcJhRwjjV17QQ==", 296 | "dev": true, 297 | "requires": { 298 | "ajv": "^6.12.4", 299 | "debug": "^4.1.1", 300 | "espree": "^7.3.0", 301 | "globals": "^12.1.0", 302 | "ignore": "^4.0.6", 303 | "import-fresh": "^3.2.1", 304 | "js-yaml": "^3.13.1", 305 | "lodash": "^4.17.19", 306 | "minimatch": "^3.0.4", 307 | "strip-json-comments": "^3.1.1" 308 | }, 309 | "dependencies": { 310 | "debug": { 311 | "version": "4.3.1", 312 | "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.1.tgz", 313 | "integrity": "sha512-doEwdvm4PCeK4K3RQN2ZC2BYUBaxwLARCqZmMjtF8a51J2Rb0xpVloFRnCODwqjpwnAoao4pelN8l3RJdv3gRQ==", 314 | "dev": true, 315 | "requires": { 316 | "ms": "2.1.2" 317 | } 318 | }, 319 | "ms": { 320 | "version": "2.1.2", 321 | "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", 322 | "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==", 323 | "dev": true 324 | } 325 | } 326 | }, 327 | "@gar/promisify": { 328 | "version": "1.1.3", 329 | "resolved": "https://registry.npmjs.org/@gar/promisify/-/promisify-1.1.3.tgz", 330 | "integrity": "sha512-k2Ty1JcVojjJFwrg/ThKi2ujJ7XNLYaFGNB/bWT9wGR+oSMJHMa5w+CUq6p/pVrKeNNgA7pCqEcjSnHVoqJQFw==", 331 | "optional": true 332 | }, 333 | "@istanbuljs/schema": { 334 | "version": "0.1.3", 335 | "resolved": "https://registry.npmjs.org/@istanbuljs/schema/-/schema-0.1.3.tgz", 336 | "integrity": "sha512-ZXRY4jNvVgSVQ8DL3LTcakaAtXwTVUxE81hslsyD2AtoXW/wVob10HkOJ1X/pAlcI7D+2YoZKg5do8G/w6RYgA==" 337 | }, 338 | "@mapbox/node-pre-gyp": { 339 | "version": "1.0.9", 340 | "resolved": "https://registry.npmjs.org/@mapbox/node-pre-gyp/-/node-pre-gyp-1.0.9.tgz", 341 | "integrity": "sha512-aDF3S3rK9Q2gey/WAttUlISduDItz5BU3306M9Eyv6/oS40aMprnopshtlKTykxRNIBEZuRMaZAnbrQ4QtKGyw==", 342 | "requires": { 343 | "detect-libc": "^2.0.0", 344 | "https-proxy-agent": "^5.0.0", 345 | "make-dir": "^3.1.0", 346 | "node-fetch": "^2.6.7", 347 | "nopt": "^5.0.0", 348 | "npmlog": "^5.0.1", 349 | "rimraf": "^3.0.2", 350 | "semver": "^7.3.5", 351 | "tar": "^6.1.11" 352 | }, 353 | "dependencies": { 354 | "rimraf": { 355 | "version": "3.0.2", 356 | "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz", 357 | "integrity": "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==", 358 | "requires": { 359 | "glob": "^7.1.3" 360 | } 361 | } 362 | } 363 | }, 364 | "@npmcli/fs": { 365 | "version": "1.1.1", 366 | "resolved": "https://registry.npmjs.org/@npmcli/fs/-/fs-1.1.1.tgz", 367 | "integrity": "sha512-8KG5RD0GVP4ydEzRn/I4BNDuxDtqVbOdm8675T49OIG/NGhaK0pjPX7ZcDlvKYbA+ulvVK3ztfcF4uBdOxuJbQ==", 368 | "optional": true, 369 | "requires": { 370 | "@gar/promisify": "^1.0.1", 371 | "semver": "^7.3.5" 372 | } 373 | }, 374 | "@npmcli/move-file": { 375 | "version": "1.1.2", 376 | "resolved": "https://registry.npmjs.org/@npmcli/move-file/-/move-file-1.1.2.tgz", 377 | "integrity": "sha512-1SUf/Cg2GzGDyaf15aR9St9TWlb+XvbZXWpDx8YKs7MLzMH/BCeopv+y9vzrzgkfykCGuWOlSu3mZhj2+FQcrg==", 378 | "optional": true, 379 | "requires": { 380 | "mkdirp": "^1.0.4", 381 | "rimraf": "^3.0.2" 382 | }, 383 | "dependencies": { 384 | "mkdirp": { 385 | "version": "1.0.4", 386 | "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-1.0.4.tgz", 387 | "integrity": "sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==", 388 | "optional": true 389 | }, 390 | "rimraf": { 391 | "version": "3.0.2", 392 | "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz", 393 | "integrity": "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==", 394 | "optional": true, 395 | "requires": { 396 | "glob": "^7.1.3" 397 | } 398 | } 399 | } 400 | }, 401 | "@okta/configuration-validation": { 402 | "version": "1.0.0", 403 | "resolved": "https://registry.npmjs.org/@okta/configuration-validation/-/configuration-validation-1.0.0.tgz", 404 | "integrity": "sha512-CQaBdqP9fyYd2KwIgwwhWDivWx+Lwj7rtyXUbTlAHywKRwnEyNln7zUG6UaBBSRNK63I+W3A3GgPWO0gCpo1FA==", 405 | "requires": { 406 | "@okta/okta-auth-js": "^4.0.0", 407 | "lodash": "^4.17.15" 408 | } 409 | }, 410 | "@okta/jwt-verifier": { 411 | "version": "2.1.0", 412 | "resolved": "https://registry.npmjs.org/@okta/jwt-verifier/-/jwt-verifier-2.1.0.tgz", 413 | "integrity": "sha512-k7ewe0RuA55kNspCpLJb8Vc2VKofcUNeclUGKwqWTiiDV8EdpSPTCSbbcmycKM3L7ucJh/z7x8wuqEpOnVk/Ig==", 414 | "requires": { 415 | "@okta/configuration-validation": "^1.0.0", 416 | "jwks-rsa": "1.12.1", 417 | "njwt": "^1.0.0" 418 | } 419 | }, 420 | "@okta/okta-auth-js": { 421 | "version": "4.8.0", 422 | "resolved": "https://registry.npmjs.org/@okta/okta-auth-js/-/okta-auth-js-4.8.0.tgz", 423 | "integrity": "sha512-uaF2jS6avN0BNJ8EuJYM+KIwm3KZRo4QNAnEUDppysnxRtPlgExU2ndMEPZoSyYbCRdEd1x8UuSWTxrXhXThKQ==", 424 | "requires": { 425 | "@babel/runtime": "^7.12.5", 426 | "Base64": "1.1.0", 427 | "core-js": "^3.6.5", 428 | "cross-fetch": "^3.0.6", 429 | "js-cookie": "2.2.1", 430 | "karma-coverage": "^2.0.3", 431 | "node-cache": "^5.1.2", 432 | "p-cancelable": "^2.0.0", 433 | "text-encoding": "^0.7.0", 434 | "tiny-emitter": "1.1.0", 435 | "webcrypto-shim": "^0.1.5", 436 | "xhr2": "0.1.3" 437 | } 438 | }, 439 | "@tootallnate/once": { 440 | "version": "1.1.2", 441 | "resolved": "https://registry.npmjs.org/@tootallnate/once/-/once-1.1.2.tgz", 442 | "integrity": "sha512-RbzJvlNzmRq5c3O09UipeuXno4tA1FE6ikOjxZK0tuxVv3412l64l5t1W5pj4+rJq9vpkm/kwiR07aZXnsKPxw==" 443 | }, 444 | "@types/body-parser": { 445 | "version": "1.19.0", 446 | "resolved": "https://registry.npmjs.org/@types/body-parser/-/body-parser-1.19.0.tgz", 447 | "integrity": "sha512-W98JrE0j2K78swW4ukqMleo8R7h/pFETjM2DQ90MF6XK2i4LO4W3gQ71Lt4w3bfm2EvVSyWHplECvB5sK22yFQ==", 448 | "requires": { 449 | "@types/connect": "*", 450 | "@types/node": "*" 451 | } 452 | }, 453 | "@types/connect": { 454 | "version": "3.4.34", 455 | "resolved": "https://registry.npmjs.org/@types/connect/-/connect-3.4.34.tgz", 456 | "integrity": "sha512-ePPA/JuI+X0vb+gSWlPKOY0NdNAie/rPUqX2GUPpbZwiKTkSPhjXWuee47E4MtE54QVzGCQMQkAL6JhV2E1+cQ==", 457 | "requires": { 458 | "@types/node": "*" 459 | } 460 | }, 461 | "@types/debug": { 462 | "version": "4.1.7", 463 | "resolved": "https://registry.npmjs.org/@types/debug/-/debug-4.1.7.tgz", 464 | "integrity": "sha512-9AonUzyTjXXhEOa0DnqpzZi6VHlqKMswga9EXjpXnnqxwLtdvPPtlO8evrI5D9S6asFRCQ6v+wpiUKbw+vKqyg==", 465 | "requires": { 466 | "@types/ms": "*" 467 | } 468 | }, 469 | "@types/express": { 470 | "version": "4.17.11", 471 | "resolved": "https://registry.npmjs.org/@types/express/-/express-4.17.11.tgz", 472 | "integrity": "sha512-no+R6rW60JEc59977wIxreQVsIEOAYwgCqldrA/vkpCnbD7MqTefO97lmoBe4WE0F156bC4uLSP1XHDOySnChg==", 473 | "requires": { 474 | "@types/body-parser": "*", 475 | "@types/express-serve-static-core": "^4.17.18", 476 | "@types/qs": "*", 477 | "@types/serve-static": "*" 478 | } 479 | }, 480 | "@types/express-jwt": { 481 | "version": "0.0.42", 482 | "resolved": "https://registry.npmjs.org/@types/express-jwt/-/express-jwt-0.0.42.tgz", 483 | "integrity": "sha512-WszgUddvM1t5dPpJ3LhWNH8kfNN8GPIBrAGxgIYXVCEGx6Bx4A036aAuf/r5WH9DIEdlmp7gHOYvSM6U87B0ag==", 484 | "requires": { 485 | "@types/express": "*", 486 | "@types/express-unless": "*" 487 | } 488 | }, 489 | "@types/express-serve-static-core": { 490 | "version": "4.17.19", 491 | "resolved": "https://registry.npmjs.org/@types/express-serve-static-core/-/express-serve-static-core-4.17.19.tgz", 492 | "integrity": "sha512-DJOSHzX7pCiSElWaGR8kCprwibCB/3yW6vcT8VG3P0SJjnv19gnWG/AZMfM60Xj/YJIp/YCaDHyvzsFVeniARA==", 493 | "requires": { 494 | "@types/node": "*", 495 | "@types/qs": "*", 496 | "@types/range-parser": "*" 497 | } 498 | }, 499 | "@types/express-unless": { 500 | "version": "0.5.1", 501 | "resolved": "https://registry.npmjs.org/@types/express-unless/-/express-unless-0.5.1.tgz", 502 | "integrity": "sha512-5fuvg7C69lemNgl0+v+CUxDYWVPSfXHhJPst4yTLcqi4zKJpORCxnDrnnilk3k0DTq/WrAUdvXFs01+vUqUZHw==", 503 | "requires": { 504 | "@types/express": "*" 505 | } 506 | }, 507 | "@types/json5": { 508 | "version": "0.0.29", 509 | "resolved": "https://registry.npmjs.org/@types/json5/-/json5-0.0.29.tgz", 510 | "integrity": "sha1-7ihweulOEdK4J7y+UnC86n8+ce4=", 511 | "dev": true 512 | }, 513 | "@types/mime": { 514 | "version": "1.3.2", 515 | "resolved": "https://registry.npmjs.org/@types/mime/-/mime-1.3.2.tgz", 516 | "integrity": "sha512-YATxVxgRqNH6nHEIsvg6k2Boc1JHI9ZbH5iWFFv/MTkchz3b1ieGDa5T0a9RznNdI0KhVbdbWSN+KWWrQZRxTw==" 517 | }, 518 | "@types/ms": { 519 | "version": "0.7.31", 520 | "resolved": "https://registry.npmjs.org/@types/ms/-/ms-0.7.31.tgz", 521 | "integrity": "sha512-iiUgKzV9AuaEkZqkOLDIvlQiL6ltuZd9tGcW3gwpnX8JbuiuhFlEGmmFXEXkN50Cvq7Os88IY2v0dkDqXYWVgA==" 522 | }, 523 | "@types/node": { 524 | "version": "14.14.37", 525 | "resolved": "https://registry.npmjs.org/@types/node/-/node-14.14.37.tgz", 526 | "integrity": "sha512-XYmBiy+ohOR4Lh5jE379fV2IU+6Jn4g5qASinhitfyO71b/sCo6MKsMLF5tc7Zf2CE8hViVQyYSobJNke8OvUw==" 527 | }, 528 | "@types/qs": { 529 | "version": "6.9.6", 530 | "resolved": "https://registry.npmjs.org/@types/qs/-/qs-6.9.6.tgz", 531 | "integrity": "sha512-0/HnwIfW4ki2D8L8c9GVcG5I72s9jP5GSLVF0VIXDW00kmIpA6O33G7a8n59Tmh7Nz0WUC3rSb7PTY/sdW2JzA==" 532 | }, 533 | "@types/range-parser": { 534 | "version": "1.2.3", 535 | "resolved": "https://registry.npmjs.org/@types/range-parser/-/range-parser-1.2.3.tgz", 536 | "integrity": "sha512-ewFXqrQHlFsgc09MK5jP5iR7vumV/BYayNC6PgJO2LPe8vrnNFyjQjSppfEngITi0qvfKtzFvgKymGheFM9UOA==" 537 | }, 538 | "@types/serve-static": { 539 | "version": "1.13.9", 540 | "resolved": "https://registry.npmjs.org/@types/serve-static/-/serve-static-1.13.9.tgz", 541 | "integrity": "sha512-ZFqF6qa48XsPdjXV5Gsz0Zqmux2PerNd3a/ktL45mHpa19cuMi/cL8tcxdAx497yRh+QtYPuofjT9oWw9P7nkA==", 542 | "requires": { 543 | "@types/mime": "^1", 544 | "@types/node": "*" 545 | } 546 | }, 547 | "@types/validator": { 548 | "version": "13.7.12", 549 | "resolved": "https://registry.npmjs.org/@types/validator/-/validator-13.7.12.tgz", 550 | "integrity": "sha512-YVtyAPqpefU+Mm/qqnOANW6IkqKpCSrarcyV269C8MA8Ux0dbkEuQwM/4CjL47kVEM2LgBef/ETfkH+c6+moFA==" 551 | }, 552 | "Base64": { 553 | "version": "1.1.0", 554 | "resolved": "https://registry.npmjs.org/Base64/-/Base64-1.1.0.tgz", 555 | "integrity": "sha512-qeacf8dvGpf+XAT27ESHMh7z84uRzj/ua2pQdJg483m3bEXv/kVFtDnMgvf70BQGqzbZhR9t6BmASzKvqfJf3Q==" 556 | }, 557 | "abbrev": { 558 | "version": "1.1.1", 559 | "resolved": "https://registry.npmjs.org/abbrev/-/abbrev-1.1.1.tgz", 560 | "integrity": "sha512-nne9/IiQ/hzIhY6pdDnbBtz7DjPTKrY00P/zvPSm5pOFkl6xuGrGnXn/VtTNNfNtAfZ9/1RtehkszU9qcTii0Q==" 561 | }, 562 | "accepts": { 563 | "version": "1.3.7", 564 | "resolved": "https://registry.npmjs.org/accepts/-/accepts-1.3.7.tgz", 565 | "integrity": "sha512-Il80Qs2WjYlJIBNzNkK6KYqlVMTbZLXgHx2oT0pU/fjRHyEp+PEfEPY0R3WCwAGVOtauxh1hOxNgIf5bv7dQpA==", 566 | "requires": { 567 | "mime-types": "~2.1.24", 568 | "negotiator": "0.6.2" 569 | } 570 | }, 571 | "acorn": { 572 | "version": "7.4.1", 573 | "resolved": "https://registry.npmjs.org/acorn/-/acorn-7.4.1.tgz", 574 | "integrity": "sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A==", 575 | "dev": true 576 | }, 577 | "acorn-jsx": { 578 | "version": "5.3.1", 579 | "resolved": "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-5.3.1.tgz", 580 | "integrity": "sha512-K0Ptm/47OKfQRpNQ2J/oIN/3QYiK6FwW+eJbILhsdxh2WTLdl+30o8aGdTbm5JbffpFFAg/g+zi1E+jvJha5ng==", 581 | "dev": true 582 | }, 583 | "agent-base": { 584 | "version": "6.0.2", 585 | "resolved": "https://registry.npmjs.org/agent-base/-/agent-base-6.0.2.tgz", 586 | "integrity": "sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ==", 587 | "requires": { 588 | "debug": "4" 589 | }, 590 | "dependencies": { 591 | "debug": { 592 | "version": "4.3.1", 593 | "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.1.tgz", 594 | "integrity": "sha512-doEwdvm4PCeK4K3RQN2ZC2BYUBaxwLARCqZmMjtF8a51J2Rb0xpVloFRnCODwqjpwnAoao4pelN8l3RJdv3gRQ==", 595 | "requires": { 596 | "ms": "2.1.2" 597 | } 598 | }, 599 | "ms": { 600 | "version": "2.1.2", 601 | "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", 602 | "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==" 603 | } 604 | } 605 | }, 606 | "agentkeepalive": { 607 | "version": "4.2.1", 608 | "resolved": "https://registry.npmjs.org/agentkeepalive/-/agentkeepalive-4.2.1.tgz", 609 | "integrity": "sha512-Zn4cw2NEqd+9fiSVWMscnjyQ1a8Yfoc5oBajLeo5w+YBHgDUcEBY2hS4YpTz6iN5f/2zQiktcuM6tS8x1p9dpA==", 610 | "optional": true, 611 | "requires": { 612 | "debug": "^4.1.0", 613 | "depd": "^1.1.2", 614 | "humanize-ms": "^1.2.1" 615 | }, 616 | "dependencies": { 617 | "debug": { 618 | "version": "4.3.4", 619 | "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz", 620 | "integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==", 621 | "optional": true, 622 | "requires": { 623 | "ms": "2.1.2" 624 | } 625 | }, 626 | "ms": { 627 | "version": "2.1.2", 628 | "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", 629 | "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==", 630 | "optional": true 631 | } 632 | } 633 | }, 634 | "aggregate-error": { 635 | "version": "3.1.0", 636 | "resolved": "https://registry.npmjs.org/aggregate-error/-/aggregate-error-3.1.0.tgz", 637 | "integrity": "sha512-4I7Td01quW/RpocfNayFdFVk1qSuoh0E7JrbRJ16nH01HhKFQ88INq9Sd+nd72zqRySlr9BmDA8xlEJ6vJMrYA==", 638 | "optional": true, 639 | "requires": { 640 | "clean-stack": "^2.0.0", 641 | "indent-string": "^4.0.0" 642 | } 643 | }, 644 | "ajv": { 645 | "version": "6.12.6", 646 | "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", 647 | "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", 648 | "dev": true, 649 | "requires": { 650 | "fast-deep-equal": "^3.1.1", 651 | "fast-json-stable-stringify": "^2.0.0", 652 | "json-schema-traverse": "^0.4.1", 653 | "uri-js": "^4.2.2" 654 | } 655 | }, 656 | "ansi-colors": { 657 | "version": "4.1.1", 658 | "resolved": "https://registry.npmjs.org/ansi-colors/-/ansi-colors-4.1.1.tgz", 659 | "integrity": "sha512-JoX0apGbHaUJBNl6yF+p6JAFYZ666/hhCGKN5t9QFjbJQKUU/g8MNbFDbvfrgKXvI1QpZplPOnwIo99lX/AAmA==", 660 | "dev": true 661 | }, 662 | "ansi-regex": { 663 | "version": "5.0.1", 664 | "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", 665 | "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==" 666 | }, 667 | "ansi-styles": { 668 | "version": "3.2.1", 669 | "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", 670 | "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", 671 | "requires": { 672 | "color-convert": "^1.9.0" 673 | } 674 | }, 675 | "aproba": { 676 | "version": "2.0.0", 677 | "resolved": "https://registry.npmjs.org/aproba/-/aproba-2.0.0.tgz", 678 | "integrity": "sha512-lYe4Gx7QT+MKGbDsA+Z+he/Wtef0BiwDOlK/XkBrdfsh9J/jPPXbX0tE9x9cl27Tmu5gg3QUbUrQYa/y+KOHPQ==" 679 | }, 680 | "are-we-there-yet": { 681 | "version": "2.0.0", 682 | "resolved": "https://registry.npmjs.org/are-we-there-yet/-/are-we-there-yet-2.0.0.tgz", 683 | "integrity": "sha512-Ci/qENmwHnsYo9xKIcUJN5LeDKdJ6R1Z1j9V/J5wyq8nh/mYPEpIKJbBZXtZjG04HiK7zV/p6Vs9952MrMeUIw==", 684 | "requires": { 685 | "delegates": "^1.0.0", 686 | "readable-stream": "^3.6.0" 687 | } 688 | }, 689 | "argparse": { 690 | "version": "1.0.10", 691 | "resolved": "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz", 692 | "integrity": "sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==", 693 | "dev": true, 694 | "requires": { 695 | "sprintf-js": "~1.0.2" 696 | } 697 | }, 698 | "array-filter": { 699 | "version": "1.0.0", 700 | "resolved": "https://registry.npmjs.org/array-filter/-/array-filter-1.0.0.tgz", 701 | "integrity": "sha1-uveeYubvTCpMC4MSMtr/7CUfnYM=" 702 | }, 703 | "array-flatten": { 704 | "version": "1.1.1", 705 | "resolved": "https://registry.npmjs.org/array-flatten/-/array-flatten-1.1.1.tgz", 706 | "integrity": "sha1-ml9pkFGx5wczKPKgCJaLZOopVdI=" 707 | }, 708 | "array-includes": { 709 | "version": "3.1.3", 710 | "resolved": "https://registry.npmjs.org/array-includes/-/array-includes-3.1.3.tgz", 711 | "integrity": "sha512-gcem1KlBU7c9rB+Rq8/3PPKsK2kjqeEBa3bD5kkQo4nYlOHQCJqIJFqBXDEfwaRuYTT4E+FxA9xez7Gf/e3Q7A==", 712 | "dev": true, 713 | "requires": { 714 | "call-bind": "^1.0.2", 715 | "define-properties": "^1.1.3", 716 | "es-abstract": "^1.18.0-next.2", 717 | "get-intrinsic": "^1.1.1", 718 | "is-string": "^1.0.5" 719 | } 720 | }, 721 | "array.prototype.flat": { 722 | "version": "1.2.4", 723 | "resolved": "https://registry.npmjs.org/array.prototype.flat/-/array.prototype.flat-1.2.4.tgz", 724 | "integrity": "sha512-4470Xi3GAPAjZqFcljX2xzckv1qeKPizoNkiS0+O4IoPR2ZNpcjE0pkhdihlDouK+x6QOast26B4Q/O9DJnwSg==", 725 | "dev": true, 726 | "requires": { 727 | "call-bind": "^1.0.0", 728 | "define-properties": "^1.1.3", 729 | "es-abstract": "^1.18.0-next.1" 730 | } 731 | }, 732 | "array.prototype.flatmap": { 733 | "version": "1.2.4", 734 | "resolved": "https://registry.npmjs.org/array.prototype.flatmap/-/array.prototype.flatmap-1.2.4.tgz", 735 | "integrity": "sha512-r9Z0zYoxqHz60vvQbWEdXIEtCwHF0yxaWfno9qzXeNHvfyl3BZqygmGzb84dsubyaXLH4husF+NFgMSdpZhk2Q==", 736 | "dev": true, 737 | "requires": { 738 | "call-bind": "^1.0.0", 739 | "define-properties": "^1.1.3", 740 | "es-abstract": "^1.18.0-next.1", 741 | "function-bind": "^1.1.1" 742 | } 743 | }, 744 | "astral-regex": { 745 | "version": "1.0.0", 746 | "resolved": "https://registry.npmjs.org/astral-regex/-/astral-regex-1.0.0.tgz", 747 | "integrity": "sha512-+Ryf6g3BKoRc7jfp7ad8tM4TtMiaWvbF/1/sQcZPkkS7ag3D5nMBCe2UfOTONtAkaG0tO0ij3C5Lwmf1EiyjHg==", 748 | "dev": true 749 | }, 750 | "available-typed-arrays": { 751 | "version": "1.0.2", 752 | "resolved": "https://registry.npmjs.org/available-typed-arrays/-/available-typed-arrays-1.0.2.tgz", 753 | "integrity": "sha512-XWX3OX8Onv97LMk/ftVyBibpGwY5a8SmuxZPzeOxqmuEqUCOM9ZE+uIaD1VNJ5QnvU2UQusvmKbuM1FR8QWGfQ==", 754 | "requires": { 755 | "array-filter": "^1.0.0" 756 | } 757 | }, 758 | "axios": { 759 | "version": "0.21.2", 760 | "resolved": "https://registry.npmjs.org/axios/-/axios-0.21.2.tgz", 761 | "integrity": "sha512-87otirqUw3e8CzHTMO+/9kh/FSgXt/eVDvipijwDtEuwbkySWZ9SBm6VEubmJ/kLKEoLQV/POhxXFb66bfekfg==", 762 | "requires": { 763 | "follow-redirects": "^1.14.0" 764 | } 765 | }, 766 | "balanced-match": { 767 | "version": "1.0.2", 768 | "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", 769 | "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==" 770 | }, 771 | "bluebird": { 772 | "version": "3.7.2", 773 | "resolved": "https://registry.npmjs.org/bluebird/-/bluebird-3.7.2.tgz", 774 | "integrity": "sha512-XpNj6GDQzdfW+r2Wnn7xiSAd7TM3jzkxGXBGTtWKuSXv1xUV+azxAm8jdWZN06QTQk+2N2XB9jRDkvbmQmcRtg==" 775 | }, 776 | "body-parser": { 777 | "version": "1.19.0", 778 | "resolved": "https://registry.npmjs.org/body-parser/-/body-parser-1.19.0.tgz", 779 | "integrity": "sha512-dhEPs72UPbDnAQJ9ZKMNTP6ptJaionhP5cBb541nXPlW60Jepo9RV/a4fX4XWW9CuFNK22krhrj1+rgzifNCsw==", 780 | "requires": { 781 | "bytes": "3.1.0", 782 | "content-type": "~1.0.4", 783 | "debug": "2.6.9", 784 | "depd": "~1.1.2", 785 | "http-errors": "1.7.2", 786 | "iconv-lite": "0.4.24", 787 | "on-finished": "~2.3.0", 788 | "qs": "6.7.0", 789 | "raw-body": "2.4.0", 790 | "type-is": "~1.6.17" 791 | } 792 | }, 793 | "brace-expansion": { 794 | "version": "1.1.11", 795 | "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", 796 | "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", 797 | "requires": { 798 | "balanced-match": "^1.0.0", 799 | "concat-map": "0.0.1" 800 | } 801 | }, 802 | "browserslist": { 803 | "version": "4.16.6", 804 | "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.16.6.tgz", 805 | "integrity": "sha512-Wspk/PqO+4W9qp5iUTJsa1B/QrYn1keNCcEP5OvP7WBwT4KaDly0uONYmC6Xa3Z5IqnUgS0KcgLYu1l74x0ZXQ==", 806 | "requires": { 807 | "caniuse-lite": "^1.0.30001219", 808 | "colorette": "^1.2.2", 809 | "electron-to-chromium": "^1.3.723", 810 | "escalade": "^3.1.1", 811 | "node-releases": "^1.1.71" 812 | }, 813 | "dependencies": { 814 | "caniuse-lite": { 815 | "version": "1.0.30001230", 816 | "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001230.tgz", 817 | "integrity": "sha512-5yBd5nWCBS+jWKTcHOzXwo5xzcj4ePE/yjtkZyUV1BTUmrBaA9MRGC+e7mxnqXSA90CmCA8L3eKLaSUkt099IQ==" 818 | }, 819 | "electron-to-chromium": { 820 | "version": "1.3.740", 821 | "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.3.740.tgz", 822 | "integrity": "sha512-Mi2m55JrX2BFbNZGKYR+2ItcGnR4O5HhrvgoRRyZQlaMGQULqDhoGkLWHzJoshSzi7k1PUofxcDbNhlFrDZNhg==" 823 | } 824 | } 825 | }, 826 | "btoa": { 827 | "version": "1.2.1", 828 | "resolved": "https://registry.npmjs.org/btoa/-/btoa-1.2.1.tgz", 829 | "integrity": "sha512-SB4/MIGlsiVkMcHmT+pSmIPoNDoHg+7cMzmt3Uxt628MTz2487DKSqK/fuhFBrkuqrYv5UCEnACpF4dTFNKc/g==" 830 | }, 831 | "buffer-equal-constant-time": { 832 | "version": "1.0.1", 833 | "resolved": "https://registry.npmjs.org/buffer-equal-constant-time/-/buffer-equal-constant-time-1.0.1.tgz", 834 | "integrity": "sha1-+OcRMvf/5uAaXJaXpMbz5I1cyBk=" 835 | }, 836 | "bytes": { 837 | "version": "3.1.0", 838 | "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.1.0.tgz", 839 | "integrity": "sha512-zauLjrfCG+xvoyaqLoV8bLVXXNGC4JqlxFCutSDWA6fJrTo2ZuvLYTqZ7aHBLZSMOopbzwv8f+wZcVzfVTI2Dg==" 840 | }, 841 | "cacache": { 842 | "version": "15.3.0", 843 | "resolved": "https://registry.npmjs.org/cacache/-/cacache-15.3.0.tgz", 844 | "integrity": "sha512-VVdYzXEn+cnbXpFgWs5hTT7OScegHVmLhJIR8Ufqk3iFD6A6j5iSX1KuBTfNEv4tdJWE2PzA6IVFtcLC7fN9wQ==", 845 | "optional": true, 846 | "requires": { 847 | "@npmcli/fs": "^1.0.0", 848 | "@npmcli/move-file": "^1.0.1", 849 | "chownr": "^2.0.0", 850 | "fs-minipass": "^2.0.0", 851 | "glob": "^7.1.4", 852 | "infer-owner": "^1.0.4", 853 | "lru-cache": "^6.0.0", 854 | "minipass": "^3.1.1", 855 | "minipass-collect": "^1.0.2", 856 | "minipass-flush": "^1.0.5", 857 | "minipass-pipeline": "^1.2.2", 858 | "mkdirp": "^1.0.3", 859 | "p-map": "^4.0.0", 860 | "promise-inflight": "^1.0.1", 861 | "rimraf": "^3.0.2", 862 | "ssri": "^8.0.1", 863 | "tar": "^6.0.2", 864 | "unique-filename": "^1.1.1" 865 | }, 866 | "dependencies": { 867 | "mkdirp": { 868 | "version": "1.0.4", 869 | "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-1.0.4.tgz", 870 | "integrity": "sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==", 871 | "optional": true 872 | }, 873 | "rimraf": { 874 | "version": "3.0.2", 875 | "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz", 876 | "integrity": "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==", 877 | "optional": true, 878 | "requires": { 879 | "glob": "^7.1.3" 880 | } 881 | } 882 | } 883 | }, 884 | "call-bind": { 885 | "version": "1.0.2", 886 | "resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.2.tgz", 887 | "integrity": "sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA==", 888 | "requires": { 889 | "function-bind": "^1.1.1", 890 | "get-intrinsic": "^1.0.2" 891 | } 892 | }, 893 | "callsites": { 894 | "version": "3.1.0", 895 | "resolved": "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz", 896 | "integrity": "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==", 897 | "dev": true 898 | }, 899 | "chalk": { 900 | "version": "4.1.0", 901 | "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.0.tgz", 902 | "integrity": "sha512-qwx12AxXe2Q5xQ43Ac//I6v5aXTipYrSESdOgzrN+9XjgEpyjpKuvSGaN4qE93f7TQTlerQQ8S+EQ0EyDoVL1A==", 903 | "dev": true, 904 | "requires": { 905 | "ansi-styles": "^4.1.0", 906 | "supports-color": "^7.1.0" 907 | }, 908 | "dependencies": { 909 | "ansi-styles": { 910 | "version": "4.3.0", 911 | "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", 912 | "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", 913 | "dev": true, 914 | "requires": { 915 | "color-convert": "^2.0.1" 916 | } 917 | }, 918 | "color-convert": { 919 | "version": "2.0.1", 920 | "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", 921 | "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", 922 | "dev": true, 923 | "requires": { 924 | "color-name": "~1.1.4" 925 | } 926 | }, 927 | "color-name": { 928 | "version": "1.1.4", 929 | "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", 930 | "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", 931 | "dev": true 932 | }, 933 | "has-flag": { 934 | "version": "4.0.0", 935 | "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", 936 | "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", 937 | "dev": true 938 | }, 939 | "supports-color": { 940 | "version": "7.2.0", 941 | "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", 942 | "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", 943 | "dev": true, 944 | "requires": { 945 | "has-flag": "^4.0.0" 946 | } 947 | } 948 | } 949 | }, 950 | "chownr": { 951 | "version": "2.0.0", 952 | "resolved": "https://registry.npmjs.org/chownr/-/chownr-2.0.0.tgz", 953 | "integrity": "sha512-bIomtDF5KGpdogkLd9VspvFzk9KfpyyGlS8YFVZl7TGPBHL5snIOnxeshwVgPteQ9b4Eydl+pVbIyE1DcvCWgQ==" 954 | }, 955 | "clean-stack": { 956 | "version": "2.2.0", 957 | "resolved": "https://registry.npmjs.org/clean-stack/-/clean-stack-2.2.0.tgz", 958 | "integrity": "sha512-4diC9HaTE+KRAMWhDhrGOECgWZxoevMc5TlkObMqNSsVU62PYzXZ/SMTjzyGAFF1YusgxGcSWTEXBhp0CPwQ1A==", 959 | "optional": true 960 | }, 961 | "clone": { 962 | "version": "2.1.2", 963 | "resolved": "https://registry.npmjs.org/clone/-/clone-2.1.2.tgz", 964 | "integrity": "sha1-G39Ln1kfHo+DZwQBYANFoCiHQ18=" 965 | }, 966 | "color-convert": { 967 | "version": "1.9.3", 968 | "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", 969 | "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", 970 | "requires": { 971 | "color-name": "1.1.3" 972 | } 973 | }, 974 | "color-name": { 975 | "version": "1.1.3", 976 | "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", 977 | "integrity": "sha1-p9BVi9icQveV3UIyj3QIMcpTvCU=" 978 | }, 979 | "color-support": { 980 | "version": "1.1.3", 981 | "resolved": "https://registry.npmjs.org/color-support/-/color-support-1.1.3.tgz", 982 | "integrity": "sha512-qiBjkpbMLO/HL68y+lh4q0/O1MZFj2RX6X/KmMa3+gJD3z+WwI1ZzDHysvqHGS3mP6mznPckpXmw1nI9cJjyRg==" 983 | }, 984 | "colorette": { 985 | "version": "1.2.2", 986 | "resolved": "https://registry.npmjs.org/colorette/-/colorette-1.2.2.tgz", 987 | "integrity": "sha512-MKGMzyfeuutC/ZJ1cba9NqcNpfeqMUcYmyF1ZFY6/Cn7CNSAKx6a+s48sqLqyAiZuaP2TcqMhoo+dlwFnVxT9w==" 988 | }, 989 | "concat-map": { 990 | "version": "0.0.1", 991 | "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", 992 | "integrity": "sha1-2Klr13/Wjfd5OnMDajug1UBdR3s=" 993 | }, 994 | "console-control-strings": { 995 | "version": "1.1.0", 996 | "resolved": "https://registry.npmjs.org/console-control-strings/-/console-control-strings-1.1.0.tgz", 997 | "integrity": "sha1-PXz0Rk22RG6mRL9LOVB/mFEAjo4=" 998 | }, 999 | "contains-path": { 1000 | "version": "0.1.0", 1001 | "resolved": "https://registry.npmjs.org/contains-path/-/contains-path-0.1.0.tgz", 1002 | "integrity": "sha1-/ozxhP9mcLa67wGp1IYaXL7EEgo=", 1003 | "dev": true 1004 | }, 1005 | "content-disposition": { 1006 | "version": "0.5.3", 1007 | "resolved": "https://registry.npmjs.org/content-disposition/-/content-disposition-0.5.3.tgz", 1008 | "integrity": "sha512-ExO0774ikEObIAEV9kDo50o+79VCUdEB6n6lzKgGwupcVeRlhrj3qGAfwq8G6uBJjkqLrhT0qEYFcWng8z1z0g==", 1009 | "requires": { 1010 | "safe-buffer": "5.1.2" 1011 | } 1012 | }, 1013 | "content-type": { 1014 | "version": "1.0.4", 1015 | "resolved": "https://registry.npmjs.org/content-type/-/content-type-1.0.4.tgz", 1016 | "integrity": "sha512-hIP3EEPs8tB9AT1L+NUqtwOAps4mk2Zob89MWXMHjHWg9milF/j4osnnQLXBCBFBk/tvIG/tUc9mOUJiPBhPXA==" 1017 | }, 1018 | "convert-source-map": { 1019 | "version": "1.7.0", 1020 | "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.7.0.tgz", 1021 | "integrity": "sha512-4FJkXzKXEDB1snCFZlLP4gpC3JILicCpGbzG9f9G7tGqGCzETQ2hWPrcinA9oU4wtf2biUaEH5065UnMeR33oA==", 1022 | "requires": { 1023 | "safe-buffer": "~5.1.1" 1024 | } 1025 | }, 1026 | "cookie": { 1027 | "version": "0.4.0", 1028 | "resolved": "https://registry.npmjs.org/cookie/-/cookie-0.4.0.tgz", 1029 | "integrity": "sha512-+Hp8fLp57wnUSt0tY0tHEXh4voZRDnoIrZPqlo3DPiI4y9lwg/jqx+1Om94/W6ZaPDOUbnjOt/99w66zk+l1Xg==" 1030 | }, 1031 | "cookie-signature": { 1032 | "version": "1.0.6", 1033 | "resolved": "https://registry.npmjs.org/cookie-signature/-/cookie-signature-1.0.6.tgz", 1034 | "integrity": "sha1-4wOogrNCzD7oylE6eZmXNNqzriw=" 1035 | }, 1036 | "core-js": { 1037 | "version": "3.10.0", 1038 | "resolved": "https://registry.npmjs.org/core-js/-/core-js-3.10.0.tgz", 1039 | "integrity": "sha512-MQx/7TLgmmDVamSyfE+O+5BHvG1aUGj/gHhLn1wVtm2B5u1eVIPvh7vkfjwWKNCjrTJB8+He99IntSQ1qP+vYQ==" 1040 | }, 1041 | "cross-fetch": { 1042 | "version": "3.1.5", 1043 | "resolved": "https://registry.npmjs.org/cross-fetch/-/cross-fetch-3.1.5.tgz", 1044 | "integrity": "sha512-lvb1SBsI0Z7GDwmuid+mU3kWVBwTVUbe7S0H52yaaAdQOXq2YktTCZdlAcNKFzE6QtRz0snpw9bNiPeOIkkQvw==", 1045 | "requires": { 1046 | "node-fetch": "2.6.7" 1047 | }, 1048 | "dependencies": { 1049 | "node-fetch": { 1050 | "version": "2.6.7", 1051 | "resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-2.6.7.tgz", 1052 | "integrity": "sha512-ZjMPFEfVx5j+y2yF35Kzx5sF7kDzxuDj6ziH4FFbOp87zKDZNx8yExJIb05OGF4Nlt9IHFIMBkRl41VdvcNdbQ==", 1053 | "requires": { 1054 | "whatwg-url": "^5.0.0" 1055 | } 1056 | } 1057 | } 1058 | }, 1059 | "cross-spawn": { 1060 | "version": "7.0.3", 1061 | "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz", 1062 | "integrity": "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==", 1063 | "dev": true, 1064 | "requires": { 1065 | "path-key": "^3.1.0", 1066 | "shebang-command": "^2.0.0", 1067 | "which": "^2.0.1" 1068 | } 1069 | }, 1070 | "debug": { 1071 | "version": "2.6.9", 1072 | "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", 1073 | "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", 1074 | "requires": { 1075 | "ms": "2.0.0" 1076 | } 1077 | }, 1078 | "deep-is": { 1079 | "version": "0.1.3", 1080 | "resolved": "https://registry.npmjs.org/deep-is/-/deep-is-0.1.3.tgz", 1081 | "integrity": "sha1-s2nW+128E+7PUk+RsHD+7cNXzzQ=", 1082 | "dev": true 1083 | }, 1084 | "define-properties": { 1085 | "version": "1.1.3", 1086 | "resolved": "https://registry.npmjs.org/define-properties/-/define-properties-1.1.3.tgz", 1087 | "integrity": "sha512-3MqfYKj2lLzdMSf8ZIZE/V+Zuy+BgD6f164e8K2w7dgnpKArBDerGYpM46IYYcjnkdPNMjPk9A6VFB8+3SKlXQ==", 1088 | "requires": { 1089 | "object-keys": "^1.0.12" 1090 | } 1091 | }, 1092 | "delegates": { 1093 | "version": "1.0.0", 1094 | "resolved": "https://registry.npmjs.org/delegates/-/delegates-1.0.0.tgz", 1095 | "integrity": "sha1-hMbhWbgZBP3KWaDvRM2HDTElD5o=" 1096 | }, 1097 | "depd": { 1098 | "version": "1.1.2", 1099 | "resolved": "https://registry.npmjs.org/depd/-/depd-1.1.2.tgz", 1100 | "integrity": "sha1-m81S4UwJd2PnSbJ0xDRu0uVgtak=" 1101 | }, 1102 | "destroy": { 1103 | "version": "1.0.4", 1104 | "resolved": "https://registry.npmjs.org/destroy/-/destroy-1.0.4.tgz", 1105 | "integrity": "sha1-l4hXRCxEdJ5CBmE+N5RiBYJqvYA=" 1106 | }, 1107 | "detect-libc": { 1108 | "version": "2.0.1", 1109 | "resolved": "https://registry.npmjs.org/detect-libc/-/detect-libc-2.0.1.tgz", 1110 | "integrity": "sha512-463v3ZeIrcWtdgIg6vI6XUncguvr2TnGl4SzDXinkt9mSLpBJKXT3mW6xT3VQdDN11+WVs29pgvivTc4Lp8v+w==" 1111 | }, 1112 | "doctrine": { 1113 | "version": "3.0.0", 1114 | "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-3.0.0.tgz", 1115 | "integrity": "sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==", 1116 | "dev": true, 1117 | "requires": { 1118 | "esutils": "^2.0.2" 1119 | } 1120 | }, 1121 | "dotenv": { 1122 | "version": "8.2.0", 1123 | "resolved": "https://registry.npmjs.org/dotenv/-/dotenv-8.2.0.tgz", 1124 | "integrity": "sha512-8sJ78ElpbDJBHNeBzUbUVLsqKdccaa/BXF1uPTw3GrvQTBgrQrtObr2mUrE38vzYd8cEv+m/JBfDLioYcfXoaw==" 1125 | }, 1126 | "dottie": { 1127 | "version": "2.0.3", 1128 | "resolved": "https://registry.npmjs.org/dottie/-/dottie-2.0.3.tgz", 1129 | "integrity": "sha512-4liA0PuRkZWQFQjwBypdxPfZaRWiv5tkhMXY2hzsa2pNf5s7U3m9cwUchfNKe8wZQxdGPQQzO6Rm2uGe0rvohQ==" 1130 | }, 1131 | "ecdsa-sig-formatter": { 1132 | "version": "1.0.11", 1133 | "resolved": "https://registry.npmjs.org/ecdsa-sig-formatter/-/ecdsa-sig-formatter-1.0.11.tgz", 1134 | "integrity": "sha512-nagl3RYrbNv6kQkeJIpt6NJZy8twLB/2vtz6yN9Z4vRKHN4/QZJIEbqohALSgwKdnksuY3k5Addp5lg8sVoVcQ==", 1135 | "requires": { 1136 | "safe-buffer": "^5.0.1" 1137 | } 1138 | }, 1139 | "ee-first": { 1140 | "version": "1.1.1", 1141 | "resolved": "https://registry.npmjs.org/ee-first/-/ee-first-1.1.1.tgz", 1142 | "integrity": "sha1-WQxhFWsK4vTwJVcyoViyZrxWsh0=" 1143 | }, 1144 | "emoji-regex": { 1145 | "version": "7.0.3", 1146 | "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-7.0.3.tgz", 1147 | "integrity": "sha512-CwBLREIQ7LvYFB0WyRvwhq5N5qPhc6PMjD6bYggFlI5YyDgl+0vxq5VHbMOFqLg7hfWzmu8T5Z1QofhmTIhItA==" 1148 | }, 1149 | "encodeurl": { 1150 | "version": "1.0.2", 1151 | "resolved": "https://registry.npmjs.org/encodeurl/-/encodeurl-1.0.2.tgz", 1152 | "integrity": "sha1-rT/0yG7C0CkyL1oCw6mmBslbP1k=" 1153 | }, 1154 | "encoding": { 1155 | "version": "0.1.13", 1156 | "resolved": "https://registry.npmjs.org/encoding/-/encoding-0.1.13.tgz", 1157 | "integrity": "sha512-ETBauow1T35Y/WZMkio9jiM0Z5xjHHmJ4XmjZOq1l/dXz3lr2sRn87nJy20RupqSh1F2m3HHPSp8ShIPQJrJ3A==", 1158 | "optional": true, 1159 | "requires": { 1160 | "iconv-lite": "^0.6.2" 1161 | }, 1162 | "dependencies": { 1163 | "iconv-lite": { 1164 | "version": "0.6.3", 1165 | "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.6.3.tgz", 1166 | "integrity": "sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw==", 1167 | "optional": true, 1168 | "requires": { 1169 | "safer-buffer": ">= 2.1.2 < 3.0.0" 1170 | } 1171 | } 1172 | } 1173 | }, 1174 | "enquirer": { 1175 | "version": "2.3.6", 1176 | "resolved": "https://registry.npmjs.org/enquirer/-/enquirer-2.3.6.tgz", 1177 | "integrity": "sha512-yjNnPr315/FjS4zIsUxYguYUPP2e1NK4d7E7ZOLiyYCcbFBiTMyID+2wvm2w6+pZ/odMA7cRkjhsPbltwBOrLg==", 1178 | "dev": true, 1179 | "requires": { 1180 | "ansi-colors": "^4.1.1" 1181 | } 1182 | }, 1183 | "env-paths": { 1184 | "version": "2.2.1", 1185 | "resolved": "https://registry.npmjs.org/env-paths/-/env-paths-2.2.1.tgz", 1186 | "integrity": "sha512-+h1lkLKhZMTYjog1VEpJNG7NZJWcuc2DDk/qsqSTRRCOXiLjeQ1d1/udrUGhqMxUgAlwKNZ0cf2uqan5GLuS2A==", 1187 | "optional": true 1188 | }, 1189 | "err-code": { 1190 | "version": "2.0.3", 1191 | "resolved": "https://registry.npmjs.org/err-code/-/err-code-2.0.3.tgz", 1192 | "integrity": "sha512-2bmlRpNKBxT/CRmPOlyISQpNj+qSeYvcym/uT0Jx2bMOlKLtSy1ZmLuVxSEKKyor/N5yhvp/ZiG1oE3DEYMSFA==", 1193 | "optional": true 1194 | }, 1195 | "error-ex": { 1196 | "version": "1.3.2", 1197 | "resolved": "https://registry.npmjs.org/error-ex/-/error-ex-1.3.2.tgz", 1198 | "integrity": "sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==", 1199 | "dev": true, 1200 | "requires": { 1201 | "is-arrayish": "^0.2.1" 1202 | } 1203 | }, 1204 | "es-abstract": { 1205 | "version": "1.18.0", 1206 | "resolved": "https://registry.npmjs.org/es-abstract/-/es-abstract-1.18.0.tgz", 1207 | "integrity": "sha512-LJzK7MrQa8TS0ja2w3YNLzUgJCGPdPOV1yVvezjNnS89D+VR08+Szt2mz3YB2Dck/+w5tfIq/RoUAFqJJGM2yw==", 1208 | "requires": { 1209 | "call-bind": "^1.0.2", 1210 | "es-to-primitive": "^1.2.1", 1211 | "function-bind": "^1.1.1", 1212 | "get-intrinsic": "^1.1.1", 1213 | "has": "^1.0.3", 1214 | "has-symbols": "^1.0.2", 1215 | "is-callable": "^1.2.3", 1216 | "is-negative-zero": "^2.0.1", 1217 | "is-regex": "^1.1.2", 1218 | "is-string": "^1.0.5", 1219 | "object-inspect": "^1.9.0", 1220 | "object-keys": "^1.1.1", 1221 | "object.assign": "^4.1.2", 1222 | "string.prototype.trimend": "^1.0.4", 1223 | "string.prototype.trimstart": "^1.0.4", 1224 | "unbox-primitive": "^1.0.0" 1225 | } 1226 | }, 1227 | "es-to-primitive": { 1228 | "version": "1.2.1", 1229 | "resolved": "https://registry.npmjs.org/es-to-primitive/-/es-to-primitive-1.2.1.tgz", 1230 | "integrity": "sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==", 1231 | "requires": { 1232 | "is-callable": "^1.1.4", 1233 | "is-date-object": "^1.0.1", 1234 | "is-symbol": "^1.0.2" 1235 | } 1236 | }, 1237 | "escalade": { 1238 | "version": "3.1.1", 1239 | "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.1.1.tgz", 1240 | "integrity": "sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==" 1241 | }, 1242 | "escape-html": { 1243 | "version": "1.0.3", 1244 | "resolved": "https://registry.npmjs.org/escape-html/-/escape-html-1.0.3.tgz", 1245 | "integrity": "sha1-Aljq5NPQwJdN4cFpGI7wBR0dGYg=" 1246 | }, 1247 | "escape-string-regexp": { 1248 | "version": "1.0.5", 1249 | "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", 1250 | "integrity": "sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ=" 1251 | }, 1252 | "eslint": { 1253 | "version": "7.13.0", 1254 | "resolved": "https://registry.npmjs.org/eslint/-/eslint-7.13.0.tgz", 1255 | "integrity": "sha512-uCORMuOO8tUzJmsdRtrvcGq5qposf7Rw0LwkTJkoDbOycVQtQjmnhZSuLQnozLE4TmAzlMVV45eCHmQ1OpDKUQ==", 1256 | "dev": true, 1257 | "requires": { 1258 | "@babel/code-frame": "^7.0.0", 1259 | "@eslint/eslintrc": "^0.2.1", 1260 | "ajv": "^6.10.0", 1261 | "chalk": "^4.0.0", 1262 | "cross-spawn": "^7.0.2", 1263 | "debug": "^4.0.1", 1264 | "doctrine": "^3.0.0", 1265 | "enquirer": "^2.3.5", 1266 | "eslint-scope": "^5.1.1", 1267 | "eslint-utils": "^2.1.0", 1268 | "eslint-visitor-keys": "^2.0.0", 1269 | "espree": "^7.3.0", 1270 | "esquery": "^1.2.0", 1271 | "esutils": "^2.0.2", 1272 | "file-entry-cache": "^5.0.1", 1273 | "functional-red-black-tree": "^1.0.1", 1274 | "glob-parent": "^5.0.0", 1275 | "globals": "^12.1.0", 1276 | "ignore": "^4.0.6", 1277 | "import-fresh": "^3.0.0", 1278 | "imurmurhash": "^0.1.4", 1279 | "is-glob": "^4.0.0", 1280 | "js-yaml": "^3.13.1", 1281 | "json-stable-stringify-without-jsonify": "^1.0.1", 1282 | "levn": "^0.4.1", 1283 | "lodash": "^4.17.19", 1284 | "minimatch": "^3.0.4", 1285 | "natural-compare": "^1.4.0", 1286 | "optionator": "^0.9.1", 1287 | "progress": "^2.0.0", 1288 | "regexpp": "^3.1.0", 1289 | "semver": "^7.2.1", 1290 | "strip-ansi": "^6.0.0", 1291 | "strip-json-comments": "^3.1.0", 1292 | "table": "^5.2.3", 1293 | "text-table": "^0.2.0", 1294 | "v8-compile-cache": "^2.0.3" 1295 | }, 1296 | "dependencies": { 1297 | "debug": { 1298 | "version": "4.3.1", 1299 | "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.1.tgz", 1300 | "integrity": "sha512-doEwdvm4PCeK4K3RQN2ZC2BYUBaxwLARCqZmMjtF8a51J2Rb0xpVloFRnCODwqjpwnAoao4pelN8l3RJdv3gRQ==", 1301 | "dev": true, 1302 | "requires": { 1303 | "ms": "2.1.2" 1304 | } 1305 | }, 1306 | "ms": { 1307 | "version": "2.1.2", 1308 | "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", 1309 | "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==", 1310 | "dev": true 1311 | } 1312 | } 1313 | }, 1314 | "eslint-config-standard": { 1315 | "version": "16.0.2", 1316 | "resolved": "https://registry.npmjs.org/eslint-config-standard/-/eslint-config-standard-16.0.2.tgz", 1317 | "integrity": "sha512-fx3f1rJDsl9bY7qzyX8SAtP8GBSk6MfXFaTfaGgk12aAYW4gJSyRm7dM790L6cbXv63fvjY4XeSzXnb4WM+SKw==", 1318 | "dev": true 1319 | }, 1320 | "eslint-config-standard-jsx": { 1321 | "version": "10.0.0", 1322 | "resolved": "https://registry.npmjs.org/eslint-config-standard-jsx/-/eslint-config-standard-jsx-10.0.0.tgz", 1323 | "integrity": "sha512-hLeA2f5e06W1xyr/93/QJulN/rLbUVUmqTlexv9PRKHFwEC9ffJcH2LvJhMoEqYQBEYafedgGZXH2W8NUpt5lA==", 1324 | "dev": true 1325 | }, 1326 | "eslint-import-resolver-node": { 1327 | "version": "0.3.4", 1328 | "resolved": "https://registry.npmjs.org/eslint-import-resolver-node/-/eslint-import-resolver-node-0.3.4.tgz", 1329 | "integrity": "sha512-ogtf+5AB/O+nM6DIeBUNr2fuT7ot9Qg/1harBfBtaP13ekEWFQEEMP94BCB7zaNW3gyY+8SHYF00rnqYwXKWOA==", 1330 | "dev": true, 1331 | "requires": { 1332 | "debug": "^2.6.9", 1333 | "resolve": "^1.13.1" 1334 | } 1335 | }, 1336 | "eslint-module-utils": { 1337 | "version": "2.6.0", 1338 | "resolved": "https://registry.npmjs.org/eslint-module-utils/-/eslint-module-utils-2.6.0.tgz", 1339 | "integrity": "sha512-6j9xxegbqe8/kZY8cYpcp0xhbK0EgJlg3g9mib3/miLaExuuwc3n5UEfSnU6hWMbT0FAYVvDbL9RrRgpUeQIvA==", 1340 | "dev": true, 1341 | "requires": { 1342 | "debug": "^2.6.9", 1343 | "pkg-dir": "^2.0.0" 1344 | } 1345 | }, 1346 | "eslint-plugin-es": { 1347 | "version": "3.0.1", 1348 | "resolved": "https://registry.npmjs.org/eslint-plugin-es/-/eslint-plugin-es-3.0.1.tgz", 1349 | "integrity": "sha512-GUmAsJaN4Fc7Gbtl8uOBlayo2DqhwWvEzykMHSCZHU3XdJ+NSzzZcVhXh3VxX5icqQ+oQdIEawXX8xkR3mIFmQ==", 1350 | "dev": true, 1351 | "requires": { 1352 | "eslint-utils": "^2.0.0", 1353 | "regexpp": "^3.0.0" 1354 | } 1355 | }, 1356 | "eslint-plugin-import": { 1357 | "version": "2.22.1", 1358 | "resolved": "https://registry.npmjs.org/eslint-plugin-import/-/eslint-plugin-import-2.22.1.tgz", 1359 | "integrity": "sha512-8K7JjINHOpH64ozkAhpT3sd+FswIZTfMZTjdx052pnWrgRCVfp8op9tbjpAk3DdUeI/Ba4C8OjdC0r90erHEOw==", 1360 | "dev": true, 1361 | "requires": { 1362 | "array-includes": "^3.1.1", 1363 | "array.prototype.flat": "^1.2.3", 1364 | "contains-path": "^0.1.0", 1365 | "debug": "^2.6.9", 1366 | "doctrine": "1.5.0", 1367 | "eslint-import-resolver-node": "^0.3.4", 1368 | "eslint-module-utils": "^2.6.0", 1369 | "has": "^1.0.3", 1370 | "minimatch": "^3.0.4", 1371 | "object.values": "^1.1.1", 1372 | "read-pkg-up": "^2.0.0", 1373 | "resolve": "^1.17.0", 1374 | "tsconfig-paths": "^3.9.0" 1375 | }, 1376 | "dependencies": { 1377 | "doctrine": { 1378 | "version": "1.5.0", 1379 | "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-1.5.0.tgz", 1380 | "integrity": "sha1-N53Ocw9hZvds76TmcHoVmwLFpvo=", 1381 | "dev": true, 1382 | "requires": { 1383 | "esutils": "^2.0.2", 1384 | "isarray": "^1.0.0" 1385 | } 1386 | } 1387 | } 1388 | }, 1389 | "eslint-plugin-node": { 1390 | "version": "11.1.0", 1391 | "resolved": "https://registry.npmjs.org/eslint-plugin-node/-/eslint-plugin-node-11.1.0.tgz", 1392 | "integrity": "sha512-oUwtPJ1W0SKD0Tr+wqu92c5xuCeQqB3hSCHasn/ZgjFdA9iDGNkNf2Zi9ztY7X+hNuMib23LNGRm6+uN+KLE3g==", 1393 | "dev": true, 1394 | "requires": { 1395 | "eslint-plugin-es": "^3.0.0", 1396 | "eslint-utils": "^2.0.0", 1397 | "ignore": "^5.1.1", 1398 | "minimatch": "^3.0.4", 1399 | "resolve": "^1.10.1", 1400 | "semver": "^6.1.0" 1401 | }, 1402 | "dependencies": { 1403 | "ignore": { 1404 | "version": "5.1.8", 1405 | "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.1.8.tgz", 1406 | "integrity": "sha512-BMpfD7PpiETpBl/A6S498BaIJ6Y/ABT93ETbby2fP00v4EbvPBXWEoaR1UBPKs3iR53pJY7EtZk5KACI57i1Uw==", 1407 | "dev": true 1408 | }, 1409 | "semver": { 1410 | "version": "6.3.0", 1411 | "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", 1412 | "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", 1413 | "dev": true 1414 | } 1415 | } 1416 | }, 1417 | "eslint-plugin-promise": { 1418 | "version": "4.2.1", 1419 | "resolved": "https://registry.npmjs.org/eslint-plugin-promise/-/eslint-plugin-promise-4.2.1.tgz", 1420 | "integrity": "sha512-VoM09vT7bfA7D+upt+FjeBO5eHIJQBUWki1aPvB+vbNiHS3+oGIJGIeyBtKQTME6UPXXy3vV07OL1tHd3ANuDw==", 1421 | "dev": true 1422 | }, 1423 | "eslint-plugin-react": { 1424 | "version": "7.21.5", 1425 | "resolved": "https://registry.npmjs.org/eslint-plugin-react/-/eslint-plugin-react-7.21.5.tgz", 1426 | "integrity": "sha512-8MaEggC2et0wSF6bUeywF7qQ46ER81irOdWS4QWxnnlAEsnzeBevk1sWh7fhpCghPpXb+8Ks7hvaft6L/xsR6g==", 1427 | "dev": true, 1428 | "requires": { 1429 | "array-includes": "^3.1.1", 1430 | "array.prototype.flatmap": "^1.2.3", 1431 | "doctrine": "^2.1.0", 1432 | "has": "^1.0.3", 1433 | "jsx-ast-utils": "^2.4.1 || ^3.0.0", 1434 | "object.entries": "^1.1.2", 1435 | "object.fromentries": "^2.0.2", 1436 | "object.values": "^1.1.1", 1437 | "prop-types": "^15.7.2", 1438 | "resolve": "^1.18.1", 1439 | "string.prototype.matchall": "^4.0.2" 1440 | }, 1441 | "dependencies": { 1442 | "doctrine": { 1443 | "version": "2.1.0", 1444 | "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-2.1.0.tgz", 1445 | "integrity": "sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==", 1446 | "dev": true, 1447 | "requires": { 1448 | "esutils": "^2.0.2" 1449 | } 1450 | } 1451 | } 1452 | }, 1453 | "eslint-scope": { 1454 | "version": "5.1.1", 1455 | "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-5.1.1.tgz", 1456 | "integrity": "sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw==", 1457 | "dev": true, 1458 | "requires": { 1459 | "esrecurse": "^4.3.0", 1460 | "estraverse": "^4.1.1" 1461 | } 1462 | }, 1463 | "eslint-utils": { 1464 | "version": "2.1.0", 1465 | "resolved": "https://registry.npmjs.org/eslint-utils/-/eslint-utils-2.1.0.tgz", 1466 | "integrity": "sha512-w94dQYoauyvlDc43XnGB8lU3Zt713vNChgt4EWwhXAP2XkBvndfxF0AgIqKOOasjPIPzj9JqgwkwbCYD0/V3Zg==", 1467 | "dev": true, 1468 | "requires": { 1469 | "eslint-visitor-keys": "^1.1.0" 1470 | }, 1471 | "dependencies": { 1472 | "eslint-visitor-keys": { 1473 | "version": "1.3.0", 1474 | "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-1.3.0.tgz", 1475 | "integrity": "sha512-6J72N8UNa462wa/KFODt/PJ3IU60SDpC3QXC1Hjc1BXXpfL2C9R5+AU7jhe0F6GREqVMh4Juu+NY7xn+6dipUQ==", 1476 | "dev": true 1477 | } 1478 | } 1479 | }, 1480 | "eslint-visitor-keys": { 1481 | "version": "2.0.0", 1482 | "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-2.0.0.tgz", 1483 | "integrity": "sha512-QudtT6av5WXels9WjIM7qz1XD1cWGvX4gGXvp/zBn9nXG02D0utdU3Em2m/QjTnrsk6bBjmCygl3rmj118msQQ==", 1484 | "dev": true 1485 | }, 1486 | "espree": { 1487 | "version": "7.3.1", 1488 | "resolved": "https://registry.npmjs.org/espree/-/espree-7.3.1.tgz", 1489 | "integrity": "sha512-v3JCNCE64umkFpmkFGqzVKsOT0tN1Zr+ueqLZfpV1Ob8e+CEgPWa+OxCoGH3tnhimMKIaBm4m/vaRpJ/krRz2g==", 1490 | "dev": true, 1491 | "requires": { 1492 | "acorn": "^7.4.0", 1493 | "acorn-jsx": "^5.3.1", 1494 | "eslint-visitor-keys": "^1.3.0" 1495 | }, 1496 | "dependencies": { 1497 | "eslint-visitor-keys": { 1498 | "version": "1.3.0", 1499 | "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-1.3.0.tgz", 1500 | "integrity": "sha512-6J72N8UNa462wa/KFODt/PJ3IU60SDpC3QXC1Hjc1BXXpfL2C9R5+AU7jhe0F6GREqVMh4Juu+NY7xn+6dipUQ==", 1501 | "dev": true 1502 | } 1503 | } 1504 | }, 1505 | "esprima": { 1506 | "version": "4.0.1", 1507 | "resolved": "https://registry.npmjs.org/esprima/-/esprima-4.0.1.tgz", 1508 | "integrity": "sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==", 1509 | "dev": true 1510 | }, 1511 | "esquery": { 1512 | "version": "1.4.0", 1513 | "resolved": "https://registry.npmjs.org/esquery/-/esquery-1.4.0.tgz", 1514 | "integrity": "sha512-cCDispWt5vHHtwMY2YrAQ4ibFkAL8RbH5YGBnZBc90MolvvfkkQcJro/aZiAQUlQ3qgrYS6D6v8Gc5G5CQsc9w==", 1515 | "dev": true, 1516 | "requires": { 1517 | "estraverse": "^5.1.0" 1518 | }, 1519 | "dependencies": { 1520 | "estraverse": { 1521 | "version": "5.2.0", 1522 | "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.2.0.tgz", 1523 | "integrity": "sha512-BxbNGGNm0RyRYvUdHpIwv9IWzeM9XClbOxwoATuFdOE7ZE6wHL+HQ5T8hoPM+zHvmKzzsEqhgy0GrQ5X13afiQ==", 1524 | "dev": true 1525 | } 1526 | } 1527 | }, 1528 | "esrecurse": { 1529 | "version": "4.3.0", 1530 | "resolved": "https://registry.npmjs.org/esrecurse/-/esrecurse-4.3.0.tgz", 1531 | "integrity": "sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==", 1532 | "dev": true, 1533 | "requires": { 1534 | "estraverse": "^5.2.0" 1535 | }, 1536 | "dependencies": { 1537 | "estraverse": { 1538 | "version": "5.2.0", 1539 | "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.2.0.tgz", 1540 | "integrity": "sha512-BxbNGGNm0RyRYvUdHpIwv9IWzeM9XClbOxwoATuFdOE7ZE6wHL+HQ5T8hoPM+zHvmKzzsEqhgy0GrQ5X13afiQ==", 1541 | "dev": true 1542 | } 1543 | } 1544 | }, 1545 | "estraverse": { 1546 | "version": "4.3.0", 1547 | "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-4.3.0.tgz", 1548 | "integrity": "sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==", 1549 | "dev": true 1550 | }, 1551 | "esutils": { 1552 | "version": "2.0.3", 1553 | "resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz", 1554 | "integrity": "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==", 1555 | "dev": true 1556 | }, 1557 | "etag": { 1558 | "version": "1.8.1", 1559 | "resolved": "https://registry.npmjs.org/etag/-/etag-1.8.1.tgz", 1560 | "integrity": "sha1-Qa4u62XvpiJorr/qg6x9eSmbCIc=" 1561 | }, 1562 | "express": { 1563 | "version": "4.17.1", 1564 | "resolved": "https://registry.npmjs.org/express/-/express-4.17.1.tgz", 1565 | "integrity": "sha512-mHJ9O79RqluphRrcw2X/GTh3k9tVv8YcoyY4Kkh4WDMUYKRZUq0h1o0w2rrrxBqM7VoeUVqgb27xlEMXTnYt4g==", 1566 | "requires": { 1567 | "accepts": "~1.3.7", 1568 | "array-flatten": "1.1.1", 1569 | "body-parser": "1.19.0", 1570 | "content-disposition": "0.5.3", 1571 | "content-type": "~1.0.4", 1572 | "cookie": "0.4.0", 1573 | "cookie-signature": "1.0.6", 1574 | "debug": "2.6.9", 1575 | "depd": "~1.1.2", 1576 | "encodeurl": "~1.0.2", 1577 | "escape-html": "~1.0.3", 1578 | "etag": "~1.8.1", 1579 | "finalhandler": "~1.1.2", 1580 | "fresh": "0.5.2", 1581 | "merge-descriptors": "1.0.1", 1582 | "methods": "~1.1.2", 1583 | "on-finished": "~2.3.0", 1584 | "parseurl": "~1.3.3", 1585 | "path-to-regexp": "0.1.7", 1586 | "proxy-addr": "~2.0.5", 1587 | "qs": "6.7.0", 1588 | "range-parser": "~1.2.1", 1589 | "safe-buffer": "5.1.2", 1590 | "send": "0.17.1", 1591 | "serve-static": "1.14.1", 1592 | "setprototypeof": "1.1.1", 1593 | "statuses": "~1.5.0", 1594 | "type-is": "~1.6.18", 1595 | "utils-merge": "1.0.1", 1596 | "vary": "~1.1.2" 1597 | } 1598 | }, 1599 | "fast-deep-equal": { 1600 | "version": "3.1.3", 1601 | "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz", 1602 | "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==", 1603 | "dev": true 1604 | }, 1605 | "fast-json-stable-stringify": { 1606 | "version": "2.1.0", 1607 | "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz", 1608 | "integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==", 1609 | "dev": true 1610 | }, 1611 | "fast-levenshtein": { 1612 | "version": "2.0.6", 1613 | "resolved": "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz", 1614 | "integrity": "sha1-PYpcZog6FqMMqGQ+hR8Zuqd5eRc=", 1615 | "dev": true 1616 | }, 1617 | "file-entry-cache": { 1618 | "version": "5.0.1", 1619 | "resolved": "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-5.0.1.tgz", 1620 | "integrity": "sha512-bCg29ictuBaKUwwArK4ouCaqDgLZcysCFLmM/Yn/FDoqndh/9vNuQfXRDvTuXKLxfD/JtZQGKFT8MGcJBK644g==", 1621 | "dev": true, 1622 | "requires": { 1623 | "flat-cache": "^2.0.1" 1624 | } 1625 | }, 1626 | "finale-rest": { 1627 | "version": "1.0.6", 1628 | "resolved": "https://registry.npmjs.org/finale-rest/-/finale-rest-1.0.6.tgz", 1629 | "integrity": "sha512-slzdtIF46EhtAnaGBni7hGzAUcKuGS7G+bmveGiNA/5yDVpQ1l/f7brB80YL+LqY35jeVkC+5dV2tAvt4xiLLA==", 1630 | "requires": { 1631 | "bluebird": "^3.0.0", 1632 | "inflection": "^1.7.1", 1633 | "lodash": "^4.17.5", 1634 | "moment": "^2.19.3" 1635 | } 1636 | }, 1637 | "finalhandler": { 1638 | "version": "1.1.2", 1639 | "resolved": "https://registry.npmjs.org/finalhandler/-/finalhandler-1.1.2.tgz", 1640 | "integrity": "sha512-aAWcW57uxVNrQZqFXjITpW3sIUQmHGG3qSb9mUah9MgMC4NeWhNOlNjXEYq3HjRAvL6arUviZGGJsBg6z0zsWA==", 1641 | "requires": { 1642 | "debug": "2.6.9", 1643 | "encodeurl": "~1.0.2", 1644 | "escape-html": "~1.0.3", 1645 | "on-finished": "~2.3.0", 1646 | "parseurl": "~1.3.3", 1647 | "statuses": "~1.5.0", 1648 | "unpipe": "~1.0.0" 1649 | } 1650 | }, 1651 | "find-up": { 1652 | "version": "2.1.0", 1653 | "resolved": "https://registry.npmjs.org/find-up/-/find-up-2.1.0.tgz", 1654 | "integrity": "sha1-RdG35QbHF93UgndaK3eSCjwMV6c=", 1655 | "dev": true, 1656 | "requires": { 1657 | "locate-path": "^2.0.0" 1658 | } 1659 | }, 1660 | "flat-cache": { 1661 | "version": "2.0.1", 1662 | "resolved": "https://registry.npmjs.org/flat-cache/-/flat-cache-2.0.1.tgz", 1663 | "integrity": "sha512-LoQe6yDuUMDzQAEH8sgmh4Md6oZnc/7PjtwjNFSzveXqSHt6ka9fPBuso7IGf9Rz4uqnSnWiFH2B/zj24a5ReA==", 1664 | "dev": true, 1665 | "requires": { 1666 | "flatted": "^2.0.0", 1667 | "rimraf": "2.6.3", 1668 | "write": "1.0.3" 1669 | } 1670 | }, 1671 | "flatted": { 1672 | "version": "2.0.2", 1673 | "resolved": "https://registry.npmjs.org/flatted/-/flatted-2.0.2.tgz", 1674 | "integrity": "sha512-r5wGx7YeOwNWNlCA0wQ86zKyDLMQr+/RB8xy74M4hTphfmjlijTSSXGuH8rnvKZnfT9i+75zmd8jcKdMR4O6jA==", 1675 | "dev": true 1676 | }, 1677 | "follow-redirects": { 1678 | "version": "1.14.8", 1679 | "resolved": "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.14.8.tgz", 1680 | "integrity": "sha512-1x0S9UVJHsQprFcEC/qnNzBLcIxsjAV905f/UkQxbclCsoTWlacCNOpQa/anodLl2uaEKFhfWOvM2Qg77+15zA==" 1681 | }, 1682 | "foreach": { 1683 | "version": "2.0.5", 1684 | "resolved": "https://registry.npmjs.org/foreach/-/foreach-2.0.5.tgz", 1685 | "integrity": "sha1-C+4AUBiusmDQo6865ljdATbsG5k=" 1686 | }, 1687 | "forwarded": { 1688 | "version": "0.1.2", 1689 | "resolved": "https://registry.npmjs.org/forwarded/-/forwarded-0.1.2.tgz", 1690 | "integrity": "sha1-mMI9qxF1ZXuMBXPozszZGw/xjIQ=" 1691 | }, 1692 | "fresh": { 1693 | "version": "0.5.2", 1694 | "resolved": "https://registry.npmjs.org/fresh/-/fresh-0.5.2.tgz", 1695 | "integrity": "sha1-PYyt2Q2XZWn6g1qx+OSyOhBWBac=" 1696 | }, 1697 | "fs-minipass": { 1698 | "version": "2.1.0", 1699 | "resolved": "https://registry.npmjs.org/fs-minipass/-/fs-minipass-2.1.0.tgz", 1700 | "integrity": "sha512-V/JgOLFCS+R6Vcq0slCuaeWEdNC3ouDlJMNIsacH2VtALiu9mV4LPrHc5cDl8k5aw6J8jwgWWpiTo5RYhmIzvg==", 1701 | "requires": { 1702 | "minipass": "^3.0.0" 1703 | } 1704 | }, 1705 | "fs.realpath": { 1706 | "version": "1.0.0", 1707 | "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz", 1708 | "integrity": "sha1-FQStJSMVjKpA20onh8sBQRmU6k8=" 1709 | }, 1710 | "function-bind": { 1711 | "version": "1.1.1", 1712 | "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz", 1713 | "integrity": "sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==" 1714 | }, 1715 | "functional-red-black-tree": { 1716 | "version": "1.0.1", 1717 | "resolved": "https://registry.npmjs.org/functional-red-black-tree/-/functional-red-black-tree-1.0.1.tgz", 1718 | "integrity": "sha1-GwqzvVU7Kg1jmdKcDj6gslIHgyc=", 1719 | "dev": true 1720 | }, 1721 | "gauge": { 1722 | "version": "3.0.2", 1723 | "resolved": "https://registry.npmjs.org/gauge/-/gauge-3.0.2.tgz", 1724 | "integrity": "sha512-+5J6MS/5XksCuXq++uFRsnUd7Ovu1XenbeuIuNRJxYWjgQbPuFhT14lAvsWfqfAmnwluf1OwMjz39HjfLPci0Q==", 1725 | "requires": { 1726 | "aproba": "^1.0.3 || ^2.0.0", 1727 | "color-support": "^1.1.2", 1728 | "console-control-strings": "^1.0.0", 1729 | "has-unicode": "^2.0.1", 1730 | "object-assign": "^4.1.1", 1731 | "signal-exit": "^3.0.0", 1732 | "string-width": "^4.2.3", 1733 | "strip-ansi": "^6.0.1", 1734 | "wide-align": "^1.1.2" 1735 | }, 1736 | "dependencies": { 1737 | "emoji-regex": { 1738 | "version": "8.0.0", 1739 | "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", 1740 | "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==" 1741 | }, 1742 | "is-fullwidth-code-point": { 1743 | "version": "3.0.0", 1744 | "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", 1745 | "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==" 1746 | }, 1747 | "string-width": { 1748 | "version": "4.2.3", 1749 | "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", 1750 | "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", 1751 | "requires": { 1752 | "emoji-regex": "^8.0.0", 1753 | "is-fullwidth-code-point": "^3.0.0", 1754 | "strip-ansi": "^6.0.1" 1755 | } 1756 | }, 1757 | "strip-ansi": { 1758 | "version": "6.0.1", 1759 | "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", 1760 | "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", 1761 | "requires": { 1762 | "ansi-regex": "^5.0.1" 1763 | } 1764 | } 1765 | } 1766 | }, 1767 | "gensync": { 1768 | "version": "1.0.0-beta.2", 1769 | "resolved": "https://registry.npmjs.org/gensync/-/gensync-1.0.0-beta.2.tgz", 1770 | "integrity": "sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==" 1771 | }, 1772 | "get-intrinsic": { 1773 | "version": "1.1.1", 1774 | "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.1.1.tgz", 1775 | "integrity": "sha512-kWZrnVM42QCiEA2Ig1bG8zjoIMOgxWwYCEeNdwY6Tv/cOSeGpcoX4pXHfKUxNKVoArnrEr2e9srnAxxGIraS9Q==", 1776 | "requires": { 1777 | "function-bind": "^1.1.1", 1778 | "has": "^1.0.3", 1779 | "has-symbols": "^1.0.1" 1780 | } 1781 | }, 1782 | "get-stdin": { 1783 | "version": "8.0.0", 1784 | "resolved": "https://registry.npmjs.org/get-stdin/-/get-stdin-8.0.0.tgz", 1785 | "integrity": "sha512-sY22aA6xchAzprjyqmSEQv4UbAAzRN0L2dQB0NlN5acTTK9Don6nhoc3eAbUnpZiCANAMfd/+40kVdKfFygohg==", 1786 | "dev": true 1787 | }, 1788 | "glob": { 1789 | "version": "7.1.6", 1790 | "resolved": "https://registry.npmjs.org/glob/-/glob-7.1.6.tgz", 1791 | "integrity": "sha512-LwaxwyZ72Lk7vZINtNNrywX0ZuLyStrdDtabefZKAY5ZGJhVtgdznluResxNmPitE0SAO+O26sWTHeKSI2wMBA==", 1792 | "requires": { 1793 | "fs.realpath": "^1.0.0", 1794 | "inflight": "^1.0.4", 1795 | "inherits": "2", 1796 | "minimatch": "^3.0.4", 1797 | "once": "^1.3.0", 1798 | "path-is-absolute": "^1.0.0" 1799 | } 1800 | }, 1801 | "glob-parent": { 1802 | "version": "5.1.2", 1803 | "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", 1804 | "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", 1805 | "dev": true, 1806 | "requires": { 1807 | "is-glob": "^4.0.1" 1808 | } 1809 | }, 1810 | "globals": { 1811 | "version": "12.4.0", 1812 | "resolved": "https://registry.npmjs.org/globals/-/globals-12.4.0.tgz", 1813 | "integrity": "sha512-BWICuzzDvDoH54NHKCseDanAhE3CeDorgDL5MT6LMXXj2WCnd9UC2szdk4AWLfjdgNBCXLUanXYcpBBKOSWGwg==", 1814 | "dev": true, 1815 | "requires": { 1816 | "type-fest": "^0.8.1" 1817 | } 1818 | }, 1819 | "graceful-fs": { 1820 | "version": "4.2.6", 1821 | "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.6.tgz", 1822 | "integrity": "sha512-nTnJ528pbqxYanhpDYsi4Rd8MAeaBA67+RZ10CM1m3bTAVFEDcd5AuA4a6W5YkGZ1iNXHzZz8T6TBKLeBuNriQ==" 1823 | }, 1824 | "has": { 1825 | "version": "1.0.3", 1826 | "resolved": "https://registry.npmjs.org/has/-/has-1.0.3.tgz", 1827 | "integrity": "sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==", 1828 | "requires": { 1829 | "function-bind": "^1.1.1" 1830 | } 1831 | }, 1832 | "has-bigints": { 1833 | "version": "1.0.1", 1834 | "resolved": "https://registry.npmjs.org/has-bigints/-/has-bigints-1.0.1.tgz", 1835 | "integrity": "sha512-LSBS2LjbNBTf6287JEbEzvJgftkF5qFkmCo9hDRpAzKhUOlJ+hx8dd4USs00SgsUNwc4617J9ki5YtEClM2ffA==" 1836 | }, 1837 | "has-flag": { 1838 | "version": "3.0.0", 1839 | "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", 1840 | "integrity": "sha1-tdRU3CGZriJWmfNGfloH87lVuv0=" 1841 | }, 1842 | "has-symbols": { 1843 | "version": "1.0.2", 1844 | "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.2.tgz", 1845 | "integrity": "sha512-chXa79rL/UC2KlX17jo3vRGz0azaWEx5tGqZg5pO3NUyEJVB17dMruQlzCCOfUvElghKcm5194+BCRvi2Rv/Gw==" 1846 | }, 1847 | "has-unicode": { 1848 | "version": "2.0.1", 1849 | "resolved": "https://registry.npmjs.org/has-unicode/-/has-unicode-2.0.1.tgz", 1850 | "integrity": "sha1-4Ob+aijPUROIVeCG0Wkedx3iqLk=" 1851 | }, 1852 | "hosted-git-info": { 1853 | "version": "2.8.9", 1854 | "resolved": "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-2.8.9.tgz", 1855 | "integrity": "sha512-mxIDAb9Lsm6DoOJ7xH+5+X4y1LU/4Hi50L9C5sIswK3JzULS4bwk1FvjdBgvYR4bzT4tuUQiC15FE2f5HbLvYw==", 1856 | "dev": true 1857 | }, 1858 | "html-escaper": { 1859 | "version": "2.0.2", 1860 | "resolved": "https://registry.npmjs.org/html-escaper/-/html-escaper-2.0.2.tgz", 1861 | "integrity": "sha512-H2iMtd0I4Mt5eYiapRdIDjp+XzelXQ0tFE4JS7YFwFevXXMmOp9myNrUvCg0D6ws8iqkRPBfKHgbwig1SmlLfg==" 1862 | }, 1863 | "http-cache-semantics": { 1864 | "version": "4.1.0", 1865 | "resolved": "https://registry.npmjs.org/http-cache-semantics/-/http-cache-semantics-4.1.0.tgz", 1866 | "integrity": "sha512-carPklcUh7ROWRK7Cv27RPtdhYhUsela/ue5/jKzjegVvXDqM2ILE9Q2BGn9JZJh1g87cp56su/FgQSzcWS8cQ==", 1867 | "optional": true 1868 | }, 1869 | "http-errors": { 1870 | "version": "1.7.2", 1871 | "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-1.7.2.tgz", 1872 | "integrity": "sha512-uUQBt3H/cSIVfch6i1EuPNy/YsRSOUBXTVfZ+yR7Zjez3qjBz6i9+i4zjNaoqcoFVI4lQJ5plg63TvGfRSDCRg==", 1873 | "requires": { 1874 | "depd": "~1.1.2", 1875 | "inherits": "2.0.3", 1876 | "setprototypeof": "1.1.1", 1877 | "statuses": ">= 1.5.0 < 2", 1878 | "toidentifier": "1.0.0" 1879 | } 1880 | }, 1881 | "http-proxy-agent": { 1882 | "version": "4.0.1", 1883 | "resolved": "https://registry.npmjs.org/http-proxy-agent/-/http-proxy-agent-4.0.1.tgz", 1884 | "integrity": "sha512-k0zdNgqWTGA6aeIRVpvfVob4fL52dTfaehylg0Y4UvSySvOq/Y+BOyPrgpUrA7HylqvU8vIZGsRuXmspskV0Tg==", 1885 | "requires": { 1886 | "@tootallnate/once": "1", 1887 | "agent-base": "6", 1888 | "debug": "4" 1889 | }, 1890 | "dependencies": { 1891 | "debug": { 1892 | "version": "4.3.1", 1893 | "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.1.tgz", 1894 | "integrity": "sha512-doEwdvm4PCeK4K3RQN2ZC2BYUBaxwLARCqZmMjtF8a51J2Rb0xpVloFRnCODwqjpwnAoao4pelN8l3RJdv3gRQ==", 1895 | "requires": { 1896 | "ms": "2.1.2" 1897 | } 1898 | }, 1899 | "ms": { 1900 | "version": "2.1.2", 1901 | "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", 1902 | "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==" 1903 | } 1904 | } 1905 | }, 1906 | "https-proxy-agent": { 1907 | "version": "5.0.0", 1908 | "resolved": "https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-5.0.0.tgz", 1909 | "integrity": "sha512-EkYm5BcKUGiduxzSt3Eppko+PiNWNEpa4ySk9vTC6wDsQJW9rHSa+UhGNJoRYp7bz6Ht1eaRIa6QaJqO5rCFbA==", 1910 | "requires": { 1911 | "agent-base": "6", 1912 | "debug": "4" 1913 | }, 1914 | "dependencies": { 1915 | "debug": { 1916 | "version": "4.3.1", 1917 | "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.1.tgz", 1918 | "integrity": "sha512-doEwdvm4PCeK4K3RQN2ZC2BYUBaxwLARCqZmMjtF8a51J2Rb0xpVloFRnCODwqjpwnAoao4pelN8l3RJdv3gRQ==", 1919 | "requires": { 1920 | "ms": "2.1.2" 1921 | } 1922 | }, 1923 | "ms": { 1924 | "version": "2.1.2", 1925 | "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", 1926 | "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==" 1927 | } 1928 | } 1929 | }, 1930 | "humanize-ms": { 1931 | "version": "1.2.1", 1932 | "resolved": "https://registry.npmjs.org/humanize-ms/-/humanize-ms-1.2.1.tgz", 1933 | "integrity": "sha1-xG4xWaKT9riW2ikxbYtv6Lt5u+0=", 1934 | "optional": true, 1935 | "requires": { 1936 | "ms": "^2.0.0" 1937 | } 1938 | }, 1939 | "iconv-lite": { 1940 | "version": "0.4.24", 1941 | "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz", 1942 | "integrity": "sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==", 1943 | "requires": { 1944 | "safer-buffer": ">= 2.1.2 < 3" 1945 | } 1946 | }, 1947 | "ignore": { 1948 | "version": "4.0.6", 1949 | "resolved": "https://registry.npmjs.org/ignore/-/ignore-4.0.6.tgz", 1950 | "integrity": "sha512-cyFDKrqc/YdcWFniJhzI42+AzS+gNwmUzOSFcRCQYwySuBBBy/KjuxWLZ/FHEH6Moq1NizMOBWyTcv8O4OZIMg==", 1951 | "dev": true 1952 | }, 1953 | "import-fresh": { 1954 | "version": "3.3.0", 1955 | "resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-3.3.0.tgz", 1956 | "integrity": "sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==", 1957 | "dev": true, 1958 | "requires": { 1959 | "parent-module": "^1.0.0", 1960 | "resolve-from": "^4.0.0" 1961 | } 1962 | }, 1963 | "imurmurhash": { 1964 | "version": "0.1.4", 1965 | "resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz", 1966 | "integrity": "sha1-khi5srkoojixPcT7a21XbyMUU+o=" 1967 | }, 1968 | "indent-string": { 1969 | "version": "4.0.0", 1970 | "resolved": "https://registry.npmjs.org/indent-string/-/indent-string-4.0.0.tgz", 1971 | "integrity": "sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg==", 1972 | "optional": true 1973 | }, 1974 | "infer-owner": { 1975 | "version": "1.0.4", 1976 | "resolved": "https://registry.npmjs.org/infer-owner/-/infer-owner-1.0.4.tgz", 1977 | "integrity": "sha512-IClj+Xz94+d7irH5qRyfJonOdfTzuDaifE6ZPWfx0N0+/ATZCbuTPq2prFl526urkQd90WyUKIh1DfBQ2hMz9A==", 1978 | "optional": true 1979 | }, 1980 | "inflection": { 1981 | "version": "1.12.0", 1982 | "resolved": "https://registry.npmjs.org/inflection/-/inflection-1.12.0.tgz", 1983 | "integrity": "sha1-ogCTVlbW9fa8TcdQLhrstwMihBY=" 1984 | }, 1985 | "inflight": { 1986 | "version": "1.0.6", 1987 | "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz", 1988 | "integrity": "sha1-Sb1jMdfQLQwJvJEKEHW6gWW1bfk=", 1989 | "requires": { 1990 | "once": "^1.3.0", 1991 | "wrappy": "1" 1992 | } 1993 | }, 1994 | "inherits": { 1995 | "version": "2.0.3", 1996 | "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz", 1997 | "integrity": "sha1-Yzwsg+PaQqUC9SRmAiSA9CCCYd4=" 1998 | }, 1999 | "internal-slot": { 2000 | "version": "1.0.3", 2001 | "resolved": "https://registry.npmjs.org/internal-slot/-/internal-slot-1.0.3.tgz", 2002 | "integrity": "sha512-O0DB1JC/sPyZl7cIo78n5dR7eUSwwpYPiXRhTzNxZVAMUuB8vlnRFyLxdrVToks6XPLVnFfbzaVd5WLjhgg+vA==", 2003 | "dev": true, 2004 | "requires": { 2005 | "get-intrinsic": "^1.1.0", 2006 | "has": "^1.0.3", 2007 | "side-channel": "^1.0.4" 2008 | } 2009 | }, 2010 | "ip": { 2011 | "version": "1.1.5", 2012 | "resolved": "https://registry.npmjs.org/ip/-/ip-1.1.5.tgz", 2013 | "integrity": "sha1-vd7XARQpCCjAoDnnLvJfWq7ENUo=", 2014 | "optional": true 2015 | }, 2016 | "ipaddr.js": { 2017 | "version": "1.9.1", 2018 | "resolved": "https://registry.npmjs.org/ipaddr.js/-/ipaddr.js-1.9.1.tgz", 2019 | "integrity": "sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g==" 2020 | }, 2021 | "is-arguments": { 2022 | "version": "1.1.0", 2023 | "resolved": "https://registry.npmjs.org/is-arguments/-/is-arguments-1.1.0.tgz", 2024 | "integrity": "sha512-1Ij4lOMPl/xB5kBDn7I+b2ttPMKa8szhEIrXDuXQD/oe3HJLTLhqhgGspwgyGd6MOywBUqVvYicF72lkgDnIHg==", 2025 | "requires": { 2026 | "call-bind": "^1.0.0" 2027 | } 2028 | }, 2029 | "is-arrayish": { 2030 | "version": "0.2.1", 2031 | "resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.2.1.tgz", 2032 | "integrity": "sha1-d8mYQFJ6qOyxqLppe4BkWnqSap0=", 2033 | "dev": true 2034 | }, 2035 | "is-bigint": { 2036 | "version": "1.0.1", 2037 | "resolved": "https://registry.npmjs.org/is-bigint/-/is-bigint-1.0.1.tgz", 2038 | "integrity": "sha512-J0ELF4yHFxHy0cmSxZuheDOz2luOdVvqjwmEcj8H/L1JHeuEDSDbeRP+Dk9kFVk5RTFzbucJ2Kb9F7ixY2QaCg==" 2039 | }, 2040 | "is-boolean-object": { 2041 | "version": "1.1.0", 2042 | "resolved": "https://registry.npmjs.org/is-boolean-object/-/is-boolean-object-1.1.0.tgz", 2043 | "integrity": "sha512-a7Uprx8UtD+HWdyYwnD1+ExtTgqQtD2k/1yJgtXP6wnMm8byhkoTZRl+95LLThpzNZJ5aEvi46cdH+ayMFRwmA==", 2044 | "requires": { 2045 | "call-bind": "^1.0.0" 2046 | } 2047 | }, 2048 | "is-callable": { 2049 | "version": "1.2.3", 2050 | "resolved": "https://registry.npmjs.org/is-callable/-/is-callable-1.2.3.tgz", 2051 | "integrity": "sha512-J1DcMe8UYTBSrKezuIUTUwjXsho29693unXM2YhJUTR2txK/eG47bvNa/wipPFmZFgr/N6f1GA66dv0mEyTIyQ==" 2052 | }, 2053 | "is-core-module": { 2054 | "version": "2.2.0", 2055 | "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.2.0.tgz", 2056 | "integrity": "sha512-XRAfAdyyY5F5cOXn7hYQDqh2Xmii+DEfIcQGxK/uNwMHhIkPWO0g8msXcbzLe+MpGoR951MlqM/2iIlU4vKDdQ==", 2057 | "dev": true, 2058 | "requires": { 2059 | "has": "^1.0.3" 2060 | } 2061 | }, 2062 | "is-date-object": { 2063 | "version": "1.0.2", 2064 | "resolved": "https://registry.npmjs.org/is-date-object/-/is-date-object-1.0.2.tgz", 2065 | "integrity": "sha512-USlDT524woQ08aoZFzh3/Z6ch9Y/EWXEHQ/AaRN0SkKq4t2Jw2R2339tSXmwuVoY7LLlBCbOIlx2myP/L5zk0g==" 2066 | }, 2067 | "is-extglob": { 2068 | "version": "2.1.1", 2069 | "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", 2070 | "integrity": "sha1-qIwCU1eR8C7TfHahueqXc8gz+MI=", 2071 | "dev": true 2072 | }, 2073 | "is-fullwidth-code-point": { 2074 | "version": "2.0.0", 2075 | "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz", 2076 | "integrity": "sha1-o7MKXE8ZkYMWeqq5O+764937ZU8=" 2077 | }, 2078 | "is-generator-function": { 2079 | "version": "1.0.8", 2080 | "resolved": "https://registry.npmjs.org/is-generator-function/-/is-generator-function-1.0.8.tgz", 2081 | "integrity": "sha512-2Omr/twNtufVZFr1GhxjOMFPAj2sjc/dKaIqBhvo4qciXfJmITGH6ZGd8eZYNHza8t1y0e01AuqRhJwfWp26WQ==" 2082 | }, 2083 | "is-glob": { 2084 | "version": "4.0.1", 2085 | "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.1.tgz", 2086 | "integrity": "sha512-5G0tKtBTFImOqDnLB2hG6Bp2qcKEFduo4tZu9MT/H6NQv/ghhy30o55ufafxJ/LdH79LLs2Kfrn85TLKyA7BUg==", 2087 | "dev": true, 2088 | "requires": { 2089 | "is-extglob": "^2.1.1" 2090 | } 2091 | }, 2092 | "is-lambda": { 2093 | "version": "1.0.1", 2094 | "resolved": "https://registry.npmjs.org/is-lambda/-/is-lambda-1.0.1.tgz", 2095 | "integrity": "sha1-PZh3iZ5qU+/AFgUEzeFfgubwYdU=", 2096 | "optional": true 2097 | }, 2098 | "is-negative-zero": { 2099 | "version": "2.0.1", 2100 | "resolved": "https://registry.npmjs.org/is-negative-zero/-/is-negative-zero-2.0.1.tgz", 2101 | "integrity": "sha512-2z6JzQvZRa9A2Y7xC6dQQm4FSTSTNWjKIYYTt4246eMTJmIo0Q+ZyOsU66X8lxK1AbB92dFeglPLrhwpeRKO6w==" 2102 | }, 2103 | "is-number-object": { 2104 | "version": "1.0.4", 2105 | "resolved": "https://registry.npmjs.org/is-number-object/-/is-number-object-1.0.4.tgz", 2106 | "integrity": "sha512-zohwelOAur+5uXtk8O3GPQ1eAcu4ZX3UwxQhUlfFFMNpUd83gXgjbhJh6HmB6LUNV/ieOLQuDwJO3dWJosUeMw==" 2107 | }, 2108 | "is-regex": { 2109 | "version": "1.1.2", 2110 | "resolved": "https://registry.npmjs.org/is-regex/-/is-regex-1.1.2.tgz", 2111 | "integrity": "sha512-axvdhb5pdhEVThqJzYXwMlVuZwC+FF2DpcOhTS+y/8jVq4trxyPgfcwIxIKiyeuLlSQYKkmUaPQJ8ZE4yNKXDg==", 2112 | "requires": { 2113 | "call-bind": "^1.0.2", 2114 | "has-symbols": "^1.0.1" 2115 | } 2116 | }, 2117 | "is-string": { 2118 | "version": "1.0.5", 2119 | "resolved": "https://registry.npmjs.org/is-string/-/is-string-1.0.5.tgz", 2120 | "integrity": "sha512-buY6VNRjhQMiF1qWDouloZlQbRhDPCebwxSjxMjxgemYT46YMd2NR0/H+fBhEfWX4A/w9TBJ+ol+okqJKFE6vQ==" 2121 | }, 2122 | "is-symbol": { 2123 | "version": "1.0.3", 2124 | "resolved": "https://registry.npmjs.org/is-symbol/-/is-symbol-1.0.3.tgz", 2125 | "integrity": "sha512-OwijhaRSgqvhm/0ZdAcXNZt9lYdKFpcRDT5ULUuYXPoT794UNOdU+gpT6Rzo7b4V2HUl/op6GqY894AZwv9faQ==", 2126 | "requires": { 2127 | "has-symbols": "^1.0.1" 2128 | } 2129 | }, 2130 | "is-typed-array": { 2131 | "version": "1.1.5", 2132 | "resolved": "https://registry.npmjs.org/is-typed-array/-/is-typed-array-1.1.5.tgz", 2133 | "integrity": "sha512-S+GRDgJlR3PyEbsX/Fobd9cqpZBuvUS+8asRqYDMLCb2qMzt1oz5m5oxQCxOgUDxiWsOVNi4yaF+/uvdlHlYug==", 2134 | "requires": { 2135 | "available-typed-arrays": "^1.0.2", 2136 | "call-bind": "^1.0.2", 2137 | "es-abstract": "^1.18.0-next.2", 2138 | "foreach": "^2.0.5", 2139 | "has-symbols": "^1.0.1" 2140 | } 2141 | }, 2142 | "isarray": { 2143 | "version": "1.0.0", 2144 | "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", 2145 | "integrity": "sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE=", 2146 | "dev": true 2147 | }, 2148 | "isexe": { 2149 | "version": "2.0.0", 2150 | "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", 2151 | "integrity": "sha1-6PvzdNxVb/iUehDcsFctYz8s+hA=" 2152 | }, 2153 | "istanbul-lib-coverage": { 2154 | "version": "3.0.0", 2155 | "resolved": "https://registry.npmjs.org/istanbul-lib-coverage/-/istanbul-lib-coverage-3.0.0.tgz", 2156 | "integrity": "sha512-UiUIqxMgRDET6eR+o5HbfRYP1l0hqkWOs7vNxC/mggutCMUIhWMm8gAHb8tHlyfD3/l6rlgNA5cKdDzEAf6hEg==" 2157 | }, 2158 | "istanbul-lib-instrument": { 2159 | "version": "4.0.3", 2160 | "resolved": "https://registry.npmjs.org/istanbul-lib-instrument/-/istanbul-lib-instrument-4.0.3.tgz", 2161 | "integrity": "sha512-BXgQl9kf4WTCPCCpmFGoJkz/+uhvm7h7PFKUYxh7qarQd3ER33vHG//qaE8eN25l07YqZPpHXU9I09l/RD5aGQ==", 2162 | "requires": { 2163 | "@babel/core": "^7.7.5", 2164 | "@istanbuljs/schema": "^0.1.2", 2165 | "istanbul-lib-coverage": "^3.0.0", 2166 | "semver": "^6.3.0" 2167 | }, 2168 | "dependencies": { 2169 | "semver": { 2170 | "version": "6.3.0", 2171 | "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", 2172 | "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==" 2173 | } 2174 | } 2175 | }, 2176 | "istanbul-lib-report": { 2177 | "version": "3.0.0", 2178 | "resolved": "https://registry.npmjs.org/istanbul-lib-report/-/istanbul-lib-report-3.0.0.tgz", 2179 | "integrity": "sha512-wcdi+uAKzfiGT2abPpKZ0hSU1rGQjUQnLvtY5MpQ7QCTahD3VODhcu4wcfY1YtkGaDD5yuydOLINXsfbus9ROw==", 2180 | "requires": { 2181 | "istanbul-lib-coverage": "^3.0.0", 2182 | "make-dir": "^3.0.0", 2183 | "supports-color": "^7.1.0" 2184 | }, 2185 | "dependencies": { 2186 | "has-flag": { 2187 | "version": "4.0.0", 2188 | "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", 2189 | "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==" 2190 | }, 2191 | "supports-color": { 2192 | "version": "7.2.0", 2193 | "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", 2194 | "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", 2195 | "requires": { 2196 | "has-flag": "^4.0.0" 2197 | } 2198 | } 2199 | } 2200 | }, 2201 | "istanbul-lib-source-maps": { 2202 | "version": "4.0.0", 2203 | "resolved": "https://registry.npmjs.org/istanbul-lib-source-maps/-/istanbul-lib-source-maps-4.0.0.tgz", 2204 | "integrity": "sha512-c16LpFRkR8vQXyHZ5nLpY35JZtzj1PQY1iZmesUbf1FZHbIupcWfjgOXBY9YHkLEQ6puz1u4Dgj6qmU/DisrZg==", 2205 | "requires": { 2206 | "debug": "^4.1.1", 2207 | "istanbul-lib-coverage": "^3.0.0", 2208 | "source-map": "^0.6.1" 2209 | }, 2210 | "dependencies": { 2211 | "debug": { 2212 | "version": "4.3.1", 2213 | "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.1.tgz", 2214 | "integrity": "sha512-doEwdvm4PCeK4K3RQN2ZC2BYUBaxwLARCqZmMjtF8a51J2Rb0xpVloFRnCODwqjpwnAoao4pelN8l3RJdv3gRQ==", 2215 | "requires": { 2216 | "ms": "2.1.2" 2217 | } 2218 | }, 2219 | "ms": { 2220 | "version": "2.1.2", 2221 | "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", 2222 | "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==" 2223 | }, 2224 | "source-map": { 2225 | "version": "0.6.1", 2226 | "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", 2227 | "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==" 2228 | } 2229 | } 2230 | }, 2231 | "istanbul-reports": { 2232 | "version": "3.0.2", 2233 | "resolved": "https://registry.npmjs.org/istanbul-reports/-/istanbul-reports-3.0.2.tgz", 2234 | "integrity": "sha512-9tZvz7AiR3PEDNGiV9vIouQ/EAcqMXFmkcA1CDFTwOB98OZVDL0PH9glHotf5Ugp6GCOTypfzGWI/OqjWNCRUw==", 2235 | "requires": { 2236 | "html-escaper": "^2.0.0", 2237 | "istanbul-lib-report": "^3.0.0" 2238 | } 2239 | }, 2240 | "js-cookie": { 2241 | "version": "2.2.1", 2242 | "resolved": "https://registry.npmjs.org/js-cookie/-/js-cookie-2.2.1.tgz", 2243 | "integrity": "sha512-HvdH2LzI/EAZcUwA8+0nKNtWHqS+ZmijLA30RwZA0bo7ToCckjK5MkGhjED9KoRcXO6BaGI3I9UIzSA1FKFPOQ==" 2244 | }, 2245 | "js-tokens": { 2246 | "version": "4.0.0", 2247 | "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz", 2248 | "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==" 2249 | }, 2250 | "js-yaml": { 2251 | "version": "3.14.1", 2252 | "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-3.14.1.tgz", 2253 | "integrity": "sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g==", 2254 | "dev": true, 2255 | "requires": { 2256 | "argparse": "^1.0.7", 2257 | "esprima": "^4.0.0" 2258 | } 2259 | }, 2260 | "jsesc": { 2261 | "version": "2.5.2", 2262 | "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-2.5.2.tgz", 2263 | "integrity": "sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA==" 2264 | }, 2265 | "json-parse-better-errors": { 2266 | "version": "1.0.2", 2267 | "resolved": "https://registry.npmjs.org/json-parse-better-errors/-/json-parse-better-errors-1.0.2.tgz", 2268 | "integrity": "sha512-mrqyZKfX5EhL7hvqcV6WG1yYjnjeuYDzDhhcAAUrq8Po85NBQBJP+ZDUT75qZQ98IkUoBqdkExkukOU7Ts2wrw==", 2269 | "dev": true 2270 | }, 2271 | "json-schema-traverse": { 2272 | "version": "0.4.1", 2273 | "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", 2274 | "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==", 2275 | "dev": true 2276 | }, 2277 | "json-stable-stringify-without-jsonify": { 2278 | "version": "1.0.1", 2279 | "resolved": "https://registry.npmjs.org/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz", 2280 | "integrity": "sha1-nbe1lJatPzz+8wp1FC0tkwrXJlE=", 2281 | "dev": true 2282 | }, 2283 | "json5": { 2284 | "version": "1.0.1", 2285 | "resolved": "https://registry.npmjs.org/json5/-/json5-1.0.1.tgz", 2286 | "integrity": "sha512-aKS4WQjPenRxiQsC93MNfjx+nbF4PAdYzmd/1JIj8HYzqfbu86beTuNgXDzPknWk0n0uARlyewZo4s++ES36Ow==", 2287 | "dev": true, 2288 | "requires": { 2289 | "minimist": "^1.2.0" 2290 | } 2291 | }, 2292 | "jsonwebtoken": { 2293 | "version": "8.5.1", 2294 | "resolved": "https://registry.npmjs.org/jsonwebtoken/-/jsonwebtoken-8.5.1.tgz", 2295 | "integrity": "sha512-XjwVfRS6jTMsqYs0EsuJ4LGxXV14zQybNd4L2r0UvbVnSF9Af8x7p5MzbJ90Ioz/9TI41/hTCvznF/loiSzn8w==", 2296 | "requires": { 2297 | "jws": "^3.2.2", 2298 | "lodash.includes": "^4.3.0", 2299 | "lodash.isboolean": "^3.0.3", 2300 | "lodash.isinteger": "^4.0.4", 2301 | "lodash.isnumber": "^3.0.3", 2302 | "lodash.isplainobject": "^4.0.6", 2303 | "lodash.isstring": "^4.0.1", 2304 | "lodash.once": "^4.0.0", 2305 | "ms": "^2.1.1", 2306 | "semver": "^5.6.0" 2307 | }, 2308 | "dependencies": { 2309 | "ms": { 2310 | "version": "2.1.3", 2311 | "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", 2312 | "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==" 2313 | }, 2314 | "semver": { 2315 | "version": "5.7.1", 2316 | "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", 2317 | "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==" 2318 | } 2319 | } 2320 | }, 2321 | "jsx-ast-utils": { 2322 | "version": "3.2.0", 2323 | "resolved": "https://registry.npmjs.org/jsx-ast-utils/-/jsx-ast-utils-3.2.0.tgz", 2324 | "integrity": "sha512-EIsmt3O3ljsU6sot/J4E1zDRxfBNrhjyf/OKjlydwgEimQuznlM4Wv7U+ueONJMyEn1WRE0K8dhi3dVAXYT24Q==", 2325 | "dev": true, 2326 | "requires": { 2327 | "array-includes": "^3.1.2", 2328 | "object.assign": "^4.1.2" 2329 | } 2330 | }, 2331 | "jwa": { 2332 | "version": "1.4.1", 2333 | "resolved": "https://registry.npmjs.org/jwa/-/jwa-1.4.1.tgz", 2334 | "integrity": "sha512-qiLX/xhEEFKUAJ6FiBMbes3w9ATzyk5W7Hvzpa/SLYdxNtng+gcurvrI7TbACjIXlsJyr05/S1oUhZrc63evQA==", 2335 | "requires": { 2336 | "buffer-equal-constant-time": "1.0.1", 2337 | "ecdsa-sig-formatter": "1.0.11", 2338 | "safe-buffer": "^5.0.1" 2339 | } 2340 | }, 2341 | "jwks-rsa": { 2342 | "version": "1.12.1", 2343 | "resolved": "https://registry.npmjs.org/jwks-rsa/-/jwks-rsa-1.12.1.tgz", 2344 | "integrity": "sha512-N7RsfrzK3+S+SqKEEhWF7Ak87Gzg0KcZq/f8h0VqL2ur3nTB6pi5J12uelGAzB3VfhWQI+zfolHE2XDu/EI7Hg==", 2345 | "requires": { 2346 | "@types/express-jwt": "0.0.42", 2347 | "axios": "^0.21.1", 2348 | "debug": "^4.1.0", 2349 | "http-proxy-agent": "^4.0.1", 2350 | "https-proxy-agent": "^5.0.0", 2351 | "jsonwebtoken": "^8.5.1", 2352 | "limiter": "^1.1.5", 2353 | "lru-memoizer": "^2.1.2", 2354 | "ms": "^2.1.2", 2355 | "proxy-from-env": "^1.1.0" 2356 | }, 2357 | "dependencies": { 2358 | "debug": { 2359 | "version": "4.3.1", 2360 | "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.1.tgz", 2361 | "integrity": "sha512-doEwdvm4PCeK4K3RQN2ZC2BYUBaxwLARCqZmMjtF8a51J2Rb0xpVloFRnCODwqjpwnAoao4pelN8l3RJdv3gRQ==", 2362 | "requires": { 2363 | "ms": "2.1.2" 2364 | }, 2365 | "dependencies": { 2366 | "ms": { 2367 | "version": "2.1.2", 2368 | "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", 2369 | "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==" 2370 | } 2371 | } 2372 | }, 2373 | "ms": { 2374 | "version": "2.1.3", 2375 | "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", 2376 | "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==" 2377 | } 2378 | } 2379 | }, 2380 | "jws": { 2381 | "version": "3.2.2", 2382 | "resolved": "https://registry.npmjs.org/jws/-/jws-3.2.2.tgz", 2383 | "integrity": "sha512-YHlZCB6lMTllWDtSPHz/ZXTsi8S00usEV6v1tjq8tOUZzw7DpSDWVXjXDre6ed1w/pd495ODpHZYSdkRTsa0HA==", 2384 | "requires": { 2385 | "jwa": "^1.4.1", 2386 | "safe-buffer": "^5.0.1" 2387 | } 2388 | }, 2389 | "karma-coverage": { 2390 | "version": "2.0.3", 2391 | "resolved": "https://registry.npmjs.org/karma-coverage/-/karma-coverage-2.0.3.tgz", 2392 | "integrity": "sha512-atDvLQqvPcLxhED0cmXYdsPMCQuh6Asa9FMZW1bhNqlVEhJoB9qyZ2BY1gu7D/rr5GLGb5QzYO4siQskxaWP/g==", 2393 | "requires": { 2394 | "istanbul-lib-coverage": "^3.0.0", 2395 | "istanbul-lib-instrument": "^4.0.1", 2396 | "istanbul-lib-report": "^3.0.0", 2397 | "istanbul-lib-source-maps": "^4.0.0", 2398 | "istanbul-reports": "^3.0.0", 2399 | "minimatch": "^3.0.4" 2400 | } 2401 | }, 2402 | "levn": { 2403 | "version": "0.4.1", 2404 | "resolved": "https://registry.npmjs.org/levn/-/levn-0.4.1.tgz", 2405 | "integrity": "sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==", 2406 | "dev": true, 2407 | "requires": { 2408 | "prelude-ls": "^1.2.1", 2409 | "type-check": "~0.4.0" 2410 | } 2411 | }, 2412 | "limiter": { 2413 | "version": "1.1.5", 2414 | "resolved": "https://registry.npmjs.org/limiter/-/limiter-1.1.5.tgz", 2415 | "integrity": "sha512-FWWMIEOxz3GwUI4Ts/IvgVy6LPvoMPgjMdQ185nN6psJyBJ4yOpzqm695/h5umdLJg2vW3GR5iG11MAkR2AzJA==" 2416 | }, 2417 | "load-json-file": { 2418 | "version": "2.0.0", 2419 | "resolved": "https://registry.npmjs.org/load-json-file/-/load-json-file-2.0.0.tgz", 2420 | "integrity": "sha1-eUfkIUmvgNaWy/eXvKq8/h/inKg=", 2421 | "dev": true, 2422 | "requires": { 2423 | "graceful-fs": "^4.1.2", 2424 | "parse-json": "^2.2.0", 2425 | "pify": "^2.0.0", 2426 | "strip-bom": "^3.0.0" 2427 | } 2428 | }, 2429 | "locate-path": { 2430 | "version": "2.0.0", 2431 | "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-2.0.0.tgz", 2432 | "integrity": "sha1-K1aLJl7slExtnA3pw9u7ygNUzY4=", 2433 | "dev": true, 2434 | "requires": { 2435 | "p-locate": "^2.0.0", 2436 | "path-exists": "^3.0.0" 2437 | } 2438 | }, 2439 | "lodash": { 2440 | "version": "4.17.21", 2441 | "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz", 2442 | "integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==" 2443 | }, 2444 | "lodash.clonedeep": { 2445 | "version": "4.5.0", 2446 | "resolved": "https://registry.npmjs.org/lodash.clonedeep/-/lodash.clonedeep-4.5.0.tgz", 2447 | "integrity": "sha1-4j8/nE+Pvd6HJSnBBxhXoIblzO8=" 2448 | }, 2449 | "lodash.includes": { 2450 | "version": "4.3.0", 2451 | "resolved": "https://registry.npmjs.org/lodash.includes/-/lodash.includes-4.3.0.tgz", 2452 | "integrity": "sha1-YLuYqHy5I8aMoeUTJUgzFISfVT8=" 2453 | }, 2454 | "lodash.isboolean": { 2455 | "version": "3.0.3", 2456 | "resolved": "https://registry.npmjs.org/lodash.isboolean/-/lodash.isboolean-3.0.3.tgz", 2457 | "integrity": "sha1-bC4XHbKiV82WgC/UOwGyDV9YcPY=" 2458 | }, 2459 | "lodash.isinteger": { 2460 | "version": "4.0.4", 2461 | "resolved": "https://registry.npmjs.org/lodash.isinteger/-/lodash.isinteger-4.0.4.tgz", 2462 | "integrity": "sha1-YZwK89A/iwTDH1iChAt3sRzWg0M=" 2463 | }, 2464 | "lodash.isnumber": { 2465 | "version": "3.0.3", 2466 | "resolved": "https://registry.npmjs.org/lodash.isnumber/-/lodash.isnumber-3.0.3.tgz", 2467 | "integrity": "sha1-POdoEMWSjQM1IwGsKHMX8RwLH/w=" 2468 | }, 2469 | "lodash.isplainobject": { 2470 | "version": "4.0.6", 2471 | "resolved": "https://registry.npmjs.org/lodash.isplainobject/-/lodash.isplainobject-4.0.6.tgz", 2472 | "integrity": "sha1-fFJqUtibRcRcxpC4gWO+BJf1UMs=" 2473 | }, 2474 | "lodash.isstring": { 2475 | "version": "4.0.1", 2476 | "resolved": "https://registry.npmjs.org/lodash.isstring/-/lodash.isstring-4.0.1.tgz", 2477 | "integrity": "sha1-1SfftUVuynzJu5XV2ur4i6VKVFE=" 2478 | }, 2479 | "lodash.once": { 2480 | "version": "4.1.1", 2481 | "resolved": "https://registry.npmjs.org/lodash.once/-/lodash.once-4.1.1.tgz", 2482 | "integrity": "sha1-DdOXEhPHxW34gJd9UEyI+0cal6w=" 2483 | }, 2484 | "loose-envify": { 2485 | "version": "1.4.0", 2486 | "resolved": "https://registry.npmjs.org/loose-envify/-/loose-envify-1.4.0.tgz", 2487 | "integrity": "sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==", 2488 | "dev": true, 2489 | "requires": { 2490 | "js-tokens": "^3.0.0 || ^4.0.0" 2491 | } 2492 | }, 2493 | "lru-cache": { 2494 | "version": "6.0.0", 2495 | "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", 2496 | "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", 2497 | "requires": { 2498 | "yallist": "^4.0.0" 2499 | } 2500 | }, 2501 | "lru-memoizer": { 2502 | "version": "2.1.4", 2503 | "resolved": "https://registry.npmjs.org/lru-memoizer/-/lru-memoizer-2.1.4.tgz", 2504 | "integrity": "sha512-IXAq50s4qwrOBrXJklY+KhgZF+5y98PDaNo0gi/v2KQBFLyWr+JyFvijZXkGKjQj/h9c0OwoE+JZbwUXce76hQ==", 2505 | "requires": { 2506 | "lodash.clonedeep": "^4.5.0", 2507 | "lru-cache": "~4.0.0" 2508 | }, 2509 | "dependencies": { 2510 | "lru-cache": { 2511 | "version": "4.0.2", 2512 | "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-4.0.2.tgz", 2513 | "integrity": "sha1-HRdnnAac2l0ECZGgnbwsDbN35V4=", 2514 | "requires": { 2515 | "pseudomap": "^1.0.1", 2516 | "yallist": "^2.0.0" 2517 | } 2518 | }, 2519 | "yallist": { 2520 | "version": "2.1.2", 2521 | "resolved": "https://registry.npmjs.org/yallist/-/yallist-2.1.2.tgz", 2522 | "integrity": "sha1-HBH5IY8HYImkfdUS+TxmmaaoHVI=" 2523 | } 2524 | } 2525 | }, 2526 | "make-dir": { 2527 | "version": "3.1.0", 2528 | "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-3.1.0.tgz", 2529 | "integrity": "sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw==", 2530 | "requires": { 2531 | "semver": "^6.0.0" 2532 | }, 2533 | "dependencies": { 2534 | "semver": { 2535 | "version": "6.3.0", 2536 | "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", 2537 | "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==" 2538 | } 2539 | } 2540 | }, 2541 | "make-fetch-happen": { 2542 | "version": "9.1.0", 2543 | "resolved": "https://registry.npmjs.org/make-fetch-happen/-/make-fetch-happen-9.1.0.tgz", 2544 | "integrity": "sha512-+zopwDy7DNknmwPQplem5lAZX/eCOzSvSNNcSKm5eVwTkOBzoktEfXsa9L23J/GIRhxRsaxzkPEhrJEpE2F4Gg==", 2545 | "optional": true, 2546 | "requires": { 2547 | "agentkeepalive": "^4.1.3", 2548 | "cacache": "^15.2.0", 2549 | "http-cache-semantics": "^4.1.0", 2550 | "http-proxy-agent": "^4.0.1", 2551 | "https-proxy-agent": "^5.0.0", 2552 | "is-lambda": "^1.0.1", 2553 | "lru-cache": "^6.0.0", 2554 | "minipass": "^3.1.3", 2555 | "minipass-collect": "^1.0.2", 2556 | "minipass-fetch": "^1.3.2", 2557 | "minipass-flush": "^1.0.5", 2558 | "minipass-pipeline": "^1.2.4", 2559 | "negotiator": "^0.6.2", 2560 | "promise-retry": "^2.0.1", 2561 | "socks-proxy-agent": "^6.0.0", 2562 | "ssri": "^8.0.0" 2563 | } 2564 | }, 2565 | "media-typer": { 2566 | "version": "0.3.0", 2567 | "resolved": "https://registry.npmjs.org/media-typer/-/media-typer-0.3.0.tgz", 2568 | "integrity": "sha1-hxDXrwqmJvj/+hzgAWhUUmMlV0g=" 2569 | }, 2570 | "merge-descriptors": { 2571 | "version": "1.0.1", 2572 | "resolved": "https://registry.npmjs.org/merge-descriptors/-/merge-descriptors-1.0.1.tgz", 2573 | "integrity": "sha1-sAqqVW3YtEVoFQ7J0blT8/kMu2E=" 2574 | }, 2575 | "methods": { 2576 | "version": "1.1.2", 2577 | "resolved": "https://registry.npmjs.org/methods/-/methods-1.1.2.tgz", 2578 | "integrity": "sha1-VSmk1nZUE07cxSZmVoNbD4Ua/O4=" 2579 | }, 2580 | "mime": { 2581 | "version": "1.6.0", 2582 | "resolved": "https://registry.npmjs.org/mime/-/mime-1.6.0.tgz", 2583 | "integrity": "sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==" 2584 | }, 2585 | "mime-db": { 2586 | "version": "1.47.0", 2587 | "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.47.0.tgz", 2588 | "integrity": "sha512-QBmA/G2y+IfeS4oktet3qRZ+P5kPhCKRXxXnQEudYqUaEioAU1/Lq2us3D/t1Jfo4hE9REQPrbB7K5sOczJVIw==" 2589 | }, 2590 | "mime-types": { 2591 | "version": "2.1.30", 2592 | "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.30.tgz", 2593 | "integrity": "sha512-crmjA4bLtR8m9qLpHvgxSChT+XoSlZi8J4n/aIdn3z92e/U47Z0V/yl+Wh9W046GgFVAmoNR/fmdbZYcSSIUeg==", 2594 | "requires": { 2595 | "mime-db": "1.47.0" 2596 | } 2597 | }, 2598 | "minimatch": { 2599 | "version": "3.0.4", 2600 | "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.0.4.tgz", 2601 | "integrity": "sha512-yJHVQEhyqPLUTgt9B83PXu6W3rx4MvvHvSUvToogpwoGDOUQ+yDrR0HRot+yOCdCO7u4hX3pWft6kWBBcqh0UA==", 2602 | "requires": { 2603 | "brace-expansion": "^1.1.7" 2604 | } 2605 | }, 2606 | "minimist": { 2607 | "version": "1.2.6", 2608 | "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.6.tgz", 2609 | "integrity": "sha512-Jsjnk4bw3YJqYzbdyBiNsPWHPfO++UGG749Cxs6peCu5Xg4nrena6OVxOYxrQTqww0Jmwt+Ref8rggumkTLz9Q==" 2610 | }, 2611 | "minipass": { 2612 | "version": "3.1.6", 2613 | "resolved": "https://registry.npmjs.org/minipass/-/minipass-3.1.6.tgz", 2614 | "integrity": "sha512-rty5kpw9/z8SX9dmxblFA6edItUmwJgMeYDZRrwlIVN27i8gysGbznJwUggw2V/FVqFSDdWy040ZPS811DYAqQ==", 2615 | "requires": { 2616 | "yallist": "^4.0.0" 2617 | } 2618 | }, 2619 | "minipass-collect": { 2620 | "version": "1.0.2", 2621 | "resolved": "https://registry.npmjs.org/minipass-collect/-/minipass-collect-1.0.2.tgz", 2622 | "integrity": "sha512-6T6lH0H8OG9kITm/Jm6tdooIbogG9e0tLgpY6mphXSm/A9u8Nq1ryBG+Qspiub9LjWlBPsPS3tWQ/Botq4FdxA==", 2623 | "optional": true, 2624 | "requires": { 2625 | "minipass": "^3.0.0" 2626 | } 2627 | }, 2628 | "minipass-fetch": { 2629 | "version": "1.4.1", 2630 | "resolved": "https://registry.npmjs.org/minipass-fetch/-/minipass-fetch-1.4.1.tgz", 2631 | "integrity": "sha512-CGH1eblLq26Y15+Azk7ey4xh0J/XfJfrCox5LDJiKqI2Q2iwOLOKrlmIaODiSQS8d18jalF6y2K2ePUm0CmShw==", 2632 | "optional": true, 2633 | "requires": { 2634 | "encoding": "^0.1.12", 2635 | "minipass": "^3.1.0", 2636 | "minipass-sized": "^1.0.3", 2637 | "minizlib": "^2.0.0" 2638 | } 2639 | }, 2640 | "minipass-flush": { 2641 | "version": "1.0.5", 2642 | "resolved": "https://registry.npmjs.org/minipass-flush/-/minipass-flush-1.0.5.tgz", 2643 | "integrity": "sha512-JmQSYYpPUqX5Jyn1mXaRwOda1uQ8HP5KAT/oDSLCzt1BYRhQU0/hDtsB1ufZfEEzMZ9aAVmsBw8+FWsIXlClWw==", 2644 | "optional": true, 2645 | "requires": { 2646 | "minipass": "^3.0.0" 2647 | } 2648 | }, 2649 | "minipass-pipeline": { 2650 | "version": "1.2.4", 2651 | "resolved": "https://registry.npmjs.org/minipass-pipeline/-/minipass-pipeline-1.2.4.tgz", 2652 | "integrity": "sha512-xuIq7cIOt09RPRJ19gdi4b+RiNvDFYe5JH+ggNvBqGqpQXcru3PcRmOZuHBKWK1Txf9+cQ+HMVN4d6z46LZP7A==", 2653 | "optional": true, 2654 | "requires": { 2655 | "minipass": "^3.0.0" 2656 | } 2657 | }, 2658 | "minipass-sized": { 2659 | "version": "1.0.3", 2660 | "resolved": "https://registry.npmjs.org/minipass-sized/-/minipass-sized-1.0.3.tgz", 2661 | "integrity": "sha512-MbkQQ2CTiBMlA2Dm/5cY+9SWFEN8pzzOXi6rlM5Xxq0Yqbda5ZQy9sU75a673FE9ZK0Zsbr6Y5iP6u9nktfg2g==", 2662 | "optional": true, 2663 | "requires": { 2664 | "minipass": "^3.0.0" 2665 | } 2666 | }, 2667 | "minizlib": { 2668 | "version": "2.1.2", 2669 | "resolved": "https://registry.npmjs.org/minizlib/-/minizlib-2.1.2.tgz", 2670 | "integrity": "sha512-bAxsR8BVfj60DWXHE3u30oHzfl4G7khkSuPW+qvpd7jFRHm7dLxOjUk1EHACJ/hxLY8phGJ0YhYHZo7jil7Qdg==", 2671 | "requires": { 2672 | "minipass": "^3.0.0", 2673 | "yallist": "^4.0.0" 2674 | } 2675 | }, 2676 | "mkdirp": { 2677 | "version": "0.5.5", 2678 | "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.5.tgz", 2679 | "integrity": "sha512-NKmAlESf6jMGym1++R0Ra7wvhV+wFW63FaSOFPwRahvea0gMUcGUhVeAg/0BC0wiv9ih5NYPB1Wn1UEI1/L+xQ==", 2680 | "dev": true, 2681 | "requires": { 2682 | "minimist": "^1.2.5" 2683 | } 2684 | }, 2685 | "moment": { 2686 | "version": "2.29.4", 2687 | "resolved": "https://registry.npmjs.org/moment/-/moment-2.29.4.tgz", 2688 | "integrity": "sha512-5LC9SOxjSc2HF6vO2CyuTDNivEdoz2IvyJJGj6X8DJ0eFyfszE0QiEd+iXmBvUP3WHxSjFH/vIsA0EN00cgr8w==" 2689 | }, 2690 | "moment-timezone": { 2691 | "version": "0.5.40", 2692 | "resolved": "https://registry.npmjs.org/moment-timezone/-/moment-timezone-0.5.40.tgz", 2693 | "integrity": "sha512-tWfmNkRYmBkPJz5mr9GVDn9vRlVZOTe6yqY92rFxiOdWXbjaR0+9LwQnZGGuNR63X456NqmEkbskte8tWL5ePg==", 2694 | "requires": { 2695 | "moment": ">= 2.9.0" 2696 | } 2697 | }, 2698 | "ms": { 2699 | "version": "2.0.0", 2700 | "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", 2701 | "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=" 2702 | }, 2703 | "natural-compare": { 2704 | "version": "1.4.0", 2705 | "resolved": "https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz", 2706 | "integrity": "sha1-Sr6/7tdUHywnrPspvbvRXI1bpPc=", 2707 | "dev": true 2708 | }, 2709 | "negotiator": { 2710 | "version": "0.6.2", 2711 | "resolved": "https://registry.npmjs.org/negotiator/-/negotiator-0.6.2.tgz", 2712 | "integrity": "sha512-hZXc7K2e+PgeI1eDBe/10Ard4ekbfrrqG8Ep+8Jmf4JID2bNg7NvCPOZN+kfF574pFQI7mum2AUqDidoKqcTOw==" 2713 | }, 2714 | "njwt": { 2715 | "version": "1.0.0", 2716 | "resolved": "https://registry.npmjs.org/njwt/-/njwt-1.0.0.tgz", 2717 | "integrity": "sha512-n+FaPUauVQF/So+YcOACBb/zCxDH5WlCV3dTrX0u7VMGagjDiI39XRJWaPd2PtpT6IpIQUcd7x0twiRZaIQNDQ==", 2718 | "requires": { 2719 | "ecdsa-sig-formatter": "^1.0.5", 2720 | "uuid": "^3.3.2" 2721 | }, 2722 | "dependencies": { 2723 | "uuid": { 2724 | "version": "3.4.0", 2725 | "resolved": "https://registry.npmjs.org/uuid/-/uuid-3.4.0.tgz", 2726 | "integrity": "sha512-HjSDRw6gZE5JMggctHBcjVak08+KEVhSIiDzFnT9S9aegmp85S/bReBVTb4QTFaRNptJ9kuYaNhnbNEOkbKb/A==" 2727 | } 2728 | } 2729 | }, 2730 | "node-addon-api": { 2731 | "version": "4.3.0", 2732 | "resolved": "https://registry.npmjs.org/node-addon-api/-/node-addon-api-4.3.0.tgz", 2733 | "integrity": "sha512-73sE9+3UaLYYFmDsFZnqCInzPyh3MqIwZO9cw58yIqAZhONrrabrYyYe3TuIqtIiOuTXVhsGau8hcrhhwSsDIQ==" 2734 | }, 2735 | "node-cache": { 2736 | "version": "5.1.2", 2737 | "resolved": "https://registry.npmjs.org/node-cache/-/node-cache-5.1.2.tgz", 2738 | "integrity": "sha512-t1QzWwnk4sjLWaQAS8CHgOJ+RAfmHpxFWmc36IWTiWHQfs0w5JDMBS1b1ZxQteo0vVVuWJvIUKHDkkeK7vIGCg==", 2739 | "requires": { 2740 | "clone": "2.x" 2741 | } 2742 | }, 2743 | "node-fetch": { 2744 | "version": "2.6.7", 2745 | "resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-2.6.7.tgz", 2746 | "integrity": "sha512-ZjMPFEfVx5j+y2yF35Kzx5sF7kDzxuDj6ziH4FFbOp87zKDZNx8yExJIb05OGF4Nlt9IHFIMBkRl41VdvcNdbQ==", 2747 | "requires": { 2748 | "whatwg-url": "^5.0.0" 2749 | } 2750 | }, 2751 | "node-gyp": { 2752 | "version": "8.4.1", 2753 | "resolved": "https://registry.npmjs.org/node-gyp/-/node-gyp-8.4.1.tgz", 2754 | "integrity": "sha512-olTJRgUtAb/hOXG0E93wZDs5YiJlgbXxTwQAFHyNlRsXQnYzUaF2aGgujZbw+hR8aF4ZG/rST57bWMWD16jr9w==", 2755 | "optional": true, 2756 | "requires": { 2757 | "env-paths": "^2.2.0", 2758 | "glob": "^7.1.4", 2759 | "graceful-fs": "^4.2.6", 2760 | "make-fetch-happen": "^9.1.0", 2761 | "nopt": "^5.0.0", 2762 | "npmlog": "^6.0.0", 2763 | "rimraf": "^3.0.2", 2764 | "semver": "^7.3.5", 2765 | "tar": "^6.1.2", 2766 | "which": "^2.0.2" 2767 | }, 2768 | "dependencies": { 2769 | "are-we-there-yet": { 2770 | "version": "3.0.0", 2771 | "resolved": "https://registry.npmjs.org/are-we-there-yet/-/are-we-there-yet-3.0.0.tgz", 2772 | "integrity": "sha512-0GWpv50YSOcLXaN6/FAKY3vfRbllXWV2xvfA/oKJF8pzFhWXPV+yjhJXDBbjscDYowv7Yw1A3uigpzn5iEGTyw==", 2773 | "optional": true, 2774 | "requires": { 2775 | "delegates": "^1.0.0", 2776 | "readable-stream": "^3.6.0" 2777 | } 2778 | }, 2779 | "emoji-regex": { 2780 | "version": "8.0.0", 2781 | "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", 2782 | "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", 2783 | "optional": true 2784 | }, 2785 | "gauge": { 2786 | "version": "4.0.4", 2787 | "resolved": "https://registry.npmjs.org/gauge/-/gauge-4.0.4.tgz", 2788 | "integrity": "sha512-f9m+BEN5jkg6a0fZjleidjN51VE1X+mPFQ2DJ0uv1V39oCLCbsGe6yjbBnp7eK7z/+GAon99a3nHuqbuuthyPg==", 2789 | "optional": true, 2790 | "requires": { 2791 | "aproba": "^1.0.3 || ^2.0.0", 2792 | "color-support": "^1.1.3", 2793 | "console-control-strings": "^1.1.0", 2794 | "has-unicode": "^2.0.1", 2795 | "signal-exit": "^3.0.7", 2796 | "string-width": "^4.2.3", 2797 | "strip-ansi": "^6.0.1", 2798 | "wide-align": "^1.1.5" 2799 | } 2800 | }, 2801 | "is-fullwidth-code-point": { 2802 | "version": "3.0.0", 2803 | "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", 2804 | "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", 2805 | "optional": true 2806 | }, 2807 | "npmlog": { 2808 | "version": "6.0.2", 2809 | "resolved": "https://registry.npmjs.org/npmlog/-/npmlog-6.0.2.tgz", 2810 | "integrity": "sha512-/vBvz5Jfr9dT/aFWd0FIRf+T/Q2WBsLENygUaFUqstqsycmZAP/t5BvFJTK0viFmSUxiUKTUplWy5vt+rvKIxg==", 2811 | "optional": true, 2812 | "requires": { 2813 | "are-we-there-yet": "^3.0.0", 2814 | "console-control-strings": "^1.1.0", 2815 | "gauge": "^4.0.3", 2816 | "set-blocking": "^2.0.0" 2817 | } 2818 | }, 2819 | "rimraf": { 2820 | "version": "3.0.2", 2821 | "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz", 2822 | "integrity": "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==", 2823 | "optional": true, 2824 | "requires": { 2825 | "glob": "^7.1.3" 2826 | } 2827 | }, 2828 | "string-width": { 2829 | "version": "4.2.3", 2830 | "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", 2831 | "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", 2832 | "optional": true, 2833 | "requires": { 2834 | "emoji-regex": "^8.0.0", 2835 | "is-fullwidth-code-point": "^3.0.0", 2836 | "strip-ansi": "^6.0.1" 2837 | } 2838 | }, 2839 | "strip-ansi": { 2840 | "version": "6.0.1", 2841 | "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", 2842 | "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", 2843 | "optional": true, 2844 | "requires": { 2845 | "ansi-regex": "^5.0.1" 2846 | } 2847 | } 2848 | } 2849 | }, 2850 | "node-releases": { 2851 | "version": "1.1.71", 2852 | "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-1.1.71.tgz", 2853 | "integrity": "sha512-zR6HoT6LrLCRBwukmrVbHv0EpEQjksO6GmFcZQQuCAy139BEsoVKPYnf3jongYW83fAa1torLGYwxxky/p28sg==" 2854 | }, 2855 | "nopt": { 2856 | "version": "5.0.0", 2857 | "resolved": "https://registry.npmjs.org/nopt/-/nopt-5.0.0.tgz", 2858 | "integrity": "sha512-Tbj67rffqceeLpcRXrT7vKAN8CwfPeIBgM7E6iBkmKLV7bEMwpGgYLGv0jACUsECaa/vuxP0IjEont6umdMgtQ==", 2859 | "requires": { 2860 | "abbrev": "1" 2861 | } 2862 | }, 2863 | "normalize-package-data": { 2864 | "version": "2.5.0", 2865 | "resolved": "https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-2.5.0.tgz", 2866 | "integrity": "sha512-/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA==", 2867 | "dev": true, 2868 | "requires": { 2869 | "hosted-git-info": "^2.1.4", 2870 | "resolve": "^1.10.0", 2871 | "semver": "2 || 3 || 4 || 5", 2872 | "validate-npm-package-license": "^3.0.1" 2873 | }, 2874 | "dependencies": { 2875 | "semver": { 2876 | "version": "5.7.1", 2877 | "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", 2878 | "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==", 2879 | "dev": true 2880 | } 2881 | } 2882 | }, 2883 | "npmlog": { 2884 | "version": "5.0.1", 2885 | "resolved": "https://registry.npmjs.org/npmlog/-/npmlog-5.0.1.tgz", 2886 | "integrity": "sha512-AqZtDUWOMKs1G/8lwylVjrdYgqA4d9nu8hc+0gzRxlDb1I10+FHBGMXs6aiQHFdCUUlqH99MUMuLfzWDNDtfxw==", 2887 | "requires": { 2888 | "are-we-there-yet": "^2.0.0", 2889 | "console-control-strings": "^1.1.0", 2890 | "gauge": "^3.0.0", 2891 | "set-blocking": "^2.0.0" 2892 | } 2893 | }, 2894 | "object-assign": { 2895 | "version": "4.1.1", 2896 | "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz", 2897 | "integrity": "sha1-IQmtx5ZYh8/AXLvUQsrIv7s2CGM=" 2898 | }, 2899 | "object-inspect": { 2900 | "version": "1.9.0", 2901 | "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.9.0.tgz", 2902 | "integrity": "sha512-i3Bp9iTqwhaLZBxGkRfo5ZbE07BQRT7MGu8+nNgwW9ItGp1TzCTw2DLEoWwjClxBjOFI/hWljTAmYGCEwmtnOw==" 2903 | }, 2904 | "object-keys": { 2905 | "version": "1.1.1", 2906 | "resolved": "https://registry.npmjs.org/object-keys/-/object-keys-1.1.1.tgz", 2907 | "integrity": "sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==" 2908 | }, 2909 | "object.assign": { 2910 | "version": "4.1.2", 2911 | "resolved": "https://registry.npmjs.org/object.assign/-/object.assign-4.1.2.tgz", 2912 | "integrity": "sha512-ixT2L5THXsApyiUPYKmW+2EHpXXe5Ii3M+f4e+aJFAHao5amFRW6J0OO6c/LU8Be47utCx2GL89hxGB6XSmKuQ==", 2913 | "requires": { 2914 | "call-bind": "^1.0.0", 2915 | "define-properties": "^1.1.3", 2916 | "has-symbols": "^1.0.1", 2917 | "object-keys": "^1.1.1" 2918 | } 2919 | }, 2920 | "object.entries": { 2921 | "version": "1.1.3", 2922 | "resolved": "https://registry.npmjs.org/object.entries/-/object.entries-1.1.3.tgz", 2923 | "integrity": "sha512-ym7h7OZebNS96hn5IJeyUmaWhaSM4SVtAPPfNLQEI2MYWCO2egsITb9nab2+i/Pwibx+R0mtn+ltKJXRSeTMGg==", 2924 | "dev": true, 2925 | "requires": { 2926 | "call-bind": "^1.0.0", 2927 | "define-properties": "^1.1.3", 2928 | "es-abstract": "^1.18.0-next.1", 2929 | "has": "^1.0.3" 2930 | } 2931 | }, 2932 | "object.fromentries": { 2933 | "version": "2.0.4", 2934 | "resolved": "https://registry.npmjs.org/object.fromentries/-/object.fromentries-2.0.4.tgz", 2935 | "integrity": "sha512-EsFBshs5RUUpQEY1D4q/m59kMfz4YJvxuNCJcv/jWwOJr34EaVnG11ZrZa0UHB3wnzV1wx8m58T4hQL8IuNXlQ==", 2936 | "dev": true, 2937 | "requires": { 2938 | "call-bind": "^1.0.2", 2939 | "define-properties": "^1.1.3", 2940 | "es-abstract": "^1.18.0-next.2", 2941 | "has": "^1.0.3" 2942 | } 2943 | }, 2944 | "object.values": { 2945 | "version": "1.1.3", 2946 | "resolved": "https://registry.npmjs.org/object.values/-/object.values-1.1.3.tgz", 2947 | "integrity": "sha512-nkF6PfDB9alkOUxpf1HNm/QlkeW3SReqL5WXeBLpEJJnlPSvRaDQpW3gQTksTN3fgJX4hL42RzKyOin6ff3tyw==", 2948 | "dev": true, 2949 | "requires": { 2950 | "call-bind": "^1.0.2", 2951 | "define-properties": "^1.1.3", 2952 | "es-abstract": "^1.18.0-next.2", 2953 | "has": "^1.0.3" 2954 | } 2955 | }, 2956 | "on-finished": { 2957 | "version": "2.3.0", 2958 | "resolved": "https://registry.npmjs.org/on-finished/-/on-finished-2.3.0.tgz", 2959 | "integrity": "sha1-IPEzZIGwg811M3mSoWlxqi2QaUc=", 2960 | "requires": { 2961 | "ee-first": "1.1.1" 2962 | } 2963 | }, 2964 | "once": { 2965 | "version": "1.4.0", 2966 | "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", 2967 | "integrity": "sha1-WDsap3WWHUsROsF9nFC6753Xa9E=", 2968 | "requires": { 2969 | "wrappy": "1" 2970 | } 2971 | }, 2972 | "optionator": { 2973 | "version": "0.9.1", 2974 | "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.9.1.tgz", 2975 | "integrity": "sha512-74RlY5FCnhq4jRxVUPKDaRwrVNXMqsGsiW6AJw4XK8hmtm10wC0ypZBLw5IIp85NZMr91+qd1RvvENwg7jjRFw==", 2976 | "dev": true, 2977 | "requires": { 2978 | "deep-is": "^0.1.3", 2979 | "fast-levenshtein": "^2.0.6", 2980 | "levn": "^0.4.1", 2981 | "prelude-ls": "^1.2.1", 2982 | "type-check": "^0.4.0", 2983 | "word-wrap": "^1.2.3" 2984 | } 2985 | }, 2986 | "p-cancelable": { 2987 | "version": "2.1.0", 2988 | "resolved": "https://registry.npmjs.org/p-cancelable/-/p-cancelable-2.1.0.tgz", 2989 | "integrity": "sha512-HAZyB3ZodPo+BDpb4/Iu7Jv4P6cSazBz9ZM0ChhEXp70scx834aWCEjQRwgt41UzzejUAPdbqqONfRWTPYrPAQ==" 2990 | }, 2991 | "p-limit": { 2992 | "version": "1.3.0", 2993 | "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-1.3.0.tgz", 2994 | "integrity": "sha512-vvcXsLAJ9Dr5rQOPk7toZQZJApBl2K4J6dANSsEuh6QI41JYcsS/qhTGa9ErIUUgK3WNQoJYvylxvjqmiqEA9Q==", 2995 | "dev": true, 2996 | "requires": { 2997 | "p-try": "^1.0.0" 2998 | } 2999 | }, 3000 | "p-locate": { 3001 | "version": "2.0.0", 3002 | "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-2.0.0.tgz", 3003 | "integrity": "sha1-IKAQOyIqcMj9OcwuWAaA893l7EM=", 3004 | "dev": true, 3005 | "requires": { 3006 | "p-limit": "^1.1.0" 3007 | } 3008 | }, 3009 | "p-map": { 3010 | "version": "4.0.0", 3011 | "resolved": "https://registry.npmjs.org/p-map/-/p-map-4.0.0.tgz", 3012 | "integrity": "sha512-/bjOqmgETBYB5BoEeGVea8dmvHb2m9GLy1E9W43yeyfP6QQCZGFNa+XRceJEuDB6zqr+gKpIAmlLebMpykw/MQ==", 3013 | "optional": true, 3014 | "requires": { 3015 | "aggregate-error": "^3.0.0" 3016 | } 3017 | }, 3018 | "p-try": { 3019 | "version": "1.0.0", 3020 | "resolved": "https://registry.npmjs.org/p-try/-/p-try-1.0.0.tgz", 3021 | "integrity": "sha1-y8ec26+P1CKOE/Yh8rGiN8GyB7M=", 3022 | "dev": true 3023 | }, 3024 | "parent-module": { 3025 | "version": "1.0.1", 3026 | "resolved": "https://registry.npmjs.org/parent-module/-/parent-module-1.0.1.tgz", 3027 | "integrity": "sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==", 3028 | "dev": true, 3029 | "requires": { 3030 | "callsites": "^3.0.0" 3031 | } 3032 | }, 3033 | "parse-json": { 3034 | "version": "2.2.0", 3035 | "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-2.2.0.tgz", 3036 | "integrity": "sha1-9ID0BDTvgHQfhGkJn43qGPVaTck=", 3037 | "dev": true, 3038 | "requires": { 3039 | "error-ex": "^1.2.0" 3040 | } 3041 | }, 3042 | "parseurl": { 3043 | "version": "1.3.3", 3044 | "resolved": "https://registry.npmjs.org/parseurl/-/parseurl-1.3.3.tgz", 3045 | "integrity": "sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==" 3046 | }, 3047 | "path-exists": { 3048 | "version": "3.0.0", 3049 | "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-3.0.0.tgz", 3050 | "integrity": "sha1-zg6+ql94yxiSXqfYENe1mwEP1RU=", 3051 | "dev": true 3052 | }, 3053 | "path-is-absolute": { 3054 | "version": "1.0.1", 3055 | "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz", 3056 | "integrity": "sha1-F0uSaHNVNP+8es5r9TpanhtcX18=" 3057 | }, 3058 | "path-key": { 3059 | "version": "3.1.1", 3060 | "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz", 3061 | "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==", 3062 | "dev": true 3063 | }, 3064 | "path-parse": { 3065 | "version": "1.0.7", 3066 | "resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz", 3067 | "integrity": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==", 3068 | "dev": true 3069 | }, 3070 | "path-to-regexp": { 3071 | "version": "0.1.7", 3072 | "resolved": "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-0.1.7.tgz", 3073 | "integrity": "sha1-32BBeABfUi8V60SQ5yR6G/qmf4w=" 3074 | }, 3075 | "path-type": { 3076 | "version": "2.0.0", 3077 | "resolved": "https://registry.npmjs.org/path-type/-/path-type-2.0.0.tgz", 3078 | "integrity": "sha1-8BLMuEFbcJb8LaoQVMPXI4lZTHM=", 3079 | "dev": true, 3080 | "requires": { 3081 | "pify": "^2.0.0" 3082 | } 3083 | }, 3084 | "pg-connection-string": { 3085 | "version": "2.5.0", 3086 | "resolved": "https://registry.npmjs.org/pg-connection-string/-/pg-connection-string-2.5.0.tgz", 3087 | "integrity": "sha512-r5o/V/ORTA6TmUnyWZR9nCj1klXCO2CEKNRlVuJptZe85QuhFayC7WeMic7ndayT5IRIR0S0xFxFi2ousartlQ==" 3088 | }, 3089 | "pify": { 3090 | "version": "2.3.0", 3091 | "resolved": "https://registry.npmjs.org/pify/-/pify-2.3.0.tgz", 3092 | "integrity": "sha1-7RQaasBDqEnqWISY59yosVMw6Qw=", 3093 | "dev": true 3094 | }, 3095 | "pkg-conf": { 3096 | "version": "3.1.0", 3097 | "resolved": "https://registry.npmjs.org/pkg-conf/-/pkg-conf-3.1.0.tgz", 3098 | "integrity": "sha512-m0OTbR/5VPNPqO1ph6Fqbj7Hv6QU7gR/tQW40ZqrL1rjgCU85W6C1bJn0BItuJqnR98PWzw7Z8hHeChD1WrgdQ==", 3099 | "dev": true, 3100 | "requires": { 3101 | "find-up": "^3.0.0", 3102 | "load-json-file": "^5.2.0" 3103 | }, 3104 | "dependencies": { 3105 | "find-up": { 3106 | "version": "3.0.0", 3107 | "resolved": "https://registry.npmjs.org/find-up/-/find-up-3.0.0.tgz", 3108 | "integrity": "sha512-1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg==", 3109 | "dev": true, 3110 | "requires": { 3111 | "locate-path": "^3.0.0" 3112 | } 3113 | }, 3114 | "load-json-file": { 3115 | "version": "5.3.0", 3116 | "resolved": "https://registry.npmjs.org/load-json-file/-/load-json-file-5.3.0.tgz", 3117 | "integrity": "sha512-cJGP40Jc/VXUsp8/OrnyKyTZ1y6v/dphm3bioS+RrKXjK2BB6wHUd6JptZEFDGgGahMT+InnZO5i1Ei9mpC8Bw==", 3118 | "dev": true, 3119 | "requires": { 3120 | "graceful-fs": "^4.1.15", 3121 | "parse-json": "^4.0.0", 3122 | "pify": "^4.0.1", 3123 | "strip-bom": "^3.0.0", 3124 | "type-fest": "^0.3.0" 3125 | } 3126 | }, 3127 | "locate-path": { 3128 | "version": "3.0.0", 3129 | "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-3.0.0.tgz", 3130 | "integrity": "sha512-7AO748wWnIhNqAuaty2ZWHkQHRSNfPVIsPIfwEOWO22AmaoVrWavlOcMR5nzTLNYvp36X220/maaRsrec1G65A==", 3131 | "dev": true, 3132 | "requires": { 3133 | "p-locate": "^3.0.0", 3134 | "path-exists": "^3.0.0" 3135 | } 3136 | }, 3137 | "p-limit": { 3138 | "version": "2.3.0", 3139 | "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz", 3140 | "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==", 3141 | "dev": true, 3142 | "requires": { 3143 | "p-try": "^2.0.0" 3144 | } 3145 | }, 3146 | "p-locate": { 3147 | "version": "3.0.0", 3148 | "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-3.0.0.tgz", 3149 | "integrity": "sha512-x+12w/To+4GFfgJhBEpiDcLozRJGegY+Ei7/z0tSLkMmxGZNybVMSfWj9aJn8Z5Fc7dBUNJOOVgPv2H7IwulSQ==", 3150 | "dev": true, 3151 | "requires": { 3152 | "p-limit": "^2.0.0" 3153 | } 3154 | }, 3155 | "p-try": { 3156 | "version": "2.2.0", 3157 | "resolved": "https://registry.npmjs.org/p-try/-/p-try-2.2.0.tgz", 3158 | "integrity": "sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==", 3159 | "dev": true 3160 | }, 3161 | "parse-json": { 3162 | "version": "4.0.0", 3163 | "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-4.0.0.tgz", 3164 | "integrity": "sha1-vjX1Qlvh9/bHRxhPmKeIy5lHfuA=", 3165 | "dev": true, 3166 | "requires": { 3167 | "error-ex": "^1.3.1", 3168 | "json-parse-better-errors": "^1.0.1" 3169 | } 3170 | }, 3171 | "pify": { 3172 | "version": "4.0.1", 3173 | "resolved": "https://registry.npmjs.org/pify/-/pify-4.0.1.tgz", 3174 | "integrity": "sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g==", 3175 | "dev": true 3176 | }, 3177 | "type-fest": { 3178 | "version": "0.3.1", 3179 | "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.3.1.tgz", 3180 | "integrity": "sha512-cUGJnCdr4STbePCgqNFbpVNCepa+kAVohJs1sLhxzdH+gnEoOd8VhbYa7pD3zZYGiURWM2xzEII3fQcRizDkYQ==", 3181 | "dev": true 3182 | } 3183 | } 3184 | }, 3185 | "pkg-dir": { 3186 | "version": "2.0.0", 3187 | "resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-2.0.0.tgz", 3188 | "integrity": "sha1-9tXREJ4Z1j7fQo4L1X4Sd3YVM0s=", 3189 | "dev": true, 3190 | "requires": { 3191 | "find-up": "^2.1.0" 3192 | } 3193 | }, 3194 | "prelude-ls": { 3195 | "version": "1.2.1", 3196 | "resolved": "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.2.1.tgz", 3197 | "integrity": "sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==", 3198 | "dev": true 3199 | }, 3200 | "progress": { 3201 | "version": "2.0.3", 3202 | "resolved": "https://registry.npmjs.org/progress/-/progress-2.0.3.tgz", 3203 | "integrity": "sha512-7PiHtLll5LdnKIMw100I+8xJXR5gW2QwWYkT6iJva0bXitZKa/XMrSbdmg3r2Xnaidz9Qumd0VPaMrZlF9V9sA==", 3204 | "dev": true 3205 | }, 3206 | "promise-inflight": { 3207 | "version": "1.0.1", 3208 | "resolved": "https://registry.npmjs.org/promise-inflight/-/promise-inflight-1.0.1.tgz", 3209 | "integrity": "sha1-mEcocL8igTL8vdhoEputEsPAKeM=", 3210 | "optional": true 3211 | }, 3212 | "promise-retry": { 3213 | "version": "2.0.1", 3214 | "resolved": "https://registry.npmjs.org/promise-retry/-/promise-retry-2.0.1.tgz", 3215 | "integrity": "sha512-y+WKFlBR8BGXnsNlIHFGPZmyDf3DFMoLhaflAnyZgV6rG6xu+JwesTo2Q9R6XwYmtmwAFCkAk3e35jEdoeh/3g==", 3216 | "optional": true, 3217 | "requires": { 3218 | "err-code": "^2.0.2", 3219 | "retry": "^0.12.0" 3220 | } 3221 | }, 3222 | "prop-types": { 3223 | "version": "15.7.2", 3224 | "resolved": "https://registry.npmjs.org/prop-types/-/prop-types-15.7.2.tgz", 3225 | "integrity": "sha512-8QQikdH7//R2vurIJSutZ1smHYTcLpRWEOlHnzcWHmBYrOGUysKwSsrC89BCiFj3CbrfJ/nXFdJepOVrY1GCHQ==", 3226 | "dev": true, 3227 | "requires": { 3228 | "loose-envify": "^1.4.0", 3229 | "object-assign": "^4.1.1", 3230 | "react-is": "^16.8.1" 3231 | } 3232 | }, 3233 | "proxy-addr": { 3234 | "version": "2.0.6", 3235 | "resolved": "https://registry.npmjs.org/proxy-addr/-/proxy-addr-2.0.6.tgz", 3236 | "integrity": "sha512-dh/frvCBVmSsDYzw6n926jv974gddhkFPfiN8hPOi30Wax25QZyZEGveluCgliBnqmuM+UJmBErbAUFIoDbjOw==", 3237 | "requires": { 3238 | "forwarded": "~0.1.2", 3239 | "ipaddr.js": "1.9.1" 3240 | } 3241 | }, 3242 | "proxy-from-env": { 3243 | "version": "1.1.0", 3244 | "resolved": "https://registry.npmjs.org/proxy-from-env/-/proxy-from-env-1.1.0.tgz", 3245 | "integrity": "sha512-D+zkORCbA9f1tdWRK0RaCR3GPv50cMxcrz4X8k5LTSUD1Dkw47mKJEZQNunItRTkWwgtaUSo1RVFRIG9ZXiFYg==" 3246 | }, 3247 | "pseudomap": { 3248 | "version": "1.0.2", 3249 | "resolved": "https://registry.npmjs.org/pseudomap/-/pseudomap-1.0.2.tgz", 3250 | "integrity": "sha1-8FKijacOYYkX7wqKw0wa5aaChrM=" 3251 | }, 3252 | "punycode": { 3253 | "version": "2.1.1", 3254 | "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.1.1.tgz", 3255 | "integrity": "sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A==", 3256 | "dev": true 3257 | }, 3258 | "qs": { 3259 | "version": "6.7.0", 3260 | "resolved": "https://registry.npmjs.org/qs/-/qs-6.7.0.tgz", 3261 | "integrity": "sha512-VCdBRNFTX1fyE7Nb6FYoURo/SPe62QCaAyzJvUjwRaIsc+NePBEniHlvxFmmX56+HZphIGtV0XeCirBtpDrTyQ==" 3262 | }, 3263 | "range-parser": { 3264 | "version": "1.2.1", 3265 | "resolved": "https://registry.npmjs.org/range-parser/-/range-parser-1.2.1.tgz", 3266 | "integrity": "sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg==" 3267 | }, 3268 | "raw-body": { 3269 | "version": "2.4.0", 3270 | "resolved": "https://registry.npmjs.org/raw-body/-/raw-body-2.4.0.tgz", 3271 | "integrity": "sha512-4Oz8DUIwdvoa5qMJelxipzi/iJIi40O5cGV1wNYp5hvZP8ZN0T+jiNkL0QepXs+EsQ9XJ8ipEDoiH70ySUJP3Q==", 3272 | "requires": { 3273 | "bytes": "3.1.0", 3274 | "http-errors": "1.7.2", 3275 | "iconv-lite": "0.4.24", 3276 | "unpipe": "1.0.0" 3277 | } 3278 | }, 3279 | "react-is": { 3280 | "version": "16.13.1", 3281 | "resolved": "https://registry.npmjs.org/react-is/-/react-is-16.13.1.tgz", 3282 | "integrity": "sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==", 3283 | "dev": true 3284 | }, 3285 | "read-pkg": { 3286 | "version": "2.0.0", 3287 | "resolved": "https://registry.npmjs.org/read-pkg/-/read-pkg-2.0.0.tgz", 3288 | "integrity": "sha1-jvHAYjxqbbDcZxPEv6xGMysjaPg=", 3289 | "dev": true, 3290 | "requires": { 3291 | "load-json-file": "^2.0.0", 3292 | "normalize-package-data": "^2.3.2", 3293 | "path-type": "^2.0.0" 3294 | } 3295 | }, 3296 | "read-pkg-up": { 3297 | "version": "2.0.0", 3298 | "resolved": "https://registry.npmjs.org/read-pkg-up/-/read-pkg-up-2.0.0.tgz", 3299 | "integrity": "sha1-a3KoBImE4MQeeVEP1en6mbO1Sb4=", 3300 | "dev": true, 3301 | "requires": { 3302 | "find-up": "^2.0.0", 3303 | "read-pkg": "^2.0.0" 3304 | } 3305 | }, 3306 | "readable-stream": { 3307 | "version": "3.6.0", 3308 | "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.0.tgz", 3309 | "integrity": "sha512-BViHy7LKeTz4oNnkcLJ+lVSL6vpiFeX6/d3oSH8zCW7UxP2onchk+vTGB143xuFjHS3deTgkKoXXymXqymiIdA==", 3310 | "requires": { 3311 | "inherits": "^2.0.3", 3312 | "string_decoder": "^1.1.1", 3313 | "util-deprecate": "^1.0.1" 3314 | } 3315 | }, 3316 | "regenerator-runtime": { 3317 | "version": "0.13.7", 3318 | "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.13.7.tgz", 3319 | "integrity": "sha512-a54FxoJDIr27pgf7IgeQGxmqUNYrcV338lf/6gH456HZ/PhX+5BcwHXG9ajESmwe6WRO0tAzRUrRmNONWgkrew==" 3320 | }, 3321 | "regexp.prototype.flags": { 3322 | "version": "1.3.1", 3323 | "resolved": "https://registry.npmjs.org/regexp.prototype.flags/-/regexp.prototype.flags-1.3.1.tgz", 3324 | "integrity": "sha512-JiBdRBq91WlY7uRJ0ds7R+dU02i6LKi8r3BuQhNXn+kmeLN+EfHhfjqMRis1zJxnlu88hq/4dx0P2OP3APRTOA==", 3325 | "dev": true, 3326 | "requires": { 3327 | "call-bind": "^1.0.2", 3328 | "define-properties": "^1.1.3" 3329 | } 3330 | }, 3331 | "regexpp": { 3332 | "version": "3.1.0", 3333 | "resolved": "https://registry.npmjs.org/regexpp/-/regexpp-3.1.0.tgz", 3334 | "integrity": "sha512-ZOIzd8yVsQQA7j8GCSlPGXwg5PfmA1mrq0JP4nGhh54LaKN3xdai/vHUDu74pKwV8OxseMS65u2NImosQcSD0Q==", 3335 | "dev": true 3336 | }, 3337 | "resolve": { 3338 | "version": "1.20.0", 3339 | "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.20.0.tgz", 3340 | "integrity": "sha512-wENBPt4ySzg4ybFQW2TT1zMQucPK95HSh/nq2CFTZVOGut2+pQvSsgtda4d26YrYcr067wjbmzOG8byDPBX63A==", 3341 | "dev": true, 3342 | "requires": { 3343 | "is-core-module": "^2.2.0", 3344 | "path-parse": "^1.0.6" 3345 | } 3346 | }, 3347 | "resolve-from": { 3348 | "version": "4.0.0", 3349 | "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-4.0.0.tgz", 3350 | "integrity": "sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==", 3351 | "dev": true 3352 | }, 3353 | "retry": { 3354 | "version": "0.12.0", 3355 | "resolved": "https://registry.npmjs.org/retry/-/retry-0.12.0.tgz", 3356 | "integrity": "sha1-G0KmJmoh8HQh0bC1S33BZ7AcATs=", 3357 | "optional": true 3358 | }, 3359 | "retry-as-promised": { 3360 | "version": "7.0.4", 3361 | "resolved": "https://registry.npmjs.org/retry-as-promised/-/retry-as-promised-7.0.4.tgz", 3362 | "integrity": "sha512-XgmCoxKWkDofwH8WddD0w85ZfqYz+ZHlr5yo+3YUCfycWawU56T5ckWXsScsj5B8tqUcIG67DxXByo3VUgiAdA==" 3363 | }, 3364 | "rimraf": { 3365 | "version": "2.6.3", 3366 | "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-2.6.3.tgz", 3367 | "integrity": "sha512-mwqeW5XsA2qAejG46gYdENaxXjx9onRNCfn7L0duuP4hCuTIi/QO7PDK07KJfp1d+izWPrzEJDcSqBa0OZQriA==", 3368 | "dev": true, 3369 | "requires": { 3370 | "glob": "^7.1.3" 3371 | } 3372 | }, 3373 | "safe-buffer": { 3374 | "version": "5.1.2", 3375 | "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", 3376 | "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==" 3377 | }, 3378 | "safer-buffer": { 3379 | "version": "2.1.2", 3380 | "resolved": "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz", 3381 | "integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==" 3382 | }, 3383 | "semver": { 3384 | "version": "7.3.5", 3385 | "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.5.tgz", 3386 | "integrity": "sha512-PoeGJYh8HK4BTO/a9Tf6ZG3veo/A7ZVsYrSA6J8ny9nb3B1VrpkuN+z9OE5wfE5p6H4LchYZsegiQgbJD94ZFQ==", 3387 | "requires": { 3388 | "lru-cache": "^6.0.0" 3389 | } 3390 | }, 3391 | "send": { 3392 | "version": "0.17.1", 3393 | "resolved": "https://registry.npmjs.org/send/-/send-0.17.1.tgz", 3394 | "integrity": "sha512-BsVKsiGcQMFwT8UxypobUKyv7irCNRHk1T0G680vk88yf6LBByGcZJOTJCrTP2xVN6yI+XjPJcNuE3V4fT9sAg==", 3395 | "requires": { 3396 | "debug": "2.6.9", 3397 | "depd": "~1.1.2", 3398 | "destroy": "~1.0.4", 3399 | "encodeurl": "~1.0.2", 3400 | "escape-html": "~1.0.3", 3401 | "etag": "~1.8.1", 3402 | "fresh": "0.5.2", 3403 | "http-errors": "~1.7.2", 3404 | "mime": "1.6.0", 3405 | "ms": "2.1.1", 3406 | "on-finished": "~2.3.0", 3407 | "range-parser": "~1.2.1", 3408 | "statuses": "~1.5.0" 3409 | }, 3410 | "dependencies": { 3411 | "ms": { 3412 | "version": "2.1.1", 3413 | "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.1.tgz", 3414 | "integrity": "sha512-tgp+dl5cGk28utYktBsrFqA7HKgrhgPsg6Z/EfhWI4gl1Hwq8B/GmY/0oXZ6nF8hDVesS/FpnYaD/kOWhYQvyg==" 3415 | } 3416 | } 3417 | }, 3418 | "sequelize": { 3419 | "version": "6.28.2", 3420 | "resolved": "https://registry.npmjs.org/sequelize/-/sequelize-6.28.2.tgz", 3421 | "integrity": "sha512-MpK2h7xXHhBcwyTDf1sM1mrDdKFTGYbmrAC+4bJAf6f9Tp2IuiNwbNPj6Q5rMGVsKnO0CiJm8PEKtyNLOY8rNg==", 3422 | "requires": { 3423 | "@types/debug": "^4.1.7", 3424 | "@types/validator": "^13.7.1", 3425 | "debug": "^4.3.3", 3426 | "dottie": "^2.0.2", 3427 | "inflection": "^1.13.2", 3428 | "lodash": "^4.17.21", 3429 | "moment": "^2.29.1", 3430 | "moment-timezone": "^0.5.35", 3431 | "pg-connection-string": "^2.5.0", 3432 | "retry-as-promised": "^7.0.3", 3433 | "semver": "^7.3.5", 3434 | "sequelize-pool": "^7.1.0", 3435 | "toposort-class": "^1.0.1", 3436 | "uuid": "^8.3.2", 3437 | "validator": "^13.7.0", 3438 | "wkx": "^0.5.0" 3439 | }, 3440 | "dependencies": { 3441 | "debug": { 3442 | "version": "4.3.4", 3443 | "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz", 3444 | "integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==", 3445 | "requires": { 3446 | "ms": "2.1.2" 3447 | } 3448 | }, 3449 | "inflection": { 3450 | "version": "1.13.4", 3451 | "resolved": "https://registry.npmjs.org/inflection/-/inflection-1.13.4.tgz", 3452 | "integrity": "sha512-6I/HUDeYFfuNCVS3td055BaXBwKYuzw7K3ExVMStBowKo9oOAMJIXIHvdyR3iboTCp1b+1i5DSkIZTcwIktuDw==" 3453 | }, 3454 | "ms": { 3455 | "version": "2.1.2", 3456 | "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", 3457 | "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==" 3458 | } 3459 | } 3460 | }, 3461 | "sequelize-pool": { 3462 | "version": "7.1.0", 3463 | "resolved": "https://registry.npmjs.org/sequelize-pool/-/sequelize-pool-7.1.0.tgz", 3464 | "integrity": "sha512-G9c0qlIWQSK29pR/5U2JF5dDQeqqHRragoyahj/Nx4KOOQ3CPPfzxnfqFPCSB7x5UgjOgnZ61nSxz+fjDpRlJg==" 3465 | }, 3466 | "serve-static": { 3467 | "version": "1.14.1", 3468 | "resolved": "https://registry.npmjs.org/serve-static/-/serve-static-1.14.1.tgz", 3469 | "integrity": "sha512-JMrvUwE54emCYWlTI+hGrGv5I8dEwmco/00EvkzIIsR7MqrHonbD9pO2MOfFnpFntl7ecpZs+3mW+XbQZu9QCg==", 3470 | "requires": { 3471 | "encodeurl": "~1.0.2", 3472 | "escape-html": "~1.0.3", 3473 | "parseurl": "~1.3.3", 3474 | "send": "0.17.1" 3475 | } 3476 | }, 3477 | "set-blocking": { 3478 | "version": "2.0.0", 3479 | "resolved": "https://registry.npmjs.org/set-blocking/-/set-blocking-2.0.0.tgz", 3480 | "integrity": "sha1-BF+XgtARrppoA93TgrJDkrPYkPc=" 3481 | }, 3482 | "setprototypeof": { 3483 | "version": "1.1.1", 3484 | "resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.1.1.tgz", 3485 | "integrity": "sha512-JvdAWfbXeIGaZ9cILp38HntZSFSo3mWg6xGcJJsd+d4aRMOqauag1C63dJfDw7OaMYwEbHMOxEZ1lqVRYP2OAw==" 3486 | }, 3487 | "shebang-command": { 3488 | "version": "2.0.0", 3489 | "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz", 3490 | "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==", 3491 | "dev": true, 3492 | "requires": { 3493 | "shebang-regex": "^3.0.0" 3494 | } 3495 | }, 3496 | "shebang-regex": { 3497 | "version": "3.0.0", 3498 | "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz", 3499 | "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==", 3500 | "dev": true 3501 | }, 3502 | "side-channel": { 3503 | "version": "1.0.4", 3504 | "resolved": "https://registry.npmjs.org/side-channel/-/side-channel-1.0.4.tgz", 3505 | "integrity": "sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw==", 3506 | "dev": true, 3507 | "requires": { 3508 | "call-bind": "^1.0.0", 3509 | "get-intrinsic": "^1.0.2", 3510 | "object-inspect": "^1.9.0" 3511 | } 3512 | }, 3513 | "signal-exit": { 3514 | "version": "3.0.7", 3515 | "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.7.tgz", 3516 | "integrity": "sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==" 3517 | }, 3518 | "slice-ansi": { 3519 | "version": "2.1.0", 3520 | "resolved": "https://registry.npmjs.org/slice-ansi/-/slice-ansi-2.1.0.tgz", 3521 | "integrity": "sha512-Qu+VC3EwYLldKa1fCxuuvULvSJOKEgk9pi8dZeCVK7TqBfUNTH4sFkk4joj8afVSfAYgJoSOetjx9QWOJ5mYoQ==", 3522 | "dev": true, 3523 | "requires": { 3524 | "ansi-styles": "^3.2.0", 3525 | "astral-regex": "^1.0.0", 3526 | "is-fullwidth-code-point": "^2.0.0" 3527 | } 3528 | }, 3529 | "smart-buffer": { 3530 | "version": "4.2.0", 3531 | "resolved": "https://registry.npmjs.org/smart-buffer/-/smart-buffer-4.2.0.tgz", 3532 | "integrity": "sha512-94hK0Hh8rPqQl2xXc3HsaBoOXKV20MToPkcXvwbISWLEs+64sBq5kFgn2kJDHb1Pry9yrP0dxrCI9RRci7RXKg==", 3533 | "optional": true 3534 | }, 3535 | "socks": { 3536 | "version": "2.6.2", 3537 | "resolved": "https://registry.npmjs.org/socks/-/socks-2.6.2.tgz", 3538 | "integrity": "sha512-zDZhHhZRY9PxRruRMR7kMhnf3I8hDs4S3f9RecfnGxvcBHQcKcIH/oUcEWffsfl1XxdYlA7nnlGbbTvPz9D8gA==", 3539 | "optional": true, 3540 | "requires": { 3541 | "ip": "^1.1.5", 3542 | "smart-buffer": "^4.2.0" 3543 | } 3544 | }, 3545 | "socks-proxy-agent": { 3546 | "version": "6.2.0", 3547 | "resolved": "https://registry.npmjs.org/socks-proxy-agent/-/socks-proxy-agent-6.2.0.tgz", 3548 | "integrity": "sha512-wWqJhjb32Q6GsrUqzuFkukxb/zzide5quXYcMVpIjxalDBBYy2nqKCFQ/9+Ie4dvOYSQdOk3hUlZSdzZOd3zMQ==", 3549 | "optional": true, 3550 | "requires": { 3551 | "agent-base": "^6.0.2", 3552 | "debug": "^4.3.3", 3553 | "socks": "^2.6.2" 3554 | }, 3555 | "dependencies": { 3556 | "debug": { 3557 | "version": "4.3.4", 3558 | "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz", 3559 | "integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==", 3560 | "optional": true, 3561 | "requires": { 3562 | "ms": "2.1.2" 3563 | } 3564 | }, 3565 | "ms": { 3566 | "version": "2.1.2", 3567 | "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", 3568 | "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==", 3569 | "optional": true 3570 | } 3571 | } 3572 | }, 3573 | "source-map": { 3574 | "version": "0.5.7", 3575 | "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz", 3576 | "integrity": "sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w=" 3577 | }, 3578 | "spdx-correct": { 3579 | "version": "3.1.1", 3580 | "resolved": "https://registry.npmjs.org/spdx-correct/-/spdx-correct-3.1.1.tgz", 3581 | "integrity": "sha512-cOYcUWwhCuHCXi49RhFRCyJEK3iPj1Ziz9DpViV3tbZOwXD49QzIN3MpOLJNxh2qwq2lJJZaKMVw9qNi4jTC0w==", 3582 | "dev": true, 3583 | "requires": { 3584 | "spdx-expression-parse": "^3.0.0", 3585 | "spdx-license-ids": "^3.0.0" 3586 | } 3587 | }, 3588 | "spdx-exceptions": { 3589 | "version": "2.3.0", 3590 | "resolved": "https://registry.npmjs.org/spdx-exceptions/-/spdx-exceptions-2.3.0.tgz", 3591 | "integrity": "sha512-/tTrYOC7PPI1nUAgx34hUpqXuyJG+DTHJTnIULG4rDygi4xu/tfgmq1e1cIRwRzwZgo4NLySi+ricLkZkw4i5A==", 3592 | "dev": true 3593 | }, 3594 | "spdx-expression-parse": { 3595 | "version": "3.0.1", 3596 | "resolved": "https://registry.npmjs.org/spdx-expression-parse/-/spdx-expression-parse-3.0.1.tgz", 3597 | "integrity": "sha512-cbqHunsQWnJNE6KhVSMsMeH5H/L9EpymbzqTQ3uLwNCLZ1Q481oWaofqH7nO6V07xlXwY6PhQdQ2IedWx/ZK4Q==", 3598 | "dev": true, 3599 | "requires": { 3600 | "spdx-exceptions": "^2.1.0", 3601 | "spdx-license-ids": "^3.0.0" 3602 | } 3603 | }, 3604 | "spdx-license-ids": { 3605 | "version": "3.0.7", 3606 | "resolved": "https://registry.npmjs.org/spdx-license-ids/-/spdx-license-ids-3.0.7.tgz", 3607 | "integrity": "sha512-U+MTEOO0AiDzxwFvoa4JVnMV6mZlJKk2sBLt90s7G0Gd0Mlknc7kxEn3nuDPNZRta7O2uy8oLcZLVT+4sqNZHQ==", 3608 | "dev": true 3609 | }, 3610 | "sprintf-js": { 3611 | "version": "1.0.3", 3612 | "resolved": "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.0.3.tgz", 3613 | "integrity": "sha1-BOaSb2YolTVPPdAVIDYzuFcpfiw=", 3614 | "dev": true 3615 | }, 3616 | "sqlite3": { 3617 | "version": "5.0.3", 3618 | "resolved": "https://registry.npmjs.org/sqlite3/-/sqlite3-5.0.3.tgz", 3619 | "integrity": "sha512-/cDwes7XtTOtKH5zYeJSuiavuaJ6jXxPjebw9lDFxBAwR/DvP0tnJ5MPZQ3zpnNzJBa1G6mPTpB+5O1T+AoSdQ==", 3620 | "requires": { 3621 | "@mapbox/node-pre-gyp": "^1.0.0", 3622 | "node-addon-api": "^4.2.0", 3623 | "node-gyp": "8.x", 3624 | "tar": "^6.1.11" 3625 | } 3626 | }, 3627 | "ssri": { 3628 | "version": "8.0.1", 3629 | "resolved": "https://registry.npmjs.org/ssri/-/ssri-8.0.1.tgz", 3630 | "integrity": "sha512-97qShzy1AiyxvPNIkLWoGua7xoQzzPjQ0HAH4B0rWKo7SZ6USuPcrUiAFrws0UH8RrbWmgq3LMTObhPIHbbBeQ==", 3631 | "optional": true, 3632 | "requires": { 3633 | "minipass": "^3.1.1" 3634 | } 3635 | }, 3636 | "standard": { 3637 | "version": "16.0.3", 3638 | "resolved": "https://registry.npmjs.org/standard/-/standard-16.0.3.tgz", 3639 | "integrity": "sha512-70F7NH0hSkNXosXRltjSv6KpTAOkUkSfyu3ynyM5dtRUiLtR+yX9EGZ7RKwuGUqCJiX/cnkceVM6HTZ4JpaqDg==", 3640 | "dev": true, 3641 | "requires": { 3642 | "eslint": "~7.13.0", 3643 | "eslint-config-standard": "16.0.2", 3644 | "eslint-config-standard-jsx": "10.0.0", 3645 | "eslint-plugin-import": "~2.22.1", 3646 | "eslint-plugin-node": "~11.1.0", 3647 | "eslint-plugin-promise": "~4.2.1", 3648 | "eslint-plugin-react": "~7.21.5", 3649 | "standard-engine": "^14.0.1" 3650 | } 3651 | }, 3652 | "standard-engine": { 3653 | "version": "14.0.1", 3654 | "resolved": "https://registry.npmjs.org/standard-engine/-/standard-engine-14.0.1.tgz", 3655 | "integrity": "sha512-7FEzDwmHDOGva7r9ifOzD3BGdTbA7ujJ50afLVdW/tK14zQEptJjbFuUfn50irqdHDcTbNh0DTIoMPynMCXb0Q==", 3656 | "dev": true, 3657 | "requires": { 3658 | "get-stdin": "^8.0.0", 3659 | "minimist": "^1.2.5", 3660 | "pkg-conf": "^3.1.0", 3661 | "xdg-basedir": "^4.0.0" 3662 | } 3663 | }, 3664 | "statuses": { 3665 | "version": "1.5.0", 3666 | "resolved": "https://registry.npmjs.org/statuses/-/statuses-1.5.0.tgz", 3667 | "integrity": "sha1-Fhx9rBd2Wf2YEfQ3cfqZOBR4Yow=" 3668 | }, 3669 | "string-width": { 3670 | "version": "3.1.0", 3671 | "resolved": "https://registry.npmjs.org/string-width/-/string-width-3.1.0.tgz", 3672 | "integrity": "sha512-vafcv6KjVZKSgz06oM/H6GDBrAtz8vdhQakGjFIvNrHA6y3HCF1CInLy+QLq8dTJPQ1b+KDUqDFctkdRW44e1w==", 3673 | "requires": { 3674 | "emoji-regex": "^7.0.1", 3675 | "is-fullwidth-code-point": "^2.0.0", 3676 | "strip-ansi": "^5.1.0" 3677 | }, 3678 | "dependencies": { 3679 | "ansi-regex": { 3680 | "version": "4.1.1", 3681 | "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-4.1.1.tgz", 3682 | "integrity": "sha512-ILlv4k/3f6vfQ4OoP2AGvirOktlQ98ZEL1k9FaQjxa3L1abBgbuTDAdPOpvbGncC0BTVQrl+OM8xZGK6tWXt7g==" 3683 | }, 3684 | "strip-ansi": { 3685 | "version": "5.2.0", 3686 | "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-5.2.0.tgz", 3687 | "integrity": "sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA==", 3688 | "requires": { 3689 | "ansi-regex": "^4.1.0" 3690 | } 3691 | } 3692 | } 3693 | }, 3694 | "string.prototype.matchall": { 3695 | "version": "4.0.4", 3696 | "resolved": "https://registry.npmjs.org/string.prototype.matchall/-/string.prototype.matchall-4.0.4.tgz", 3697 | "integrity": "sha512-pknFIWVachNcyqRfaQSeu/FUfpvJTe4uskUSZ9Wc1RijsPuzbZ8TyYT8WCNnntCjUEqQ3vUHMAfVj2+wLAisPQ==", 3698 | "dev": true, 3699 | "requires": { 3700 | "call-bind": "^1.0.2", 3701 | "define-properties": "^1.1.3", 3702 | "es-abstract": "^1.18.0-next.2", 3703 | "has-symbols": "^1.0.1", 3704 | "internal-slot": "^1.0.3", 3705 | "regexp.prototype.flags": "^1.3.1", 3706 | "side-channel": "^1.0.4" 3707 | } 3708 | }, 3709 | "string.prototype.trimend": { 3710 | "version": "1.0.4", 3711 | "resolved": "https://registry.npmjs.org/string.prototype.trimend/-/string.prototype.trimend-1.0.4.tgz", 3712 | "integrity": "sha512-y9xCjw1P23Awk8EvTpcyL2NIr1j7wJ39f+k6lvRnSMz+mz9CGz9NYPelDk42kOz6+ql8xjfK8oYzy3jAP5QU5A==", 3713 | "requires": { 3714 | "call-bind": "^1.0.2", 3715 | "define-properties": "^1.1.3" 3716 | } 3717 | }, 3718 | "string.prototype.trimstart": { 3719 | "version": "1.0.4", 3720 | "resolved": "https://registry.npmjs.org/string.prototype.trimstart/-/string.prototype.trimstart-1.0.4.tgz", 3721 | "integrity": "sha512-jh6e984OBfvxS50tdY2nRZnoC5/mLFKOREQfw8t5yytkoUsJRNxvI/E39qu1sD0OtWI3OC0XgKSmcWwziwYuZw==", 3722 | "requires": { 3723 | "call-bind": "^1.0.2", 3724 | "define-properties": "^1.1.3" 3725 | } 3726 | }, 3727 | "string_decoder": { 3728 | "version": "1.3.0", 3729 | "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.3.0.tgz", 3730 | "integrity": "sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==", 3731 | "requires": { 3732 | "safe-buffer": "~5.2.0" 3733 | }, 3734 | "dependencies": { 3735 | "safe-buffer": { 3736 | "version": "5.2.1", 3737 | "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz", 3738 | "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==" 3739 | } 3740 | } 3741 | }, 3742 | "strip-ansi": { 3743 | "version": "6.0.0", 3744 | "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.0.tgz", 3745 | "integrity": "sha512-AuvKTrTfQNYNIctbR1K/YGTR1756GycPsg7b9bdV9Duqur4gv6aKqHXah67Z8ImS7WEz5QVcOtlfW2rZEugt6w==", 3746 | "dev": true, 3747 | "requires": { 3748 | "ansi-regex": "^5.0.0" 3749 | } 3750 | }, 3751 | "strip-bom": { 3752 | "version": "3.0.0", 3753 | "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-3.0.0.tgz", 3754 | "integrity": "sha1-IzTBjpx1n3vdVv3vfprj1YjmjtM=", 3755 | "dev": true 3756 | }, 3757 | "strip-json-comments": { 3758 | "version": "3.1.1", 3759 | "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-3.1.1.tgz", 3760 | "integrity": "sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==", 3761 | "dev": true 3762 | }, 3763 | "supports-color": { 3764 | "version": "5.5.0", 3765 | "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", 3766 | "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", 3767 | "requires": { 3768 | "has-flag": "^3.0.0" 3769 | } 3770 | }, 3771 | "table": { 3772 | "version": "5.4.6", 3773 | "resolved": "https://registry.npmjs.org/table/-/table-5.4.6.tgz", 3774 | "integrity": "sha512-wmEc8m4fjnob4gt5riFRtTu/6+4rSe12TpAELNSqHMfF3IqnA+CH37USM6/YR3qRZv7e56kAEAtd6nKZaxe0Ug==", 3775 | "dev": true, 3776 | "requires": { 3777 | "ajv": "^6.10.2", 3778 | "lodash": "^4.17.14", 3779 | "slice-ansi": "^2.1.0", 3780 | "string-width": "^3.0.0" 3781 | } 3782 | }, 3783 | "tar": { 3784 | "version": "6.1.11", 3785 | "resolved": "https://registry.npmjs.org/tar/-/tar-6.1.11.tgz", 3786 | "integrity": "sha512-an/KZQzQUkZCkuoAA64hM92X0Urb6VpRhAFllDzz44U2mcD5scmT3zBc4VgVpkugF580+DQn8eAFSyoQt0tznA==", 3787 | "requires": { 3788 | "chownr": "^2.0.0", 3789 | "fs-minipass": "^2.0.0", 3790 | "minipass": "^3.0.0", 3791 | "minizlib": "^2.1.1", 3792 | "mkdirp": "^1.0.3", 3793 | "yallist": "^4.0.0" 3794 | }, 3795 | "dependencies": { 3796 | "mkdirp": { 3797 | "version": "1.0.4", 3798 | "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-1.0.4.tgz", 3799 | "integrity": "sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==" 3800 | } 3801 | } 3802 | }, 3803 | "text-encoding": { 3804 | "version": "0.7.0", 3805 | "resolved": "https://registry.npmjs.org/text-encoding/-/text-encoding-0.7.0.tgz", 3806 | "integrity": "sha512-oJQ3f1hrOnbRLOcwKz0Liq2IcrvDeZRHXhd9RgLrsT+DjWY/nty1Hi7v3dtkaEYbPYe0mUoOfzRrMwfXXwgPUA==" 3807 | }, 3808 | "text-table": { 3809 | "version": "0.2.0", 3810 | "resolved": "https://registry.npmjs.org/text-table/-/text-table-0.2.0.tgz", 3811 | "integrity": "sha1-f17oI66AUgfACvLfSoTsP8+lcLQ=", 3812 | "dev": true 3813 | }, 3814 | "tiny-emitter": { 3815 | "version": "1.1.0", 3816 | "resolved": "https://registry.npmjs.org/tiny-emitter/-/tiny-emitter-1.1.0.tgz", 3817 | "integrity": "sha1-q0BaIf/tgUp2wZc5ZICT1wZU/ss=" 3818 | }, 3819 | "to-fast-properties": { 3820 | "version": "2.0.0", 3821 | "resolved": "https://registry.npmjs.org/to-fast-properties/-/to-fast-properties-2.0.0.tgz", 3822 | "integrity": "sha1-3F5pjL0HkmW8c+A3doGk5Og/YW4=" 3823 | }, 3824 | "toidentifier": { 3825 | "version": "1.0.0", 3826 | "resolved": "https://registry.npmjs.org/toidentifier/-/toidentifier-1.0.0.tgz", 3827 | "integrity": "sha512-yaOH/Pk/VEhBWWTlhI+qXxDFXlejDGcQipMlyxda9nthulaxLZUNcUqFxokp0vcYnvteJln5FNQDRrxj3YcbVw==" 3828 | }, 3829 | "toposort-class": { 3830 | "version": "1.0.1", 3831 | "resolved": "https://registry.npmjs.org/toposort-class/-/toposort-class-1.0.1.tgz", 3832 | "integrity": "sha512-OsLcGGbYF3rMjPUf8oKktyvCiUxSbqMMS39m33MAjLTC1DVIH6x3WSt63/M77ihI09+Sdfk1AXvfhCEeUmC7mg==" 3833 | }, 3834 | "tr46": { 3835 | "version": "0.0.3", 3836 | "resolved": "https://registry.npmjs.org/tr46/-/tr46-0.0.3.tgz", 3837 | "integrity": "sha1-gYT9NH2snNwYWZLzpmIuFLnZq2o=" 3838 | }, 3839 | "tsconfig-paths": { 3840 | "version": "3.9.0", 3841 | "resolved": "https://registry.npmjs.org/tsconfig-paths/-/tsconfig-paths-3.9.0.tgz", 3842 | "integrity": "sha512-dRcuzokWhajtZWkQsDVKbWyY+jgcLC5sqJhg2PSgf4ZkH2aHPvaOY8YWGhmjb68b5qqTfasSsDO9k7RUiEmZAw==", 3843 | "dev": true, 3844 | "requires": { 3845 | "@types/json5": "^0.0.29", 3846 | "json5": "^1.0.1", 3847 | "minimist": "^1.2.0", 3848 | "strip-bom": "^3.0.0" 3849 | } 3850 | }, 3851 | "type-check": { 3852 | "version": "0.4.0", 3853 | "resolved": "https://registry.npmjs.org/type-check/-/type-check-0.4.0.tgz", 3854 | "integrity": "sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==", 3855 | "dev": true, 3856 | "requires": { 3857 | "prelude-ls": "^1.2.1" 3858 | } 3859 | }, 3860 | "type-fest": { 3861 | "version": "0.8.1", 3862 | "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.8.1.tgz", 3863 | "integrity": "sha512-4dbzIzqvjtgiM5rw1k5rEHtBANKmdudhGyBEajN01fEyhaAIhsoKNy6y7+IN93IfpFtwY9iqi7kD+xwKhQsNJA==", 3864 | "dev": true 3865 | }, 3866 | "type-is": { 3867 | "version": "1.6.18", 3868 | "resolved": "https://registry.npmjs.org/type-is/-/type-is-1.6.18.tgz", 3869 | "integrity": "sha512-TkRKr9sUTxEH8MdfuCSP7VizJyzRNMjj2J2do2Jr3Kym598JVdEksuzPQCnlFPW4ky9Q+iA+ma9BGm06XQBy8g==", 3870 | "requires": { 3871 | "media-typer": "0.3.0", 3872 | "mime-types": "~2.1.24" 3873 | } 3874 | }, 3875 | "unbox-primitive": { 3876 | "version": "1.0.1", 3877 | "resolved": "https://registry.npmjs.org/unbox-primitive/-/unbox-primitive-1.0.1.tgz", 3878 | "integrity": "sha512-tZU/3NqK3dA5gpE1KtyiJUrEB0lxnGkMFHptJ7q6ewdZ8s12QrODwNbhIJStmJkd1QDXa1NRA8aF2A1zk/Ypyw==", 3879 | "requires": { 3880 | "function-bind": "^1.1.1", 3881 | "has-bigints": "^1.0.1", 3882 | "has-symbols": "^1.0.2", 3883 | "which-boxed-primitive": "^1.0.2" 3884 | } 3885 | }, 3886 | "unique-filename": { 3887 | "version": "1.1.1", 3888 | "resolved": "https://registry.npmjs.org/unique-filename/-/unique-filename-1.1.1.tgz", 3889 | "integrity": "sha512-Vmp0jIp2ln35UTXuryvjzkjGdRyf9b2lTXuSYUiPmzRcl3FDtYqAwOnTJkAngD9SWhnoJzDbTKwaOrZ+STtxNQ==", 3890 | "optional": true, 3891 | "requires": { 3892 | "unique-slug": "^2.0.0" 3893 | } 3894 | }, 3895 | "unique-slug": { 3896 | "version": "2.0.2", 3897 | "resolved": "https://registry.npmjs.org/unique-slug/-/unique-slug-2.0.2.tgz", 3898 | "integrity": "sha512-zoWr9ObaxALD3DOPfjPSqxt4fnZiWblxHIgeWqW8x7UqDzEtHEQLzji2cuJYQFCU6KmoJikOYAZlrTHHebjx2w==", 3899 | "optional": true, 3900 | "requires": { 3901 | "imurmurhash": "^0.1.4" 3902 | } 3903 | }, 3904 | "unpipe": { 3905 | "version": "1.0.0", 3906 | "resolved": "https://registry.npmjs.org/unpipe/-/unpipe-1.0.0.tgz", 3907 | "integrity": "sha1-sr9O6FFKrmFltIF4KdIbLvSZBOw=" 3908 | }, 3909 | "uri-js": { 3910 | "version": "4.4.1", 3911 | "resolved": "https://registry.npmjs.org/uri-js/-/uri-js-4.4.1.tgz", 3912 | "integrity": "sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==", 3913 | "dev": true, 3914 | "requires": { 3915 | "punycode": "^2.1.0" 3916 | } 3917 | }, 3918 | "util": { 3919 | "version": "0.12.3", 3920 | "resolved": "https://registry.npmjs.org/util/-/util-0.12.3.tgz", 3921 | "integrity": "sha512-I8XkoQwE+fPQEhy9v012V+TSdH2kp9ts29i20TaaDUXsg7x/onePbhFJUExBfv/2ay1ZOp/Vsm3nDlmnFGSAog==", 3922 | "requires": { 3923 | "inherits": "^2.0.3", 3924 | "is-arguments": "^1.0.4", 3925 | "is-generator-function": "^1.0.7", 3926 | "is-typed-array": "^1.1.3", 3927 | "safe-buffer": "^5.1.2", 3928 | "which-typed-array": "^1.1.2" 3929 | } 3930 | }, 3931 | "util-deprecate": { 3932 | "version": "1.0.2", 3933 | "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz", 3934 | "integrity": "sha1-RQ1Nyfpw3nMnYvvS1KKJgUGaDM8=" 3935 | }, 3936 | "utils-merge": { 3937 | "version": "1.0.1", 3938 | "resolved": "https://registry.npmjs.org/utils-merge/-/utils-merge-1.0.1.tgz", 3939 | "integrity": "sha1-n5VxD1CiZ5R7LMwSR0HBAoQn5xM=" 3940 | }, 3941 | "uuid": { 3942 | "version": "8.3.2", 3943 | "resolved": "https://registry.npmjs.org/uuid/-/uuid-8.3.2.tgz", 3944 | "integrity": "sha512-+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg==" 3945 | }, 3946 | "v8-compile-cache": { 3947 | "version": "2.3.0", 3948 | "resolved": "https://registry.npmjs.org/v8-compile-cache/-/v8-compile-cache-2.3.0.tgz", 3949 | "integrity": "sha512-l8lCEmLcLYZh4nbunNZvQCJc5pv7+RCwa8q/LdUx8u7lsWvPDKmpodJAJNwkAhJC//dFY48KuIEmjtd4RViDrA==", 3950 | "dev": true 3951 | }, 3952 | "validate-npm-package-license": { 3953 | "version": "3.0.4", 3954 | "resolved": "https://registry.npmjs.org/validate-npm-package-license/-/validate-npm-package-license-3.0.4.tgz", 3955 | "integrity": "sha512-DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew==", 3956 | "dev": true, 3957 | "requires": { 3958 | "spdx-correct": "^3.0.0", 3959 | "spdx-expression-parse": "^3.0.0" 3960 | } 3961 | }, 3962 | "validator": { 3963 | "version": "13.9.0", 3964 | "resolved": "https://registry.npmjs.org/validator/-/validator-13.9.0.tgz", 3965 | "integrity": "sha512-B+dGG8U3fdtM0/aNK4/X8CXq/EcxU2WPrPEkJGslb47qyHsxmbggTWK0yEA4qnYVNF+nxNlN88o14hIcPmSIEA==" 3966 | }, 3967 | "vary": { 3968 | "version": "1.1.2", 3969 | "resolved": "https://registry.npmjs.org/vary/-/vary-1.1.2.tgz", 3970 | "integrity": "sha1-IpnwLG3tMNSllhsLn3RSShj2NPw=" 3971 | }, 3972 | "webcrypto-shim": { 3973 | "version": "0.1.7", 3974 | "resolved": "https://registry.npmjs.org/webcrypto-shim/-/webcrypto-shim-0.1.7.tgz", 3975 | "integrity": "sha512-JAvAQR5mRNRxZW2jKigWMjCMkjSdmP5cColRP1U/pTg69VgHXEi1orv5vVpJ55Zc5MIaPc1aaurzd9pjv2bveg==" 3976 | }, 3977 | "webidl-conversions": { 3978 | "version": "3.0.1", 3979 | "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-3.0.1.tgz", 3980 | "integrity": "sha1-JFNCdeKnvGvnvIZhHMFq4KVlSHE=" 3981 | }, 3982 | "whatwg-url": { 3983 | "version": "5.0.0", 3984 | "resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-5.0.0.tgz", 3985 | "integrity": "sha1-lmRU6HZUYuN2RNNib2dCzotwll0=", 3986 | "requires": { 3987 | "tr46": "~0.0.3", 3988 | "webidl-conversions": "^3.0.0" 3989 | } 3990 | }, 3991 | "which": { 3992 | "version": "2.0.2", 3993 | "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", 3994 | "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", 3995 | "requires": { 3996 | "isexe": "^2.0.0" 3997 | } 3998 | }, 3999 | "which-boxed-primitive": { 4000 | "version": "1.0.2", 4001 | "resolved": "https://registry.npmjs.org/which-boxed-primitive/-/which-boxed-primitive-1.0.2.tgz", 4002 | "integrity": "sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg==", 4003 | "requires": { 4004 | "is-bigint": "^1.0.1", 4005 | "is-boolean-object": "^1.1.0", 4006 | "is-number-object": "^1.0.4", 4007 | "is-string": "^1.0.5", 4008 | "is-symbol": "^1.0.3" 4009 | } 4010 | }, 4011 | "which-typed-array": { 4012 | "version": "1.1.4", 4013 | "resolved": "https://registry.npmjs.org/which-typed-array/-/which-typed-array-1.1.4.tgz", 4014 | "integrity": "sha512-49E0SpUe90cjpoc7BOJwyPHRqSAd12c10Qm2amdEZrJPCY2NDxaW01zHITrem+rnETY3dwrbH3UUrUwagfCYDA==", 4015 | "requires": { 4016 | "available-typed-arrays": "^1.0.2", 4017 | "call-bind": "^1.0.0", 4018 | "es-abstract": "^1.18.0-next.1", 4019 | "foreach": "^2.0.5", 4020 | "function-bind": "^1.1.1", 4021 | "has-symbols": "^1.0.1", 4022 | "is-typed-array": "^1.1.3" 4023 | } 4024 | }, 4025 | "wide-align": { 4026 | "version": "1.1.5", 4027 | "resolved": "https://registry.npmjs.org/wide-align/-/wide-align-1.1.5.tgz", 4028 | "integrity": "sha512-eDMORYaPNZ4sQIuuYPDHdQvf4gyCF9rEEV/yPxGfwPkRodwEgiMUUXTx/dex+Me0wxx53S+NgUHaP7y3MGlDmg==", 4029 | "requires": { 4030 | "string-width": "^1.0.2 || 2 || 3 || 4" 4031 | } 4032 | }, 4033 | "wkx": { 4034 | "version": "0.5.0", 4035 | "resolved": "https://registry.npmjs.org/wkx/-/wkx-0.5.0.tgz", 4036 | "integrity": "sha512-Xng/d4Ichh8uN4l0FToV/258EjMGU9MGcA0HV2d9B/ZpZB3lqQm7nkOdZdm5GhKtLLhAE7PiVQwN4eN+2YJJUg==", 4037 | "requires": { 4038 | "@types/node": "*" 4039 | } 4040 | }, 4041 | "word-wrap": { 4042 | "version": "1.2.3", 4043 | "resolved": "https://registry.npmjs.org/word-wrap/-/word-wrap-1.2.3.tgz", 4044 | "integrity": "sha512-Hz/mrNwitNRh/HUAtM/VT/5VH+ygD6DV7mYKZAtHOrbs8U7lvPS6xf7EJKMF0uW1KJCl0H701g3ZGus+muE5vQ==", 4045 | "dev": true 4046 | }, 4047 | "wrappy": { 4048 | "version": "1.0.2", 4049 | "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", 4050 | "integrity": "sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8=" 4051 | }, 4052 | "write": { 4053 | "version": "1.0.3", 4054 | "resolved": "https://registry.npmjs.org/write/-/write-1.0.3.tgz", 4055 | "integrity": "sha512-/lg70HAjtkUgWPVZhZcm+T4hkL8Zbtp1nFNOn3lRrxnlv50SRBv7cR7RqR+GMsd3hUXy9hWBo4CHTbFTcOYwig==", 4056 | "dev": true, 4057 | "requires": { 4058 | "mkdirp": "^0.5.1" 4059 | } 4060 | }, 4061 | "xdg-basedir": { 4062 | "version": "4.0.0", 4063 | "resolved": "https://registry.npmjs.org/xdg-basedir/-/xdg-basedir-4.0.0.tgz", 4064 | "integrity": "sha512-PSNhEJDejZYV7h50BohL09Er9VaIefr2LMAf3OEmpCkjOi34eYyQYAXUTjEQtZJTKcF0E2UKTh+osDLsgNim9Q==", 4065 | "dev": true 4066 | }, 4067 | "xhr2": { 4068 | "version": "0.1.3", 4069 | "resolved": "https://registry.npmjs.org/xhr2/-/xhr2-0.1.3.tgz", 4070 | "integrity": "sha1-y/xHWaabSoiOeM9PILBRA4dXvRE=" 4071 | }, 4072 | "yallist": { 4073 | "version": "4.0.0", 4074 | "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", 4075 | "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==" 4076 | } 4077 | } 4078 | } 4079 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "rest-api", 3 | "version": "1.0.0", 4 | "description": "Simple Node REST API w/ OAuth 2.0 Client Credentials", 5 | "main": "index.js", 6 | "scripts": { 7 | "start": "node .", 8 | "test": "standard" 9 | }, 10 | "repository": { 11 | "type": "git", 12 | "url": "git+https://github.com/oktadeveloper/okta-node-rest-api-example.git" 13 | }, 14 | "author": "", 15 | "license": "Apache-2.0", 16 | "bugs": { 17 | "url": "https://github.com/oktadeveloper/okta-node-rest-api-example/issues" 18 | }, 19 | "homepage": "https://github.com/oktadeveloper/okta-node-rest-api-example#readme", 20 | "dependencies": { 21 | "@okta/jwt-verifier": "^2.1.0", 22 | "axios": "^0.21.2", 23 | "btoa": "^1.2.1", 24 | "dotenv": "^8.2.0", 25 | "express": "^4.17.1", 26 | "finale-rest": "^1.0.6", 27 | "sequelize": "^6.28.2", 28 | "sqlite3": "^5.0.3", 29 | "util": "^0.12.3" 30 | }, 31 | "devDependencies": { 32 | "standard": "^16.0.3" 33 | } 34 | } 35 | --------------------------------------------------------------------------------