├── .editorconfig ├── .eslintignore ├── .eslintrc.json ├── .github └── workflows │ └── codeql-analysis.yml ├── .gitignore ├── .npmignore ├── README.md ├── SECURITY.md ├── examples └── logo.png ├── index.d.ts ├── index.js ├── lib ├── api.ts ├── functions │ ├── anime │ │ ├── charactersAndStaff.ts │ │ ├── index.ts │ │ └── mainInformation.ts │ ├── genre │ │ ├── animesByGenre.ts │ │ ├── index.ts │ │ └── mangasByGenre.ts │ ├── itemById.ts │ └── manga │ │ ├── characters.ts │ │ ├── index.ts │ │ └── mainInformation.ts ├── index.ts └── interfaces │ ├── anime │ ├── CharactersAndStaff.ts │ └── MainInformation.ts │ ├── genre │ ├── AnimeByGenre.ts │ └── MangaByGenre.ts │ └── manga │ ├── Characters.ts │ └── MainInformation.ts ├── package.json ├── prettier.config.js ├── tsconfig.json └── yarn.lock /.editorconfig: -------------------------------------------------------------------------------- 1 | 2 | root = true 3 | 4 | [*] 5 | end_of_line = lf 6 | indent_style = space 7 | indent_size = 2 8 | charset = utf-8 9 | trim_trailing_whitespace = true 10 | insert_final_newline = true -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- 1 | /*.js 2 | node_modules 3 | -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "env": { 3 | "es6": true, 4 | "node": true 5 | }, 6 | "extends": [ 7 | "airbnb-base", 8 | "plugin:@typescript-eslint/recommended", 9 | "prettier/@typescript-eslint", 10 | "plugin:prettier/recommended" 11 | ], 12 | "globals": { 13 | "Atomics": "readonly", 14 | "SharedArrayBuffer": "readonly" 15 | }, 16 | "parser": "@typescript-eslint/parser", 17 | "parserOptions": { 18 | "ecmaVersion": 2018, 19 | "sourceType": "module" 20 | }, 21 | "plugins": [ 22 | "@typescript-eslint", 23 | "prettier" 24 | ], 25 | "rules": { 26 | "prettier/prettier": "error", 27 | "import/prefer-default-export": "off", 28 | "@typescript-eslint/camelcase": "off", 29 | "no-await-in-loop": "off", 30 | "no-restricted-syntax": "off", 31 | "camelcase": "off", 32 | "import/extensions": [ 33 | "error", 34 | "ignorePackages", 35 | { 36 | "ts": "never" 37 | } 38 | ] 39 | }, 40 | "settings": { 41 | "import/resolver":{ 42 | "typescript": {} 43 | } 44 | } 45 | } 46 | -------------------------------------------------------------------------------- /.github/workflows/codeql-analysis.yml: -------------------------------------------------------------------------------- 1 | # For most projects, this workflow file will not need changing; you simply need 2 | # to commit it to your repository. 3 | # 4 | # You may wish to alter this file to override the set of languages analyzed, 5 | # or to provide custom queries or build logic. 6 | # 7 | # ******** NOTE ******** 8 | # We have attempted to detect the languages in your repository. Please check 9 | # the `language` matrix defined below to confirm you have the correct set of 10 | # supported CodeQL languages. 11 | # 12 | name: "CodeQL" 13 | 14 | on: 15 | push: 16 | branches: [ master ] 17 | pull_request: 18 | # The branches below must be a subset of the branches above 19 | branches: [ master ] 20 | schedule: 21 | - cron: '24 5 * * 6' 22 | 23 | jobs: 24 | analyze: 25 | name: Analyze 26 | runs-on: ubuntu-latest 27 | 28 | strategy: 29 | fail-fast: false 30 | matrix: 31 | language: [ 'javascript' ] 32 | # CodeQL supports [ 'cpp', 'csharp', 'go', 'java', 'javascript', 'python' ] 33 | # Learn more: 34 | # https://docs.github.com/en/free-pro-team@latest/github/finding-security-vulnerabilities-and-errors-in-your-code/configuring-code-scanning#changing-the-languages-that-are-analyzed 35 | 36 | steps: 37 | - name: Checkout repository 38 | uses: actions/checkout@v2 39 | 40 | # Initializes the CodeQL tools for scanning. 41 | - name: Initialize CodeQL 42 | uses: github/codeql-action/init@v1 43 | with: 44 | languages: ${{ matrix.language }} 45 | # If you wish to specify custom queries, you can do so here or in a config file. 46 | # By default, queries listed here will override any specified in a config file. 47 | # Prefix the list here with "+" to use these queries and those in the config file. 48 | # queries: ./path/to/local/query, your-org/your-repo/queries@main 49 | 50 | # Autobuild attempts to build any compiled languages (C/C++, C#, or Java). 51 | # If this step fails, then you should remove it and run the build manually (see below) 52 | - name: Autobuild 53 | uses: github/codeql-action/autobuild@v1 54 | 55 | # ℹ️ Command-line programs to run using the OS shell. 56 | # 📚 https://git.io/JvXDl 57 | 58 | # ✏️ If the Autobuild fails above, remove it and uncomment the following three lines 59 | # and modify them (or add more) to build your code if your project 60 | # uses a compiled language 61 | 62 | #- run: | 63 | # make bootstrap 64 | # make release 65 | 66 | - name: Perform CodeQL Analysis 67 | uses: github/codeql-action/analyze@v1 68 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | dist 3 | 4 | tests 5 | 6 | .DS_Store 7 | -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | .git 2 | src 3 | tests 4 | examples 5 | 6 | .editorconfig 7 | .eslintignore 8 | .eslintrc.json 9 | .gitignore 10 | prettier.config.js 11 | tsconfig.json 12 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 |

2 | jikan node.js 3 |

4 | 5 | # Jikan Node.js 6 | > A wrapper for the jikan REST API. 7 | 8 | For more information, please refer to [Jikan documentation](https://jikan.docs.apiary.io/#). 9 | 10 | ## Getting Started 11 | 12 | ### Installation 13 | 14 | if you use npm 15 | ``` 16 | $ npm install jikan-nodejs 17 | ``` 18 | 19 | if you use yarn 20 | ``` 21 | $ yarn add jikan-nodejs 22 | ``` 23 | 24 | ### Example 25 | 26 | > Feature: genre.animesByGenre(genreId, params) 27 | ```js 28 | const { genre } = require('jikan-nodejs'); 29 | 30 | async function getAnimesByGenre() { 31 | const animes = await genre.animesByGenre(1, { limit: 10 }); // parameters: genreId, { limit } 32 | console.log(animes); // print 10 animes of genre 1 33 | } 34 | 35 | getAnimesByGenre(); 36 | ``` 37 | 38 | ## Features 39 | - Item By Id; 40 | - Anime: 41 | - Main Information; 42 | - Characters & Staff. 43 | - Manga: 44 | - Main Information; 45 | - Characters. 46 | - Genre: 47 | - Anime Listing (All Anime by Genre); 48 | - Manga Listing (All Anime by Genre). 49 | 50 | --- 51 | 52 | ## Contributing 53 | 54 | > To get started... 55 | 56 | ### Step 1 57 | 58 | - **Option 1** 59 | - 🍴 Fork this repo! 60 | 61 | - **Option 2** 62 | - 👯 Clone this repo to your local machine using `git clone https://github.com/ribeirogab/jikan-nodejs.git` 63 | 64 | ### Step 2 65 | 66 | - **HACK AWAY!** 🔨🔨🔨 67 | 68 | ### Step 3 69 | 70 | - 🔃 Create a new pull request using `https://github.com/ribeirogab/jikan-nodejs/compare/`. 71 | 72 | --- 73 | 74 | ## Contributors 75 | 76 | | [
@lucassodrem1](https://github.com/lucassodrem1) | | | | | | 77 | |:-:|:-:|:-:|:-:|:-:|:-:| 78 | 79 | ## Author 80 | 81 | | [
@ribeirogab](https://github.com/ribeirogab) | 82 | | :---: | 83 | 84 | --- 85 | 86 | ## FAQ 87 | 88 | - **How do I do *specifically* so and so?** 89 | - No problem! Just do this. 90 | 91 | --- 92 | 93 | ## Support 94 | 95 | Contact me! 96 | 97 | - E-mail `ribeirogabx@gmail.com` 98 | 99 | --- 100 | 101 | ## Licensa 102 | 103 | [![License](http://img.shields.io/:license-mit-blue.svg?style=flat-square)](http://badges.mit-license.org) 104 | 105 | - **[MIT license](http://opensource.org/licenses/mit-license.php)** 106 | -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- 1 | # Security Policy 2 | 3 | ## Supported Versions 4 | 5 | Use this section to tell people about which versions of your project are 6 | currently being supported with security updates. 7 | 8 | | Version | Supported | 9 | | ------- | ------------------ | 10 | | 5.1.x | :white_check_mark: | 11 | | 5.0.x | :x: | 12 | | 4.0.x | :white_check_mark: | 13 | | < 4.0 | :x: | 14 | 15 | ## Reporting a Vulnerability 16 | 17 | Use this section to tell people how to report a vulnerability. 18 | 19 | Tell them where to go, how often they can expect to get an update on a 20 | reported vulnerability, what to expect if the vulnerability is accepted or 21 | declined, etc. 22 | -------------------------------------------------------------------------------- /examples/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ribeirogab/jikan-nodejs/888e6af225359aab57691bf8a71928e07e622b0a/examples/logo.png -------------------------------------------------------------------------------- /index.d.ts: -------------------------------------------------------------------------------- 1 | import AnimeMainInformation from './lib/interfaces/anime/MainInformation'; 2 | import AnimeCharactersAndStaff from './lib/interfaces/anime/CharactersAndStaff'; 3 | import MangaMainInformation from './lib/interfaces/manga/MainInformation'; 4 | import MangaCharacters from './lib/interfaces/manga/Characters'; 5 | import GenreAnimeByGenre from './lib/interfaces/genre/AnimeByGenre'; 6 | import GenreMangaByGenre from './lib/interfaces/genre/MangaByGenre'; 7 | 8 | declare module 'jikan-nodejs' { 9 | export function itemById( 10 | type: string, 11 | mal_id: number, 12 | ): Promise; 13 | 14 | namespace anime { 15 | export function mainInformation( 16 | mal_id: number, 17 | ): Promise; 18 | export function charactersAndStaff( 19 | mal_id: number, 20 | ): Promise; 21 | } 22 | 23 | namespace manga { 24 | export function mainInformation( 25 | mal_id: number, 26 | ): Promise; 27 | export function characters(mal_id: number): Promise; 28 | } 29 | 30 | namespace genre { 31 | export function animesByGenre( 32 | mal_id: number, 33 | params?: { [Key: string]: number }, 34 | ): Promise; 35 | export function mangasByGenre( 36 | mal_id: number, 37 | params?: { [Key: string]: number }, 38 | ): Promise; 39 | } 40 | } 41 | -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./dist').default 2 | -------------------------------------------------------------------------------- /lib/api.ts: -------------------------------------------------------------------------------- 1 | import axios from 'axios'; 2 | 3 | const api = axios.create({ 4 | baseURL: 'https://api.jikan.moe/v3', 5 | }); 6 | 7 | export default api; 8 | -------------------------------------------------------------------------------- /lib/functions/anime/charactersAndStaff.ts: -------------------------------------------------------------------------------- 1 | import api from '../../api'; 2 | import CharactersAndStaff from '../../interfaces/anime/CharactersAndStaff'; 3 | 4 | export default async function charactersAndStaff( 5 | mal_id: number, 6 | ): Promise { 7 | const { data: item } = await api.get( 8 | `/anime/${mal_id}/characters_staff`, 9 | ); 10 | 11 | return item; 12 | } 13 | -------------------------------------------------------------------------------- /lib/functions/anime/index.ts: -------------------------------------------------------------------------------- 1 | import mainInformation from './mainInformation'; 2 | import charactersAndStaff from './charactersAndStaff'; 3 | 4 | export default { mainInformation, charactersAndStaff }; 5 | -------------------------------------------------------------------------------- /lib/functions/anime/mainInformation.ts: -------------------------------------------------------------------------------- 1 | import api from '../../api'; 2 | 3 | import MainInformation from '../../interfaces/anime/MainInformation'; 4 | 5 | export default async function mainInformation( 6 | mal_id: number, 7 | ): Promise { 8 | const { data: item } = await api.get(`/anime/${mal_id}`); 9 | 10 | return item; 11 | } 12 | -------------------------------------------------------------------------------- /lib/functions/genre/animesByGenre.ts: -------------------------------------------------------------------------------- 1 | import api from '../../api'; 2 | 3 | import AnimeByGenre from '../../interfaces/genre/AnimeByGenre'; 4 | 5 | export default async function animesByGenre( 6 | id: number, 7 | params?: { [Key: string]: number }, 8 | ): Promise { 9 | let url = `/search/anime?genre=${id}`; 10 | 11 | for (const param in params) { 12 | if (params[param]) { 13 | url += `&${param}=${params[param]}`; 14 | } 15 | } 16 | 17 | const { data } = await api.get(url); 18 | 19 | return data; 20 | } 21 | -------------------------------------------------------------------------------- /lib/functions/genre/index.ts: -------------------------------------------------------------------------------- 1 | import animesByGenre from './animesByGenre'; 2 | import mangasByGenre from './mangasByGenre'; 3 | 4 | export default { animesByGenre, mangasByGenre }; 5 | -------------------------------------------------------------------------------- /lib/functions/genre/mangasByGenre.ts: -------------------------------------------------------------------------------- 1 | import api from '../../api'; 2 | 3 | import MangaByGenre from '../../interfaces/genre/MangaByGenre'; 4 | 5 | export default async function mangasByGenre( 6 | mal_id: number, 7 | params?: { [Key: string]: number }, 8 | ): Promise { 9 | let url = `/search/manga?genre=${mal_id}`; 10 | 11 | for (const param in params) { 12 | if (params[param]) { 13 | url += `&${param}=${params[param]}`; 14 | } 15 | } 16 | 17 | const { data } = await api.get(url); 18 | 19 | return data; 20 | } 21 | -------------------------------------------------------------------------------- /lib/functions/itemById.ts: -------------------------------------------------------------------------------- 1 | import api from '../api'; 2 | 3 | import AnimeMainInformation from '../interfaces/anime/MainInformation'; 4 | import MangaMainInformation from '../interfaces/manga/MainInformation'; 5 | 6 | export default async function itemsById( 7 | type: 'anime' | 'manga', 8 | mal_id: number, 9 | ): Promise { 10 | const { data: item } = await api.get< 11 | AnimeMainInformation | MangaMainInformation 12 | >(`/${type}/${mal_id}`); 13 | 14 | return item; 15 | } 16 | -------------------------------------------------------------------------------- /lib/functions/manga/characters.ts: -------------------------------------------------------------------------------- 1 | import api from '../../api'; 2 | 3 | import Characters from '../../interfaces/manga/Characters'; 4 | 5 | export default async function characters(mal_id: number): Promise { 6 | const { data: item } = await api.get( 7 | `/manga/${mal_id}/characters`, 8 | ); 9 | 10 | return item; 11 | } 12 | -------------------------------------------------------------------------------- /lib/functions/manga/index.ts: -------------------------------------------------------------------------------- 1 | import mainInformation from './mainInformation'; 2 | import characters from './characters'; 3 | 4 | export default { mainInformation, characters }; 5 | -------------------------------------------------------------------------------- /lib/functions/manga/mainInformation.ts: -------------------------------------------------------------------------------- 1 | import api from '../../api'; 2 | 3 | import MainInformation from '../../interfaces/manga/MainInformation'; 4 | 5 | export default async function mainInformation( 6 | mal_id: number, 7 | ): Promise { 8 | const { data: item } = await api.get(`/manga/${mal_id}`); 9 | 10 | return item; 11 | } 12 | -------------------------------------------------------------------------------- /lib/index.ts: -------------------------------------------------------------------------------- 1 | import anime from './functions/anime'; 2 | import manga from './functions/manga'; 3 | import genre from './functions/genre'; 4 | import itemById from './functions/itemById'; 5 | 6 | export default { anime, manga, genre, itemById }; 7 | -------------------------------------------------------------------------------- /lib/interfaces/anime/CharactersAndStaff.ts: -------------------------------------------------------------------------------- 1 | interface Actor { 2 | mal_id: number; 3 | name: string; 4 | url: string; 5 | image_url: string; 6 | language: string; 7 | } 8 | 9 | interface Character { 10 | mal_id: number; 11 | url: string; 12 | image_url: string; 13 | name: string; 14 | role: string; 15 | voice_actors: Actor[]; 16 | } 17 | 18 | interface Staff { 19 | mal_id: number; 20 | url: string; 21 | image_url: string; 22 | positions: string[]; 23 | } 24 | 25 | export default interface CharactersAndStaff { 26 | request_hash: string; 27 | request_cached: boolean; 28 | request_cache_expiry: number; 29 | characters: Character[]; 30 | staff: Staff[]; 31 | } 32 | -------------------------------------------------------------------------------- /lib/interfaces/anime/MainInformation.ts: -------------------------------------------------------------------------------- 1 | interface Adaption { 2 | mal_id: number; 3 | type: string; 4 | name: string; 5 | url: string; 6 | } 7 | 8 | interface SideStory { 9 | mal_id: number; 10 | type: string; 11 | name: string; 12 | url: string; 13 | } 14 | 15 | interface Summary { 16 | mal_id: number; 17 | type: string; 18 | name: string; 19 | url: string; 20 | } 21 | 22 | interface Prequel { 23 | mal_id: number; 24 | type: string; 25 | name: string; 26 | url: string; 27 | } 28 | 29 | interface Producer { 30 | mal_id: number; 31 | type: string; 32 | name: string; 33 | url: string; 34 | } 35 | 36 | interface Licensor { 37 | mal_id: number; 38 | type: string; 39 | name: string; 40 | url: string; 41 | } 42 | 43 | interface Studio { 44 | mal_id: number; 45 | type: string; 46 | name: string; 47 | url: string; 48 | } 49 | 50 | interface Genre { 51 | mal_id: number; 52 | type: string; 53 | name: string; 54 | url: string; 55 | } 56 | 57 | export default interface MainInformation { 58 | request_hash: string; 59 | request_cached: boolean; 60 | request_cache_expiry: number; 61 | mal_id: number; 62 | url: string; 63 | image_url: string; 64 | trailer_url: string | null; 65 | title: string; 66 | title_english: string | null; 67 | title_japanese: string | null; 68 | title_synonyms: string[]; 69 | type: string; 70 | source: string; 71 | episodes: number | null; 72 | status: string; 73 | airing: boolean; 74 | aired: { 75 | from: string; 76 | to: string | null; 77 | prop: { 78 | from: { 79 | day: number; 80 | month: number; 81 | year: number; 82 | }; 83 | to: { 84 | day: number | null; 85 | month: number | null; 86 | year: number | null; 87 | }; 88 | }; 89 | }; 90 | duration: string; 91 | rating: string; 92 | score: number | null; 93 | scored_by: number | null; 94 | rank: number | null; 95 | popularity: number | null; 96 | members: number | null; 97 | favorites: number | null; 98 | synopsis: string | null; 99 | background: string | null; 100 | premiered: string; 101 | broadcast: string; 102 | related?: { 103 | Adaptation?: Adaption[]; 104 | 'Side story'?: SideStory[]; 105 | Prequel?: Prequel[]; 106 | Summary?: Summary[]; 107 | }; 108 | producers: Producer[]; 109 | licensors: Licensor[]; 110 | studios: Studio[]; 111 | genres: Genre[]; 112 | opening_themes: string[]; 113 | ending_themes: string[]; 114 | } 115 | -------------------------------------------------------------------------------- /lib/interfaces/genre/AnimeByGenre.ts: -------------------------------------------------------------------------------- 1 | interface Genre { 2 | mal_id: number; 3 | type: string; 4 | name: string; 5 | url: string; 6 | } 7 | 8 | interface Producer { 9 | mal_id: number; 10 | type: string; 11 | name: string; 12 | url: string; 13 | } 14 | 15 | export interface Anime { 16 | mal_id: number; 17 | url: string; 18 | title: string; 19 | image_url: string; 20 | synopsis: string; 21 | type: string; 22 | airing_start: string; 23 | episodes: number | null; 24 | members: number | null; 25 | genres: Genre[]; 26 | source: string; 27 | producers: Producer[]; 28 | score: number | null; 29 | licensors: string[]; 30 | r18: boolean; 31 | kids: boolean; 32 | } 33 | 34 | export default interface AnimeByGenre { 35 | request_hash: string; 36 | request_cached: true; 37 | request_cache_expiry: number; 38 | mal_url: { 39 | mal_id: number; 40 | type: string; 41 | name: string; 42 | url: string; 43 | }; 44 | item_count: number; 45 | anime: Anime[]; 46 | } 47 | -------------------------------------------------------------------------------- /lib/interfaces/genre/MangaByGenre.ts: -------------------------------------------------------------------------------- 1 | interface Genre { 2 | mal_id: number; 3 | type: string; 4 | name: string; 5 | url: string; 6 | } 7 | 8 | interface Author { 9 | mal_id: number; 10 | type: string; 11 | name: string; 12 | url: string; 13 | } 14 | 15 | export interface Manga { 16 | mal_id: number; 17 | url: string; 18 | title: string; 19 | image_url: string; 20 | synopsis: string; 21 | type: string; 22 | publishing_start: string; 23 | volumes: number | null; 24 | members: number | null; 25 | genres: Genre[]; 26 | authors: Author[]; 27 | score: number | null; 28 | serialization: string[]; 29 | } 30 | 31 | export default interface AnimeByGenre { 32 | request_hash: string; 33 | request_cached: true; 34 | request_cache_expiry: number; 35 | mal_url: { 36 | mal_id: number; 37 | type: string; 38 | name: string; 39 | url: string; 40 | }; 41 | item_count: number; 42 | manga: Manga[]; 43 | } 44 | -------------------------------------------------------------------------------- /lib/interfaces/manga/Characters.ts: -------------------------------------------------------------------------------- 1 | interface Actor { 2 | mal_id: number; 3 | name: string; 4 | url: string; 5 | image_url: string; 6 | language: string; 7 | } 8 | 9 | interface Character { 10 | mal_id: number; 11 | url: string; 12 | image_url: string; 13 | name: string; 14 | role: string; 15 | voice_actors: Actor[]; 16 | } 17 | 18 | export default interface CharactersAndStaff { 19 | request_hash: string; 20 | request_cached: boolean; 21 | request_cache_expiry: number; 22 | characters: Character[]; 23 | } 24 | -------------------------------------------------------------------------------- /lib/interfaces/manga/MainInformation.ts: -------------------------------------------------------------------------------- 1 | interface Adaption { 2 | mal_id: number; 3 | type: string; 4 | name: string; 5 | url: string; 6 | } 7 | 8 | interface SideStory { 9 | mal_id: number; 10 | type: string; 11 | name: string; 12 | url: string; 13 | } 14 | 15 | interface Summary { 16 | mal_id: number; 17 | type: string; 18 | name: string; 19 | url: string; 20 | } 21 | 22 | interface Prequel { 23 | mal_id: number; 24 | type: string; 25 | name: string; 26 | url: string; 27 | } 28 | 29 | interface Genre { 30 | mal_id: number; 31 | type: string; 32 | name: string; 33 | url: string; 34 | } 35 | 36 | interface Author { 37 | mal_id: number; 38 | type: string; 39 | name: string; 40 | url: string; 41 | } 42 | 43 | interface Serialization { 44 | mal_id: number; 45 | type: string; 46 | name: string; 47 | url: string; 48 | } 49 | 50 | export default interface MainInformation { 51 | request_hash: string; 52 | request_cached: boolean; 53 | request_cache_expiry: number; 54 | mal_id: number; 55 | url: string; 56 | title: string; 57 | title_english: string | null; 58 | title_synonyms: string[]; 59 | title_japanese: string | null; 60 | status: string; 61 | image_url: string; 62 | type: string; 63 | volumes: number | null; 64 | chapters: number | null; 65 | publishing: boolean; 66 | published: { 67 | from: string; 68 | to: string | null; 69 | prop: { 70 | from: { 71 | day: number; 72 | month: number; 73 | year: number; 74 | }; 75 | to: { 76 | day: number | null; 77 | month: number | null; 78 | year: number | null; 79 | }; 80 | }; 81 | }; 82 | rank: number | null; 83 | score: number | null; 84 | scored_by: number | null; 85 | popularity: number | null; 86 | members: number | null; 87 | favorites: number | null; 88 | synopsis: string | null; 89 | background: string | null; 90 | related?: { 91 | Adaptation?: Adaption[]; 92 | 'Side story'?: SideStory[]; 93 | Prequel?: Prequel[]; 94 | Summary?: Summary[]; 95 | }; 96 | genres: Genre[]; 97 | authors: Author[]; 98 | serializations: Serialization[]; 99 | } 100 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "jikan-nodejs", 3 | "version": "0.1.0", 4 | "main": "index.js", 5 | "repository": "https://github.com/ribeirogab/jikan-nodejs.git", 6 | "author": "ribeirogab ", 7 | "license": "MIT", 8 | "description": "A Node.js wrapper for Jikan REST API.", 9 | "keywords": ["myanimelist", "wrapper", "manga", "anime", "jikan"], 10 | "scripts": { 11 | "build": "tsc", 12 | "dev:server": "ts-node-dev --inspect --no-notify --transpileOnly --ignore-watch node_modules src/server.ts" 13 | }, 14 | "devDependencies": { 15 | "@typescript-eslint/eslint-plugin": "^2.28.0", 16 | "@typescript-eslint/parser": "^2.28.0", 17 | "eslint": "^6.8.0", 18 | "eslint-config-airbnb-base": "^14.1.0", 19 | "eslint-config-prettier": "^6.10.1", 20 | "eslint-import-resolver-typescript": "^2.0.0", 21 | "eslint-plugin-import": "^2.20.1", 22 | "eslint-plugin-prettier": "^3.1.3", 23 | "prettier": "^2.0.4", 24 | "ts-node-dev": "^1.0.0-pre.44", 25 | "typescript": "^3.8.3" 26 | }, 27 | "dependencies": { 28 | "axios": "^0.21.1" 29 | } 30 | } 31 | -------------------------------------------------------------------------------- /prettier.config.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | singleQuote: true, 3 | trailingComma: 'all', 4 | arrowParens: 'avoid', 5 | }; 6 | -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "compilerOptions": { 3 | /* Basic Options */ 4 | // "incremental": true, /* Enable incremental compilation */ 5 | "target": "es2015", /* Specify ECMAScript target version: 'ES3' (default), 'ES5', 'ES2015', 'ES2016', 'ES2017', 'ES2018', 'ES2019', 'ES2020', or 'ESNEXT'. */ 6 | "module": "commonjs", /* Specify module code generation: 'none', 'commonjs', 'amd', 'system', 'umd', 'es2015', 'es2020', or 'ESNext'. */ 7 | // "lib": [], /* Specify library files to be included in the compilation. */ 8 | // "allowJs": true, /* Allow javascript files to be compiled. */ 9 | // "checkJs": true, /* Report errors in .js files. */ 10 | // "jsx": "preserve", /* Specify JSX code generation: 'preserve', 'react-native', or 'react'. */ 11 | // "declaration": true, /* Generates corresponding '.d.ts' file. */ 12 | // "declarationMap": true, /* Generates a sourcemap for each corresponding '.d.ts' file. */ 13 | // "sourceMap": true, /* Generates corresponding '.map' file. */ 14 | // "outFile": "./", /* Concatenate and emit output to single file. */ 15 | "outDir": "./dist", /* Redirect output structure to the directory. */ 16 | "rootDir": "./lib", /* Specify the root directory of input files. Use to control the output directory structure with --outDir. */ 17 | // "composite": true, /* Enable project compilation */ 18 | // "tsBuildInfoFile": "./", /* Specify file to store incremental compilation information */ 19 | // "removeComments": true, /* Do not emit comments to output. */ 20 | // "noEmit": true, /* Do not emit outputs. */ 21 | // "importHelpers": true, /* Import emit helpers from 'tslib'. */ 22 | // "downlevelIteration": true, /* Provide full support for iterables in 'for-of', spread, and destructuring when targeting 'ES5' or 'ES3'. */ 23 | // "isolatedModules": true, /* Transpile each file as a separate module (similar to 'ts.transpileModule'). */ 24 | 25 | /* Strict Type-Checking Options */ 26 | "strict": true, /* Enable all strict type-checking options. */ 27 | // "noImplicitAny": true, /* Raise error on expressions and declarations with an implied 'any' type. */ 28 | // "strictNullChecks": true, /* Enable strict null checks. */ 29 | // "strictFunctionTypes": true, /* Enable strict checking of function types. */ 30 | // "strictBindCallApply": true, /* Enable strict 'bind', 'call', and 'apply' methods on functions. */ 31 | // "strictPropertyInitialization": true, /* Enable strict checking of property initialization in classes. */ 32 | // "noImplicitThis": true, /* Raise error on 'this' expressions with an implied 'any' type. */ 33 | // "alwaysStrict": true, /* Parse in strict mode and emit "use strict" for each source file. */ 34 | 35 | /* Additional Checks */ 36 | // "noUnusedLocals": true, /* Report errors on unused locals. */ 37 | // "noUnusedParameters": true, /* Report errors on unused parameters. */ 38 | // "noImplicitReturns": true, /* Report error when not all code paths in function return a value. */ 39 | // "noFallthroughCasesInSwitch": true, /* Report errors for fallthrough cases in switch statement. */ 40 | 41 | /* Module Resolution Options */ 42 | // "moduleResolution": "node", /* Specify module resolution strategy: 'node' (Node.js) or 'classic' (TypeScript pre-1.6). */ 43 | // "baseUrl": "./", /* Base directory to resolve non-absolute module names. */ 44 | // "paths": {}, /* A series of entries which re-map imports to lookup locations relative to the 'baseUrl'. */ 45 | // "rootDirs": [], /* List of root folders whose combined content represents the structure of the project at runtime. */ 46 | // "typeRoots": [], /* List of folders to include type definitions from. */ 47 | // "types": [], /* Type declaration files to be included in compilation. */ 48 | // "allowSyntheticDefaultImports": true, /* Allow default imports from modules with no default export. This does not affect code emit, just typechecking. */ 49 | "esModuleInterop": true, /* Enables emit interoperability between CommonJS and ES Modules via creation of namespace objects for all imports. Implies 'allowSyntheticDefaultImports'. */ 50 | // "preserveSymlinks": true, /* Do not resolve the real path of symlinks. */ 51 | // "allowUmdGlobalAccess": true, /* Allow accessing UMD globals from modules. */ 52 | 53 | /* Source Map Options */ 54 | // "sourceRoot": "", /* Specify the location where debugger should locate TypeScript files instead of source locations. */ 55 | // "mapRoot": "", /* Specify the location where debugger should locate map files instead of generated locations. */ 56 | // "inlineSourceMap": true, /* Emit a single file with source maps instead of having a separate file. */ 57 | // "inlineSources": true, /* Emit the source alongside the sourcemaps within a single file; requires '--inlineSourceMap' or '--sourceMap' to be set. */ 58 | 59 | /* Experimental Options */ 60 | // "experimentalDecorators": true, /* Enables experimental support for ES7 decorators. */ 61 | // "emitDecoratorMetadata": true, /* Enables experimental support for emitting type metadata for decorators. */ 62 | 63 | /* Advanced Options */ 64 | "forceConsistentCasingInFileNames": true /* Disallow inconsistently-cased references to the same file. */ 65 | } 66 | } 67 | -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- 1 | # THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY. 2 | # yarn lockfile v1 3 | 4 | 5 | "@babel/code-frame@^7.0.0": 6 | version "7.10.1" 7 | resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.10.1.tgz#d5481c5095daa1c57e16e54c6f9198443afb49ff" 8 | integrity sha512-IGhtTmpjGbYzcEDOw7DcQtbQSXcG9ftmAXtWTu9V936vDye4xjjekktFAtgZsWpzTj/X01jocB46mTywm/4SZw== 9 | dependencies: 10 | "@babel/highlight" "^7.10.1" 11 | 12 | "@babel/helper-validator-identifier@^7.10.1": 13 | version "7.10.1" 14 | resolved "https://registry.yarnpkg.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.10.1.tgz#5770b0c1a826c4f53f5ede5e153163e0318e94b5" 15 | integrity sha512-5vW/JXLALhczRCWP0PnFDMCJAchlBvM7f4uk/jXritBnIa6E1KmqmtrS3yn1LAnxFBypQ3eneLuXjsnfQsgILw== 16 | 17 | "@babel/highlight@^7.10.1": 18 | version "7.10.1" 19 | resolved "https://registry.yarnpkg.com/@babel/highlight/-/highlight-7.10.1.tgz#841d098ba613ba1a427a2b383d79e35552c38ae0" 20 | integrity sha512-8rMof+gVP8mxYZApLF/JgNDAkdKa+aJt3ZYxF8z6+j/hpeXL7iMsKCPHa2jNMHu/qqBwzQF4OHNoYi8dMA/rYg== 21 | dependencies: 22 | "@babel/helper-validator-identifier" "^7.10.1" 23 | chalk "^2.0.0" 24 | js-tokens "^4.0.0" 25 | 26 | "@types/color-name@^1.1.1": 27 | version "1.1.1" 28 | resolved "https://registry.yarnpkg.com/@types/color-name/-/color-name-1.1.1.tgz#1c1261bbeaa10a8055bbc5d8ab84b7b2afc846a0" 29 | integrity sha512-rr+OQyAjxze7GgWrSaJwydHStIhHq2lvY3BOC2Mj7KnzI7XK0Uw1TOOdI9lDoajEbSWLiYgoo4f1R51erQfhPQ== 30 | 31 | "@types/eslint-visitor-keys@^1.0.0": 32 | version "1.0.0" 33 | resolved "https://registry.yarnpkg.com/@types/eslint-visitor-keys/-/eslint-visitor-keys-1.0.0.tgz#1ee30d79544ca84d68d4b3cdb0af4f205663dd2d" 34 | integrity sha512-OCutwjDZ4aFS6PB1UZ988C4YgwlBHJd6wCeQqaLdmadZ/7e+w79+hbMUFC1QXDNCmdyoRfAFdm0RypzwR+Qpag== 35 | 36 | "@types/json-schema@^7.0.3": 37 | version "7.0.4" 38 | resolved "https://registry.yarnpkg.com/@types/json-schema/-/json-schema-7.0.4.tgz#38fd73ddfd9b55abb1e1b2ed578cb55bd7b7d339" 39 | integrity sha512-8+KAKzEvSUdeo+kmqnKrqgeE+LcA0tjYWFY7RPProVYwnqDjukzO+3b6dLD56rYX5TdWejnEOLJYOIeh4CXKuA== 40 | 41 | "@types/json5@^0.0.29": 42 | version "0.0.29" 43 | resolved "https://registry.yarnpkg.com/@types/json5/-/json5-0.0.29.tgz#ee28707ae94e11d2b827bcbe5270bcea7f3e71ee" 44 | integrity sha1-7ihweulOEdK4J7y+UnC86n8+ce4= 45 | 46 | "@types/strip-bom@^3.0.0": 47 | version "3.0.0" 48 | resolved "https://registry.yarnpkg.com/@types/strip-bom/-/strip-bom-3.0.0.tgz#14a8ec3956c2e81edb7520790aecf21c290aebd2" 49 | integrity sha1-FKjsOVbC6B7bdSB5CuzyHCkK69I= 50 | 51 | "@types/strip-json-comments@0.0.30": 52 | version "0.0.30" 53 | resolved "https://registry.yarnpkg.com/@types/strip-json-comments/-/strip-json-comments-0.0.30.tgz#9aa30c04db212a9a0649d6ae6fd50accc40748a1" 54 | integrity sha512-7NQmHra/JILCd1QqpSzl8+mJRc8ZHz3uDm8YV1Ks9IhK0epEiTw8aIErbvH9PI+6XbqhyIQy3462nEsn7UVzjQ== 55 | 56 | "@typescript-eslint/eslint-plugin@^2.28.0": 57 | version "2.34.0" 58 | resolved "https://registry.yarnpkg.com/@typescript-eslint/eslint-plugin/-/eslint-plugin-2.34.0.tgz#6f8ce8a46c7dea4a6f1d171d2bb8fbae6dac2be9" 59 | integrity sha512-4zY3Z88rEE99+CNvTbXSyovv2z9PNOVffTWD2W8QF5s2prBQtwN2zadqERcrHpcR7O/+KMI3fcTAmUUhK/iQcQ== 60 | dependencies: 61 | "@typescript-eslint/experimental-utils" "2.34.0" 62 | functional-red-black-tree "^1.0.1" 63 | regexpp "^3.0.0" 64 | tsutils "^3.17.1" 65 | 66 | "@typescript-eslint/experimental-utils@2.34.0": 67 | version "2.34.0" 68 | resolved "https://registry.yarnpkg.com/@typescript-eslint/experimental-utils/-/experimental-utils-2.34.0.tgz#d3524b644cdb40eebceca67f8cf3e4cc9c8f980f" 69 | integrity sha512-eS6FTkq+wuMJ+sgtuNTtcqavWXqsflWcfBnlYhg/nS4aZ1leewkXGbvBhaapn1q6qf4M71bsR1tez5JTRMuqwA== 70 | dependencies: 71 | "@types/json-schema" "^7.0.3" 72 | "@typescript-eslint/typescript-estree" "2.34.0" 73 | eslint-scope "^5.0.0" 74 | eslint-utils "^2.0.0" 75 | 76 | "@typescript-eslint/parser@^2.28.0": 77 | version "2.34.0" 78 | resolved "https://registry.yarnpkg.com/@typescript-eslint/parser/-/parser-2.34.0.tgz#50252630ca319685420e9a39ca05fe185a256bc8" 79 | integrity sha512-03ilO0ucSD0EPTw2X4PntSIRFtDPWjrVq7C3/Z3VQHRC7+13YB55rcJI3Jt+YgeHbjUdJPcPa7b23rXCBokuyA== 80 | dependencies: 81 | "@types/eslint-visitor-keys" "^1.0.0" 82 | "@typescript-eslint/experimental-utils" "2.34.0" 83 | "@typescript-eslint/typescript-estree" "2.34.0" 84 | eslint-visitor-keys "^1.1.0" 85 | 86 | "@typescript-eslint/typescript-estree@2.34.0": 87 | version "2.34.0" 88 | resolved "https://registry.yarnpkg.com/@typescript-eslint/typescript-estree/-/typescript-estree-2.34.0.tgz#14aeb6353b39ef0732cc7f1b8285294937cf37d5" 89 | integrity sha512-OMAr+nJWKdlVM9LOqCqh3pQQPwxHAN7Du8DR6dmwCrAmxtiXQnhHJ6tBNtf+cggqfo51SG/FCwnKhXCIM7hnVg== 90 | dependencies: 91 | debug "^4.1.1" 92 | eslint-visitor-keys "^1.1.0" 93 | glob "^7.1.6" 94 | is-glob "^4.0.1" 95 | lodash "^4.17.15" 96 | semver "^7.3.2" 97 | tsutils "^3.17.1" 98 | 99 | acorn-jsx@^5.2.0: 100 | version "5.2.0" 101 | resolved "https://registry.yarnpkg.com/acorn-jsx/-/acorn-jsx-5.2.0.tgz#4c66069173d6fdd68ed85239fc256226182b2ebe" 102 | integrity sha512-HiUX/+K2YpkpJ+SzBffkM/AQ2YE03S0U1kjTLVpoJdhZMOWy8qvXVN9JdLqv2QsaQ6MPYQIuNmwD8zOiYUofLQ== 103 | 104 | acorn@^7.1.1: 105 | version "7.2.0" 106 | resolved "https://registry.yarnpkg.com/acorn/-/acorn-7.2.0.tgz#17ea7e40d7c8640ff54a694c889c26f31704effe" 107 | integrity sha512-apwXVmYVpQ34m/i71vrApRrRKCWQnZZF1+npOD0WV5xZFfwWOmKGQ2RWlfdy9vWITsenisM8M0Qeq8agcFHNiQ== 108 | 109 | ajv@^6.10.0, ajv@^6.10.2: 110 | version "6.12.2" 111 | resolved "https://registry.yarnpkg.com/ajv/-/ajv-6.12.2.tgz#c629c5eced17baf314437918d2da88c99d5958cd" 112 | integrity sha512-k+V+hzjm5q/Mr8ef/1Y9goCmlsK4I6Sm74teeyGvFk1XrOsbsKLjEdrvny42CZ+a8sXbk8KWpY/bDwS+FLL2UQ== 113 | dependencies: 114 | fast-deep-equal "^3.1.1" 115 | fast-json-stable-stringify "^2.0.0" 116 | json-schema-traverse "^0.4.1" 117 | uri-js "^4.2.2" 118 | 119 | ansi-escapes@^4.2.1: 120 | version "4.3.1" 121 | resolved "https://registry.yarnpkg.com/ansi-escapes/-/ansi-escapes-4.3.1.tgz#a5c47cc43181f1f38ffd7076837700d395522a61" 122 | integrity sha512-JWF7ocqNrp8u9oqpgV+wH5ftbt+cfvv+PTjOvKLT3AdYly/LmORARfEVT1iyjwN+4MqE5UmVKoAdIBqeoCHgLA== 123 | dependencies: 124 | type-fest "^0.11.0" 125 | 126 | ansi-regex@^4.1.0: 127 | version "4.1.0" 128 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-4.1.0.tgz#8b9f8f08cf1acb843756a839ca8c7e3168c51997" 129 | integrity sha512-1apePfXM1UOSqw0o9IiFAovVz9M5S1Dg+4TrDwfMewQ6p/rmMueb7tWZjQ1rx4Loy1ArBggoqGpfqqdI4rondg== 130 | 131 | ansi-regex@^5.0.0: 132 | version "5.0.0" 133 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-5.0.0.tgz#388539f55179bf39339c81af30a654d69f87cb75" 134 | integrity sha512-bY6fj56OUQ0hU1KjFNDQuJFezqKdrAyFdIevADiqrWHwSlbmBNMHp5ak2f40Pm8JTFyM2mqxkG6ngkHO11f/lg== 135 | 136 | ansi-styles@^3.2.0, ansi-styles@^3.2.1: 137 | version "3.2.1" 138 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-3.2.1.tgz#41fbb20243e50b12be0f04b8dedbf07520ce841d" 139 | integrity sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA== 140 | dependencies: 141 | color-convert "^1.9.0" 142 | 143 | ansi-styles@^4.1.0: 144 | version "4.2.1" 145 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-4.2.1.tgz#90ae75c424d008d2624c5bf29ead3177ebfcf359" 146 | integrity sha512-9VGjrMsG1vePxcSweQsN20KY/c4zN0h9fLjqAbwbPfahM3t+NL+M9HC8xeXG2I8pX5NoamTGNuomEUFI7fcUjA== 147 | dependencies: 148 | "@types/color-name" "^1.1.1" 149 | color-convert "^2.0.1" 150 | 151 | arg@^4.1.0: 152 | version "4.1.3" 153 | resolved "https://registry.yarnpkg.com/arg/-/arg-4.1.3.tgz#269fc7ad5b8e42cb63c896d5666017261c144089" 154 | integrity sha512-58S9QDqG0Xx27YwPSt9fJxivjYl432YCwfDMfZ+71RAqUrZef7LrKQZ3LHLOwCS4FLNBplP533Zx895SeOCHvA== 155 | 156 | argparse@^1.0.7: 157 | version "1.0.10" 158 | resolved "https://registry.yarnpkg.com/argparse/-/argparse-1.0.10.tgz#bcd6791ea5ae09725e17e5ad988134cd40b3d911" 159 | integrity sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg== 160 | dependencies: 161 | sprintf-js "~1.0.2" 162 | 163 | array-find-index@^1.0.1: 164 | version "1.0.2" 165 | resolved "https://registry.yarnpkg.com/array-find-index/-/array-find-index-1.0.2.tgz#df010aa1287e164bbda6f9723b0a96a1ec4187a1" 166 | integrity sha1-3wEKoSh+Fku9pvlyOwqWoexBh6E= 167 | 168 | array-includes@^3.0.3: 169 | version "3.1.1" 170 | resolved "https://registry.yarnpkg.com/array-includes/-/array-includes-3.1.1.tgz#cdd67e6852bdf9c1215460786732255ed2459348" 171 | integrity sha512-c2VXaCHl7zPsvpkFsw4nxvFie4fh1ur9bpcgsVkIjqn0H/Xwdg+7fv3n2r/isyS8EBj5b06M9kHyZuIr4El6WQ== 172 | dependencies: 173 | define-properties "^1.1.3" 174 | es-abstract "^1.17.0" 175 | is-string "^1.0.5" 176 | 177 | array.prototype.flat@^1.2.1: 178 | version "1.2.3" 179 | resolved "https://registry.yarnpkg.com/array.prototype.flat/-/array.prototype.flat-1.2.3.tgz#0de82b426b0318dbfdb940089e38b043d37f6c7b" 180 | integrity sha512-gBlRZV0VSmfPIeWfuuy56XZMvbVfbEUnOXUvt3F/eUUUSyzlgLxhEX4YAEpxNAogRGehPSnfXyPtYyKAhkzQhQ== 181 | dependencies: 182 | define-properties "^1.1.3" 183 | es-abstract "^1.17.0-next.1" 184 | 185 | astral-regex@^1.0.0: 186 | version "1.0.0" 187 | resolved "https://registry.yarnpkg.com/astral-regex/-/astral-regex-1.0.0.tgz#6c8c3fb827dd43ee3918f27b82782ab7658a6fd9" 188 | integrity sha512-+Ryf6g3BKoRc7jfp7ad8tM4TtMiaWvbF/1/sQcZPkkS7ag3D5nMBCe2UfOTONtAkaG0tO0ij3C5Lwmf1EiyjHg== 189 | 190 | axios@^0.21.1: 191 | version "0.21.1" 192 | resolved "https://registry.yarnpkg.com/axios/-/axios-0.21.1.tgz#22563481962f4d6bde9a76d516ef0e5d3c09b2b8" 193 | integrity sha512-dKQiRHxGD9PPRIUNIWvZhPTPpl1rf/OxTYKsqKUDjBwYylTvV7SjSHJb9ratfyzM6wCdLCOYLzs73qpg5c4iGA== 194 | dependencies: 195 | follow-redirects "^1.10.0" 196 | 197 | balanced-match@^1.0.0: 198 | version "1.0.0" 199 | resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.0.tgz#89b4d199ab2bee49de164ea02b89ce462d71b767" 200 | integrity sha1-ibTRmasr7kneFk6gK4nORi1xt2c= 201 | 202 | brace-expansion@^1.1.7: 203 | version "1.1.11" 204 | resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.11.tgz#3c7fcbf529d87226f3d2f52b966ff5271eb441dd" 205 | integrity sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA== 206 | dependencies: 207 | balanced-match "^1.0.0" 208 | concat-map "0.0.1" 209 | 210 | buffer-from@^1.0.0: 211 | version "1.1.1" 212 | resolved "https://registry.yarnpkg.com/buffer-from/-/buffer-from-1.1.1.tgz#32713bc028f75c02fdb710d7c7bcec1f2c6070ef" 213 | integrity sha512-MQcXEUbCKtEo7bhqEs6560Hyd4XaovZlO/k9V3hjVUF/zwW7KBVdSK4gIt/bzwS9MbR5qob+F5jusZsb0YQK2A== 214 | 215 | callsites@^3.0.0: 216 | version "3.1.0" 217 | resolved "https://registry.yarnpkg.com/callsites/-/callsites-3.1.0.tgz#b3630abd8943432f54b3f0519238e33cd7df2f73" 218 | integrity sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ== 219 | 220 | camelcase-keys@^2.0.0: 221 | version "2.1.0" 222 | resolved "https://registry.yarnpkg.com/camelcase-keys/-/camelcase-keys-2.1.0.tgz#308beeaffdf28119051efa1d932213c91b8f92e7" 223 | integrity sha1-MIvur/3ygRkFHvodkyITyRuPkuc= 224 | dependencies: 225 | camelcase "^2.0.0" 226 | map-obj "^1.0.0" 227 | 228 | camelcase@^2.0.0: 229 | version "2.1.1" 230 | resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-2.1.1.tgz#7c1d16d679a1bbe59ca02cacecfb011e201f5a1f" 231 | integrity sha1-fB0W1nmhu+WcoCys7PsBHiAfWh8= 232 | 233 | chalk@^2.0.0, chalk@^2.1.0: 234 | version "2.4.2" 235 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-2.4.2.tgz#cd42541677a54333cf541a49108c1432b44c9424" 236 | integrity sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ== 237 | dependencies: 238 | ansi-styles "^3.2.1" 239 | escape-string-regexp "^1.0.5" 240 | supports-color "^5.3.0" 241 | 242 | chalk@^3.0.0: 243 | version "3.0.0" 244 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-3.0.0.tgz#3f73c2bf526591f574cc492c51e2456349f844e4" 245 | integrity sha512-4D3B6Wf41KOYRFdszmDqMCGq5VV/uMAB273JILmO+3jAlh8X4qDtdtgCR3fxtbLEMzSx22QdhnDcJvu2u1fVwg== 246 | dependencies: 247 | ansi-styles "^4.1.0" 248 | supports-color "^7.1.0" 249 | 250 | chardet@^0.7.0: 251 | version "0.7.0" 252 | resolved "https://registry.yarnpkg.com/chardet/-/chardet-0.7.0.tgz#90094849f0937f2eedc2425d0d28a9e5f0cbad9e" 253 | integrity sha512-mT8iDcrh03qDGRRmoA2hmBJnxpllMR+0/0qlzjqZES6NdiWDcZkCNAk4rPFZ9Q85r27unkiNNg8ZOiwZXBHwcA== 254 | 255 | cli-cursor@^3.1.0: 256 | version "3.1.0" 257 | resolved "https://registry.yarnpkg.com/cli-cursor/-/cli-cursor-3.1.0.tgz#264305a7ae490d1d03bf0c9ba7c925d1753af307" 258 | integrity sha512-I/zHAwsKf9FqGoXM4WWRACob9+SNukZTd94DWF57E4toouRulbCxcUh6RKUEOQlYTHJnzkPMySvPNaaSLNfLZw== 259 | dependencies: 260 | restore-cursor "^3.1.0" 261 | 262 | cli-width@^2.0.0: 263 | version "2.2.1" 264 | resolved "https://registry.yarnpkg.com/cli-width/-/cli-width-2.2.1.tgz#b0433d0b4e9c847ef18868a4ef16fd5fc8271c48" 265 | integrity sha512-GRMWDxpOB6Dgk2E5Uo+3eEBvtOOlimMmpbFiKuLFnQzYDavtLFY3K5ona41jgN/WdRZtG7utuVSVTL4HbZHGkw== 266 | 267 | color-convert@^1.9.0: 268 | version "1.9.3" 269 | resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-1.9.3.tgz#bb71850690e1f136567de629d2d5471deda4c1e8" 270 | integrity sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg== 271 | dependencies: 272 | color-name "1.1.3" 273 | 274 | color-convert@^2.0.1: 275 | version "2.0.1" 276 | resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-2.0.1.tgz#72d3a68d598c9bdb3af2ad1e84f21d896abd4de3" 277 | integrity sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ== 278 | dependencies: 279 | color-name "~1.1.4" 280 | 281 | color-name@1.1.3: 282 | version "1.1.3" 283 | resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.3.tgz#a7d0558bd89c42f795dd42328f740831ca53bc25" 284 | integrity sha1-p9BVi9icQveV3UIyj3QIMcpTvCU= 285 | 286 | color-name@~1.1.4: 287 | version "1.1.4" 288 | resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.4.tgz#c2a09a87acbde69543de6f63fa3995c826c536a2" 289 | integrity sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA== 290 | 291 | concat-map@0.0.1: 292 | version "0.0.1" 293 | resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b" 294 | integrity sha1-2Klr13/Wjfd5OnMDajug1UBdR3s= 295 | 296 | confusing-browser-globals@^1.0.9: 297 | version "1.0.9" 298 | resolved "https://registry.yarnpkg.com/confusing-browser-globals/-/confusing-browser-globals-1.0.9.tgz#72bc13b483c0276801681871d4898516f8f54fdd" 299 | integrity sha512-KbS1Y0jMtyPgIxjO7ZzMAuUpAKMt1SzCL9fsrKsX6b0zJPTaT0SiSPmewwVZg9UAO83HVIlEhZF84LIjZ0lmAw== 300 | 301 | contains-path@^0.1.0: 302 | version "0.1.0" 303 | resolved "https://registry.yarnpkg.com/contains-path/-/contains-path-0.1.0.tgz#fe8cf184ff6670b6baef01a9d4861a5cbec4120a" 304 | integrity sha1-/ozxhP9mcLa67wGp1IYaXL7EEgo= 305 | 306 | cross-spawn@^6.0.5: 307 | version "6.0.5" 308 | resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-6.0.5.tgz#4a5ec7c64dfae22c3a14124dbacdee846d80cbc4" 309 | integrity sha512-eTVLrBSt7fjbDygz805pMnstIs2VTBNkRm0qxZd+M7A5XDdxVRWO5MxGBXZhjY4cqLYLdtrGqRf8mBPmzwSpWQ== 310 | dependencies: 311 | nice-try "^1.0.4" 312 | path-key "^2.0.1" 313 | semver "^5.5.0" 314 | shebang-command "^1.2.0" 315 | which "^1.2.9" 316 | 317 | currently-unhandled@^0.4.1: 318 | version "0.4.1" 319 | resolved "https://registry.yarnpkg.com/currently-unhandled/-/currently-unhandled-0.4.1.tgz#988df33feab191ef799a61369dd76c17adf957ea" 320 | integrity sha1-mI3zP+qxke95mmE2nddsF635V+o= 321 | dependencies: 322 | array-find-index "^1.0.1" 323 | 324 | dateformat@~1.0.4-1.2.3: 325 | version "1.0.12" 326 | resolved "https://registry.yarnpkg.com/dateformat/-/dateformat-1.0.12.tgz#9f124b67594c937ff706932e4a642cca8dbbfee9" 327 | integrity sha1-nxJLZ1lMk3/3BpMuSmQsyo27/uk= 328 | dependencies: 329 | get-stdin "^4.0.1" 330 | meow "^3.3.0" 331 | 332 | debounce@^1.0.0: 333 | version "1.2.0" 334 | resolved "https://registry.yarnpkg.com/debounce/-/debounce-1.2.0.tgz#44a540abc0ea9943018dc0eaa95cce87f65cd131" 335 | integrity sha512-mYtLl1xfZLi1m4RtQYlZgJUNQjl4ZxVnHzIR8nLLgi4q1YT8o/WM+MK/f8yfcc9s5Ir5zRaPZyZU6xs1Syoocg== 336 | 337 | debug@^2.6.9: 338 | version "2.6.9" 339 | resolved "https://registry.yarnpkg.com/debug/-/debug-2.6.9.tgz#5d128515df134ff327e90a4c93f4e077a536341f" 340 | integrity sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA== 341 | dependencies: 342 | ms "2.0.0" 343 | 344 | debug@^4.0.1, debug@^4.1.1: 345 | version "4.1.1" 346 | resolved "https://registry.yarnpkg.com/debug/-/debug-4.1.1.tgz#3b72260255109c6b589cee050f1d516139664791" 347 | integrity sha512-pYAIzeRo8J6KPEaJ0VWOh5Pzkbw/RetuzehGM7QRRX5he4fPHx2rdKMB256ehJCkX+XRQm16eZLqLNS8RSZXZw== 348 | dependencies: 349 | ms "^2.1.1" 350 | 351 | decamelize@^1.1.2: 352 | version "1.2.0" 353 | resolved "https://registry.yarnpkg.com/decamelize/-/decamelize-1.2.0.tgz#f6534d15148269b20352e7bee26f501f9a191290" 354 | integrity sha1-9lNNFRSCabIDUue+4m9QH5oZEpA= 355 | 356 | deep-is@~0.1.3: 357 | version "0.1.3" 358 | resolved "https://registry.yarnpkg.com/deep-is/-/deep-is-0.1.3.tgz#b369d6fb5dbc13eecf524f91b070feedc357cf34" 359 | integrity sha1-s2nW+128E+7PUk+RsHD+7cNXzzQ= 360 | 361 | define-properties@^1.1.2, define-properties@^1.1.3: 362 | version "1.1.3" 363 | resolved "https://registry.yarnpkg.com/define-properties/-/define-properties-1.1.3.tgz#cf88da6cbee26fe6db7094f61d870cbd84cee9f1" 364 | integrity sha512-3MqfYKj2lLzdMSf8ZIZE/V+Zuy+BgD6f164e8K2w7dgnpKArBDerGYpM46IYYcjnkdPNMjPk9A6VFB8+3SKlXQ== 365 | dependencies: 366 | object-keys "^1.0.12" 367 | 368 | diff@^4.0.1: 369 | version "4.0.2" 370 | resolved "https://registry.yarnpkg.com/diff/-/diff-4.0.2.tgz#60f3aecb89d5fae520c11aa19efc2bb982aade7d" 371 | integrity sha512-58lmxKSA4BNyLz+HHMUzlOEpg09FV+ev6ZMe3vJihgdxzgcwZ8VoEEPmALCZG9LmqfVoNMMKpttIYTVG6uDY7A== 372 | 373 | doctrine@1.5.0: 374 | version "1.5.0" 375 | resolved "https://registry.yarnpkg.com/doctrine/-/doctrine-1.5.0.tgz#379dce730f6166f76cefa4e6707a159b02c5a6fa" 376 | integrity sha1-N53Ocw9hZvds76TmcHoVmwLFpvo= 377 | dependencies: 378 | esutils "^2.0.2" 379 | isarray "^1.0.0" 380 | 381 | doctrine@^3.0.0: 382 | version "3.0.0" 383 | resolved "https://registry.yarnpkg.com/doctrine/-/doctrine-3.0.0.tgz#addebead72a6574db783639dc87a121773973961" 384 | integrity sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w== 385 | dependencies: 386 | esutils "^2.0.2" 387 | 388 | dynamic-dedupe@^0.3.0: 389 | version "0.3.0" 390 | resolved "https://registry.yarnpkg.com/dynamic-dedupe/-/dynamic-dedupe-0.3.0.tgz#06e44c223f5e4e94d78ef9db23a6515ce2f962a1" 391 | integrity sha1-BuRMIj9eTpTXjvnbI6ZRXOL5YqE= 392 | dependencies: 393 | xtend "^4.0.0" 394 | 395 | emoji-regex@^7.0.1: 396 | version "7.0.3" 397 | resolved "https://registry.yarnpkg.com/emoji-regex/-/emoji-regex-7.0.3.tgz#933a04052860c85e83c122479c4748a8e4c72156" 398 | integrity sha512-CwBLREIQ7LvYFB0WyRvwhq5N5qPhc6PMjD6bYggFlI5YyDgl+0vxq5VHbMOFqLg7hfWzmu8T5Z1QofhmTIhItA== 399 | 400 | emoji-regex@^8.0.0: 401 | version "8.0.0" 402 | resolved "https://registry.yarnpkg.com/emoji-regex/-/emoji-regex-8.0.0.tgz#e818fd69ce5ccfcb404594f842963bf53164cc37" 403 | integrity sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A== 404 | 405 | error-ex@^1.2.0: 406 | version "1.3.2" 407 | resolved "https://registry.yarnpkg.com/error-ex/-/error-ex-1.3.2.tgz#b4ac40648107fdcdcfae242f428bea8a14d4f1bf" 408 | integrity sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g== 409 | dependencies: 410 | is-arrayish "^0.2.1" 411 | 412 | es-abstract@^1.17.0, es-abstract@^1.17.0-next.1, es-abstract@^1.17.5: 413 | version "1.17.5" 414 | resolved "https://registry.yarnpkg.com/es-abstract/-/es-abstract-1.17.5.tgz#d8c9d1d66c8981fb9200e2251d799eee92774ae9" 415 | integrity sha512-BR9auzDbySxOcfog0tLECW8l28eRGpDpU3Dm3Hp4q/N+VtLTmyj4EUN088XZWQDW/hzj6sYRDXeOFsaAODKvpg== 416 | dependencies: 417 | es-to-primitive "^1.2.1" 418 | function-bind "^1.1.1" 419 | has "^1.0.3" 420 | has-symbols "^1.0.1" 421 | is-callable "^1.1.5" 422 | is-regex "^1.0.5" 423 | object-inspect "^1.7.0" 424 | object-keys "^1.1.1" 425 | object.assign "^4.1.0" 426 | string.prototype.trimleft "^2.1.1" 427 | string.prototype.trimright "^2.1.1" 428 | 429 | es-to-primitive@^1.2.1: 430 | version "1.2.1" 431 | resolved "https://registry.yarnpkg.com/es-to-primitive/-/es-to-primitive-1.2.1.tgz#e55cd4c9cdc188bcefb03b366c736323fc5c898a" 432 | integrity sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA== 433 | dependencies: 434 | is-callable "^1.1.4" 435 | is-date-object "^1.0.1" 436 | is-symbol "^1.0.2" 437 | 438 | escape-string-regexp@^1.0.5: 439 | version "1.0.5" 440 | resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4" 441 | integrity sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ= 442 | 443 | eslint-config-airbnb-base@^14.1.0: 444 | version "14.1.0" 445 | resolved "https://registry.yarnpkg.com/eslint-config-airbnb-base/-/eslint-config-airbnb-base-14.1.0.tgz#2ba4592dd6843258221d9bff2b6831bd77c874e4" 446 | integrity sha512-+XCcfGyCnbzOnktDVhwsCAx+9DmrzEmuwxyHUJpw+kqBVT744OUBrB09khgFKlK1lshVww6qXGsYPZpavoNjJw== 447 | dependencies: 448 | confusing-browser-globals "^1.0.9" 449 | object.assign "^4.1.0" 450 | object.entries "^1.1.1" 451 | 452 | eslint-config-prettier@^6.10.1: 453 | version "6.11.0" 454 | resolved "https://registry.yarnpkg.com/eslint-config-prettier/-/eslint-config-prettier-6.11.0.tgz#f6d2238c1290d01c859a8b5c1f7d352a0b0da8b1" 455 | integrity sha512-oB8cpLWSAjOVFEJhhyMZh6NOEOtBVziaqdDQ86+qhDHFbZXoRTM7pNSvFRfW/W/L/LrQ38C99J5CGuRBBzBsdA== 456 | dependencies: 457 | get-stdin "^6.0.0" 458 | 459 | eslint-import-resolver-node@^0.3.2: 460 | version "0.3.3" 461 | resolved "https://registry.yarnpkg.com/eslint-import-resolver-node/-/eslint-import-resolver-node-0.3.3.tgz#dbaa52b6b2816b50bc6711af75422de808e98404" 462 | integrity sha512-b8crLDo0M5RSe5YG8Pu2DYBj71tSB6OvXkfzwbJU2w7y8P4/yo0MyF8jU26IEuEuHF2K5/gcAJE3LhQGqBBbVg== 463 | dependencies: 464 | debug "^2.6.9" 465 | resolve "^1.13.1" 466 | 467 | eslint-import-resolver-typescript@^2.0.0: 468 | version "2.0.0" 469 | resolved "https://registry.yarnpkg.com/eslint-import-resolver-typescript/-/eslint-import-resolver-typescript-2.0.0.tgz#e95f126cc12d3018b9cc11692b4dbfd3e17d3ea6" 470 | integrity sha512-bT5Frpl8UWoHBtY25vKUOMoVIMlJQOMefHLyQ4Tz3MQpIZ2N6yYKEEIHMo38bszBNUuMBW6M3+5JNYxeiGFH4w== 471 | dependencies: 472 | debug "^4.1.1" 473 | is-glob "^4.0.1" 474 | resolve "^1.12.0" 475 | tiny-glob "^0.2.6" 476 | tsconfig-paths "^3.9.0" 477 | 478 | eslint-module-utils@^2.4.1: 479 | version "2.6.0" 480 | resolved "https://registry.yarnpkg.com/eslint-module-utils/-/eslint-module-utils-2.6.0.tgz#579ebd094f56af7797d19c9866c9c9486629bfa6" 481 | integrity sha512-6j9xxegbqe8/kZY8cYpcp0xhbK0EgJlg3g9mib3/miLaExuuwc3n5UEfSnU6hWMbT0FAYVvDbL9RrRgpUeQIvA== 482 | dependencies: 483 | debug "^2.6.9" 484 | pkg-dir "^2.0.0" 485 | 486 | eslint-plugin-import@^2.20.1: 487 | version "2.20.2" 488 | resolved "https://registry.yarnpkg.com/eslint-plugin-import/-/eslint-plugin-import-2.20.2.tgz#91fc3807ce08be4837141272c8b99073906e588d" 489 | integrity sha512-FObidqpXrR8OnCh4iNsxy+WACztJLXAHBO5hK79T1Hc77PgQZkyDGA5Ag9xAvRpglvLNxhH/zSmZ70/pZ31dHg== 490 | dependencies: 491 | array-includes "^3.0.3" 492 | array.prototype.flat "^1.2.1" 493 | contains-path "^0.1.0" 494 | debug "^2.6.9" 495 | doctrine "1.5.0" 496 | eslint-import-resolver-node "^0.3.2" 497 | eslint-module-utils "^2.4.1" 498 | has "^1.0.3" 499 | minimatch "^3.0.4" 500 | object.values "^1.1.0" 501 | read-pkg-up "^2.0.0" 502 | resolve "^1.12.0" 503 | 504 | eslint-plugin-prettier@^3.1.3: 505 | version "3.1.3" 506 | resolved "https://registry.yarnpkg.com/eslint-plugin-prettier/-/eslint-plugin-prettier-3.1.3.tgz#ae116a0fc0e598fdae48743a4430903de5b4e6ca" 507 | integrity sha512-+HG5jmu/dN3ZV3T6eCD7a4BlAySdN7mLIbJYo0z1cFQuI+r2DiTJEFeF68ots93PsnrMxbzIZ2S/ieX+mkrBeQ== 508 | dependencies: 509 | prettier-linter-helpers "^1.0.0" 510 | 511 | eslint-scope@^5.0.0: 512 | version "5.1.0" 513 | resolved "https://registry.yarnpkg.com/eslint-scope/-/eslint-scope-5.1.0.tgz#d0f971dfe59c69e0cada684b23d49dbf82600ce5" 514 | integrity sha512-iiGRvtxWqgtx5m8EyQUJihBloE4EnYeGE/bz1wSPwJE6tZuJUtHlhqDM4Xj2ukE8Dyy1+HCZ4hE0fzIVMzb58w== 515 | dependencies: 516 | esrecurse "^4.1.0" 517 | estraverse "^4.1.1" 518 | 519 | eslint-utils@^1.4.3: 520 | version "1.4.3" 521 | resolved "https://registry.yarnpkg.com/eslint-utils/-/eslint-utils-1.4.3.tgz#74fec7c54d0776b6f67e0251040b5806564e981f" 522 | integrity sha512-fbBN5W2xdY45KulGXmLHZ3c3FHfVYmKg0IrAKGOkT/464PQsx2UeIzfz1RmEci+KLm1bBaAzZAh8+/E+XAeZ8Q== 523 | dependencies: 524 | eslint-visitor-keys "^1.1.0" 525 | 526 | eslint-utils@^2.0.0: 527 | version "2.0.0" 528 | resolved "https://registry.yarnpkg.com/eslint-utils/-/eslint-utils-2.0.0.tgz#7be1cc70f27a72a76cd14aa698bcabed6890e1cd" 529 | integrity sha512-0HCPuJv+7Wv1bACm8y5/ECVfYdfsAm9xmVb7saeFlxjPYALefjhbYoCkBjPdPzGH8wWyTpAez82Fh3VKYEZ8OA== 530 | dependencies: 531 | eslint-visitor-keys "^1.1.0" 532 | 533 | eslint-visitor-keys@^1.1.0: 534 | version "1.2.0" 535 | resolved "https://registry.yarnpkg.com/eslint-visitor-keys/-/eslint-visitor-keys-1.2.0.tgz#74415ac884874495f78ec2a97349525344c981fa" 536 | integrity sha512-WFb4ihckKil6hu3Dp798xdzSfddwKKU3+nGniKF6HfeW6OLd2OUDEPP7TcHtB5+QXOKg2s6B2DaMPE1Nn/kxKQ== 537 | 538 | eslint@^6.8.0: 539 | version "6.8.0" 540 | resolved "https://registry.yarnpkg.com/eslint/-/eslint-6.8.0.tgz#62262d6729739f9275723824302fb227c8c93ffb" 541 | integrity sha512-K+Iayyo2LtyYhDSYwz5D5QdWw0hCacNzyq1Y821Xna2xSJj7cijoLLYmLxTQgcgZ9mC61nryMy9S7GRbYpI5Ig== 542 | dependencies: 543 | "@babel/code-frame" "^7.0.0" 544 | ajv "^6.10.0" 545 | chalk "^2.1.0" 546 | cross-spawn "^6.0.5" 547 | debug "^4.0.1" 548 | doctrine "^3.0.0" 549 | eslint-scope "^5.0.0" 550 | eslint-utils "^1.4.3" 551 | eslint-visitor-keys "^1.1.0" 552 | espree "^6.1.2" 553 | esquery "^1.0.1" 554 | esutils "^2.0.2" 555 | file-entry-cache "^5.0.1" 556 | functional-red-black-tree "^1.0.1" 557 | glob-parent "^5.0.0" 558 | globals "^12.1.0" 559 | ignore "^4.0.6" 560 | import-fresh "^3.0.0" 561 | imurmurhash "^0.1.4" 562 | inquirer "^7.0.0" 563 | is-glob "^4.0.0" 564 | js-yaml "^3.13.1" 565 | json-stable-stringify-without-jsonify "^1.0.1" 566 | levn "^0.3.0" 567 | lodash "^4.17.14" 568 | minimatch "^3.0.4" 569 | mkdirp "^0.5.1" 570 | natural-compare "^1.4.0" 571 | optionator "^0.8.3" 572 | progress "^2.0.0" 573 | regexpp "^2.0.1" 574 | semver "^6.1.2" 575 | strip-ansi "^5.2.0" 576 | strip-json-comments "^3.0.1" 577 | table "^5.2.3" 578 | text-table "^0.2.0" 579 | v8-compile-cache "^2.0.3" 580 | 581 | espree@^6.1.2: 582 | version "6.2.1" 583 | resolved "https://registry.yarnpkg.com/espree/-/espree-6.2.1.tgz#77fc72e1fd744a2052c20f38a5b575832e82734a" 584 | integrity sha512-ysCxRQY3WaXJz9tdbWOwuWr5Y/XrPTGX9Kiz3yoUXwW0VZ4w30HTkQLaGx/+ttFjF8i+ACbArnB4ce68a9m5hw== 585 | dependencies: 586 | acorn "^7.1.1" 587 | acorn-jsx "^5.2.0" 588 | eslint-visitor-keys "^1.1.0" 589 | 590 | esprima@^4.0.0: 591 | version "4.0.1" 592 | resolved "https://registry.yarnpkg.com/esprima/-/esprima-4.0.1.tgz#13b04cdb3e6c5d19df91ab6987a8695619b0aa71" 593 | integrity sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A== 594 | 595 | esquery@^1.0.1: 596 | version "1.3.1" 597 | resolved "https://registry.yarnpkg.com/esquery/-/esquery-1.3.1.tgz#b78b5828aa8e214e29fb74c4d5b752e1c033da57" 598 | integrity sha512-olpvt9QG0vniUBZspVRN6lwB7hOZoTRtT+jzR+tS4ffYx2mzbw+z0XCOk44aaLYKApNX5nMm+E+P6o25ip/DHQ== 599 | dependencies: 600 | estraverse "^5.1.0" 601 | 602 | esrecurse@^4.1.0: 603 | version "4.2.1" 604 | resolved "https://registry.yarnpkg.com/esrecurse/-/esrecurse-4.2.1.tgz#007a3b9fdbc2b3bb87e4879ea19c92fdbd3942cf" 605 | integrity sha512-64RBB++fIOAXPw3P9cy89qfMlvZEXZkqqJkjqqXIvzP5ezRZjW+lPWjw35UX/3EhUPFYbg5ER4JYgDw4007/DQ== 606 | dependencies: 607 | estraverse "^4.1.0" 608 | 609 | estraverse@^4.1.0, estraverse@^4.1.1: 610 | version "4.3.0" 611 | resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-4.3.0.tgz#398ad3f3c5a24948be7725e83d11a7de28cdbd1d" 612 | integrity sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw== 613 | 614 | estraverse@^5.1.0: 615 | version "5.1.0" 616 | resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-5.1.0.tgz#374309d39fd935ae500e7b92e8a6b4c720e59642" 617 | integrity sha512-FyohXK+R0vE+y1nHLoBM7ZTyqRpqAlhdZHCWIWEviFLiGB8b04H6bQs8G+XTthacvT8VuwvteiP7RJSxMs8UEw== 618 | 619 | esutils@^2.0.2: 620 | version "2.0.3" 621 | resolved "https://registry.yarnpkg.com/esutils/-/esutils-2.0.3.tgz#74d2eb4de0b8da1293711910d50775b9b710ef64" 622 | integrity sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g== 623 | 624 | external-editor@^3.0.3: 625 | version "3.1.0" 626 | resolved "https://registry.yarnpkg.com/external-editor/-/external-editor-3.1.0.tgz#cb03f740befae03ea4d283caed2741a83f335495" 627 | integrity sha512-hMQ4CX1p1izmuLYyZqLMO/qGNw10wSv9QDCPfzXfyFrOaCSSoRfqE1Kf1s5an66J5JZC62NewG+mK49jOCtQew== 628 | dependencies: 629 | chardet "^0.7.0" 630 | iconv-lite "^0.4.24" 631 | tmp "^0.0.33" 632 | 633 | fast-deep-equal@^3.1.1: 634 | version "3.1.1" 635 | resolved "https://registry.yarnpkg.com/fast-deep-equal/-/fast-deep-equal-3.1.1.tgz#545145077c501491e33b15ec408c294376e94ae4" 636 | integrity sha512-8UEa58QDLauDNfpbrX55Q9jrGHThw2ZMdOky5Gl1CDtVeJDPVrG4Jxx1N8jw2gkWaff5UUuX1KJd+9zGe2B+ZA== 637 | 638 | fast-diff@^1.1.2: 639 | version "1.2.0" 640 | resolved "https://registry.yarnpkg.com/fast-diff/-/fast-diff-1.2.0.tgz#73ee11982d86caaf7959828d519cfe927fac5f03" 641 | integrity sha512-xJuoT5+L99XlZ8twedaRf6Ax2TgQVxvgZOYoPKqZufmJib0tL2tegPBOZb1pVNgIhlqDlA0eO0c3wBvQcmzx4w== 642 | 643 | fast-json-stable-stringify@^2.0.0: 644 | version "2.1.0" 645 | resolved "https://registry.yarnpkg.com/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz#874bf69c6f404c2b5d99c481341399fd55892633" 646 | integrity sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw== 647 | 648 | fast-levenshtein@~2.0.6: 649 | version "2.0.6" 650 | resolved "https://registry.yarnpkg.com/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz#3d8a5c66883a16a30ca8643e851f19baa7797917" 651 | integrity sha1-PYpcZog6FqMMqGQ+hR8Zuqd5eRc= 652 | 653 | figures@^3.0.0: 654 | version "3.2.0" 655 | resolved "https://registry.yarnpkg.com/figures/-/figures-3.2.0.tgz#625c18bd293c604dc4a8ddb2febf0c88341746af" 656 | integrity sha512-yaduQFRKLXYOGgEn6AZau90j3ggSOyiqXU0F9JZfeXYhNa+Jk4X+s45A2zg5jns87GAFa34BBm2kXw4XpNcbdg== 657 | dependencies: 658 | escape-string-regexp "^1.0.5" 659 | 660 | file-entry-cache@^5.0.1: 661 | version "5.0.1" 662 | resolved "https://registry.yarnpkg.com/file-entry-cache/-/file-entry-cache-5.0.1.tgz#ca0f6efa6dd3d561333fb14515065c2fafdf439c" 663 | integrity sha512-bCg29ictuBaKUwwArK4ouCaqDgLZcysCFLmM/Yn/FDoqndh/9vNuQfXRDvTuXKLxfD/JtZQGKFT8MGcJBK644g== 664 | dependencies: 665 | flat-cache "^2.0.1" 666 | 667 | filewatcher@~3.0.0: 668 | version "3.0.1" 669 | resolved "https://registry.yarnpkg.com/filewatcher/-/filewatcher-3.0.1.tgz#f4a1957355ddaf443ccd78a895f3d55e23c8a034" 670 | integrity sha1-9KGVc1Xdr0Q8zXiolfPVXiPIoDQ= 671 | dependencies: 672 | debounce "^1.0.0" 673 | 674 | find-up@^1.0.0: 675 | version "1.1.2" 676 | resolved "https://registry.yarnpkg.com/find-up/-/find-up-1.1.2.tgz#6b2e9822b1a2ce0a60ab64d610eccad53cb24d0f" 677 | integrity sha1-ay6YIrGizgpgq2TWEOzK1TyyTQ8= 678 | dependencies: 679 | path-exists "^2.0.0" 680 | pinkie-promise "^2.0.0" 681 | 682 | find-up@^2.0.0, find-up@^2.1.0: 683 | version "2.1.0" 684 | resolved "https://registry.yarnpkg.com/find-up/-/find-up-2.1.0.tgz#45d1b7e506c717ddd482775a2b77920a3c0c57a7" 685 | integrity sha1-RdG35QbHF93UgndaK3eSCjwMV6c= 686 | dependencies: 687 | locate-path "^2.0.0" 688 | 689 | flat-cache@^2.0.1: 690 | version "2.0.1" 691 | resolved "https://registry.yarnpkg.com/flat-cache/-/flat-cache-2.0.1.tgz#5d296d6f04bda44a4630a301413bdbc2ec085ec0" 692 | integrity sha512-LoQe6yDuUMDzQAEH8sgmh4Md6oZnc/7PjtwjNFSzveXqSHt6ka9fPBuso7IGf9Rz4uqnSnWiFH2B/zj24a5ReA== 693 | dependencies: 694 | flatted "^2.0.0" 695 | rimraf "2.6.3" 696 | write "1.0.3" 697 | 698 | flatted@^2.0.0: 699 | version "2.0.2" 700 | resolved "https://registry.yarnpkg.com/flatted/-/flatted-2.0.2.tgz#4575b21e2bcee7434aa9be662f4b7b5f9c2b5138" 701 | integrity sha512-r5wGx7YeOwNWNlCA0wQ86zKyDLMQr+/RB8xy74M4hTphfmjlijTSSXGuH8rnvKZnfT9i+75zmd8jcKdMR4O6jA== 702 | 703 | follow-redirects@^1.10.0: 704 | version "1.13.1" 705 | resolved "https://registry.yarnpkg.com/follow-redirects/-/follow-redirects-1.13.1.tgz#5f69b813376cee4fd0474a3aba835df04ab763b7" 706 | integrity sha512-SSG5xmZh1mkPGyKzjZP8zLjltIfpW32Y5QpdNJyjcfGxK3qo3NDDkZOZSFiGn1A6SclQxY9GzEwAHQ3dmYRWpg== 707 | 708 | fs.realpath@^1.0.0: 709 | version "1.0.0" 710 | resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f" 711 | integrity sha1-FQStJSMVjKpA20onh8sBQRmU6k8= 712 | 713 | function-bind@^1.1.1: 714 | version "1.1.1" 715 | resolved "https://registry.yarnpkg.com/function-bind/-/function-bind-1.1.1.tgz#a56899d3ea3c9bab874bb9773b7c5ede92f4895d" 716 | integrity sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A== 717 | 718 | functional-red-black-tree@^1.0.1: 719 | version "1.0.1" 720 | resolved "https://registry.yarnpkg.com/functional-red-black-tree/-/functional-red-black-tree-1.0.1.tgz#1b0ab3bd553b2a0d6399d29c0e3ea0b252078327" 721 | integrity sha1-GwqzvVU7Kg1jmdKcDj6gslIHgyc= 722 | 723 | get-stdin@^4.0.1: 724 | version "4.0.1" 725 | resolved "https://registry.yarnpkg.com/get-stdin/-/get-stdin-4.0.1.tgz#b968c6b0a04384324902e8bf1a5df32579a450fe" 726 | integrity sha1-uWjGsKBDhDJJAui/Gl3zJXmkUP4= 727 | 728 | get-stdin@^6.0.0: 729 | version "6.0.0" 730 | resolved "https://registry.yarnpkg.com/get-stdin/-/get-stdin-6.0.0.tgz#9e09bf712b360ab9225e812048f71fde9c89657b" 731 | integrity sha512-jp4tHawyV7+fkkSKyvjuLZswblUtz+SQKzSWnBbii16BuZksJlU1wuBYXY75r+duh/llF1ur6oNwi+2ZzjKZ7g== 732 | 733 | glob-parent@^5.0.0: 734 | version "5.1.1" 735 | resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-5.1.1.tgz#b6c1ef417c4e5663ea498f1c45afac6916bbc229" 736 | integrity sha512-FnI+VGOpnlGHWZxthPGR+QhR78fuiK0sNLkHQv+bL9fQi57lNNdquIbna/WrfROrolq8GK5Ek6BiMwqL/voRYQ== 737 | dependencies: 738 | is-glob "^4.0.1" 739 | 740 | glob@^7.1.3, glob@^7.1.6: 741 | version "7.1.6" 742 | resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.6.tgz#141f33b81a7c2492e125594307480c46679278a6" 743 | integrity sha512-LwaxwyZ72Lk7vZINtNNrywX0ZuLyStrdDtabefZKAY5ZGJhVtgdznluResxNmPitE0SAO+O26sWTHeKSI2wMBA== 744 | dependencies: 745 | fs.realpath "^1.0.0" 746 | inflight "^1.0.4" 747 | inherits "2" 748 | minimatch "^3.0.4" 749 | once "^1.3.0" 750 | path-is-absolute "^1.0.0" 751 | 752 | globals@^12.1.0: 753 | version "12.4.0" 754 | resolved "https://registry.yarnpkg.com/globals/-/globals-12.4.0.tgz#a18813576a41b00a24a97e7f815918c2e19925f8" 755 | integrity sha512-BWICuzzDvDoH54NHKCseDanAhE3CeDorgDL5MT6LMXXj2WCnd9UC2szdk4AWLfjdgNBCXLUanXYcpBBKOSWGwg== 756 | dependencies: 757 | type-fest "^0.8.1" 758 | 759 | globalyzer@^0.1.0: 760 | version "0.1.4" 761 | resolved "https://registry.yarnpkg.com/globalyzer/-/globalyzer-0.1.4.tgz#bc8e273afe1ac7c24eea8def5b802340c5cc534f" 762 | integrity sha512-LeguVWaxgHN0MNbWC6YljNMzHkrCny9fzjmEUdnF1kQ7wATFD1RHFRqA1qxaX2tgxGENlcxjOflopBwj3YZiXA== 763 | 764 | globrex@^0.1.1: 765 | version "0.1.2" 766 | resolved "https://registry.yarnpkg.com/globrex/-/globrex-0.1.2.tgz#dd5d9ec826232730cd6793a5e33a9302985e6098" 767 | integrity sha512-uHJgbwAMwNFf5mLst7IWLNg14x1CkeqglJb/K3doi4dw6q2IvAAmM/Y81kevy83wP+Sst+nutFTYOGg3d1lsxg== 768 | 769 | graceful-fs@^4.1.2: 770 | version "4.2.4" 771 | resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.2.4.tgz#2256bde14d3632958c465ebc96dc467ca07a29fb" 772 | integrity sha512-WjKPNJF79dtJAVniUlGGWHYGz2jWxT6VhN/4m1NdkbZ2nOsEF+cI1Edgql5zCRhs/VsQYRvrXctxktVXZUkixw== 773 | 774 | growly@^1.3.0: 775 | version "1.3.0" 776 | resolved "https://registry.yarnpkg.com/growly/-/growly-1.3.0.tgz#f10748cbe76af964b7c96c93c6bcc28af120c081" 777 | integrity sha1-8QdIy+dq+WS3yWyTxrzCivEgwIE= 778 | 779 | has-flag@^3.0.0: 780 | version "3.0.0" 781 | resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-3.0.0.tgz#b5d454dc2199ae225699f3467e5a07f3b955bafd" 782 | integrity sha1-tdRU3CGZriJWmfNGfloH87lVuv0= 783 | 784 | has-flag@^4.0.0: 785 | version "4.0.0" 786 | resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-4.0.0.tgz#944771fd9c81c81265c4d6941860da06bb59479b" 787 | integrity sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ== 788 | 789 | has-symbols@^1.0.0, has-symbols@^1.0.1: 790 | version "1.0.1" 791 | resolved "https://registry.yarnpkg.com/has-symbols/-/has-symbols-1.0.1.tgz#9f5214758a44196c406d9bd76cebf81ec2dd31e8" 792 | integrity sha512-PLcsoqu++dmEIZB+6totNFKq/7Do+Z0u4oT0zKOJNl3lYK6vGwwu2hjHs+68OEZbTjiUE9bgOABXbP/GvrS0Kg== 793 | 794 | has@^1.0.3: 795 | version "1.0.3" 796 | resolved "https://registry.yarnpkg.com/has/-/has-1.0.3.tgz#722d7cbfc1f6aa8241f16dd814e011e1f41e8796" 797 | integrity sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw== 798 | dependencies: 799 | function-bind "^1.1.1" 800 | 801 | hosted-git-info@^2.1.4: 802 | version "2.8.8" 803 | resolved "https://registry.yarnpkg.com/hosted-git-info/-/hosted-git-info-2.8.8.tgz#7539bd4bc1e0e0a895815a2e0262420b12858488" 804 | integrity sha512-f/wzC2QaWBs7t9IYqB4T3sR1xviIViXJRJTWBlx2Gf3g0Xi5vI7Yy4koXQ1c9OYDGHN9sBy1DQ2AB8fqZBWhUg== 805 | 806 | iconv-lite@^0.4.24: 807 | version "0.4.24" 808 | resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.4.24.tgz#2022b4b25fbddc21d2f524974a474aafe733908b" 809 | integrity sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA== 810 | dependencies: 811 | safer-buffer ">= 2.1.2 < 3" 812 | 813 | ignore@^4.0.6: 814 | version "4.0.6" 815 | resolved "https://registry.yarnpkg.com/ignore/-/ignore-4.0.6.tgz#750e3db5862087b4737ebac8207ffd1ef27b25fc" 816 | integrity sha512-cyFDKrqc/YdcWFniJhzI42+AzS+gNwmUzOSFcRCQYwySuBBBy/KjuxWLZ/FHEH6Moq1NizMOBWyTcv8O4OZIMg== 817 | 818 | import-fresh@^3.0.0: 819 | version "3.2.1" 820 | resolved "https://registry.yarnpkg.com/import-fresh/-/import-fresh-3.2.1.tgz#633ff618506e793af5ac91bf48b72677e15cbe66" 821 | integrity sha512-6e1q1cnWP2RXD9/keSkxHScg508CdXqXWgWBaETNhyuBFz+kUZlKboh+ISK+bU++DmbHimVBrOz/zzPe0sZ3sQ== 822 | dependencies: 823 | parent-module "^1.0.0" 824 | resolve-from "^4.0.0" 825 | 826 | imurmurhash@^0.1.4: 827 | version "0.1.4" 828 | resolved "https://registry.yarnpkg.com/imurmurhash/-/imurmurhash-0.1.4.tgz#9218b9b2b928a238b13dc4fb6b6d576f231453ea" 829 | integrity sha1-khi5srkoojixPcT7a21XbyMUU+o= 830 | 831 | indent-string@^2.1.0: 832 | version "2.1.0" 833 | resolved "https://registry.yarnpkg.com/indent-string/-/indent-string-2.1.0.tgz#8e2d48348742121b4a8218b7a137e9a52049dc80" 834 | integrity sha1-ji1INIdCEhtKghi3oTfppSBJ3IA= 835 | dependencies: 836 | repeating "^2.0.0" 837 | 838 | inflight@^1.0.4: 839 | version "1.0.6" 840 | resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9" 841 | integrity sha1-Sb1jMdfQLQwJvJEKEHW6gWW1bfk= 842 | dependencies: 843 | once "^1.3.0" 844 | wrappy "1" 845 | 846 | inherits@2: 847 | version "2.0.4" 848 | resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.4.tgz#0fa2c64f932917c3433a0ded55363aae37416b7c" 849 | integrity sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ== 850 | 851 | inquirer@^7.0.0: 852 | version "7.1.0" 853 | resolved "https://registry.yarnpkg.com/inquirer/-/inquirer-7.1.0.tgz#1298a01859883e17c7264b82870ae1034f92dd29" 854 | integrity sha512-5fJMWEmikSYu0nv/flMc475MhGbB7TSPd/2IpFV4I4rMklboCH2rQjYY5kKiYGHqUF9gvaambupcJFFG9dvReg== 855 | dependencies: 856 | ansi-escapes "^4.2.1" 857 | chalk "^3.0.0" 858 | cli-cursor "^3.1.0" 859 | cli-width "^2.0.0" 860 | external-editor "^3.0.3" 861 | figures "^3.0.0" 862 | lodash "^4.17.15" 863 | mute-stream "0.0.8" 864 | run-async "^2.4.0" 865 | rxjs "^6.5.3" 866 | string-width "^4.1.0" 867 | strip-ansi "^6.0.0" 868 | through "^2.3.6" 869 | 870 | is-arrayish@^0.2.1: 871 | version "0.2.1" 872 | resolved "https://registry.yarnpkg.com/is-arrayish/-/is-arrayish-0.2.1.tgz#77c99840527aa8ecb1a8ba697b80645a7a926a9d" 873 | integrity sha1-d8mYQFJ6qOyxqLppe4BkWnqSap0= 874 | 875 | is-callable@^1.1.4, is-callable@^1.1.5: 876 | version "1.2.0" 877 | resolved "https://registry.yarnpkg.com/is-callable/-/is-callable-1.2.0.tgz#83336560b54a38e35e3a2df7afd0454d691468bb" 878 | integrity sha512-pyVD9AaGLxtg6srb2Ng6ynWJqkHU9bEM087AKck0w8QwDarTfNcpIYoU8x8Hv2Icm8u6kFJM18Dag8lyqGkviw== 879 | 880 | is-date-object@^1.0.1: 881 | version "1.0.2" 882 | resolved "https://registry.yarnpkg.com/is-date-object/-/is-date-object-1.0.2.tgz#bda736f2cd8fd06d32844e7743bfa7494c3bfd7e" 883 | integrity sha512-USlDT524woQ08aoZFzh3/Z6ch9Y/EWXEHQ/AaRN0SkKq4t2Jw2R2339tSXmwuVoY7LLlBCbOIlx2myP/L5zk0g== 884 | 885 | is-extglob@^2.1.1: 886 | version "2.1.1" 887 | resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-2.1.1.tgz#a88c02535791f02ed37c76a1b9ea9773c833f8c2" 888 | integrity sha1-qIwCU1eR8C7TfHahueqXc8gz+MI= 889 | 890 | is-finite@^1.0.0: 891 | version "1.1.0" 892 | resolved "https://registry.yarnpkg.com/is-finite/-/is-finite-1.1.0.tgz#904135c77fb42c0641d6aa1bcdbc4daa8da082f3" 893 | integrity sha512-cdyMtqX/BOqqNBBiKlIVkytNHm49MtMlYyn1zxzvJKWmFMlGzm+ry5BBfYyeY9YmNKbRSo/o7OX9w9ale0wg3w== 894 | 895 | is-fullwidth-code-point@^2.0.0: 896 | version "2.0.0" 897 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz#a3b30a5c4f199183167aaab93beefae3ddfb654f" 898 | integrity sha1-o7MKXE8ZkYMWeqq5O+764937ZU8= 899 | 900 | is-fullwidth-code-point@^3.0.0: 901 | version "3.0.0" 902 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz#f116f8064fe90b3f7844a38997c0b75051269f1d" 903 | integrity sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg== 904 | 905 | is-glob@^4.0.0, is-glob@^4.0.1: 906 | version "4.0.1" 907 | resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-4.0.1.tgz#7567dbe9f2f5e2467bc77ab83c4a29482407a5dc" 908 | integrity sha512-5G0tKtBTFImOqDnLB2hG6Bp2qcKEFduo4tZu9MT/H6NQv/ghhy30o55ufafxJ/LdH79LLs2Kfrn85TLKyA7BUg== 909 | dependencies: 910 | is-extglob "^2.1.1" 911 | 912 | is-regex@^1.0.5: 913 | version "1.1.0" 914 | resolved "https://registry.yarnpkg.com/is-regex/-/is-regex-1.1.0.tgz#ece38e389e490df0dc21caea2bd596f987f767ff" 915 | integrity sha512-iI97M8KTWID2la5uYXlkbSDQIg4F6o1sYboZKKTDpnDQMLtUL86zxhgDet3Q2SriaYsyGqZ6Mn2SjbRKeLHdqw== 916 | dependencies: 917 | has-symbols "^1.0.1" 918 | 919 | is-string@^1.0.5: 920 | version "1.0.5" 921 | resolved "https://registry.yarnpkg.com/is-string/-/is-string-1.0.5.tgz#40493ed198ef3ff477b8c7f92f644ec82a5cd3a6" 922 | integrity sha512-buY6VNRjhQMiF1qWDouloZlQbRhDPCebwxSjxMjxgemYT46YMd2NR0/H+fBhEfWX4A/w9TBJ+ol+okqJKFE6vQ== 923 | 924 | is-symbol@^1.0.2: 925 | version "1.0.3" 926 | resolved "https://registry.yarnpkg.com/is-symbol/-/is-symbol-1.0.3.tgz#38e1014b9e6329be0de9d24a414fd7441ec61937" 927 | integrity sha512-OwijhaRSgqvhm/0ZdAcXNZt9lYdKFpcRDT5ULUuYXPoT794UNOdU+gpT6Rzo7b4V2HUl/op6GqY894AZwv9faQ== 928 | dependencies: 929 | has-symbols "^1.0.1" 930 | 931 | is-utf8@^0.2.0: 932 | version "0.2.1" 933 | resolved "https://registry.yarnpkg.com/is-utf8/-/is-utf8-0.2.1.tgz#4b0da1442104d1b336340e80797e865cf39f7d72" 934 | integrity sha1-Sw2hRCEE0bM2NA6AeX6GXPOffXI= 935 | 936 | is-wsl@^1.1.0: 937 | version "1.1.0" 938 | resolved "https://registry.yarnpkg.com/is-wsl/-/is-wsl-1.1.0.tgz#1f16e4aa22b04d1336b66188a66af3c600c3a66d" 939 | integrity sha1-HxbkqiKwTRM2tmGIpmrzxgDDpm0= 940 | 941 | isarray@^1.0.0: 942 | version "1.0.0" 943 | resolved "https://registry.yarnpkg.com/isarray/-/isarray-1.0.0.tgz#bb935d48582cba168c06834957a54a3e07124f11" 944 | integrity sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE= 945 | 946 | isexe@^2.0.0: 947 | version "2.0.0" 948 | resolved "https://registry.yarnpkg.com/isexe/-/isexe-2.0.0.tgz#e8fbf374dc556ff8947a10dcb0572d633f2cfa10" 949 | integrity sha1-6PvzdNxVb/iUehDcsFctYz8s+hA= 950 | 951 | js-tokens@^4.0.0: 952 | version "4.0.0" 953 | resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-4.0.0.tgz#19203fb59991df98e3a287050d4647cdeaf32499" 954 | integrity sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ== 955 | 956 | js-yaml@^3.13.1: 957 | version "3.14.0" 958 | resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-3.14.0.tgz#a7a34170f26a21bb162424d8adacb4113a69e482" 959 | integrity sha512-/4IbIeHcD9VMHFqDR/gQ7EdZdLimOvW2DdcxFjdyyZ9NsbS+ccrXqVWDtab/lRl5AlUqmpBx8EhPaWR+OtY17A== 960 | dependencies: 961 | argparse "^1.0.7" 962 | esprima "^4.0.0" 963 | 964 | json-schema-traverse@^0.4.1: 965 | version "0.4.1" 966 | resolved "https://registry.yarnpkg.com/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz#69f6a87d9513ab8bb8fe63bdb0979c448e684660" 967 | integrity sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg== 968 | 969 | json-stable-stringify-without-jsonify@^1.0.1: 970 | version "1.0.1" 971 | resolved "https://registry.yarnpkg.com/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz#9db7b59496ad3f3cfef30a75142d2d930ad72651" 972 | integrity sha1-nbe1lJatPzz+8wp1FC0tkwrXJlE= 973 | 974 | json5@^1.0.1: 975 | version "1.0.1" 976 | resolved "https://registry.yarnpkg.com/json5/-/json5-1.0.1.tgz#779fb0018604fa854eacbf6252180d83543e3dbe" 977 | integrity sha512-aKS4WQjPenRxiQsC93MNfjx+nbF4PAdYzmd/1JIj8HYzqfbu86beTuNgXDzPknWk0n0uARlyewZo4s++ES36Ow== 978 | dependencies: 979 | minimist "^1.2.0" 980 | 981 | levn@^0.3.0, levn@~0.3.0: 982 | version "0.3.0" 983 | resolved "https://registry.yarnpkg.com/levn/-/levn-0.3.0.tgz#3b09924edf9f083c0490fdd4c0bc4421e04764ee" 984 | integrity sha1-OwmSTt+fCDwEkP3UwLxEIeBHZO4= 985 | dependencies: 986 | prelude-ls "~1.1.2" 987 | type-check "~0.3.2" 988 | 989 | load-json-file@^1.0.0: 990 | version "1.1.0" 991 | resolved "https://registry.yarnpkg.com/load-json-file/-/load-json-file-1.1.0.tgz#956905708d58b4bab4c2261b04f59f31c99374c0" 992 | integrity sha1-lWkFcI1YtLq0wiYbBPWfMcmTdMA= 993 | dependencies: 994 | graceful-fs "^4.1.2" 995 | parse-json "^2.2.0" 996 | pify "^2.0.0" 997 | pinkie-promise "^2.0.0" 998 | strip-bom "^2.0.0" 999 | 1000 | load-json-file@^2.0.0: 1001 | version "2.0.0" 1002 | resolved "https://registry.yarnpkg.com/load-json-file/-/load-json-file-2.0.0.tgz#7947e42149af80d696cbf797bcaabcfe1fe29ca8" 1003 | integrity sha1-eUfkIUmvgNaWy/eXvKq8/h/inKg= 1004 | dependencies: 1005 | graceful-fs "^4.1.2" 1006 | parse-json "^2.2.0" 1007 | pify "^2.0.0" 1008 | strip-bom "^3.0.0" 1009 | 1010 | locate-path@^2.0.0: 1011 | version "2.0.0" 1012 | resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-2.0.0.tgz#2b568b265eec944c6d9c0de9c3dbbbca0354cd8e" 1013 | integrity sha1-K1aLJl7slExtnA3pw9u7ygNUzY4= 1014 | dependencies: 1015 | p-locate "^2.0.0" 1016 | path-exists "^3.0.0" 1017 | 1018 | lodash@^4.17.14, lodash@^4.17.15: 1019 | version "4.17.19" 1020 | resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.19.tgz#e48ddedbe30b3321783c5b4301fbd353bc1e4a4b" 1021 | integrity sha512-JNvd8XER9GQX0v2qJgsaN/mzFCNA5BRe/j8JN9d+tWyGLSodKQHKFicdwNYzWwI3wjRnaKPsGj1XkBjx/F96DQ== 1022 | 1023 | loud-rejection@^1.0.0: 1024 | version "1.6.0" 1025 | resolved "https://registry.yarnpkg.com/loud-rejection/-/loud-rejection-1.6.0.tgz#5b46f80147edee578870f086d04821cf998e551f" 1026 | integrity sha1-W0b4AUft7leIcPCG0Eghz5mOVR8= 1027 | dependencies: 1028 | currently-unhandled "^0.4.1" 1029 | signal-exit "^3.0.0" 1030 | 1031 | make-error@^1.1.1: 1032 | version "1.3.6" 1033 | resolved "https://registry.yarnpkg.com/make-error/-/make-error-1.3.6.tgz#2eb2e37ea9b67c4891f684a1394799af484cf7a2" 1034 | integrity sha512-s8UhlNe7vPKomQhC1qFelMokr/Sc3AgNbso3n74mVPA5LTZwkB9NlXf4XPamLxJE8h0gh73rM94xvwRT2CVInw== 1035 | 1036 | map-obj@^1.0.0, map-obj@^1.0.1: 1037 | version "1.0.1" 1038 | resolved "https://registry.yarnpkg.com/map-obj/-/map-obj-1.0.1.tgz#d933ceb9205d82bdcf4886f6742bdc2b4dea146d" 1039 | integrity sha1-2TPOuSBdgr3PSIb2dCvcK03qFG0= 1040 | 1041 | meow@^3.3.0: 1042 | version "3.7.0" 1043 | resolved "https://registry.yarnpkg.com/meow/-/meow-3.7.0.tgz#72cb668b425228290abbfa856892587308a801fb" 1044 | integrity sha1-cstmi0JSKCkKu/qFaJJYcwioAfs= 1045 | dependencies: 1046 | camelcase-keys "^2.0.0" 1047 | decamelize "^1.1.2" 1048 | loud-rejection "^1.0.0" 1049 | map-obj "^1.0.1" 1050 | minimist "^1.1.3" 1051 | normalize-package-data "^2.3.4" 1052 | object-assign "^4.0.1" 1053 | read-pkg-up "^1.0.1" 1054 | redent "^1.0.0" 1055 | trim-newlines "^1.0.0" 1056 | 1057 | mimic-fn@^2.1.0: 1058 | version "2.1.0" 1059 | resolved "https://registry.yarnpkg.com/mimic-fn/-/mimic-fn-2.1.0.tgz#7ed2c2ccccaf84d3ffcb7a69b57711fc2083401b" 1060 | integrity sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg== 1061 | 1062 | minimatch@^3.0.4: 1063 | version "3.0.4" 1064 | resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.0.4.tgz#5166e286457f03306064be5497e8dbb0c3d32083" 1065 | integrity sha512-yJHVQEhyqPLUTgt9B83PXu6W3rx4MvvHvSUvToogpwoGDOUQ+yDrR0HRot+yOCdCO7u4hX3pWft6kWBBcqh0UA== 1066 | dependencies: 1067 | brace-expansion "^1.1.7" 1068 | 1069 | minimist@^1.1.3, minimist@^1.2.0, minimist@^1.2.5: 1070 | version "1.2.5" 1071 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.5.tgz#67d66014b66a6a8aaa0c083c5fd58df4e4e97602" 1072 | integrity sha512-FM9nNUYrRBAELZQT3xeZQ7fmMOBg6nWNmJKTcgsJeaLstP/UODVpGsr5OhXhhXg6f+qtJ8uiZ+PUxkDWcgIXLw== 1073 | 1074 | mkdirp@^0.5.1: 1075 | version "0.5.5" 1076 | resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.5.5.tgz#d91cefd62d1436ca0f41620e251288d420099def" 1077 | integrity sha512-NKmAlESf6jMGym1++R0Ra7wvhV+wFW63FaSOFPwRahvea0gMUcGUhVeAg/0BC0wiv9ih5NYPB1Wn1UEI1/L+xQ== 1078 | dependencies: 1079 | minimist "^1.2.5" 1080 | 1081 | ms@2.0.0: 1082 | version "2.0.0" 1083 | resolved "https://registry.yarnpkg.com/ms/-/ms-2.0.0.tgz#5608aeadfc00be6c2901df5f9861788de0d597c8" 1084 | integrity sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g= 1085 | 1086 | ms@^2.1.1: 1087 | version "2.1.2" 1088 | resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.2.tgz#d09d1f357b443f493382a8eb3ccd183872ae6009" 1089 | integrity sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w== 1090 | 1091 | mute-stream@0.0.8: 1092 | version "0.0.8" 1093 | resolved "https://registry.yarnpkg.com/mute-stream/-/mute-stream-0.0.8.tgz#1630c42b2251ff81e2a283de96a5497ea92e5e0d" 1094 | integrity sha512-nnbWWOkoWyUsTjKrhgD0dcz22mdkSnpYqbEjIm2nhwhuxlSkpywJmBo8h0ZqJdkp73mb90SssHkN4rsRaBAfAA== 1095 | 1096 | natural-compare@^1.4.0: 1097 | version "1.4.0" 1098 | resolved "https://registry.yarnpkg.com/natural-compare/-/natural-compare-1.4.0.tgz#4abebfeed7541f2c27acfb29bdbbd15c8d5ba4f7" 1099 | integrity sha1-Sr6/7tdUHywnrPspvbvRXI1bpPc= 1100 | 1101 | nice-try@^1.0.4: 1102 | version "1.0.5" 1103 | resolved "https://registry.yarnpkg.com/nice-try/-/nice-try-1.0.5.tgz#a3378a7696ce7d223e88fc9b764bd7ef1089e366" 1104 | integrity sha512-1nh45deeb5olNY7eX82BkPO7SSxR5SSYJiPTrTdFUVYwAl8CKMA5N9PjTYkHiRjisVcxcQ1HXdLhx2qxxJzLNQ== 1105 | 1106 | node-notifier@^5.4.0: 1107 | version "5.4.3" 1108 | resolved "https://registry.yarnpkg.com/node-notifier/-/node-notifier-5.4.3.tgz#cb72daf94c93904098e28b9c590fd866e464bd50" 1109 | integrity sha512-M4UBGcs4jeOK9CjTsYwkvH6/MzuUmGCyTW+kCY7uO+1ZVr0+FHGdPdIf5CCLqAaxnRrWidyoQlNkMIIVwbKB8Q== 1110 | dependencies: 1111 | growly "^1.3.0" 1112 | is-wsl "^1.1.0" 1113 | semver "^5.5.0" 1114 | shellwords "^0.1.1" 1115 | which "^1.3.0" 1116 | 1117 | normalize-package-data@^2.3.2, normalize-package-data@^2.3.4: 1118 | version "2.5.0" 1119 | resolved "https://registry.yarnpkg.com/normalize-package-data/-/normalize-package-data-2.5.0.tgz#e66db1838b200c1dfc233225d12cb36520e234a8" 1120 | integrity sha512-/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA== 1121 | dependencies: 1122 | hosted-git-info "^2.1.4" 1123 | resolve "^1.10.0" 1124 | semver "2 || 3 || 4 || 5" 1125 | validate-npm-package-license "^3.0.1" 1126 | 1127 | object-assign@^4.0.1: 1128 | version "4.1.1" 1129 | resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863" 1130 | integrity sha1-IQmtx5ZYh8/AXLvUQsrIv7s2CGM= 1131 | 1132 | object-inspect@^1.7.0: 1133 | version "1.7.0" 1134 | resolved "https://registry.yarnpkg.com/object-inspect/-/object-inspect-1.7.0.tgz#f4f6bd181ad77f006b5ece60bd0b6f398ff74a67" 1135 | integrity sha512-a7pEHdh1xKIAgTySUGgLMx/xwDZskN1Ud6egYYN3EdRW4ZMPNEDUTF+hwy2LUC+Bl+SyLXANnwz/jyh/qutKUw== 1136 | 1137 | object-keys@^1.0.11, object-keys@^1.0.12, object-keys@^1.1.1: 1138 | version "1.1.1" 1139 | resolved "https://registry.yarnpkg.com/object-keys/-/object-keys-1.1.1.tgz#1c47f272df277f3b1daf061677d9c82e2322c60e" 1140 | integrity sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA== 1141 | 1142 | object.assign@^4.1.0: 1143 | version "4.1.0" 1144 | resolved "https://registry.yarnpkg.com/object.assign/-/object.assign-4.1.0.tgz#968bf1100d7956bb3ca086f006f846b3bc4008da" 1145 | integrity sha512-exHJeq6kBKj58mqGyTQ9DFvrZC/eR6OwxzoM9YRoGBqrXYonaFyGiFMuc9VZrXf7DarreEwMpurG3dd+CNyW5w== 1146 | dependencies: 1147 | define-properties "^1.1.2" 1148 | function-bind "^1.1.1" 1149 | has-symbols "^1.0.0" 1150 | object-keys "^1.0.11" 1151 | 1152 | object.entries@^1.1.1: 1153 | version "1.1.2" 1154 | resolved "https://registry.yarnpkg.com/object.entries/-/object.entries-1.1.2.tgz#bc73f00acb6b6bb16c203434b10f9a7e797d3add" 1155 | integrity sha512-BQdB9qKmb/HyNdMNWVr7O3+z5MUIx3aiegEIJqjMBbBf0YT9RRxTJSim4mzFqtyr7PDAHigq0N9dO0m0tRakQA== 1156 | dependencies: 1157 | define-properties "^1.1.3" 1158 | es-abstract "^1.17.5" 1159 | has "^1.0.3" 1160 | 1161 | object.values@^1.1.0: 1162 | version "1.1.1" 1163 | resolved "https://registry.yarnpkg.com/object.values/-/object.values-1.1.1.tgz#68a99ecde356b7e9295a3c5e0ce31dc8c953de5e" 1164 | integrity sha512-WTa54g2K8iu0kmS/us18jEmdv1a4Wi//BZ/DTVYEcH0XhLM5NYdpDHja3gt57VrZLcNAO2WGA+KpWsDBaHt6eA== 1165 | dependencies: 1166 | define-properties "^1.1.3" 1167 | es-abstract "^1.17.0-next.1" 1168 | function-bind "^1.1.1" 1169 | has "^1.0.3" 1170 | 1171 | once@^1.3.0: 1172 | version "1.4.0" 1173 | resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1" 1174 | integrity sha1-WDsap3WWHUsROsF9nFC6753Xa9E= 1175 | dependencies: 1176 | wrappy "1" 1177 | 1178 | onetime@^5.1.0: 1179 | version "5.1.0" 1180 | resolved "https://registry.yarnpkg.com/onetime/-/onetime-5.1.0.tgz#fff0f3c91617fe62bb50189636e99ac8a6df7be5" 1181 | integrity sha512-5NcSkPHhwTVFIQN+TUqXoS5+dlElHXdpAWu9I0HP20YOtIi+aZ0Ct82jdlILDxjLEAWwvm+qj1m6aEtsDVmm6Q== 1182 | dependencies: 1183 | mimic-fn "^2.1.0" 1184 | 1185 | optionator@^0.8.3: 1186 | version "0.8.3" 1187 | resolved "https://registry.yarnpkg.com/optionator/-/optionator-0.8.3.tgz#84fa1d036fe9d3c7e21d99884b601167ec8fb495" 1188 | integrity sha512-+IW9pACdk3XWmmTXG8m3upGUJst5XRGzxMRjXzAuJ1XnIFNvfhjjIuYkDvysnPQ7qzqVzLt78BCruntqRhWQbA== 1189 | dependencies: 1190 | deep-is "~0.1.3" 1191 | fast-levenshtein "~2.0.6" 1192 | levn "~0.3.0" 1193 | prelude-ls "~1.1.2" 1194 | type-check "~0.3.2" 1195 | word-wrap "~1.2.3" 1196 | 1197 | os-tmpdir@~1.0.2: 1198 | version "1.0.2" 1199 | resolved "https://registry.yarnpkg.com/os-tmpdir/-/os-tmpdir-1.0.2.tgz#bbe67406c79aa85c5cfec766fe5734555dfa1274" 1200 | integrity sha1-u+Z0BseaqFxc/sdm/lc0VV36EnQ= 1201 | 1202 | p-limit@^1.1.0: 1203 | version "1.3.0" 1204 | resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-1.3.0.tgz#b86bd5f0c25690911c7590fcbfc2010d54b3ccb8" 1205 | integrity sha512-vvcXsLAJ9Dr5rQOPk7toZQZJApBl2K4J6dANSsEuh6QI41JYcsS/qhTGa9ErIUUgK3WNQoJYvylxvjqmiqEA9Q== 1206 | dependencies: 1207 | p-try "^1.0.0" 1208 | 1209 | p-locate@^2.0.0: 1210 | version "2.0.0" 1211 | resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-2.0.0.tgz#20a0103b222a70c8fd39cc2e580680f3dde5ec43" 1212 | integrity sha1-IKAQOyIqcMj9OcwuWAaA893l7EM= 1213 | dependencies: 1214 | p-limit "^1.1.0" 1215 | 1216 | p-try@^1.0.0: 1217 | version "1.0.0" 1218 | resolved "https://registry.yarnpkg.com/p-try/-/p-try-1.0.0.tgz#cbc79cdbaf8fd4228e13f621f2b1a237c1b207b3" 1219 | integrity sha1-y8ec26+P1CKOE/Yh8rGiN8GyB7M= 1220 | 1221 | parent-module@^1.0.0: 1222 | version "1.0.1" 1223 | resolved "https://registry.yarnpkg.com/parent-module/-/parent-module-1.0.1.tgz#691d2709e78c79fae3a156622452d00762caaaa2" 1224 | integrity sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g== 1225 | dependencies: 1226 | callsites "^3.0.0" 1227 | 1228 | parse-json@^2.2.0: 1229 | version "2.2.0" 1230 | resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-2.2.0.tgz#f480f40434ef80741f8469099f8dea18f55a4dc9" 1231 | integrity sha1-9ID0BDTvgHQfhGkJn43qGPVaTck= 1232 | dependencies: 1233 | error-ex "^1.2.0" 1234 | 1235 | path-exists@^2.0.0: 1236 | version "2.1.0" 1237 | resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-2.1.0.tgz#0feb6c64f0fc518d9a754dd5efb62c7022761f4b" 1238 | integrity sha1-D+tsZPD8UY2adU3V77YscCJ2H0s= 1239 | dependencies: 1240 | pinkie-promise "^2.0.0" 1241 | 1242 | path-exists@^3.0.0: 1243 | version "3.0.0" 1244 | resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-3.0.0.tgz#ce0ebeaa5f78cb18925ea7d810d7b59b010fd515" 1245 | integrity sha1-zg6+ql94yxiSXqfYENe1mwEP1RU= 1246 | 1247 | path-is-absolute@^1.0.0: 1248 | version "1.0.1" 1249 | resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f" 1250 | integrity sha1-F0uSaHNVNP+8es5r9TpanhtcX18= 1251 | 1252 | path-key@^2.0.1: 1253 | version "2.0.1" 1254 | resolved "https://registry.yarnpkg.com/path-key/-/path-key-2.0.1.tgz#411cadb574c5a140d3a4b1910d40d80cc9f40b40" 1255 | integrity sha1-QRyttXTFoUDTpLGRDUDYDMn0C0A= 1256 | 1257 | path-parse@^1.0.6: 1258 | version "1.0.6" 1259 | resolved "https://registry.yarnpkg.com/path-parse/-/path-parse-1.0.6.tgz#d62dbb5679405d72c4737ec58600e9ddcf06d24c" 1260 | integrity sha512-GSmOT2EbHrINBf9SR7CDELwlJ8AENk3Qn7OikK4nFYAu3Ote2+JYNVvkpAEQm3/TLNEJFD/xZJjzyxg3KBWOzw== 1261 | 1262 | path-type@^1.0.0: 1263 | version "1.1.0" 1264 | resolved "https://registry.yarnpkg.com/path-type/-/path-type-1.1.0.tgz#59c44f7ee491da704da415da5a4070ba4f8fe441" 1265 | integrity sha1-WcRPfuSR2nBNpBXaWkBwuk+P5EE= 1266 | dependencies: 1267 | graceful-fs "^4.1.2" 1268 | pify "^2.0.0" 1269 | pinkie-promise "^2.0.0" 1270 | 1271 | path-type@^2.0.0: 1272 | version "2.0.0" 1273 | resolved "https://registry.yarnpkg.com/path-type/-/path-type-2.0.0.tgz#f012ccb8415b7096fc2daa1054c3d72389594c73" 1274 | integrity sha1-8BLMuEFbcJb8LaoQVMPXI4lZTHM= 1275 | dependencies: 1276 | pify "^2.0.0" 1277 | 1278 | pify@^2.0.0: 1279 | version "2.3.0" 1280 | resolved "https://registry.yarnpkg.com/pify/-/pify-2.3.0.tgz#ed141a6ac043a849ea588498e7dca8b15330e90c" 1281 | integrity sha1-7RQaasBDqEnqWISY59yosVMw6Qw= 1282 | 1283 | pinkie-promise@^2.0.0: 1284 | version "2.0.1" 1285 | resolved "https://registry.yarnpkg.com/pinkie-promise/-/pinkie-promise-2.0.1.tgz#2135d6dfa7a358c069ac9b178776288228450ffa" 1286 | integrity sha1-ITXW36ejWMBprJsXh3YogihFD/o= 1287 | dependencies: 1288 | pinkie "^2.0.0" 1289 | 1290 | pinkie@^2.0.0: 1291 | version "2.0.4" 1292 | resolved "https://registry.yarnpkg.com/pinkie/-/pinkie-2.0.4.tgz#72556b80cfa0d48a974e80e77248e80ed4f7f870" 1293 | integrity sha1-clVrgM+g1IqXToDnckjoDtT3+HA= 1294 | 1295 | pkg-dir@^2.0.0: 1296 | version "2.0.0" 1297 | resolved "https://registry.yarnpkg.com/pkg-dir/-/pkg-dir-2.0.0.tgz#f6d5d1109e19d63edf428e0bd57e12777615334b" 1298 | integrity sha1-9tXREJ4Z1j7fQo4L1X4Sd3YVM0s= 1299 | dependencies: 1300 | find-up "^2.1.0" 1301 | 1302 | prelude-ls@~1.1.2: 1303 | version "1.1.2" 1304 | resolved "https://registry.yarnpkg.com/prelude-ls/-/prelude-ls-1.1.2.tgz#21932a549f5e52ffd9a827f570e04be62a97da54" 1305 | integrity sha1-IZMqVJ9eUv/ZqCf1cOBL5iqX2lQ= 1306 | 1307 | prettier-linter-helpers@^1.0.0: 1308 | version "1.0.0" 1309 | resolved "https://registry.yarnpkg.com/prettier-linter-helpers/-/prettier-linter-helpers-1.0.0.tgz#d23d41fe1375646de2d0104d3454a3008802cf7b" 1310 | integrity sha512-GbK2cP9nraSSUF9N2XwUwqfzlAFlMNYYl+ShE/V+H8a9uNl/oUqB1w2EL54Jh0OlyRSd8RfWYJ3coVS4TROP2w== 1311 | dependencies: 1312 | fast-diff "^1.1.2" 1313 | 1314 | prettier@^2.0.4: 1315 | version "2.0.5" 1316 | resolved "https://registry.yarnpkg.com/prettier/-/prettier-2.0.5.tgz#d6d56282455243f2f92cc1716692c08aa31522d4" 1317 | integrity sha512-7PtVymN48hGcO4fGjybyBSIWDsLU4H4XlvOHfq91pz9kkGlonzwTfYkaIEwiRg/dAJF9YlbsduBAgtYLi+8cFg== 1318 | 1319 | progress@^2.0.0: 1320 | version "2.0.3" 1321 | resolved "https://registry.yarnpkg.com/progress/-/progress-2.0.3.tgz#7e8cf8d8f5b8f239c1bc68beb4eb78567d572ef8" 1322 | integrity sha512-7PiHtLll5LdnKIMw100I+8xJXR5gW2QwWYkT6iJva0bXitZKa/XMrSbdmg3r2Xnaidz9Qumd0VPaMrZlF9V9sA== 1323 | 1324 | punycode@^2.1.0: 1325 | version "2.1.1" 1326 | resolved "https://registry.yarnpkg.com/punycode/-/punycode-2.1.1.tgz#b58b010ac40c22c5657616c8d2c2c02c7bf479ec" 1327 | integrity sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A== 1328 | 1329 | read-pkg-up@^1.0.1: 1330 | version "1.0.1" 1331 | resolved "https://registry.yarnpkg.com/read-pkg-up/-/read-pkg-up-1.0.1.tgz#9d63c13276c065918d57f002a57f40a1b643fb02" 1332 | integrity sha1-nWPBMnbAZZGNV/ACpX9AobZD+wI= 1333 | dependencies: 1334 | find-up "^1.0.0" 1335 | read-pkg "^1.0.0" 1336 | 1337 | read-pkg-up@^2.0.0: 1338 | version "2.0.0" 1339 | resolved "https://registry.yarnpkg.com/read-pkg-up/-/read-pkg-up-2.0.0.tgz#6b72a8048984e0c41e79510fd5e9fa99b3b549be" 1340 | integrity sha1-a3KoBImE4MQeeVEP1en6mbO1Sb4= 1341 | dependencies: 1342 | find-up "^2.0.0" 1343 | read-pkg "^2.0.0" 1344 | 1345 | read-pkg@^1.0.0: 1346 | version "1.1.0" 1347 | resolved "https://registry.yarnpkg.com/read-pkg/-/read-pkg-1.1.0.tgz#f5ffaa5ecd29cb31c0474bca7d756b6bb29e3f28" 1348 | integrity sha1-9f+qXs0pyzHAR0vKfXVra7KePyg= 1349 | dependencies: 1350 | load-json-file "^1.0.0" 1351 | normalize-package-data "^2.3.2" 1352 | path-type "^1.0.0" 1353 | 1354 | read-pkg@^2.0.0: 1355 | version "2.0.0" 1356 | resolved "https://registry.yarnpkg.com/read-pkg/-/read-pkg-2.0.0.tgz#8ef1c0623c6a6db0dc6713c4bfac46332b2368f8" 1357 | integrity sha1-jvHAYjxqbbDcZxPEv6xGMysjaPg= 1358 | dependencies: 1359 | load-json-file "^2.0.0" 1360 | normalize-package-data "^2.3.2" 1361 | path-type "^2.0.0" 1362 | 1363 | redent@^1.0.0: 1364 | version "1.0.0" 1365 | resolved "https://registry.yarnpkg.com/redent/-/redent-1.0.0.tgz#cf916ab1fd5f1f16dfb20822dd6ec7f730c2afde" 1366 | integrity sha1-z5Fqsf1fHxbfsggi3W7H9zDCr94= 1367 | dependencies: 1368 | indent-string "^2.1.0" 1369 | strip-indent "^1.0.1" 1370 | 1371 | regexpp@^2.0.1: 1372 | version "2.0.1" 1373 | resolved "https://registry.yarnpkg.com/regexpp/-/regexpp-2.0.1.tgz#8d19d31cf632482b589049f8281f93dbcba4d07f" 1374 | integrity sha512-lv0M6+TkDVniA3aD1Eg0DVpfU/booSu7Eev3TDO/mZKHBfVjgCGTV4t4buppESEYDtkArYFOxTJWv6S5C+iaNw== 1375 | 1376 | regexpp@^3.0.0: 1377 | version "3.1.0" 1378 | resolved "https://registry.yarnpkg.com/regexpp/-/regexpp-3.1.0.tgz#206d0ad0a5648cffbdb8ae46438f3dc51c9f78e2" 1379 | integrity sha512-ZOIzd8yVsQQA7j8GCSlPGXwg5PfmA1mrq0JP4nGhh54LaKN3xdai/vHUDu74pKwV8OxseMS65u2NImosQcSD0Q== 1380 | 1381 | repeating@^2.0.0: 1382 | version "2.0.1" 1383 | resolved "https://registry.yarnpkg.com/repeating/-/repeating-2.0.1.tgz#5214c53a926d3552707527fbab415dbc08d06dda" 1384 | integrity sha1-UhTFOpJtNVJwdSf7q0FdvAjQbdo= 1385 | dependencies: 1386 | is-finite "^1.0.0" 1387 | 1388 | resolve-from@^4.0.0: 1389 | version "4.0.0" 1390 | resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-4.0.0.tgz#4abcd852ad32dd7baabfe9b40e00a36db5f392e6" 1391 | integrity sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g== 1392 | 1393 | resolve@^1.0.0, resolve@^1.10.0, resolve@^1.12.0, resolve@^1.13.1: 1394 | version "1.17.0" 1395 | resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.17.0.tgz#b25941b54968231cc2d1bb76a79cb7f2c0bf8444" 1396 | integrity sha512-ic+7JYiV8Vi2yzQGFWOkiZD5Z9z7O2Zhm9XMaTxdJExKasieFCr+yXZ/WmXsckHiKl12ar0y6XiXDx3m4RHn1w== 1397 | dependencies: 1398 | path-parse "^1.0.6" 1399 | 1400 | restore-cursor@^3.1.0: 1401 | version "3.1.0" 1402 | resolved "https://registry.yarnpkg.com/restore-cursor/-/restore-cursor-3.1.0.tgz#39f67c54b3a7a58cea5236d95cf0034239631f7e" 1403 | integrity sha512-l+sSefzHpj5qimhFSE5a8nufZYAM3sBSVMAPtYkmC+4EH2anSGaEMXSD0izRQbu9nfyQ9y5JrVmp7E8oZrUjvA== 1404 | dependencies: 1405 | onetime "^5.1.0" 1406 | signal-exit "^3.0.2" 1407 | 1408 | rimraf@2.6.3: 1409 | version "2.6.3" 1410 | resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.6.3.tgz#b2d104fe0d8fb27cf9e0a1cda8262dd3833c6cab" 1411 | integrity sha512-mwqeW5XsA2qAejG46gYdENaxXjx9onRNCfn7L0duuP4hCuTIi/QO7PDK07KJfp1d+izWPrzEJDcSqBa0OZQriA== 1412 | dependencies: 1413 | glob "^7.1.3" 1414 | 1415 | rimraf@^2.6.1: 1416 | version "2.7.1" 1417 | resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.7.1.tgz#35797f13a7fdadc566142c29d4f07ccad483e3ec" 1418 | integrity sha512-uWjbaKIK3T1OSVptzX7Nl6PvQ3qAGtKEtVRjRuazjfL3Bx5eI409VZSqgND+4UNnmzLVdPj9FqFJNPqBZFve4w== 1419 | dependencies: 1420 | glob "^7.1.3" 1421 | 1422 | run-async@^2.4.0: 1423 | version "2.4.1" 1424 | resolved "https://registry.yarnpkg.com/run-async/-/run-async-2.4.1.tgz#8440eccf99ea3e70bd409d49aab88e10c189a455" 1425 | integrity sha512-tvVnVv01b8c1RrA6Ep7JkStj85Guv/YrMcwqYQnwjsAS2cTmmPGBBjAjpCW7RrSodNSoE2/qg9O4bceNvUuDgQ== 1426 | 1427 | rxjs@^6.5.3: 1428 | version "6.5.5" 1429 | resolved "https://registry.yarnpkg.com/rxjs/-/rxjs-6.5.5.tgz#c5c884e3094c8cfee31bf27eb87e54ccfc87f9ec" 1430 | integrity sha512-WfQI+1gohdf0Dai/Bbmk5L5ItH5tYqm3ki2c5GdWhKjalzjg93N3avFjVStyZZz+A2Em+ZxKH5bNghw9UeylGQ== 1431 | dependencies: 1432 | tslib "^1.9.0" 1433 | 1434 | "safer-buffer@>= 2.1.2 < 3": 1435 | version "2.1.2" 1436 | resolved "https://registry.yarnpkg.com/safer-buffer/-/safer-buffer-2.1.2.tgz#44fa161b0187b9549dd84bb91802f9bd8385cd6a" 1437 | integrity sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg== 1438 | 1439 | "semver@2 || 3 || 4 || 5", semver@^5.5.0: 1440 | version "5.7.1" 1441 | resolved "https://registry.yarnpkg.com/semver/-/semver-5.7.1.tgz#a954f931aeba508d307bbf069eff0c01c96116f7" 1442 | integrity sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ== 1443 | 1444 | semver@^6.1.2: 1445 | version "6.3.0" 1446 | resolved "https://registry.yarnpkg.com/semver/-/semver-6.3.0.tgz#ee0a64c8af5e8ceea67687b133761e1becbd1d3d" 1447 | integrity sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw== 1448 | 1449 | semver@^7.3.2: 1450 | version "7.3.2" 1451 | resolved "https://registry.yarnpkg.com/semver/-/semver-7.3.2.tgz#604962b052b81ed0786aae84389ffba70ffd3938" 1452 | integrity sha512-OrOb32TeeambH6UrhtShmF7CRDqhL6/5XpPNp2DuRH6+9QLw/orhp72j87v8Qa1ScDkvrrBNpZcDejAirJmfXQ== 1453 | 1454 | shebang-command@^1.2.0: 1455 | version "1.2.0" 1456 | resolved "https://registry.yarnpkg.com/shebang-command/-/shebang-command-1.2.0.tgz#44aac65b695b03398968c39f363fee5deafdf1ea" 1457 | integrity sha1-RKrGW2lbAzmJaMOfNj/uXer98eo= 1458 | dependencies: 1459 | shebang-regex "^1.0.0" 1460 | 1461 | shebang-regex@^1.0.0: 1462 | version "1.0.0" 1463 | resolved "https://registry.yarnpkg.com/shebang-regex/-/shebang-regex-1.0.0.tgz#da42f49740c0b42db2ca9728571cb190c98efea3" 1464 | integrity sha1-2kL0l0DAtC2yypcoVxyxkMmO/qM= 1465 | 1466 | shellwords@^0.1.1: 1467 | version "0.1.1" 1468 | resolved "https://registry.yarnpkg.com/shellwords/-/shellwords-0.1.1.tgz#d6b9181c1a48d397324c84871efbcfc73fc0654b" 1469 | integrity sha512-vFwSUfQvqybiICwZY5+DAWIPLKsWO31Q91JSKl3UYv+K5c2QRPzn0qzec6QPu1Qc9eHYItiP3NdJqNVqetYAww== 1470 | 1471 | signal-exit@^3.0.0, signal-exit@^3.0.2: 1472 | version "3.0.3" 1473 | resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.3.tgz#a1410c2edd8f077b08b4e253c8eacfcaf057461c" 1474 | integrity sha512-VUJ49FC8U1OxwZLxIbTTrDvLnf/6TDgxZcK8wxR8zs13xpx7xbG60ndBlhNrFi2EMuFRoeDoJO7wthSLq42EjA== 1475 | 1476 | slice-ansi@^2.1.0: 1477 | version "2.1.0" 1478 | resolved "https://registry.yarnpkg.com/slice-ansi/-/slice-ansi-2.1.0.tgz#cacd7693461a637a5788d92a7dd4fba068e81636" 1479 | integrity sha512-Qu+VC3EwYLldKa1fCxuuvULvSJOKEgk9pi8dZeCVK7TqBfUNTH4sFkk4joj8afVSfAYgJoSOetjx9QWOJ5mYoQ== 1480 | dependencies: 1481 | ansi-styles "^3.2.0" 1482 | astral-regex "^1.0.0" 1483 | is-fullwidth-code-point "^2.0.0" 1484 | 1485 | source-map-support@^0.5.12, source-map-support@^0.5.17: 1486 | version "0.5.19" 1487 | resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.5.19.tgz#a98b62f86dcaf4f67399648c085291ab9e8fed61" 1488 | integrity sha512-Wonm7zOCIJzBGQdB+thsPar0kYuCIzYvxZwlBa87yi/Mdjv7Tip2cyVbLj5o0cFPN4EVkuTwb3GDDyUx2DGnGw== 1489 | dependencies: 1490 | buffer-from "^1.0.0" 1491 | source-map "^0.6.0" 1492 | 1493 | source-map@^0.6.0: 1494 | version "0.6.1" 1495 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.6.1.tgz#74722af32e9614e9c287a8d0bbde48b5e2f1a263" 1496 | integrity sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g== 1497 | 1498 | spdx-correct@^3.0.0: 1499 | version "3.1.1" 1500 | resolved "https://registry.yarnpkg.com/spdx-correct/-/spdx-correct-3.1.1.tgz#dece81ac9c1e6713e5f7d1b6f17d468fa53d89a9" 1501 | integrity sha512-cOYcUWwhCuHCXi49RhFRCyJEK3iPj1Ziz9DpViV3tbZOwXD49QzIN3MpOLJNxh2qwq2lJJZaKMVw9qNi4jTC0w== 1502 | dependencies: 1503 | spdx-expression-parse "^3.0.0" 1504 | spdx-license-ids "^3.0.0" 1505 | 1506 | spdx-exceptions@^2.1.0: 1507 | version "2.3.0" 1508 | resolved "https://registry.yarnpkg.com/spdx-exceptions/-/spdx-exceptions-2.3.0.tgz#3f28ce1a77a00372683eade4a433183527a2163d" 1509 | integrity sha512-/tTrYOC7PPI1nUAgx34hUpqXuyJG+DTHJTnIULG4rDygi4xu/tfgmq1e1cIRwRzwZgo4NLySi+ricLkZkw4i5A== 1510 | 1511 | spdx-expression-parse@^3.0.0: 1512 | version "3.0.1" 1513 | resolved "https://registry.yarnpkg.com/spdx-expression-parse/-/spdx-expression-parse-3.0.1.tgz#cf70f50482eefdc98e3ce0a6833e4a53ceeba679" 1514 | integrity sha512-cbqHunsQWnJNE6KhVSMsMeH5H/L9EpymbzqTQ3uLwNCLZ1Q481oWaofqH7nO6V07xlXwY6PhQdQ2IedWx/ZK4Q== 1515 | dependencies: 1516 | spdx-exceptions "^2.1.0" 1517 | spdx-license-ids "^3.0.0" 1518 | 1519 | spdx-license-ids@^3.0.0: 1520 | version "3.0.5" 1521 | resolved "https://registry.yarnpkg.com/spdx-license-ids/-/spdx-license-ids-3.0.5.tgz#3694b5804567a458d3c8045842a6358632f62654" 1522 | integrity sha512-J+FWzZoynJEXGphVIS+XEh3kFSjZX/1i9gFBaWQcB+/tmpe2qUsSBABpcxqxnAxFdiUFEgAX1bjYGQvIZmoz9Q== 1523 | 1524 | sprintf-js@~1.0.2: 1525 | version "1.0.3" 1526 | resolved "https://registry.yarnpkg.com/sprintf-js/-/sprintf-js-1.0.3.tgz#04e6926f662895354f3dd015203633b857297e2c" 1527 | integrity sha1-BOaSb2YolTVPPdAVIDYzuFcpfiw= 1528 | 1529 | string-width@^3.0.0: 1530 | version "3.1.0" 1531 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-3.1.0.tgz#22767be21b62af1081574306f69ac51b62203961" 1532 | integrity sha512-vafcv6KjVZKSgz06oM/H6GDBrAtz8vdhQakGjFIvNrHA6y3HCF1CInLy+QLq8dTJPQ1b+KDUqDFctkdRW44e1w== 1533 | dependencies: 1534 | emoji-regex "^7.0.1" 1535 | is-fullwidth-code-point "^2.0.0" 1536 | strip-ansi "^5.1.0" 1537 | 1538 | string-width@^4.1.0: 1539 | version "4.2.0" 1540 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-4.2.0.tgz#952182c46cc7b2c313d1596e623992bd163b72b5" 1541 | integrity sha512-zUz5JD+tgqtuDjMhwIg5uFVV3dtqZ9yQJlZVfq4I01/K5Paj5UHj7VyrQOJvzawSVlKpObApbfD0Ed6yJc+1eg== 1542 | dependencies: 1543 | emoji-regex "^8.0.0" 1544 | is-fullwidth-code-point "^3.0.0" 1545 | strip-ansi "^6.0.0" 1546 | 1547 | string.prototype.trimend@^1.0.0: 1548 | version "1.0.1" 1549 | resolved "https://registry.yarnpkg.com/string.prototype.trimend/-/string.prototype.trimend-1.0.1.tgz#85812a6b847ac002270f5808146064c995fb6913" 1550 | integrity sha512-LRPxFUaTtpqYsTeNKaFOw3R4bxIzWOnbQ837QfBylo8jIxtcbK/A/sMV7Q+OAV/vWo+7s25pOE10KYSjaSO06g== 1551 | dependencies: 1552 | define-properties "^1.1.3" 1553 | es-abstract "^1.17.5" 1554 | 1555 | string.prototype.trimleft@^2.1.1: 1556 | version "2.1.2" 1557 | resolved "https://registry.yarnpkg.com/string.prototype.trimleft/-/string.prototype.trimleft-2.1.2.tgz#4408aa2e5d6ddd0c9a80739b087fbc067c03b3cc" 1558 | integrity sha512-gCA0tza1JBvqr3bfAIFJGqfdRTyPae82+KTnm3coDXkZN9wnuW3HjGgN386D7hfv5CHQYCI022/rJPVlqXyHSw== 1559 | dependencies: 1560 | define-properties "^1.1.3" 1561 | es-abstract "^1.17.5" 1562 | string.prototype.trimstart "^1.0.0" 1563 | 1564 | string.prototype.trimright@^2.1.1: 1565 | version "2.1.2" 1566 | resolved "https://registry.yarnpkg.com/string.prototype.trimright/-/string.prototype.trimright-2.1.2.tgz#c76f1cef30f21bbad8afeb8db1511496cfb0f2a3" 1567 | integrity sha512-ZNRQ7sY3KroTaYjRS6EbNiiHrOkjihL9aQE/8gfQ4DtAC/aEBRHFJa44OmoWxGGqXuJlfKkZW4WcXErGr+9ZFg== 1568 | dependencies: 1569 | define-properties "^1.1.3" 1570 | es-abstract "^1.17.5" 1571 | string.prototype.trimend "^1.0.0" 1572 | 1573 | string.prototype.trimstart@^1.0.0: 1574 | version "1.0.1" 1575 | resolved "https://registry.yarnpkg.com/string.prototype.trimstart/-/string.prototype.trimstart-1.0.1.tgz#14af6d9f34b053f7cfc89b72f8f2ee14b9039a54" 1576 | integrity sha512-XxZn+QpvrBI1FOcg6dIpxUPgWCPuNXvMD72aaRaUQv1eD4e/Qy8i/hFTe0BUmD60p/QA6bh1avmuPTfNjqVWRw== 1577 | dependencies: 1578 | define-properties "^1.1.3" 1579 | es-abstract "^1.17.5" 1580 | 1581 | strip-ansi@^5.1.0, strip-ansi@^5.2.0: 1582 | version "5.2.0" 1583 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-5.2.0.tgz#8c9a536feb6afc962bdfa5b104a5091c1ad9c0ae" 1584 | integrity sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA== 1585 | dependencies: 1586 | ansi-regex "^4.1.0" 1587 | 1588 | strip-ansi@^6.0.0: 1589 | version "6.0.0" 1590 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-6.0.0.tgz#0b1571dd7669ccd4f3e06e14ef1eed26225ae532" 1591 | integrity sha512-AuvKTrTfQNYNIctbR1K/YGTR1756GycPsg7b9bdV9Duqur4gv6aKqHXah67Z8ImS7WEz5QVcOtlfW2rZEugt6w== 1592 | dependencies: 1593 | ansi-regex "^5.0.0" 1594 | 1595 | strip-bom@^2.0.0: 1596 | version "2.0.0" 1597 | resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-2.0.0.tgz#6219a85616520491f35788bdbf1447a99c7e6b0e" 1598 | integrity sha1-YhmoVhZSBJHzV4i9vxRHqZx+aw4= 1599 | dependencies: 1600 | is-utf8 "^0.2.0" 1601 | 1602 | strip-bom@^3.0.0: 1603 | version "3.0.0" 1604 | resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-3.0.0.tgz#2334c18e9c759f7bdd56fdef7e9ae3d588e68ed3" 1605 | integrity sha1-IzTBjpx1n3vdVv3vfprj1YjmjtM= 1606 | 1607 | strip-indent@^1.0.1: 1608 | version "1.0.1" 1609 | resolved "https://registry.yarnpkg.com/strip-indent/-/strip-indent-1.0.1.tgz#0c7962a6adefa7bbd4ac366460a638552ae1a0a2" 1610 | integrity sha1-DHlipq3vp7vUrDZkYKY4VSrhoKI= 1611 | dependencies: 1612 | get-stdin "^4.0.1" 1613 | 1614 | strip-json-comments@^2.0.0: 1615 | version "2.0.1" 1616 | resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-2.0.1.tgz#3c531942e908c2697c0ec344858c286c7ca0a60a" 1617 | integrity sha1-PFMZQukIwml8DsNEhYwobHygpgo= 1618 | 1619 | strip-json-comments@^3.0.1: 1620 | version "3.1.0" 1621 | resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-3.1.0.tgz#7638d31422129ecf4457440009fba03f9f9ac180" 1622 | integrity sha512-e6/d0eBu7gHtdCqFt0xJr642LdToM5/cN4Qb9DbHjVx1CP5RyeM+zH7pbecEmDv/lBqb0QH+6Uqq75rxFPkM0w== 1623 | 1624 | supports-color@^5.3.0: 1625 | version "5.5.0" 1626 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-5.5.0.tgz#e2e69a44ac8772f78a1ec0b35b689df6530efc8f" 1627 | integrity sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow== 1628 | dependencies: 1629 | has-flag "^3.0.0" 1630 | 1631 | supports-color@^7.1.0: 1632 | version "7.1.0" 1633 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-7.1.0.tgz#68e32591df73e25ad1c4b49108a2ec507962bfd1" 1634 | integrity sha512-oRSIpR8pxT1Wr2FquTNnGet79b3BWljqOuoW/h4oBhxJ/HUbX5nX6JSruTkvXDCFMwDPvsaTTbvMLKZWSy0R5g== 1635 | dependencies: 1636 | has-flag "^4.0.0" 1637 | 1638 | table@^5.2.3: 1639 | version "5.4.6" 1640 | resolved "https://registry.yarnpkg.com/table/-/table-5.4.6.tgz#1292d19500ce3f86053b05f0e8e7e4a3bb21079e" 1641 | integrity sha512-wmEc8m4fjnob4gt5riFRtTu/6+4rSe12TpAELNSqHMfF3IqnA+CH37USM6/YR3qRZv7e56kAEAtd6nKZaxe0Ug== 1642 | dependencies: 1643 | ajv "^6.10.2" 1644 | lodash "^4.17.14" 1645 | slice-ansi "^2.1.0" 1646 | string-width "^3.0.0" 1647 | 1648 | text-table@^0.2.0: 1649 | version "0.2.0" 1650 | resolved "https://registry.yarnpkg.com/text-table/-/text-table-0.2.0.tgz#7f5ee823ae805207c00af2df4a84ec3fcfa570b4" 1651 | integrity sha1-f17oI66AUgfACvLfSoTsP8+lcLQ= 1652 | 1653 | through@^2.3.6: 1654 | version "2.3.8" 1655 | resolved "https://registry.yarnpkg.com/through/-/through-2.3.8.tgz#0dd4c9ffaabc357960b1b724115d7e0e86a2e1f5" 1656 | integrity sha1-DdTJ/6q8NXlgsbckEV1+Doai4fU= 1657 | 1658 | tiny-glob@^0.2.6: 1659 | version "0.2.6" 1660 | resolved "https://registry.yarnpkg.com/tiny-glob/-/tiny-glob-0.2.6.tgz#9e056e169d9788fe8a734dfa1ff02e9b92ed7eda" 1661 | integrity sha512-A7ewMqPu1B5PWwC3m7KVgAu96Ch5LA0w4SnEN/LbDREj/gAD0nPWboRbn8YoP9ISZXqeNAlMvKSKoEuhcfK3Pw== 1662 | dependencies: 1663 | globalyzer "^0.1.0" 1664 | globrex "^0.1.1" 1665 | 1666 | tmp@^0.0.33: 1667 | version "0.0.33" 1668 | resolved "https://registry.yarnpkg.com/tmp/-/tmp-0.0.33.tgz#6d34335889768d21b2bcda0aa277ced3b1bfadf9" 1669 | integrity sha512-jRCJlojKnZ3addtTOjdIqoRuPEKBvNXcGYqzO6zWZX8KfKEpnGY5jfggJQ3EjKuu8D4bJRr0y+cYJFmYbImXGw== 1670 | dependencies: 1671 | os-tmpdir "~1.0.2" 1672 | 1673 | tree-kill@^1.2.1: 1674 | version "1.2.2" 1675 | resolved "https://registry.yarnpkg.com/tree-kill/-/tree-kill-1.2.2.tgz#4ca09a9092c88b73a7cdc5e8a01b507b0790a0cc" 1676 | integrity sha512-L0Orpi8qGpRG//Nd+H90vFB+3iHnue1zSSGmNOOCh1GLJ7rUKVwV2HvijphGQS2UmhUZewS9VgvxYIdgr+fG1A== 1677 | 1678 | trim-newlines@^1.0.0: 1679 | version "1.0.0" 1680 | resolved "https://registry.yarnpkg.com/trim-newlines/-/trim-newlines-1.0.0.tgz#5887966bb582a4503a41eb524f7d35011815a613" 1681 | integrity sha1-WIeWa7WCpFA6QetST301ARgVphM= 1682 | 1683 | ts-node-dev@^1.0.0-pre.44: 1684 | version "1.0.0-pre.44" 1685 | resolved "https://registry.yarnpkg.com/ts-node-dev/-/ts-node-dev-1.0.0-pre.44.tgz#2f4d666088481fb9c4e4f5bc8f15995bd8b06ecb" 1686 | integrity sha512-M5ZwvB6FU3jtc70i5lFth86/6Qj5XR5nMMBwVxZF4cZhpO7XcbWw6tbNiJo22Zx0KfjEj9py5DANhwLOkPPufw== 1687 | dependencies: 1688 | dateformat "~1.0.4-1.2.3" 1689 | dynamic-dedupe "^0.3.0" 1690 | filewatcher "~3.0.0" 1691 | minimist "^1.1.3" 1692 | mkdirp "^0.5.1" 1693 | node-notifier "^5.4.0" 1694 | resolve "^1.0.0" 1695 | rimraf "^2.6.1" 1696 | source-map-support "^0.5.12" 1697 | tree-kill "^1.2.1" 1698 | ts-node "*" 1699 | tsconfig "^7.0.0" 1700 | 1701 | ts-node@*: 1702 | version "8.10.2" 1703 | resolved "https://registry.yarnpkg.com/ts-node/-/ts-node-8.10.2.tgz#eee03764633b1234ddd37f8db9ec10b75ec7fb8d" 1704 | integrity sha512-ISJJGgkIpDdBhWVu3jufsWpK3Rzo7bdiIXJjQc0ynKxVOVcg2oIrf2H2cejminGrptVc6q6/uynAHNCuWGbpVA== 1705 | dependencies: 1706 | arg "^4.1.0" 1707 | diff "^4.0.1" 1708 | make-error "^1.1.1" 1709 | source-map-support "^0.5.17" 1710 | yn "3.1.1" 1711 | 1712 | tsconfig-paths@^3.9.0: 1713 | version "3.9.0" 1714 | resolved "https://registry.yarnpkg.com/tsconfig-paths/-/tsconfig-paths-3.9.0.tgz#098547a6c4448807e8fcb8eae081064ee9a3c90b" 1715 | integrity sha512-dRcuzokWhajtZWkQsDVKbWyY+jgcLC5sqJhg2PSgf4ZkH2aHPvaOY8YWGhmjb68b5qqTfasSsDO9k7RUiEmZAw== 1716 | dependencies: 1717 | "@types/json5" "^0.0.29" 1718 | json5 "^1.0.1" 1719 | minimist "^1.2.0" 1720 | strip-bom "^3.0.0" 1721 | 1722 | tsconfig@^7.0.0: 1723 | version "7.0.0" 1724 | resolved "https://registry.yarnpkg.com/tsconfig/-/tsconfig-7.0.0.tgz#84538875a4dc216e5c4a5432b3a4dec3d54e91b7" 1725 | integrity sha512-vZXmzPrL+EmC4T/4rVlT2jNVMWCi/O4DIiSj3UHg1OE5kCKbk4mfrXc6dZksLgRM/TZlKnousKH9bbTazUWRRw== 1726 | dependencies: 1727 | "@types/strip-bom" "^3.0.0" 1728 | "@types/strip-json-comments" "0.0.30" 1729 | strip-bom "^3.0.0" 1730 | strip-json-comments "^2.0.0" 1731 | 1732 | tslib@^1.8.1, tslib@^1.9.0: 1733 | version "1.13.0" 1734 | resolved "https://registry.yarnpkg.com/tslib/-/tslib-1.13.0.tgz#c881e13cc7015894ed914862d276436fa9a47043" 1735 | integrity sha512-i/6DQjL8Xf3be4K/E6Wgpekn5Qasl1usyw++dAA35Ue5orEn65VIxOA+YvNNl9HV3qv70T7CNwjODHZrLwvd1Q== 1736 | 1737 | tsutils@^3.17.1: 1738 | version "3.17.1" 1739 | resolved "https://registry.yarnpkg.com/tsutils/-/tsutils-3.17.1.tgz#ed719917f11ca0dee586272b2ac49e015a2dd759" 1740 | integrity sha512-kzeQ5B8H3w60nFY2g8cJIuH7JDpsALXySGtwGJ0p2LSjLgay3NdIpqq5SoOBe46bKDW2iq25irHCr8wjomUS2g== 1741 | dependencies: 1742 | tslib "^1.8.1" 1743 | 1744 | type-check@~0.3.2: 1745 | version "0.3.2" 1746 | resolved "https://registry.yarnpkg.com/type-check/-/type-check-0.3.2.tgz#5884cab512cf1d355e3fb784f30804b2b520db72" 1747 | integrity sha1-WITKtRLPHTVeP7eE8wgEsrUg23I= 1748 | dependencies: 1749 | prelude-ls "~1.1.2" 1750 | 1751 | type-fest@^0.11.0: 1752 | version "0.11.0" 1753 | resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-0.11.0.tgz#97abf0872310fed88a5c466b25681576145e33f1" 1754 | integrity sha512-OdjXJxnCN1AvyLSzeKIgXTXxV+99ZuXl3Hpo9XpJAv9MBcHrrJOQ5kV7ypXOuQie+AmWG25hLbiKdwYTifzcfQ== 1755 | 1756 | type-fest@^0.8.1: 1757 | version "0.8.1" 1758 | resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-0.8.1.tgz#09e249ebde851d3b1e48d27c105444667f17b83d" 1759 | integrity sha512-4dbzIzqvjtgiM5rw1k5rEHtBANKmdudhGyBEajN01fEyhaAIhsoKNy6y7+IN93IfpFtwY9iqi7kD+xwKhQsNJA== 1760 | 1761 | typescript@^3.8.3: 1762 | version "3.9.5" 1763 | resolved "https://registry.yarnpkg.com/typescript/-/typescript-3.9.5.tgz#586f0dba300cde8be52dd1ac4f7e1009c1b13f36" 1764 | integrity sha512-hSAifV3k+i6lEoCJ2k6R2Z/rp/H3+8sdmcn5NrS3/3kE7+RyZXm9aqvxWqjEXHAd8b0pShatpcdMTvEdvAJltQ== 1765 | 1766 | uri-js@^4.2.2: 1767 | version "4.2.2" 1768 | resolved "https://registry.yarnpkg.com/uri-js/-/uri-js-4.2.2.tgz#94c540e1ff772956e2299507c010aea6c8838eb0" 1769 | integrity sha512-KY9Frmirql91X2Qgjry0Wd4Y+YTdrdZheS8TFwvkbLWf/G5KNJDCh6pKL5OZctEW4+0Baa5idK2ZQuELRwPznQ== 1770 | dependencies: 1771 | punycode "^2.1.0" 1772 | 1773 | v8-compile-cache@^2.0.3: 1774 | version "2.1.1" 1775 | resolved "https://registry.yarnpkg.com/v8-compile-cache/-/v8-compile-cache-2.1.1.tgz#54bc3cdd43317bca91e35dcaf305b1a7237de745" 1776 | integrity sha512-8OQ9CL+VWyt3JStj7HX7/ciTL2V3Rl1Wf5OL+SNTm0yK1KvtReVulksyeRnCANHHuUxHlQig+JJDlUhBt1NQDQ== 1777 | 1778 | validate-npm-package-license@^3.0.1: 1779 | version "3.0.4" 1780 | resolved "https://registry.yarnpkg.com/validate-npm-package-license/-/validate-npm-package-license-3.0.4.tgz#fc91f6b9c7ba15c857f4cb2c5defeec39d4f410a" 1781 | integrity sha512-DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew== 1782 | dependencies: 1783 | spdx-correct "^3.0.0" 1784 | spdx-expression-parse "^3.0.0" 1785 | 1786 | which@^1.2.9, which@^1.3.0: 1787 | version "1.3.1" 1788 | resolved "https://registry.yarnpkg.com/which/-/which-1.3.1.tgz#a45043d54f5805316da8d62f9f50918d3da70b0a" 1789 | integrity sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ== 1790 | dependencies: 1791 | isexe "^2.0.0" 1792 | 1793 | word-wrap@~1.2.3: 1794 | version "1.2.3" 1795 | resolved "https://registry.yarnpkg.com/word-wrap/-/word-wrap-1.2.3.tgz#610636f6b1f703891bd34771ccb17fb93b47079c" 1796 | integrity sha512-Hz/mrNwitNRh/HUAtM/VT/5VH+ygD6DV7mYKZAtHOrbs8U7lvPS6xf7EJKMF0uW1KJCl0H701g3ZGus+muE5vQ== 1797 | 1798 | wrappy@1: 1799 | version "1.0.2" 1800 | resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f" 1801 | integrity sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8= 1802 | 1803 | write@1.0.3: 1804 | version "1.0.3" 1805 | resolved "https://registry.yarnpkg.com/write/-/write-1.0.3.tgz#0800e14523b923a387e415123c865616aae0f5c3" 1806 | integrity sha512-/lg70HAjtkUgWPVZhZcm+T4hkL8Zbtp1nFNOn3lRrxnlv50SRBv7cR7RqR+GMsd3hUXy9hWBo4CHTbFTcOYwig== 1807 | dependencies: 1808 | mkdirp "^0.5.1" 1809 | 1810 | xtend@^4.0.0: 1811 | version "4.0.2" 1812 | resolved "https://registry.yarnpkg.com/xtend/-/xtend-4.0.2.tgz#bb72779f5fa465186b1f438f674fa347fdb5db54" 1813 | integrity sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ== 1814 | 1815 | yn@3.1.1: 1816 | version "3.1.1" 1817 | resolved "https://registry.yarnpkg.com/yn/-/yn-3.1.1.tgz#1e87401a09d767c1d5eab26a6e4c185182d2eb50" 1818 | integrity sha512-Ux4ygGWsu2c7isFWe8Yu1YluJmqVhxqK2cLXNQA5AcC3QfbGNpM7fu0Y8b/z16pXLnFxZYvWhd3fhBY9DLmC6Q== 1819 | --------------------------------------------------------------------------------