├── heroku.yml ├── src ├── banner-base.png ├── banner-base-2.png ├── getFollowers.ts ├── listDirectory.ts ├── mocks.ts ├── services.ts ├── getPosition.ts ├── verifyFollowers.ts ├── deleteAndCreateDirectory.ts ├── getProfileImage.ts ├── server.ts └── compositeBanner.ts ├── assets ├── permissoes.png ├── print-perfil-twitter.png └── icon.svg ├── nodemon.json ├── Dockerfile ├── .eslintrc.js ├── package.json ├── .gitignore ├── README.md ├── LICENSE.md └── pnpm-lock.yaml /heroku.yml: -------------------------------------------------------------------------------- 1 | build: 2 | docker: 3 | web: Dockerfile -------------------------------------------------------------------------------- /src/banner-base.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lunaperegrina/twitter-banner-followers/HEAD/src/banner-base.png -------------------------------------------------------------------------------- /assets/permissoes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lunaperegrina/twitter-banner-followers/HEAD/assets/permissoes.png -------------------------------------------------------------------------------- /src/banner-base-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lunaperegrina/twitter-banner-followers/HEAD/src/banner-base-2.png -------------------------------------------------------------------------------- /assets/print-perfil-twitter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lunaperegrina/twitter-banner-followers/HEAD/assets/print-perfil-twitter.png -------------------------------------------------------------------------------- /nodemon.json: -------------------------------------------------------------------------------- 1 | { 2 | "watch": [ 3 | "src" 4 | ], 5 | "ext": "ts", 6 | "execMap": { 7 | "ts": "sucrase-node" 8 | } 9 | } -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- 1 | FROM node:18-alpine3.15 2 | 3 | LABEL maintainer="pedroperegrinaa" 4 | 5 | WORKDIR /src 6 | 7 | COPY . . 8 | 9 | RUN npm install -g pnpm 10 | RUN pnpm install 11 | 12 | CMD ["pnpm", "start"] -------------------------------------------------------------------------------- /src/getFollowers.ts: -------------------------------------------------------------------------------- 1 | import { appOnlyClient } from './services' 2 | 3 | export async function getFollowers () { 4 | const followers = await appOnlyClient.v2.followers(process.env.USER_ID as string, { asPaginator: false, max_results: 4 }) 5 | 6 | return followers.data 7 | } 8 | -------------------------------------------------------------------------------- /src/listDirectory.ts: -------------------------------------------------------------------------------- 1 | import path from 'path' 2 | import fs from 'fs' 3 | 4 | export default async function listDirectory (directory:string) { 5 | const files = fs.readdirSync(path.resolve(directory)) 6 | 7 | const list: Array = [] 8 | 9 | files.forEach(e => { 10 | list.push(e) 11 | }) 12 | 13 | return list 14 | } 15 | -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | env: { 3 | es2021: true, 4 | node: true 5 | }, 6 | extends: [ 7 | 'standard' 8 | ], 9 | parser: '@typescript-eslint/parser', 10 | parserOptions: { 11 | ecmaVersion: 'latest', 12 | sourceType: 'module' 13 | }, 14 | plugins: [ 15 | '@typescript-eslint' 16 | ], 17 | rules: { 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /src/mocks.ts: -------------------------------------------------------------------------------- 1 | export type TFollowers = { 2 | id: string; 3 | name: string; 4 | username: string; 5 | }[] 6 | 7 | export const followersMock:TFollowers = [ 8 | { id: '113366676', name: 'jao.tsx', username: 'nattefroost' }, 9 | { id: '560181204', name: 'João Victor', username: 'joaovictor2928' }, 10 | { 11 | id: '1394379462196793354', 12 | name: "yeager's girl 🎸", 13 | username: 'iloveohowl' 14 | }, 15 | { id: '818244774', name: 'E', username: '__egs' } 16 | ] 17 | -------------------------------------------------------------------------------- /src/services.ts: -------------------------------------------------------------------------------- 1 | import { TwitterApi } from 'twitter-api-v2' 2 | 3 | export const client = new TwitterApi({ 4 | appKey: process.env.API_KEY as string, 5 | appSecret: process.env.API_KEY_SECRET as string, 6 | accessToken: process.env.ACCESS_TOKEN as string, 7 | accessSecret: process.env.ACCESS_TOKEN_SECRET as string 8 | }) 9 | 10 | export const appOnlyClient = new TwitterApi(process.env.BEARER_TOKEN as string) 11 | 12 | // TODO: To usando as credenciais de 2 aplicações. Lembra de usar a de 1 só que tem acesso as 2 versões da API 13 | -------------------------------------------------------------------------------- /src/getPosition.ts: -------------------------------------------------------------------------------- 1 | export type TLimit = { 2 | topValue: number 3 | leftValue: number 4 | } 5 | 6 | export default function getPosition (i: number):TLimit { 7 | const targetImage = i 8 | 9 | console.log('targetImage', targetImage) 10 | 11 | switch (targetImage) { 12 | case 0: 13 | return { topValue: 135, leftValue: 1184 } 14 | case 1: 15 | return { topValue: 190, leftValue: 1338 } 16 | case 2: 17 | return { topValue: 285, leftValue: 1184 } 18 | case 3: 19 | return { topValue: 345, leftValue: 1338 } 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /src/verifyFollowers.ts: -------------------------------------------------------------------------------- 1 | // eslint-disable-next-line no-unused-vars 2 | import { followersMock, TFollowers } from './mocks' 3 | 4 | import { getFollowers } from './getFollowers' 5 | 6 | let followersOld:any = [] 7 | 8 | export default async function verifyFollowers (): Promise { 9 | const followers = await getFollowers() 10 | // const followers = followersMock 11 | 12 | console.table(followers) 13 | console.table(followersOld) 14 | 15 | const response = JSON.stringify(followers) === JSON.stringify(followersOld) ? [] : followers 16 | 17 | followersOld = followers 18 | 19 | return response 20 | } 21 | -------------------------------------------------------------------------------- /src/deleteAndCreateDirectory.ts: -------------------------------------------------------------------------------- 1 | /* eslint-disable no-unused-vars */ 2 | import listDirectory from './listDirectory' 3 | import fs from 'fs' 4 | import path from 'path' 5 | 6 | export default async function deleteAndCreateDirectory (FatherDirectory: string, TargetDirectory: string) { 7 | console.log(0.1) 8 | 9 | const include = await (await listDirectory(FatherDirectory)).includes(TargetDirectory) 10 | 11 | await include 12 | ? await fs.rmdirSync(path.resolve(TargetDirectory), { recursive: true }) 13 | : console.log('Directory not found') 14 | 15 | await fs.mkdirSync(path.resolve(TargetDirectory)) 16 | console.log(0.9) 17 | } 18 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "twitter-banner-followers", 3 | "version": "1.0.0", 4 | "description": "Coloca as últimas pessoas que te seguiram no Twitter dentro do banner da sua conta ;D", 5 | "main": "index.js", 6 | "packageManager": "pnpm@7.1.9", 7 | "scripts": { 8 | "start": "nodemon src/server.ts", 9 | "build": "sucrase ./src -d .dist --transforms typescript, imports" 10 | }, 11 | "keywords": [], 12 | "author": "pedroperegrinaa", 13 | "license": "GPLV3", 14 | "devDependencies": { 15 | "@types/node": "^17.0.42", 16 | "@types/sharp": "^0.30.4", 17 | "@typescript-eslint/eslint-plugin": "^5.28.0", 18 | "@typescript-eslint/parser": "^5.28.0", 19 | "eslint": "^8.0.1", 20 | "eslint-config-standard": "^17.0.0", 21 | "eslint-plugin-import": "^2.25.2", 22 | "eslint-plugin-n": "^15.0.0", 23 | "eslint-plugin-promise": "^6.0.0", 24 | "nodemon": "^2.0.16", 25 | "sucrase": "^3.21.0", 26 | "typescript": "^4.7.3" 27 | }, 28 | "dependencies": { 29 | "axios": "^0.27.2", 30 | "dotenv": "^16.0.1", 31 | "express": "^4.18.1", 32 | "sharp": "^0.30.6", 33 | "twitter-api-v2": "^1.12.2" 34 | } 35 | } -------------------------------------------------------------------------------- /src/getProfileImage.ts: -------------------------------------------------------------------------------- 1 | import { appOnlyClient } from './services' 2 | import axios from 'axios' 3 | import sharp from 'sharp' 4 | import path from 'path' 5 | 6 | export default async function getProfileImage (userId: string) { 7 | const profileData = await appOnlyClient.v2.user(userId, { 'user.fields': 'profile_image_url' }) 8 | const profileImageUrl = profileData.data.profile_image_url?.replace('_normal', '_bigger') 9 | 10 | const input = (await axios({ url: profileImageUrl as string, responseType: 'arraybuffer' })).data as Buffer 11 | 12 | await saveProfileImage(input, profileData.data.username) 13 | } 14 | 15 | async function saveProfileImage (input: Buffer, username: string) { 16 | const { width, circleShape } = circleParams() 17 | 18 | sharp(input) 19 | .resize(width, width) 20 | .composite([{ 21 | input: circleShape, 22 | blend: 'dest-in' 23 | }]) 24 | .png() 25 | .toFile((path.resolve('profile-images' + `/${username}.jpg`)), (err, info) => err 26 | ? console.error(err.message) 27 | : console.log('') 28 | // : console.log(info) 29 | ) 30 | } 31 | 32 | function circleParams () { 33 | const width = 400 34 | const r = width / 2 35 | const circleShape = Buffer.from(``) 36 | 37 | return { width, circleShape } 38 | } 39 | -------------------------------------------------------------------------------- /src/server.ts: -------------------------------------------------------------------------------- 1 | 2 | import 'dotenv/config' 3 | 4 | import compositeBanner from './compositeBanner' 5 | import getProfileImage from './getProfileImage' 6 | import verifyFollowers from './verifyFollowers' 7 | import deleteAndCreateDirectory from './deleteAndCreateDirectory' 8 | 9 | import express from 'express' 10 | 11 | function sleep (ms) { 12 | return new Promise(resolve => setTimeout(resolve, ms)) 13 | } 14 | 15 | async function updateBanner () { 16 | console.log(1) 17 | 18 | await verifyFollowers().then(followers => { 19 | followers === [] 20 | ? console.log('sem novos seguidores') 21 | : followers.forEach(async e => { 22 | console.log(e.id) 23 | await getProfileImage(e.id) 24 | }) 25 | }) 26 | 27 | console.log(1.9) 28 | } 29 | 30 | async function init () { 31 | Promise.all([ 32 | await deleteAndCreateDirectory('.', 'profile-images'), 33 | await deleteAndCreateDirectory('.', 'banner-output'), 34 | await updateBanner(), 35 | await sleep(3000), // Pra carregar as fotos 36 | await compositeBanner() 37 | ]).then(() => { 38 | console.log('Done') 39 | }) 40 | } 41 | 42 | // init() 43 | 44 | init().then(() => { 45 | setInterval(() => { 46 | init() 47 | } 48 | , 65 * 1000) 49 | }) 50 | 51 | /* NAO TEM NADA DE IMPORTANTE, É SO POR CAUSA DO HEROKU */ 52 | 53 | const app = express() 54 | 55 | const port = process.env.PORT || 3000 56 | 57 | app.get('/', function (req, res) { 58 | res.send('Coloquei o express pra ver se o Heroku para de reclamar e me deixa ser feliz') 59 | }) 60 | 61 | app.listen(port, () => { 62 | console.log(`listening on port ${port} ...... `) 63 | }) 64 | -------------------------------------------------------------------------------- /src/compositeBanner.ts: -------------------------------------------------------------------------------- 1 | import listDirectory from './listDirectory' 2 | import getPosition, { TLimit } from './getPosition' 3 | 4 | import { client } from './services' 5 | 6 | import fs from 'fs' 7 | import path from 'path' 8 | import sharp from 'sharp' 9 | 10 | export default async function compositeBanner () { 11 | console.log(2) 12 | 13 | const list = await listDirectory('./profile-images') 14 | console.table(list) 15 | 16 | return JSON.stringify(list) === JSON.stringify([]) 17 | ? console.log('No images found') 18 | : compose(list) 19 | } 20 | 21 | async function compose (list: string[]) { 22 | for (let i:number = 0; i < list.length; i++) { 23 | try { 24 | console.log(2.1) 25 | 26 | const inputSharp = await fs.readFileSync(path.resolve(`profile-images/${list[i]}`)) 27 | 28 | const { topValue, leftValue }:TLimit = getPosition(i) 29 | 30 | let imputConposite 31 | 32 | console.log(2.2) 33 | 34 | i === 0 35 | ? imputConposite = await fs.readFileSync(path.resolve('src/banner-base-2.png')) 36 | : imputConposite = await fs.readFileSync(path.resolve(`banner-output/test_${i - 1}.png`)) 37 | 38 | const icon = await sharp(inputSharp) 39 | .resize(110, 110) 40 | .toBuffer() 41 | 42 | await sharp(imputConposite) 43 | .composite([ 44 | { 45 | input: icon, 46 | top: topValue, 47 | left: leftValue 48 | 49 | } 50 | ]) 51 | .toFile(`banner-output/test_${i}.png`) 52 | 53 | console.log(2.9) 54 | } catch (e) { 55 | console.log(e) 56 | } 57 | } 58 | await client.v1.updateAccountProfileBanner('banner-output/test_3.png') 59 | } 60 | -------------------------------------------------------------------------------- /assets/icon.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # Logs 2 | logs 3 | *.log 4 | npm-debug.log* 5 | yarn-debug.log* 6 | yarn-error.log* 7 | lerna-debug.log* 8 | 9 | # Diagnostic reports (https://nodejs.org/api/report.html) 10 | report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json 11 | 12 | # Runtime data 13 | pids 14 | *.pid 15 | *.seed 16 | *.pid.lock 17 | 18 | # Directory for instrumented libs generated by jscoverage/JSCover 19 | lib-cov 20 | 21 | # Coverage directory used by tools like istanbul 22 | coverage 23 | *.lcov 24 | 25 | # nyc test coverage 26 | .nyc_output 27 | 28 | # Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files) 29 | .grunt 30 | 31 | # Bower dependency directory (https://bower.io/) 32 | bower_components 33 | 34 | # node-waf configuration 35 | .lock-wscript 36 | 37 | # Compiled binary addons (https://nodejs.org/api/addons.html) 38 | build/Release 39 | 40 | # Dependency directories 41 | node_modules/ 42 | jspm_packages/ 43 | 44 | # TypeScript v1 declaration files 45 | typings/ 46 | 47 | # TypeScript cache 48 | *.tsbuildinfo 49 | 50 | # Optional npm cache directory 51 | .npm 52 | 53 | # Optional eslint cache 54 | .eslintcache 55 | 56 | # Microbundle cache 57 | .rpt2_cache/ 58 | .rts2_cache_cjs/ 59 | .rts2_cache_es/ 60 | .rts2_cache_umd/ 61 | 62 | # Optional REPL history 63 | .node_repl_history 64 | 65 | # Output of 'npm pack' 66 | *.tgz 67 | 68 | # Yarn Integrity file 69 | .yarn-integrity 70 | 71 | # dotenv environment variables file 72 | .env 73 | .env.test 74 | 75 | # parcel-bundler cache (https://parceljs.org/) 76 | .cache 77 | 78 | # Next.js build output 79 | .next 80 | 81 | # Nuxt.js build / generate output 82 | .nuxt 83 | dist 84 | 85 | # Gatsby files 86 | .cache/ 87 | # Comment in the public line in if your project uses Gatsby and *not* Next.js 88 | # https://nextjs.org/blog/next-9-1#public-directory-support 89 | # public 90 | 91 | # vuepress build output 92 | .vuepress/dist 93 | 94 | # Serverless directories 95 | .serverless/ 96 | 97 | # FuseBox cache 98 | .fusebox/ 99 | 100 | # DynamoDB Local files 101 | .dynamodb/ 102 | 103 | # TernJS port file 104 | .tern-port 105 | node_modules 106 | .env 107 | 108 | /profile-images 109 | /banner-output -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 |
2 | 3 |
4 | 5 |

6 | 7 | 8 | 9 | 10 | 11 |

12 |
13 |

Twitter Banner Followers

14 | Coloca as últimas pessoas que te seguiram no Twitter dentro do banner da sua conta ;D 15 |
16 |
17 | 18 |
19 |
20 |
21 | 22 | ## 📦 Instalação: 23 | 24 | Estou assumindo que você possui [Git](https://git-scm.com/) e [NodeJS](https://nodejs.org/en/) em seu sistema. 25 | 26 | Usei pnpm neste projeto, então digite: (caso não tenha instalado) 27 | 28 | ```bash 29 | npm install -g pnpm 30 | ``` 31 | 32 | Download do código: 33 | 34 | ```bash 35 | git clone https://github.com/lunaperegrinaa/twitter-banner-followers.git 36 | ``` 37 | 38 | "Download dos módulos: 39 | 40 | ```bash 41 | pnpm install 42 | ``` 43 | ## 🔒 .env 44 | 45 | Crie um arquivo .env e preencha com os seguintes valores: 46 | 47 | ```env 48 | API_KEY= 49 | API_KEY_SECRET= 50 | ACCESS_TOKEN= 51 | ACCESS_TOKEN_SECRET= 52 | BEARER_TOKEN= 53 | 54 | USER_ID= 55 | ``` 56 | 57 | **TOKENS DE ACESSO:** Pegue os seus tokens na [pagina de devs do Twitter](https://developer.twitter.com/en/portal/dashboard). Você precisa de acesso a API v1.1 e v2 do Twitter, então é necessário ter a permissão Elevated (como eles chamam) 58 | 59 | ![](./assets/permissoes.png) 60 | 61 | **USER_ID:** Você precisa definir o ID da conta que deseja coletar os seguidores. Para conseguir o ID do usuario, use este site: https://tweeterid.com/ 62 | 63 | ## ⌨ Iniciando 64 | 65 | ```bash 66 | pnpm start 67 | ``` 68 | 69 | Isso iniciará o monitoramento. Ao final do arquivo `src/server.js` temos a seguinte função: 70 | 71 | ```js 72 | setInterval(() => { 73 | init() 74 | }, 65000) 75 | ``` 76 | O limite do endpoint consultado é de 15 requisições a cada 15 minutos, então o ideal é deixar em 65000 (5 segundos a mais só pra garantir que a aplicação não vai crashar) 77 | 78 | ## 🐳 Docker 79 | 80 | Super simples, apenas dê um build e um run. 81 | 82 | ```bash 83 | docker build -t banner:1.0 . 84 | ``` 85 | 86 | ```bash 87 | docker run --name banner-teste -d 88 | ``` 89 | 90 | 91 | -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- 1 | GNU GENERAL PUBLIC LICENSE 2 | Version 3, 29 June 2007 3 | 4 | Copyright (C) 2007 Free Software Foundation, Inc. 5 | Everyone is permitted to copy and distribute verbatim copies 6 | of this license document, but changing it is not allowed. 7 | 8 | Preamble 9 | 10 | The GNU General Public License is a free, copyleft license for 11 | software and other kinds of works. 12 | 13 | The licenses for most software and other practical works are designed 14 | to take away your freedom to share and change the works. By contrast, 15 | the GNU General Public License is intended to guarantee your freedom to 16 | share and change all versions of a program--to make sure it remains free 17 | software for all its users. We, the Free Software Foundation, use the 18 | GNU General Public License for most of our software; it applies also to 19 | any other work released this way by its authors. You can apply it to 20 | your programs, too. 21 | 22 | When we speak of free software, we are referring to freedom, not 23 | price. Our General Public Licenses are designed to make sure that you 24 | have the freedom to distribute copies of free software (and charge for 25 | them if you wish), that you receive source code or can get it if you 26 | want it, that you can change the software or use pieces of it in new 27 | free programs, and that you know you can do these things. 28 | 29 | To protect your rights, we need to prevent others from denying you 30 | these rights or asking you to surrender the rights. Therefore, you have 31 | certain responsibilities if you distribute copies of the software, or if 32 | you modify it: responsibilities to respect the freedom of others. 33 | 34 | For example, if you distribute copies of such a program, whether 35 | gratis or for a fee, you must pass on to the recipients the same 36 | freedoms that you received. You must make sure that they, too, receive 37 | or can get the source code. And you must show them these terms so they 38 | know their rights. 39 | 40 | Developers that use the GNU GPL protect your rights with two steps: 41 | (1) assert copyright on the software, and (2) offer you this License 42 | giving you legal permission to copy, distribute and/or modify it. 43 | 44 | For the developers' and authors' protection, the GPL clearly explains 45 | that there is no warranty for this free software. For both users' and 46 | authors' sake, the GPL requires that modified versions be marked as 47 | changed, so that their problems will not be attributed erroneously to 48 | authors of previous versions. 49 | 50 | Some devices are designed to deny users access to install or run 51 | modified versions of the software inside them, although the manufacturer 52 | can do so. This is fundamentally incompatible with the aim of 53 | protecting users' freedom to change the software. The systematic 54 | pattern of such abuse occurs in the area of products for individuals to 55 | use, which is precisely where it is most unacceptable. Therefore, we 56 | have designed this version of the GPL to prohibit the practice for those 57 | products. If such problems arise substantially in other domains, we 58 | stand ready to extend this provision to those domains in future versions 59 | of the GPL, as needed to protect the freedom of users. 60 | 61 | Finally, every program is threatened constantly by software patents. 62 | States should not allow patents to restrict development and use of 63 | software on general-purpose computers, but in those that do, we wish to 64 | avoid the special danger that patents applied to a free program could 65 | make it effectively proprietary. To prevent this, the GPL assures that 66 | patents cannot be used to render the program non-free. 67 | 68 | The precise terms and conditions for copying, distribution and 69 | modification follow. 70 | 71 | TERMS AND CONDITIONS 72 | 73 | 0. Definitions. 74 | 75 | "This License" refers to version 3 of the GNU General Public License. 76 | 77 | "Copyright" also means copyright-like laws that apply to other kinds of 78 | works, such as semiconductor masks. 79 | 80 | "The Program" refers to any copyrightable work licensed under this 81 | License. Each licensee is addressed as "you". "Licensees" and 82 | "recipients" may be individuals or organizations. 83 | 84 | To "modify" a work means to copy from or adapt all or part of the work 85 | in a fashion requiring copyright permission, other than the making of an 86 | exact copy. The resulting work is called a "modified version" of the 87 | earlier work or a work "based on" the earlier work. 88 | 89 | A "covered work" means either the unmodified Program or a work based 90 | on the Program. 91 | 92 | To "propagate" a work means to do anything with it that, without 93 | permission, would make you directly or secondarily liable for 94 | infringement under applicable copyright law, except executing it on a 95 | computer or modifying a private copy. Propagation includes copying, 96 | distribution (with or without modification), making available to the 97 | public, and in some countries other activities as well. 98 | 99 | To "convey" a work means any kind of propagation that enables other 100 | parties to make or receive copies. Mere interaction with a user through 101 | a computer network, with no transfer of a copy, is not conveying. 102 | 103 | An interactive user interface displays "Appropriate Legal Notices" 104 | to the extent that it includes a convenient and prominently visible 105 | feature that (1) displays an appropriate copyright notice, and (2) 106 | tells the user that there is no warranty for the work (except to the 107 | extent that warranties are provided), that licensees may convey the 108 | work under this License, and how to view a copy of this License. If 109 | the interface presents a list of user commands or options, such as a 110 | menu, a prominent item in the list meets this criterion. 111 | 112 | 1. Source Code. 113 | 114 | The "source code" for a work means the preferred form of the work 115 | for making modifications to it. "Object code" means any non-source 116 | form of a work. 117 | 118 | A "Standard Interface" means an interface that either is an official 119 | standard defined by a recognized standards body, or, in the case of 120 | interfaces specified for a particular programming language, one that 121 | is widely used among developers working in that language. 122 | 123 | The "System Libraries" of an executable work include anything, other 124 | than the work as a whole, that (a) is included in the normal form of 125 | packaging a Major Component, but which is not part of that Major 126 | Component, and (b) serves only to enable use of the work with that 127 | Major Component, or to implement a Standard Interface for which an 128 | implementation is available to the public in source code form. A 129 | "Major Component", in this context, means a major essential component 130 | (kernel, window system, and so on) of the specific operating system 131 | (if any) on which the executable work runs, or a compiler used to 132 | produce the work, or an object code interpreter used to run it. 133 | 134 | The "Corresponding Source" for a work in object code form means all 135 | the source code needed to generate, install, and (for an executable 136 | work) run the object code and to modify the work, including scripts to 137 | control those activities. However, it does not include the work's 138 | System Libraries, or general-purpose tools or generally available free 139 | programs which are used unmodified in performing those activities but 140 | which are not part of the work. For example, Corresponding Source 141 | includes interface definition files associated with source files for 142 | the work, and the source code for shared libraries and dynamically 143 | linked subprograms that the work is specifically designed to require, 144 | such as by intimate data communication or control flow between those 145 | subprograms and other parts of the work. 146 | 147 | The Corresponding Source need not include anything that users 148 | can regenerate automatically from other parts of the Corresponding 149 | Source. 150 | 151 | The Corresponding Source for a work in source code form is that 152 | same work. 153 | 154 | 2. Basic Permissions. 155 | 156 | All rights granted under this License are granted for the term of 157 | copyright on the Program, and are irrevocable provided the stated 158 | conditions are met. This License explicitly affirms your unlimited 159 | permission to run the unmodified Program. The output from running a 160 | covered work is covered by this License only if the output, given its 161 | content, constitutes a covered work. This License acknowledges your 162 | rights of fair use or other equivalent, as provided by copyright law. 163 | 164 | You may make, run and propagate covered works that you do not 165 | convey, without conditions so long as your license otherwise remains 166 | in force. You may convey covered works to others for the sole purpose 167 | of having them make modifications exclusively for you, or provide you 168 | with facilities for running those works, provided that you comply with 169 | the terms of this License in conveying all material for which you do 170 | not control copyright. Those thus making or running the covered works 171 | for you must do so exclusively on your behalf, under your direction 172 | and control, on terms that prohibit them from making any copies of 173 | your copyrighted material outside their relationship with you. 174 | 175 | Conveying under any other circumstances is permitted solely under 176 | the conditions stated below. Sublicensing is not allowed; section 10 177 | makes it unnecessary. 178 | 179 | 3. Protecting Users' Legal Rights From Anti-Circumvention Law. 180 | 181 | No covered work shall be deemed part of an effective technological 182 | measure under any applicable law fulfilling obligations under article 183 | 11 of the WIPO copyright treaty adopted on 20 December 1996, or 184 | similar laws prohibiting or restricting circumvention of such 185 | measures. 186 | 187 | When you convey a covered work, you waive any legal power to forbid 188 | circumvention of technological measures to the extent such circumvention 189 | is effected by exercising rights under this License with respect to 190 | the covered work, and you disclaim any intention to limit operation or 191 | modification of the work as a means of enforcing, against the work's 192 | users, your or third parties' legal rights to forbid circumvention of 193 | technological measures. 194 | 195 | 4. Conveying Verbatim Copies. 196 | 197 | You may convey verbatim copies of the Program's source code as you 198 | receive it, in any medium, provided that you conspicuously and 199 | appropriately publish on each copy an appropriate copyright notice; 200 | keep intact all notices stating that this License and any 201 | non-permissive terms added in accord with section 7 apply to the code; 202 | keep intact all notices of the absence of any warranty; and give all 203 | recipients a copy of this License along with the Program. 204 | 205 | You may charge any price or no price for each copy that you convey, 206 | and you may offer support or warranty protection for a fee. 207 | 208 | 5. Conveying Modified Source Versions. 209 | 210 | You may convey a work based on the Program, or the modifications to 211 | produce it from the Program, in the form of source code under the 212 | terms of section 4, provided that you also meet all of these conditions: 213 | 214 | a) The work must carry prominent notices stating that you modified 215 | it, and giving a relevant date. 216 | 217 | b) The work must carry prominent notices stating that it is 218 | released under this License and any conditions added under section 219 | 7. This requirement modifies the requirement in section 4 to 220 | "keep intact all notices". 221 | 222 | c) You must license the entire work, as a whole, under this 223 | License to anyone who comes into possession of a copy. This 224 | License will therefore apply, along with any applicable section 7 225 | additional terms, to the whole of the work, and all its parts, 226 | regardless of how they are packaged. This License gives no 227 | permission to license the work in any other way, but it does not 228 | invalidate such permission if you have separately received it. 229 | 230 | d) If the work has interactive user interfaces, each must display 231 | Appropriate Legal Notices; however, if the Program has interactive 232 | interfaces that do not display Appropriate Legal Notices, your 233 | work need not make them do so. 234 | 235 | A compilation of a covered work with other separate and independent 236 | works, which are not by their nature extensions of the covered work, 237 | and which are not combined with it such as to form a larger program, 238 | in or on a volume of a storage or distribution medium, is called an 239 | "aggregate" if the compilation and its resulting copyright are not 240 | used to limit the access or legal rights of the compilation's users 241 | beyond what the individual works permit. Inclusion of a covered work 242 | in an aggregate does not cause this License to apply to the other 243 | parts of the aggregate. 244 | 245 | 6. Conveying Non-Source Forms. 246 | 247 | You may convey a covered work in object code form under the terms 248 | of sections 4 and 5, provided that you also convey the 249 | machine-readable Corresponding Source under the terms of this License, 250 | in one of these ways: 251 | 252 | a) Convey the object code in, or embodied in, a physical product 253 | (including a physical distribution medium), accompanied by the 254 | Corresponding Source fixed on a durable physical medium 255 | customarily used for software interchange. 256 | 257 | b) Convey the object code in, or embodied in, a physical product 258 | (including a physical distribution medium), accompanied by a 259 | written offer, valid for at least three years and valid for as 260 | long as you offer spare parts or customer support for that product 261 | model, to give anyone who possesses the object code either (1) a 262 | copy of the Corresponding Source for all the software in the 263 | product that is covered by this License, on a durable physical 264 | medium customarily used for software interchange, for a price no 265 | more than your reasonable cost of physically performing this 266 | conveying of source, or (2) access to copy the 267 | Corresponding Source from a network server at no charge. 268 | 269 | c) Convey individual copies of the object code with a copy of the 270 | written offer to provide the Corresponding Source. This 271 | alternative is allowed only occasionally and noncommercially, and 272 | only if you received the object code with such an offer, in accord 273 | with subsection 6b. 274 | 275 | d) Convey the object code by offering access from a designated 276 | place (gratis or for a charge), and offer equivalent access to the 277 | Corresponding Source in the same way through the same place at no 278 | further charge. You need not require recipients to copy the 279 | Corresponding Source along with the object code. If the place to 280 | copy the object code is a network server, the Corresponding Source 281 | may be on a different server (operated by you or a third party) 282 | that supports equivalent copying facilities, provided you maintain 283 | clear directions next to the object code saying where to find the 284 | Corresponding Source. Regardless of what server hosts the 285 | Corresponding Source, you remain obligated to ensure that it is 286 | available for as long as needed to satisfy these requirements. 287 | 288 | e) Convey the object code using peer-to-peer transmission, provided 289 | you inform other peers where the object code and Corresponding 290 | Source of the work are being offered to the general public at no 291 | charge under subsection 6d. 292 | 293 | A separable portion of the object code, whose source code is excluded 294 | from the Corresponding Source as a System Library, need not be 295 | included in conveying the object code work. 296 | 297 | A "User Product" is either (1) a "consumer product", which means any 298 | tangible personal property which is normally used for personal, family, 299 | or household purposes, or (2) anything designed or sold for incorporation 300 | into a dwelling. In determining whether a product is a consumer product, 301 | doubtful cases shall be resolved in favor of coverage. For a particular 302 | product received by a particular user, "normally used" refers to a 303 | typical or common use of that class of product, regardless of the status 304 | of the particular user or of the way in which the particular user 305 | actually uses, or expects or is expected to use, the product. A product 306 | is a consumer product regardless of whether the product has substantial 307 | commercial, industrial or non-consumer uses, unless such uses represent 308 | the only significant mode of use of the product. 309 | 310 | "Installation Information" for a User Product means any methods, 311 | procedures, authorization keys, or other information required to install 312 | and execute modified versions of a covered work in that User Product from 313 | a modified version of its Corresponding Source. The information must 314 | suffice to ensure that the continued functioning of the modified object 315 | code is in no case prevented or interfered with solely because 316 | modification has been made. 317 | 318 | If you convey an object code work under this section in, or with, or 319 | specifically for use in, a User Product, and the conveying occurs as 320 | part of a transaction in which the right of possession and use of the 321 | User Product is transferred to the recipient in perpetuity or for a 322 | fixed term (regardless of how the transaction is characterized), the 323 | Corresponding Source conveyed under this section must be accompanied 324 | by the Installation Information. But this requirement does not apply 325 | if neither you nor any third party retains the ability to install 326 | modified object code on the User Product (for example, the work has 327 | been installed in ROM). 328 | 329 | The requirement to provide Installation Information does not include a 330 | requirement to continue to provide support service, warranty, or updates 331 | for a work that has been modified or installed by the recipient, or for 332 | the User Product in which it has been modified or installed. Access to a 333 | network may be denied when the modification itself materially and 334 | adversely affects the operation of the network or violates the rules and 335 | protocols for communication across the network. 336 | 337 | Corresponding Source conveyed, and Installation Information provided, 338 | in accord with this section must be in a format that is publicly 339 | documented (and with an implementation available to the public in 340 | source code form), and must require no special password or key for 341 | unpacking, reading or copying. 342 | 343 | 7. Additional Terms. 344 | 345 | "Additional permissions" are terms that supplement the terms of this 346 | License by making exceptions from one or more of its conditions. 347 | Additional permissions that are applicable to the entire Program shall 348 | be treated as though they were included in this License, to the extent 349 | that they are valid under applicable law. If additional permissions 350 | apply only to part of the Program, that part may be used separately 351 | under those permissions, but the entire Program remains governed by 352 | this License without regard to the additional permissions. 353 | 354 | When you convey a copy of a covered work, you may at your option 355 | remove any additional permissions from that copy, or from any part of 356 | it. (Additional permissions may be written to require their own 357 | removal in certain cases when you modify the work.) You may place 358 | additional permissions on material, added by you to a covered work, 359 | for which you have or can give appropriate copyright permission. 360 | 361 | Notwithstanding any other provision of this License, for material you 362 | add to a covered work, you may (if authorized by the copyright holders of 363 | that material) supplement the terms of this License with terms: 364 | 365 | a) Disclaiming warranty or limiting liability differently from the 366 | terms of sections 15 and 16 of this License; or 367 | 368 | b) Requiring preservation of specified reasonable legal notices or 369 | author attributions in that material or in the Appropriate Legal 370 | Notices displayed by works containing it; or 371 | 372 | c) Prohibiting misrepresentation of the origin of that material, or 373 | requiring that modified versions of such material be marked in 374 | reasonable ways as different from the original version; or 375 | 376 | d) Limiting the use for publicity purposes of names of licensors or 377 | authors of the material; or 378 | 379 | e) Declining to grant rights under trademark law for use of some 380 | trade names, trademarks, or service marks; or 381 | 382 | f) Requiring indemnification of licensors and authors of that 383 | material by anyone who conveys the material (or modified versions of 384 | it) with contractual assumptions of liability to the recipient, for 385 | any liability that these contractual assumptions directly impose on 386 | those licensors and authors. 387 | 388 | All other non-permissive additional terms are considered "further 389 | restrictions" within the meaning of section 10. If the Program as you 390 | received it, or any part of it, contains a notice stating that it is 391 | governed by this License along with a term that is a further 392 | restriction, you may remove that term. If a license document contains 393 | a further restriction but permits relicensing or conveying under this 394 | License, you may add to a covered work material governed by the terms 395 | of that license document, provided that the further restriction does 396 | not survive such relicensing or conveying. 397 | 398 | If you add terms to a covered work in accord with this section, you 399 | must place, in the relevant source files, a statement of the 400 | additional terms that apply to those files, or a notice indicating 401 | where to find the applicable terms. 402 | 403 | Additional terms, permissive or non-permissive, may be stated in the 404 | form of a separately written license, or stated as exceptions; 405 | the above requirements apply either way. 406 | 407 | 8. Termination. 408 | 409 | You may not propagate or modify a covered work except as expressly 410 | provided under this License. Any attempt otherwise to propagate or 411 | modify it is void, and will automatically terminate your rights under 412 | this License (including any patent licenses granted under the third 413 | paragraph of section 11). 414 | 415 | However, if you cease all violation of this License, then your 416 | license from a particular copyright holder is reinstated (a) 417 | provisionally, unless and until the copyright holder explicitly and 418 | finally terminates your license, and (b) permanently, if the copyright 419 | holder fails to notify you of the violation by some reasonable means 420 | prior to 60 days after the cessation. 421 | 422 | Moreover, your license from a particular copyright holder is 423 | reinstated permanently if the copyright holder notifies you of the 424 | violation by some reasonable means, this is the first time you have 425 | received notice of violation of this License (for any work) from that 426 | copyright holder, and you cure the violation prior to 30 days after 427 | your receipt of the notice. 428 | 429 | Termination of your rights under this section does not terminate the 430 | licenses of parties who have received copies or rights from you under 431 | this License. If your rights have been terminated and not permanently 432 | reinstated, you do not qualify to receive new licenses for the same 433 | material under section 10. 434 | 435 | 9. Acceptance Not Required for Having Copies. 436 | 437 | You are not required to accept this License in order to receive or 438 | run a copy of the Program. Ancillary propagation of a covered work 439 | occurring solely as a consequence of using peer-to-peer transmission 440 | to receive a copy likewise does not require acceptance. However, 441 | nothing other than this License grants you permission to propagate or 442 | modify any covered work. These actions infringe copyright if you do 443 | not accept this License. Therefore, by modifying or propagating a 444 | covered work, you indicate your acceptance of this License to do so. 445 | 446 | 10. Automatic Licensing of Downstream Recipients. 447 | 448 | Each time you convey a covered work, the recipient automatically 449 | receives a license from the original licensors, to run, modify and 450 | propagate that work, subject to this License. You are not responsible 451 | for enforcing compliance by third parties with this License. 452 | 453 | An "entity transaction" is a transaction transferring control of an 454 | organization, or substantially all assets of one, or subdividing an 455 | organization, or merging organizations. If propagation of a covered 456 | work results from an entity transaction, each party to that 457 | transaction who receives a copy of the work also receives whatever 458 | licenses to the work the party's predecessor in interest had or could 459 | give under the previous paragraph, plus a right to possession of the 460 | Corresponding Source of the work from the predecessor in interest, if 461 | the predecessor has it or can get it with reasonable efforts. 462 | 463 | You may not impose any further restrictions on the exercise of the 464 | rights granted or affirmed under this License. For example, you may 465 | not impose a license fee, royalty, or other charge for exercise of 466 | rights granted under this License, and you may not initiate litigation 467 | (including a cross-claim or counterclaim in a lawsuit) alleging that 468 | any patent claim is infringed by making, using, selling, offering for 469 | sale, or importing the Program or any portion of it. 470 | 471 | 11. Patents. 472 | 473 | A "contributor" is a copyright holder who authorizes use under this 474 | License of the Program or a work on which the Program is based. The 475 | work thus licensed is called the contributor's "contributor version". 476 | 477 | A contributor's "essential patent claims" are all patent claims 478 | owned or controlled by the contributor, whether already acquired or 479 | hereafter acquired, that would be infringed by some manner, permitted 480 | by this License, of making, using, or selling its contributor version, 481 | but do not include claims that would be infringed only as a 482 | consequence of further modification of the contributor version. For 483 | purposes of this definition, "control" includes the right to grant 484 | patent sublicenses in a manner consistent with the requirements of 485 | this License. 486 | 487 | Each contributor grants you a non-exclusive, worldwide, royalty-free 488 | patent license under the contributor's essential patent claims, to 489 | make, use, sell, offer for sale, import and otherwise run, modify and 490 | propagate the contents of its contributor version. 491 | 492 | In the following three paragraphs, a "patent license" is any express 493 | agreement or commitment, however denominated, not to enforce a patent 494 | (such as an express permission to practice a patent or covenant not to 495 | sue for patent infringement). To "grant" such a patent license to a 496 | party means to make such an agreement or commitment not to enforce a 497 | patent against the party. 498 | 499 | If you convey a covered work, knowingly relying on a patent license, 500 | and the Corresponding Source of the work is not available for anyone 501 | to copy, free of charge and under the terms of this License, through a 502 | publicly available network server or other readily accessible means, 503 | then you must either (1) cause the Corresponding Source to be so 504 | available, or (2) arrange to deprive yourself of the benefit of the 505 | patent license for this particular work, or (3) arrange, in a manner 506 | consistent with the requirements of this License, to extend the patent 507 | license to downstream recipients. "Knowingly relying" means you have 508 | actual knowledge that, but for the patent license, your conveying the 509 | covered work in a country, or your recipient's use of the covered work 510 | in a country, would infringe one or more identifiable patents in that 511 | country that you have reason to believe are valid. 512 | 513 | If, pursuant to or in connection with a single transaction or 514 | arrangement, you convey, or propagate by procuring conveyance of, a 515 | covered work, and grant a patent license to some of the parties 516 | receiving the covered work authorizing them to use, propagate, modify 517 | or convey a specific copy of the covered work, then the patent license 518 | you grant is automatically extended to all recipients of the covered 519 | work and works based on it. 520 | 521 | A patent license is "discriminatory" if it does not include within 522 | the scope of its coverage, prohibits the exercise of, or is 523 | conditioned on the non-exercise of one or more of the rights that are 524 | specifically granted under this License. You may not convey a covered 525 | work if you are a party to an arrangement with a third party that is 526 | in the business of distributing software, under which you make payment 527 | to the third party based on the extent of your activity of conveying 528 | the work, and under which the third party grants, to any of the 529 | parties who would receive the covered work from you, a discriminatory 530 | patent license (a) in connection with copies of the covered work 531 | conveyed by you (or copies made from those copies), or (b) primarily 532 | for and in connection with specific products or compilations that 533 | contain the covered work, unless you entered into that arrangement, 534 | or that patent license was granted, prior to 28 March 2007. 535 | 536 | Nothing in this License shall be construed as excluding or limiting 537 | any implied license or other defenses to infringement that may 538 | otherwise be available to you under applicable patent law. 539 | 540 | 12. No Surrender of Others' Freedom. 541 | 542 | If conditions are imposed on you (whether by court order, agreement or 543 | otherwise) that contradict the conditions of this License, they do not 544 | excuse you from the conditions of this License. If you cannot convey a 545 | covered work so as to satisfy simultaneously your obligations under this 546 | License and any other pertinent obligations, then as a consequence you may 547 | not convey it at all. For example, if you agree to terms that obligate you 548 | to collect a royalty for further conveying from those to whom you convey 549 | the Program, the only way you could satisfy both those terms and this 550 | License would be to refrain entirely from conveying the Program. 551 | 552 | 13. Use with the GNU Affero General Public License. 553 | 554 | Notwithstanding any other provision of this License, you have 555 | permission to link or combine any covered work with a work licensed 556 | under version 3 of the GNU Affero General Public License into a single 557 | combined work, and to convey the resulting work. The terms of this 558 | License will continue to apply to the part which is the covered work, 559 | but the special requirements of the GNU Affero General Public License, 560 | section 13, concerning interaction through a network will apply to the 561 | combination as such. 562 | 563 | 14. Revised Versions of this License. 564 | 565 | The Free Software Foundation may publish revised and/or new versions of 566 | the GNU General Public License from time to time. Such new versions will 567 | be similar in spirit to the present version, but may differ in detail to 568 | address new problems or concerns. 569 | 570 | Each version is given a distinguishing version number. If the 571 | Program specifies that a certain numbered version of the GNU General 572 | Public License "or any later version" applies to it, you have the 573 | option of following the terms and conditions either of that numbered 574 | version or of any later version published by the Free Software 575 | Foundation. If the Program does not specify a version number of the 576 | GNU General Public License, you may choose any version ever published 577 | by the Free Software Foundation. 578 | 579 | If the Program specifies that a proxy can decide which future 580 | versions of the GNU General Public License can be used, that proxy's 581 | public statement of acceptance of a version permanently authorizes you 582 | to choose that version for the Program. 583 | 584 | Later license versions may give you additional or different 585 | permissions. However, no additional obligations are imposed on any 586 | author or copyright holder as a result of your choosing to follow a 587 | later version. 588 | 589 | 15. Disclaimer of Warranty. 590 | 591 | THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY 592 | APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT 593 | HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY 594 | OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, 595 | THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR 596 | PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM 597 | IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF 598 | ALL NECESSARY SERVICING, REPAIR OR CORRECTION. 599 | 600 | 16. Limitation of Liability. 601 | 602 | IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING 603 | WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS 604 | THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY 605 | GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE 606 | USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF 607 | DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD 608 | PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), 609 | EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF 610 | SUCH DAMAGES. 611 | 612 | 17. Interpretation of Sections 15 and 16. 613 | 614 | If the disclaimer of warranty and limitation of liability provided 615 | above cannot be given local legal effect according to their terms, 616 | reviewing courts shall apply local law that most closely approximates 617 | an absolute waiver of all civil liability in connection with the 618 | Program, unless a warranty or assumption of liability accompanies a 619 | copy of the Program in return for a fee. 620 | 621 | END OF TERMS AND CONDITIONS 622 | 623 | How to Apply These Terms to Your New Programs 624 | 625 | If you develop a new program, and you want it to be of the greatest 626 | possible use to the public, the best way to achieve this is to make it 627 | free software which everyone can redistribute and change under these terms. 628 | 629 | To do so, attach the following notices to the program. It is safest 630 | to attach them to the start of each source file to most effectively 631 | state the exclusion of warranty; and each file should have at least 632 | the "copyright" line and a pointer to where the full notice is found. 633 | 634 | 635 | Copyright (C) 636 | 637 | This program is free software: you can redistribute it and/or modify 638 | it under the terms of the GNU General Public License as published by 639 | the Free Software Foundation, either version 3 of the License, or 640 | (at your option) any later version. 641 | 642 | This program is distributed in the hope that it will be useful, 643 | but WITHOUT ANY WARRANTY; without even the implied warranty of 644 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 645 | GNU General Public License for more details. 646 | 647 | You should have received a copy of the GNU General Public License 648 | along with this program. If not, see . 649 | 650 | Also add information on how to contact you by electronic and paper mail. 651 | 652 | If the program does terminal interaction, make it output a short 653 | notice like this when it starts in an interactive mode: 654 | 655 | Copyright (C) 656 | This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'. 657 | This is free software, and you are welcome to redistribute it 658 | under certain conditions; type `show c' for details. 659 | 660 | The hypothetical commands `show w' and `show c' should show the appropriate 661 | parts of the General Public License. Of course, your program's commands 662 | might be different; for a GUI interface, you would use an "about box". 663 | 664 | You should also get your employer (if you work as a programmer) or school, 665 | if any, to sign a "copyright disclaimer" for the program, if necessary. 666 | For more information on this, and how to apply and follow the GNU GPL, see 667 | . 668 | 669 | The GNU General Public License does not permit incorporating your program 670 | into proprietary programs. If your program is a subroutine library, you 671 | may consider it more useful to permit linking proprietary applications with 672 | the library. If this is what you want to do, use the GNU Lesser General 673 | Public License instead of this License. But first, please read 674 | . 675 | -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- 1 | lockfileVersion: 5.4 2 | 3 | specifiers: 4 | '@types/node': ^17.0.42 5 | '@types/sharp': ^0.30.4 6 | '@typescript-eslint/eslint-plugin': ^5.28.0 7 | '@typescript-eslint/parser': ^5.28.0 8 | axios: ^0.27.2 9 | dotenv: ^16.0.1 10 | eslint: ^8.0.1 11 | eslint-config-standard: ^17.0.0 12 | eslint-plugin-import: ^2.25.2 13 | eslint-plugin-n: ^15.0.0 14 | eslint-plugin-promise: ^6.0.0 15 | express: ^4.18.1 16 | nodemon: ^2.0.16 17 | sharp: ^0.30.6 18 | sucrase: ^3.21.0 19 | twitter-api-v2: ^1.12.2 20 | typescript: ^4.7.3 21 | 22 | dependencies: 23 | axios: 0.27.2 24 | dotenv: 16.0.1 25 | express: 4.18.1 26 | sharp: 0.30.6 27 | twitter-api-v2: 1.12.2 28 | 29 | devDependencies: 30 | '@types/node': 17.0.42 31 | '@types/sharp': 0.30.4 32 | '@typescript-eslint/eslint-plugin': 5.28.0_7yumg2qjgbp7maccqlfhx2vudu 33 | '@typescript-eslint/parser': 5.28.0_ud6rd4xtew5bv4yhvkvu24pzm4 34 | eslint: 8.17.0 35 | eslint-config-standard: 17.0.0_2vzjc6wa644febnedshovlwyla 36 | eslint-plugin-import: 2.26.0_wyrfqmvemfacbroyi3ypviy7f4 37 | eslint-plugin-n: 15.2.2_eslint@8.17.0 38 | eslint-plugin-promise: 6.0.0_eslint@8.17.0 39 | nodemon: 2.0.16 40 | sucrase: 3.21.0 41 | typescript: 4.7.3 42 | 43 | packages: 44 | 45 | /@eslint/eslintrc/1.3.0: 46 | resolution: {integrity: sha512-UWW0TMTmk2d7hLcWD1/e2g5HDM/HQ3csaLSqXCfqwh4uNDuNqlaKWXmEsL4Cs41Z0KnILNvwbHAah3C2yt06kw==} 47 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} 48 | dependencies: 49 | ajv: 6.12.6 50 | debug: 4.3.4 51 | espree: 9.3.2 52 | globals: 13.15.0 53 | ignore: 5.2.0 54 | import-fresh: 3.3.0 55 | js-yaml: 4.1.0 56 | minimatch: 3.1.2 57 | strip-json-comments: 3.1.1 58 | transitivePeerDependencies: 59 | - supports-color 60 | dev: true 61 | 62 | /@humanwhocodes/config-array/0.9.5: 63 | resolution: {integrity: sha512-ObyMyWxZiCu/yTisA7uzx81s40xR2fD5Cg/2Kq7G02ajkNubJf6BopgDTmDyc3U7sXpNKM8cYOw7s7Tyr+DnCw==} 64 | engines: {node: '>=10.10.0'} 65 | dependencies: 66 | '@humanwhocodes/object-schema': 1.2.1 67 | debug: 4.3.4 68 | minimatch: 3.1.2 69 | transitivePeerDependencies: 70 | - supports-color 71 | dev: true 72 | 73 | /@humanwhocodes/object-schema/1.2.1: 74 | resolution: {integrity: sha512-ZnQMnLV4e7hDlUvw8H+U8ASL02SS2Gn6+9Ac3wGGLIe7+je2AeAOxPY+izIPJDfFDb7eDjev0Us8MO1iFRN8hA==} 75 | dev: true 76 | 77 | /@nodelib/fs.scandir/2.1.5: 78 | resolution: {integrity: sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==} 79 | engines: {node: '>= 8'} 80 | dependencies: 81 | '@nodelib/fs.stat': 2.0.5 82 | run-parallel: 1.2.0 83 | dev: true 84 | 85 | /@nodelib/fs.stat/2.0.5: 86 | resolution: {integrity: sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==} 87 | engines: {node: '>= 8'} 88 | dev: true 89 | 90 | /@nodelib/fs.walk/1.2.8: 91 | resolution: {integrity: sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==} 92 | engines: {node: '>= 8'} 93 | dependencies: 94 | '@nodelib/fs.scandir': 2.1.5 95 | fastq: 1.13.0 96 | dev: true 97 | 98 | /@sindresorhus/is/0.14.0: 99 | resolution: {integrity: sha512-9NET910DNaIPngYnLLPeg+Ogzqsi9uM4mSboU5y6p8S5DzMTVEsJZrawi+BoDNUVBa2DhJqQYUFvMDfgU062LQ==} 100 | engines: {node: '>=6'} 101 | dev: true 102 | 103 | /@szmarczak/http-timer/1.1.2: 104 | resolution: {integrity: sha512-XIB2XbzHTN6ieIjfIMV9hlVcfPU26s2vafYWQcZHWXHOxiaRZYEDKEwdl129Zyg50+foYV2jCgtrqSA6qNuNSA==} 105 | engines: {node: '>=6'} 106 | dependencies: 107 | defer-to-connect: 1.1.3 108 | dev: true 109 | 110 | /@types/json-schema/7.0.11: 111 | resolution: {integrity: sha512-wOuvG1SN4Us4rez+tylwwwCV1psiNVOkJeM3AUWUNWg/jDQY2+HE/444y5gc+jBmRqASOm2Oeh5c1axHobwRKQ==} 112 | dev: true 113 | 114 | /@types/json5/0.0.29: 115 | resolution: {integrity: sha512-dRLjCWHYg4oaA77cxO64oO+7JwCwnIzkZPdrrC71jQmQtlhM556pwKo5bUzqvZndkVbeFLIIi+9TC40JNF5hNQ==} 116 | dev: true 117 | 118 | /@types/keyv/3.1.4: 119 | resolution: {integrity: sha512-BQ5aZNSCpj7D6K2ksrRCTmKRLEpnPvWDiLPfoGyhZ++8YtiK9d/3DBKPJgry359X/P1PfruyYwvnvwFjuEiEIg==} 120 | dependencies: 121 | '@types/node': 17.0.42 122 | dev: true 123 | 124 | /@types/node/17.0.42: 125 | resolution: {integrity: sha512-Q5BPGyGKcvQgAMbsr7qEGN/kIPN6zZecYYABeTDBizOsau+2NMdSVTar9UQw21A2+JyA2KRNDYaYrPB0Rpk2oQ==} 126 | dev: true 127 | 128 | /@types/responselike/1.0.0: 129 | resolution: {integrity: sha512-85Y2BjiufFzaMIlvJDvTTB8Fxl2xfLo4HgmHzVBz08w4wDePCTjYw66PdrolO0kzli3yam/YCgRufyo1DdQVTA==} 130 | dependencies: 131 | '@types/node': 17.0.42 132 | dev: true 133 | 134 | /@types/sharp/0.30.4: 135 | resolution: {integrity: sha512-6oJEzKt7wZeS7e+6x9QFEOWGs0T/6of00+0onZGN1zSmcSjcTDZKgIGZ6YWJnHowpaKUCFBPH52mYljWqU32Eg==} 136 | dependencies: 137 | '@types/node': 17.0.42 138 | dev: true 139 | 140 | /@typescript-eslint/eslint-plugin/5.28.0_7yumg2qjgbp7maccqlfhx2vudu: 141 | resolution: {integrity: sha512-DXVU6Cg29H2M6EybqSg2A+x8DgO9TCUBRp4QEXQHJceLS7ogVDP0g3Lkg/SZCqcvkAP/RruuQqK0gdlkgmhSUA==} 142 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} 143 | peerDependencies: 144 | '@typescript-eslint/parser': ^5.0.0 145 | eslint: ^6.0.0 || ^7.0.0 || ^8.0.0 146 | typescript: '*' 147 | peerDependenciesMeta: 148 | typescript: 149 | optional: true 150 | dependencies: 151 | '@typescript-eslint/parser': 5.28.0_ud6rd4xtew5bv4yhvkvu24pzm4 152 | '@typescript-eslint/scope-manager': 5.28.0 153 | '@typescript-eslint/type-utils': 5.28.0_ud6rd4xtew5bv4yhvkvu24pzm4 154 | '@typescript-eslint/utils': 5.28.0_ud6rd4xtew5bv4yhvkvu24pzm4 155 | debug: 4.3.4 156 | eslint: 8.17.0 157 | functional-red-black-tree: 1.0.1 158 | ignore: 5.2.0 159 | regexpp: 3.2.0 160 | semver: 7.3.7 161 | tsutils: 3.21.0_typescript@4.7.3 162 | typescript: 4.7.3 163 | transitivePeerDependencies: 164 | - supports-color 165 | dev: true 166 | 167 | /@typescript-eslint/parser/5.28.0_ud6rd4xtew5bv4yhvkvu24pzm4: 168 | resolution: {integrity: sha512-ekqoNRNK1lAcKhZESN/PdpVsWbP9jtiNqzFWkp/yAUdZvJalw2heCYuqRmM5eUJSIYEkgq5sGOjq+ZqsLMjtRA==} 169 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} 170 | peerDependencies: 171 | eslint: ^6.0.0 || ^7.0.0 || ^8.0.0 172 | typescript: '*' 173 | peerDependenciesMeta: 174 | typescript: 175 | optional: true 176 | dependencies: 177 | '@typescript-eslint/scope-manager': 5.28.0 178 | '@typescript-eslint/types': 5.28.0 179 | '@typescript-eslint/typescript-estree': 5.28.0_typescript@4.7.3 180 | debug: 4.3.4 181 | eslint: 8.17.0 182 | typescript: 4.7.3 183 | transitivePeerDependencies: 184 | - supports-color 185 | dev: true 186 | 187 | /@typescript-eslint/scope-manager/5.28.0: 188 | resolution: {integrity: sha512-LeBLTqF/he1Z+boRhSqnso6YrzcKMTQ8bO/YKEe+6+O/JGof9M0g3IJlIsqfrK/6K03MlFIlycbf1uQR1IjE+w==} 189 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} 190 | dependencies: 191 | '@typescript-eslint/types': 5.28.0 192 | '@typescript-eslint/visitor-keys': 5.28.0 193 | dev: true 194 | 195 | /@typescript-eslint/type-utils/5.28.0_ud6rd4xtew5bv4yhvkvu24pzm4: 196 | resolution: {integrity: sha512-SyKjKh4CXPglueyC6ceAFytjYWMoPHMswPQae236zqe1YbhvCVQyIawesYywGiu98L9DwrxsBN69vGIVxJ4mQQ==} 197 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} 198 | peerDependencies: 199 | eslint: '*' 200 | typescript: '*' 201 | peerDependenciesMeta: 202 | typescript: 203 | optional: true 204 | dependencies: 205 | '@typescript-eslint/utils': 5.28.0_ud6rd4xtew5bv4yhvkvu24pzm4 206 | debug: 4.3.4 207 | eslint: 8.17.0 208 | tsutils: 3.21.0_typescript@4.7.3 209 | typescript: 4.7.3 210 | transitivePeerDependencies: 211 | - supports-color 212 | dev: true 213 | 214 | /@typescript-eslint/types/5.28.0: 215 | resolution: {integrity: sha512-2OOm8ZTOQxqkPbf+DAo8oc16sDlVR5owgJfKheBkxBKg1vAfw2JsSofH9+16VPlN9PWtv8Wzhklkqw3k/zCVxA==} 216 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} 217 | dev: true 218 | 219 | /@typescript-eslint/typescript-estree/5.28.0_typescript@4.7.3: 220 | resolution: {integrity: sha512-9GX+GfpV+F4hdTtYc6OV9ZkyYilGXPmQpm6AThInpBmKJEyRSIjORJd1G9+bknb7OTFYL+Vd4FBJAO6T78OVqA==} 221 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} 222 | peerDependencies: 223 | typescript: '*' 224 | peerDependenciesMeta: 225 | typescript: 226 | optional: true 227 | dependencies: 228 | '@typescript-eslint/types': 5.28.0 229 | '@typescript-eslint/visitor-keys': 5.28.0 230 | debug: 4.3.4 231 | globby: 11.1.0 232 | is-glob: 4.0.3 233 | semver: 7.3.7 234 | tsutils: 3.21.0_typescript@4.7.3 235 | typescript: 4.7.3 236 | transitivePeerDependencies: 237 | - supports-color 238 | dev: true 239 | 240 | /@typescript-eslint/utils/5.28.0_ud6rd4xtew5bv4yhvkvu24pzm4: 241 | resolution: {integrity: sha512-E60N5L0fjv7iPJV3UGc4EC+A3Lcj4jle9zzR0gW7vXhflO7/J29kwiTGITA2RlrmPokKiZbBy2DgaclCaEUs6g==} 242 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} 243 | peerDependencies: 244 | eslint: ^6.0.0 || ^7.0.0 || ^8.0.0 245 | dependencies: 246 | '@types/json-schema': 7.0.11 247 | '@typescript-eslint/scope-manager': 5.28.0 248 | '@typescript-eslint/types': 5.28.0 249 | '@typescript-eslint/typescript-estree': 5.28.0_typescript@4.7.3 250 | eslint: 8.17.0 251 | eslint-scope: 5.1.1 252 | eslint-utils: 3.0.0_eslint@8.17.0 253 | transitivePeerDependencies: 254 | - supports-color 255 | - typescript 256 | dev: true 257 | 258 | /@typescript-eslint/visitor-keys/5.28.0: 259 | resolution: {integrity: sha512-BtfP1vCor8cWacovzzPFOoeW4kBQxzmhxGoOpt0v1SFvG+nJ0cWaVdJk7cky1ArTcFHHKNIxyo2LLr3oNkSuXA==} 260 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} 261 | dependencies: 262 | '@typescript-eslint/types': 5.28.0 263 | eslint-visitor-keys: 3.3.0 264 | dev: true 265 | 266 | /abbrev/1.1.1: 267 | resolution: {integrity: sha512-nne9/IiQ/hzIhY6pdDnbBtz7DjPTKrY00P/zvPSm5pOFkl6xuGrGnXn/VtTNNfNtAfZ9/1RtehkszU9qcTii0Q==} 268 | dev: true 269 | 270 | /accepts/1.3.8: 271 | resolution: {integrity: sha512-PYAthTa2m2VKxuvSD3DPC/Gy+U+sOA1LAuT8mkmRuvw+NACSaeXEQ+NHcVF7rONl6qcaxV3Uuemwawk+7+SJLw==} 272 | engines: {node: '>= 0.6'} 273 | dependencies: 274 | mime-types: 2.1.35 275 | negotiator: 0.6.3 276 | dev: false 277 | 278 | /acorn-jsx/5.3.2_acorn@8.7.1: 279 | resolution: {integrity: sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==} 280 | peerDependencies: 281 | acorn: ^6.0.0 || ^7.0.0 || ^8.0.0 282 | dependencies: 283 | acorn: 8.7.1 284 | dev: true 285 | 286 | /acorn/8.7.1: 287 | resolution: {integrity: sha512-Xx54uLJQZ19lKygFXOWsscKUbsBZW0CPykPhVQdhIeIwrbPmJzqeASDInc8nKBnp/JT6igTs82qPXz069H8I/A==} 288 | engines: {node: '>=0.4.0'} 289 | hasBin: true 290 | dev: true 291 | 292 | /ajv/6.12.6: 293 | resolution: {integrity: sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==} 294 | dependencies: 295 | fast-deep-equal: 3.1.3 296 | fast-json-stable-stringify: 2.1.0 297 | json-schema-traverse: 0.4.1 298 | uri-js: 4.4.1 299 | dev: true 300 | 301 | /ansi-align/3.0.1: 302 | resolution: {integrity: sha512-IOfwwBF5iczOjp/WeY4YxyjqAFMQoZufdQWDd19SEExbVLNXqvpzSJ/M7Za4/sCPmQ0+GRquoA7bGcINcxew6w==} 303 | dependencies: 304 | string-width: 4.2.3 305 | dev: true 306 | 307 | /ansi-regex/5.0.1: 308 | resolution: {integrity: sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==} 309 | engines: {node: '>=8'} 310 | dev: true 311 | 312 | /ansi-styles/4.3.0: 313 | resolution: {integrity: sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==} 314 | engines: {node: '>=8'} 315 | dependencies: 316 | color-convert: 2.0.1 317 | dev: true 318 | 319 | /any-promise/1.3.0: 320 | resolution: {integrity: sha512-7UvmKalWRt1wgjL1RrGxoSJW/0QZFIegpeGvZG9kjp8vrRu55XTHbwnqq2GpXm9uLbcuhxm3IqX9OB4MZR1b2A==} 321 | dev: true 322 | 323 | /anymatch/3.1.2: 324 | resolution: {integrity: sha512-P43ePfOAIupkguHUycrc4qJ9kz8ZiuOUijaETwX7THt0Y/GNK7v0aa8rY816xWjZ7rJdA5XdMcpVFTKMq+RvWg==} 325 | engines: {node: '>= 8'} 326 | dependencies: 327 | normalize-path: 3.0.0 328 | picomatch: 2.3.1 329 | dev: true 330 | 331 | /argparse/2.0.1: 332 | resolution: {integrity: sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==} 333 | dev: true 334 | 335 | /array-flatten/1.1.1: 336 | resolution: {integrity: sha512-PCVAQswWemu6UdxsDFFX/+gVeYqKAod3D3UVm91jHwynguOwAvYPhx8nNlM++NqRcK6CxxpUafjmhIdKiHibqg==} 337 | dev: false 338 | 339 | /array-includes/3.1.5: 340 | resolution: {integrity: sha512-iSDYZMMyTPkiFasVqfuAQnWAYcvO/SeBSCGKePoEthjp4LEMTe4uLc7b025o4jAZpHhihh8xPo99TNWUWWkGDQ==} 341 | engines: {node: '>= 0.4'} 342 | dependencies: 343 | call-bind: 1.0.2 344 | define-properties: 1.1.4 345 | es-abstract: 1.20.1 346 | get-intrinsic: 1.1.2 347 | is-string: 1.0.7 348 | dev: true 349 | 350 | /array-union/2.1.0: 351 | resolution: {integrity: sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==} 352 | engines: {node: '>=8'} 353 | dev: true 354 | 355 | /array.prototype.flat/1.3.0: 356 | resolution: {integrity: sha512-12IUEkHsAhA4DY5s0FPgNXIdc8VRSqD9Zp78a5au9abH/SOBrsp082JOWFNTjkMozh8mqcdiKuaLGhPeYztxSw==} 357 | engines: {node: '>= 0.4'} 358 | dependencies: 359 | call-bind: 1.0.2 360 | define-properties: 1.1.4 361 | es-abstract: 1.20.1 362 | es-shim-unscopables: 1.0.0 363 | dev: true 364 | 365 | /asynckit/0.4.0: 366 | resolution: {integrity: sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==} 367 | dev: false 368 | 369 | /axios/0.27.2: 370 | resolution: {integrity: sha512-t+yRIyySRTp/wua5xEr+z1q60QmLq8ABsS5O9Me1AsE5dfKqgnCFzwiCZZ/cGNd1lq4/7akDWMxdhVlucjmnOQ==} 371 | dependencies: 372 | follow-redirects: 1.15.1 373 | form-data: 4.0.0 374 | transitivePeerDependencies: 375 | - debug 376 | dev: false 377 | 378 | /balanced-match/1.0.2: 379 | resolution: {integrity: sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==} 380 | dev: true 381 | 382 | /base64-js/1.5.1: 383 | resolution: {integrity: sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==} 384 | dev: false 385 | 386 | /binary-extensions/2.2.0: 387 | resolution: {integrity: sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA==} 388 | engines: {node: '>=8'} 389 | dev: true 390 | 391 | /bl/4.1.0: 392 | resolution: {integrity: sha512-1W07cM9gS6DcLperZfFSj+bWLtaPGSOHWhPiGzXmvVJbRLdG82sH/Kn8EtW1VqWVA54AKf2h5k5BbnIbwF3h6w==} 393 | dependencies: 394 | buffer: 5.7.1 395 | inherits: 2.0.4 396 | readable-stream: 3.6.0 397 | dev: false 398 | 399 | /body-parser/1.20.0: 400 | resolution: {integrity: sha512-DfJ+q6EPcGKZD1QWUjSpqp+Q7bDQTsQIF4zfUAtZ6qk+H/3/QRhg9CEp39ss+/T2vw0+HaidC0ecJj/DRLIaKg==} 401 | engines: {node: '>= 0.8', npm: 1.2.8000 || >= 1.4.16} 402 | dependencies: 403 | bytes: 3.1.2 404 | content-type: 1.0.4 405 | debug: 2.6.9 406 | depd: 2.0.0 407 | destroy: 1.2.0 408 | http-errors: 2.0.0 409 | iconv-lite: 0.4.24 410 | on-finished: 2.4.1 411 | qs: 6.10.3 412 | raw-body: 2.5.1 413 | type-is: 1.6.18 414 | unpipe: 1.0.0 415 | transitivePeerDependencies: 416 | - supports-color 417 | dev: false 418 | 419 | /boxen/5.1.2: 420 | resolution: {integrity: sha512-9gYgQKXx+1nP8mP7CzFyaUARhg7D3n1dF/FnErWmu9l6JvGpNUN278h0aSb+QjoiKSWG+iZ3uHrcqk0qrY9RQQ==} 421 | engines: {node: '>=10'} 422 | dependencies: 423 | ansi-align: 3.0.1 424 | camelcase: 6.3.0 425 | chalk: 4.1.2 426 | cli-boxes: 2.2.1 427 | string-width: 4.2.3 428 | type-fest: 0.20.2 429 | widest-line: 3.1.0 430 | wrap-ansi: 7.0.0 431 | dev: true 432 | 433 | /brace-expansion/1.1.11: 434 | resolution: {integrity: sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==} 435 | dependencies: 436 | balanced-match: 1.0.2 437 | concat-map: 0.0.1 438 | dev: true 439 | 440 | /braces/3.0.2: 441 | resolution: {integrity: sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==} 442 | engines: {node: '>=8'} 443 | dependencies: 444 | fill-range: 7.0.1 445 | dev: true 446 | 447 | /buffer/5.7.1: 448 | resolution: {integrity: sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ==} 449 | dependencies: 450 | base64-js: 1.5.1 451 | ieee754: 1.2.1 452 | dev: false 453 | 454 | /builtins/5.0.1: 455 | resolution: {integrity: sha512-qwVpFEHNfhYJIzNRBvd2C1kyo6jz3ZSMPyyuR47OPdiKWlbYnZNyDWuyR175qDnAJLiCo5fBBqPb3RiXgWlkOQ==} 456 | dependencies: 457 | semver: 7.3.7 458 | dev: true 459 | 460 | /bytes/3.1.2: 461 | resolution: {integrity: sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==} 462 | engines: {node: '>= 0.8'} 463 | dev: false 464 | 465 | /cacheable-request/6.1.0: 466 | resolution: {integrity: sha512-Oj3cAGPCqOZX7Rz64Uny2GYAZNliQSqfbePrgAQ1wKAihYmCUnraBtJtKcGR4xz7wF+LoJC+ssFZvv5BgF9Igg==} 467 | engines: {node: '>=8'} 468 | dependencies: 469 | clone-response: 1.0.2 470 | get-stream: 5.2.0 471 | http-cache-semantics: 4.1.0 472 | keyv: 3.1.0 473 | lowercase-keys: 2.0.0 474 | normalize-url: 4.5.1 475 | responselike: 1.0.2 476 | dev: true 477 | 478 | /call-bind/1.0.2: 479 | resolution: {integrity: sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA==} 480 | dependencies: 481 | function-bind: 1.1.1 482 | get-intrinsic: 1.1.2 483 | 484 | /callsites/3.1.0: 485 | resolution: {integrity: sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==} 486 | engines: {node: '>=6'} 487 | dev: true 488 | 489 | /camelcase/6.3.0: 490 | resolution: {integrity: sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==} 491 | engines: {node: '>=10'} 492 | dev: true 493 | 494 | /chalk/4.1.2: 495 | resolution: {integrity: sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==} 496 | engines: {node: '>=10'} 497 | dependencies: 498 | ansi-styles: 4.3.0 499 | supports-color: 7.2.0 500 | dev: true 501 | 502 | /chokidar/3.5.3: 503 | resolution: {integrity: sha512-Dr3sfKRP6oTcjf2JmUmFJfeVMvXBdegxB0iVQ5eb2V10uFJUCAS8OByZdVAyVb8xXNz3GjjTgj9kLWsZTqE6kw==} 504 | engines: {node: '>= 8.10.0'} 505 | dependencies: 506 | anymatch: 3.1.2 507 | braces: 3.0.2 508 | glob-parent: 5.1.2 509 | is-binary-path: 2.1.0 510 | is-glob: 4.0.3 511 | normalize-path: 3.0.0 512 | readdirp: 3.6.0 513 | optionalDependencies: 514 | fsevents: 2.3.2 515 | dev: true 516 | 517 | /chownr/1.1.4: 518 | resolution: {integrity: sha512-jJ0bqzaylmJtVnNgzTeSOs8DPavpbYgEr/b0YL8/2GO3xJEhInFmhKMUnEJQjZumK7KXGFhUy89PrsJWlakBVg==} 519 | dev: false 520 | 521 | /ci-info/2.0.0: 522 | resolution: {integrity: sha512-5tK7EtrZ0N+OLFMthtqOj4fI2Jeb88C4CAZPu25LDVUgXJ0A3Js4PMGqrn0JU1W0Mh1/Z8wZzYPxqUrXeBboCQ==} 523 | dev: true 524 | 525 | /cli-boxes/2.2.1: 526 | resolution: {integrity: sha512-y4coMcylgSCdVinjiDBuR8PCC2bLjyGTwEmPb9NHR/QaNU6EUOXcTY/s6VjGMD6ENSEaeQYHCY0GNGS5jfMwPw==} 527 | engines: {node: '>=6'} 528 | dev: true 529 | 530 | /clone-response/1.0.2: 531 | resolution: {integrity: sha512-yjLXh88P599UOyPTFX0POsd7WxnbsVsGohcwzHOLspIhhpalPw1BcqED8NblyZLKcGrL8dTgMlcaZxV2jAD41Q==} 532 | dependencies: 533 | mimic-response: 1.0.1 534 | dev: true 535 | 536 | /color-convert/2.0.1: 537 | resolution: {integrity: sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==} 538 | engines: {node: '>=7.0.0'} 539 | dependencies: 540 | color-name: 1.1.4 541 | 542 | /color-name/1.1.4: 543 | resolution: {integrity: sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==} 544 | 545 | /color-string/1.9.1: 546 | resolution: {integrity: sha512-shrVawQFojnZv6xM40anx4CkoDP+fZsw/ZerEMsW/pyzsRbElpsL/DBVW7q3ExxwusdNXI3lXpuhEZkzs8p5Eg==} 547 | dependencies: 548 | color-name: 1.1.4 549 | simple-swizzle: 0.2.2 550 | dev: false 551 | 552 | /color/4.2.3: 553 | resolution: {integrity: sha512-1rXeuUUiGGrykh+CeBdu5Ie7OJwinCgQY0bc7GCRxy5xVHy+moaqkpL/jqQq0MtQOeYcrqEz4abc5f0KtU7W4A==} 554 | engines: {node: '>=12.5.0'} 555 | dependencies: 556 | color-convert: 2.0.1 557 | color-string: 1.9.1 558 | dev: false 559 | 560 | /combined-stream/1.0.8: 561 | resolution: {integrity: sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==} 562 | engines: {node: '>= 0.8'} 563 | dependencies: 564 | delayed-stream: 1.0.0 565 | dev: false 566 | 567 | /commander/4.1.1: 568 | resolution: {integrity: sha512-NOKm8xhkzAjzFx8B2v5OAHT+u5pRQc2UCa2Vq9jYL/31o2wi9mxBA7LIFs3sV5VSC49z6pEhfbMULvShKj26WA==} 569 | engines: {node: '>= 6'} 570 | dev: true 571 | 572 | /concat-map/0.0.1: 573 | resolution: {integrity: sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==} 574 | dev: true 575 | 576 | /configstore/5.0.1: 577 | resolution: {integrity: sha512-aMKprgk5YhBNyH25hj8wGt2+D52Sw1DRRIzqBwLp2Ya9mFmY8KPvvtvmna8SxVR9JMZ4kzMD68N22vlaRpkeFA==} 578 | engines: {node: '>=8'} 579 | dependencies: 580 | dot-prop: 5.3.0 581 | graceful-fs: 4.2.10 582 | make-dir: 3.1.0 583 | unique-string: 2.0.0 584 | write-file-atomic: 3.0.3 585 | xdg-basedir: 4.0.0 586 | dev: true 587 | 588 | /content-disposition/0.5.4: 589 | resolution: {integrity: sha512-FveZTNuGw04cxlAiWbzi6zTAL/lhehaWbTtgluJh4/E95DqMwTmha3KZN1aAWA8cFIhHzMZUvLevkw5Rqk+tSQ==} 590 | engines: {node: '>= 0.6'} 591 | dependencies: 592 | safe-buffer: 5.2.1 593 | dev: false 594 | 595 | /content-type/1.0.4: 596 | resolution: {integrity: sha512-hIP3EEPs8tB9AT1L+NUqtwOAps4mk2Zob89MWXMHjHWg9milF/j4osnnQLXBCBFBk/tvIG/tUc9mOUJiPBhPXA==} 597 | engines: {node: '>= 0.6'} 598 | dev: false 599 | 600 | /cookie-signature/1.0.6: 601 | resolution: {integrity: sha512-QADzlaHc8icV8I7vbaJXJwod9HWYp8uCqf1xa4OfNu1T7JVxQIrUgOWtHdNDtPiywmFbiS12VjotIXLrKM3orQ==} 602 | dev: false 603 | 604 | /cookie/0.5.0: 605 | resolution: {integrity: sha512-YZ3GUyn/o8gfKJlnlX7g7xq4gyO6OSuhGPKaaGssGB2qgDUS0gPgtTvoyZLTt9Ab6dC4hfc9dV5arkvc/OCmrw==} 606 | engines: {node: '>= 0.6'} 607 | dev: false 608 | 609 | /cross-spawn/7.0.3: 610 | resolution: {integrity: sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==} 611 | engines: {node: '>= 8'} 612 | dependencies: 613 | path-key: 3.1.1 614 | shebang-command: 2.0.0 615 | which: 2.0.2 616 | dev: true 617 | 618 | /crypto-random-string/2.0.0: 619 | resolution: {integrity: sha512-v1plID3y9r/lPhviJ1wrXpLeyUIGAZ2SHNYTEapm7/8A9nLPoyvVp3RK/EPFqn5kEznyWgYZNsRtYYIWbuG8KA==} 620 | engines: {node: '>=8'} 621 | dev: true 622 | 623 | /debug/2.6.9: 624 | resolution: {integrity: sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==} 625 | peerDependencies: 626 | supports-color: '*' 627 | peerDependenciesMeta: 628 | supports-color: 629 | optional: true 630 | dependencies: 631 | ms: 2.0.0 632 | 633 | /debug/3.2.7: 634 | resolution: {integrity: sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==} 635 | peerDependencies: 636 | supports-color: '*' 637 | peerDependenciesMeta: 638 | supports-color: 639 | optional: true 640 | dependencies: 641 | ms: 2.1.3 642 | dev: true 643 | 644 | /debug/3.2.7_supports-color@5.5.0: 645 | resolution: {integrity: sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==} 646 | peerDependencies: 647 | supports-color: '*' 648 | peerDependenciesMeta: 649 | supports-color: 650 | optional: true 651 | dependencies: 652 | ms: 2.1.3 653 | supports-color: 5.5.0 654 | dev: true 655 | 656 | /debug/4.3.4: 657 | resolution: {integrity: sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==} 658 | engines: {node: '>=6.0'} 659 | peerDependencies: 660 | supports-color: '*' 661 | peerDependenciesMeta: 662 | supports-color: 663 | optional: true 664 | dependencies: 665 | ms: 2.1.2 666 | dev: true 667 | 668 | /decompress-response/3.3.0: 669 | resolution: {integrity: sha512-BzRPQuY1ip+qDonAOz42gRm/pg9F768C+npV/4JOsxRC2sq+Rlk+Q4ZCAsOhnIaMrgarILY+RMUIvMmmX1qAEA==} 670 | engines: {node: '>=4'} 671 | dependencies: 672 | mimic-response: 1.0.1 673 | dev: true 674 | 675 | /decompress-response/6.0.0: 676 | resolution: {integrity: sha512-aW35yZM6Bb/4oJlZncMH2LCoZtJXTRxES17vE3hoRiowU2kWHaJKFkSBDnDR+cm9J+9QhXmREyIfv0pji9ejCQ==} 677 | engines: {node: '>=10'} 678 | dependencies: 679 | mimic-response: 3.1.0 680 | dev: false 681 | 682 | /deep-extend/0.6.0: 683 | resolution: {integrity: sha512-LOHxIOaPYdHlJRtCQfDIVZtfw/ufM8+rVj649RIHzcm/vGwQRXFt6OPqIFWsm2XEMrNIEtWR64sY1LEKD2vAOA==} 684 | engines: {node: '>=4.0.0'} 685 | 686 | /deep-is/0.1.4: 687 | resolution: {integrity: sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==} 688 | dev: true 689 | 690 | /defer-to-connect/1.1.3: 691 | resolution: {integrity: sha512-0ISdNousHvZT2EiFlZeZAHBUvSxmKswVCEf8hW7KWgG4a8MVEu/3Vb6uWYozkjylyCxe0JBIiRB1jV45S70WVQ==} 692 | dev: true 693 | 694 | /define-properties/1.1.4: 695 | resolution: {integrity: sha512-uckOqKcfaVvtBdsVkdPv3XjveQJsNQqmhXgRi8uhvWWuPYZCNlzT8qAyblUgNoXdHdjMTzAqeGjAoli8f+bzPA==} 696 | engines: {node: '>= 0.4'} 697 | dependencies: 698 | has-property-descriptors: 1.0.0 699 | object-keys: 1.1.1 700 | dev: true 701 | 702 | /delayed-stream/1.0.0: 703 | resolution: {integrity: sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==} 704 | engines: {node: '>=0.4.0'} 705 | dev: false 706 | 707 | /depd/2.0.0: 708 | resolution: {integrity: sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw==} 709 | engines: {node: '>= 0.8'} 710 | dev: false 711 | 712 | /destroy/1.2.0: 713 | resolution: {integrity: sha512-2sJGJTaXIIaR1w4iJSNoN0hnMY7Gpc/n8D4qSCJw8QqFWXf7cuAgnEHxBpweaVcPevC2l3KpjYCx3NypQQgaJg==} 714 | engines: {node: '>= 0.8', npm: 1.2.8000 || >= 1.4.16} 715 | dev: false 716 | 717 | /detect-libc/2.0.1: 718 | resolution: {integrity: sha512-463v3ZeIrcWtdgIg6vI6XUncguvr2TnGl4SzDXinkt9mSLpBJKXT3mW6xT3VQdDN11+WVs29pgvivTc4Lp8v+w==} 719 | engines: {node: '>=8'} 720 | dev: false 721 | 722 | /dir-glob/3.0.1: 723 | resolution: {integrity: sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==} 724 | engines: {node: '>=8'} 725 | dependencies: 726 | path-type: 4.0.0 727 | dev: true 728 | 729 | /doctrine/2.1.0: 730 | resolution: {integrity: sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==} 731 | engines: {node: '>=0.10.0'} 732 | dependencies: 733 | esutils: 2.0.3 734 | dev: true 735 | 736 | /doctrine/3.0.0: 737 | resolution: {integrity: sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==} 738 | engines: {node: '>=6.0.0'} 739 | dependencies: 740 | esutils: 2.0.3 741 | dev: true 742 | 743 | /dot-prop/5.3.0: 744 | resolution: {integrity: sha512-QM8q3zDe58hqUqjraQOmzZ1LIH9SWQJTlEKCH4kJ2oQvLZk7RbQXvtDM2XEq3fwkV9CCvvH4LA0AV+ogFsBM2Q==} 745 | engines: {node: '>=8'} 746 | dependencies: 747 | is-obj: 2.0.0 748 | dev: true 749 | 750 | /dotenv/16.0.1: 751 | resolution: {integrity: sha512-1K6hR6wtk2FviQ4kEiSjFiH5rpzEVi8WW0x96aztHVMhEspNpc4DVOUTEHtEva5VThQ8IaBX1Pe4gSzpVVUsKQ==} 752 | engines: {node: '>=12'} 753 | dev: false 754 | 755 | /duplexer3/0.1.4: 756 | resolution: {integrity: sha512-CEj8FwwNA4cVH2uFCoHUrmojhYh1vmCdOaneKJXwkeY1i9jnlslVo9dx+hQ5Hl9GnH/Bwy/IjxAyOePyPKYnzA==} 757 | dev: true 758 | 759 | /ee-first/1.1.1: 760 | resolution: {integrity: sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==} 761 | dev: false 762 | 763 | /emoji-regex/8.0.0: 764 | resolution: {integrity: sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==} 765 | dev: true 766 | 767 | /encodeurl/1.0.2: 768 | resolution: {integrity: sha512-TPJXq8JqFaVYm2CWmPvnP2Iyo4ZSM7/QKcSmuMLDObfpH5fi7RUGmd/rTDf+rut/saiDiQEeVTNgAmJEdAOx0w==} 769 | engines: {node: '>= 0.8'} 770 | dev: false 771 | 772 | /end-of-stream/1.4.4: 773 | resolution: {integrity: sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q==} 774 | dependencies: 775 | once: 1.4.0 776 | 777 | /es-abstract/1.20.1: 778 | resolution: {integrity: sha512-WEm2oBhfoI2sImeM4OF2zE2V3BYdSF+KnSi9Sidz51fQHd7+JuF8Xgcj9/0o+OWeIeIS/MiuNnlruQrJf16GQA==} 779 | engines: {node: '>= 0.4'} 780 | dependencies: 781 | call-bind: 1.0.2 782 | es-to-primitive: 1.2.1 783 | function-bind: 1.1.1 784 | function.prototype.name: 1.1.5 785 | get-intrinsic: 1.1.2 786 | get-symbol-description: 1.0.0 787 | has: 1.0.3 788 | has-property-descriptors: 1.0.0 789 | has-symbols: 1.0.3 790 | internal-slot: 1.0.3 791 | is-callable: 1.2.4 792 | is-negative-zero: 2.0.2 793 | is-regex: 1.1.4 794 | is-shared-array-buffer: 1.0.2 795 | is-string: 1.0.7 796 | is-weakref: 1.0.2 797 | object-inspect: 1.12.2 798 | object-keys: 1.1.1 799 | object.assign: 4.1.2 800 | regexp.prototype.flags: 1.4.3 801 | string.prototype.trimend: 1.0.5 802 | string.prototype.trimstart: 1.0.5 803 | unbox-primitive: 1.0.2 804 | dev: true 805 | 806 | /es-shim-unscopables/1.0.0: 807 | resolution: {integrity: sha512-Jm6GPcCdC30eMLbZ2x8z2WuRwAws3zTBBKuusffYVUrNj/GVSUAZ+xKMaUpfNDR5IbyNA5LJbaecoUVbmUcB1w==} 808 | dependencies: 809 | has: 1.0.3 810 | dev: true 811 | 812 | /es-to-primitive/1.2.1: 813 | resolution: {integrity: sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==} 814 | engines: {node: '>= 0.4'} 815 | dependencies: 816 | is-callable: 1.2.4 817 | is-date-object: 1.0.5 818 | is-symbol: 1.0.4 819 | dev: true 820 | 821 | /escape-goat/2.1.1: 822 | resolution: {integrity: sha512-8/uIhbG12Csjy2JEW7D9pHbreaVaS/OpN3ycnyvElTdwM5n6GY6W6e2IPemfvGZeUMqZ9A/3GqIZMgKnBhAw/Q==} 823 | engines: {node: '>=8'} 824 | dev: true 825 | 826 | /escape-html/1.0.3: 827 | resolution: {integrity: sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow==} 828 | dev: false 829 | 830 | /escape-string-regexp/4.0.0: 831 | resolution: {integrity: sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==} 832 | engines: {node: '>=10'} 833 | dev: true 834 | 835 | /eslint-config-standard/17.0.0_2vzjc6wa644febnedshovlwyla: 836 | resolution: {integrity: sha512-/2ks1GKyqSOkH7JFvXJicu0iMpoojkwB+f5Du/1SC0PtBL+s8v30k9njRZ21pm2drKYm2342jFnGWzttxPmZVg==} 837 | peerDependencies: 838 | eslint: ^8.0.1 839 | eslint-plugin-import: ^2.25.2 840 | eslint-plugin-n: ^15.0.0 841 | eslint-plugin-promise: ^6.0.0 842 | dependencies: 843 | eslint: 8.17.0 844 | eslint-plugin-import: 2.26.0_wyrfqmvemfacbroyi3ypviy7f4 845 | eslint-plugin-n: 15.2.2_eslint@8.17.0 846 | eslint-plugin-promise: 6.0.0_eslint@8.17.0 847 | dev: true 848 | 849 | /eslint-import-resolver-node/0.3.6: 850 | resolution: {integrity: sha512-0En0w03NRVMn9Uiyn8YRPDKvWjxCWkslUEhGNTdGx15RvPJYQ+lbOlqrlNI2vEAs4pDYK4f/HN2TbDmk5TP0iw==} 851 | dependencies: 852 | debug: 3.2.7 853 | resolve: 1.22.0 854 | transitivePeerDependencies: 855 | - supports-color 856 | dev: true 857 | 858 | /eslint-module-utils/2.7.3_cfsupm63rr3qvqifljk6nmy67u: 859 | resolution: {integrity: sha512-088JEC7O3lDZM9xGe0RerkOMd0EjFl+Yvd1jPWIkMT5u3H9+HC34mWWPnqPrN13gieT9pBOO+Qt07Nb/6TresQ==} 860 | engines: {node: '>=4'} 861 | peerDependencies: 862 | '@typescript-eslint/parser': '*' 863 | eslint-import-resolver-node: '*' 864 | eslint-import-resolver-typescript: '*' 865 | eslint-import-resolver-webpack: '*' 866 | peerDependenciesMeta: 867 | '@typescript-eslint/parser': 868 | optional: true 869 | eslint-import-resolver-node: 870 | optional: true 871 | eslint-import-resolver-typescript: 872 | optional: true 873 | eslint-import-resolver-webpack: 874 | optional: true 875 | dependencies: 876 | '@typescript-eslint/parser': 5.28.0_ud6rd4xtew5bv4yhvkvu24pzm4 877 | debug: 3.2.7 878 | eslint-import-resolver-node: 0.3.6 879 | find-up: 2.1.0 880 | transitivePeerDependencies: 881 | - supports-color 882 | dev: true 883 | 884 | /eslint-plugin-es/4.1.0_eslint@8.17.0: 885 | resolution: {integrity: sha512-GILhQTnjYE2WorX5Jyi5i4dz5ALWxBIdQECVQavL6s7cI76IZTDWleTHkxz/QT3kvcs2QlGHvKLYsSlPOlPXnQ==} 886 | engines: {node: '>=8.10.0'} 887 | peerDependencies: 888 | eslint: '>=4.19.1' 889 | dependencies: 890 | eslint: 8.17.0 891 | eslint-utils: 2.1.0 892 | regexpp: 3.2.0 893 | dev: true 894 | 895 | /eslint-plugin-import/2.26.0_wyrfqmvemfacbroyi3ypviy7f4: 896 | resolution: {integrity: sha512-hYfi3FXaM8WPLf4S1cikh/r4IxnO6zrhZbEGz2b660EJRbuxgpDS5gkCuYgGWg2xxh2rBuIr4Pvhve/7c31koA==} 897 | engines: {node: '>=4'} 898 | peerDependencies: 899 | '@typescript-eslint/parser': '*' 900 | eslint: ^2 || ^3 || ^4 || ^5 || ^6 || ^7.2.0 || ^8 901 | peerDependenciesMeta: 902 | '@typescript-eslint/parser': 903 | optional: true 904 | dependencies: 905 | '@typescript-eslint/parser': 5.28.0_ud6rd4xtew5bv4yhvkvu24pzm4 906 | array-includes: 3.1.5 907 | array.prototype.flat: 1.3.0 908 | debug: 2.6.9 909 | doctrine: 2.1.0 910 | eslint: 8.17.0 911 | eslint-import-resolver-node: 0.3.6 912 | eslint-module-utils: 2.7.3_cfsupm63rr3qvqifljk6nmy67u 913 | has: 1.0.3 914 | is-core-module: 2.9.0 915 | is-glob: 4.0.3 916 | minimatch: 3.1.2 917 | object.values: 1.1.5 918 | resolve: 1.22.0 919 | tsconfig-paths: 3.14.1 920 | transitivePeerDependencies: 921 | - eslint-import-resolver-typescript 922 | - eslint-import-resolver-webpack 923 | - supports-color 924 | dev: true 925 | 926 | /eslint-plugin-n/15.2.2_eslint@8.17.0: 927 | resolution: {integrity: sha512-MLjZVAv4TiCIoXqjibNqCJjLkGHfrOY3XZ0ZBLoW0OnS3o98PUBnzB/kfp8dCz/4A4Y18jjX50PRnqI4ACFY1Q==} 928 | engines: {node: '>=12.22.0'} 929 | peerDependencies: 930 | eslint: '>=7.0.0' 931 | dependencies: 932 | builtins: 5.0.1 933 | eslint: 8.17.0 934 | eslint-plugin-es: 4.1.0_eslint@8.17.0 935 | eslint-utils: 3.0.0_eslint@8.17.0 936 | ignore: 5.2.0 937 | is-core-module: 2.9.0 938 | minimatch: 3.1.2 939 | resolve: 1.22.0 940 | semver: 7.3.7 941 | dev: true 942 | 943 | /eslint-plugin-promise/6.0.0_eslint@8.17.0: 944 | resolution: {integrity: sha512-7GPezalm5Bfi/E22PnQxDWH2iW9GTvAlUNTztemeHb6c1BniSyoeTrM87JkC0wYdi6aQrZX9p2qEiAno8aTcbw==} 945 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} 946 | peerDependencies: 947 | eslint: ^7.0.0 || ^8.0.0 948 | dependencies: 949 | eslint: 8.17.0 950 | dev: true 951 | 952 | /eslint-scope/5.1.1: 953 | resolution: {integrity: sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw==} 954 | engines: {node: '>=8.0.0'} 955 | dependencies: 956 | esrecurse: 4.3.0 957 | estraverse: 4.3.0 958 | dev: true 959 | 960 | /eslint-scope/7.1.1: 961 | resolution: {integrity: sha512-QKQM/UXpIiHcLqJ5AOyIW7XZmzjkzQXYE54n1++wb0u9V/abW3l9uQnxX8Z5Xd18xyKIMTUAyQ0k1e8pz6LUrw==} 962 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} 963 | dependencies: 964 | esrecurse: 4.3.0 965 | estraverse: 5.3.0 966 | dev: true 967 | 968 | /eslint-utils/2.1.0: 969 | resolution: {integrity: sha512-w94dQYoauyvlDc43XnGB8lU3Zt713vNChgt4EWwhXAP2XkBvndfxF0AgIqKOOasjPIPzj9JqgwkwbCYD0/V3Zg==} 970 | engines: {node: '>=6'} 971 | dependencies: 972 | eslint-visitor-keys: 1.3.0 973 | dev: true 974 | 975 | /eslint-utils/3.0.0_eslint@8.17.0: 976 | resolution: {integrity: sha512-uuQC43IGctw68pJA1RgbQS8/NP7rch6Cwd4j3ZBtgo4/8Flj4eGE7ZYSZRN3iq5pVUv6GPdW5Z1RFleo84uLDA==} 977 | engines: {node: ^10.0.0 || ^12.0.0 || >= 14.0.0} 978 | peerDependencies: 979 | eslint: '>=5' 980 | dependencies: 981 | eslint: 8.17.0 982 | eslint-visitor-keys: 2.1.0 983 | dev: true 984 | 985 | /eslint-visitor-keys/1.3.0: 986 | resolution: {integrity: sha512-6J72N8UNa462wa/KFODt/PJ3IU60SDpC3QXC1Hjc1BXXpfL2C9R5+AU7jhe0F6GREqVMh4Juu+NY7xn+6dipUQ==} 987 | engines: {node: '>=4'} 988 | dev: true 989 | 990 | /eslint-visitor-keys/2.1.0: 991 | resolution: {integrity: sha512-0rSmRBzXgDzIsD6mGdJgevzgezI534Cer5L/vyMX0kHzT/jiB43jRhd9YUlMGYLQy2zprNmoT8qasCGtY+QaKw==} 992 | engines: {node: '>=10'} 993 | dev: true 994 | 995 | /eslint-visitor-keys/3.3.0: 996 | resolution: {integrity: sha512-mQ+suqKJVyeuwGYHAdjMFqjCyfl8+Ldnxuyp3ldiMBFKkvytrXUZWaiPCEav8qDHKty44bD+qV1IP4T+w+xXRA==} 997 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} 998 | dev: true 999 | 1000 | /eslint/8.17.0: 1001 | resolution: {integrity: sha512-gq0m0BTJfci60Fz4nczYxNAlED+sMcihltndR8t9t1evnU/azx53x3t2UHXC/uRjcbvRw/XctpaNygSTcQD+Iw==} 1002 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} 1003 | hasBin: true 1004 | dependencies: 1005 | '@eslint/eslintrc': 1.3.0 1006 | '@humanwhocodes/config-array': 0.9.5 1007 | ajv: 6.12.6 1008 | chalk: 4.1.2 1009 | cross-spawn: 7.0.3 1010 | debug: 4.3.4 1011 | doctrine: 3.0.0 1012 | escape-string-regexp: 4.0.0 1013 | eslint-scope: 7.1.1 1014 | eslint-utils: 3.0.0_eslint@8.17.0 1015 | eslint-visitor-keys: 3.3.0 1016 | espree: 9.3.2 1017 | esquery: 1.4.0 1018 | esutils: 2.0.3 1019 | fast-deep-equal: 3.1.3 1020 | file-entry-cache: 6.0.1 1021 | functional-red-black-tree: 1.0.1 1022 | glob-parent: 6.0.2 1023 | globals: 13.15.0 1024 | ignore: 5.2.0 1025 | import-fresh: 3.3.0 1026 | imurmurhash: 0.1.4 1027 | is-glob: 4.0.3 1028 | js-yaml: 4.1.0 1029 | json-stable-stringify-without-jsonify: 1.0.1 1030 | levn: 0.4.1 1031 | lodash.merge: 4.6.2 1032 | minimatch: 3.1.2 1033 | natural-compare: 1.4.0 1034 | optionator: 0.9.1 1035 | regexpp: 3.2.0 1036 | strip-ansi: 6.0.1 1037 | strip-json-comments: 3.1.1 1038 | text-table: 0.2.0 1039 | v8-compile-cache: 2.3.0 1040 | transitivePeerDependencies: 1041 | - supports-color 1042 | dev: true 1043 | 1044 | /espree/9.3.2: 1045 | resolution: {integrity: sha512-D211tC7ZwouTIuY5x9XnS0E9sWNChB7IYKX/Xp5eQj3nFXhqmiUDB9q27y76oFl8jTg3pXcQx/bpxMfs3CIZbA==} 1046 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} 1047 | dependencies: 1048 | acorn: 8.7.1 1049 | acorn-jsx: 5.3.2_acorn@8.7.1 1050 | eslint-visitor-keys: 3.3.0 1051 | dev: true 1052 | 1053 | /esquery/1.4.0: 1054 | resolution: {integrity: sha512-cCDispWt5vHHtwMY2YrAQ4ibFkAL8RbH5YGBnZBc90MolvvfkkQcJro/aZiAQUlQ3qgrYS6D6v8Gc5G5CQsc9w==} 1055 | engines: {node: '>=0.10'} 1056 | dependencies: 1057 | estraverse: 5.3.0 1058 | dev: true 1059 | 1060 | /esrecurse/4.3.0: 1061 | resolution: {integrity: sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==} 1062 | engines: {node: '>=4.0'} 1063 | dependencies: 1064 | estraverse: 5.3.0 1065 | dev: true 1066 | 1067 | /estraverse/4.3.0: 1068 | resolution: {integrity: sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==} 1069 | engines: {node: '>=4.0'} 1070 | dev: true 1071 | 1072 | /estraverse/5.3.0: 1073 | resolution: {integrity: sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==} 1074 | engines: {node: '>=4.0'} 1075 | dev: true 1076 | 1077 | /esutils/2.0.3: 1078 | resolution: {integrity: sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==} 1079 | engines: {node: '>=0.10.0'} 1080 | dev: true 1081 | 1082 | /etag/1.8.1: 1083 | resolution: {integrity: sha512-aIL5Fx7mawVa300al2BnEE4iNvo1qETxLrPI/o05L7z6go7fCw1J6EQmbK4FmJ2AS7kgVF/KEZWufBfdClMcPg==} 1084 | engines: {node: '>= 0.6'} 1085 | dev: false 1086 | 1087 | /expand-template/2.0.3: 1088 | resolution: {integrity: sha512-XYfuKMvj4O35f/pOXLObndIRvyQ+/+6AhODh+OKWj9S9498pHHn/IMszH+gt0fBCRWMNfk1ZSp5x3AifmnI2vg==} 1089 | engines: {node: '>=6'} 1090 | dev: false 1091 | 1092 | /express/4.18.1: 1093 | resolution: {integrity: sha512-zZBcOX9TfehHQhtupq57OF8lFZ3UZi08Y97dwFCkD8p9d/d2Y3M+ykKcwaMDEL+4qyUolgBDX6AblpR3fL212Q==} 1094 | engines: {node: '>= 0.10.0'} 1095 | dependencies: 1096 | accepts: 1.3.8 1097 | array-flatten: 1.1.1 1098 | body-parser: 1.20.0 1099 | content-disposition: 0.5.4 1100 | content-type: 1.0.4 1101 | cookie: 0.5.0 1102 | cookie-signature: 1.0.6 1103 | debug: 2.6.9 1104 | depd: 2.0.0 1105 | encodeurl: 1.0.2 1106 | escape-html: 1.0.3 1107 | etag: 1.8.1 1108 | finalhandler: 1.2.0 1109 | fresh: 0.5.2 1110 | http-errors: 2.0.0 1111 | merge-descriptors: 1.0.1 1112 | methods: 1.1.2 1113 | on-finished: 2.4.1 1114 | parseurl: 1.3.3 1115 | path-to-regexp: 0.1.7 1116 | proxy-addr: 2.0.7 1117 | qs: 6.10.3 1118 | range-parser: 1.2.1 1119 | safe-buffer: 5.2.1 1120 | send: 0.18.0 1121 | serve-static: 1.15.0 1122 | setprototypeof: 1.2.0 1123 | statuses: 2.0.1 1124 | type-is: 1.6.18 1125 | utils-merge: 1.0.1 1126 | vary: 1.1.2 1127 | transitivePeerDependencies: 1128 | - supports-color 1129 | dev: false 1130 | 1131 | /fast-deep-equal/3.1.3: 1132 | resolution: {integrity: sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==} 1133 | dev: true 1134 | 1135 | /fast-glob/3.2.11: 1136 | resolution: {integrity: sha512-xrO3+1bxSo3ZVHAnqzyuewYT6aMFHRAd4Kcs92MAonjwQZLsK9d0SF1IyQ3k5PoirxTW0Oe/RqFgMQ6TcNE5Ew==} 1137 | engines: {node: '>=8.6.0'} 1138 | dependencies: 1139 | '@nodelib/fs.stat': 2.0.5 1140 | '@nodelib/fs.walk': 1.2.8 1141 | glob-parent: 5.1.2 1142 | merge2: 1.4.1 1143 | micromatch: 4.0.5 1144 | dev: true 1145 | 1146 | /fast-json-stable-stringify/2.1.0: 1147 | resolution: {integrity: sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==} 1148 | dev: true 1149 | 1150 | /fast-levenshtein/2.0.6: 1151 | resolution: {integrity: sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==} 1152 | dev: true 1153 | 1154 | /fastq/1.13.0: 1155 | resolution: {integrity: sha512-YpkpUnK8od0o1hmeSc7UUs/eB/vIPWJYjKck2QKIzAf71Vm1AAQ3EbuZB3g2JIy+pg+ERD0vqI79KyZiB2e2Nw==} 1156 | dependencies: 1157 | reusify: 1.0.4 1158 | dev: true 1159 | 1160 | /file-entry-cache/6.0.1: 1161 | resolution: {integrity: sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==} 1162 | engines: {node: ^10.12.0 || >=12.0.0} 1163 | dependencies: 1164 | flat-cache: 3.0.4 1165 | dev: true 1166 | 1167 | /fill-range/7.0.1: 1168 | resolution: {integrity: sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==} 1169 | engines: {node: '>=8'} 1170 | dependencies: 1171 | to-regex-range: 5.0.1 1172 | dev: true 1173 | 1174 | /finalhandler/1.2.0: 1175 | resolution: {integrity: sha512-5uXcUVftlQMFnWC9qu/svkWv3GTd2PfUhK/3PLkYNAe7FbqJMt3515HaxE6eRL74GdsriiwujiawdaB1BpEISg==} 1176 | engines: {node: '>= 0.8'} 1177 | dependencies: 1178 | debug: 2.6.9 1179 | encodeurl: 1.0.2 1180 | escape-html: 1.0.3 1181 | on-finished: 2.4.1 1182 | parseurl: 1.3.3 1183 | statuses: 2.0.1 1184 | unpipe: 1.0.0 1185 | transitivePeerDependencies: 1186 | - supports-color 1187 | dev: false 1188 | 1189 | /find-up/2.1.0: 1190 | resolution: {integrity: sha512-NWzkk0jSJtTt08+FBFMvXoeZnOJD+jTtsRmBYbAIzJdX6l7dLgR7CTubCM5/eDdPUBvLCeVasP1brfVR/9/EZQ==} 1191 | engines: {node: '>=4'} 1192 | dependencies: 1193 | locate-path: 2.0.0 1194 | dev: true 1195 | 1196 | /flat-cache/3.0.4: 1197 | resolution: {integrity: sha512-dm9s5Pw7Jc0GvMYbshN6zchCA9RgQlzzEZX3vylR9IqFfS8XciblUXOKfW6SiuJ0e13eDYZoZV5wdrev7P3Nwg==} 1198 | engines: {node: ^10.12.0 || >=12.0.0} 1199 | dependencies: 1200 | flatted: 3.2.5 1201 | rimraf: 3.0.2 1202 | dev: true 1203 | 1204 | /flatted/3.2.5: 1205 | resolution: {integrity: sha512-WIWGi2L3DyTUvUrwRKgGi9TwxQMUEqPOPQBVi71R96jZXJdFskXEmf54BoZaS1kknGODoIGASGEzBUYdyMCBJg==} 1206 | dev: true 1207 | 1208 | /follow-redirects/1.15.1: 1209 | resolution: {integrity: sha512-yLAMQs+k0b2m7cVxpS1VKJVvoz7SS9Td1zss3XRwXj+ZDH00RJgnuLx7E44wx02kQLrdM3aOOy+FpzS7+8OizA==} 1210 | engines: {node: '>=4.0'} 1211 | peerDependencies: 1212 | debug: '*' 1213 | peerDependenciesMeta: 1214 | debug: 1215 | optional: true 1216 | dev: false 1217 | 1218 | /form-data/4.0.0: 1219 | resolution: {integrity: sha512-ETEklSGi5t0QMZuiXoA/Q6vcnxcLQP5vdugSpuAyi6SVGi2clPPp+xgEhuMaHC+zGgn31Kd235W35f7Hykkaww==} 1220 | engines: {node: '>= 6'} 1221 | dependencies: 1222 | asynckit: 0.4.0 1223 | combined-stream: 1.0.8 1224 | mime-types: 2.1.35 1225 | dev: false 1226 | 1227 | /forwarded/0.2.0: 1228 | resolution: {integrity: sha512-buRG0fpBtRHSTCOASe6hD258tEubFoRLb4ZNA6NxMVHNw2gOcwHo9wyablzMzOA5z9xA9L1KNjk/Nt6MT9aYow==} 1229 | engines: {node: '>= 0.6'} 1230 | dev: false 1231 | 1232 | /fresh/0.5.2: 1233 | resolution: {integrity: sha512-zJ2mQYM18rEFOudeV4GShTGIQ7RbzA7ozbU9I/XBpm7kqgMywgmylMwXHxZJmkVoYkna9d2pVXVXPdYTP9ej8Q==} 1234 | engines: {node: '>= 0.6'} 1235 | dev: false 1236 | 1237 | /fs-constants/1.0.0: 1238 | resolution: {integrity: sha512-y6OAwoSIf7FyjMIv94u+b5rdheZEjzR63GTyZJm5qh4Bi+2YgwLCcI/fPFZkL5PSixOt6ZNKm+w+Hfp/Bciwow==} 1239 | dev: false 1240 | 1241 | /fs.realpath/1.0.0: 1242 | resolution: {integrity: sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==} 1243 | dev: true 1244 | 1245 | /fsevents/2.3.2: 1246 | resolution: {integrity: sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA==} 1247 | engines: {node: ^8.16.0 || ^10.6.0 || >=11.0.0} 1248 | os: [darwin] 1249 | requiresBuild: true 1250 | dev: true 1251 | optional: true 1252 | 1253 | /function-bind/1.1.1: 1254 | resolution: {integrity: sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==} 1255 | 1256 | /function.prototype.name/1.1.5: 1257 | resolution: {integrity: sha512-uN7m/BzVKQnCUF/iW8jYea67v++2u7m5UgENbHRtdDVclOUP+FMPlCNdmk0h/ysGyo2tavMJEDqJAkJdRa1vMA==} 1258 | engines: {node: '>= 0.4'} 1259 | dependencies: 1260 | call-bind: 1.0.2 1261 | define-properties: 1.1.4 1262 | es-abstract: 1.20.1 1263 | functions-have-names: 1.2.3 1264 | dev: true 1265 | 1266 | /functional-red-black-tree/1.0.1: 1267 | resolution: {integrity: sha512-dsKNQNdj6xA3T+QlADDA7mOSlX0qiMINjn0cgr+eGHGsbSHzTabcIogz2+p/iqP1Xs6EP/sS2SbqH+brGTbq0g==} 1268 | dev: true 1269 | 1270 | /functions-have-names/1.2.3: 1271 | resolution: {integrity: sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==} 1272 | dev: true 1273 | 1274 | /get-intrinsic/1.1.2: 1275 | resolution: {integrity: sha512-Jfm3OyCxHh9DJyc28qGk+JmfkpO41A4XkneDSujN9MDXrm4oDKdHvndhZ2dN94+ERNfkYJWDclW6k2L/ZGHjXA==} 1276 | dependencies: 1277 | function-bind: 1.1.1 1278 | has: 1.0.3 1279 | has-symbols: 1.0.3 1280 | 1281 | /get-stream/4.1.0: 1282 | resolution: {integrity: sha512-GMat4EJ5161kIy2HevLlr4luNjBgvmj413KaQA7jt4V8B4RDsfpHk7WQ9GVqfYyyx8OS/L66Kox+rJRNklLK7w==} 1283 | engines: {node: '>=6'} 1284 | dependencies: 1285 | pump: 3.0.0 1286 | dev: true 1287 | 1288 | /get-stream/5.2.0: 1289 | resolution: {integrity: sha512-nBF+F1rAZVCu/p7rjzgA+Yb4lfYXrpl7a6VmJrU8wF9I1CKvP/QwPNZHnOlwbTkY6dvtFIzFMSyQXbLoTQPRpA==} 1290 | engines: {node: '>=8'} 1291 | dependencies: 1292 | pump: 3.0.0 1293 | dev: true 1294 | 1295 | /get-symbol-description/1.0.0: 1296 | resolution: {integrity: sha512-2EmdH1YvIQiZpltCNgkuiUnyukzxM/R6NDJX31Ke3BG1Nq5b0S2PhX59UKi9vZpPDQVdqn+1IcaAwnzTT5vCjw==} 1297 | engines: {node: '>= 0.4'} 1298 | dependencies: 1299 | call-bind: 1.0.2 1300 | get-intrinsic: 1.1.2 1301 | dev: true 1302 | 1303 | /github-from-package/0.0.0: 1304 | resolution: {integrity: sha512-SyHy3T1v2NUXn29OsWdxmK6RwHD+vkj3v8en8AOBZ1wBQ/hCAQ5bAQTD02kW4W9tUp/3Qh6J8r9EvntiyCmOOw==} 1305 | dev: false 1306 | 1307 | /glob-parent/5.1.2: 1308 | resolution: {integrity: sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==} 1309 | engines: {node: '>= 6'} 1310 | dependencies: 1311 | is-glob: 4.0.3 1312 | dev: true 1313 | 1314 | /glob-parent/6.0.2: 1315 | resolution: {integrity: sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==} 1316 | engines: {node: '>=10.13.0'} 1317 | dependencies: 1318 | is-glob: 4.0.3 1319 | dev: true 1320 | 1321 | /glob/7.1.6: 1322 | resolution: {integrity: sha512-LwaxwyZ72Lk7vZINtNNrywX0ZuLyStrdDtabefZKAY5ZGJhVtgdznluResxNmPitE0SAO+O26sWTHeKSI2wMBA==} 1323 | dependencies: 1324 | fs.realpath: 1.0.0 1325 | inflight: 1.0.6 1326 | inherits: 2.0.4 1327 | minimatch: 3.1.2 1328 | once: 1.4.0 1329 | path-is-absolute: 1.0.1 1330 | dev: true 1331 | 1332 | /global-dirs/3.0.0: 1333 | resolution: {integrity: sha512-v8ho2DS5RiCjftj1nD9NmnfaOzTdud7RRnVd9kFNOjqZbISlx5DQ+OrTkywgd0dIt7oFCvKetZSHoHcP3sDdiA==} 1334 | engines: {node: '>=10'} 1335 | dependencies: 1336 | ini: 2.0.0 1337 | dev: true 1338 | 1339 | /globals/13.15.0: 1340 | resolution: {integrity: sha512-bpzcOlgDhMG070Av0Vy5Owklpv1I6+j96GhUI7Rh7IzDCKLzboflLrrfqMu8NquDbiR4EOQk7XzJwqVJxicxog==} 1341 | engines: {node: '>=8'} 1342 | dependencies: 1343 | type-fest: 0.20.2 1344 | dev: true 1345 | 1346 | /globby/11.1.0: 1347 | resolution: {integrity: sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==} 1348 | engines: {node: '>=10'} 1349 | dependencies: 1350 | array-union: 2.1.0 1351 | dir-glob: 3.0.1 1352 | fast-glob: 3.2.11 1353 | ignore: 5.2.0 1354 | merge2: 1.4.1 1355 | slash: 3.0.0 1356 | dev: true 1357 | 1358 | /got/9.6.0: 1359 | resolution: {integrity: sha512-R7eWptXuGYxwijs0eV+v3o6+XH1IqVK8dJOEecQfTmkncw9AV4dcw/Dhxi8MdlqPthxxpZyizMzyg8RTmEsG+Q==} 1360 | engines: {node: '>=8.6'} 1361 | dependencies: 1362 | '@sindresorhus/is': 0.14.0 1363 | '@szmarczak/http-timer': 1.1.2 1364 | '@types/keyv': 3.1.4 1365 | '@types/responselike': 1.0.0 1366 | cacheable-request: 6.1.0 1367 | decompress-response: 3.3.0 1368 | duplexer3: 0.1.4 1369 | get-stream: 4.1.0 1370 | lowercase-keys: 1.0.1 1371 | mimic-response: 1.0.1 1372 | p-cancelable: 1.1.0 1373 | to-readable-stream: 1.0.0 1374 | url-parse-lax: 3.0.0 1375 | dev: true 1376 | 1377 | /graceful-fs/4.2.10: 1378 | resolution: {integrity: sha512-9ByhssR2fPVsNZj478qUUbKfmL0+t5BDVyjShtyZZLiK7ZDAArFFfopyOTj0M05wE2tJPisA4iTnnXl2YoPvOA==} 1379 | dev: true 1380 | 1381 | /has-bigints/1.0.2: 1382 | resolution: {integrity: sha512-tSvCKtBr9lkF0Ex0aQiP9N+OpV4zi2r/Nee5VkRDbaqv35RLYMzbwQfFSZZH0kR+Rd6302UJZ2p/bJCEoR3VoQ==} 1383 | dev: true 1384 | 1385 | /has-flag/3.0.0: 1386 | resolution: {integrity: sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==} 1387 | engines: {node: '>=4'} 1388 | dev: true 1389 | 1390 | /has-flag/4.0.0: 1391 | resolution: {integrity: sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==} 1392 | engines: {node: '>=8'} 1393 | dev: true 1394 | 1395 | /has-property-descriptors/1.0.0: 1396 | resolution: {integrity: sha512-62DVLZGoiEBDHQyqG4w9xCuZ7eJEwNmJRWw2VY84Oedb7WFcA27fiEVe8oUQx9hAUJ4ekurquucTGwsyO1XGdQ==} 1397 | dependencies: 1398 | get-intrinsic: 1.1.2 1399 | dev: true 1400 | 1401 | /has-symbols/1.0.3: 1402 | resolution: {integrity: sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==} 1403 | engines: {node: '>= 0.4'} 1404 | 1405 | /has-tostringtag/1.0.0: 1406 | resolution: {integrity: sha512-kFjcSNhnlGV1kyoGk7OXKSawH5JOb/LzUc5w9B02hOTO0dfFRjbHQKvg1d6cf3HbeUmtU9VbbV3qzZ2Teh97WQ==} 1407 | engines: {node: '>= 0.4'} 1408 | dependencies: 1409 | has-symbols: 1.0.3 1410 | dev: true 1411 | 1412 | /has-yarn/2.1.0: 1413 | resolution: {integrity: sha512-UqBRqi4ju7T+TqGNdqAO0PaSVGsDGJUBQvk9eUWNGRY1CFGDzYhLWoM7JQEemnlvVcv/YEmc2wNW8BC24EnUsw==} 1414 | engines: {node: '>=8'} 1415 | dev: true 1416 | 1417 | /has/1.0.3: 1418 | resolution: {integrity: sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==} 1419 | engines: {node: '>= 0.4.0'} 1420 | dependencies: 1421 | function-bind: 1.1.1 1422 | 1423 | /http-cache-semantics/4.1.0: 1424 | resolution: {integrity: sha512-carPklcUh7ROWRK7Cv27RPtdhYhUsela/ue5/jKzjegVvXDqM2ILE9Q2BGn9JZJh1g87cp56su/FgQSzcWS8cQ==} 1425 | dev: true 1426 | 1427 | /http-errors/2.0.0: 1428 | resolution: {integrity: sha512-FtwrG/euBzaEjYeRqOgly7G0qviiXoJWnvEH2Z1plBdXgbyjv34pHTSb9zoeHMyDy33+DWy5Wt9Wo+TURtOYSQ==} 1429 | engines: {node: '>= 0.8'} 1430 | dependencies: 1431 | depd: 2.0.0 1432 | inherits: 2.0.4 1433 | setprototypeof: 1.2.0 1434 | statuses: 2.0.1 1435 | toidentifier: 1.0.1 1436 | dev: false 1437 | 1438 | /iconv-lite/0.4.24: 1439 | resolution: {integrity: sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==} 1440 | engines: {node: '>=0.10.0'} 1441 | dependencies: 1442 | safer-buffer: 2.1.2 1443 | dev: false 1444 | 1445 | /ieee754/1.2.1: 1446 | resolution: {integrity: sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==} 1447 | dev: false 1448 | 1449 | /ignore-by-default/1.0.1: 1450 | resolution: {integrity: sha512-Ius2VYcGNk7T90CppJqcIkS5ooHUZyIQK+ClZfMfMNFEF9VSE73Fq+906u/CWu92x4gzZMWOwfFYckPObzdEbA==} 1451 | dev: true 1452 | 1453 | /ignore/5.2.0: 1454 | resolution: {integrity: sha512-CmxgYGiEPCLhfLnpPp1MoRmifwEIOgjcHXxOBjv7mY96c+eWScsOP9c112ZyLdWHi0FxHjI+4uVhKYp/gcdRmQ==} 1455 | engines: {node: '>= 4'} 1456 | dev: true 1457 | 1458 | /import-fresh/3.3.0: 1459 | resolution: {integrity: sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==} 1460 | engines: {node: '>=6'} 1461 | dependencies: 1462 | parent-module: 1.0.1 1463 | resolve-from: 4.0.0 1464 | dev: true 1465 | 1466 | /import-lazy/2.1.0: 1467 | resolution: {integrity: sha512-m7ZEHgtw69qOGw+jwxXkHlrlIPdTGkyh66zXZ1ajZbxkDBNjSY/LGbmjc7h0s2ELsUDTAhFr55TrPSSqJGPG0A==} 1468 | engines: {node: '>=4'} 1469 | dev: true 1470 | 1471 | /imurmurhash/0.1.4: 1472 | resolution: {integrity: sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==} 1473 | engines: {node: '>=0.8.19'} 1474 | dev: true 1475 | 1476 | /inflight/1.0.6: 1477 | resolution: {integrity: sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==} 1478 | dependencies: 1479 | once: 1.4.0 1480 | wrappy: 1.0.2 1481 | dev: true 1482 | 1483 | /inherits/2.0.4: 1484 | resolution: {integrity: sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==} 1485 | 1486 | /ini/1.3.8: 1487 | resolution: {integrity: sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==} 1488 | 1489 | /ini/2.0.0: 1490 | resolution: {integrity: sha512-7PnF4oN3CvZF23ADhA5wRaYEQpJ8qygSkbtTXWBeXWXmEVRXK+1ITciHWwHhsjv1TmW0MgacIv6hEi5pX5NQdA==} 1491 | engines: {node: '>=10'} 1492 | dev: true 1493 | 1494 | /internal-slot/1.0.3: 1495 | resolution: {integrity: sha512-O0DB1JC/sPyZl7cIo78n5dR7eUSwwpYPiXRhTzNxZVAMUuB8vlnRFyLxdrVToks6XPLVnFfbzaVd5WLjhgg+vA==} 1496 | engines: {node: '>= 0.4'} 1497 | dependencies: 1498 | get-intrinsic: 1.1.2 1499 | has: 1.0.3 1500 | side-channel: 1.0.4 1501 | dev: true 1502 | 1503 | /ipaddr.js/1.9.1: 1504 | resolution: {integrity: sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g==} 1505 | engines: {node: '>= 0.10'} 1506 | dev: false 1507 | 1508 | /is-arrayish/0.3.2: 1509 | resolution: {integrity: sha512-eVRqCvVlZbuw3GrM63ovNSNAeA1K16kaR/LRY/92w0zxQ5/1YzwblUX652i4Xs9RwAGjW9d9y6X88t8OaAJfWQ==} 1510 | dev: false 1511 | 1512 | /is-bigint/1.0.4: 1513 | resolution: {integrity: sha512-zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg==} 1514 | dependencies: 1515 | has-bigints: 1.0.2 1516 | dev: true 1517 | 1518 | /is-binary-path/2.1.0: 1519 | resolution: {integrity: sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==} 1520 | engines: {node: '>=8'} 1521 | dependencies: 1522 | binary-extensions: 2.2.0 1523 | dev: true 1524 | 1525 | /is-boolean-object/1.1.2: 1526 | resolution: {integrity: sha512-gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA==} 1527 | engines: {node: '>= 0.4'} 1528 | dependencies: 1529 | call-bind: 1.0.2 1530 | has-tostringtag: 1.0.0 1531 | dev: true 1532 | 1533 | /is-callable/1.2.4: 1534 | resolution: {integrity: sha512-nsuwtxZfMX67Oryl9LCQ+upnC0Z0BgpwntpS89m1H/TLF0zNfzfLMV/9Wa/6MZsj0acpEjAO0KF1xT6ZdLl95w==} 1535 | engines: {node: '>= 0.4'} 1536 | dev: true 1537 | 1538 | /is-ci/2.0.0: 1539 | resolution: {integrity: sha512-YfJT7rkpQB0updsdHLGWrvhBJfcfzNNawYDNIyQXJz0IViGf75O8EBPKSdvw2rF+LGCsX4FZ8tcr3b19LcZq4w==} 1540 | hasBin: true 1541 | dependencies: 1542 | ci-info: 2.0.0 1543 | dev: true 1544 | 1545 | /is-core-module/2.9.0: 1546 | resolution: {integrity: sha512-+5FPy5PnwmO3lvfMb0AsoPaBG+5KHUI0wYFXOtYPnVVVspTFUuMZNfNaNVRt3FZadstu2c8x23vykRW/NBoU6A==} 1547 | dependencies: 1548 | has: 1.0.3 1549 | dev: true 1550 | 1551 | /is-date-object/1.0.5: 1552 | resolution: {integrity: sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ==} 1553 | engines: {node: '>= 0.4'} 1554 | dependencies: 1555 | has-tostringtag: 1.0.0 1556 | dev: true 1557 | 1558 | /is-extglob/2.1.1: 1559 | resolution: {integrity: sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==} 1560 | engines: {node: '>=0.10.0'} 1561 | dev: true 1562 | 1563 | /is-fullwidth-code-point/3.0.0: 1564 | resolution: {integrity: sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==} 1565 | engines: {node: '>=8'} 1566 | dev: true 1567 | 1568 | /is-glob/4.0.3: 1569 | resolution: {integrity: sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==} 1570 | engines: {node: '>=0.10.0'} 1571 | dependencies: 1572 | is-extglob: 2.1.1 1573 | dev: true 1574 | 1575 | /is-installed-globally/0.4.0: 1576 | resolution: {integrity: sha512-iwGqO3J21aaSkC7jWnHP/difazwS7SFeIqxv6wEtLU8Y5KlzFTjyqcSIT0d8s4+dDhKytsk9PJZ2BkS5eZwQRQ==} 1577 | engines: {node: '>=10'} 1578 | dependencies: 1579 | global-dirs: 3.0.0 1580 | is-path-inside: 3.0.3 1581 | dev: true 1582 | 1583 | /is-negative-zero/2.0.2: 1584 | resolution: {integrity: sha512-dqJvarLawXsFbNDeJW7zAz8ItJ9cd28YufuuFzh0G8pNHjJMnY08Dv7sYX2uF5UpQOwieAeOExEYAWWfu7ZZUA==} 1585 | engines: {node: '>= 0.4'} 1586 | dev: true 1587 | 1588 | /is-npm/5.0.0: 1589 | resolution: {integrity: sha512-WW/rQLOazUq+ST/bCAVBp/2oMERWLsR7OrKyt052dNDk4DHcDE0/7QSXITlmi+VBcV13DfIbysG3tZJm5RfdBA==} 1590 | engines: {node: '>=10'} 1591 | dev: true 1592 | 1593 | /is-number-object/1.0.7: 1594 | resolution: {integrity: sha512-k1U0IRzLMo7ZlYIfzRu23Oh6MiIFasgpb9X76eqfFZAqwH44UI4KTBvBYIZ1dSL9ZzChTB9ShHfLkR4pdW5krQ==} 1595 | engines: {node: '>= 0.4'} 1596 | dependencies: 1597 | has-tostringtag: 1.0.0 1598 | dev: true 1599 | 1600 | /is-number/7.0.0: 1601 | resolution: {integrity: sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==} 1602 | engines: {node: '>=0.12.0'} 1603 | dev: true 1604 | 1605 | /is-obj/2.0.0: 1606 | resolution: {integrity: sha512-drqDG3cbczxxEJRoOXcOjtdp1J/lyp1mNn0xaznRs8+muBhgQcrnbspox5X5fOw0HnMnbfDzvnEMEtqDEJEo8w==} 1607 | engines: {node: '>=8'} 1608 | dev: true 1609 | 1610 | /is-path-inside/3.0.3: 1611 | resolution: {integrity: sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ==} 1612 | engines: {node: '>=8'} 1613 | dev: true 1614 | 1615 | /is-regex/1.1.4: 1616 | resolution: {integrity: sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg==} 1617 | engines: {node: '>= 0.4'} 1618 | dependencies: 1619 | call-bind: 1.0.2 1620 | has-tostringtag: 1.0.0 1621 | dev: true 1622 | 1623 | /is-shared-array-buffer/1.0.2: 1624 | resolution: {integrity: sha512-sqN2UDu1/0y6uvXyStCOzyhAjCSlHceFoMKJW8W9EU9cvic/QdsZ0kEU93HEy3IUEFZIiH/3w+AH/UQbPHNdhA==} 1625 | dependencies: 1626 | call-bind: 1.0.2 1627 | dev: true 1628 | 1629 | /is-string/1.0.7: 1630 | resolution: {integrity: sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg==} 1631 | engines: {node: '>= 0.4'} 1632 | dependencies: 1633 | has-tostringtag: 1.0.0 1634 | dev: true 1635 | 1636 | /is-symbol/1.0.4: 1637 | resolution: {integrity: sha512-C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg==} 1638 | engines: {node: '>= 0.4'} 1639 | dependencies: 1640 | has-symbols: 1.0.3 1641 | dev: true 1642 | 1643 | /is-typedarray/1.0.0: 1644 | resolution: {integrity: sha512-cyA56iCMHAh5CdzjJIa4aohJyeO1YbwLi3Jc35MmRU6poroFjIGZzUzupGiRPOjgHg9TLu43xbpwXk523fMxKA==} 1645 | dev: true 1646 | 1647 | /is-weakref/1.0.2: 1648 | resolution: {integrity: sha512-qctsuLZmIQ0+vSSMfoVvyFe2+GSEvnmZ2ezTup1SBse9+twCCeial6EEi3Nc2KFcf6+qz2FBPnjXsk8xhKSaPQ==} 1649 | dependencies: 1650 | call-bind: 1.0.2 1651 | dev: true 1652 | 1653 | /is-yarn-global/0.3.0: 1654 | resolution: {integrity: sha512-VjSeb/lHmkoyd8ryPVIKvOCn4D1koMqY+vqyjjUfc3xyKtP4dYOxM44sZrnqQSzSds3xyOrUTLTC9LVCVgLngw==} 1655 | dev: true 1656 | 1657 | /isexe/2.0.0: 1658 | resolution: {integrity: sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==} 1659 | dev: true 1660 | 1661 | /js-yaml/4.1.0: 1662 | resolution: {integrity: sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==} 1663 | hasBin: true 1664 | dependencies: 1665 | argparse: 2.0.1 1666 | dev: true 1667 | 1668 | /json-buffer/3.0.0: 1669 | resolution: {integrity: sha512-CuUqjv0FUZIdXkHPI8MezCnFCdaTAacej1TZYulLoAg1h/PhwkdXFN4V/gzY4g+fMBCOV2xF+rp7t2XD2ns/NQ==} 1670 | dev: true 1671 | 1672 | /json-schema-traverse/0.4.1: 1673 | resolution: {integrity: sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==} 1674 | dev: true 1675 | 1676 | /json-stable-stringify-without-jsonify/1.0.1: 1677 | resolution: {integrity: sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==} 1678 | dev: true 1679 | 1680 | /json5/1.0.1: 1681 | resolution: {integrity: sha512-aKS4WQjPenRxiQsC93MNfjx+nbF4PAdYzmd/1JIj8HYzqfbu86beTuNgXDzPknWk0n0uARlyewZo4s++ES36Ow==} 1682 | hasBin: true 1683 | dependencies: 1684 | minimist: 1.2.6 1685 | dev: true 1686 | 1687 | /keyv/3.1.0: 1688 | resolution: {integrity: sha512-9ykJ/46SN/9KPM/sichzQ7OvXyGDYKGTaDlKMGCAlg2UK8KRy4jb0d8sFc+0Tt0YYnThq8X2RZgCg74RPxgcVA==} 1689 | dependencies: 1690 | json-buffer: 3.0.0 1691 | dev: true 1692 | 1693 | /latest-version/5.1.0: 1694 | resolution: {integrity: sha512-weT+r0kTkRQdCdYCNtkMwWXQTMEswKrFBkm4ckQOMVhhqhIMI1UT2hMj+1iigIhgSZm5gTmrRXBNoGUgaTY1xA==} 1695 | engines: {node: '>=8'} 1696 | dependencies: 1697 | package-json: 6.5.0 1698 | dev: true 1699 | 1700 | /levn/0.4.1: 1701 | resolution: {integrity: sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==} 1702 | engines: {node: '>= 0.8.0'} 1703 | dependencies: 1704 | prelude-ls: 1.2.1 1705 | type-check: 0.4.0 1706 | dev: true 1707 | 1708 | /lines-and-columns/1.2.4: 1709 | resolution: {integrity: sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==} 1710 | dev: true 1711 | 1712 | /locate-path/2.0.0: 1713 | resolution: {integrity: sha512-NCI2kiDkyR7VeEKm27Kda/iQHyKJe1Bu0FlTbYp3CqJu+9IFe9bLyAjMxf5ZDDbEg+iMPzB5zYyUTSm8wVTKmA==} 1714 | engines: {node: '>=4'} 1715 | dependencies: 1716 | p-locate: 2.0.0 1717 | path-exists: 3.0.0 1718 | dev: true 1719 | 1720 | /lodash.merge/4.6.2: 1721 | resolution: {integrity: sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==} 1722 | dev: true 1723 | 1724 | /lowercase-keys/1.0.1: 1725 | resolution: {integrity: sha512-G2Lj61tXDnVFFOi8VZds+SoQjtQC3dgokKdDG2mTm1tx4m50NUHBOZSBwQQHyy0V12A0JTG4icfZQH+xPyh8VA==} 1726 | engines: {node: '>=0.10.0'} 1727 | dev: true 1728 | 1729 | /lowercase-keys/2.0.0: 1730 | resolution: {integrity: sha512-tqNXrS78oMOE73NMxK4EMLQsQowWf8jKooH9g7xPavRT706R6bkQJ6DY2Te7QukaZsulxa30wQ7bk0pm4XiHmA==} 1731 | engines: {node: '>=8'} 1732 | dev: true 1733 | 1734 | /lru-cache/6.0.0: 1735 | resolution: {integrity: sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==} 1736 | engines: {node: '>=10'} 1737 | dependencies: 1738 | yallist: 4.0.0 1739 | 1740 | /make-dir/3.1.0: 1741 | resolution: {integrity: sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw==} 1742 | engines: {node: '>=8'} 1743 | dependencies: 1744 | semver: 6.3.0 1745 | dev: true 1746 | 1747 | /media-typer/0.3.0: 1748 | resolution: {integrity: sha512-dq+qelQ9akHpcOl/gUVRTxVIOkAJ1wR3QAvb4RsVjS8oVoFjDGTc679wJYmUmknUF5HwMLOgb5O+a3KxfWapPQ==} 1749 | engines: {node: '>= 0.6'} 1750 | dev: false 1751 | 1752 | /merge-descriptors/1.0.1: 1753 | resolution: {integrity: sha512-cCi6g3/Zr1iqQi6ySbseM1Xvooa98N0w31jzUYrXPX2xqObmFGHJ0tQ5u74H3mVh7wLouTseZyYIq39g8cNp1w==} 1754 | dev: false 1755 | 1756 | /merge2/1.4.1: 1757 | resolution: {integrity: sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==} 1758 | engines: {node: '>= 8'} 1759 | dev: true 1760 | 1761 | /methods/1.1.2: 1762 | resolution: {integrity: sha512-iclAHeNqNm68zFtnZ0e+1L2yUIdvzNoauKU4WBA3VvH/vPFieF7qfRlwUZU+DA9P9bPXIS90ulxoUoCH23sV2w==} 1763 | engines: {node: '>= 0.6'} 1764 | dev: false 1765 | 1766 | /micromatch/4.0.5: 1767 | resolution: {integrity: sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==} 1768 | engines: {node: '>=8.6'} 1769 | dependencies: 1770 | braces: 3.0.2 1771 | picomatch: 2.3.1 1772 | dev: true 1773 | 1774 | /mime-db/1.52.0: 1775 | resolution: {integrity: sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==} 1776 | engines: {node: '>= 0.6'} 1777 | dev: false 1778 | 1779 | /mime-types/2.1.35: 1780 | resolution: {integrity: sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==} 1781 | engines: {node: '>= 0.6'} 1782 | dependencies: 1783 | mime-db: 1.52.0 1784 | dev: false 1785 | 1786 | /mime/1.6.0: 1787 | resolution: {integrity: sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==} 1788 | engines: {node: '>=4'} 1789 | hasBin: true 1790 | dev: false 1791 | 1792 | /mimic-response/1.0.1: 1793 | resolution: {integrity: sha512-j5EctnkH7amfV/q5Hgmoal1g2QHFJRraOtmx0JpIqkxhBhI/lJSl1nMpQ45hVarwNETOoWEimndZ4QK0RHxuxQ==} 1794 | engines: {node: '>=4'} 1795 | dev: true 1796 | 1797 | /mimic-response/3.1.0: 1798 | resolution: {integrity: sha512-z0yWI+4FDrrweS8Zmt4Ej5HdJmky15+L2e6Wgn3+iK5fWzb6T3fhNFq2+MeTRb064c6Wr4N/wv0DzQTjNzHNGQ==} 1799 | engines: {node: '>=10'} 1800 | dev: false 1801 | 1802 | /minimatch/3.1.2: 1803 | resolution: {integrity: sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==} 1804 | dependencies: 1805 | brace-expansion: 1.1.11 1806 | dev: true 1807 | 1808 | /minimist/1.2.6: 1809 | resolution: {integrity: sha512-Jsjnk4bw3YJqYzbdyBiNsPWHPfO++UGG749Cxs6peCu5Xg4nrena6OVxOYxrQTqww0Jmwt+Ref8rggumkTLz9Q==} 1810 | 1811 | /mkdirp-classic/0.5.3: 1812 | resolution: {integrity: sha512-gKLcREMhtuZRwRAfqP3RFW+TK4JqApVBtOIftVgjuABpAtpxhPGaDcfvbhNvD0B8iD1oUr/txX35NjcaY6Ns/A==} 1813 | dev: false 1814 | 1815 | /ms/2.0.0: 1816 | resolution: {integrity: sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==} 1817 | 1818 | /ms/2.1.2: 1819 | resolution: {integrity: sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==} 1820 | dev: true 1821 | 1822 | /ms/2.1.3: 1823 | resolution: {integrity: sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==} 1824 | 1825 | /mz/2.7.0: 1826 | resolution: {integrity: sha512-z81GNO7nnYMEhrGh9LeymoE4+Yr0Wn5McHIZMK5cfQCl+NDX08sCZgUc9/6MHni9IWuFLm1Z3HTCXu2z9fN62Q==} 1827 | dependencies: 1828 | any-promise: 1.3.0 1829 | object-assign: 4.1.1 1830 | thenify-all: 1.6.0 1831 | dev: true 1832 | 1833 | /napi-build-utils/1.0.2: 1834 | resolution: {integrity: sha512-ONmRUqK7zj7DWX0D9ADe03wbwOBZxNAfF20PlGfCWQcD3+/MakShIHrMqx9YwPTfxDdF1zLeL+RGZiR9kGMLdg==} 1835 | dev: false 1836 | 1837 | /natural-compare/1.4.0: 1838 | resolution: {integrity: sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==} 1839 | dev: true 1840 | 1841 | /negotiator/0.6.3: 1842 | resolution: {integrity: sha512-+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg==} 1843 | engines: {node: '>= 0.6'} 1844 | dev: false 1845 | 1846 | /node-abi/3.22.0: 1847 | resolution: {integrity: sha512-u4uAs/4Zzmp/jjsD9cyFYDXeISfUWaAVWshPmDZOFOv4Xl4SbzTXm53I04C2uRueYJ+0t5PEtLH/owbn2Npf/w==} 1848 | engines: {node: '>=10'} 1849 | dependencies: 1850 | semver: 7.3.7 1851 | dev: false 1852 | 1853 | /node-addon-api/5.0.0: 1854 | resolution: {integrity: sha512-CvkDw2OEnme7ybCykJpVcKH+uAOLV2qLqiyla128dN9TkEWfrYmxG6C2boDe5KcNQqZF3orkqzGgOMvZ/JNekA==} 1855 | dev: false 1856 | 1857 | /nodemon/2.0.16: 1858 | resolution: {integrity: sha512-zsrcaOfTWRuUzBn3P44RDliLlp263Z/76FPoHFr3cFFkOz0lTPAcIw8dCzfdVIx/t3AtDYCZRCDkoCojJqaG3w==} 1859 | engines: {node: '>=8.10.0'} 1860 | hasBin: true 1861 | requiresBuild: true 1862 | dependencies: 1863 | chokidar: 3.5.3 1864 | debug: 3.2.7_supports-color@5.5.0 1865 | ignore-by-default: 1.0.1 1866 | minimatch: 3.1.2 1867 | pstree.remy: 1.1.8 1868 | semver: 5.7.1 1869 | supports-color: 5.5.0 1870 | touch: 3.1.0 1871 | undefsafe: 2.0.5 1872 | update-notifier: 5.1.0 1873 | dev: true 1874 | 1875 | /nopt/1.0.10: 1876 | resolution: {integrity: sha512-NWmpvLSqUrgrAC9HCuxEvb+PSloHpqVu+FqcO4eeF2h5qYRhA7ev6KvelyQAKtegUbC6RypJnlEOhd8vloNKYg==} 1877 | hasBin: true 1878 | dependencies: 1879 | abbrev: 1.1.1 1880 | dev: true 1881 | 1882 | /normalize-path/3.0.0: 1883 | resolution: {integrity: sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==} 1884 | engines: {node: '>=0.10.0'} 1885 | dev: true 1886 | 1887 | /normalize-url/4.5.1: 1888 | resolution: {integrity: sha512-9UZCFRHQdNrfTpGg8+1INIg93B6zE0aXMVFkw1WFwvO4SlZywU6aLg5Of0Ap/PgcbSw4LNxvMWXMeugwMCX0AA==} 1889 | engines: {node: '>=8'} 1890 | dev: true 1891 | 1892 | /object-assign/4.1.1: 1893 | resolution: {integrity: sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==} 1894 | engines: {node: '>=0.10.0'} 1895 | dev: true 1896 | 1897 | /object-inspect/1.12.2: 1898 | resolution: {integrity: sha512-z+cPxW0QGUp0mcqcsgQyLVRDoXFQbXOwBaqyF7VIgI4TWNQsDHrBpUQslRmIfAoYWdYzs6UlKJtB2XJpTaNSpQ==} 1899 | 1900 | /object-keys/1.1.1: 1901 | resolution: {integrity: sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==} 1902 | engines: {node: '>= 0.4'} 1903 | dev: true 1904 | 1905 | /object.assign/4.1.2: 1906 | resolution: {integrity: sha512-ixT2L5THXsApyiUPYKmW+2EHpXXe5Ii3M+f4e+aJFAHao5amFRW6J0OO6c/LU8Be47utCx2GL89hxGB6XSmKuQ==} 1907 | engines: {node: '>= 0.4'} 1908 | dependencies: 1909 | call-bind: 1.0.2 1910 | define-properties: 1.1.4 1911 | has-symbols: 1.0.3 1912 | object-keys: 1.1.1 1913 | dev: true 1914 | 1915 | /object.values/1.1.5: 1916 | resolution: {integrity: sha512-QUZRW0ilQ3PnPpbNtgdNV1PDbEqLIiSFB3l+EnGtBQ/8SUTLj1PZwtQHABZtLgwpJZTSZhuGLOGk57Drx2IvYg==} 1917 | engines: {node: '>= 0.4'} 1918 | dependencies: 1919 | call-bind: 1.0.2 1920 | define-properties: 1.1.4 1921 | es-abstract: 1.20.1 1922 | dev: true 1923 | 1924 | /on-finished/2.4.1: 1925 | resolution: {integrity: sha512-oVlzkg3ENAhCk2zdv7IJwd/QUD4z2RxRwpkcGY8psCVcCYZNq4wYnVWALHM+brtuJjePWiYF/ClmuDr8Ch5+kg==} 1926 | engines: {node: '>= 0.8'} 1927 | dependencies: 1928 | ee-first: 1.1.1 1929 | dev: false 1930 | 1931 | /once/1.4.0: 1932 | resolution: {integrity: sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==} 1933 | dependencies: 1934 | wrappy: 1.0.2 1935 | 1936 | /optionator/0.9.1: 1937 | resolution: {integrity: sha512-74RlY5FCnhq4jRxVUPKDaRwrVNXMqsGsiW6AJw4XK8hmtm10wC0ypZBLw5IIp85NZMr91+qd1RvvENwg7jjRFw==} 1938 | engines: {node: '>= 0.8.0'} 1939 | dependencies: 1940 | deep-is: 0.1.4 1941 | fast-levenshtein: 2.0.6 1942 | levn: 0.4.1 1943 | prelude-ls: 1.2.1 1944 | type-check: 0.4.0 1945 | word-wrap: 1.2.3 1946 | dev: true 1947 | 1948 | /p-cancelable/1.1.0: 1949 | resolution: {integrity: sha512-s73XxOZ4zpt1edZYZzvhqFa6uvQc1vwUa0K0BdtIZgQMAJj9IbebH+JkgKZc9h+B05PKHLOTl4ajG1BmNrVZlw==} 1950 | engines: {node: '>=6'} 1951 | dev: true 1952 | 1953 | /p-limit/1.3.0: 1954 | resolution: {integrity: sha512-vvcXsLAJ9Dr5rQOPk7toZQZJApBl2K4J6dANSsEuh6QI41JYcsS/qhTGa9ErIUUgK3WNQoJYvylxvjqmiqEA9Q==} 1955 | engines: {node: '>=4'} 1956 | dependencies: 1957 | p-try: 1.0.0 1958 | dev: true 1959 | 1960 | /p-locate/2.0.0: 1961 | resolution: {integrity: sha512-nQja7m7gSKuewoVRen45CtVfODR3crN3goVQ0DDZ9N3yHxgpkuBhZqsaiotSQRrADUrne346peY7kT3TSACykg==} 1962 | engines: {node: '>=4'} 1963 | dependencies: 1964 | p-limit: 1.3.0 1965 | dev: true 1966 | 1967 | /p-try/1.0.0: 1968 | resolution: {integrity: sha512-U1etNYuMJoIz3ZXSrrySFjsXQTWOx2/jdi86L+2pRvph/qMKL6sbcCYdH23fqsbm8TH2Gn0OybpT4eSFlCVHww==} 1969 | engines: {node: '>=4'} 1970 | dev: true 1971 | 1972 | /package-json/6.5.0: 1973 | resolution: {integrity: sha512-k3bdm2n25tkyxcjSKzB5x8kfVxlMdgsbPr0GkZcwHsLpba6cBjqCt1KlcChKEvxHIcTB1FVMuwoijZ26xex5MQ==} 1974 | engines: {node: '>=8'} 1975 | dependencies: 1976 | got: 9.6.0 1977 | registry-auth-token: 4.2.1 1978 | registry-url: 5.1.0 1979 | semver: 6.3.0 1980 | dev: true 1981 | 1982 | /parent-module/1.0.1: 1983 | resolution: {integrity: sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==} 1984 | engines: {node: '>=6'} 1985 | dependencies: 1986 | callsites: 3.1.0 1987 | dev: true 1988 | 1989 | /parseurl/1.3.3: 1990 | resolution: {integrity: sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==} 1991 | engines: {node: '>= 0.8'} 1992 | dev: false 1993 | 1994 | /path-exists/3.0.0: 1995 | resolution: {integrity: sha512-bpC7GYwiDYQ4wYLe+FA8lhRjhQCMcQGuSgGGqDkg/QerRWw9CmGRT0iSOVRSZJ29NMLZgIzqaljJ63oaL4NIJQ==} 1996 | engines: {node: '>=4'} 1997 | dev: true 1998 | 1999 | /path-is-absolute/1.0.1: 2000 | resolution: {integrity: sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==} 2001 | engines: {node: '>=0.10.0'} 2002 | dev: true 2003 | 2004 | /path-key/3.1.1: 2005 | resolution: {integrity: sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==} 2006 | engines: {node: '>=8'} 2007 | dev: true 2008 | 2009 | /path-parse/1.0.7: 2010 | resolution: {integrity: sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==} 2011 | dev: true 2012 | 2013 | /path-to-regexp/0.1.7: 2014 | resolution: {integrity: sha512-5DFkuoqlv1uYQKxy8omFBeJPQcdoE07Kv2sferDCrAq1ohOU+MSDswDIbnx3YAM60qIOnYa53wBhXW0EbMonrQ==} 2015 | dev: false 2016 | 2017 | /path-type/4.0.0: 2018 | resolution: {integrity: sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==} 2019 | engines: {node: '>=8'} 2020 | dev: true 2021 | 2022 | /picomatch/2.3.1: 2023 | resolution: {integrity: sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==} 2024 | engines: {node: '>=8.6'} 2025 | dev: true 2026 | 2027 | /pirates/4.0.5: 2028 | resolution: {integrity: sha512-8V9+HQPupnaXMA23c5hvl69zXvTwTzyAYasnkb0Tts4XvO4CliqONMOnvlq26rkhLC3nWDFBJf73LU1e1VZLaQ==} 2029 | engines: {node: '>= 6'} 2030 | dev: true 2031 | 2032 | /prebuild-install/7.1.1: 2033 | resolution: {integrity: sha512-jAXscXWMcCK8GgCoHOfIr0ODh5ai8mj63L2nWrjuAgXE6tDyYGnx4/8o/rCgU+B4JSyZBKbeZqzhtwtC3ovxjw==} 2034 | engines: {node: '>=10'} 2035 | hasBin: true 2036 | dependencies: 2037 | detect-libc: 2.0.1 2038 | expand-template: 2.0.3 2039 | github-from-package: 0.0.0 2040 | minimist: 1.2.6 2041 | mkdirp-classic: 0.5.3 2042 | napi-build-utils: 1.0.2 2043 | node-abi: 3.22.0 2044 | pump: 3.0.0 2045 | rc: 1.2.8 2046 | simple-get: 4.0.1 2047 | tar-fs: 2.1.1 2048 | tunnel-agent: 0.6.0 2049 | dev: false 2050 | 2051 | /prelude-ls/1.2.1: 2052 | resolution: {integrity: sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==} 2053 | engines: {node: '>= 0.8.0'} 2054 | dev: true 2055 | 2056 | /prepend-http/2.0.0: 2057 | resolution: {integrity: sha512-ravE6m9Atw9Z/jjttRUZ+clIXogdghyZAuWJ3qEzjT+jI/dL1ifAqhZeC5VHzQp1MSt1+jxKkFNemj/iO7tVUA==} 2058 | engines: {node: '>=4'} 2059 | dev: true 2060 | 2061 | /proxy-addr/2.0.7: 2062 | resolution: {integrity: sha512-llQsMLSUDUPT44jdrU/O37qlnifitDP+ZwrmmZcoSKyLKvtZxpyV0n2/bD/N4tBAAZ/gJEdZU7KMraoK1+XYAg==} 2063 | engines: {node: '>= 0.10'} 2064 | dependencies: 2065 | forwarded: 0.2.0 2066 | ipaddr.js: 1.9.1 2067 | dev: false 2068 | 2069 | /pstree.remy/1.1.8: 2070 | resolution: {integrity: sha512-77DZwxQmxKnu3aR542U+X8FypNzbfJ+C5XQDk3uWjWxn6151aIMGthWYRXTqT1E5oJvg+ljaa2OJi+VfvCOQ8w==} 2071 | dev: true 2072 | 2073 | /pump/3.0.0: 2074 | resolution: {integrity: sha512-LwZy+p3SFs1Pytd/jYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww==} 2075 | dependencies: 2076 | end-of-stream: 1.4.4 2077 | once: 1.4.0 2078 | 2079 | /punycode/2.1.1: 2080 | resolution: {integrity: sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A==} 2081 | engines: {node: '>=6'} 2082 | dev: true 2083 | 2084 | /pupa/2.1.1: 2085 | resolution: {integrity: sha512-l1jNAspIBSFqbT+y+5FosojNpVpF94nlI+wDUpqP9enwOTfHx9f0gh5nB96vl+6yTpsJsypeNrwfzPrKuHB41A==} 2086 | engines: {node: '>=8'} 2087 | dependencies: 2088 | escape-goat: 2.1.1 2089 | dev: true 2090 | 2091 | /qs/6.10.3: 2092 | resolution: {integrity: sha512-wr7M2E0OFRfIfJZjKGieI8lBKb7fRCH4Fv5KNPEs7gJ8jadvotdsS08PzOKR7opXhZ/Xkjtt3WF9g38drmyRqQ==} 2093 | engines: {node: '>=0.6'} 2094 | dependencies: 2095 | side-channel: 1.0.4 2096 | dev: false 2097 | 2098 | /queue-microtask/1.2.3: 2099 | resolution: {integrity: sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==} 2100 | dev: true 2101 | 2102 | /range-parser/1.2.1: 2103 | resolution: {integrity: sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg==} 2104 | engines: {node: '>= 0.6'} 2105 | dev: false 2106 | 2107 | /raw-body/2.5.1: 2108 | resolution: {integrity: sha512-qqJBtEyVgS0ZmPGdCFPWJ3FreoqvG4MVQln/kCgF7Olq95IbOp0/BWyMwbdtn4VTvkM8Y7khCQ2Xgk/tcrCXig==} 2109 | engines: {node: '>= 0.8'} 2110 | dependencies: 2111 | bytes: 3.1.2 2112 | http-errors: 2.0.0 2113 | iconv-lite: 0.4.24 2114 | unpipe: 1.0.0 2115 | dev: false 2116 | 2117 | /rc/1.2.8: 2118 | resolution: {integrity: sha512-y3bGgqKj3QBdxLbLkomlohkvsA8gdAiUQlSBJnBhfn+BPxg4bc62d8TcBW15wavDfgexCgccckhcZvywyQYPOw==} 2119 | hasBin: true 2120 | dependencies: 2121 | deep-extend: 0.6.0 2122 | ini: 1.3.8 2123 | minimist: 1.2.6 2124 | strip-json-comments: 2.0.1 2125 | 2126 | /readable-stream/3.6.0: 2127 | resolution: {integrity: sha512-BViHy7LKeTz4oNnkcLJ+lVSL6vpiFeX6/d3oSH8zCW7UxP2onchk+vTGB143xuFjHS3deTgkKoXXymXqymiIdA==} 2128 | engines: {node: '>= 6'} 2129 | dependencies: 2130 | inherits: 2.0.4 2131 | string_decoder: 1.3.0 2132 | util-deprecate: 1.0.2 2133 | dev: false 2134 | 2135 | /readdirp/3.6.0: 2136 | resolution: {integrity: sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==} 2137 | engines: {node: '>=8.10.0'} 2138 | dependencies: 2139 | picomatch: 2.3.1 2140 | dev: true 2141 | 2142 | /regexp.prototype.flags/1.4.3: 2143 | resolution: {integrity: sha512-fjggEOO3slI6Wvgjwflkc4NFRCTZAu5CnNfBd5qOMYhWdn67nJBBu34/TkD++eeFmd8C9r9jfXJ27+nSiRkSUA==} 2144 | engines: {node: '>= 0.4'} 2145 | dependencies: 2146 | call-bind: 1.0.2 2147 | define-properties: 1.1.4 2148 | functions-have-names: 1.2.3 2149 | dev: true 2150 | 2151 | /regexpp/3.2.0: 2152 | resolution: {integrity: sha512-pq2bWo9mVD43nbts2wGv17XLiNLya+GklZ8kaDLV2Z08gDCsGpnKn9BFMepvWuHCbyVvY7J5o5+BVvoQbmlJLg==} 2153 | engines: {node: '>=8'} 2154 | dev: true 2155 | 2156 | /registry-auth-token/4.2.1: 2157 | resolution: {integrity: sha512-6gkSb4U6aWJB4SF2ZvLb76yCBjcvufXBqvvEx1HbmKPkutswjW1xNVRY0+daljIYRbogN7O0etYSlbiaEQyMyw==} 2158 | engines: {node: '>=6.0.0'} 2159 | dependencies: 2160 | rc: 1.2.8 2161 | dev: true 2162 | 2163 | /registry-url/5.1.0: 2164 | resolution: {integrity: sha512-8acYXXTI0AkQv6RAOjE3vOaIXZkT9wo4LOFbBKYQEEnnMNBpKqdUrI6S4NT0KPIo/WVvJ5tE/X5LF/TQUf0ekw==} 2165 | engines: {node: '>=8'} 2166 | dependencies: 2167 | rc: 1.2.8 2168 | dev: true 2169 | 2170 | /resolve-from/4.0.0: 2171 | resolution: {integrity: sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==} 2172 | engines: {node: '>=4'} 2173 | dev: true 2174 | 2175 | /resolve/1.22.0: 2176 | resolution: {integrity: sha512-Hhtrw0nLeSrFQ7phPp4OOcVjLPIeMnRlr5mcnVuMe7M/7eBn98A3hmFRLoFo3DLZkivSYwhRUJTyPyWAk56WLw==} 2177 | hasBin: true 2178 | dependencies: 2179 | is-core-module: 2.9.0 2180 | path-parse: 1.0.7 2181 | supports-preserve-symlinks-flag: 1.0.0 2182 | dev: true 2183 | 2184 | /responselike/1.0.2: 2185 | resolution: {integrity: sha512-/Fpe5guzJk1gPqdJLJR5u7eG/gNY4nImjbRDaVWVMRhne55TCmj2i9Q+54PBRfatRC8v/rIiv9BN0pMd9OV5EQ==} 2186 | dependencies: 2187 | lowercase-keys: 1.0.1 2188 | dev: true 2189 | 2190 | /reusify/1.0.4: 2191 | resolution: {integrity: sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==} 2192 | engines: {iojs: '>=1.0.0', node: '>=0.10.0'} 2193 | dev: true 2194 | 2195 | /rimraf/3.0.2: 2196 | resolution: {integrity: sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==} 2197 | hasBin: true 2198 | dependencies: 2199 | glob: 7.1.6 2200 | dev: true 2201 | 2202 | /run-parallel/1.2.0: 2203 | resolution: {integrity: sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==} 2204 | dependencies: 2205 | queue-microtask: 1.2.3 2206 | dev: true 2207 | 2208 | /safe-buffer/5.2.1: 2209 | resolution: {integrity: sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==} 2210 | dev: false 2211 | 2212 | /safer-buffer/2.1.2: 2213 | resolution: {integrity: sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==} 2214 | dev: false 2215 | 2216 | /semver-diff/3.1.1: 2217 | resolution: {integrity: sha512-GX0Ix/CJcHyB8c4ykpHGIAvLyOwOobtM/8d+TQkAd81/bEjgPHrfba41Vpesr7jX/t8Uh+R3EX9eAS5be+jQYg==} 2218 | engines: {node: '>=8'} 2219 | dependencies: 2220 | semver: 6.3.0 2221 | dev: true 2222 | 2223 | /semver/5.7.1: 2224 | resolution: {integrity: sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==} 2225 | hasBin: true 2226 | dev: true 2227 | 2228 | /semver/6.3.0: 2229 | resolution: {integrity: sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==} 2230 | hasBin: true 2231 | dev: true 2232 | 2233 | /semver/7.3.7: 2234 | resolution: {integrity: sha512-QlYTucUYOews+WeEujDoEGziz4K6c47V/Bd+LjSSYcA94p+DmINdf7ncaUinThfvZyu13lN9OY1XDxt8C0Tw0g==} 2235 | engines: {node: '>=10'} 2236 | hasBin: true 2237 | dependencies: 2238 | lru-cache: 6.0.0 2239 | 2240 | /send/0.18.0: 2241 | resolution: {integrity: sha512-qqWzuOjSFOuqPjFe4NOsMLafToQQwBSOEpS+FwEt3A2V3vKubTquT3vmLTQpFgMXp8AlFWFuP1qKaJZOtPpVXg==} 2242 | engines: {node: '>= 0.8.0'} 2243 | dependencies: 2244 | debug: 2.6.9 2245 | depd: 2.0.0 2246 | destroy: 1.2.0 2247 | encodeurl: 1.0.2 2248 | escape-html: 1.0.3 2249 | etag: 1.8.1 2250 | fresh: 0.5.2 2251 | http-errors: 2.0.0 2252 | mime: 1.6.0 2253 | ms: 2.1.3 2254 | on-finished: 2.4.1 2255 | range-parser: 1.2.1 2256 | statuses: 2.0.1 2257 | transitivePeerDependencies: 2258 | - supports-color 2259 | dev: false 2260 | 2261 | /serve-static/1.15.0: 2262 | resolution: {integrity: sha512-XGuRDNjXUijsUL0vl6nSD7cwURuzEgglbOaFuZM9g3kwDXOWVTck0jLzjPzGD+TazWbboZYu52/9/XPdUgne9g==} 2263 | engines: {node: '>= 0.8.0'} 2264 | dependencies: 2265 | encodeurl: 1.0.2 2266 | escape-html: 1.0.3 2267 | parseurl: 1.3.3 2268 | send: 0.18.0 2269 | transitivePeerDependencies: 2270 | - supports-color 2271 | dev: false 2272 | 2273 | /setprototypeof/1.2.0: 2274 | resolution: {integrity: sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw==} 2275 | dev: false 2276 | 2277 | /sharp/0.30.6: 2278 | resolution: {integrity: sha512-lSdVxFxcndzcXggDrak6ozdGJgmIgES9YVZWtAFrwi+a/H5vModaf51TghBtMPw+71sLxUsTy2j+aB7qLIODQg==} 2279 | engines: {node: '>=12.13.0'} 2280 | requiresBuild: true 2281 | dependencies: 2282 | color: 4.2.3 2283 | detect-libc: 2.0.1 2284 | node-addon-api: 5.0.0 2285 | prebuild-install: 7.1.1 2286 | semver: 7.3.7 2287 | simple-get: 4.0.1 2288 | tar-fs: 2.1.1 2289 | tunnel-agent: 0.6.0 2290 | dev: false 2291 | 2292 | /shebang-command/2.0.0: 2293 | resolution: {integrity: sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==} 2294 | engines: {node: '>=8'} 2295 | dependencies: 2296 | shebang-regex: 3.0.0 2297 | dev: true 2298 | 2299 | /shebang-regex/3.0.0: 2300 | resolution: {integrity: sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==} 2301 | engines: {node: '>=8'} 2302 | dev: true 2303 | 2304 | /side-channel/1.0.4: 2305 | resolution: {integrity: sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw==} 2306 | dependencies: 2307 | call-bind: 1.0.2 2308 | get-intrinsic: 1.1.2 2309 | object-inspect: 1.12.2 2310 | 2311 | /signal-exit/3.0.7: 2312 | resolution: {integrity: sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==} 2313 | dev: true 2314 | 2315 | /simple-concat/1.0.1: 2316 | resolution: {integrity: sha512-cSFtAPtRhljv69IK0hTVZQ+OfE9nePi/rtJmw5UjHeVyVroEqJXP1sFztKUy1qU+xvz3u/sfYJLa947b7nAN2Q==} 2317 | dev: false 2318 | 2319 | /simple-get/4.0.1: 2320 | resolution: {integrity: sha512-brv7p5WgH0jmQJr1ZDDfKDOSeWWg+OVypG99A/5vYGPqJ6pxiaHLy8nxtFjBA7oMa01ebA9gfh1uMCFqOuXxvA==} 2321 | dependencies: 2322 | decompress-response: 6.0.0 2323 | once: 1.4.0 2324 | simple-concat: 1.0.1 2325 | dev: false 2326 | 2327 | /simple-swizzle/0.2.2: 2328 | resolution: {integrity: sha512-JA//kQgZtbuY83m+xT+tXJkmJncGMTFT+C+g2h2R9uxkYIrE2yy9sgmcLhCnw57/WSD+Eh3J97FPEDFnbXnDUg==} 2329 | dependencies: 2330 | is-arrayish: 0.3.2 2331 | dev: false 2332 | 2333 | /slash/3.0.0: 2334 | resolution: {integrity: sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==} 2335 | engines: {node: '>=8'} 2336 | dev: true 2337 | 2338 | /statuses/2.0.1: 2339 | resolution: {integrity: sha512-RwNA9Z/7PrK06rYLIzFMlaF+l73iwpzsqRIFgbMLbTcLD6cOao82TaWefPXQvB2fOC4AjuYSEndS7N/mTCbkdQ==} 2340 | engines: {node: '>= 0.8'} 2341 | dev: false 2342 | 2343 | /string-width/4.2.3: 2344 | resolution: {integrity: sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==} 2345 | engines: {node: '>=8'} 2346 | dependencies: 2347 | emoji-regex: 8.0.0 2348 | is-fullwidth-code-point: 3.0.0 2349 | strip-ansi: 6.0.1 2350 | dev: true 2351 | 2352 | /string.prototype.trimend/1.0.5: 2353 | resolution: {integrity: sha512-I7RGvmjV4pJ7O3kdf+LXFpVfdNOxtCW/2C8f6jNiW4+PQchwxkCDzlk1/7p+Wl4bqFIZeF47qAHXLuHHWKAxog==} 2354 | dependencies: 2355 | call-bind: 1.0.2 2356 | define-properties: 1.1.4 2357 | es-abstract: 1.20.1 2358 | dev: true 2359 | 2360 | /string.prototype.trimstart/1.0.5: 2361 | resolution: {integrity: sha512-THx16TJCGlsN0o6dl2o6ncWUsdgnLRSA23rRE5pyGBw/mLr3Ej/R2LaqCtgP8VNMGZsvMWnf9ooZPyY2bHvUFg==} 2362 | dependencies: 2363 | call-bind: 1.0.2 2364 | define-properties: 1.1.4 2365 | es-abstract: 1.20.1 2366 | dev: true 2367 | 2368 | /string_decoder/1.3.0: 2369 | resolution: {integrity: sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==} 2370 | dependencies: 2371 | safe-buffer: 5.2.1 2372 | dev: false 2373 | 2374 | /strip-ansi/6.0.1: 2375 | resolution: {integrity: sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==} 2376 | engines: {node: '>=8'} 2377 | dependencies: 2378 | ansi-regex: 5.0.1 2379 | dev: true 2380 | 2381 | /strip-bom/3.0.0: 2382 | resolution: {integrity: sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA==} 2383 | engines: {node: '>=4'} 2384 | dev: true 2385 | 2386 | /strip-json-comments/2.0.1: 2387 | resolution: {integrity: sha512-4gB8na07fecVVkOI6Rs4e7T6NOTki5EmL7TUduTs6bu3EdnSycntVJ4re8kgZA+wx9IueI2Y11bfbgwtzuE0KQ==} 2388 | engines: {node: '>=0.10.0'} 2389 | 2390 | /strip-json-comments/3.1.1: 2391 | resolution: {integrity: sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==} 2392 | engines: {node: '>=8'} 2393 | dev: true 2394 | 2395 | /sucrase/3.21.0: 2396 | resolution: {integrity: sha512-FjAhMJjDcifARI7bZej0Bi1yekjWQHoEvWIXhLPwDhC6O4iZ5PtGb86WV56riW87hzpgB13wwBKO9vKAiWu5VQ==} 2397 | engines: {node: '>=8'} 2398 | hasBin: true 2399 | dependencies: 2400 | commander: 4.1.1 2401 | glob: 7.1.6 2402 | lines-and-columns: 1.2.4 2403 | mz: 2.7.0 2404 | pirates: 4.0.5 2405 | ts-interface-checker: 0.1.13 2406 | dev: true 2407 | 2408 | /supports-color/5.5.0: 2409 | resolution: {integrity: sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==} 2410 | engines: {node: '>=4'} 2411 | dependencies: 2412 | has-flag: 3.0.0 2413 | dev: true 2414 | 2415 | /supports-color/7.2.0: 2416 | resolution: {integrity: sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==} 2417 | engines: {node: '>=8'} 2418 | dependencies: 2419 | has-flag: 4.0.0 2420 | dev: true 2421 | 2422 | /supports-preserve-symlinks-flag/1.0.0: 2423 | resolution: {integrity: sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==} 2424 | engines: {node: '>= 0.4'} 2425 | dev: true 2426 | 2427 | /tar-fs/2.1.1: 2428 | resolution: {integrity: sha512-V0r2Y9scmbDRLCNex/+hYzvp/zyYjvFbHPNgVTKfQvVrb6guiE/fxP+XblDNR011utopbkex2nM4dHNV6GDsng==} 2429 | dependencies: 2430 | chownr: 1.1.4 2431 | mkdirp-classic: 0.5.3 2432 | pump: 3.0.0 2433 | tar-stream: 2.2.0 2434 | dev: false 2435 | 2436 | /tar-stream/2.2.0: 2437 | resolution: {integrity: sha512-ujeqbceABgwMZxEJnk2HDY2DlnUZ+9oEcb1KzTVfYHio0UE6dG71n60d8D2I4qNvleWrrXpmjpt7vZeF1LnMZQ==} 2438 | engines: {node: '>=6'} 2439 | dependencies: 2440 | bl: 4.1.0 2441 | end-of-stream: 1.4.4 2442 | fs-constants: 1.0.0 2443 | inherits: 2.0.4 2444 | readable-stream: 3.6.0 2445 | dev: false 2446 | 2447 | /text-table/0.2.0: 2448 | resolution: {integrity: sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw==} 2449 | dev: true 2450 | 2451 | /thenify-all/1.6.0: 2452 | resolution: {integrity: sha512-RNxQH/qI8/t3thXJDwcstUO4zeqo64+Uy/+sNVRBx4Xn2OX+OZ9oP+iJnNFqplFra2ZUVeKCSa2oVWi3T4uVmA==} 2453 | engines: {node: '>=0.8'} 2454 | dependencies: 2455 | thenify: 3.3.1 2456 | dev: true 2457 | 2458 | /thenify/3.3.1: 2459 | resolution: {integrity: sha512-RVZSIV5IG10Hk3enotrhvz0T9em6cyHBLkH/YAZuKqd8hRkKhSfCGIcP2KUY0EPxndzANBmNllzWPwak+bheSw==} 2460 | dependencies: 2461 | any-promise: 1.3.0 2462 | dev: true 2463 | 2464 | /to-readable-stream/1.0.0: 2465 | resolution: {integrity: sha512-Iq25XBt6zD5npPhlLVXGFN3/gyR2/qODcKNNyTMd4vbm39HUaOiAM4PMq0eMVC/Tkxz+Zjdsc55g9yyz+Yq00Q==} 2466 | engines: {node: '>=6'} 2467 | dev: true 2468 | 2469 | /to-regex-range/5.0.1: 2470 | resolution: {integrity: sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==} 2471 | engines: {node: '>=8.0'} 2472 | dependencies: 2473 | is-number: 7.0.0 2474 | dev: true 2475 | 2476 | /toidentifier/1.0.1: 2477 | resolution: {integrity: sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA==} 2478 | engines: {node: '>=0.6'} 2479 | dev: false 2480 | 2481 | /touch/3.1.0: 2482 | resolution: {integrity: sha512-WBx8Uy5TLtOSRtIq+M03/sKDrXCLHxwDcquSP2c43Le03/9serjQBIztjRz6FkJez9D/hleyAXTBGLwwZUw9lA==} 2483 | hasBin: true 2484 | dependencies: 2485 | nopt: 1.0.10 2486 | dev: true 2487 | 2488 | /ts-interface-checker/0.1.13: 2489 | resolution: {integrity: sha512-Y/arvbn+rrz3JCKl9C4kVNfTfSm2/mEp5FSz5EsZSANGPSlQrpRI5M4PKF+mJnE52jOO90PnPSc3Ur3bTQw0gA==} 2490 | dev: true 2491 | 2492 | /tsconfig-paths/3.14.1: 2493 | resolution: {integrity: sha512-fxDhWnFSLt3VuTwtvJt5fpwxBHg5AdKWMsgcPOOIilyjymcYVZoCQF8fvFRezCNfblEXmi+PcM1eYHeOAgXCOQ==} 2494 | dependencies: 2495 | '@types/json5': 0.0.29 2496 | json5: 1.0.1 2497 | minimist: 1.2.6 2498 | strip-bom: 3.0.0 2499 | dev: true 2500 | 2501 | /tslib/1.14.1: 2502 | resolution: {integrity: sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==} 2503 | dev: true 2504 | 2505 | /tsutils/3.21.0_typescript@4.7.3: 2506 | resolution: {integrity: sha512-mHKK3iUXL+3UF6xL5k0PEhKRUBKPBCv/+RkEOpjRWxxx27KKRBmmA60A9pgOUvMi8GKhRMPEmjBRPzs2W7O1OA==} 2507 | engines: {node: '>= 6'} 2508 | peerDependencies: 2509 | typescript: '>=2.8.0 || >= 3.2.0-dev || >= 3.3.0-dev || >= 3.4.0-dev || >= 3.5.0-dev || >= 3.6.0-dev || >= 3.6.0-beta || >= 3.7.0-dev || >= 3.7.0-beta' 2510 | dependencies: 2511 | tslib: 1.14.1 2512 | typescript: 4.7.3 2513 | dev: true 2514 | 2515 | /tunnel-agent/0.6.0: 2516 | resolution: {integrity: sha512-McnNiV1l8RYeY8tBgEpuodCC1mLUdbSN+CYBL7kJsJNInOP8UjDDEwdk6Mw60vdLLrr5NHKZhMAOSrR2NZuQ+w==} 2517 | dependencies: 2518 | safe-buffer: 5.2.1 2519 | dev: false 2520 | 2521 | /twitter-api-v2/1.12.2: 2522 | resolution: {integrity: sha512-vgv4ndG7BcjSzcm/Owf+tN4DVSZxWlN61hpulFkmUdf+hBjWvr/0edHoy+IUm1g2pJ7c+6706ZgkjZPdp0GHQA==} 2523 | dev: false 2524 | 2525 | /type-check/0.4.0: 2526 | resolution: {integrity: sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==} 2527 | engines: {node: '>= 0.8.0'} 2528 | dependencies: 2529 | prelude-ls: 1.2.1 2530 | dev: true 2531 | 2532 | /type-fest/0.20.2: 2533 | resolution: {integrity: sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==} 2534 | engines: {node: '>=10'} 2535 | dev: true 2536 | 2537 | /type-is/1.6.18: 2538 | resolution: {integrity: sha512-TkRKr9sUTxEH8MdfuCSP7VizJyzRNMjj2J2do2Jr3Kym598JVdEksuzPQCnlFPW4ky9Q+iA+ma9BGm06XQBy8g==} 2539 | engines: {node: '>= 0.6'} 2540 | dependencies: 2541 | media-typer: 0.3.0 2542 | mime-types: 2.1.35 2543 | dev: false 2544 | 2545 | /typedarray-to-buffer/3.1.5: 2546 | resolution: {integrity: sha512-zdu8XMNEDepKKR+XYOXAVPtWui0ly0NtohUscw+UmaHiAWT8hrV1rr//H6V+0DvJ3OQ19S979M0laLfX8rm82Q==} 2547 | dependencies: 2548 | is-typedarray: 1.0.0 2549 | dev: true 2550 | 2551 | /typescript/4.7.3: 2552 | resolution: {integrity: sha512-WOkT3XYvrpXx4vMMqlD+8R8R37fZkjyLGlxavMc4iB8lrl8L0DeTcHbYgw/v0N/z9wAFsgBhcsF0ruoySS22mA==} 2553 | engines: {node: '>=4.2.0'} 2554 | hasBin: true 2555 | dev: true 2556 | 2557 | /unbox-primitive/1.0.2: 2558 | resolution: {integrity: sha512-61pPlCD9h51VoreyJ0BReideM3MDKMKnh6+V9L08331ipq6Q8OFXZYiqP6n/tbHx4s5I9uRhcye6BrbkizkBDw==} 2559 | dependencies: 2560 | call-bind: 1.0.2 2561 | has-bigints: 1.0.2 2562 | has-symbols: 1.0.3 2563 | which-boxed-primitive: 1.0.2 2564 | dev: true 2565 | 2566 | /undefsafe/2.0.5: 2567 | resolution: {integrity: sha512-WxONCrssBM8TSPRqN5EmsjVrsv4A8X12J4ArBiiayv3DyyG3ZlIg6yysuuSYdZsVz3TKcTg2fd//Ujd4CHV1iA==} 2568 | dev: true 2569 | 2570 | /unique-string/2.0.0: 2571 | resolution: {integrity: sha512-uNaeirEPvpZWSgzwsPGtU2zVSTrn/8L5q/IexZmH0eH6SA73CmAA5U4GwORTxQAZs95TAXLNqeLoPPNO5gZfWg==} 2572 | engines: {node: '>=8'} 2573 | dependencies: 2574 | crypto-random-string: 2.0.0 2575 | dev: true 2576 | 2577 | /unpipe/1.0.0: 2578 | resolution: {integrity: sha1-sr9O6FFKrmFltIF4KdIbLvSZBOw=} 2579 | engines: {node: '>= 0.8'} 2580 | dev: false 2581 | 2582 | /update-notifier/5.1.0: 2583 | resolution: {integrity: sha512-ItnICHbeMh9GqUy31hFPrD1kcuZ3rpxDZbf4KUDavXwS0bW5m7SLbDQpGX3UYr072cbrF5hFUs3r5tUsPwjfHw==} 2584 | engines: {node: '>=10'} 2585 | dependencies: 2586 | boxen: 5.1.2 2587 | chalk: 4.1.2 2588 | configstore: 5.0.1 2589 | has-yarn: 2.1.0 2590 | import-lazy: 2.1.0 2591 | is-ci: 2.0.0 2592 | is-installed-globally: 0.4.0 2593 | is-npm: 5.0.0 2594 | is-yarn-global: 0.3.0 2595 | latest-version: 5.1.0 2596 | pupa: 2.1.1 2597 | semver: 7.3.7 2598 | semver-diff: 3.1.1 2599 | xdg-basedir: 4.0.0 2600 | dev: true 2601 | 2602 | /uri-js/4.4.1: 2603 | resolution: {integrity: sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==} 2604 | dependencies: 2605 | punycode: 2.1.1 2606 | dev: true 2607 | 2608 | /url-parse-lax/3.0.0: 2609 | resolution: {integrity: sha512-NjFKA0DidqPa5ciFcSrXnAltTtzz84ogy+NebPvfEgAck0+TNg4UJ4IN+fB7zRZfbgUf0syOo9MDxFkDSMuFaQ==} 2610 | engines: {node: '>=4'} 2611 | dependencies: 2612 | prepend-http: 2.0.0 2613 | dev: true 2614 | 2615 | /util-deprecate/1.0.2: 2616 | resolution: {integrity: sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==} 2617 | dev: false 2618 | 2619 | /utils-merge/1.0.1: 2620 | resolution: {integrity: sha1-n5VxD1CiZ5R7LMwSR0HBAoQn5xM=} 2621 | engines: {node: '>= 0.4.0'} 2622 | dev: false 2623 | 2624 | /v8-compile-cache/2.3.0: 2625 | resolution: {integrity: sha512-l8lCEmLcLYZh4nbunNZvQCJc5pv7+RCwa8q/LdUx8u7lsWvPDKmpodJAJNwkAhJC//dFY48KuIEmjtd4RViDrA==} 2626 | dev: true 2627 | 2628 | /vary/1.1.2: 2629 | resolution: {integrity: sha512-BNGbWLfd0eUPabhkXUVm0j8uuvREyTh5ovRa/dyow/BqAbZJyC+5fU+IzQOzmAKzYqYRAISoRhdQr3eIZ/PXqg==} 2630 | engines: {node: '>= 0.8'} 2631 | dev: false 2632 | 2633 | /which-boxed-primitive/1.0.2: 2634 | resolution: {integrity: sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg==} 2635 | dependencies: 2636 | is-bigint: 1.0.4 2637 | is-boolean-object: 1.1.2 2638 | is-number-object: 1.0.7 2639 | is-string: 1.0.7 2640 | is-symbol: 1.0.4 2641 | dev: true 2642 | 2643 | /which/2.0.2: 2644 | resolution: {integrity: sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==} 2645 | engines: {node: '>= 8'} 2646 | hasBin: true 2647 | dependencies: 2648 | isexe: 2.0.0 2649 | dev: true 2650 | 2651 | /widest-line/3.1.0: 2652 | resolution: {integrity: sha512-NsmoXalsWVDMGupxZ5R08ka9flZjjiLvHVAWYOKtiKM8ujtZWr9cRffak+uSE48+Ob8ObalXpwyeUiyDD6QFgg==} 2653 | engines: {node: '>=8'} 2654 | dependencies: 2655 | string-width: 4.2.3 2656 | dev: true 2657 | 2658 | /word-wrap/1.2.3: 2659 | resolution: {integrity: sha512-Hz/mrNwitNRh/HUAtM/VT/5VH+ygD6DV7mYKZAtHOrbs8U7lvPS6xf7EJKMF0uW1KJCl0H701g3ZGus+muE5vQ==} 2660 | engines: {node: '>=0.10.0'} 2661 | dev: true 2662 | 2663 | /wrap-ansi/7.0.0: 2664 | resolution: {integrity: sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==} 2665 | engines: {node: '>=10'} 2666 | dependencies: 2667 | ansi-styles: 4.3.0 2668 | string-width: 4.2.3 2669 | strip-ansi: 6.0.1 2670 | dev: true 2671 | 2672 | /wrappy/1.0.2: 2673 | resolution: {integrity: sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==} 2674 | 2675 | /write-file-atomic/3.0.3: 2676 | resolution: {integrity: sha512-AvHcyZ5JnSfq3ioSyjrBkH9yW4m7Ayk8/9My/DD9onKeu/94fwrMocemO2QAJFAlnnDN+ZDS+ZjAR5ua1/PV/Q==} 2677 | dependencies: 2678 | imurmurhash: 0.1.4 2679 | is-typedarray: 1.0.0 2680 | signal-exit: 3.0.7 2681 | typedarray-to-buffer: 3.1.5 2682 | dev: true 2683 | 2684 | /xdg-basedir/4.0.0: 2685 | resolution: {integrity: sha512-PSNhEJDejZYV7h50BohL09Er9VaIefr2LMAf3OEmpCkjOi34eYyQYAXUTjEQtZJTKcF0E2UKTh+osDLsgNim9Q==} 2686 | engines: {node: '>=8'} 2687 | dev: true 2688 | 2689 | /yallist/4.0.0: 2690 | resolution: {integrity: sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==} 2691 | --------------------------------------------------------------------------------