├── .github ├── FUNDING.yml ├── ISSUE_TEMPLATE │ └── bug_report.md ├── stale.yml └── workflows │ └── main.yml ├── .gitignore ├── .npmignore ├── LICENSE ├── README.md ├── example ├── .expo-shared │ └── assets.json ├── .gitignore ├── App.tsx ├── app.json ├── assets │ ├── favicon.png │ ├── icon.png │ └── splash.png ├── babel.config.js ├── metro.config.js ├── package.json ├── src │ └── Home.tsx ├── tsconfig.json ├── webpack.config.js └── yarn.lock ├── package.json ├── src ├── hook │ ├── context.ts │ ├── provider.tsx │ └── useToast.ts ├── index.ts ├── toast-container.tsx ├── toast.tsx └── utils │ └── useDimensions.ts ├── tsconfig.json └── yarn.lock /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: # Replace with up to 4 GitHub Sponsors-enabled usernames e.g., [user1, user2] 2 | patreon: 3 | open_collective: 4 | ko_fi: # Replace with a single Ko-fi username 5 | tidelift: # Replace with a single Tidelift platform-name/package-name e.g., npm/babel 6 | community_bridge: # Replace with a single Community Bridge project-name e.g., cloud-foundry 7 | liberapay: # Replace with a single Liberapay username 8 | issuehunt: # Replace with a single IssueHunt username 9 | otechie: # Replace with a single Otechie username 10 | custom: ['buymeacoffee.com/arnnis'] 11 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: Bug report 3 | about: 4 | Please search the existing issues and read the documentation before opening 5 | an issue. 6 | title: "" 7 | labels: bug 8 | assignees: "" 9 | --- 10 | 11 | 12 | 13 | ### Current behaviour 14 | 15 | 16 | 17 | ### Expected behaviour 18 | 19 | 20 | 21 | ### Code sample 22 | 23 | For Syntax Highlighting check this [link](https://help.github.com/en/articles/creating-and-highlighting-code-blocks) 24 | 25 | 26 | 27 | ### Screenshots (if applicable) 28 | 29 | 30 | 31 | ### What have you tried 32 | 33 | 34 | 35 | ### Your Environment 36 | 37 | | software | version | 38 | | -------------------------------- | ------- | 39 | | ios or android | 40 | | react-native | 41 | | react-native-toast-notifications | 42 | | node | 43 | | npm or yarn | 44 | -------------------------------------------------------------------------------- /.github/stale.yml: -------------------------------------------------------------------------------- 1 | # Configuration for probot-stale - https://github.com/probot/stale 2 | 3 | # Number of days of inactivity before an Issue or Pull Request becomes stale 4 | daysUntilStale: 60 5 | 6 | # Number of days of inactivity before an Issue or Pull Request with the stale label is closed. 7 | # Set to false to disable. If disabled, issues still need to be closed manually, but will remain marked as stale. 8 | daysUntilClose: 7 9 | 10 | # Only issues or pull requests with all of these labels are check if stale. Defaults to `[]` (disabled) 11 | onlyLabels: [] 12 | 13 | # Issues or Pull Requests with these labels will never be considered stale. Set to `[]` to disable 14 | exemptLabels: 15 | - pinned 16 | - security 17 | - "[Status] Maybe Later" 18 | 19 | # Set to true to ignore issues in a project (defaults to false) 20 | exemptProjects: false 21 | 22 | # Set to true to ignore issues in a milestone (defaults to false) 23 | exemptMilestones: false 24 | 25 | # Set to true to ignore issues with an assignee (defaults to false) 26 | exemptAssignees: false 27 | 28 | # Label to use when marking as stale 29 | staleLabel: stale 30 | 31 | # Comment to post when marking as stale. Set to `false` to disable 32 | markComment: > 33 | This issue has been automatically marked as stale because it has not had 34 | recent activity. It will be closed if no further activity occurs. Thank you 35 | for your contributions. 36 | 37 | # Comment to post when removing the stale label. 38 | # unmarkComment: > 39 | # Your comment here. 40 | 41 | # Comment to post when closing a stale Issue or Pull Request. 42 | # closeComment: > 43 | # Your comment here. 44 | 45 | # Limit the number of actions per hour, from 1-30. Default is 30 46 | limitPerRun: 30 47 | 48 | # Limit to only `issues` or `pulls` 49 | # only: issues 50 | 51 | # Optionally, specify configuration settings that are specific to just 'issues' or 'pulls': 52 | # pulls: 53 | # daysUntilStale: 30 54 | # markComment: > 55 | # This pull request has been automatically marked as stale because it has not had 56 | # recent activity. It will be closed if no further activity occurs. Thank you 57 | # for your contributions. 58 | 59 | # issues: 60 | # exemptLabels: 61 | # - confirmed 62 | -------------------------------------------------------------------------------- /.github/workflows/main.yml: -------------------------------------------------------------------------------- 1 | name: CI 2 | 3 | on: 4 | workflow_dispatch: 5 | push: 6 | tags: 7 | - "v*.*.*" 8 | 9 | jobs: 10 | build: 11 | runs-on: ubuntu-latest 12 | 13 | steps: 14 | - uses: actions/checkout@v2 15 | 16 | - name: Setup Node.js 12 17 | uses: actions/setup-node@v1 18 | with: 19 | node-version: 12.x 20 | 21 | - name: node_modules Cache 22 | uses: actions/cache@v1 23 | with: 24 | path: ~/.cache/yarn 25 | key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }} 26 | restore-keys: | 27 | ${{ runner.os }}-yarn- 28 | - name: Setup Expo 29 | uses: expo/expo-github-action@v6 30 | with: 31 | expo-version: 4.x 32 | expo-cache: true 33 | token: ${{ secrets.EXPO_TOKEN }} 34 | - name: Install dependencies 35 | run: yarn install 36 | 37 | - name: Build web 38 | run: cd example && yarn && expo build:web 39 | 40 | - name: Deploy to github pages 41 | if: success() 42 | uses: crazy-max/ghaction-github-pages@v1 43 | with: 44 | target_branch: gh-pages 45 | build_dir: example/web-build 46 | env: 47 | GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} 48 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | lib/ -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | example/ 2 | .github/ 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2020 Alireza Rezania 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # react-native-toast-notifications 2 | 3 | [![Version][version-badge]][package] 4 | [![MIT License][license-badge]][license] 5 | 6 | Toast component for React Native, supports Android, IOS and Web 7 | 8 | ## Features 9 | 10 | - Fully Customizable 11 | - Swipe to close support 12 | - Smooth animation 13 | - Fully typed with TypeScript 14 | 15 | ## Demo 16 | 17 | ![](https://user-images.githubusercontent.com/61647712/124135853-72742d80-da99-11eb-95f8-893281862e96.gif) 18 | 19 | [react-native-web Demo](https://arnnis.github.io/react-native-toast-notifications/) 20 | 21 | ## Install 22 | 23 | Open a Terminal in the project root and run: 24 | 25 | ```sh 26 | yarn add react-native-toast-notifications 27 | ``` 28 | 29 | ## Usage 30 | 31 | Wrap your app in the `ToastProvider`, which provides context for the Toast hook. 32 | 33 | ```js 34 | import { ToastProvider } from 'react-native-toast-notifications' 35 | 36 | export default function App() { 37 | return ( 38 | 39 | 40 | 41 | ); 42 | } 43 | ``` 44 | 45 | Then use hook like this everywhere in your app: 46 | 47 | ```js 48 | import { useToast } from "react-native-toast-notifications"; 49 | 50 | const Component = () => { 51 | const toast = useToast(); 52 | 53 | useEffect(() => { 54 | toast.show("Hello World"); 55 | }, []); 56 | }; 57 | ``` 58 | 59 | ## Methods 60 | 61 | ### show() 62 | 63 | ```js 64 | toast.show("Task finished successfully", { 65 | type: "normal | success | warning | danger | custom", 66 | placement: "top | bottom", 67 | duration: 4000, 68 | offset: 30, 69 | animationType: "slide-in | zoom-in", 70 | }); 71 | ``` 72 | 73 | ### update() 74 | 75 | ```js 76 | let id = toast.show("Loading..."); 77 | toast.update(id, "Loading completed", {type: "success"}); 78 | ``` 79 | 80 | ### hide() 81 | 82 | ```js 83 | let id = toast.show("Loading..."); 84 | toast.hide(id); 85 | // or 86 | toast.hideAll(); 87 | ``` 88 | 89 | ## Customization 90 | 91 | ### `ToastProvider` props 92 | 93 | There are lots of props to customize your toast or your can use renderToast to implement your own component. 94 | 95 | ```js 96 | } 107 | successIcon={} 108 | dangerIcon={} 109 | warningIcon={} 110 | textStyle={{ fontSize: 20 }} 111 | offset={50} // offset for both top and bottom toasts 112 | offsetTop={30} 113 | offsetBottom={40} 114 | swipeEnabled={true} 115 | renderToast={(toastOptions) => JSX.Element} implement custom toast component. 116 | > 117 | ... 118 | 119 | ``` 120 | 121 | ### Custom toast types 122 | 123 | You can implement your own custom types or overwrite the existing ones 124 | 125 | ```js 126 | ( 129 | 130 | {toast.message} 131 | 132 | ) 133 | }} 134 | > 135 | ... 136 | 137 | 138 | // You can pass other data to your custom toast using data property in show method. 139 | toast.show("Show custom toast", {data: { title: 'Toast title' }}) 140 | ``` 141 | 142 | ## FAQ 143 | 144 | ### - How to call toast outside React components? 145 | 146 | To call toasts everywhere (even outside of React components like in redux actions), After you wrapped your app in `ToastProvider`, You can use the `Toast` import to call toasts everywhre. 147 | 148 | ```js 149 | import {Toast} from "react-native-toast-notifications"; 150 | 151 | // you can call this everywhere 152 | Toast.show('toast message') 153 | ``` 154 | 155 | 156 | ### - How to show toast inside a Modal? 157 | 158 | The Modal component is a native view that sits on top of the rest of react-native application. The only way to put something above it is to put something in the modal itself, or alternately to use a JS only implementation of a Modal. 159 | 160 | As a workaround you can put toast inside modal like this: 161 | 162 | ``` 163 | import Toast from "react-native-toast-notifications"; 164 | 165 | export Component = () => { 166 | const toastRef = useRef(); 167 | return ( 168 | 169 | ..... 170 | 171 | 172 | 173 | } 174 | ``` 175 | 176 | ## Contributing 177 | 178 | Pull request are welcome. 179 | 180 | While developing, you can run the [example app](/example) to test your changes. 181 | 182 | ## Donation 183 | 184 | If this project helped you reduce time to develop, you can buy me a cup of coffee :) 185 | 186 | Buy Me A Coffee 187 | 188 | ## Hire 189 | 190 | Looking for a React/React-Native Expert? Email at alirezarzna@gmail.com 191 | 192 | ## License 193 | 194 | MIT 195 | 196 | [version-badge]: https://img.shields.io/npm/v/react-native-toast-notifications.svg?style=flat-square 197 | [package]: https://www.npmjs.com/package/react-native-toast-notifications 198 | [license-badge]: https://img.shields.io/static/v1?label=License&message=MIT&color=success&style=flat-square 199 | [license]: https://github.com/arnnis/react-native-toast-notifications/blob/master/LICENSE 200 | -------------------------------------------------------------------------------- /example/.expo-shared/assets.json: -------------------------------------------------------------------------------- 1 | { 2 | "12bb71342c6255bbf50437ec8f4441c083f47cdb74bd89160c15e4f43e52a1cb": true, 3 | "40b842e832070c58deac6aa9e08fa459302ee3f9da492c7e77d93d2fbf4a56fd": true 4 | } 5 | -------------------------------------------------------------------------------- /example/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/**/* 2 | .expo/* 3 | npm-debug.* 4 | yarn-error.log 5 | *.jks 6 | *.p8 7 | *.p12 8 | *.key 9 | *.mobileprovision 10 | *.orig.* 11 | web-build/ 12 | 13 | # macOS 14 | .DS_Store 15 | -------------------------------------------------------------------------------- /example/App.tsx: -------------------------------------------------------------------------------- 1 | import React from "react"; 2 | import { StyleSheet, View, Text, TouchableOpacity } from "react-native"; 3 | import { ToastProvider, } from "react-native-toast-notifications"; 4 | import { MaterialCommunityIcons } from "@expo/vector-icons"; 5 | import Home from "./src/Home"; 6 | 7 | export default function App() { 8 | return ( 9 | } 12 | successIcon={} 13 | offset={10} 14 | // Custom type example 15 | renderType={{ 16 | custom_toast: (toast) => ( 17 | 31 | 38 | {toast.data.title} 39 | 40 | {toast.message} 41 | 42 | ), 43 | with_close_button: (toast) => ( 44 | 58 | {toast.message} 59 | toast.onHide()} 61 | style={{ 62 | marginLeft: "auto", 63 | width: 25, 64 | height: 25, 65 | borderRadius: 5, 66 | backgroundColor: "#333", 67 | justifyContent: "center", 68 | alignItems: "center", 69 | }} 70 | > 71 | 72 | x 73 | 74 | 75 | 76 | ), 77 | }} 78 | > 79 | 80 | 81 | ); 82 | } 83 | 84 | export const styles = StyleSheet.create({ 85 | container: { 86 | flex: 1, 87 | backgroundColor: "#eee", 88 | alignItems: "center", 89 | justifyContent: "center", 90 | }, 91 | test: { 92 | fontSize: 16, 93 | marginTop: 10, 94 | }, 95 | }); 96 | -------------------------------------------------------------------------------- /example/app.json: -------------------------------------------------------------------------------- 1 | { 2 | "expo": { 3 | "name": "example", 4 | "slug": "example", 5 | "version": "1.0.0", 6 | "icon": "./assets/icon.png", 7 | "splash": { 8 | "image": "./assets/splash.png", 9 | "resizeMode": "contain", 10 | "backgroundColor": "#ffffff" 11 | }, 12 | "updates": { 13 | "fallbackToCacheTimeout": 0 14 | }, 15 | "assetBundlePatterns": ["**/*"], 16 | "ios": { 17 | "supportsTablet": true 18 | }, 19 | "web": { 20 | "favicon": "./assets/favicon.png" 21 | } 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /example/assets/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnnis/react-native-toast-notifications/e0ed48e1098359d933c84c9c6dbaafe13810ea68/example/assets/favicon.png -------------------------------------------------------------------------------- /example/assets/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnnis/react-native-toast-notifications/e0ed48e1098359d933c84c9c6dbaafe13810ea68/example/assets/icon.png -------------------------------------------------------------------------------- /example/assets/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnnis/react-native-toast-notifications/e0ed48e1098359d933c84c9c6dbaafe13810ea68/example/assets/splash.png -------------------------------------------------------------------------------- /example/babel.config.js: -------------------------------------------------------------------------------- 1 | module.exports = function(api) { 2 | api.cache(true); 3 | return { 4 | presets: ['babel-preset-expo'], 5 | }; 6 | }; 7 | -------------------------------------------------------------------------------- /example/metro.config.js: -------------------------------------------------------------------------------- 1 | // Config code borrowed from react-native-tab-view 2 | const path = require('path'); 3 | const fs = require('fs'); 4 | const blacklist = require('metro-config/src/defaults/exclusionList'); 5 | const escape = require('escape-string-regexp'); 6 | 7 | const root = path.resolve(__dirname, '..'); 8 | const pak = JSON.parse( 9 | fs.readFileSync(path.join(root, 'package.json'), 'utf8') 10 | ); 11 | 12 | const modules = [ 13 | '@babel/runtime', 14 | '@expo/vector-icons', 15 | ...Object.keys({ 16 | ...pak.dependencies, 17 | ...pak.peerDependencies, 18 | }), 19 | ]; 20 | 21 | module.exports = { 22 | projectRoot: __dirname, 23 | watchFolders: [root], 24 | 25 | resolver: { 26 | blacklistRE: blacklist([ 27 | new RegExp(`^${escape(path.join(root, 'node_modules'))}\\/.*$`), 28 | ]), 29 | 30 | extraNodeModules: modules.reduce((acc, name) => { 31 | acc[name] = path.join(__dirname, 'node_modules', name); 32 | return acc; 33 | }, {}), 34 | }, 35 | 36 | transformer: { 37 | getTransformOptions: async () => ({ 38 | transform: { 39 | experimentalImportSupport: false, 40 | inlineRequires: true, 41 | }, 42 | }), 43 | }, 44 | }; -------------------------------------------------------------------------------- /example/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "main": "node_modules/expo/AppEntry.js", 3 | "homepage": "https://arnnis.github.io/react-native-toast-notifications", 4 | "scripts": { 5 | "start": "expo start", 6 | "android": "expo start --android", 7 | "ios": "expo start --ios", 8 | "web": "expo start --web", 9 | "eject": "expo eject" 10 | }, 11 | "dependencies": { 12 | "expo": "^49.0.0", 13 | "expo-status-bar": "~1.6.0", 14 | "react": "18.2.0", 15 | "react-dom": "18.2.0", 16 | "react-native": "0.72.1", 17 | "react-native-toast-notifications": "^3.4.0", 18 | "react-native-web": "~0.19.6" 19 | }, 20 | "devDependencies": { 21 | "@babel/core": "^7.20.0", 22 | "@expo/webpack-config": "^18.1.1", 23 | "@types/node": "^14.6.4", 24 | "@types/react": "~18.2.14", 25 | "@types/react-native": "~0.63.2", 26 | "typescript": "^5.1.3" 27 | }, 28 | "private": true 29 | } 30 | -------------------------------------------------------------------------------- /example/src/Home.tsx: -------------------------------------------------------------------------------- 1 | import { StatusBar } from "expo-status-bar"; 2 | import React, { useRef } from "react"; 3 | import { StyleSheet, Text, View, TextInput } from "react-native"; 4 | 5 | import { useToast, Toast} from "react-native-toast-notifications"; 6 | 7 | const Home = () => { 8 | const toast = useToast(); 9 | const inputRef = useRef(null); 10 | 11 | return ( 12 | 13 | 14 | toast.show("This is a toast!", { duration: 10000 })} 16 | style={styles.test} 17 | > 18 | Normal 19 | 20 | 22 | toast.show("This is a success toast!", { 23 | type: "success", 24 | }) 25 | } 26 | style={styles.test} 27 | > 28 | Success 29 | 30 | 32 | toast.show("This is a danger toast!", { 33 | type: "danger", 34 | }) 35 | } 36 | style={styles.test} 37 | > 38 | Danger 39 | 40 | 42 | toast.show("This is a warning toast!", { 43 | type: "warning", 44 | }) 45 | } 46 | style={styles.test} 47 | > 48 | Warning 49 | 50 | 52 | toast.show( 53 | "This is a customized toast! you can implement your own", 54 | { 55 | type: "custom_toast", 56 | animationDuration: 100, 57 | data: { 58 | title: "Customized toast", 59 | }, 60 | } 61 | ) 62 | } 63 | style={styles.test} 64 | > 65 | Custom type 66 | 67 | 69 | toast.show("This is a customized toast with close button!", { 70 | type: "with_close_button", 71 | animationDuration: 100, 72 | }) 73 | } 74 | style={styles.test} 75 | > 76 | Custom type 2 77 | 78 | { 80 | toast.show("This toast should render on top", { 81 | placement: "top", 82 | }); 83 | }} 84 | style={[styles.test, { marginTop: 30 }]} 85 | > 86 | Placement top 87 | 88 | { 90 | toast.show("This toast should render on center", { 91 | placement: "center", 92 | }); 93 | }} 94 | style={[styles.test]} 95 | > 96 | Placement center 97 | 98 | { 100 | toast?.show("This toast have zoom-in animation", { 101 | placement: "bottom", 102 | animationType: "zoom-in", 103 | }); 104 | }} 105 | style={[styles.test]} 106 | > 107 | Zoom in animation type 108 | 109 | { 111 | let id = toast.show("This toast will update", {}); 112 | setTimeout(() => { 113 | if (id) { 114 | toast.update(id, "Toast updated", { 115 | type: "success", 116 | }); 117 | } 118 | }, 1000); 119 | }} 120 | style={styles.test} 121 | > 122 | Update a Toast 123 | 124 | 125 | { 127 | Toast.show("Global toast call") 128 | }} 129 | style={[styles.test]} 130 | > 131 | Global toast call 132 | 133 | 134 | { 136 | toast.show("Toast 1"); 137 | toast.show("Toast 2"); 138 | }} 139 | style={[styles.test, { marginTop: 30 }]} 140 | > 141 | Two toast at same time 142 | 143 | 144 | { 146 | toast.show("Press to close", { 147 | duration: 10000, 148 | onPress: (id) => { 149 | toast.hide(id); 150 | }, 151 | }); 152 | }} 153 | style={[styles.test]} 154 | > 155 | Toast onPress & close on press 156 | 157 | { 159 | inputRef.current?.focus(); 160 | toast.show("Hi!", { swipeEnabled: false }); 161 | }} 162 | style={[styles.test, { marginBottom: 30 }]} 163 | > 164 | Swipe to close disabled 165 | 166 | 171 | 172 | { 174 | inputRef.current?.focus(); 175 | toast.show("Hi!"); 176 | }} 177 | style={[styles.test]} 178 | > 179 | Toast avoids keyboard 180 | 181 | { 183 | inputRef.current?.focus(); 184 | toast.show("Logs to console on close", { 185 | onClose: () => console.log("Toast closed!"), 186 | }); 187 | }} 188 | style={[styles.test]} 189 | > 190 | onClose event 191 | 192 | { 194 | toast.hideAll(); 195 | }} 196 | style={[styles.test]} 197 | > 198 | Hide all open toasts 199 | 200 | 201 | ); 202 | }; 203 | const styles = StyleSheet.create({ 204 | container: { 205 | flex: 1, 206 | backgroundColor: "#eee", 207 | alignItems: "center", 208 | justifyContent: "center", 209 | }, 210 | test: { 211 | fontSize: 16, 212 | marginTop: 10, 213 | }, 214 | }); 215 | 216 | export default Home; 217 | -------------------------------------------------------------------------------- /example/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "compilerOptions": { 3 | "allowSyntheticDefaultImports": true, 4 | "jsx": "react-native", 5 | "lib": [ 6 | "dom", 7 | "esnext" 8 | ], 9 | "moduleResolution": "node", 10 | "noEmit": true, 11 | "skipLibCheck": true, 12 | "resolveJsonModule": true, 13 | "strict": true 14 | }, 15 | "extends": "expo/tsconfig.base" 16 | } 17 | -------------------------------------------------------------------------------- /example/webpack.config.js: -------------------------------------------------------------------------------- 1 | // Config code borrowed from react-native-tab-view 2 | const path = require("path"); 3 | const createExpoWebpackConfigAsync = require("@expo/webpack-config"); 4 | const { resolver } = require("./metro.config"); 5 | 6 | const root = path.resolve(__dirname, ".."); 7 | const node_modules = path.join(__dirname, "node_modules"); 8 | const packageName = require('../package.json').name; 9 | 10 | module.exports = async function (env, argv) { 11 | const config = await createExpoWebpackConfigAsync(env, argv); 12 | 13 | config.module.rules.push({ 14 | test: /\.(js|ts|tsx)$/, 15 | include: path.resolve(root, "src"), 16 | use: "babel-loader", 17 | }); 18 | 19 | // We need to make sure that only one version is loaded for peerDependencies 20 | // So we alias them to the versions in example's node_modules 21 | Object.assign(config.resolve.alias, { 22 | ...resolver.extraNodeModules, 23 | "react-native-web": path.join(node_modules, "react-native-web"), 24 | [packageName]: path.resolve('../src/index'), 25 | }); 26 | 27 | return config; 28 | }; -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "react-native-toast-notifications", 3 | "version": "3.4.0", 4 | "main": "lib/commonjs/index.js", 5 | "module": "lib/module/index.js", 6 | "types": "lib/typescript/index.d.ts", 7 | "react-native": "src/index.ts", 8 | "files": [ 9 | "src", 10 | "lib" 11 | ], 12 | "license": "MIT", 13 | "author": { 14 | "name": "Alireza Rezania", 15 | "email": "alireza.rzna@gmail.com" 16 | }, 17 | "homepage": "https://github.com/arnnis/react-native-toast-notifications#readme", 18 | "peerDependencies": { 19 | "react": "*", 20 | "react-native": "*" 21 | }, 22 | "devDependencies": { 23 | "@react-native-community/bob": "^0.16.2", 24 | "@types/react": "^16.9.49", 25 | "@types/react-native": "^0.63.52", 26 | "typescript": "^4.0.3" 27 | }, 28 | "scripts": { 29 | "prepare": "bob build" 30 | }, 31 | "keywords": [ 32 | "react-native-component", 33 | "react-component", 34 | "react-native", 35 | "ios", 36 | "android", 37 | "windows", 38 | "toast", 39 | "animated", 40 | "animation", 41 | "message" 42 | ], 43 | "@react-native-community/bob": { 44 | "source": "src", 45 | "output": "lib", 46 | "targets": [ 47 | [ 48 | "commonjs", 49 | { 50 | "copyFlow": true 51 | } 52 | ], 53 | "module", 54 | "typescript" 55 | ] 56 | } 57 | } 58 | -------------------------------------------------------------------------------- /src/hook/context.ts: -------------------------------------------------------------------------------- 1 | import React from "react"; 2 | import ToastContainer from "../toast-container"; 3 | 4 | export type ToastType = Pick< 5 | ToastContainer, 6 | "show" | "update" | "hide" | "hideAll" | "isOpen" 7 | >; 8 | 9 | const ToastContext = React.createContext({} as ToastType); 10 | 11 | export default ToastContext; 12 | -------------------------------------------------------------------------------- /src/hook/provider.tsx: -------------------------------------------------------------------------------- 1 | import React, { FC, useEffect, useRef, useState } from "react"; 2 | import ToastContext, { ToastType } from "./context"; 3 | import Toast, { Props } from "../toast-container"; 4 | 5 | type PropsWithChildren = Props & { 6 | children: React.ReactNode; 7 | } 8 | 9 | export let GlobalToast: ToastType 10 | 11 | const ToastProvider: FC = ({ children, ...props }) => { 12 | const toastRef = useRef(null); 13 | const [refState, setRefState] = useState({}); 14 | 15 | useEffect(() => { 16 | setRefState(toastRef.current as any); 17 | GlobalToast = toastRef.current as any 18 | }, []); 19 | 20 | return ( 21 | 22 | {children} 23 | 24 | 25 | ); 26 | }; 27 | 28 | export default ToastProvider; 29 | -------------------------------------------------------------------------------- /src/hook/useToast.ts: -------------------------------------------------------------------------------- 1 | import { useContext } from "react"; 2 | import ToastContext, { ToastType } from "./context"; 3 | 4 | const useToast = (): ToastType => useContext(ToastContext); 5 | 6 | export default useToast; 7 | -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from "./toast-container"; 2 | export { default as ToastProvider } from "./hook/provider"; 3 | export { default as useToast } from "./hook/useToast"; 4 | export type { ToastType } from "./hook/context"; 5 | export type { ToastOptions } from "./toast"; 6 | export {GlobalToast as Toast} from './hook/provider' 7 | -------------------------------------------------------------------------------- /src/toast-container.tsx: -------------------------------------------------------------------------------- 1 | import React, { Component } from "react"; 2 | import { 3 | StyleSheet, 4 | ViewStyle, 5 | KeyboardAvoidingView, 6 | Platform, 7 | Dimensions, SafeAreaView, 8 | } from "react-native"; 9 | import Toast, { ToastOptions, ToastProps } from "./toast"; 10 | 11 | const { height, width } = Dimensions.get("window"); 12 | 13 | export interface Props extends ToastOptions { 14 | renderToast?(toast: ToastProps): JSX.Element; 15 | renderType?: { [type: string]: (toast: ToastProps) => JSX.Element }; 16 | offset?: number; 17 | offsetTop?: number; 18 | offsetBottom?: number; 19 | swipeEnabled?: boolean; 20 | } 21 | 22 | interface State { 23 | toasts: Array; 24 | } 25 | 26 | class ToastContainer extends Component { 27 | constructor(props: Props) { 28 | super(props); 29 | this.state = { 30 | toasts: [], 31 | }; 32 | } 33 | 34 | static defaultProps: Props = { 35 | placement: "bottom", 36 | offset: 10, 37 | swipeEnabled: true, 38 | }; 39 | 40 | /** 41 | * Shows a new toast. Returns id 42 | */ 43 | show = (message: string | JSX.Element, toastOptions?: ToastOptions) => { 44 | let id = toastOptions?.id || Math.random().toString(); 45 | const onDestroy = () => { 46 | toastOptions?.onClose && toastOptions?.onClose(); 47 | this.setState({ toasts: this.state.toasts.filter((t) => t.id !== id) }); 48 | }; 49 | 50 | requestAnimationFrame(() => { 51 | this.setState({ 52 | toasts: [ 53 | { 54 | id, 55 | onDestroy, 56 | message, 57 | open: true, 58 | onHide: () => this.hide(id), 59 | ...this.props, 60 | ...toastOptions, 61 | }, 62 | ...this.state.toasts.filter((t) => t.open), 63 | ], 64 | }); 65 | }); 66 | 67 | return id; 68 | }; 69 | 70 | /** 71 | * Updates a toast, To use this create you must pass an id to show method first, then pass it here to update the toast. 72 | */ 73 | update = ( 74 | id: string, 75 | message: string | JSX.Element, 76 | toastOptions?: ToastOptions 77 | ) => { 78 | this.setState({ 79 | toasts: this.state.toasts.map((toast) => 80 | toast.id === id ? { ...toast, message, ...toastOptions } : toast 81 | ), 82 | }); 83 | }; 84 | 85 | /** 86 | * Removes a toast from stack 87 | */ 88 | hide = (id: string) => { 89 | this.setState({ 90 | toasts: this.state.toasts.map((t) => 91 | t.id === id ? { ...t, open: false } : t 92 | ), 93 | }); 94 | }; 95 | 96 | /** 97 | * Removes all toasts in stack 98 | */ 99 | hideAll = () => { 100 | this.setState({ 101 | toasts: this.state.toasts.map((t) => ({ ...t, open: false })), 102 | }); 103 | }; 104 | 105 | /** 106 | * Check if a toast is currently open 107 | */ 108 | isOpen = (id: string) => { 109 | return this.state.toasts.some((t) => t.id === id && t.open); 110 | } 111 | 112 | renderBottomToasts() { 113 | const { toasts } = this.state; 114 | let { offset, offsetBottom } = this.props; 115 | let style: ViewStyle = { 116 | bottom: offsetBottom || offset, 117 | width: width, 118 | justifyContent: "flex-end", 119 | flexDirection: "column", 120 | }; 121 | return ( 122 | 127 | 128 | {toasts 129 | .filter((t) => !t.placement || t.placement === "bottom") 130 | .map((toast) => ( 131 | 132 | ))} 133 | 134 | 135 | ); 136 | } 137 | 138 | renderTopToasts() { 139 | const { toasts } = this.state; 140 | let { offset, offsetTop } = this.props; 141 | let style: ViewStyle = { 142 | top: offsetTop || offset, 143 | width: width, 144 | justifyContent: "flex-start", 145 | flexDirection: "column-reverse", 146 | }; 147 | return ( 148 | 153 | 154 | {toasts 155 | .filter((t) => t.placement === "top") 156 | .map((toast) => ( 157 | 158 | ))} 159 | 160 | 161 | ); 162 | } 163 | 164 | renderCenterToasts() { 165 | const { toasts } = this.state; 166 | let { offset, offsetTop } = this.props; 167 | let style: ViewStyle = { 168 | top: offsetTop || offset, 169 | height: height, 170 | width: width, 171 | justifyContent: "center", 172 | flexDirection: "column-reverse", 173 | }; 174 | 175 | const data = toasts.filter((t) => t.placement === "center"); 176 | const foundToast = data.length > 0; 177 | 178 | if (!foundToast) return null; 179 | 180 | return ( 181 | 186 | {toasts 187 | .filter((t) => t.placement === "center") 188 | .map((toast) => ( 189 | 190 | ))} 191 | 192 | ); 193 | } 194 | 195 | render() { 196 | return ( 197 | <> 198 | {this.renderTopToasts()} 199 | {this.renderBottomToasts()} 200 | {this.renderCenterToasts()} 201 | 202 | ); 203 | } 204 | } 205 | 206 | const styles = StyleSheet.create({ 207 | container: { 208 | flex: 0, 209 | // @ts-ignore: fixed is available on web. 210 | position: Platform.OS === "web" ? "fixed" : "absolute", 211 | maxWidth: "100%", 212 | zIndex: 999999, 213 | elevation: 999999, 214 | alignSelf: 'center', 215 | ...(Platform.OS === "web" ? { overflow: "hidden", userSelect: 'none' } : null), 216 | }, 217 | message: { 218 | color: "#333", 219 | }, 220 | }); 221 | 222 | export default ToastContainer; 223 | -------------------------------------------------------------------------------- /src/toast.tsx: -------------------------------------------------------------------------------- 1 | import React, { FC, useRef, useEffect, useState } from "react"; 2 | import { 3 | View, 4 | StyleSheet, 5 | Animated, 6 | StyleProp, 7 | ViewStyle, 8 | TextStyle, 9 | Text, 10 | TouchableWithoutFeedback, 11 | PanResponder, 12 | PanResponderInstance, 13 | PanResponderGestureState, 14 | Platform, 15 | } from "react-native"; 16 | import { useDimensions } from "./utils/useDimensions"; 17 | 18 | export interface ToastOptions { 19 | /** 20 | * Id is optional, you may provide an id only if you want to update toast later using toast.update() 21 | */ 22 | id?: string; 23 | 24 | /** 25 | * Customize toast icon 26 | */ 27 | icon?: JSX.Element; 28 | 29 | /** 30 | * Toast types, You can implement your custom types with JSX using renderType method on ToastContainer. 31 | */ 32 | type?: "normal" | "success" | "danger" | "warning" | string; 33 | 34 | /** 35 | * In ms, How long toast will stay before it go away 36 | */ 37 | duration?: number; 38 | 39 | /** 40 | * Customize when toast should be placed 41 | */ 42 | placement?: "top" | "bottom" | "center"; 43 | 44 | /** 45 | * Customize style of toast 46 | */ 47 | style?: StyleProp; 48 | 49 | /** 50 | * Customize style of toast text 51 | */ 52 | textStyle?: StyleProp; 53 | 54 | /** 55 | * Customize how fast toast will show and hide 56 | */ 57 | animationDuration?: number; 58 | 59 | /** 60 | * Customize how toast is animated when added or removed 61 | */ 62 | animationType?: "slide-in" | "zoom-in"; 63 | 64 | /** 65 | * Customize success type icon 66 | */ 67 | successIcon?: JSX.Element; 68 | 69 | /** 70 | * Customize danger type icon 71 | */ 72 | dangerIcon?: JSX.Element; 73 | 74 | /** 75 | * Customize warning type icon 76 | */ 77 | warningIcon?: JSX.Element; 78 | 79 | /** 80 | * Customize success type color. changes toast background color 81 | */ 82 | successColor?: string; 83 | 84 | /** 85 | * Customize danger type color. changes toast background color 86 | */ 87 | dangerColor?: string; 88 | 89 | /** 90 | * Customize warning type color. changes toast background color 91 | */ 92 | warningColor?: string; 93 | 94 | /** 95 | * Customize normal type color. changes toast background color 96 | */ 97 | normalColor?: string; 98 | 99 | /** 100 | * Register event for when toast is pressed. If you're using a custom toast you have to pass this to a Touchable. 101 | */ 102 | onPress?(id: string): void; 103 | 104 | /** 105 | * Execute event after toast is closed 106 | */ 107 | onClose?(): void; 108 | 109 | /** 110 | * Payload data for custom toasts. You can pass whatever you want 111 | */ 112 | data?: any; 113 | 114 | swipeEnabled?: boolean; 115 | } 116 | 117 | export interface ToastProps extends ToastOptions { 118 | id: string; 119 | onDestroy(): void; 120 | message: string | JSX.Element; 121 | open: boolean; 122 | renderToast?(toast: ToastProps): JSX.Element; 123 | renderType?: { [type: string]: (toast: ToastProps) => JSX.Element }; 124 | onHide(): void; 125 | } 126 | 127 | const Toast: FC = (props) => { 128 | let { 129 | id, 130 | onDestroy, 131 | icon, 132 | type = "normal", 133 | message, 134 | duration = 5000, 135 | style, 136 | textStyle, 137 | animationDuration = 250, 138 | animationType = "slide-in", 139 | successIcon, 140 | dangerIcon, 141 | warningIcon, 142 | successColor, 143 | dangerColor, 144 | warningColor, 145 | normalColor, 146 | placement, 147 | swipeEnabled, 148 | onPress, 149 | } = props; 150 | 151 | const containerRef = useRef(null); 152 | const [animation] = useState(new Animated.Value(0)); 153 | const panResponderRef = useRef(); 154 | const panResponderAnimRef = useRef(); 155 | const closeTimeoutRef = useRef(null); 156 | const dims = useDimensions(); 157 | 158 | useEffect(() => { 159 | Animated.timing(animation, { 160 | toValue: 1, 161 | useNativeDriver: Platform.OS !== "web", 162 | duration: animationDuration, 163 | }).start(); 164 | if (duration !== 0 && typeof duration === "number") { 165 | closeTimeoutRef.current = setTimeout(() => { 166 | handleClose(); 167 | }, duration); 168 | } 169 | 170 | return () => { 171 | closeTimeoutRef.current && clearTimeout(closeTimeoutRef.current); 172 | }; 173 | }, [duration]); 174 | 175 | // Handles hide & hideAll 176 | useEffect(() => { 177 | if (!props.open) { 178 | // Unregister close timeout 179 | closeTimeoutRef.current && clearTimeout(closeTimeoutRef.current); 180 | 181 | // Close animation them remove from stack. 182 | handleClose(); 183 | } 184 | }, [props.open]); 185 | 186 | const handleClose = () => { 187 | Animated.timing(animation, { 188 | toValue: 0, 189 | useNativeDriver: Platform.OS !== "web", 190 | duration: animationDuration, 191 | }).start(() => onDestroy()); 192 | }; 193 | 194 | const panReleaseToLeft = (gestureState: PanResponderGestureState) => { 195 | Animated.timing(getPanResponderAnim(), { 196 | toValue: { x: (-dims.width / 10) * 9, y: gestureState.dy }, 197 | useNativeDriver: Platform.OS !== "web", 198 | duration: 250, 199 | }).start(() => onDestroy()); 200 | }; 201 | 202 | const panReleaseToRight = (gestureState: PanResponderGestureState) => { 203 | Animated.timing(getPanResponderAnim(), { 204 | toValue: { x: (dims.width / 10) * 9, y: gestureState.dy }, 205 | useNativeDriver: Platform.OS !== "web", 206 | duration: 250, 207 | }).start(() => onDestroy()); 208 | }; 209 | 210 | const getPanResponder = () => { 211 | if (panResponderRef.current) return panResponderRef.current; 212 | const swipeThreshold = Platform.OS === "android" ? 10 : 0; 213 | panResponderRef.current = PanResponder.create({ 214 | onMoveShouldSetPanResponder: (_, gestureState) => { 215 | //return true if user is swiping, return false if it's a single click 216 | return ( 217 | Math.abs(gestureState.dx) > swipeThreshold || 218 | Math.abs(gestureState.dy) > swipeThreshold 219 | ); 220 | }, 221 | onPanResponderMove: (_, gestureState) => { 222 | getPanResponderAnim()?.setValue({ 223 | x: gestureState.dx, 224 | y: gestureState.dy, 225 | }); 226 | }, 227 | onPanResponderRelease: (_, gestureState) => { 228 | if (gestureState.dx > 50) { 229 | panReleaseToRight(gestureState); 230 | } else if (gestureState.dx < -50) { 231 | panReleaseToLeft(gestureState); 232 | } else { 233 | Animated.spring(getPanResponderAnim(), { 234 | toValue: { x: 0, y: 0 }, 235 | useNativeDriver: Platform.OS !== "web", 236 | }).start(); 237 | } 238 | }, 239 | }); 240 | return panResponderRef.current; 241 | }; 242 | 243 | const getPanResponderAnim = () => { 244 | if (panResponderAnimRef.current) return panResponderAnimRef.current; 245 | panResponderAnimRef.current = new Animated.ValueXY({ x: 0, y: 0 }); 246 | return panResponderAnimRef.current; 247 | }; 248 | 249 | if (icon === undefined) { 250 | switch (type) { 251 | case "success": { 252 | if (successIcon) { 253 | icon = successIcon; 254 | } 255 | break; 256 | } 257 | 258 | case "danger": { 259 | if (dangerIcon) { 260 | icon = dangerIcon; 261 | } 262 | break; 263 | } 264 | case "warning": { 265 | if (warningIcon) { 266 | icon = warningIcon; 267 | } 268 | break; 269 | } 270 | } 271 | } 272 | 273 | let backgroundColor = ""; 274 | switch (type) { 275 | case "success": 276 | backgroundColor = successColor || "rgb(46, 125, 50)"; 277 | break; 278 | case "danger": 279 | backgroundColor = dangerColor || "rgb(211, 47, 47)"; 280 | break; 281 | case "warning": 282 | backgroundColor = warningColor || "rgb(237, 108, 2)"; 283 | break; 284 | default: 285 | backgroundColor = normalColor || "#333"; 286 | } 287 | 288 | const animationStyle: Animated.WithAnimatedObject = { 289 | opacity: animation, 290 | transform: [ 291 | { 292 | translateY: animation.interpolate({ 293 | inputRange: [0, 1], 294 | outputRange: placement === "bottom" ? [20, 0] : [-20, 0], // 0 : 150, 0.5 : 75, 1 : 0 295 | }), 296 | }, 297 | ], 298 | }; 299 | 300 | if (swipeEnabled) { 301 | animationStyle.transform?.push( 302 | getPanResponderAnim().getTranslateTransform()[0] 303 | ); 304 | } 305 | 306 | if (animationType === "zoom-in") { 307 | animationStyle.transform?.push({ 308 | scale: animation.interpolate({ 309 | inputRange: [0, 1], 310 | outputRange: [0.7, 1], 311 | }), 312 | }); 313 | } 314 | 315 | return ( 316 | 322 | {props.renderType && props.renderType[type] ? ( 323 | props.renderType[type](props) 324 | ) : props.renderToast ? ( 325 | props.renderToast(props) 326 | ) : ( 327 | onPress && onPress(id)} 330 | > 331 | 338 | {icon ? {icon} : null} 339 | {React.isValidElement(message) ? ( 340 | message 341 | ) : ( 342 | {message} 343 | )} 344 | 345 | 346 | )} 347 | 348 | ); 349 | }; 350 | 351 | const styles = StyleSheet.create({ 352 | container: { width: "100%", alignItems: "center" }, 353 | toastContainer: { 354 | paddingHorizontal: 12, 355 | paddingVertical: 12, 356 | borderRadius: 5, 357 | marginVertical: 5, 358 | flexDirection: "row", 359 | alignItems: "center", 360 | overflow: "hidden", 361 | }, 362 | message: { 363 | color: "#fff", 364 | fontWeight: "500", 365 | }, 366 | iconContainer: { 367 | marginRight: 5, 368 | }, 369 | }); 370 | 371 | export default Toast; 372 | -------------------------------------------------------------------------------- /src/utils/useDimensions.ts: -------------------------------------------------------------------------------- 1 | import { useEffect, useState } from "react"; 2 | import { Dimensions, ScaledSize } from "react-native"; 3 | 4 | export function useDimensions() { 5 | const [dimensions, setDimensions] = useState(Dimensions.get("window")); 6 | 7 | const onChange = ({ window }: { window: ScaledSize }) => { 8 | setDimensions(window); 9 | }; 10 | 11 | useEffect(() => { 12 | const subscription = Dimensions.addEventListener("change", onChange); 13 | 14 | return () => { 15 | // @ts-expect-error - React Native >= 0.65 16 | if (typeof subscription?.remove === "function") { 17 | // @ts-expect-error 18 | subscription.remove(); 19 | } else { 20 | // React Native < 0.65 21 | Dimensions.removeEventListener("change", onChange); 22 | } 23 | }; 24 | }, []); 25 | 26 | return dimensions; 27 | } 28 | -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "compilerOptions": { 3 | "baseUrl": ".", 4 | "allowUnreachableCode": false, 5 | "allowUnusedLabels": false, 6 | "esModuleInterop": true, 7 | "forceConsistentCasingInFileNames": true, 8 | "jsx": "react", 9 | "lib": ["esnext"], 10 | "module": "esnext", 11 | "moduleResolution": "node", 12 | "noFallthroughCasesInSwitch": true, 13 | "noImplicitReturns": true, 14 | "noImplicitUseStrict": false, 15 | "noStrictGenericChecks": false, 16 | "noUnusedLocals": true, 17 | "noUnusedParameters": true, 18 | "resolveJsonModule": true, 19 | "skipLibCheck": true, 20 | "strict": true, 21 | "target": "esnext", 22 | "isolatedModules": true, 23 | }, 24 | "include": ["src/**/*"] 25 | } -------------------------------------------------------------------------------- /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", "@babel/code-frame@^7.10.4": 6 | version "7.10.4" 7 | resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.10.4.tgz#168da1a36e90da68ae8d49c0f1b48c7c6249213a" 8 | integrity sha512-vG6SvB6oYEhvgisZNFRmRCUkLz11c7rp+tbNTynGqc6mS1d5ATd/sGyV6W0KZZnXRKMTzZDRgQT3Ou9jhpAfUg== 9 | dependencies: 10 | "@babel/highlight" "^7.10.4" 11 | 12 | "@babel/compat-data@^7.10.4", "@babel/compat-data@^7.11.0": 13 | version "7.11.0" 14 | resolved "https://registry.yarnpkg.com/@babel/compat-data/-/compat-data-7.11.0.tgz#e9f73efe09af1355b723a7f39b11bad637d7c99c" 15 | integrity sha512-TPSvJfv73ng0pfnEOh17bYMPQbI95+nGWc71Ss4vZdRBHTDqmM9Z8ZV4rYz8Ks7sfzc95n30k6ODIq5UGnXcYQ== 16 | dependencies: 17 | browserslist "^4.12.0" 18 | invariant "^2.2.4" 19 | semver "^5.5.0" 20 | 21 | "@babel/core@^7.10.2": 22 | version "7.11.6" 23 | resolved "https://registry.yarnpkg.com/@babel/core/-/core-7.11.6.tgz#3a9455dc7387ff1bac45770650bc13ba04a15651" 24 | integrity sha512-Wpcv03AGnmkgm6uS6k8iwhIwTrcP0m17TL1n1sy7qD0qelDu4XNeW0dN0mHfa+Gei211yDaLoEe/VlbXQzM4Bg== 25 | dependencies: 26 | "@babel/code-frame" "^7.10.4" 27 | "@babel/generator" "^7.11.6" 28 | "@babel/helper-module-transforms" "^7.11.0" 29 | "@babel/helpers" "^7.10.4" 30 | "@babel/parser" "^7.11.5" 31 | "@babel/template" "^7.10.4" 32 | "@babel/traverse" "^7.11.5" 33 | "@babel/types" "^7.11.5" 34 | convert-source-map "^1.7.0" 35 | debug "^4.1.0" 36 | gensync "^1.0.0-beta.1" 37 | json5 "^2.1.2" 38 | lodash "^4.17.19" 39 | resolve "^1.3.2" 40 | semver "^5.4.1" 41 | source-map "^0.5.0" 42 | 43 | "@babel/generator@^7.11.5", "@babel/generator@^7.11.6": 44 | version "7.11.6" 45 | resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.11.6.tgz#b868900f81b163b4d464ea24545c61cbac4dc620" 46 | integrity sha512-DWtQ1PV3r+cLbySoHrwn9RWEgKMBLLma4OBQloPRyDYvc5msJM9kvTLo1YnlJd1P/ZuKbdli3ijr5q3FvAF3uA== 47 | dependencies: 48 | "@babel/types" "^7.11.5" 49 | jsesc "^2.5.1" 50 | source-map "^0.5.0" 51 | 52 | "@babel/helper-annotate-as-pure@^7.10.4": 53 | version "7.10.4" 54 | resolved "https://registry.yarnpkg.com/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.10.4.tgz#5bf0d495a3f757ac3bda48b5bf3b3ba309c72ba3" 55 | integrity sha512-XQlqKQP4vXFB7BN8fEEerrmYvHp3fK/rBkRFz9jaJbzK0B1DSfej9Kc7ZzE8Z/OnId1jpJdNAZ3BFQjWG68rcA== 56 | dependencies: 57 | "@babel/types" "^7.10.4" 58 | 59 | "@babel/helper-builder-binary-assignment-operator-visitor@^7.10.4": 60 | version "7.10.4" 61 | resolved "https://registry.yarnpkg.com/@babel/helper-builder-binary-assignment-operator-visitor/-/helper-builder-binary-assignment-operator-visitor-7.10.4.tgz#bb0b75f31bf98cbf9ff143c1ae578b87274ae1a3" 62 | integrity sha512-L0zGlFrGWZK4PbT8AszSfLTM5sDU1+Az/En9VrdT8/LmEiJt4zXt+Jve9DCAnQcbqDhCI+29y/L93mrDzddCcg== 63 | dependencies: 64 | "@babel/helper-explode-assignable-expression" "^7.10.4" 65 | "@babel/types" "^7.10.4" 66 | 67 | "@babel/helper-builder-react-jsx-experimental@^7.10.4", "@babel/helper-builder-react-jsx-experimental@^7.11.5": 68 | version "7.11.5" 69 | resolved "https://registry.yarnpkg.com/@babel/helper-builder-react-jsx-experimental/-/helper-builder-react-jsx-experimental-7.11.5.tgz#4ea43dd63857b0a35cd1f1b161dc29b43414e79f" 70 | integrity sha512-Vc4aPJnRZKWfzeCBsqTBnzulVNjABVdahSPhtdMD3Vs80ykx4a87jTHtF/VR+alSrDmNvat7l13yrRHauGcHVw== 71 | dependencies: 72 | "@babel/helper-annotate-as-pure" "^7.10.4" 73 | "@babel/helper-module-imports" "^7.10.4" 74 | "@babel/types" "^7.11.5" 75 | 76 | "@babel/helper-builder-react-jsx@^7.10.4": 77 | version "7.10.4" 78 | resolved "https://registry.yarnpkg.com/@babel/helper-builder-react-jsx/-/helper-builder-react-jsx-7.10.4.tgz#8095cddbff858e6fa9c326daee54a2f2732c1d5d" 79 | integrity sha512-5nPcIZ7+KKDxT1427oBivl9V9YTal7qk0diccnh7RrcgrT/pGFOjgGw1dgryyx1GvHEpXVfoDF6Ak3rTiWh8Rg== 80 | dependencies: 81 | "@babel/helper-annotate-as-pure" "^7.10.4" 82 | "@babel/types" "^7.10.4" 83 | 84 | "@babel/helper-compilation-targets@^7.10.4": 85 | version "7.10.4" 86 | resolved "https://registry.yarnpkg.com/@babel/helper-compilation-targets/-/helper-compilation-targets-7.10.4.tgz#804ae8e3f04376607cc791b9d47d540276332bd2" 87 | integrity sha512-a3rYhlsGV0UHNDvrtOXBg8/OpfV0OKTkxKPzIplS1zpx7CygDcWWxckxZeDd3gzPzC4kUT0A4nVFDK0wGMh4MQ== 88 | dependencies: 89 | "@babel/compat-data" "^7.10.4" 90 | browserslist "^4.12.0" 91 | invariant "^2.2.4" 92 | levenary "^1.1.1" 93 | semver "^5.5.0" 94 | 95 | "@babel/helper-create-class-features-plugin@^7.10.4", "@babel/helper-create-class-features-plugin@^7.10.5": 96 | version "7.10.5" 97 | resolved "https://registry.yarnpkg.com/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.10.5.tgz#9f61446ba80e8240b0a5c85c6fdac8459d6f259d" 98 | integrity sha512-0nkdeijB7VlZoLT3r/mY3bUkw3T8WG/hNw+FATs/6+pG2039IJWjTYL0VTISqsNHMUTEnwbVnc89WIJX9Qed0A== 99 | dependencies: 100 | "@babel/helper-function-name" "^7.10.4" 101 | "@babel/helper-member-expression-to-functions" "^7.10.5" 102 | "@babel/helper-optimise-call-expression" "^7.10.4" 103 | "@babel/helper-plugin-utils" "^7.10.4" 104 | "@babel/helper-replace-supers" "^7.10.4" 105 | "@babel/helper-split-export-declaration" "^7.10.4" 106 | 107 | "@babel/helper-create-regexp-features-plugin@^7.10.4": 108 | version "7.10.4" 109 | resolved "https://registry.yarnpkg.com/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.10.4.tgz#fdd60d88524659a0b6959c0579925e425714f3b8" 110 | integrity sha512-2/hu58IEPKeoLF45DBwx3XFqsbCXmkdAay4spVr2x0jYgRxrSNp+ePwvSsy9g6YSaNDcKIQVPXk1Ov8S2edk2g== 111 | dependencies: 112 | "@babel/helper-annotate-as-pure" "^7.10.4" 113 | "@babel/helper-regex" "^7.10.4" 114 | regexpu-core "^4.7.0" 115 | 116 | "@babel/helper-define-map@^7.10.4": 117 | version "7.10.5" 118 | resolved "https://registry.yarnpkg.com/@babel/helper-define-map/-/helper-define-map-7.10.5.tgz#b53c10db78a640800152692b13393147acb9bb30" 119 | integrity sha512-fMw4kgFB720aQFXSVaXr79pjjcW5puTCM16+rECJ/plGS+zByelE8l9nCpV1GibxTnFVmUuYG9U8wYfQHdzOEQ== 120 | dependencies: 121 | "@babel/helper-function-name" "^7.10.4" 122 | "@babel/types" "^7.10.5" 123 | lodash "^4.17.19" 124 | 125 | "@babel/helper-explode-assignable-expression@^7.10.4": 126 | version "7.11.4" 127 | resolved "https://registry.yarnpkg.com/@babel/helper-explode-assignable-expression/-/helper-explode-assignable-expression-7.11.4.tgz#2d8e3470252cc17aba917ede7803d4a7a276a41b" 128 | integrity sha512-ux9hm3zR4WV1Y3xXxXkdG/0gxF9nvI0YVmKVhvK9AfMoaQkemL3sJpXw+Xbz65azo8qJiEz2XVDUpK3KYhH3ZQ== 129 | dependencies: 130 | "@babel/types" "^7.10.4" 131 | 132 | "@babel/helper-function-name@^7.10.4": 133 | version "7.10.4" 134 | resolved "https://registry.yarnpkg.com/@babel/helper-function-name/-/helper-function-name-7.10.4.tgz#d2d3b20c59ad8c47112fa7d2a94bc09d5ef82f1a" 135 | integrity sha512-YdaSyz1n8gY44EmN7x44zBn9zQ1Ry2Y+3GTA+3vH6Mizke1Vw0aWDM66FOYEPw8//qKkmqOckrGgTYa+6sceqQ== 136 | dependencies: 137 | "@babel/helper-get-function-arity" "^7.10.4" 138 | "@babel/template" "^7.10.4" 139 | "@babel/types" "^7.10.4" 140 | 141 | "@babel/helper-get-function-arity@^7.10.4": 142 | version "7.10.4" 143 | resolved "https://registry.yarnpkg.com/@babel/helper-get-function-arity/-/helper-get-function-arity-7.10.4.tgz#98c1cbea0e2332f33f9a4661b8ce1505b2c19ba2" 144 | integrity sha512-EkN3YDB+SRDgiIUnNgcmiD361ti+AVbL3f3Henf6dqqUyr5dMsorno0lJWJuLhDhkI5sYEpgj6y9kB8AOU1I2A== 145 | dependencies: 146 | "@babel/types" "^7.10.4" 147 | 148 | "@babel/helper-hoist-variables@^7.10.4": 149 | version "7.10.4" 150 | resolved "https://registry.yarnpkg.com/@babel/helper-hoist-variables/-/helper-hoist-variables-7.10.4.tgz#d49b001d1d5a68ca5e6604dda01a6297f7c9381e" 151 | integrity sha512-wljroF5PgCk2juF69kanHVs6vrLwIPNp6DLD+Lrl3hoQ3PpPPikaDRNFA+0t81NOoMt2DL6WW/mdU8k4k6ZzuA== 152 | dependencies: 153 | "@babel/types" "^7.10.4" 154 | 155 | "@babel/helper-member-expression-to-functions@^7.10.4", "@babel/helper-member-expression-to-functions@^7.10.5": 156 | version "7.11.0" 157 | resolved "https://registry.yarnpkg.com/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.11.0.tgz#ae69c83d84ee82f4b42f96e2a09410935a8f26df" 158 | integrity sha512-JbFlKHFntRV5qKw3YC0CvQnDZ4XMwgzzBbld7Ly4Mj4cbFy3KywcR8NtNctRToMWJOVvLINJv525Gd6wwVEx/Q== 159 | dependencies: 160 | "@babel/types" "^7.11.0" 161 | 162 | "@babel/helper-module-imports@^7.10.4": 163 | version "7.10.4" 164 | resolved "https://registry.yarnpkg.com/@babel/helper-module-imports/-/helper-module-imports-7.10.4.tgz#4c5c54be04bd31670a7382797d75b9fa2e5b5620" 165 | integrity sha512-nEQJHqYavI217oD9+s5MUBzk6x1IlvoS9WTPfgG43CbMEeStE0v+r+TucWdx8KFGowPGvyOkDT9+7DHedIDnVw== 166 | dependencies: 167 | "@babel/types" "^7.10.4" 168 | 169 | "@babel/helper-module-transforms@^7.10.4", "@babel/helper-module-transforms@^7.10.5", "@babel/helper-module-transforms@^7.11.0": 170 | version "7.11.0" 171 | resolved "https://registry.yarnpkg.com/@babel/helper-module-transforms/-/helper-module-transforms-7.11.0.tgz#b16f250229e47211abdd84b34b64737c2ab2d359" 172 | integrity sha512-02EVu8COMuTRO1TAzdMtpBPbe6aQ1w/8fePD2YgQmxZU4gpNWaL9gK3Jp7dxlkUlUCJOTaSeA+Hrm1BRQwqIhg== 173 | dependencies: 174 | "@babel/helper-module-imports" "^7.10.4" 175 | "@babel/helper-replace-supers" "^7.10.4" 176 | "@babel/helper-simple-access" "^7.10.4" 177 | "@babel/helper-split-export-declaration" "^7.11.0" 178 | "@babel/template" "^7.10.4" 179 | "@babel/types" "^7.11.0" 180 | lodash "^4.17.19" 181 | 182 | "@babel/helper-optimise-call-expression@^7.10.4": 183 | version "7.10.4" 184 | resolved "https://registry.yarnpkg.com/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.10.4.tgz#50dc96413d594f995a77905905b05893cd779673" 185 | integrity sha512-n3UGKY4VXwXThEiKrgRAoVPBMqeoPgHVqiHZOanAJCG9nQUL2pLRQirUzl0ioKclHGpGqRgIOkgcIJaIWLpygg== 186 | dependencies: 187 | "@babel/types" "^7.10.4" 188 | 189 | "@babel/helper-plugin-utils@^7.0.0", "@babel/helper-plugin-utils@^7.10.4", "@babel/helper-plugin-utils@^7.8.0", "@babel/helper-plugin-utils@^7.8.3": 190 | version "7.10.4" 191 | resolved "https://registry.yarnpkg.com/@babel/helper-plugin-utils/-/helper-plugin-utils-7.10.4.tgz#2f75a831269d4f677de49986dff59927533cf375" 192 | integrity sha512-O4KCvQA6lLiMU9l2eawBPMf1xPP8xPfB3iEQw150hOVTqj/rfXz0ThTb4HEzqQfs2Bmo5Ay8BzxfzVtBrr9dVg== 193 | 194 | "@babel/helper-regex@^7.10.4": 195 | version "7.10.5" 196 | resolved "https://registry.yarnpkg.com/@babel/helper-regex/-/helper-regex-7.10.5.tgz#32dfbb79899073c415557053a19bd055aae50ae0" 197 | integrity sha512-68kdUAzDrljqBrio7DYAEgCoJHxppJOERHOgOrDN7WjOzP0ZQ1LsSDRXcemzVZaLvjaJsJEESb6qt+znNuENDg== 198 | dependencies: 199 | lodash "^4.17.19" 200 | 201 | "@babel/helper-remap-async-to-generator@^7.10.4": 202 | version "7.11.4" 203 | resolved "https://registry.yarnpkg.com/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.11.4.tgz#4474ea9f7438f18575e30b0cac784045b402a12d" 204 | integrity sha512-tR5vJ/vBa9wFy3m5LLv2faapJLnDFxNWff2SAYkSE4rLUdbp7CdObYFgI7wK4T/Mj4UzpjPwzR8Pzmr5m7MHGA== 205 | dependencies: 206 | "@babel/helper-annotate-as-pure" "^7.10.4" 207 | "@babel/helper-wrap-function" "^7.10.4" 208 | "@babel/template" "^7.10.4" 209 | "@babel/types" "^7.10.4" 210 | 211 | "@babel/helper-replace-supers@^7.10.4": 212 | version "7.10.4" 213 | resolved "https://registry.yarnpkg.com/@babel/helper-replace-supers/-/helper-replace-supers-7.10.4.tgz#d585cd9388ea06e6031e4cd44b6713cbead9e6cf" 214 | integrity sha512-sPxZfFXocEymYTdVK1UNmFPBN+Hv5mJkLPsYWwGBxZAxaWfFu+xqp7b6qWD0yjNuNL2VKc6L5M18tOXUP7NU0A== 215 | dependencies: 216 | "@babel/helper-member-expression-to-functions" "^7.10.4" 217 | "@babel/helper-optimise-call-expression" "^7.10.4" 218 | "@babel/traverse" "^7.10.4" 219 | "@babel/types" "^7.10.4" 220 | 221 | "@babel/helper-simple-access@^7.10.4": 222 | version "7.10.4" 223 | resolved "https://registry.yarnpkg.com/@babel/helper-simple-access/-/helper-simple-access-7.10.4.tgz#0f5ccda2945277a2a7a2d3a821e15395edcf3461" 224 | integrity sha512-0fMy72ej/VEvF8ULmX6yb5MtHG4uH4Dbd6I/aHDb/JVg0bbivwt9Wg+h3uMvX+QSFtwr5MeItvazbrc4jtRAXw== 225 | dependencies: 226 | "@babel/template" "^7.10.4" 227 | "@babel/types" "^7.10.4" 228 | 229 | "@babel/helper-skip-transparent-expression-wrappers@^7.11.0": 230 | version "7.11.0" 231 | resolved "https://registry.yarnpkg.com/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.11.0.tgz#eec162f112c2f58d3af0af125e3bb57665146729" 232 | integrity sha512-0XIdiQln4Elglgjbwo9wuJpL/K7AGCY26kmEt0+pRP0TAj4jjyNq1MjoRvikrTVqKcx4Gysxt4cXvVFXP/JO2Q== 233 | dependencies: 234 | "@babel/types" "^7.11.0" 235 | 236 | "@babel/helper-split-export-declaration@^7.10.4", "@babel/helper-split-export-declaration@^7.11.0": 237 | version "7.11.0" 238 | resolved "https://registry.yarnpkg.com/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.11.0.tgz#f8a491244acf6a676158ac42072911ba83ad099f" 239 | integrity sha512-74Vejvp6mHkGE+m+k5vHY93FX2cAtrw1zXrZXRlG4l410Nm9PxfEiVTn1PjDPV5SnmieiueY4AFg2xqhNFuuZg== 240 | dependencies: 241 | "@babel/types" "^7.11.0" 242 | 243 | "@babel/helper-validator-identifier@^7.10.4": 244 | version "7.10.4" 245 | resolved "https://registry.yarnpkg.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.10.4.tgz#a78c7a7251e01f616512d31b10adcf52ada5e0d2" 246 | integrity sha512-3U9y+43hz7ZM+rzG24Qe2mufW5KhvFg/NhnNph+i9mgCtdTCtMJuI1TMkrIUiK7Ix4PYlRF9I5dhqaLYA/ADXw== 247 | 248 | "@babel/helper-wrap-function@^7.10.4": 249 | version "7.10.4" 250 | resolved "https://registry.yarnpkg.com/@babel/helper-wrap-function/-/helper-wrap-function-7.10.4.tgz#8a6f701eab0ff39f765b5a1cfef409990e624b87" 251 | integrity sha512-6py45WvEF0MhiLrdxtRjKjufwLL1/ob2qDJgg5JgNdojBAZSAKnAjkyOCNug6n+OBl4VW76XjvgSFTdaMcW0Ug== 252 | dependencies: 253 | "@babel/helper-function-name" "^7.10.4" 254 | "@babel/template" "^7.10.4" 255 | "@babel/traverse" "^7.10.4" 256 | "@babel/types" "^7.10.4" 257 | 258 | "@babel/helpers@^7.10.4": 259 | version "7.10.4" 260 | resolved "https://registry.yarnpkg.com/@babel/helpers/-/helpers-7.10.4.tgz#2abeb0d721aff7c0a97376b9e1f6f65d7a475044" 261 | integrity sha512-L2gX/XeUONeEbI78dXSrJzGdz4GQ+ZTA/aazfUsFaWjSe95kiCuOZ5HsXvkiw3iwF+mFHSRUfJU8t6YavocdXA== 262 | dependencies: 263 | "@babel/template" "^7.10.4" 264 | "@babel/traverse" "^7.10.4" 265 | "@babel/types" "^7.10.4" 266 | 267 | "@babel/highlight@^7.10.4": 268 | version "7.10.4" 269 | resolved "https://registry.yarnpkg.com/@babel/highlight/-/highlight-7.10.4.tgz#7d1bdfd65753538fabe6c38596cdb76d9ac60143" 270 | integrity sha512-i6rgnR/YgPEQzZZnbTHHuZdlE8qyoBNalD6F+q4vAFlcMEcqmkoG+mPqJYJCo63qPf74+Y1UZsl3l6f7/RIkmA== 271 | dependencies: 272 | "@babel/helper-validator-identifier" "^7.10.4" 273 | chalk "^2.0.0" 274 | js-tokens "^4.0.0" 275 | 276 | "@babel/parser@^7.10.4", "@babel/parser@^7.11.5": 277 | version "7.11.5" 278 | resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.11.5.tgz#c7ff6303df71080ec7a4f5b8c003c58f1cf51037" 279 | integrity sha512-X9rD8qqm695vgmeaQ4fvz/o3+Wk4ZzQvSHkDBgpYKxpD4qTAUm88ZKtHkVqIOsYFFbIQ6wQYhC6q7pjqVK0E0Q== 280 | 281 | "@babel/plugin-proposal-async-generator-functions@^7.10.4": 282 | version "7.10.5" 283 | resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-async-generator-functions/-/plugin-proposal-async-generator-functions-7.10.5.tgz#3491cabf2f7c179ab820606cec27fed15e0e8558" 284 | integrity sha512-cNMCVezQbrRGvXJwm9fu/1sJj9bHdGAgKodZdLqOQIpfoH3raqmRPBM17+lh7CzhiKRRBrGtZL9WcjxSoGYUSg== 285 | dependencies: 286 | "@babel/helper-plugin-utils" "^7.10.4" 287 | "@babel/helper-remap-async-to-generator" "^7.10.4" 288 | "@babel/plugin-syntax-async-generators" "^7.8.0" 289 | 290 | "@babel/plugin-proposal-class-properties@^7.10.1", "@babel/plugin-proposal-class-properties@^7.10.4": 291 | version "7.10.4" 292 | resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-class-properties/-/plugin-proposal-class-properties-7.10.4.tgz#a33bf632da390a59c7a8c570045d1115cd778807" 293 | integrity sha512-vhwkEROxzcHGNu2mzUC0OFFNXdZ4M23ib8aRRcJSsW8BZK9pQMD7QB7csl97NBbgGZO7ZyHUyKDnxzOaP4IrCg== 294 | dependencies: 295 | "@babel/helper-create-class-features-plugin" "^7.10.4" 296 | "@babel/helper-plugin-utils" "^7.10.4" 297 | 298 | "@babel/plugin-proposal-dynamic-import@^7.10.4": 299 | version "7.10.4" 300 | resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-dynamic-import/-/plugin-proposal-dynamic-import-7.10.4.tgz#ba57a26cb98b37741e9d5bca1b8b0ddf8291f17e" 301 | integrity sha512-up6oID1LeidOOASNXgv/CFbgBqTuKJ0cJjz6An5tWD+NVBNlp3VNSBxv2ZdU7SYl3NxJC7agAQDApZusV6uFwQ== 302 | dependencies: 303 | "@babel/helper-plugin-utils" "^7.10.4" 304 | "@babel/plugin-syntax-dynamic-import" "^7.8.0" 305 | 306 | "@babel/plugin-proposal-export-namespace-from@^7.10.4": 307 | version "7.10.4" 308 | resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-export-namespace-from/-/plugin-proposal-export-namespace-from-7.10.4.tgz#570d883b91031637b3e2958eea3c438e62c05f54" 309 | integrity sha512-aNdf0LY6/3WXkhh0Fdb6Zk9j1NMD8ovj3F6r0+3j837Pn1S1PdNtcwJ5EG9WkVPNHPxyJDaxMaAOVq4eki0qbg== 310 | dependencies: 311 | "@babel/helper-plugin-utils" "^7.10.4" 312 | "@babel/plugin-syntax-export-namespace-from" "^7.8.3" 313 | 314 | "@babel/plugin-proposal-json-strings@^7.10.4": 315 | version "7.10.4" 316 | resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-json-strings/-/plugin-proposal-json-strings-7.10.4.tgz#593e59c63528160233bd321b1aebe0820c2341db" 317 | integrity sha512-fCL7QF0Jo83uy1K0P2YXrfX11tj3lkpN7l4dMv9Y9VkowkhkQDwFHFd8IiwyK5MZjE8UpbgokkgtcReH88Abaw== 318 | dependencies: 319 | "@babel/helper-plugin-utils" "^7.10.4" 320 | "@babel/plugin-syntax-json-strings" "^7.8.0" 321 | 322 | "@babel/plugin-proposal-logical-assignment-operators@^7.11.0": 323 | version "7.11.0" 324 | resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-logical-assignment-operators/-/plugin-proposal-logical-assignment-operators-7.11.0.tgz#9f80e482c03083c87125dee10026b58527ea20c8" 325 | integrity sha512-/f8p4z+Auz0Uaf+i8Ekf1iM7wUNLcViFUGiPxKeXvxTSl63B875YPiVdUDdem7hREcI0E0kSpEhS8tF5RphK7Q== 326 | dependencies: 327 | "@babel/helper-plugin-utils" "^7.10.4" 328 | "@babel/plugin-syntax-logical-assignment-operators" "^7.10.4" 329 | 330 | "@babel/plugin-proposal-nullish-coalescing-operator@^7.10.4": 331 | version "7.10.4" 332 | resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-nullish-coalescing-operator/-/plugin-proposal-nullish-coalescing-operator-7.10.4.tgz#02a7e961fc32e6d5b2db0649e01bf80ddee7e04a" 333 | integrity sha512-wq5n1M3ZUlHl9sqT2ok1T2/MTt6AXE0e1Lz4WzWBr95LsAZ5qDXe4KnFuauYyEyLiohvXFMdbsOTMyLZs91Zlw== 334 | dependencies: 335 | "@babel/helper-plugin-utils" "^7.10.4" 336 | "@babel/plugin-syntax-nullish-coalescing-operator" "^7.8.0" 337 | 338 | "@babel/plugin-proposal-numeric-separator@^7.10.4": 339 | version "7.10.4" 340 | resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-numeric-separator/-/plugin-proposal-numeric-separator-7.10.4.tgz#ce1590ff0a65ad12970a609d78855e9a4c1aef06" 341 | integrity sha512-73/G7QoRoeNkLZFxsoCCvlg4ezE4eM+57PnOqgaPOozd5myfj7p0muD1mRVJvbUWbOzD+q3No2bWbaKy+DJ8DA== 342 | dependencies: 343 | "@babel/helper-plugin-utils" "^7.10.4" 344 | "@babel/plugin-syntax-numeric-separator" "^7.10.4" 345 | 346 | "@babel/plugin-proposal-object-rest-spread@^7.11.0": 347 | version "7.11.0" 348 | resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-object-rest-spread/-/plugin-proposal-object-rest-spread-7.11.0.tgz#bd81f95a1f746760ea43b6c2d3d62b11790ad0af" 349 | integrity sha512-wzch41N4yztwoRw0ak+37wxwJM2oiIiy6huGCoqkvSTA9acYWcPfn9Y4aJqmFFJ70KTJUu29f3DQ43uJ9HXzEA== 350 | dependencies: 351 | "@babel/helper-plugin-utils" "^7.10.4" 352 | "@babel/plugin-syntax-object-rest-spread" "^7.8.0" 353 | "@babel/plugin-transform-parameters" "^7.10.4" 354 | 355 | "@babel/plugin-proposal-optional-catch-binding@^7.10.4": 356 | version "7.10.4" 357 | resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-optional-catch-binding/-/plugin-proposal-optional-catch-binding-7.10.4.tgz#31c938309d24a78a49d68fdabffaa863758554dd" 358 | integrity sha512-LflT6nPh+GK2MnFiKDyLiqSqVHkQnVf7hdoAvyTnnKj9xB3docGRsdPuxp6qqqW19ifK3xgc9U5/FwrSaCNX5g== 359 | dependencies: 360 | "@babel/helper-plugin-utils" "^7.10.4" 361 | "@babel/plugin-syntax-optional-catch-binding" "^7.8.0" 362 | 363 | "@babel/plugin-proposal-optional-chaining@^7.11.0": 364 | version "7.11.0" 365 | resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-optional-chaining/-/plugin-proposal-optional-chaining-7.11.0.tgz#de5866d0646f6afdaab8a566382fe3a221755076" 366 | integrity sha512-v9fZIu3Y8562RRwhm1BbMRxtqZNFmFA2EG+pT2diuU8PT3H6T/KXoZ54KgYisfOFZHV6PfvAiBIZ9Rcz+/JCxA== 367 | dependencies: 368 | "@babel/helper-plugin-utils" "^7.10.4" 369 | "@babel/helper-skip-transparent-expression-wrappers" "^7.11.0" 370 | "@babel/plugin-syntax-optional-chaining" "^7.8.0" 371 | 372 | "@babel/plugin-proposal-private-methods@^7.10.4": 373 | version "7.10.4" 374 | resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-private-methods/-/plugin-proposal-private-methods-7.10.4.tgz#b160d972b8fdba5c7d111a145fc8c421fc2a6909" 375 | integrity sha512-wh5GJleuI8k3emgTg5KkJK6kHNsGEr0uBTDBuQUBJwckk9xs1ez79ioheEVVxMLyPscB0LfkbVHslQqIzWV6Bw== 376 | dependencies: 377 | "@babel/helper-create-class-features-plugin" "^7.10.4" 378 | "@babel/helper-plugin-utils" "^7.10.4" 379 | 380 | "@babel/plugin-proposal-unicode-property-regex@^7.10.4", "@babel/plugin-proposal-unicode-property-regex@^7.4.4": 381 | version "7.10.4" 382 | resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-unicode-property-regex/-/plugin-proposal-unicode-property-regex-7.10.4.tgz#4483cda53041ce3413b7fe2f00022665ddfaa75d" 383 | integrity sha512-H+3fOgPnEXFL9zGYtKQe4IDOPKYlZdF1kqFDQRRb8PK4B8af1vAGK04tF5iQAAsui+mHNBQSAtd2/ndEDe9wuA== 384 | dependencies: 385 | "@babel/helper-create-regexp-features-plugin" "^7.10.4" 386 | "@babel/helper-plugin-utils" "^7.10.4" 387 | 388 | "@babel/plugin-syntax-async-generators@^7.8.0": 389 | version "7.8.4" 390 | resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-async-generators/-/plugin-syntax-async-generators-7.8.4.tgz#a983fb1aeb2ec3f6ed042a210f640e90e786fe0d" 391 | integrity sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw== 392 | dependencies: 393 | "@babel/helper-plugin-utils" "^7.8.0" 394 | 395 | "@babel/plugin-syntax-class-properties@^7.10.4": 396 | version "7.10.4" 397 | resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-class-properties/-/plugin-syntax-class-properties-7.10.4.tgz#6644e6a0baa55a61f9e3231f6c9eeb6ee46c124c" 398 | integrity sha512-GCSBF7iUle6rNugfURwNmCGG3Z/2+opxAMLs1nND4bhEG5PuxTIggDBoeYYSujAlLtsupzOHYJQgPS3pivwXIA== 399 | dependencies: 400 | "@babel/helper-plugin-utils" "^7.10.4" 401 | 402 | "@babel/plugin-syntax-dynamic-import@^7.8.0": 403 | version "7.8.3" 404 | resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-dynamic-import/-/plugin-syntax-dynamic-import-7.8.3.tgz#62bf98b2da3cd21d626154fc96ee5b3cb68eacb3" 405 | integrity sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ== 406 | dependencies: 407 | "@babel/helper-plugin-utils" "^7.8.0" 408 | 409 | "@babel/plugin-syntax-export-namespace-from@^7.8.3": 410 | version "7.8.3" 411 | resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-export-namespace-from/-/plugin-syntax-export-namespace-from-7.8.3.tgz#028964a9ba80dbc094c915c487ad7c4e7a66465a" 412 | integrity sha512-MXf5laXo6c1IbEbegDmzGPwGNTsHZmEy6QGznu5Sh2UCWvueywb2ee+CCE4zQiZstxU9BMoQO9i6zUFSY0Kj0Q== 413 | dependencies: 414 | "@babel/helper-plugin-utils" "^7.8.3" 415 | 416 | "@babel/plugin-syntax-flow@^7.10.4": 417 | version "7.10.4" 418 | resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-flow/-/plugin-syntax-flow-7.10.4.tgz#53351dd7ae01995e567d04ce42af1a6e0ba846a6" 419 | integrity sha512-yxQsX1dJixF4qEEdzVbst3SZQ58Nrooz8NV9Z9GL4byTE25BvJgl5lf0RECUf0fh28rZBb/RYTWn/eeKwCMrZQ== 420 | dependencies: 421 | "@babel/helper-plugin-utils" "^7.10.4" 422 | 423 | "@babel/plugin-syntax-json-strings@^7.8.0": 424 | version "7.8.3" 425 | resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-json-strings/-/plugin-syntax-json-strings-7.8.3.tgz#01ca21b668cd8218c9e640cb6dd88c5412b2c96a" 426 | integrity sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA== 427 | dependencies: 428 | "@babel/helper-plugin-utils" "^7.8.0" 429 | 430 | "@babel/plugin-syntax-jsx@^7.10.4": 431 | version "7.10.4" 432 | resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.10.4.tgz#39abaae3cbf710c4373d8429484e6ba21340166c" 433 | integrity sha512-KCg9mio9jwiARCB7WAcQ7Y1q+qicILjoK8LP/VkPkEKaf5dkaZZK1EcTe91a3JJlZ3qy6L5s9X52boEYi8DM9g== 434 | dependencies: 435 | "@babel/helper-plugin-utils" "^7.10.4" 436 | 437 | "@babel/plugin-syntax-logical-assignment-operators@^7.10.4": 438 | version "7.10.4" 439 | resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-logical-assignment-operators/-/plugin-syntax-logical-assignment-operators-7.10.4.tgz#ca91ef46303530448b906652bac2e9fe9941f699" 440 | integrity sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig== 441 | dependencies: 442 | "@babel/helper-plugin-utils" "^7.10.4" 443 | 444 | "@babel/plugin-syntax-nullish-coalescing-operator@^7.8.0": 445 | version "7.8.3" 446 | resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-nullish-coalescing-operator/-/plugin-syntax-nullish-coalescing-operator-7.8.3.tgz#167ed70368886081f74b5c36c65a88c03b66d1a9" 447 | integrity sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ== 448 | dependencies: 449 | "@babel/helper-plugin-utils" "^7.8.0" 450 | 451 | "@babel/plugin-syntax-numeric-separator@^7.10.4": 452 | version "7.10.4" 453 | resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-numeric-separator/-/plugin-syntax-numeric-separator-7.10.4.tgz#b9b070b3e33570cd9fd07ba7fa91c0dd37b9af97" 454 | integrity sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug== 455 | dependencies: 456 | "@babel/helper-plugin-utils" "^7.10.4" 457 | 458 | "@babel/plugin-syntax-object-rest-spread@^7.8.0": 459 | version "7.8.3" 460 | resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-object-rest-spread/-/plugin-syntax-object-rest-spread-7.8.3.tgz#60e225edcbd98a640332a2e72dd3e66f1af55871" 461 | integrity sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA== 462 | dependencies: 463 | "@babel/helper-plugin-utils" "^7.8.0" 464 | 465 | "@babel/plugin-syntax-optional-catch-binding@^7.8.0": 466 | version "7.8.3" 467 | resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-optional-catch-binding/-/plugin-syntax-optional-catch-binding-7.8.3.tgz#6111a265bcfb020eb9efd0fdfd7d26402b9ed6c1" 468 | integrity sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q== 469 | dependencies: 470 | "@babel/helper-plugin-utils" "^7.8.0" 471 | 472 | "@babel/plugin-syntax-optional-chaining@^7.8.0": 473 | version "7.8.3" 474 | resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-optional-chaining/-/plugin-syntax-optional-chaining-7.8.3.tgz#4f69c2ab95167e0180cd5336613f8c5788f7d48a" 475 | integrity sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg== 476 | dependencies: 477 | "@babel/helper-plugin-utils" "^7.8.0" 478 | 479 | "@babel/plugin-syntax-top-level-await@^7.10.4": 480 | version "7.10.4" 481 | resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-top-level-await/-/plugin-syntax-top-level-await-7.10.4.tgz#4bbeb8917b54fcf768364e0a81f560e33a3ef57d" 482 | integrity sha512-ni1brg4lXEmWyafKr0ccFWkJG0CeMt4WV1oyeBW6EFObF4oOHclbkj5cARxAPQyAQ2UTuplJyK4nfkXIMMFvsQ== 483 | dependencies: 484 | "@babel/helper-plugin-utils" "^7.10.4" 485 | 486 | "@babel/plugin-syntax-typescript@^7.10.4": 487 | version "7.10.4" 488 | resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-typescript/-/plugin-syntax-typescript-7.10.4.tgz#2f55e770d3501e83af217d782cb7517d7bb34d25" 489 | integrity sha512-oSAEz1YkBCAKr5Yiq8/BNtvSAPwkp/IyUnwZogd8p+F0RuYQQrLeRUzIQhueQTTBy/F+a40uS7OFKxnkRvmvFQ== 490 | dependencies: 491 | "@babel/helper-plugin-utils" "^7.10.4" 492 | 493 | "@babel/plugin-transform-arrow-functions@^7.10.4": 494 | version "7.10.4" 495 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.10.4.tgz#e22960d77e697c74f41c501d44d73dbf8a6a64cd" 496 | integrity sha512-9J/oD1jV0ZCBcgnoFWFq1vJd4msoKb/TCpGNFyyLt0zABdcvgK3aYikZ8HjzB14c26bc7E3Q1yugpwGy2aTPNA== 497 | dependencies: 498 | "@babel/helper-plugin-utils" "^7.10.4" 499 | 500 | "@babel/plugin-transform-async-to-generator@^7.10.4": 501 | version "7.10.4" 502 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.10.4.tgz#41a5017e49eb6f3cda9392a51eef29405b245a37" 503 | integrity sha512-F6nREOan7J5UXTLsDsZG3DXmZSVofr2tGNwfdrVwkDWHfQckbQXnXSPfD7iO+c/2HGqycwyLST3DnZ16n+cBJQ== 504 | dependencies: 505 | "@babel/helper-module-imports" "^7.10.4" 506 | "@babel/helper-plugin-utils" "^7.10.4" 507 | "@babel/helper-remap-async-to-generator" "^7.10.4" 508 | 509 | "@babel/plugin-transform-block-scoped-functions@^7.10.4": 510 | version "7.10.4" 511 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.10.4.tgz#1afa595744f75e43a91af73b0d998ecfe4ebc2e8" 512 | integrity sha512-WzXDarQXYYfjaV1szJvN3AD7rZgZzC1JtjJZ8dMHUyiK8mxPRahynp14zzNjU3VkPqPsO38CzxiWO1c9ARZ8JA== 513 | dependencies: 514 | "@babel/helper-plugin-utils" "^7.10.4" 515 | 516 | "@babel/plugin-transform-block-scoping@^7.10.4": 517 | version "7.11.1" 518 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.11.1.tgz#5b7efe98852bef8d652c0b28144cd93a9e4b5215" 519 | integrity sha512-00dYeDE0EVEHuuM+26+0w/SCL0BH2Qy7LwHuI4Hi4MH5gkC8/AqMN5uWFJIsoXZrAphiMm1iXzBw6L2T+eA0ew== 520 | dependencies: 521 | "@babel/helper-plugin-utils" "^7.10.4" 522 | 523 | "@babel/plugin-transform-classes@^7.10.4": 524 | version "7.10.4" 525 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-classes/-/plugin-transform-classes-7.10.4.tgz#405136af2b3e218bc4a1926228bc917ab1a0adc7" 526 | integrity sha512-2oZ9qLjt161dn1ZE0Ms66xBncQH4In8Sqw1YWgBUZuGVJJS5c0OFZXL6dP2MRHrkU/eKhWg8CzFJhRQl50rQxA== 527 | dependencies: 528 | "@babel/helper-annotate-as-pure" "^7.10.4" 529 | "@babel/helper-define-map" "^7.10.4" 530 | "@babel/helper-function-name" "^7.10.4" 531 | "@babel/helper-optimise-call-expression" "^7.10.4" 532 | "@babel/helper-plugin-utils" "^7.10.4" 533 | "@babel/helper-replace-supers" "^7.10.4" 534 | "@babel/helper-split-export-declaration" "^7.10.4" 535 | globals "^11.1.0" 536 | 537 | "@babel/plugin-transform-computed-properties@^7.10.4": 538 | version "7.10.4" 539 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.10.4.tgz#9ded83a816e82ded28d52d4b4ecbdd810cdfc0eb" 540 | integrity sha512-JFwVDXcP/hM/TbyzGq3l/XWGut7p46Z3QvqFMXTfk6/09m7xZHJUN9xHfsv7vqqD4YnfI5ueYdSJtXqqBLyjBw== 541 | dependencies: 542 | "@babel/helper-plugin-utils" "^7.10.4" 543 | 544 | "@babel/plugin-transform-destructuring@^7.10.4": 545 | version "7.10.4" 546 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.10.4.tgz#70ddd2b3d1bea83d01509e9bb25ddb3a74fc85e5" 547 | integrity sha512-+WmfvyfsyF603iPa6825mq6Qrb7uLjTOsa3XOFzlYcYDHSS4QmpOWOL0NNBY5qMbvrcf3tq0Cw+v4lxswOBpgA== 548 | dependencies: 549 | "@babel/helper-plugin-utils" "^7.10.4" 550 | 551 | "@babel/plugin-transform-dotall-regex@^7.10.4", "@babel/plugin-transform-dotall-regex@^7.4.4": 552 | version "7.10.4" 553 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.10.4.tgz#469c2062105c1eb6a040eaf4fac4b488078395ee" 554 | integrity sha512-ZEAVvUTCMlMFAbASYSVQoxIbHm2OkG2MseW6bV2JjIygOjdVv8tuxrCTzj1+Rynh7ODb8GivUy7dzEXzEhuPaA== 555 | dependencies: 556 | "@babel/helper-create-regexp-features-plugin" "^7.10.4" 557 | "@babel/helper-plugin-utils" "^7.10.4" 558 | 559 | "@babel/plugin-transform-duplicate-keys@^7.10.4": 560 | version "7.10.4" 561 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.10.4.tgz#697e50c9fee14380fe843d1f306b295617431e47" 562 | integrity sha512-GL0/fJnmgMclHiBTTWXNlYjYsA7rDrtsazHG6mglaGSTh0KsrW04qml+Bbz9FL0LcJIRwBWL5ZqlNHKTkU3xAA== 563 | dependencies: 564 | "@babel/helper-plugin-utils" "^7.10.4" 565 | 566 | "@babel/plugin-transform-exponentiation-operator@^7.10.4": 567 | version "7.10.4" 568 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.10.4.tgz#5ae338c57f8cf4001bdb35607ae66b92d665af2e" 569 | integrity sha512-S5HgLVgkBcRdyQAHbKj+7KyuWx8C6t5oETmUuwz1pt3WTWJhsUV0WIIXuVvfXMxl/QQyHKlSCNNtaIamG8fysw== 570 | dependencies: 571 | "@babel/helper-builder-binary-assignment-operator-visitor" "^7.10.4" 572 | "@babel/helper-plugin-utils" "^7.10.4" 573 | 574 | "@babel/plugin-transform-flow-strip-types@^7.10.4": 575 | version "7.10.4" 576 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-flow-strip-types/-/plugin-transform-flow-strip-types-7.10.4.tgz#c497957f09e86e3df7296271e9eb642876bf7788" 577 | integrity sha512-XTadyuqNst88UWBTdLjM+wEY7BFnY2sYtPyAidfC7M/QaZnSuIZpMvLxqGT7phAcnGyWh/XQFLKcGf04CnvxSQ== 578 | dependencies: 579 | "@babel/helper-plugin-utils" "^7.10.4" 580 | "@babel/plugin-syntax-flow" "^7.10.4" 581 | 582 | "@babel/plugin-transform-for-of@^7.10.4": 583 | version "7.10.4" 584 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.10.4.tgz#c08892e8819d3a5db29031b115af511dbbfebae9" 585 | integrity sha512-ItdQfAzu9AlEqmusA/65TqJ79eRcgGmpPPFvBnGILXZH975G0LNjP1yjHvGgfuCxqrPPueXOPe+FsvxmxKiHHQ== 586 | dependencies: 587 | "@babel/helper-plugin-utils" "^7.10.4" 588 | 589 | "@babel/plugin-transform-function-name@^7.10.4": 590 | version "7.10.4" 591 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.10.4.tgz#6a467880e0fc9638514ba369111811ddbe2644b7" 592 | integrity sha512-OcDCq2y5+E0dVD5MagT5X+yTRbcvFjDI2ZVAottGH6tzqjx/LKpgkUepu3hp/u4tZBzxxpNGwLsAvGBvQ2mJzg== 593 | dependencies: 594 | "@babel/helper-function-name" "^7.10.4" 595 | "@babel/helper-plugin-utils" "^7.10.4" 596 | 597 | "@babel/plugin-transform-literals@^7.10.4": 598 | version "7.10.4" 599 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-literals/-/plugin-transform-literals-7.10.4.tgz#9f42ba0841100a135f22712d0e391c462f571f3c" 600 | integrity sha512-Xd/dFSTEVuUWnyZiMu76/InZxLTYilOSr1UlHV+p115Z/Le2Fi1KXkJUYz0b42DfndostYlPub3m8ZTQlMaiqQ== 601 | dependencies: 602 | "@babel/helper-plugin-utils" "^7.10.4" 603 | 604 | "@babel/plugin-transform-member-expression-literals@^7.10.4": 605 | version "7.10.4" 606 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-member-expression-literals/-/plugin-transform-member-expression-literals-7.10.4.tgz#b1ec44fcf195afcb8db2c62cd8e551c881baf8b7" 607 | integrity sha512-0bFOvPyAoTBhtcJLr9VcwZqKmSjFml1iVxvPL0ReomGU53CX53HsM4h2SzckNdkQcHox1bpAqzxBI1Y09LlBSw== 608 | dependencies: 609 | "@babel/helper-plugin-utils" "^7.10.4" 610 | 611 | "@babel/plugin-transform-modules-amd@^7.10.4": 612 | version "7.10.5" 613 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.10.5.tgz#1b9cddaf05d9e88b3aad339cb3e445c4f020a9b1" 614 | integrity sha512-elm5uruNio7CTLFItVC/rIzKLfQ17+fX7EVz5W0TMgIHFo1zY0Ozzx+lgwhL4plzl8OzVn6Qasx5DeEFyoNiRw== 615 | dependencies: 616 | "@babel/helper-module-transforms" "^7.10.5" 617 | "@babel/helper-plugin-utils" "^7.10.4" 618 | babel-plugin-dynamic-import-node "^2.3.3" 619 | 620 | "@babel/plugin-transform-modules-commonjs@^7.10.4": 621 | version "7.10.4" 622 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.10.4.tgz#66667c3eeda1ebf7896d41f1f16b17105a2fbca0" 623 | integrity sha512-Xj7Uq5o80HDLlW64rVfDBhao6OX89HKUmb+9vWYaLXBZOma4gA6tw4Ni1O5qVDoZWUV0fxMYA0aYzOawz0l+1w== 624 | dependencies: 625 | "@babel/helper-module-transforms" "^7.10.4" 626 | "@babel/helper-plugin-utils" "^7.10.4" 627 | "@babel/helper-simple-access" "^7.10.4" 628 | babel-plugin-dynamic-import-node "^2.3.3" 629 | 630 | "@babel/plugin-transform-modules-systemjs@^7.10.4": 631 | version "7.10.5" 632 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.10.5.tgz#6270099c854066681bae9e05f87e1b9cadbe8c85" 633 | integrity sha512-f4RLO/OL14/FP1AEbcsWMzpbUz6tssRaeQg11RH1BP/XnPpRoVwgeYViMFacnkaw4k4wjRSjn3ip1Uw9TaXuMw== 634 | dependencies: 635 | "@babel/helper-hoist-variables" "^7.10.4" 636 | "@babel/helper-module-transforms" "^7.10.5" 637 | "@babel/helper-plugin-utils" "^7.10.4" 638 | babel-plugin-dynamic-import-node "^2.3.3" 639 | 640 | "@babel/plugin-transform-modules-umd@^7.10.4": 641 | version "7.10.4" 642 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-umd/-/plugin-transform-modules-umd-7.10.4.tgz#9a8481fe81b824654b3a0b65da3df89f3d21839e" 643 | integrity sha512-mohW5q3uAEt8T45YT7Qc5ws6mWgJAaL/8BfWD9Dodo1A3RKWli8wTS+WiQ/knF+tXlPirW/1/MqzzGfCExKECA== 644 | dependencies: 645 | "@babel/helper-module-transforms" "^7.10.4" 646 | "@babel/helper-plugin-utils" "^7.10.4" 647 | 648 | "@babel/plugin-transform-named-capturing-groups-regex@^7.10.4": 649 | version "7.10.4" 650 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.10.4.tgz#78b4d978810b6f3bcf03f9e318f2fc0ed41aecb6" 651 | integrity sha512-V6LuOnD31kTkxQPhKiVYzYC/Jgdq53irJC/xBSmqcNcqFGV+PER4l6rU5SH2Vl7bH9mLDHcc0+l9HUOe4RNGKA== 652 | dependencies: 653 | "@babel/helper-create-regexp-features-plugin" "^7.10.4" 654 | 655 | "@babel/plugin-transform-new-target@^7.10.4": 656 | version "7.10.4" 657 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-new-target/-/plugin-transform-new-target-7.10.4.tgz#9097d753cb7b024cb7381a3b2e52e9513a9c6888" 658 | integrity sha512-YXwWUDAH/J6dlfwqlWsztI2Puz1NtUAubXhOPLQ5gjR/qmQ5U96DY4FQO8At33JN4XPBhrjB8I4eMmLROjjLjw== 659 | dependencies: 660 | "@babel/helper-plugin-utils" "^7.10.4" 661 | 662 | "@babel/plugin-transform-object-super@^7.10.4": 663 | version "7.10.4" 664 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.10.4.tgz#d7146c4d139433e7a6526f888c667e314a093894" 665 | integrity sha512-5iTw0JkdRdJvr7sY0vHqTpnruUpTea32JHmq/atIWqsnNussbRzjEDyWep8UNztt1B5IusBYg8Irb0bLbiEBCQ== 666 | dependencies: 667 | "@babel/helper-plugin-utils" "^7.10.4" 668 | "@babel/helper-replace-supers" "^7.10.4" 669 | 670 | "@babel/plugin-transform-parameters@^7.10.4": 671 | version "7.10.5" 672 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.10.5.tgz#59d339d58d0b1950435f4043e74e2510005e2c4a" 673 | integrity sha512-xPHwUj5RdFV8l1wuYiu5S9fqWGM2DrYc24TMvUiRrPVm+SM3XeqU9BcokQX/kEUe+p2RBwy+yoiR1w/Blq6ubw== 674 | dependencies: 675 | "@babel/helper-get-function-arity" "^7.10.4" 676 | "@babel/helper-plugin-utils" "^7.10.4" 677 | 678 | "@babel/plugin-transform-property-literals@^7.10.4": 679 | version "7.10.4" 680 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-property-literals/-/plugin-transform-property-literals-7.10.4.tgz#f6fe54b6590352298785b83edd815d214c42e3c0" 681 | integrity sha512-ofsAcKiUxQ8TY4sScgsGeR2vJIsfrzqvFb9GvJ5UdXDzl+MyYCaBj/FGzXuv7qE0aJcjWMILny1epqelnFlz8g== 682 | dependencies: 683 | "@babel/helper-plugin-utils" "^7.10.4" 684 | 685 | "@babel/plugin-transform-react-display-name@^7.10.4": 686 | version "7.10.4" 687 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-display-name/-/plugin-transform-react-display-name-7.10.4.tgz#b5795f4e3e3140419c3611b7a2a3832b9aef328d" 688 | integrity sha512-Zd4X54Mu9SBfPGnEcaGcOrVAYOtjT2on8QZkLKEq1S/tHexG39d9XXGZv19VfRrDjPJzFmPfTAqOQS1pfFOujw== 689 | dependencies: 690 | "@babel/helper-plugin-utils" "^7.10.4" 691 | 692 | "@babel/plugin-transform-react-jsx-development@^7.10.4": 693 | version "7.11.5" 694 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-jsx-development/-/plugin-transform-react-jsx-development-7.11.5.tgz#e1439e6a57ee3d43e9f54ace363fb29cefe5d7b6" 695 | integrity sha512-cImAmIlKJ84sDmpQzm4/0q/2xrXlDezQoixy3qoz1NJeZL/8PRon6xZtluvr4H4FzwlDGI5tCcFupMnXGtr+qw== 696 | dependencies: 697 | "@babel/helper-builder-react-jsx-experimental" "^7.11.5" 698 | "@babel/helper-plugin-utils" "^7.10.4" 699 | "@babel/plugin-syntax-jsx" "^7.10.4" 700 | 701 | "@babel/plugin-transform-react-jsx-self@^7.10.4": 702 | version "7.10.4" 703 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-jsx-self/-/plugin-transform-react-jsx-self-7.10.4.tgz#cd301a5fed8988c182ed0b9d55e9bd6db0bd9369" 704 | integrity sha512-yOvxY2pDiVJi0axdTWHSMi5T0DILN+H+SaeJeACHKjQLezEzhLx9nEF9xgpBLPtkZsks9cnb5P9iBEi21En3gg== 705 | dependencies: 706 | "@babel/helper-plugin-utils" "^7.10.4" 707 | "@babel/plugin-syntax-jsx" "^7.10.4" 708 | 709 | "@babel/plugin-transform-react-jsx-source@^7.10.4": 710 | version "7.10.5" 711 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-jsx-source/-/plugin-transform-react-jsx-source-7.10.5.tgz#34f1779117520a779c054f2cdd9680435b9222b4" 712 | integrity sha512-wTeqHVkN1lfPLubRiZH3o73f4rfon42HpgxUSs86Nc+8QIcm/B9s8NNVXu/gwGcOyd7yDib9ikxoDLxJP0UiDA== 713 | dependencies: 714 | "@babel/helper-plugin-utils" "^7.10.4" 715 | "@babel/plugin-syntax-jsx" "^7.10.4" 716 | 717 | "@babel/plugin-transform-react-jsx@^7.10.4": 718 | version "7.10.4" 719 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-jsx/-/plugin-transform-react-jsx-7.10.4.tgz#673c9f913948764a4421683b2bef2936968fddf2" 720 | integrity sha512-L+MfRhWjX0eI7Js093MM6MacKU4M6dnCRa/QPDwYMxjljzSCzzlzKzj9Pk4P3OtrPcxr2N3znR419nr3Xw+65A== 721 | dependencies: 722 | "@babel/helper-builder-react-jsx" "^7.10.4" 723 | "@babel/helper-builder-react-jsx-experimental" "^7.10.4" 724 | "@babel/helper-plugin-utils" "^7.10.4" 725 | "@babel/plugin-syntax-jsx" "^7.10.4" 726 | 727 | "@babel/plugin-transform-react-pure-annotations@^7.10.4": 728 | version "7.10.4" 729 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-pure-annotations/-/plugin-transform-react-pure-annotations-7.10.4.tgz#3eefbb73db94afbc075f097523e445354a1c6501" 730 | integrity sha512-+njZkqcOuS8RaPakrnR9KvxjoG1ASJWpoIv/doyWngId88JoFlPlISenGXjrVacZUIALGUr6eodRs1vmPnF23A== 731 | dependencies: 732 | "@babel/helper-annotate-as-pure" "^7.10.4" 733 | "@babel/helper-plugin-utils" "^7.10.4" 734 | 735 | "@babel/plugin-transform-regenerator@^7.10.4": 736 | version "7.10.4" 737 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.10.4.tgz#2015e59d839074e76838de2159db421966fd8b63" 738 | integrity sha512-3thAHwtor39A7C04XucbMg17RcZ3Qppfxr22wYzZNcVIkPHfpM9J0SO8zuCV6SZa265kxBJSrfKTvDCYqBFXGw== 739 | dependencies: 740 | regenerator-transform "^0.14.2" 741 | 742 | "@babel/plugin-transform-reserved-words@^7.10.4": 743 | version "7.10.4" 744 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-reserved-words/-/plugin-transform-reserved-words-7.10.4.tgz#8f2682bcdcef9ed327e1b0861585d7013f8a54dd" 745 | integrity sha512-hGsw1O6Rew1fkFbDImZIEqA8GoidwTAilwCyWqLBM9f+e/u/sQMQu7uX6dyokfOayRuuVfKOW4O7HvaBWM+JlQ== 746 | dependencies: 747 | "@babel/helper-plugin-utils" "^7.10.4" 748 | 749 | "@babel/plugin-transform-shorthand-properties@^7.10.4": 750 | version "7.10.4" 751 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.10.4.tgz#9fd25ec5cdd555bb7f473e5e6ee1c971eede4dd6" 752 | integrity sha512-AC2K/t7o07KeTIxMoHneyX90v3zkm5cjHJEokrPEAGEy3UCp8sLKfnfOIGdZ194fyN4wfX/zZUWT9trJZ0qc+Q== 753 | dependencies: 754 | "@babel/helper-plugin-utils" "^7.10.4" 755 | 756 | "@babel/plugin-transform-spread@^7.11.0": 757 | version "7.11.0" 758 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-spread/-/plugin-transform-spread-7.11.0.tgz#fa84d300f5e4f57752fe41a6d1b3c554f13f17cc" 759 | integrity sha512-UwQYGOqIdQJe4aWNyS7noqAnN2VbaczPLiEtln+zPowRNlD+79w3oi2TWfYe0eZgd+gjZCbsydN7lzWysDt+gw== 760 | dependencies: 761 | "@babel/helper-plugin-utils" "^7.10.4" 762 | "@babel/helper-skip-transparent-expression-wrappers" "^7.11.0" 763 | 764 | "@babel/plugin-transform-sticky-regex@^7.10.4": 765 | version "7.10.4" 766 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.10.4.tgz#8f3889ee8657581130a29d9cc91d7c73b7c4a28d" 767 | integrity sha512-Ddy3QZfIbEV0VYcVtFDCjeE4xwVTJWTmUtorAJkn6u/92Z/nWJNV+mILyqHKrUxXYKA2EoCilgoPePymKL4DvQ== 768 | dependencies: 769 | "@babel/helper-plugin-utils" "^7.10.4" 770 | "@babel/helper-regex" "^7.10.4" 771 | 772 | "@babel/plugin-transform-template-literals@^7.10.4": 773 | version "7.10.5" 774 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.10.5.tgz#78bc5d626a6642db3312d9d0f001f5e7639fde8c" 775 | integrity sha512-V/lnPGIb+KT12OQikDvgSuesRX14ck5FfJXt6+tXhdkJ+Vsd0lDCVtF6jcB4rNClYFzaB2jusZ+lNISDk2mMMw== 776 | dependencies: 777 | "@babel/helper-annotate-as-pure" "^7.10.4" 778 | "@babel/helper-plugin-utils" "^7.10.4" 779 | 780 | "@babel/plugin-transform-typeof-symbol@^7.10.4": 781 | version "7.10.4" 782 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.10.4.tgz#9509f1a7eec31c4edbffe137c16cc33ff0bc5bfc" 783 | integrity sha512-QqNgYwuuW0y0H+kUE/GWSR45t/ccRhe14Fs/4ZRouNNQsyd4o3PG4OtHiIrepbM2WKUBDAXKCAK/Lk4VhzTaGA== 784 | dependencies: 785 | "@babel/helper-plugin-utils" "^7.10.4" 786 | 787 | "@babel/plugin-transform-typescript@^7.10.4": 788 | version "7.11.0" 789 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-typescript/-/plugin-transform-typescript-7.11.0.tgz#2b4879676af37342ebb278216dd090ac67f13abb" 790 | integrity sha512-edJsNzTtvb3MaXQwj8403B7mZoGu9ElDJQZOKjGUnvilquxBA3IQoEIOvkX/1O8xfAsnHS/oQhe2w/IXrr+w0w== 791 | dependencies: 792 | "@babel/helper-create-class-features-plugin" "^7.10.5" 793 | "@babel/helper-plugin-utils" "^7.10.4" 794 | "@babel/plugin-syntax-typescript" "^7.10.4" 795 | 796 | "@babel/plugin-transform-unicode-escapes@^7.10.4": 797 | version "7.10.4" 798 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-unicode-escapes/-/plugin-transform-unicode-escapes-7.10.4.tgz#feae523391c7651ddac115dae0a9d06857892007" 799 | integrity sha512-y5XJ9waMti2J+e7ij20e+aH+fho7Wb7W8rNuu72aKRwCHFqQdhkdU2lo3uZ9tQuboEJcUFayXdARhcxLQ3+6Fg== 800 | dependencies: 801 | "@babel/helper-plugin-utils" "^7.10.4" 802 | 803 | "@babel/plugin-transform-unicode-regex@^7.10.4": 804 | version "7.10.4" 805 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.10.4.tgz#e56d71f9282fac6db09c82742055576d5e6d80a8" 806 | integrity sha512-wNfsc4s8N2qnIwpO/WP2ZiSyjfpTamT2C9V9FDH/Ljub9zw6P3SjkXcFmc0RQUt96k2fmIvtla2MMjgTwIAC+A== 807 | dependencies: 808 | "@babel/helper-create-regexp-features-plugin" "^7.10.4" 809 | "@babel/helper-plugin-utils" "^7.10.4" 810 | 811 | "@babel/preset-env@^7.10.2": 812 | version "7.11.5" 813 | resolved "https://registry.yarnpkg.com/@babel/preset-env/-/preset-env-7.11.5.tgz#18cb4b9379e3e92ffea92c07471a99a2914e4272" 814 | integrity sha512-kXqmW1jVcnB2cdueV+fyBM8estd5mlNfaQi6lwLgRwCby4edpavgbFhiBNjmWA3JpB/yZGSISa7Srf+TwxDQoA== 815 | dependencies: 816 | "@babel/compat-data" "^7.11.0" 817 | "@babel/helper-compilation-targets" "^7.10.4" 818 | "@babel/helper-module-imports" "^7.10.4" 819 | "@babel/helper-plugin-utils" "^7.10.4" 820 | "@babel/plugin-proposal-async-generator-functions" "^7.10.4" 821 | "@babel/plugin-proposal-class-properties" "^7.10.4" 822 | "@babel/plugin-proposal-dynamic-import" "^7.10.4" 823 | "@babel/plugin-proposal-export-namespace-from" "^7.10.4" 824 | "@babel/plugin-proposal-json-strings" "^7.10.4" 825 | "@babel/plugin-proposal-logical-assignment-operators" "^7.11.0" 826 | "@babel/plugin-proposal-nullish-coalescing-operator" "^7.10.4" 827 | "@babel/plugin-proposal-numeric-separator" "^7.10.4" 828 | "@babel/plugin-proposal-object-rest-spread" "^7.11.0" 829 | "@babel/plugin-proposal-optional-catch-binding" "^7.10.4" 830 | "@babel/plugin-proposal-optional-chaining" "^7.11.0" 831 | "@babel/plugin-proposal-private-methods" "^7.10.4" 832 | "@babel/plugin-proposal-unicode-property-regex" "^7.10.4" 833 | "@babel/plugin-syntax-async-generators" "^7.8.0" 834 | "@babel/plugin-syntax-class-properties" "^7.10.4" 835 | "@babel/plugin-syntax-dynamic-import" "^7.8.0" 836 | "@babel/plugin-syntax-export-namespace-from" "^7.8.3" 837 | "@babel/plugin-syntax-json-strings" "^7.8.0" 838 | "@babel/plugin-syntax-logical-assignment-operators" "^7.10.4" 839 | "@babel/plugin-syntax-nullish-coalescing-operator" "^7.8.0" 840 | "@babel/plugin-syntax-numeric-separator" "^7.10.4" 841 | "@babel/plugin-syntax-object-rest-spread" "^7.8.0" 842 | "@babel/plugin-syntax-optional-catch-binding" "^7.8.0" 843 | "@babel/plugin-syntax-optional-chaining" "^7.8.0" 844 | "@babel/plugin-syntax-top-level-await" "^7.10.4" 845 | "@babel/plugin-transform-arrow-functions" "^7.10.4" 846 | "@babel/plugin-transform-async-to-generator" "^7.10.4" 847 | "@babel/plugin-transform-block-scoped-functions" "^7.10.4" 848 | "@babel/plugin-transform-block-scoping" "^7.10.4" 849 | "@babel/plugin-transform-classes" "^7.10.4" 850 | "@babel/plugin-transform-computed-properties" "^7.10.4" 851 | "@babel/plugin-transform-destructuring" "^7.10.4" 852 | "@babel/plugin-transform-dotall-regex" "^7.10.4" 853 | "@babel/plugin-transform-duplicate-keys" "^7.10.4" 854 | "@babel/plugin-transform-exponentiation-operator" "^7.10.4" 855 | "@babel/plugin-transform-for-of" "^7.10.4" 856 | "@babel/plugin-transform-function-name" "^7.10.4" 857 | "@babel/plugin-transform-literals" "^7.10.4" 858 | "@babel/plugin-transform-member-expression-literals" "^7.10.4" 859 | "@babel/plugin-transform-modules-amd" "^7.10.4" 860 | "@babel/plugin-transform-modules-commonjs" "^7.10.4" 861 | "@babel/plugin-transform-modules-systemjs" "^7.10.4" 862 | "@babel/plugin-transform-modules-umd" "^7.10.4" 863 | "@babel/plugin-transform-named-capturing-groups-regex" "^7.10.4" 864 | "@babel/plugin-transform-new-target" "^7.10.4" 865 | "@babel/plugin-transform-object-super" "^7.10.4" 866 | "@babel/plugin-transform-parameters" "^7.10.4" 867 | "@babel/plugin-transform-property-literals" "^7.10.4" 868 | "@babel/plugin-transform-regenerator" "^7.10.4" 869 | "@babel/plugin-transform-reserved-words" "^7.10.4" 870 | "@babel/plugin-transform-shorthand-properties" "^7.10.4" 871 | "@babel/plugin-transform-spread" "^7.11.0" 872 | "@babel/plugin-transform-sticky-regex" "^7.10.4" 873 | "@babel/plugin-transform-template-literals" "^7.10.4" 874 | "@babel/plugin-transform-typeof-symbol" "^7.10.4" 875 | "@babel/plugin-transform-unicode-escapes" "^7.10.4" 876 | "@babel/plugin-transform-unicode-regex" "^7.10.4" 877 | "@babel/preset-modules" "^0.1.3" 878 | "@babel/types" "^7.11.5" 879 | browserslist "^4.12.0" 880 | core-js-compat "^3.6.2" 881 | invariant "^2.2.2" 882 | levenary "^1.1.1" 883 | semver "^5.5.0" 884 | 885 | "@babel/preset-flow@^7.10.1": 886 | version "7.10.4" 887 | resolved "https://registry.yarnpkg.com/@babel/preset-flow/-/preset-flow-7.10.4.tgz#e0d9c72f8cb02d1633f6a5b7b16763aa2edf659f" 888 | integrity sha512-XI6l1CptQCOBv+ZKYwynyswhtOKwpZZp5n0LG1QKCo8erRhqjoQV6nvx61Eg30JHpysWQSBwA2AWRU3pBbSY5g== 889 | dependencies: 890 | "@babel/helper-plugin-utils" "^7.10.4" 891 | "@babel/plugin-transform-flow-strip-types" "^7.10.4" 892 | 893 | "@babel/preset-modules@^0.1.3": 894 | version "0.1.4" 895 | resolved "https://registry.yarnpkg.com/@babel/preset-modules/-/preset-modules-0.1.4.tgz#362f2b68c662842970fdb5e254ffc8fc1c2e415e" 896 | integrity sha512-J36NhwnfdzpmH41M1DrnkkgAqhZaqr/NBdPfQ677mLzlaXo+oDiv1deyCDtgAhz8p328otdob0Du7+xgHGZbKg== 897 | dependencies: 898 | "@babel/helper-plugin-utils" "^7.0.0" 899 | "@babel/plugin-proposal-unicode-property-regex" "^7.4.4" 900 | "@babel/plugin-transform-dotall-regex" "^7.4.4" 901 | "@babel/types" "^7.4.4" 902 | esutils "^2.0.2" 903 | 904 | "@babel/preset-react@^7.10.1": 905 | version "7.10.4" 906 | resolved "https://registry.yarnpkg.com/@babel/preset-react/-/preset-react-7.10.4.tgz#92e8a66d816f9911d11d4cc935be67adfc82dbcf" 907 | integrity sha512-BrHp4TgOIy4M19JAfO1LhycVXOPWdDbTRep7eVyatf174Hff+6Uk53sDyajqZPu8W1qXRBiYOfIamek6jA7YVw== 908 | dependencies: 909 | "@babel/helper-plugin-utils" "^7.10.4" 910 | "@babel/plugin-transform-react-display-name" "^7.10.4" 911 | "@babel/plugin-transform-react-jsx" "^7.10.4" 912 | "@babel/plugin-transform-react-jsx-development" "^7.10.4" 913 | "@babel/plugin-transform-react-jsx-self" "^7.10.4" 914 | "@babel/plugin-transform-react-jsx-source" "^7.10.4" 915 | "@babel/plugin-transform-react-pure-annotations" "^7.10.4" 916 | 917 | "@babel/preset-typescript@^7.10.1": 918 | version "7.10.4" 919 | resolved "https://registry.yarnpkg.com/@babel/preset-typescript/-/preset-typescript-7.10.4.tgz#7d5d052e52a682480d6e2cc5aa31be61c8c25e36" 920 | integrity sha512-SdYnvGPv+bLlwkF2VkJnaX/ni1sMNetcGI1+nThF1gyv6Ph8Qucc4ZZAjM5yZcE/AKRXIOTZz7eSRDWOEjPyRQ== 921 | dependencies: 922 | "@babel/helper-plugin-utils" "^7.10.4" 923 | "@babel/plugin-transform-typescript" "^7.10.4" 924 | 925 | "@babel/runtime@^7.8.4": 926 | version "7.11.2" 927 | resolved "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.11.2.tgz#f549c13c754cc40b87644b9fa9f09a6a95fe0736" 928 | integrity sha512-TeWkU52so0mPtDcaCTxNBI/IHiz0pZgr8VEFqXFtZWpYD08ZB6FaSwVAS8MKRQAP3bYKiVjwysOJgMFY28o6Tw== 929 | dependencies: 930 | regenerator-runtime "^0.13.4" 931 | 932 | "@babel/template@^7.10.4": 933 | version "7.10.4" 934 | resolved "https://registry.yarnpkg.com/@babel/template/-/template-7.10.4.tgz#3251996c4200ebc71d1a8fc405fba940f36ba278" 935 | integrity sha512-ZCjD27cGJFUB6nmCB1Enki3r+L5kJveX9pq1SvAUKoICy6CZ9yD8xO086YXdYhvNjBdnekm4ZnaP5yC8Cs/1tA== 936 | dependencies: 937 | "@babel/code-frame" "^7.10.4" 938 | "@babel/parser" "^7.10.4" 939 | "@babel/types" "^7.10.4" 940 | 941 | "@babel/traverse@^7.10.4", "@babel/traverse@^7.11.5": 942 | version "7.11.5" 943 | resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.11.5.tgz#be777b93b518eb6d76ee2e1ea1d143daa11e61c3" 944 | integrity sha512-EjiPXt+r7LiCZXEfRpSJd+jUMnBd4/9OUv7Nx3+0u9+eimMwJmG0Q98lw4/289JCoxSE8OolDMNZaaF/JZ69WQ== 945 | dependencies: 946 | "@babel/code-frame" "^7.10.4" 947 | "@babel/generator" "^7.11.5" 948 | "@babel/helper-function-name" "^7.10.4" 949 | "@babel/helper-split-export-declaration" "^7.11.0" 950 | "@babel/parser" "^7.11.5" 951 | "@babel/types" "^7.11.5" 952 | debug "^4.1.0" 953 | globals "^11.1.0" 954 | lodash "^4.17.19" 955 | 956 | "@babel/types@^7.10.4", "@babel/types@^7.10.5", "@babel/types@^7.11.0", "@babel/types@^7.11.5", "@babel/types@^7.4.4": 957 | version "7.11.5" 958 | resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.11.5.tgz#d9de577d01252d77c6800cee039ee64faf75662d" 959 | integrity sha512-bvM7Qz6eKnJVFIn+1LPtjlBFPVN5jNDc1XmN15vWe7Q3DPBufWWsLiIvUu7xW87uTG6QoggpIDnUgLQvPheU+Q== 960 | dependencies: 961 | "@babel/helper-validator-identifier" "^7.10.4" 962 | lodash "^4.17.19" 963 | to-fast-properties "^2.0.0" 964 | 965 | "@nodelib/fs.scandir@2.1.3": 966 | version "2.1.3" 967 | resolved "https://registry.yarnpkg.com/@nodelib/fs.scandir/-/fs.scandir-2.1.3.tgz#3a582bdb53804c6ba6d146579c46e52130cf4a3b" 968 | integrity sha512-eGmwYQn3gxo4r7jdQnkrrN6bY478C3P+a/y72IJukF8LjB6ZHeB3c+Ehacj3sYeSmUXGlnA67/PmbM9CVwL7Dw== 969 | dependencies: 970 | "@nodelib/fs.stat" "2.0.3" 971 | run-parallel "^1.1.9" 972 | 973 | "@nodelib/fs.stat@2.0.3", "@nodelib/fs.stat@^2.0.2": 974 | version "2.0.3" 975 | resolved "https://registry.yarnpkg.com/@nodelib/fs.stat/-/fs.stat-2.0.3.tgz#34dc5f4cabbc720f4e60f75a747e7ecd6c175bd3" 976 | integrity sha512-bQBFruR2TAwoevBEd/NWMoAAtNGzTRgdrqnYCc7dhzfoNvqPzLyqlEQnzZ3kVnNrSp25iyxE00/3h2fqGAGArA== 977 | 978 | "@nodelib/fs.walk@^1.2.3": 979 | version "1.2.4" 980 | resolved "https://registry.yarnpkg.com/@nodelib/fs.walk/-/fs.walk-1.2.4.tgz#011b9202a70a6366e436ca5c065844528ab04976" 981 | integrity sha512-1V9XOY4rDW0rehzbrcqAmHnz8e7SKvX27gh8Gt2WgB0+pdzdiLV83p72kZPU+jvMbS1qU5mauP2iOvO8rhmurQ== 982 | dependencies: 983 | "@nodelib/fs.scandir" "2.1.3" 984 | fastq "^1.6.0" 985 | 986 | "@react-native-community/bob@^0.16.2": 987 | version "0.16.2" 988 | resolved "https://registry.yarnpkg.com/@react-native-community/bob/-/bob-0.16.2.tgz#9102b0160e70084fa1b75403a80dec332647c950" 989 | integrity sha512-gHEGXOfEHlIX8meXHbjpVvGJbfKFFpomgPUdGBwPwFb7Di4EIXC97ru6ONhOruwth1YVfZtGabk4oDiDvz/RHg== 990 | dependencies: 991 | "@babel/core" "^7.10.2" 992 | "@babel/plugin-proposal-class-properties" "^7.10.1" 993 | "@babel/preset-env" "^7.10.2" 994 | "@babel/preset-flow" "^7.10.1" 995 | "@babel/preset-react" "^7.10.1" 996 | "@babel/preset-typescript" "^7.10.1" 997 | browserslist "^4.12.0" 998 | chalk "^4.1.0" 999 | cosmiconfig "^6.0.0" 1000 | cross-spawn "^7.0.3" 1001 | dedent "^0.7.0" 1002 | del "^5.1.0" 1003 | ejs "^3.1.3" 1004 | fs-extra "^9.0.1" 1005 | github-username "^5.0.1" 1006 | glob "^7.1.6" 1007 | inquirer "^7.0.4" 1008 | is-git-dirty "^1.0.0" 1009 | json5 "^2.1.3" 1010 | validate-npm-package-name "^3.0.0" 1011 | which "^2.0.2" 1012 | yargs "^15.3.1" 1013 | optionalDependencies: 1014 | jetifier "^1.6.6" 1015 | 1016 | "@sindresorhus/is@^0.14.0": 1017 | version "0.14.0" 1018 | resolved "https://registry.yarnpkg.com/@sindresorhus/is/-/is-0.14.0.tgz#9fb3a3cf3132328151f353de4632e01e52102bea" 1019 | integrity sha512-9NET910DNaIPngYnLLPeg+Ogzqsi9uM4mSboU5y6p8S5DzMTVEsJZrawi+BoDNUVBa2DhJqQYUFvMDfgU062LQ== 1020 | 1021 | "@szmarczak/http-timer@^1.1.2": 1022 | version "1.1.2" 1023 | resolved "https://registry.yarnpkg.com/@szmarczak/http-timer/-/http-timer-1.1.2.tgz#b1665e2c461a2cd92f4c1bbf50d5454de0d4b421" 1024 | integrity sha512-XIB2XbzHTN6ieIjfIMV9hlVcfPU26s2vafYWQcZHWXHOxiaRZYEDKEwdl129Zyg50+foYV2jCgtrqSA6qNuNSA== 1025 | dependencies: 1026 | defer-to-connect "^1.0.1" 1027 | 1028 | "@types/glob@^7.1.1": 1029 | version "7.1.3" 1030 | resolved "https://registry.yarnpkg.com/@types/glob/-/glob-7.1.3.tgz#e6ba80f36b7daad2c685acd9266382e68985c183" 1031 | integrity sha512-SEYeGAIQIQX8NN6LDKprLjbrd5dARM5EXsd8GI/A5l0apYI1fGMWgPHSe4ZKL4eozlAyI+doUE9XbYS4xCkQ1w== 1032 | dependencies: 1033 | "@types/minimatch" "*" 1034 | "@types/node" "*" 1035 | 1036 | "@types/minimatch@*": 1037 | version "3.0.3" 1038 | resolved "https://registry.yarnpkg.com/@types/minimatch/-/minimatch-3.0.3.tgz#3dca0e3f33b200fc7d1139c0cd96c1268cadfd9d" 1039 | integrity sha512-tHq6qdbT9U1IRSGf14CL0pUlULksvY9OZ+5eEgl1N7t+OA3tGvNpxJCzuKQlsNgCVwbAs670L1vcVQi8j9HjnA== 1040 | 1041 | "@types/node@*": 1042 | version "14.11.8" 1043 | resolved "https://registry.yarnpkg.com/@types/node/-/node-14.11.8.tgz#fe2012f2355e4ce08bca44aeb3abbb21cf88d33f" 1044 | integrity sha512-KPcKqKm5UKDkaYPTuXSx8wEP7vE9GnuaXIZKijwRYcePpZFDVuy2a57LarFKiORbHOuTOOwYzxVxcUzsh2P2Pw== 1045 | 1046 | "@types/parse-json@^4.0.0": 1047 | version "4.0.0" 1048 | resolved "https://registry.yarnpkg.com/@types/parse-json/-/parse-json-4.0.0.tgz#2f8bb441434d163b35fb8ffdccd7138927ffb8c0" 1049 | integrity sha512-//oorEZjL6sbPcKUaCdIGlIUeH26mgzimjBB77G6XRgnDl/L5wOnpyBGRe/Mmf5CVW3PwEBE1NjiMZ/ssFh4wA== 1050 | 1051 | "@types/prop-types@*": 1052 | version "15.7.3" 1053 | resolved "https://registry.yarnpkg.com/@types/prop-types/-/prop-types-15.7.3.tgz#2ab0d5da2e5815f94b0b9d4b95d1e5f243ab2ca7" 1054 | integrity sha512-KfRL3PuHmqQLOG+2tGpRO26Ctg+Cq1E01D2DMriKEATHgWLfeNDmq9e29Q9WIky0dQ3NPkd1mzYH8Lm936Z9qw== 1055 | 1056 | "@types/react-native@^0.63.52": 1057 | version "0.63.52" 1058 | resolved "https://registry.yarnpkg.com/@types/react-native/-/react-native-0.63.52.tgz#449beb4a413ec0f2c172cbf676a95f5b0952adf4" 1059 | integrity sha512-sBXvvtJaIUSXQLDh9NZitx1KHkKUdBLZy34lFKJaIXtpHIh5OEbBXeyUTFBtFwjk/RD0tneAtUqsdhheZRzAzw== 1060 | dependencies: 1061 | "@types/react" "*" 1062 | 1063 | "@types/react@*", "@types/react@^16.9.49": 1064 | version "16.9.49" 1065 | resolved "https://registry.yarnpkg.com/@types/react/-/react-16.9.49.tgz#09db021cf8089aba0cdb12a49f8021a69cce4872" 1066 | integrity sha512-DtLFjSj0OYAdVLBbyjhuV9CdGVHCkHn2R+xr3XkBvK2rS1Y1tkc14XSGjYgm5Fjjr90AxH9tiSzc1pCFMGO06g== 1067 | dependencies: 1068 | "@types/prop-types" "*" 1069 | csstype "^3.0.2" 1070 | 1071 | aggregate-error@^3.0.0: 1072 | version "3.1.0" 1073 | resolved "https://registry.yarnpkg.com/aggregate-error/-/aggregate-error-3.1.0.tgz#92670ff50f5359bdb7a3e0d40d0ec30c5737687a" 1074 | integrity sha512-4I7Td01quW/RpocfNayFdFVk1qSuoh0E7JrbRJ16nH01HhKFQ88INq9Sd+nd72zqRySlr9BmDA8xlEJ6vJMrYA== 1075 | dependencies: 1076 | clean-stack "^2.0.0" 1077 | indent-string "^4.0.0" 1078 | 1079 | ansi-escapes@^4.2.1: 1080 | version "4.3.1" 1081 | resolved "https://registry.yarnpkg.com/ansi-escapes/-/ansi-escapes-4.3.1.tgz#a5c47cc43181f1f38ffd7076837700d395522a61" 1082 | integrity sha512-JWF7ocqNrp8u9oqpgV+wH5ftbt+cfvv+PTjOvKLT3AdYly/LmORARfEVT1iyjwN+4MqE5UmVKoAdIBqeoCHgLA== 1083 | dependencies: 1084 | type-fest "^0.11.0" 1085 | 1086 | ansi-regex@^5.0.0: 1087 | version "5.0.0" 1088 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-5.0.0.tgz#388539f55179bf39339c81af30a654d69f87cb75" 1089 | integrity sha512-bY6fj56OUQ0hU1KjFNDQuJFezqKdrAyFdIevADiqrWHwSlbmBNMHp5ak2f40Pm8JTFyM2mqxkG6ngkHO11f/lg== 1090 | 1091 | ansi-styles@^3.2.1: 1092 | version "3.2.1" 1093 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-3.2.1.tgz#41fbb20243e50b12be0f04b8dedbf07520ce841d" 1094 | integrity sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA== 1095 | dependencies: 1096 | color-convert "^1.9.0" 1097 | 1098 | ansi-styles@^4.0.0, ansi-styles@^4.1.0: 1099 | version "4.3.0" 1100 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-4.3.0.tgz#edd803628ae71c04c85ae7a0906edad34b648937" 1101 | integrity sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg== 1102 | dependencies: 1103 | color-convert "^2.0.1" 1104 | 1105 | array-union@^2.1.0: 1106 | version "2.1.0" 1107 | resolved "https://registry.yarnpkg.com/array-union/-/array-union-2.1.0.tgz#b798420adbeb1de828d84acd8a2e23d3efe85e8d" 1108 | integrity sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw== 1109 | 1110 | async@0.9.x: 1111 | version "0.9.2" 1112 | resolved "https://registry.yarnpkg.com/async/-/async-0.9.2.tgz#aea74d5e61c1f899613bf64bda66d4c78f2fd17d" 1113 | integrity sha1-rqdNXmHB+JlhO/ZL2mbUx48v0X0= 1114 | 1115 | at-least-node@^1.0.0: 1116 | version "1.0.0" 1117 | resolved "https://registry.yarnpkg.com/at-least-node/-/at-least-node-1.0.0.tgz#602cd4b46e844ad4effc92a8011a3c46e0238dc2" 1118 | integrity sha512-+q/t7Ekv1EDY2l6Gda6LLiX14rU9TV20Wa3ofeQmwPFZbOMo9DXrLbOjFaaclkXKWidIaopwAObQDqwWtGUjqg== 1119 | 1120 | babel-plugin-dynamic-import-node@^2.3.3: 1121 | version "2.3.3" 1122 | resolved "https://registry.yarnpkg.com/babel-plugin-dynamic-import-node/-/babel-plugin-dynamic-import-node-2.3.3.tgz#84fda19c976ec5c6defef57f9427b3def66e17a3" 1123 | integrity sha512-jZVI+s9Zg3IqA/kdi0i6UDCybUI3aSBLnglhYbSSjKlV7yF1F/5LWv8MakQmvYpnbJDS6fcBL2KzHSxNCMtWSQ== 1124 | dependencies: 1125 | object.assign "^4.1.0" 1126 | 1127 | balanced-match@^1.0.0: 1128 | version "1.0.0" 1129 | resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.0.tgz#89b4d199ab2bee49de164ea02b89ce462d71b767" 1130 | integrity sha1-ibTRmasr7kneFk6gK4nORi1xt2c= 1131 | 1132 | brace-expansion@^1.1.7: 1133 | version "1.1.11" 1134 | resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.11.tgz#3c7fcbf529d87226f3d2f52b966ff5271eb441dd" 1135 | integrity sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA== 1136 | dependencies: 1137 | balanced-match "^1.0.0" 1138 | concat-map "0.0.1" 1139 | 1140 | braces@^3.0.1: 1141 | version "3.0.2" 1142 | resolved "https://registry.yarnpkg.com/braces/-/braces-3.0.2.tgz#3454e1a462ee8d599e236df336cd9ea4f8afe107" 1143 | integrity sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A== 1144 | dependencies: 1145 | fill-range "^7.0.1" 1146 | 1147 | browserslist@^4.12.0, browserslist@^4.8.5: 1148 | version "4.14.5" 1149 | resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-4.14.5.tgz#1c751461a102ddc60e40993639b709be7f2c4015" 1150 | integrity sha512-Z+vsCZIvCBvqLoYkBFTwEYH3v5MCQbsAjp50ERycpOjnPmolg1Gjy4+KaWWpm8QOJt9GHkhdqAl14NpCX73CWA== 1151 | dependencies: 1152 | caniuse-lite "^1.0.30001135" 1153 | electron-to-chromium "^1.3.571" 1154 | escalade "^3.1.0" 1155 | node-releases "^1.1.61" 1156 | 1157 | builtins@^1.0.3: 1158 | version "1.0.3" 1159 | resolved "https://registry.yarnpkg.com/builtins/-/builtins-1.0.3.tgz#cb94faeb61c8696451db36534e1422f94f0aee88" 1160 | integrity sha1-y5T662HIaWRR2zZTThQi+U8K7og= 1161 | 1162 | cacheable-request@^6.0.0: 1163 | version "6.1.0" 1164 | resolved "https://registry.yarnpkg.com/cacheable-request/-/cacheable-request-6.1.0.tgz#20ffb8bd162ba4be11e9567d823db651052ca912" 1165 | integrity sha512-Oj3cAGPCqOZX7Rz64Uny2GYAZNliQSqfbePrgAQ1wKAihYmCUnraBtJtKcGR4xz7wF+LoJC+ssFZvv5BgF9Igg== 1166 | dependencies: 1167 | clone-response "^1.0.2" 1168 | get-stream "^5.1.0" 1169 | http-cache-semantics "^4.0.0" 1170 | keyv "^3.0.0" 1171 | lowercase-keys "^2.0.0" 1172 | normalize-url "^4.1.0" 1173 | responselike "^1.0.2" 1174 | 1175 | callsites@^3.0.0: 1176 | version "3.1.0" 1177 | resolved "https://registry.yarnpkg.com/callsites/-/callsites-3.1.0.tgz#b3630abd8943432f54b3f0519238e33cd7df2f73" 1178 | integrity sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ== 1179 | 1180 | camelcase@^5.0.0: 1181 | version "5.3.1" 1182 | resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-5.3.1.tgz#e3c9b31569e106811df242f715725a1f4c494320" 1183 | integrity sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg== 1184 | 1185 | caniuse-lite@^1.0.30001135: 1186 | version "1.0.30001148" 1187 | resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001148.tgz#dc97c7ed918ab33bf8706ddd5e387287e015d637" 1188 | integrity sha512-E66qcd0KMKZHNJQt9hiLZGE3J4zuTqE1OnU53miEVtylFbwOEmeA5OsRu90noZful+XGSQOni1aT2tiqu/9yYw== 1189 | 1190 | chalk@^2.0.0, chalk@^2.4.2: 1191 | version "2.4.2" 1192 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-2.4.2.tgz#cd42541677a54333cf541a49108c1432b44c9424" 1193 | integrity sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ== 1194 | dependencies: 1195 | ansi-styles "^3.2.1" 1196 | escape-string-regexp "^1.0.5" 1197 | supports-color "^5.3.0" 1198 | 1199 | chalk@^4.1.0: 1200 | version "4.1.0" 1201 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-4.1.0.tgz#4e14870a618d9e2edd97dd8345fd9d9dc315646a" 1202 | integrity sha512-qwx12AxXe2Q5xQ43Ac//I6v5aXTipYrSESdOgzrN+9XjgEpyjpKuvSGaN4qE93f7TQTlerQQ8S+EQ0EyDoVL1A== 1203 | dependencies: 1204 | ansi-styles "^4.1.0" 1205 | supports-color "^7.1.0" 1206 | 1207 | chardet@^0.7.0: 1208 | version "0.7.0" 1209 | resolved "https://registry.yarnpkg.com/chardet/-/chardet-0.7.0.tgz#90094849f0937f2eedc2425d0d28a9e5f0cbad9e" 1210 | integrity sha512-mT8iDcrh03qDGRRmoA2hmBJnxpllMR+0/0qlzjqZES6NdiWDcZkCNAk4rPFZ9Q85r27unkiNNg8ZOiwZXBHwcA== 1211 | 1212 | clean-stack@^2.0.0: 1213 | version "2.2.0" 1214 | resolved "https://registry.yarnpkg.com/clean-stack/-/clean-stack-2.2.0.tgz#ee8472dbb129e727b31e8a10a427dee9dfe4008b" 1215 | integrity sha512-4diC9HaTE+KRAMWhDhrGOECgWZxoevMc5TlkObMqNSsVU62PYzXZ/SMTjzyGAFF1YusgxGcSWTEXBhp0CPwQ1A== 1216 | 1217 | cli-cursor@^3.1.0: 1218 | version "3.1.0" 1219 | resolved "https://registry.yarnpkg.com/cli-cursor/-/cli-cursor-3.1.0.tgz#264305a7ae490d1d03bf0c9ba7c925d1753af307" 1220 | integrity sha512-I/zHAwsKf9FqGoXM4WWRACob9+SNukZTd94DWF57E4toouRulbCxcUh6RKUEOQlYTHJnzkPMySvPNaaSLNfLZw== 1221 | dependencies: 1222 | restore-cursor "^3.1.0" 1223 | 1224 | cli-width@^3.0.0: 1225 | version "3.0.0" 1226 | resolved "https://registry.yarnpkg.com/cli-width/-/cli-width-3.0.0.tgz#a2f48437a2caa9a22436e794bf071ec9e61cedf6" 1227 | integrity sha512-FxqpkPPwu1HjuN93Omfm4h8uIanXofW0RxVEW3k5RKx+mJJYSthzNhp32Kzxxy3YAEZ/Dc/EWN1vZRY0+kOhbw== 1228 | 1229 | cliui@^6.0.0: 1230 | version "6.0.0" 1231 | resolved "https://registry.yarnpkg.com/cliui/-/cliui-6.0.0.tgz#511d702c0c4e41ca156d7d0e96021f23e13225b1" 1232 | integrity sha512-t6wbgtoCXvAzst7QgXxJYqPt0usEfbgQdftEPbLL/cvv6HPE5VgvqCuAIDR0NgU52ds6rFwqrgakNLrHEjCbrQ== 1233 | dependencies: 1234 | string-width "^4.2.0" 1235 | strip-ansi "^6.0.0" 1236 | wrap-ansi "^6.2.0" 1237 | 1238 | clone-response@^1.0.2: 1239 | version "1.0.2" 1240 | resolved "https://registry.yarnpkg.com/clone-response/-/clone-response-1.0.2.tgz#d1dc973920314df67fbeb94223b4ee350239e96b" 1241 | integrity sha1-0dyXOSAxTfZ/vrlCI7TuNQI56Ws= 1242 | dependencies: 1243 | mimic-response "^1.0.0" 1244 | 1245 | color-convert@^1.9.0: 1246 | version "1.9.3" 1247 | resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-1.9.3.tgz#bb71850690e1f136567de629d2d5471deda4c1e8" 1248 | integrity sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg== 1249 | dependencies: 1250 | color-name "1.1.3" 1251 | 1252 | color-convert@^2.0.1: 1253 | version "2.0.1" 1254 | resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-2.0.1.tgz#72d3a68d598c9bdb3af2ad1e84f21d896abd4de3" 1255 | integrity sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ== 1256 | dependencies: 1257 | color-name "~1.1.4" 1258 | 1259 | color-name@1.1.3: 1260 | version "1.1.3" 1261 | resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.3.tgz#a7d0558bd89c42f795dd42328f740831ca53bc25" 1262 | integrity sha1-p9BVi9icQveV3UIyj3QIMcpTvCU= 1263 | 1264 | color-name@~1.1.4: 1265 | version "1.1.4" 1266 | resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.4.tgz#c2a09a87acbde69543de6f63fa3995c826c536a2" 1267 | integrity sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA== 1268 | 1269 | concat-map@0.0.1: 1270 | version "0.0.1" 1271 | resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b" 1272 | integrity sha1-2Klr13/Wjfd5OnMDajug1UBdR3s= 1273 | 1274 | convert-source-map@^1.7.0: 1275 | version "1.7.0" 1276 | resolved "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-1.7.0.tgz#17a2cb882d7f77d3490585e2ce6c524424a3a442" 1277 | integrity sha512-4FJkXzKXEDB1snCFZlLP4gpC3JILicCpGbzG9f9G7tGqGCzETQ2hWPrcinA9oU4wtf2biUaEH5065UnMeR33oA== 1278 | dependencies: 1279 | safe-buffer "~5.1.1" 1280 | 1281 | core-js-compat@^3.6.2: 1282 | version "3.6.5" 1283 | resolved "https://registry.yarnpkg.com/core-js-compat/-/core-js-compat-3.6.5.tgz#2a51d9a4e25dfd6e690251aa81f99e3c05481f1c" 1284 | integrity sha512-7ItTKOhOZbznhXAQ2g/slGg1PJV5zDO/WdkTwi7UEOJmkvsE32PWvx6mKtDjiMpjnR2CNf6BAD6sSxIlv7ptng== 1285 | dependencies: 1286 | browserslist "^4.8.5" 1287 | semver "7.0.0" 1288 | 1289 | cosmiconfig@^6.0.0: 1290 | version "6.0.0" 1291 | resolved "https://registry.yarnpkg.com/cosmiconfig/-/cosmiconfig-6.0.0.tgz#da4fee853c52f6b1e6935f41c1a2fc50bd4a9982" 1292 | integrity sha512-xb3ZL6+L8b9JLLCx3ZdoZy4+2ECphCMo2PwqgP1tlfVq6M6YReyzBJtvWWtbDSpNr9hn96pkCiZqUcFEc+54Qg== 1293 | dependencies: 1294 | "@types/parse-json" "^4.0.0" 1295 | import-fresh "^3.1.0" 1296 | parse-json "^5.0.0" 1297 | path-type "^4.0.0" 1298 | yaml "^1.7.2" 1299 | 1300 | cross-spawn@^5.0.1: 1301 | version "5.1.0" 1302 | resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-5.1.0.tgz#e8bd0efee58fcff6f8f94510a0a554bbfa235449" 1303 | integrity sha1-6L0O/uWPz/b4+UUQoKVUu/ojVEk= 1304 | dependencies: 1305 | lru-cache "^4.0.1" 1306 | shebang-command "^1.2.0" 1307 | which "^1.2.9" 1308 | 1309 | cross-spawn@^6.0.0: 1310 | version "6.0.5" 1311 | resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-6.0.5.tgz#4a5ec7c64dfae22c3a14124dbacdee846d80cbc4" 1312 | integrity sha512-eTVLrBSt7fjbDygz805pMnstIs2VTBNkRm0qxZd+M7A5XDdxVRWO5MxGBXZhjY4cqLYLdtrGqRf8mBPmzwSpWQ== 1313 | dependencies: 1314 | nice-try "^1.0.4" 1315 | path-key "^2.0.1" 1316 | semver "^5.5.0" 1317 | shebang-command "^1.2.0" 1318 | which "^1.2.9" 1319 | 1320 | cross-spawn@^7.0.3: 1321 | version "7.0.3" 1322 | resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-7.0.3.tgz#f73a85b9d5d41d045551c177e2882d4ac85728a6" 1323 | integrity sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w== 1324 | dependencies: 1325 | path-key "^3.1.0" 1326 | shebang-command "^2.0.0" 1327 | which "^2.0.1" 1328 | 1329 | csstype@^3.0.2: 1330 | version "3.0.3" 1331 | resolved "https://registry.yarnpkg.com/csstype/-/csstype-3.0.3.tgz#2b410bbeba38ba9633353aff34b05d9755d065f8" 1332 | integrity sha512-jPl+wbWPOWJ7SXsWyqGRk3lGecbar0Cb0OvZF/r/ZU011R4YqiRehgkQ9p4eQfo9DSDLqLL3wHwfxeJiuIsNag== 1333 | 1334 | debug@^4.1.0: 1335 | version "4.2.0" 1336 | resolved "https://registry.yarnpkg.com/debug/-/debug-4.2.0.tgz#7f150f93920e94c58f5574c2fd01a3110effe7f1" 1337 | integrity sha512-IX2ncY78vDTjZMFUdmsvIRFY2Cf4FnD0wRs+nQwJU8Lu99/tPFdb0VybiiMTPe3I6rQmwsqQqRBvxU+bZ/I8sg== 1338 | dependencies: 1339 | ms "2.1.2" 1340 | 1341 | decamelize@^1.2.0: 1342 | version "1.2.0" 1343 | resolved "https://registry.yarnpkg.com/decamelize/-/decamelize-1.2.0.tgz#f6534d15148269b20352e7bee26f501f9a191290" 1344 | integrity sha1-9lNNFRSCabIDUue+4m9QH5oZEpA= 1345 | 1346 | decompress-response@^3.3.0: 1347 | version "3.3.0" 1348 | resolved "https://registry.yarnpkg.com/decompress-response/-/decompress-response-3.3.0.tgz#80a4dd323748384bfa248083622aedec982adff3" 1349 | integrity sha1-gKTdMjdIOEv6JICDYirt7Jgq3/M= 1350 | dependencies: 1351 | mimic-response "^1.0.0" 1352 | 1353 | dedent@^0.7.0: 1354 | version "0.7.0" 1355 | resolved "https://registry.yarnpkg.com/dedent/-/dedent-0.7.0.tgz#2495ddbaf6eb874abb0e1be9df22d2e5a544326c" 1356 | integrity sha1-JJXduvbrh0q7Dhvp3yLS5aVEMmw= 1357 | 1358 | defer-to-connect@^1.0.1: 1359 | version "1.1.3" 1360 | resolved "https://registry.yarnpkg.com/defer-to-connect/-/defer-to-connect-1.1.3.tgz#331ae050c08dcf789f8c83a7b81f0ed94f4ac591" 1361 | integrity sha512-0ISdNousHvZT2EiFlZeZAHBUvSxmKswVCEf8hW7KWgG4a8MVEu/3Vb6uWYozkjylyCxe0JBIiRB1jV45S70WVQ== 1362 | 1363 | define-properties@^1.1.3: 1364 | version "1.1.3" 1365 | resolved "https://registry.yarnpkg.com/define-properties/-/define-properties-1.1.3.tgz#cf88da6cbee26fe6db7094f61d870cbd84cee9f1" 1366 | integrity sha512-3MqfYKj2lLzdMSf8ZIZE/V+Zuy+BgD6f164e8K2w7dgnpKArBDerGYpM46IYYcjnkdPNMjPk9A6VFB8+3SKlXQ== 1367 | dependencies: 1368 | object-keys "^1.0.12" 1369 | 1370 | del@^5.1.0: 1371 | version "5.1.0" 1372 | resolved "https://registry.yarnpkg.com/del/-/del-5.1.0.tgz#d9487c94e367410e6eff2925ee58c0c84a75b3a7" 1373 | integrity sha512-wH9xOVHnczo9jN2IW68BabcecVPxacIA3g/7z6vhSU/4stOKQzeCRK0yD0A24WiAAUJmmVpWqrERcTxnLo3AnA== 1374 | dependencies: 1375 | globby "^10.0.1" 1376 | graceful-fs "^4.2.2" 1377 | is-glob "^4.0.1" 1378 | is-path-cwd "^2.2.0" 1379 | is-path-inside "^3.0.1" 1380 | p-map "^3.0.0" 1381 | rimraf "^3.0.0" 1382 | slash "^3.0.0" 1383 | 1384 | dir-glob@^3.0.1: 1385 | version "3.0.1" 1386 | resolved "https://registry.yarnpkg.com/dir-glob/-/dir-glob-3.0.1.tgz#56dbf73d992a4a93ba1584f4534063fd2e41717f" 1387 | integrity sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA== 1388 | dependencies: 1389 | path-type "^4.0.0" 1390 | 1391 | duplexer3@^0.1.4: 1392 | version "0.1.4" 1393 | resolved "https://registry.yarnpkg.com/duplexer3/-/duplexer3-0.1.4.tgz#ee01dd1cac0ed3cbc7fdbea37dc0a8f1ce002ce2" 1394 | integrity sha1-7gHdHKwO08vH/b6jfcCo8c4ALOI= 1395 | 1396 | ejs@^3.1.3: 1397 | version "3.1.5" 1398 | resolved "https://registry.yarnpkg.com/ejs/-/ejs-3.1.5.tgz#aed723844dc20acb4b170cd9ab1017e476a0d93b" 1399 | integrity sha512-dldq3ZfFtgVTJMLjOe+/3sROTzALlL9E34V4/sDtUd/KlBSS0s6U1/+WPE1B4sj9CXHJpL1M6rhNJnc9Wbal9w== 1400 | dependencies: 1401 | jake "^10.6.1" 1402 | 1403 | electron-to-chromium@^1.3.571: 1404 | version "1.3.578" 1405 | resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.3.578.tgz#e6671936f4571a874eb26e2e833aa0b2c0b776e0" 1406 | integrity sha512-z4gU6dA1CbBJsAErW5swTGAaU2TBzc2mPAonJb00zqW1rOraDo2zfBMDRvaz9cVic+0JEZiYbHWPw/fTaZlG2Q== 1407 | 1408 | emoji-regex@^8.0.0: 1409 | version "8.0.0" 1410 | resolved "https://registry.yarnpkg.com/emoji-regex/-/emoji-regex-8.0.0.tgz#e818fd69ce5ccfcb404594f842963bf53164cc37" 1411 | integrity sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A== 1412 | 1413 | end-of-stream@^1.1.0: 1414 | version "1.4.4" 1415 | resolved "https://registry.yarnpkg.com/end-of-stream/-/end-of-stream-1.4.4.tgz#5ae64a5f45057baf3626ec14da0ca5e4b2431eb0" 1416 | integrity sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q== 1417 | dependencies: 1418 | once "^1.4.0" 1419 | 1420 | error-ex@^1.3.1: 1421 | version "1.3.2" 1422 | resolved "https://registry.yarnpkg.com/error-ex/-/error-ex-1.3.2.tgz#b4ac40648107fdcdcfae242f428bea8a14d4f1bf" 1423 | integrity sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g== 1424 | dependencies: 1425 | is-arrayish "^0.2.1" 1426 | 1427 | es-abstract@^1.17.5: 1428 | version "1.17.7" 1429 | resolved "https://registry.yarnpkg.com/es-abstract/-/es-abstract-1.17.7.tgz#a4de61b2f66989fc7421676c1cb9787573ace54c" 1430 | integrity sha512-VBl/gnfcJ7OercKA9MVaegWsBHFjV492syMudcnQZvt/Dw8ezpcOHYZXa/J96O8vx+g4x65YKhxOwDUh63aS5g== 1431 | dependencies: 1432 | es-to-primitive "^1.2.1" 1433 | function-bind "^1.1.1" 1434 | has "^1.0.3" 1435 | has-symbols "^1.0.1" 1436 | is-callable "^1.2.2" 1437 | is-regex "^1.1.1" 1438 | object-inspect "^1.8.0" 1439 | object-keys "^1.1.1" 1440 | object.assign "^4.1.1" 1441 | string.prototype.trimend "^1.0.1" 1442 | string.prototype.trimstart "^1.0.1" 1443 | 1444 | es-abstract@^1.18.0-next.0: 1445 | version "1.18.0-next.1" 1446 | resolved "https://registry.yarnpkg.com/es-abstract/-/es-abstract-1.18.0-next.1.tgz#6e3a0a4bda717e5023ab3b8e90bec36108d22c68" 1447 | integrity sha512-I4UGspA0wpZXWENrdA0uHbnhte683t3qT/1VFH9aX2dA5PPSf6QW5HHXf5HImaqPmjXaVeVk4RGWnaylmV7uAA== 1448 | dependencies: 1449 | es-to-primitive "^1.2.1" 1450 | function-bind "^1.1.1" 1451 | has "^1.0.3" 1452 | has-symbols "^1.0.1" 1453 | is-callable "^1.2.2" 1454 | is-negative-zero "^2.0.0" 1455 | is-regex "^1.1.1" 1456 | object-inspect "^1.8.0" 1457 | object-keys "^1.1.1" 1458 | object.assign "^4.1.1" 1459 | string.prototype.trimend "^1.0.1" 1460 | string.prototype.trimstart "^1.0.1" 1461 | 1462 | es-to-primitive@^1.2.1: 1463 | version "1.2.1" 1464 | resolved "https://registry.yarnpkg.com/es-to-primitive/-/es-to-primitive-1.2.1.tgz#e55cd4c9cdc188bcefb03b366c736323fc5c898a" 1465 | integrity sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA== 1466 | dependencies: 1467 | is-callable "^1.1.4" 1468 | is-date-object "^1.0.1" 1469 | is-symbol "^1.0.2" 1470 | 1471 | escalade@^3.1.0: 1472 | version "3.1.0" 1473 | resolved "https://registry.yarnpkg.com/escalade/-/escalade-3.1.0.tgz#e8e2d7c7a8b76f6ee64c2181d6b8151441602d4e" 1474 | integrity sha512-mAk+hPSO8fLDkhV7V0dXazH5pDc6MrjBTPyD3VeKzxnVFjH1MIxbCdqGZB9O8+EwWakZs3ZCbDS4IpRt79V1ig== 1475 | 1476 | escape-string-regexp@^1.0.5: 1477 | version "1.0.5" 1478 | resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4" 1479 | integrity sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ= 1480 | 1481 | esutils@^2.0.2: 1482 | version "2.0.3" 1483 | resolved "https://registry.yarnpkg.com/esutils/-/esutils-2.0.3.tgz#74d2eb4de0b8da1293711910d50775b9b710ef64" 1484 | integrity sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g== 1485 | 1486 | execa@^0.10.0: 1487 | version "0.10.0" 1488 | resolved "https://registry.yarnpkg.com/execa/-/execa-0.10.0.tgz#ff456a8f53f90f8eccc71a96d11bdfc7f082cb50" 1489 | integrity sha512-7XOMnz8Ynx1gGo/3hyV9loYNPWM94jG3+3T3Y8tsfSstFmETmENCMU/A/zj8Lyaj1lkgEepKepvd6240tBRvlw== 1490 | dependencies: 1491 | cross-spawn "^6.0.0" 1492 | get-stream "^3.0.0" 1493 | is-stream "^1.1.0" 1494 | npm-run-path "^2.0.0" 1495 | p-finally "^1.0.0" 1496 | signal-exit "^3.0.0" 1497 | strip-eof "^1.0.0" 1498 | 1499 | execa@^0.6.1: 1500 | version "0.6.3" 1501 | resolved "https://registry.yarnpkg.com/execa/-/execa-0.6.3.tgz#57b69a594f081759c69e5370f0d17b9cb11658fe" 1502 | integrity sha1-V7aaWU8IF1nGnlNw8NF7nLEWWP4= 1503 | dependencies: 1504 | cross-spawn "^5.0.1" 1505 | get-stream "^3.0.0" 1506 | is-stream "^1.1.0" 1507 | npm-run-path "^2.0.0" 1508 | p-finally "^1.0.0" 1509 | signal-exit "^3.0.0" 1510 | strip-eof "^1.0.0" 1511 | 1512 | external-editor@^3.0.3: 1513 | version "3.1.0" 1514 | resolved "https://registry.yarnpkg.com/external-editor/-/external-editor-3.1.0.tgz#cb03f740befae03ea4d283caed2741a83f335495" 1515 | integrity sha512-hMQ4CX1p1izmuLYyZqLMO/qGNw10wSv9QDCPfzXfyFrOaCSSoRfqE1Kf1s5an66J5JZC62NewG+mK49jOCtQew== 1516 | dependencies: 1517 | chardet "^0.7.0" 1518 | iconv-lite "^0.4.24" 1519 | tmp "^0.0.33" 1520 | 1521 | fast-glob@^3.0.3: 1522 | version "3.2.4" 1523 | resolved "https://registry.yarnpkg.com/fast-glob/-/fast-glob-3.2.4.tgz#d20aefbf99579383e7f3cc66529158c9b98554d3" 1524 | integrity sha512-kr/Oo6PX51265qeuCYsyGypiO5uJFgBS0jksyG7FUeCyQzNwYnzrNIMR1NXfkZXsMYXYLRAHgISHBz8gQcxKHQ== 1525 | dependencies: 1526 | "@nodelib/fs.stat" "^2.0.2" 1527 | "@nodelib/fs.walk" "^1.2.3" 1528 | glob-parent "^5.1.0" 1529 | merge2 "^1.3.0" 1530 | micromatch "^4.0.2" 1531 | picomatch "^2.2.1" 1532 | 1533 | fastq@^1.6.0: 1534 | version "1.8.0" 1535 | resolved "https://registry.yarnpkg.com/fastq/-/fastq-1.8.0.tgz#550e1f9f59bbc65fe185cb6a9b4d95357107f481" 1536 | integrity sha512-SMIZoZdLh/fgofivvIkmknUXyPnvxRE3DhtZ5Me3Mrsk5gyPL42F0xr51TdRXskBxHfMp+07bcYzfsYEsSQA9Q== 1537 | dependencies: 1538 | reusify "^1.0.4" 1539 | 1540 | figures@^3.0.0: 1541 | version "3.2.0" 1542 | resolved "https://registry.yarnpkg.com/figures/-/figures-3.2.0.tgz#625c18bd293c604dc4a8ddb2febf0c88341746af" 1543 | integrity sha512-yaduQFRKLXYOGgEn6AZau90j3ggSOyiqXU0F9JZfeXYhNa+Jk4X+s45A2zg5jns87GAFa34BBm2kXw4XpNcbdg== 1544 | dependencies: 1545 | escape-string-regexp "^1.0.5" 1546 | 1547 | filelist@^1.0.1: 1548 | version "1.0.1" 1549 | resolved "https://registry.yarnpkg.com/filelist/-/filelist-1.0.1.tgz#f10d1a3ae86c1694808e8f20906f43d4c9132dbb" 1550 | integrity sha512-8zSK6Nu0DQIC08mUC46sWGXi+q3GGpKydAG36k+JDba6VRpkevvOWUW5a/PhShij4+vHT9M+ghgG7eM+a9JDUQ== 1551 | dependencies: 1552 | minimatch "^3.0.4" 1553 | 1554 | fill-range@^7.0.1: 1555 | version "7.0.1" 1556 | resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-7.0.1.tgz#1919a6a7c75fe38b2c7c77e5198535da9acdda40" 1557 | integrity sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ== 1558 | dependencies: 1559 | to-regex-range "^5.0.1" 1560 | 1561 | find-up@^4.1.0: 1562 | version "4.1.0" 1563 | resolved "https://registry.yarnpkg.com/find-up/-/find-up-4.1.0.tgz#97afe7d6cdc0bc5928584b7c8d7b16e8a9aa5d19" 1564 | integrity sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw== 1565 | dependencies: 1566 | locate-path "^5.0.0" 1567 | path-exists "^4.0.0" 1568 | 1569 | fs-extra@^9.0.1: 1570 | version "9.0.1" 1571 | resolved "https://registry.yarnpkg.com/fs-extra/-/fs-extra-9.0.1.tgz#910da0062437ba4c39fedd863f1675ccfefcb9fc" 1572 | integrity sha512-h2iAoN838FqAFJY2/qVpzFXy+EBxfVE220PalAqQLDVsFOHLJrZvut5puAbCdNv6WJk+B8ihI+k0c7JK5erwqQ== 1573 | dependencies: 1574 | at-least-node "^1.0.0" 1575 | graceful-fs "^4.2.0" 1576 | jsonfile "^6.0.1" 1577 | universalify "^1.0.0" 1578 | 1579 | fs.realpath@^1.0.0: 1580 | version "1.0.0" 1581 | resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f" 1582 | integrity sha1-FQStJSMVjKpA20onh8sBQRmU6k8= 1583 | 1584 | function-bind@^1.1.1: 1585 | version "1.1.1" 1586 | resolved "https://registry.yarnpkg.com/function-bind/-/function-bind-1.1.1.tgz#a56899d3ea3c9bab874bb9773b7c5ede92f4895d" 1587 | integrity sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A== 1588 | 1589 | gensync@^1.0.0-beta.1: 1590 | version "1.0.0-beta.1" 1591 | resolved "https://registry.yarnpkg.com/gensync/-/gensync-1.0.0-beta.1.tgz#58f4361ff987e5ff6e1e7a210827aa371eaac269" 1592 | integrity sha512-r8EC6NO1sngH/zdD9fiRDLdcgnbayXah+mLgManTaIZJqEC1MZstmnox8KpnI2/fxQwrp5OpCOYWLp4rBl4Jcg== 1593 | 1594 | get-caller-file@^2.0.1: 1595 | version "2.0.5" 1596 | resolved "https://registry.yarnpkg.com/get-caller-file/-/get-caller-file-2.0.5.tgz#4f94412a82db32f36e3b0b9741f8a97feb031f7e" 1597 | integrity sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg== 1598 | 1599 | get-stream@^3.0.0: 1600 | version "3.0.0" 1601 | resolved "https://registry.yarnpkg.com/get-stream/-/get-stream-3.0.0.tgz#8e943d1358dc37555054ecbe2edb05aa174ede14" 1602 | integrity sha1-jpQ9E1jcN1VQVOy+LtsFqhdO3hQ= 1603 | 1604 | get-stream@^4.1.0: 1605 | version "4.1.0" 1606 | resolved "https://registry.yarnpkg.com/get-stream/-/get-stream-4.1.0.tgz#c1b255575f3dc21d59bfc79cd3d2b46b1c3a54b5" 1607 | integrity sha512-GMat4EJ5161kIy2HevLlr4luNjBgvmj413KaQA7jt4V8B4RDsfpHk7WQ9GVqfYyyx8OS/L66Kox+rJRNklLK7w== 1608 | dependencies: 1609 | pump "^3.0.0" 1610 | 1611 | get-stream@^5.1.0: 1612 | version "5.2.0" 1613 | resolved "https://registry.yarnpkg.com/get-stream/-/get-stream-5.2.0.tgz#4966a1795ee5ace65e706c4b7beb71257d6e22d3" 1614 | integrity sha512-nBF+F1rAZVCu/p7rjzgA+Yb4lfYXrpl7a6VmJrU8wF9I1CKvP/QwPNZHnOlwbTkY6dvtFIzFMSyQXbLoTQPRpA== 1615 | dependencies: 1616 | pump "^3.0.0" 1617 | 1618 | gh-got@^8.1.0: 1619 | version "8.1.0" 1620 | resolved "https://registry.yarnpkg.com/gh-got/-/gh-got-8.1.0.tgz#2378d07ac293f524549c75f8dc6f3604a885ab01" 1621 | integrity sha512-Jy7+73XqsAVeAtM5zA0dd+A7mmzkQVIzFuw3xRjFbPsQVqS+aeci8v8H1heOCAPlBYWED5ZYPhlYqZVXdD3Fmg== 1622 | dependencies: 1623 | got "^9.5.0" 1624 | 1625 | github-username@^5.0.1: 1626 | version "5.0.1" 1627 | resolved "https://registry.yarnpkg.com/github-username/-/github-username-5.0.1.tgz#f4e8c2cd7a3247bd75ae2841f5f69347f5b4c1f0" 1628 | integrity sha512-HxFIz5tIQDoiob2ienSKLHoCSFFC6F79IcnM5E5KNAxkxMjvpuUSE7K4fU2n51fwo0idT0ZsMFZIUy4SIPXoVA== 1629 | dependencies: 1630 | gh-got "^8.1.0" 1631 | 1632 | glob-parent@^5.1.0: 1633 | version "5.1.1" 1634 | resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-5.1.1.tgz#b6c1ef417c4e5663ea498f1c45afac6916bbc229" 1635 | integrity sha512-FnI+VGOpnlGHWZxthPGR+QhR78fuiK0sNLkHQv+bL9fQi57lNNdquIbna/WrfROrolq8GK5Ek6BiMwqL/voRYQ== 1636 | dependencies: 1637 | is-glob "^4.0.1" 1638 | 1639 | glob@^7.1.3, glob@^7.1.6: 1640 | version "7.1.6" 1641 | resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.6.tgz#141f33b81a7c2492e125594307480c46679278a6" 1642 | integrity sha512-LwaxwyZ72Lk7vZINtNNrywX0ZuLyStrdDtabefZKAY5ZGJhVtgdznluResxNmPitE0SAO+O26sWTHeKSI2wMBA== 1643 | dependencies: 1644 | fs.realpath "^1.0.0" 1645 | inflight "^1.0.4" 1646 | inherits "2" 1647 | minimatch "^3.0.4" 1648 | once "^1.3.0" 1649 | path-is-absolute "^1.0.0" 1650 | 1651 | globals@^11.1.0: 1652 | version "11.12.0" 1653 | resolved "https://registry.yarnpkg.com/globals/-/globals-11.12.0.tgz#ab8795338868a0babd8525758018c2a7eb95c42e" 1654 | integrity sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA== 1655 | 1656 | globby@^10.0.1: 1657 | version "10.0.2" 1658 | resolved "https://registry.yarnpkg.com/globby/-/globby-10.0.2.tgz#277593e745acaa4646c3ab411289ec47a0392543" 1659 | integrity sha512-7dUi7RvCoT/xast/o/dLN53oqND4yk0nsHkhRgn9w65C4PofCLOoJ39iSOg+qVDdWQPIEj+eszMHQ+aLVwwQSg== 1660 | dependencies: 1661 | "@types/glob" "^7.1.1" 1662 | array-union "^2.1.0" 1663 | dir-glob "^3.0.1" 1664 | fast-glob "^3.0.3" 1665 | glob "^7.1.3" 1666 | ignore "^5.1.1" 1667 | merge2 "^1.2.3" 1668 | slash "^3.0.0" 1669 | 1670 | got@^9.5.0: 1671 | version "9.6.0" 1672 | resolved "https://registry.yarnpkg.com/got/-/got-9.6.0.tgz#edf45e7d67f99545705de1f7bbeeeb121765ed85" 1673 | integrity sha512-R7eWptXuGYxwijs0eV+v3o6+XH1IqVK8dJOEecQfTmkncw9AV4dcw/Dhxi8MdlqPthxxpZyizMzyg8RTmEsG+Q== 1674 | dependencies: 1675 | "@sindresorhus/is" "^0.14.0" 1676 | "@szmarczak/http-timer" "^1.1.2" 1677 | cacheable-request "^6.0.0" 1678 | decompress-response "^3.3.0" 1679 | duplexer3 "^0.1.4" 1680 | get-stream "^4.1.0" 1681 | lowercase-keys "^1.0.1" 1682 | mimic-response "^1.0.1" 1683 | p-cancelable "^1.0.0" 1684 | to-readable-stream "^1.0.0" 1685 | url-parse-lax "^3.0.0" 1686 | 1687 | graceful-fs@^4.1.6, graceful-fs@^4.2.0, graceful-fs@^4.2.2: 1688 | version "4.2.4" 1689 | resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.2.4.tgz#2256bde14d3632958c465ebc96dc467ca07a29fb" 1690 | integrity sha512-WjKPNJF79dtJAVniUlGGWHYGz2jWxT6VhN/4m1NdkbZ2nOsEF+cI1Edgql5zCRhs/VsQYRvrXctxktVXZUkixw== 1691 | 1692 | has-flag@^3.0.0: 1693 | version "3.0.0" 1694 | resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-3.0.0.tgz#b5d454dc2199ae225699f3467e5a07f3b955bafd" 1695 | integrity sha1-tdRU3CGZriJWmfNGfloH87lVuv0= 1696 | 1697 | has-flag@^4.0.0: 1698 | version "4.0.0" 1699 | resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-4.0.0.tgz#944771fd9c81c81265c4d6941860da06bb59479b" 1700 | integrity sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ== 1701 | 1702 | has-symbols@^1.0.1: 1703 | version "1.0.1" 1704 | resolved "https://registry.yarnpkg.com/has-symbols/-/has-symbols-1.0.1.tgz#9f5214758a44196c406d9bd76cebf81ec2dd31e8" 1705 | integrity sha512-PLcsoqu++dmEIZB+6totNFKq/7Do+Z0u4oT0zKOJNl3lYK6vGwwu2hjHs+68OEZbTjiUE9bgOABXbP/GvrS0Kg== 1706 | 1707 | has@^1.0.3: 1708 | version "1.0.3" 1709 | resolved "https://registry.yarnpkg.com/has/-/has-1.0.3.tgz#722d7cbfc1f6aa8241f16dd814e011e1f41e8796" 1710 | integrity sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw== 1711 | dependencies: 1712 | function-bind "^1.1.1" 1713 | 1714 | http-cache-semantics@^4.0.0: 1715 | version "4.1.0" 1716 | resolved "https://registry.yarnpkg.com/http-cache-semantics/-/http-cache-semantics-4.1.0.tgz#49e91c5cbf36c9b94bcfcd71c23d5249ec74e390" 1717 | integrity sha512-carPklcUh7ROWRK7Cv27RPtdhYhUsela/ue5/jKzjegVvXDqM2ILE9Q2BGn9JZJh1g87cp56su/FgQSzcWS8cQ== 1718 | 1719 | iconv-lite@^0.4.24: 1720 | version "0.4.24" 1721 | resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.4.24.tgz#2022b4b25fbddc21d2f524974a474aafe733908b" 1722 | integrity sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA== 1723 | dependencies: 1724 | safer-buffer ">= 2.1.2 < 3" 1725 | 1726 | ignore@^5.1.1: 1727 | version "5.1.8" 1728 | resolved "https://registry.yarnpkg.com/ignore/-/ignore-5.1.8.tgz#f150a8b50a34289b33e22f5889abd4d8016f0e57" 1729 | integrity sha512-BMpfD7PpiETpBl/A6S498BaIJ6Y/ABT93ETbby2fP00v4EbvPBXWEoaR1UBPKs3iR53pJY7EtZk5KACI57i1Uw== 1730 | 1731 | import-fresh@^3.1.0: 1732 | version "3.2.1" 1733 | resolved "https://registry.yarnpkg.com/import-fresh/-/import-fresh-3.2.1.tgz#633ff618506e793af5ac91bf48b72677e15cbe66" 1734 | integrity sha512-6e1q1cnWP2RXD9/keSkxHScg508CdXqXWgWBaETNhyuBFz+kUZlKboh+ISK+bU++DmbHimVBrOz/zzPe0sZ3sQ== 1735 | dependencies: 1736 | parent-module "^1.0.0" 1737 | resolve-from "^4.0.0" 1738 | 1739 | indent-string@^4.0.0: 1740 | version "4.0.0" 1741 | resolved "https://registry.yarnpkg.com/indent-string/-/indent-string-4.0.0.tgz#624f8f4497d619b2d9768531d58f4122854d7251" 1742 | integrity sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg== 1743 | 1744 | inflight@^1.0.4: 1745 | version "1.0.6" 1746 | resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9" 1747 | integrity sha1-Sb1jMdfQLQwJvJEKEHW6gWW1bfk= 1748 | dependencies: 1749 | once "^1.3.0" 1750 | wrappy "1" 1751 | 1752 | inherits@2: 1753 | version "2.0.4" 1754 | resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.4.tgz#0fa2c64f932917c3433a0ded55363aae37416b7c" 1755 | integrity sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ== 1756 | 1757 | inquirer@^7.0.4: 1758 | version "7.3.3" 1759 | resolved "https://registry.yarnpkg.com/inquirer/-/inquirer-7.3.3.tgz#04d176b2af04afc157a83fd7c100e98ee0aad003" 1760 | integrity sha512-JG3eIAj5V9CwcGvuOmoo6LB9kbAYT8HXffUl6memuszlwDC/qvFAJw49XJ5NROSFNPxp3iQg1GqkFhaY/CR0IA== 1761 | dependencies: 1762 | ansi-escapes "^4.2.1" 1763 | chalk "^4.1.0" 1764 | cli-cursor "^3.1.0" 1765 | cli-width "^3.0.0" 1766 | external-editor "^3.0.3" 1767 | figures "^3.0.0" 1768 | lodash "^4.17.19" 1769 | mute-stream "0.0.8" 1770 | run-async "^2.4.0" 1771 | rxjs "^6.6.0" 1772 | string-width "^4.1.0" 1773 | strip-ansi "^6.0.0" 1774 | through "^2.3.6" 1775 | 1776 | invariant@^2.2.2, invariant@^2.2.4: 1777 | version "2.2.4" 1778 | resolved "https://registry.yarnpkg.com/invariant/-/invariant-2.2.4.tgz#610f3c92c9359ce1db616e538008d23ff35158e6" 1779 | integrity sha512-phJfQVBuaJM5raOpJjSfkiD6BpbCE4Ns//LaXl6wGYtUBY83nWS6Rf9tXm2e8VaK60JEjYldbPif/A2B1C2gNA== 1780 | dependencies: 1781 | loose-envify "^1.0.0" 1782 | 1783 | is-arrayish@^0.2.1: 1784 | version "0.2.1" 1785 | resolved "https://registry.yarnpkg.com/is-arrayish/-/is-arrayish-0.2.1.tgz#77c99840527aa8ecb1a8ba697b80645a7a926a9d" 1786 | integrity sha1-d8mYQFJ6qOyxqLppe4BkWnqSap0= 1787 | 1788 | is-callable@^1.1.4, is-callable@^1.2.2: 1789 | version "1.2.2" 1790 | resolved "https://registry.yarnpkg.com/is-callable/-/is-callable-1.2.2.tgz#c7c6715cd22d4ddb48d3e19970223aceabb080d9" 1791 | integrity sha512-dnMqspv5nU3LoewK2N/y7KLtxtakvTuaCsU9FU50/QDmdbHNy/4/JuRtMHqRU22o3q+W89YQndQEeCVwK+3qrA== 1792 | 1793 | is-date-object@^1.0.1: 1794 | version "1.0.2" 1795 | resolved "https://registry.yarnpkg.com/is-date-object/-/is-date-object-1.0.2.tgz#bda736f2cd8fd06d32844e7743bfa7494c3bfd7e" 1796 | integrity sha512-USlDT524woQ08aoZFzh3/Z6ch9Y/EWXEHQ/AaRN0SkKq4t2Jw2R2339tSXmwuVoY7LLlBCbOIlx2myP/L5zk0g== 1797 | 1798 | is-extglob@^2.1.1: 1799 | version "2.1.1" 1800 | resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-2.1.1.tgz#a88c02535791f02ed37c76a1b9ea9773c833f8c2" 1801 | integrity sha1-qIwCU1eR8C7TfHahueqXc8gz+MI= 1802 | 1803 | is-fullwidth-code-point@^3.0.0: 1804 | version "3.0.0" 1805 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz#f116f8064fe90b3f7844a38997c0b75051269f1d" 1806 | integrity sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg== 1807 | 1808 | is-git-dirty@^1.0.0: 1809 | version "1.0.0" 1810 | resolved "https://registry.yarnpkg.com/is-git-dirty/-/is-git-dirty-1.0.0.tgz#cd58f329ea826bd4d5388f1ef90459fe947e3b96" 1811 | integrity sha512-Qg7kqQ99B++ucplBiYvSahvPxQD63979CMv3TSJ66ZjjjulkPh4InXPAf//ZO1cq7W4d+pjGdObwS2LvXnldTQ== 1812 | dependencies: 1813 | execa "^0.10.0" 1814 | is-git-repository "^1.1.1" 1815 | 1816 | is-git-repository@^1.1.1: 1817 | version "1.1.1" 1818 | resolved "https://registry.yarnpkg.com/is-git-repository/-/is-git-repository-1.1.1.tgz#c68e4b7a806422349aaec488973a90558d7e9be0" 1819 | integrity sha1-xo5LeoBkIjSarsSIlzqQVY1+m+A= 1820 | dependencies: 1821 | execa "^0.6.1" 1822 | path-is-absolute "^1.0.1" 1823 | 1824 | is-glob@^4.0.1: 1825 | version "4.0.1" 1826 | resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-4.0.1.tgz#7567dbe9f2f5e2467bc77ab83c4a29482407a5dc" 1827 | integrity sha512-5G0tKtBTFImOqDnLB2hG6Bp2qcKEFduo4tZu9MT/H6NQv/ghhy30o55ufafxJ/LdH79LLs2Kfrn85TLKyA7BUg== 1828 | dependencies: 1829 | is-extglob "^2.1.1" 1830 | 1831 | is-negative-zero@^2.0.0: 1832 | version "2.0.0" 1833 | resolved "https://registry.yarnpkg.com/is-negative-zero/-/is-negative-zero-2.0.0.tgz#9553b121b0fac28869da9ed459e20c7543788461" 1834 | integrity sha1-lVOxIbD6wohp2p7UWeIMdUN4hGE= 1835 | 1836 | is-number@^7.0.0: 1837 | version "7.0.0" 1838 | resolved "https://registry.yarnpkg.com/is-number/-/is-number-7.0.0.tgz#7535345b896734d5f80c4d06c50955527a14f12b" 1839 | integrity sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng== 1840 | 1841 | is-path-cwd@^2.2.0: 1842 | version "2.2.0" 1843 | resolved "https://registry.yarnpkg.com/is-path-cwd/-/is-path-cwd-2.2.0.tgz#67d43b82664a7b5191fd9119127eb300048a9fdb" 1844 | integrity sha512-w942bTcih8fdJPJmQHFzkS76NEP8Kzzvmw92cXsazb8intwLqPibPPdXf4ANdKV3rYMuuQYGIWtvz9JilB3NFQ== 1845 | 1846 | is-path-inside@^3.0.1: 1847 | version "3.0.2" 1848 | resolved "https://registry.yarnpkg.com/is-path-inside/-/is-path-inside-3.0.2.tgz#f5220fc82a3e233757291dddc9c5877f2a1f3017" 1849 | integrity sha512-/2UGPSgmtqwo1ktx8NDHjuPwZWmHhO+gj0f93EkhLB5RgW9RZevWYYlIkS6zePc6U2WpOdQYIwHe9YC4DWEBVg== 1850 | 1851 | is-regex@^1.1.1: 1852 | version "1.1.1" 1853 | resolved "https://registry.yarnpkg.com/is-regex/-/is-regex-1.1.1.tgz#c6f98aacc546f6cec5468a07b7b153ab564a57b9" 1854 | integrity sha512-1+QkEcxiLlB7VEyFtyBg94e08OAsvq7FUBgApTq/w2ymCLyKJgDPsybBENVtA7XCQEgEXxKPonG+mvYRxh/LIg== 1855 | dependencies: 1856 | has-symbols "^1.0.1" 1857 | 1858 | is-stream@^1.1.0: 1859 | version "1.1.0" 1860 | resolved "https://registry.yarnpkg.com/is-stream/-/is-stream-1.1.0.tgz#12d4a3dd4e68e0b79ceb8dbc84173ae80d91ca44" 1861 | integrity sha1-EtSj3U5o4Lec6428hBc66A2RykQ= 1862 | 1863 | is-symbol@^1.0.2: 1864 | version "1.0.3" 1865 | resolved "https://registry.yarnpkg.com/is-symbol/-/is-symbol-1.0.3.tgz#38e1014b9e6329be0de9d24a414fd7441ec61937" 1866 | integrity sha512-OwijhaRSgqvhm/0ZdAcXNZt9lYdKFpcRDT5ULUuYXPoT794UNOdU+gpT6Rzo7b4V2HUl/op6GqY894AZwv9faQ== 1867 | dependencies: 1868 | has-symbols "^1.0.1" 1869 | 1870 | isexe@^2.0.0: 1871 | version "2.0.0" 1872 | resolved "https://registry.yarnpkg.com/isexe/-/isexe-2.0.0.tgz#e8fbf374dc556ff8947a10dcb0572d633f2cfa10" 1873 | integrity sha1-6PvzdNxVb/iUehDcsFctYz8s+hA= 1874 | 1875 | jake@^10.6.1: 1876 | version "10.8.2" 1877 | resolved "https://registry.yarnpkg.com/jake/-/jake-10.8.2.tgz#ebc9de8558160a66d82d0eadc6a2e58fbc500a7b" 1878 | integrity sha512-eLpKyrfG3mzvGE2Du8VoPbeSkRry093+tyNjdYaBbJS9v17knImYGNXQCUV0gLxQtF82m3E8iRb/wdSQZLoq7A== 1879 | dependencies: 1880 | async "0.9.x" 1881 | chalk "^2.4.2" 1882 | filelist "^1.0.1" 1883 | minimatch "^3.0.4" 1884 | 1885 | jetifier@^1.6.6: 1886 | version "1.6.6" 1887 | resolved "https://registry.yarnpkg.com/jetifier/-/jetifier-1.6.6.tgz#fec8bff76121444c12dc38d2dad6767c421dab68" 1888 | integrity sha512-JNAkmPeB/GS2tCRqUzRPsTOHpGDah7xP18vGJfIjZC+W2sxEHbxgJxetIjIqhjQ3yYbYNEELkM/spKLtwoOSUQ== 1889 | 1890 | "js-tokens@^3.0.0 || ^4.0.0", js-tokens@^4.0.0: 1891 | version "4.0.0" 1892 | resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-4.0.0.tgz#19203fb59991df98e3a287050d4647cdeaf32499" 1893 | integrity sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ== 1894 | 1895 | jsesc@^2.5.1: 1896 | version "2.5.2" 1897 | resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-2.5.2.tgz#80564d2e483dacf6e8ef209650a67df3f0c283a4" 1898 | integrity sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA== 1899 | 1900 | jsesc@~0.5.0: 1901 | version "0.5.0" 1902 | resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-0.5.0.tgz#e7dee66e35d6fc16f710fe91d5cf69f70f08911d" 1903 | integrity sha1-597mbjXW/Bb3EP6R1c9p9w8IkR0= 1904 | 1905 | json-buffer@3.0.0: 1906 | version "3.0.0" 1907 | resolved "https://registry.yarnpkg.com/json-buffer/-/json-buffer-3.0.0.tgz#5b1f397afc75d677bde8bcfc0e47e1f9a3d9a898" 1908 | integrity sha1-Wx85evx11ne96Lz8Dkfh+aPZqJg= 1909 | 1910 | json-parse-even-better-errors@^2.3.0: 1911 | version "2.3.1" 1912 | resolved "https://registry.yarnpkg.com/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz#7c47805a94319928e05777405dc12e1f7a4ee02d" 1913 | integrity sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w== 1914 | 1915 | json5@^2.1.2, json5@^2.1.3: 1916 | version "2.1.3" 1917 | resolved "https://registry.yarnpkg.com/json5/-/json5-2.1.3.tgz#c9b0f7fa9233bfe5807fe66fcf3a5617ed597d43" 1918 | integrity sha512-KXPvOm8K9IJKFM0bmdn8QXh7udDh1g/giieX0NLCaMnb4hEiVFqnop2ImTXCc5e0/oHz3LTqmHGtExn5hfMkOA== 1919 | dependencies: 1920 | minimist "^1.2.5" 1921 | 1922 | jsonfile@^6.0.1: 1923 | version "6.0.1" 1924 | resolved "https://registry.yarnpkg.com/jsonfile/-/jsonfile-6.0.1.tgz#98966cba214378c8c84b82e085907b40bf614179" 1925 | integrity sha512-jR2b5v7d2vIOust+w3wtFKZIfpC2pnRmFAhAC/BuweZFQR8qZzxH1OyrQ10HmdVYiXWkYUqPVsz91cG7EL2FBg== 1926 | dependencies: 1927 | universalify "^1.0.0" 1928 | optionalDependencies: 1929 | graceful-fs "^4.1.6" 1930 | 1931 | keyv@^3.0.0: 1932 | version "3.1.0" 1933 | resolved "https://registry.yarnpkg.com/keyv/-/keyv-3.1.0.tgz#ecc228486f69991e49e9476485a5be1e8fc5c4d9" 1934 | integrity sha512-9ykJ/46SN/9KPM/sichzQ7OvXyGDYKGTaDlKMGCAlg2UK8KRy4jb0d8sFc+0Tt0YYnThq8X2RZgCg74RPxgcVA== 1935 | dependencies: 1936 | json-buffer "3.0.0" 1937 | 1938 | leven@^3.1.0: 1939 | version "3.1.0" 1940 | resolved "https://registry.yarnpkg.com/leven/-/leven-3.1.0.tgz#77891de834064cccba82ae7842bb6b14a13ed7f2" 1941 | integrity sha512-qsda+H8jTaUaN/x5vzW2rzc+8Rw4TAQ/4KjB46IwK5VH+IlVeeeje/EoZRpiXvIqjFgK84QffqPztGI3VBLG1A== 1942 | 1943 | levenary@^1.1.1: 1944 | version "1.1.1" 1945 | resolved "https://registry.yarnpkg.com/levenary/-/levenary-1.1.1.tgz#842a9ee98d2075aa7faeedbe32679e9205f46f77" 1946 | integrity sha512-mkAdOIt79FD6irqjYSs4rdbnlT5vRonMEvBVPVb3XmevfS8kgRXwfes0dhPdEtzTWD/1eNE/Bm/G1iRt6DcnQQ== 1947 | dependencies: 1948 | leven "^3.1.0" 1949 | 1950 | lines-and-columns@^1.1.6: 1951 | version "1.1.6" 1952 | resolved "https://registry.yarnpkg.com/lines-and-columns/-/lines-and-columns-1.1.6.tgz#1c00c743b433cd0a4e80758f7b64a57440d9ff00" 1953 | integrity sha1-HADHQ7QzzQpOgHWPe2SldEDZ/wA= 1954 | 1955 | locate-path@^5.0.0: 1956 | version "5.0.0" 1957 | resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-5.0.0.tgz#1afba396afd676a6d42504d0a67a3a7eb9f62aa0" 1958 | integrity sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g== 1959 | dependencies: 1960 | p-locate "^4.1.0" 1961 | 1962 | lodash@^4.17.19: 1963 | version "4.17.20" 1964 | resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.20.tgz#b44a9b6297bcb698f1c51a3545a2b3b368d59c52" 1965 | integrity sha512-PlhdFcillOINfeV7Ni6oF1TAEayyZBoZ8bcshTHqOYJYlrqzRK5hagpagky5o4HfCzzd1TRkXPMFq6cKk9rGmA== 1966 | 1967 | loose-envify@^1.0.0: 1968 | version "1.4.0" 1969 | resolved "https://registry.yarnpkg.com/loose-envify/-/loose-envify-1.4.0.tgz#71ee51fa7be4caec1a63839f7e682d8132d30caf" 1970 | integrity sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q== 1971 | dependencies: 1972 | js-tokens "^3.0.0 || ^4.0.0" 1973 | 1974 | lowercase-keys@^1.0.0, lowercase-keys@^1.0.1: 1975 | version "1.0.1" 1976 | resolved "https://registry.yarnpkg.com/lowercase-keys/-/lowercase-keys-1.0.1.tgz#6f9e30b47084d971a7c820ff15a6c5167b74c26f" 1977 | integrity sha512-G2Lj61tXDnVFFOi8VZds+SoQjtQC3dgokKdDG2mTm1tx4m50NUHBOZSBwQQHyy0V12A0JTG4icfZQH+xPyh8VA== 1978 | 1979 | lowercase-keys@^2.0.0: 1980 | version "2.0.0" 1981 | resolved "https://registry.yarnpkg.com/lowercase-keys/-/lowercase-keys-2.0.0.tgz#2603e78b7b4b0006cbca2fbcc8a3202558ac9479" 1982 | integrity sha512-tqNXrS78oMOE73NMxK4EMLQsQowWf8jKooH9g7xPavRT706R6bkQJ6DY2Te7QukaZsulxa30wQ7bk0pm4XiHmA== 1983 | 1984 | lru-cache@^4.0.1: 1985 | version "4.1.5" 1986 | resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-4.1.5.tgz#8bbe50ea85bed59bc9e33dcab8235ee9bcf443cd" 1987 | integrity sha512-sWZlbEP2OsHNkXrMl5GYk/jKk70MBng6UU4YI/qGDYbgf6YbP4EvmqISbXCoJiRKs+1bSpFHVgQxvJ17F2li5g== 1988 | dependencies: 1989 | pseudomap "^1.0.2" 1990 | yallist "^2.1.2" 1991 | 1992 | merge2@^1.2.3, merge2@^1.3.0: 1993 | version "1.4.1" 1994 | resolved "https://registry.yarnpkg.com/merge2/-/merge2-1.4.1.tgz#4368892f885e907455a6fd7dc55c0c9d404990ae" 1995 | integrity sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg== 1996 | 1997 | micromatch@^4.0.2: 1998 | version "4.0.2" 1999 | resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-4.0.2.tgz#4fcb0999bf9fbc2fcbdd212f6d629b9a56c39259" 2000 | integrity sha512-y7FpHSbMUMoyPbYUSzO6PaZ6FyRnQOpHuKwbo1G+Knck95XVU4QAiKdGEnj5wwoS7PlOgthX/09u5iFJ+aYf5Q== 2001 | dependencies: 2002 | braces "^3.0.1" 2003 | picomatch "^2.0.5" 2004 | 2005 | mimic-fn@^2.1.0: 2006 | version "2.1.0" 2007 | resolved "https://registry.yarnpkg.com/mimic-fn/-/mimic-fn-2.1.0.tgz#7ed2c2ccccaf84d3ffcb7a69b57711fc2083401b" 2008 | integrity sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg== 2009 | 2010 | mimic-response@^1.0.0, mimic-response@^1.0.1: 2011 | version "1.0.1" 2012 | resolved "https://registry.yarnpkg.com/mimic-response/-/mimic-response-1.0.1.tgz#4923538878eef42063cb8a3e3b0798781487ab1b" 2013 | integrity sha512-j5EctnkH7amfV/q5Hgmoal1g2QHFJRraOtmx0JpIqkxhBhI/lJSl1nMpQ45hVarwNETOoWEimndZ4QK0RHxuxQ== 2014 | 2015 | minimatch@^3.0.4: 2016 | version "3.0.4" 2017 | resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.0.4.tgz#5166e286457f03306064be5497e8dbb0c3d32083" 2018 | integrity sha512-yJHVQEhyqPLUTgt9B83PXu6W3rx4MvvHvSUvToogpwoGDOUQ+yDrR0HRot+yOCdCO7u4hX3pWft6kWBBcqh0UA== 2019 | dependencies: 2020 | brace-expansion "^1.1.7" 2021 | 2022 | minimist@^1.2.5: 2023 | version "1.2.5" 2024 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.5.tgz#67d66014b66a6a8aaa0c083c5fd58df4e4e97602" 2025 | integrity sha512-FM9nNUYrRBAELZQT3xeZQ7fmMOBg6nWNmJKTcgsJeaLstP/UODVpGsr5OhXhhXg6f+qtJ8uiZ+PUxkDWcgIXLw== 2026 | 2027 | ms@2.1.2: 2028 | version "2.1.2" 2029 | resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.2.tgz#d09d1f357b443f493382a8eb3ccd183872ae6009" 2030 | integrity sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w== 2031 | 2032 | mute-stream@0.0.8: 2033 | version "0.0.8" 2034 | resolved "https://registry.yarnpkg.com/mute-stream/-/mute-stream-0.0.8.tgz#1630c42b2251ff81e2a283de96a5497ea92e5e0d" 2035 | integrity sha512-nnbWWOkoWyUsTjKrhgD0dcz22mdkSnpYqbEjIm2nhwhuxlSkpywJmBo8h0ZqJdkp73mb90SssHkN4rsRaBAfAA== 2036 | 2037 | nice-try@^1.0.4: 2038 | version "1.0.5" 2039 | resolved "https://registry.yarnpkg.com/nice-try/-/nice-try-1.0.5.tgz#a3378a7696ce7d223e88fc9b764bd7ef1089e366" 2040 | integrity sha512-1nh45deeb5olNY7eX82BkPO7SSxR5SSYJiPTrTdFUVYwAl8CKMA5N9PjTYkHiRjisVcxcQ1HXdLhx2qxxJzLNQ== 2041 | 2042 | node-releases@^1.1.61: 2043 | version "1.1.61" 2044 | resolved "https://registry.yarnpkg.com/node-releases/-/node-releases-1.1.61.tgz#707b0fca9ce4e11783612ba4a2fcba09047af16e" 2045 | integrity sha512-DD5vebQLg8jLCOzwupn954fbIiZht05DAZs0k2u8NStSe6h9XdsuIQL8hSRKYiU8WUQRznmSDrKGbv3ObOmC7g== 2046 | 2047 | normalize-url@^4.1.0: 2048 | version "4.5.0" 2049 | resolved "https://registry.yarnpkg.com/normalize-url/-/normalize-url-4.5.0.tgz#453354087e6ca96957bd8f5baf753f5982142129" 2050 | integrity sha512-2s47yzUxdexf1OhyRi4Em83iQk0aPvwTddtFz4hnSSw9dCEsLEGf6SwIO8ss/19S9iBb5sJaOuTvTGDeZI00BQ== 2051 | 2052 | npm-run-path@^2.0.0: 2053 | version "2.0.2" 2054 | resolved "https://registry.yarnpkg.com/npm-run-path/-/npm-run-path-2.0.2.tgz#35a9232dfa35d7067b4cb2ddf2357b1871536c5f" 2055 | integrity sha1-NakjLfo11wZ7TLLd8jV7GHFTbF8= 2056 | dependencies: 2057 | path-key "^2.0.0" 2058 | 2059 | object-inspect@^1.8.0: 2060 | version "1.8.0" 2061 | resolved "https://registry.yarnpkg.com/object-inspect/-/object-inspect-1.8.0.tgz#df807e5ecf53a609cc6bfe93eac3cc7be5b3a9d0" 2062 | integrity sha512-jLdtEOB112fORuypAyl/50VRVIBIdVQOSUUGQHzJ4xBSbit81zRarz7GThkEFZy1RceYrWYcPcBFPQwHyAc1gA== 2063 | 2064 | object-keys@^1.0.12, object-keys@^1.1.1: 2065 | version "1.1.1" 2066 | resolved "https://registry.yarnpkg.com/object-keys/-/object-keys-1.1.1.tgz#1c47f272df277f3b1daf061677d9c82e2322c60e" 2067 | integrity sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA== 2068 | 2069 | object.assign@^4.1.0, object.assign@^4.1.1: 2070 | version "4.1.1" 2071 | resolved "https://registry.yarnpkg.com/object.assign/-/object.assign-4.1.1.tgz#303867a666cdd41936ecdedfb1f8f3e32a478cdd" 2072 | integrity sha512-VT/cxmx5yaoHSOTSyrCygIDFco+RsibY2NM0a4RdEeY/4KgqezwFtK1yr3U67xYhqJSlASm2pKhLVzPj2lr4bA== 2073 | dependencies: 2074 | define-properties "^1.1.3" 2075 | es-abstract "^1.18.0-next.0" 2076 | has-symbols "^1.0.1" 2077 | object-keys "^1.1.1" 2078 | 2079 | once@^1.3.0, once@^1.3.1, once@^1.4.0: 2080 | version "1.4.0" 2081 | resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1" 2082 | integrity sha1-WDsap3WWHUsROsF9nFC6753Xa9E= 2083 | dependencies: 2084 | wrappy "1" 2085 | 2086 | onetime@^5.1.0: 2087 | version "5.1.2" 2088 | resolved "https://registry.yarnpkg.com/onetime/-/onetime-5.1.2.tgz#d0e96ebb56b07476df1dd9c4806e5237985ca45e" 2089 | integrity sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg== 2090 | dependencies: 2091 | mimic-fn "^2.1.0" 2092 | 2093 | os-tmpdir@~1.0.2: 2094 | version "1.0.2" 2095 | resolved "https://registry.yarnpkg.com/os-tmpdir/-/os-tmpdir-1.0.2.tgz#bbe67406c79aa85c5cfec766fe5734555dfa1274" 2096 | integrity sha1-u+Z0BseaqFxc/sdm/lc0VV36EnQ= 2097 | 2098 | p-cancelable@^1.0.0: 2099 | version "1.1.0" 2100 | resolved "https://registry.yarnpkg.com/p-cancelable/-/p-cancelable-1.1.0.tgz#d078d15a3af409220c886f1d9a0ca2e441ab26cc" 2101 | integrity sha512-s73XxOZ4zpt1edZYZzvhqFa6uvQc1vwUa0K0BdtIZgQMAJj9IbebH+JkgKZc9h+B05PKHLOTl4ajG1BmNrVZlw== 2102 | 2103 | p-finally@^1.0.0: 2104 | version "1.0.0" 2105 | resolved "https://registry.yarnpkg.com/p-finally/-/p-finally-1.0.0.tgz#3fbcfb15b899a44123b34b6dcc18b724336a2cae" 2106 | integrity sha1-P7z7FbiZpEEjs0ttzBi3JDNqLK4= 2107 | 2108 | p-limit@^2.2.0: 2109 | version "2.3.0" 2110 | resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-2.3.0.tgz#3dd33c647a214fdfffd835933eb086da0dc21db1" 2111 | integrity sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w== 2112 | dependencies: 2113 | p-try "^2.0.0" 2114 | 2115 | p-locate@^4.1.0: 2116 | version "4.1.0" 2117 | resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-4.1.0.tgz#a3428bb7088b3a60292f66919278b7c297ad4f07" 2118 | integrity sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A== 2119 | dependencies: 2120 | p-limit "^2.2.0" 2121 | 2122 | p-map@^3.0.0: 2123 | version "3.0.0" 2124 | resolved "https://registry.yarnpkg.com/p-map/-/p-map-3.0.0.tgz#d704d9af8a2ba684e2600d9a215983d4141a979d" 2125 | integrity sha512-d3qXVTF/s+W+CdJ5A29wywV2n8CQQYahlgz2bFiA+4eVNJbHJodPZ+/gXwPGh0bOqA+j8S+6+ckmvLGPk1QpxQ== 2126 | dependencies: 2127 | aggregate-error "^3.0.0" 2128 | 2129 | p-try@^2.0.0: 2130 | version "2.2.0" 2131 | resolved "https://registry.yarnpkg.com/p-try/-/p-try-2.2.0.tgz#cb2868540e313d61de58fafbe35ce9004d5540e6" 2132 | integrity sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ== 2133 | 2134 | parent-module@^1.0.0: 2135 | version "1.0.1" 2136 | resolved "https://registry.yarnpkg.com/parent-module/-/parent-module-1.0.1.tgz#691d2709e78c79fae3a156622452d00762caaaa2" 2137 | integrity sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g== 2138 | dependencies: 2139 | callsites "^3.0.0" 2140 | 2141 | parse-json@^5.0.0: 2142 | version "5.1.0" 2143 | resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-5.1.0.tgz#f96088cdf24a8faa9aea9a009f2d9d942c999646" 2144 | integrity sha512-+mi/lmVVNKFNVyLXV31ERiy2CY5E1/F6QtJFEzoChPRwwngMNXRDQ9GJ5WdE2Z2P4AujsOi0/+2qHID68KwfIQ== 2145 | dependencies: 2146 | "@babel/code-frame" "^7.0.0" 2147 | error-ex "^1.3.1" 2148 | json-parse-even-better-errors "^2.3.0" 2149 | lines-and-columns "^1.1.6" 2150 | 2151 | path-exists@^4.0.0: 2152 | version "4.0.0" 2153 | resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-4.0.0.tgz#513bdbe2d3b95d7762e8c1137efa195c6c61b5b3" 2154 | integrity sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w== 2155 | 2156 | path-is-absolute@^1.0.0, path-is-absolute@^1.0.1: 2157 | version "1.0.1" 2158 | resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f" 2159 | integrity sha1-F0uSaHNVNP+8es5r9TpanhtcX18= 2160 | 2161 | path-key@^2.0.0, path-key@^2.0.1: 2162 | version "2.0.1" 2163 | resolved "https://registry.yarnpkg.com/path-key/-/path-key-2.0.1.tgz#411cadb574c5a140d3a4b1910d40d80cc9f40b40" 2164 | integrity sha1-QRyttXTFoUDTpLGRDUDYDMn0C0A= 2165 | 2166 | path-key@^3.1.0: 2167 | version "3.1.1" 2168 | resolved "https://registry.yarnpkg.com/path-key/-/path-key-3.1.1.tgz#581f6ade658cbba65a0d3380de7753295054f375" 2169 | integrity sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q== 2170 | 2171 | path-parse@^1.0.6: 2172 | version "1.0.6" 2173 | resolved "https://registry.yarnpkg.com/path-parse/-/path-parse-1.0.6.tgz#d62dbb5679405d72c4737ec58600e9ddcf06d24c" 2174 | integrity sha512-GSmOT2EbHrINBf9SR7CDELwlJ8AENk3Qn7OikK4nFYAu3Ote2+JYNVvkpAEQm3/TLNEJFD/xZJjzyxg3KBWOzw== 2175 | 2176 | path-type@^4.0.0: 2177 | version "4.0.0" 2178 | resolved "https://registry.yarnpkg.com/path-type/-/path-type-4.0.0.tgz#84ed01c0a7ba380afe09d90a8c180dcd9d03043b" 2179 | integrity sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw== 2180 | 2181 | picomatch@^2.0.5, picomatch@^2.2.1: 2182 | version "2.2.2" 2183 | resolved "https://registry.yarnpkg.com/picomatch/-/picomatch-2.2.2.tgz#21f333e9b6b8eaff02468f5146ea406d345f4dad" 2184 | integrity sha512-q0M/9eZHzmr0AulXyPwNfZjtwZ/RBZlbN3K3CErVrk50T2ASYI7Bye0EvekFY3IP1Nt2DHu0re+V2ZHIpMkuWg== 2185 | 2186 | prepend-http@^2.0.0: 2187 | version "2.0.0" 2188 | resolved "https://registry.yarnpkg.com/prepend-http/-/prepend-http-2.0.0.tgz#e92434bfa5ea8c19f41cdfd401d741a3c819d897" 2189 | integrity sha1-6SQ0v6XqjBn0HN/UAddBo8gZ2Jc= 2190 | 2191 | pseudomap@^1.0.2: 2192 | version "1.0.2" 2193 | resolved "https://registry.yarnpkg.com/pseudomap/-/pseudomap-1.0.2.tgz#f052a28da70e618917ef0a8ac34c1ae5a68286b3" 2194 | integrity sha1-8FKijacOYYkX7wqKw0wa5aaChrM= 2195 | 2196 | pump@^3.0.0: 2197 | version "3.0.0" 2198 | resolved "https://registry.yarnpkg.com/pump/-/pump-3.0.0.tgz#b4a2116815bde2f4e1ea602354e8c75565107a64" 2199 | integrity sha512-LwZy+p3SFs1Pytd/jYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww== 2200 | dependencies: 2201 | end-of-stream "^1.1.0" 2202 | once "^1.3.1" 2203 | 2204 | regenerate-unicode-properties@^8.2.0: 2205 | version "8.2.0" 2206 | resolved "https://registry.yarnpkg.com/regenerate-unicode-properties/-/regenerate-unicode-properties-8.2.0.tgz#e5de7111d655e7ba60c057dbe9ff37c87e65cdec" 2207 | integrity sha512-F9DjY1vKLo/tPePDycuH3dn9H1OTPIkVD9Kz4LODu+F2C75mgjAJ7x/gwy6ZcSNRAAkhNlJSOHRe8k3p+K9WhA== 2208 | dependencies: 2209 | regenerate "^1.4.0" 2210 | 2211 | regenerate@^1.4.0: 2212 | version "1.4.1" 2213 | resolved "https://registry.yarnpkg.com/regenerate/-/regenerate-1.4.1.tgz#cad92ad8e6b591773485fbe05a485caf4f457e6f" 2214 | integrity sha512-j2+C8+NtXQgEKWk49MMP5P/u2GhnahTtVkRIHr5R5lVRlbKvmQ+oS+A5aLKWp2ma5VkT8sh6v+v4hbH0YHR66A== 2215 | 2216 | regenerator-runtime@^0.13.4: 2217 | version "0.13.7" 2218 | resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.13.7.tgz#cac2dacc8a1ea675feaabaeb8ae833898ae46f55" 2219 | integrity sha512-a54FxoJDIr27pgf7IgeQGxmqUNYrcV338lf/6gH456HZ/PhX+5BcwHXG9ajESmwe6WRO0tAzRUrRmNONWgkrew== 2220 | 2221 | regenerator-transform@^0.14.2: 2222 | version "0.14.5" 2223 | resolved "https://registry.yarnpkg.com/regenerator-transform/-/regenerator-transform-0.14.5.tgz#c98da154683671c9c4dcb16ece736517e1b7feb4" 2224 | integrity sha512-eOf6vka5IO151Jfsw2NO9WpGX58W6wWmefK3I1zEGr0lOD0u8rwPaNqQL1aRxUaxLeKO3ArNh3VYg1KbaD+FFw== 2225 | dependencies: 2226 | "@babel/runtime" "^7.8.4" 2227 | 2228 | regexpu-core@^4.7.0: 2229 | version "4.7.1" 2230 | resolved "https://registry.yarnpkg.com/regexpu-core/-/regexpu-core-4.7.1.tgz#2dea5a9a07233298fbf0db91fa9abc4c6e0f8ad6" 2231 | integrity sha512-ywH2VUraA44DZQuRKzARmw6S66mr48pQVva4LBeRhcOltJ6hExvWly5ZjFLYo67xbIxb6W1q4bAGtgfEl20zfQ== 2232 | dependencies: 2233 | regenerate "^1.4.0" 2234 | regenerate-unicode-properties "^8.2.0" 2235 | regjsgen "^0.5.1" 2236 | regjsparser "^0.6.4" 2237 | unicode-match-property-ecmascript "^1.0.4" 2238 | unicode-match-property-value-ecmascript "^1.2.0" 2239 | 2240 | regjsgen@^0.5.1: 2241 | version "0.5.2" 2242 | resolved "https://registry.yarnpkg.com/regjsgen/-/regjsgen-0.5.2.tgz#92ff295fb1deecbf6ecdab2543d207e91aa33733" 2243 | integrity sha512-OFFT3MfrH90xIW8OOSyUrk6QHD5E9JOTeGodiJeBS3J6IwlgzJMNE/1bZklWz5oTg+9dCMyEetclvCVXOPoN3A== 2244 | 2245 | regjsparser@^0.6.4: 2246 | version "0.6.4" 2247 | resolved "https://registry.yarnpkg.com/regjsparser/-/regjsparser-0.6.4.tgz#a769f8684308401a66e9b529d2436ff4d0666272" 2248 | integrity sha512-64O87/dPDgfk8/RQqC4gkZoGyyWFIEUTTh80CU6CWuK5vkCGyekIx+oKcEIYtP/RAxSQltCZHCNu/mdd7fqlJw== 2249 | dependencies: 2250 | jsesc "~0.5.0" 2251 | 2252 | require-directory@^2.1.1: 2253 | version "2.1.1" 2254 | resolved "https://registry.yarnpkg.com/require-directory/-/require-directory-2.1.1.tgz#8c64ad5fd30dab1c976e2344ffe7f792a6a6df42" 2255 | integrity sha1-jGStX9MNqxyXbiNE/+f3kqam30I= 2256 | 2257 | require-main-filename@^2.0.0: 2258 | version "2.0.0" 2259 | resolved "https://registry.yarnpkg.com/require-main-filename/-/require-main-filename-2.0.0.tgz#d0b329ecc7cc0f61649f62215be69af54aa8989b" 2260 | integrity sha512-NKN5kMDylKuldxYLSUfrbo5Tuzh4hd+2E8NPPX02mZtn1VuREQToYe/ZdlJy+J3uCpfaiGF05e7B8W0iXbQHmg== 2261 | 2262 | resolve-from@^4.0.0: 2263 | version "4.0.0" 2264 | resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-4.0.0.tgz#4abcd852ad32dd7baabfe9b40e00a36db5f392e6" 2265 | integrity sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g== 2266 | 2267 | resolve@^1.3.2: 2268 | version "1.17.0" 2269 | resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.17.0.tgz#b25941b54968231cc2d1bb76a79cb7f2c0bf8444" 2270 | integrity sha512-ic+7JYiV8Vi2yzQGFWOkiZD5Z9z7O2Zhm9XMaTxdJExKasieFCr+yXZ/WmXsckHiKl12ar0y6XiXDx3m4RHn1w== 2271 | dependencies: 2272 | path-parse "^1.0.6" 2273 | 2274 | responselike@^1.0.2: 2275 | version "1.0.2" 2276 | resolved "https://registry.yarnpkg.com/responselike/-/responselike-1.0.2.tgz#918720ef3b631c5642be068f15ade5a46f4ba1e7" 2277 | integrity sha1-kYcg7ztjHFZCvgaPFa3lpG9Loec= 2278 | dependencies: 2279 | lowercase-keys "^1.0.0" 2280 | 2281 | restore-cursor@^3.1.0: 2282 | version "3.1.0" 2283 | resolved "https://registry.yarnpkg.com/restore-cursor/-/restore-cursor-3.1.0.tgz#39f67c54b3a7a58cea5236d95cf0034239631f7e" 2284 | integrity sha512-l+sSefzHpj5qimhFSE5a8nufZYAM3sBSVMAPtYkmC+4EH2anSGaEMXSD0izRQbu9nfyQ9y5JrVmp7E8oZrUjvA== 2285 | dependencies: 2286 | onetime "^5.1.0" 2287 | signal-exit "^3.0.2" 2288 | 2289 | reusify@^1.0.4: 2290 | version "1.0.4" 2291 | resolved "https://registry.yarnpkg.com/reusify/-/reusify-1.0.4.tgz#90da382b1e126efc02146e90845a88db12925d76" 2292 | integrity sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw== 2293 | 2294 | rimraf@^3.0.0: 2295 | version "3.0.2" 2296 | resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-3.0.2.tgz#f1a5402ba6220ad52cc1282bac1ae3aa49fd061a" 2297 | integrity sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA== 2298 | dependencies: 2299 | glob "^7.1.3" 2300 | 2301 | run-async@^2.4.0: 2302 | version "2.4.1" 2303 | resolved "https://registry.yarnpkg.com/run-async/-/run-async-2.4.1.tgz#8440eccf99ea3e70bd409d49aab88e10c189a455" 2304 | integrity sha512-tvVnVv01b8c1RrA6Ep7JkStj85Guv/YrMcwqYQnwjsAS2cTmmPGBBjAjpCW7RrSodNSoE2/qg9O4bceNvUuDgQ== 2305 | 2306 | run-parallel@^1.1.9: 2307 | version "1.1.9" 2308 | resolved "https://registry.yarnpkg.com/run-parallel/-/run-parallel-1.1.9.tgz#c9dd3a7cf9f4b2c4b6244e173a6ed866e61dd679" 2309 | integrity sha512-DEqnSRTDw/Tc3FXf49zedI638Z9onwUotBMiUFKmrO2sdFKIbXamXGQ3Axd4qgphxKB4kw/qP1w5kTxnfU1B9Q== 2310 | 2311 | rxjs@^6.6.0: 2312 | version "6.6.3" 2313 | resolved "https://registry.yarnpkg.com/rxjs/-/rxjs-6.6.3.tgz#8ca84635c4daa900c0d3967a6ee7ac60271ee552" 2314 | integrity sha512-trsQc+xYYXZ3urjOiJOuCOa5N3jAZ3eiSpQB5hIT8zGlL2QfnHLJ2r7GMkBGuIausdJN1OneaI6gQlsqNHHmZQ== 2315 | dependencies: 2316 | tslib "^1.9.0" 2317 | 2318 | safe-buffer@~5.1.1: 2319 | version "5.1.2" 2320 | resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.1.2.tgz#991ec69d296e0313747d59bdfd2b745c35f8828d" 2321 | integrity sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g== 2322 | 2323 | "safer-buffer@>= 2.1.2 < 3": 2324 | version "2.1.2" 2325 | resolved "https://registry.yarnpkg.com/safer-buffer/-/safer-buffer-2.1.2.tgz#44fa161b0187b9549dd84bb91802f9bd8385cd6a" 2326 | integrity sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg== 2327 | 2328 | semver@7.0.0: 2329 | version "7.0.0" 2330 | resolved "https://registry.yarnpkg.com/semver/-/semver-7.0.0.tgz#5f3ca35761e47e05b206c6daff2cf814f0316b8e" 2331 | integrity sha512-+GB6zVA9LWh6zovYQLALHwv5rb2PHGlJi3lfiqIHxR0uuwCgefcOJc59v9fv1w8GbStwxuuqqAjI9NMAOOgq1A== 2332 | 2333 | semver@^5.4.1, semver@^5.5.0: 2334 | version "5.7.1" 2335 | resolved "https://registry.yarnpkg.com/semver/-/semver-5.7.1.tgz#a954f931aeba508d307bbf069eff0c01c96116f7" 2336 | integrity sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ== 2337 | 2338 | set-blocking@^2.0.0: 2339 | version "2.0.0" 2340 | resolved "https://registry.yarnpkg.com/set-blocking/-/set-blocking-2.0.0.tgz#045f9782d011ae9a6803ddd382b24392b3d890f7" 2341 | integrity sha1-BF+XgtARrppoA93TgrJDkrPYkPc= 2342 | 2343 | shebang-command@^1.2.0: 2344 | version "1.2.0" 2345 | resolved "https://registry.yarnpkg.com/shebang-command/-/shebang-command-1.2.0.tgz#44aac65b695b03398968c39f363fee5deafdf1ea" 2346 | integrity sha1-RKrGW2lbAzmJaMOfNj/uXer98eo= 2347 | dependencies: 2348 | shebang-regex "^1.0.0" 2349 | 2350 | shebang-command@^2.0.0: 2351 | version "2.0.0" 2352 | resolved "https://registry.yarnpkg.com/shebang-command/-/shebang-command-2.0.0.tgz#ccd0af4f8835fbdc265b82461aaf0c36663f34ea" 2353 | integrity sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA== 2354 | dependencies: 2355 | shebang-regex "^3.0.0" 2356 | 2357 | shebang-regex@^1.0.0: 2358 | version "1.0.0" 2359 | resolved "https://registry.yarnpkg.com/shebang-regex/-/shebang-regex-1.0.0.tgz#da42f49740c0b42db2ca9728571cb190c98efea3" 2360 | integrity sha1-2kL0l0DAtC2yypcoVxyxkMmO/qM= 2361 | 2362 | shebang-regex@^3.0.0: 2363 | version "3.0.0" 2364 | resolved "https://registry.yarnpkg.com/shebang-regex/-/shebang-regex-3.0.0.tgz#ae16f1644d873ecad843b0307b143362d4c42172" 2365 | integrity sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A== 2366 | 2367 | signal-exit@^3.0.0, signal-exit@^3.0.2: 2368 | version "3.0.3" 2369 | resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.3.tgz#a1410c2edd8f077b08b4e253c8eacfcaf057461c" 2370 | integrity sha512-VUJ49FC8U1OxwZLxIbTTrDvLnf/6TDgxZcK8wxR8zs13xpx7xbG60ndBlhNrFi2EMuFRoeDoJO7wthSLq42EjA== 2371 | 2372 | slash@^3.0.0: 2373 | version "3.0.0" 2374 | resolved "https://registry.yarnpkg.com/slash/-/slash-3.0.0.tgz#6539be870c165adbd5240220dbe361f1bc4d4634" 2375 | integrity sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q== 2376 | 2377 | source-map@^0.5.0: 2378 | version "0.5.7" 2379 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.5.7.tgz#8a039d2d1021d22d1ea14c80d8ea468ba2ef3fcc" 2380 | integrity sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w= 2381 | 2382 | string-width@^4.1.0, string-width@^4.2.0: 2383 | version "4.2.0" 2384 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-4.2.0.tgz#952182c46cc7b2c313d1596e623992bd163b72b5" 2385 | integrity sha512-zUz5JD+tgqtuDjMhwIg5uFVV3dtqZ9yQJlZVfq4I01/K5Paj5UHj7VyrQOJvzawSVlKpObApbfD0Ed6yJc+1eg== 2386 | dependencies: 2387 | emoji-regex "^8.0.0" 2388 | is-fullwidth-code-point "^3.0.0" 2389 | strip-ansi "^6.0.0" 2390 | 2391 | string.prototype.trimend@^1.0.1: 2392 | version "1.0.1" 2393 | resolved "https://registry.yarnpkg.com/string.prototype.trimend/-/string.prototype.trimend-1.0.1.tgz#85812a6b847ac002270f5808146064c995fb6913" 2394 | integrity sha512-LRPxFUaTtpqYsTeNKaFOw3R4bxIzWOnbQ837QfBylo8jIxtcbK/A/sMV7Q+OAV/vWo+7s25pOE10KYSjaSO06g== 2395 | dependencies: 2396 | define-properties "^1.1.3" 2397 | es-abstract "^1.17.5" 2398 | 2399 | string.prototype.trimstart@^1.0.1: 2400 | version "1.0.1" 2401 | resolved "https://registry.yarnpkg.com/string.prototype.trimstart/-/string.prototype.trimstart-1.0.1.tgz#14af6d9f34b053f7cfc89b72f8f2ee14b9039a54" 2402 | integrity sha512-XxZn+QpvrBI1FOcg6dIpxUPgWCPuNXvMD72aaRaUQv1eD4e/Qy8i/hFTe0BUmD60p/QA6bh1avmuPTfNjqVWRw== 2403 | dependencies: 2404 | define-properties "^1.1.3" 2405 | es-abstract "^1.17.5" 2406 | 2407 | strip-ansi@^6.0.0: 2408 | version "6.0.0" 2409 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-6.0.0.tgz#0b1571dd7669ccd4f3e06e14ef1eed26225ae532" 2410 | integrity sha512-AuvKTrTfQNYNIctbR1K/YGTR1756GycPsg7b9bdV9Duqur4gv6aKqHXah67Z8ImS7WEz5QVcOtlfW2rZEugt6w== 2411 | dependencies: 2412 | ansi-regex "^5.0.0" 2413 | 2414 | strip-eof@^1.0.0: 2415 | version "1.0.0" 2416 | resolved "https://registry.yarnpkg.com/strip-eof/-/strip-eof-1.0.0.tgz#bb43ff5598a6eb05d89b59fcd129c983313606bf" 2417 | integrity sha1-u0P/VZim6wXYm1n80SnJgzE2Br8= 2418 | 2419 | supports-color@^5.3.0: 2420 | version "5.5.0" 2421 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-5.5.0.tgz#e2e69a44ac8772f78a1ec0b35b689df6530efc8f" 2422 | integrity sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow== 2423 | dependencies: 2424 | has-flag "^3.0.0" 2425 | 2426 | supports-color@^7.1.0: 2427 | version "7.2.0" 2428 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-7.2.0.tgz#1b7dcdcb32b8138801b3e478ba6a51caa89648da" 2429 | integrity sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw== 2430 | dependencies: 2431 | has-flag "^4.0.0" 2432 | 2433 | through@^2.3.6: 2434 | version "2.3.8" 2435 | resolved "https://registry.yarnpkg.com/through/-/through-2.3.8.tgz#0dd4c9ffaabc357960b1b724115d7e0e86a2e1f5" 2436 | integrity sha1-DdTJ/6q8NXlgsbckEV1+Doai4fU= 2437 | 2438 | tmp@^0.0.33: 2439 | version "0.0.33" 2440 | resolved "https://registry.yarnpkg.com/tmp/-/tmp-0.0.33.tgz#6d34335889768d21b2bcda0aa277ced3b1bfadf9" 2441 | integrity sha512-jRCJlojKnZ3addtTOjdIqoRuPEKBvNXcGYqzO6zWZX8KfKEpnGY5jfggJQ3EjKuu8D4bJRr0y+cYJFmYbImXGw== 2442 | dependencies: 2443 | os-tmpdir "~1.0.2" 2444 | 2445 | to-fast-properties@^2.0.0: 2446 | version "2.0.0" 2447 | resolved "https://registry.yarnpkg.com/to-fast-properties/-/to-fast-properties-2.0.0.tgz#dc5e698cbd079265bc73e0377681a4e4e83f616e" 2448 | integrity sha1-3F5pjL0HkmW8c+A3doGk5Og/YW4= 2449 | 2450 | to-readable-stream@^1.0.0: 2451 | version "1.0.0" 2452 | resolved "https://registry.yarnpkg.com/to-readable-stream/-/to-readable-stream-1.0.0.tgz#ce0aa0c2f3df6adf852efb404a783e77c0475771" 2453 | integrity sha512-Iq25XBt6zD5npPhlLVXGFN3/gyR2/qODcKNNyTMd4vbm39HUaOiAM4PMq0eMVC/Tkxz+Zjdsc55g9yyz+Yq00Q== 2454 | 2455 | to-regex-range@^5.0.1: 2456 | version "5.0.1" 2457 | resolved "https://registry.yarnpkg.com/to-regex-range/-/to-regex-range-5.0.1.tgz#1648c44aae7c8d988a326018ed72f5b4dd0392e4" 2458 | integrity sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ== 2459 | dependencies: 2460 | is-number "^7.0.0" 2461 | 2462 | tslib@^1.9.0: 2463 | version "1.14.1" 2464 | resolved "https://registry.yarnpkg.com/tslib/-/tslib-1.14.1.tgz#cf2d38bdc34a134bcaf1091c41f6619e2f672d00" 2465 | integrity sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg== 2466 | 2467 | type-fest@^0.11.0: 2468 | version "0.11.0" 2469 | resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-0.11.0.tgz#97abf0872310fed88a5c466b25681576145e33f1" 2470 | integrity sha512-OdjXJxnCN1AvyLSzeKIgXTXxV+99ZuXl3Hpo9XpJAv9MBcHrrJOQ5kV7ypXOuQie+AmWG25hLbiKdwYTifzcfQ== 2471 | 2472 | typescript@^4.0.3: 2473 | version "4.0.3" 2474 | resolved "https://registry.yarnpkg.com/typescript/-/typescript-4.0.3.tgz#153bbd468ef07725c1df9c77e8b453f8d36abba5" 2475 | integrity sha512-tEu6DGxGgRJPb/mVPIZ48e69xCn2yRmCgYmDugAVwmJ6o+0u1RI18eO7E7WBTLYLaEVVOhwQmcdhQHweux/WPg== 2476 | 2477 | unicode-canonical-property-names-ecmascript@^1.0.4: 2478 | version "1.0.4" 2479 | resolved "https://registry.yarnpkg.com/unicode-canonical-property-names-ecmascript/-/unicode-canonical-property-names-ecmascript-1.0.4.tgz#2619800c4c825800efdd8343af7dd9933cbe2818" 2480 | integrity sha512-jDrNnXWHd4oHiTZnx/ZG7gtUTVp+gCcTTKr8L0HjlwphROEW3+Him+IpvC+xcJEFegapiMZyZe02CyuOnRmbnQ== 2481 | 2482 | unicode-match-property-ecmascript@^1.0.4: 2483 | version "1.0.4" 2484 | resolved "https://registry.yarnpkg.com/unicode-match-property-ecmascript/-/unicode-match-property-ecmascript-1.0.4.tgz#8ed2a32569961bce9227d09cd3ffbb8fed5f020c" 2485 | integrity sha512-L4Qoh15vTfntsn4P1zqnHulG0LdXgjSO035fEpdtp6YxXhMT51Q6vgM5lYdG/5X3MjS+k/Y9Xw4SFCY9IkR0rg== 2486 | dependencies: 2487 | unicode-canonical-property-names-ecmascript "^1.0.4" 2488 | unicode-property-aliases-ecmascript "^1.0.4" 2489 | 2490 | unicode-match-property-value-ecmascript@^1.2.0: 2491 | version "1.2.0" 2492 | resolved "https://registry.yarnpkg.com/unicode-match-property-value-ecmascript/-/unicode-match-property-value-ecmascript-1.2.0.tgz#0d91f600eeeb3096aa962b1d6fc88876e64ea531" 2493 | integrity sha512-wjuQHGQVofmSJv1uVISKLE5zO2rNGzM/KCYZch/QQvez7C1hUhBIuZ701fYXExuufJFMPhv2SyL8CyoIfMLbIQ== 2494 | 2495 | unicode-property-aliases-ecmascript@^1.0.4: 2496 | version "1.1.0" 2497 | resolved "https://registry.yarnpkg.com/unicode-property-aliases-ecmascript/-/unicode-property-aliases-ecmascript-1.1.0.tgz#dd57a99f6207bedff4628abefb94c50db941c8f4" 2498 | integrity sha512-PqSoPh/pWetQ2phoj5RLiaqIk4kCNwoV3CI+LfGmWLKI3rE3kl1h59XpX2BjgDrmbxD9ARtQobPGU1SguCYuQg== 2499 | 2500 | universalify@^1.0.0: 2501 | version "1.0.0" 2502 | resolved "https://registry.yarnpkg.com/universalify/-/universalify-1.0.0.tgz#b61a1da173e8435b2fe3c67d29b9adf8594bd16d" 2503 | integrity sha512-rb6X1W158d7pRQBg5gkR8uPaSfiids68LTJQYOtEUhoJUWBdaQHsuT/EUduxXYxcrt4r5PJ4fuHW1MHT6p0qug== 2504 | 2505 | url-parse-lax@^3.0.0: 2506 | version "3.0.0" 2507 | resolved "https://registry.yarnpkg.com/url-parse-lax/-/url-parse-lax-3.0.0.tgz#16b5cafc07dbe3676c1b1999177823d6503acb0c" 2508 | integrity sha1-FrXK/Afb42dsGxmZF3gj1lA6yww= 2509 | dependencies: 2510 | prepend-http "^2.0.0" 2511 | 2512 | validate-npm-package-name@^3.0.0: 2513 | version "3.0.0" 2514 | resolved "https://registry.yarnpkg.com/validate-npm-package-name/-/validate-npm-package-name-3.0.0.tgz#5fa912d81eb7d0c74afc140de7317f0ca7df437e" 2515 | integrity sha1-X6kS2B630MdK/BQN5zF/DKffQ34= 2516 | dependencies: 2517 | builtins "^1.0.3" 2518 | 2519 | which-module@^2.0.0: 2520 | version "2.0.0" 2521 | resolved "https://registry.yarnpkg.com/which-module/-/which-module-2.0.0.tgz#d9ef07dce77b9902b8a3a8fa4b31c3e3f7e6e87a" 2522 | integrity sha1-2e8H3Od7mQK4o6j6SzHD4/fm6Ho= 2523 | 2524 | which@^1.2.9: 2525 | version "1.3.1" 2526 | resolved "https://registry.yarnpkg.com/which/-/which-1.3.1.tgz#a45043d54f5805316da8d62f9f50918d3da70b0a" 2527 | integrity sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ== 2528 | dependencies: 2529 | isexe "^2.0.0" 2530 | 2531 | which@^2.0.1, which@^2.0.2: 2532 | version "2.0.2" 2533 | resolved "https://registry.yarnpkg.com/which/-/which-2.0.2.tgz#7c6a8dd0a636a0327e10b59c9286eee93f3f51b1" 2534 | integrity sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA== 2535 | dependencies: 2536 | isexe "^2.0.0" 2537 | 2538 | wrap-ansi@^6.2.0: 2539 | version "6.2.0" 2540 | resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-6.2.0.tgz#e9393ba07102e6c91a3b221478f0257cd2856e53" 2541 | integrity sha512-r6lPcBGxZXlIcymEu7InxDMhdW0KDxpLgoFLcguasxCaJ/SOIZwINatK9KY/tf+ZrlywOKU0UDj3ATXUBfxJXA== 2542 | dependencies: 2543 | ansi-styles "^4.0.0" 2544 | string-width "^4.1.0" 2545 | strip-ansi "^6.0.0" 2546 | 2547 | wrappy@1: 2548 | version "1.0.2" 2549 | resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f" 2550 | integrity sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8= 2551 | 2552 | y18n@^4.0.0: 2553 | version "4.0.0" 2554 | resolved "https://registry.yarnpkg.com/y18n/-/y18n-4.0.0.tgz#95ef94f85ecc81d007c264e190a120f0a3c8566b" 2555 | integrity sha512-r9S/ZyXu/Xu9q1tYlpsLIsa3EeLXXk0VwlxqTcFRfg9EhMW+17kbt9G0NrgCmhGb5vT2hyhJZLfDGx+7+5Uj/w== 2556 | 2557 | yallist@^2.1.2: 2558 | version "2.1.2" 2559 | resolved "https://registry.yarnpkg.com/yallist/-/yallist-2.1.2.tgz#1c11f9218f076089a47dd512f93c6699a6a81d52" 2560 | integrity sha1-HBH5IY8HYImkfdUS+TxmmaaoHVI= 2561 | 2562 | yaml@^1.7.2: 2563 | version "1.10.0" 2564 | resolved "https://registry.yarnpkg.com/yaml/-/yaml-1.10.0.tgz#3b593add944876077d4d683fee01081bd9fff31e" 2565 | integrity sha512-yr2icI4glYaNG+KWONODapy2/jDdMSDnrONSjblABjD9B4Z5LgiircSt8m8sRZFNi08kG9Sm0uSHtEmP3zaEGg== 2566 | 2567 | yargs-parser@^18.1.2: 2568 | version "18.1.3" 2569 | resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-18.1.3.tgz#be68c4975c6b2abf469236b0c870362fab09a7b0" 2570 | integrity sha512-o50j0JeToy/4K6OZcaQmW6lyXXKhq7csREXcDwk2omFPJEwUNOVtJKvmDr9EI1fAJZUyZcRF7kxGBWmRXudrCQ== 2571 | dependencies: 2572 | camelcase "^5.0.0" 2573 | decamelize "^1.2.0" 2574 | 2575 | yargs@^15.3.1: 2576 | version "15.4.1" 2577 | resolved "https://registry.yarnpkg.com/yargs/-/yargs-15.4.1.tgz#0d87a16de01aee9d8bec2bfbf74f67851730f4f8" 2578 | integrity sha512-aePbxDmcYW++PaqBsJ+HYUFwCdv4LVvdnhBy78E57PIor8/OVvhMrADFFEDh8DHDFRv/O9i3lPhsENjO7QX0+A== 2579 | dependencies: 2580 | cliui "^6.0.0" 2581 | decamelize "^1.2.0" 2582 | find-up "^4.1.0" 2583 | get-caller-file "^2.0.1" 2584 | require-directory "^2.1.1" 2585 | require-main-filename "^2.0.0" 2586 | set-blocking "^2.0.0" 2587 | string-width "^4.2.0" 2588 | which-module "^2.0.0" 2589 | y18n "^4.0.0" 2590 | yargs-parser "^18.1.2" 2591 | --------------------------------------------------------------------------------