From 6fd0056c897c29d69fe1e262a92482f443ab3b6c Mon Sep 17 00:00:00 2001 From: emilyliublair <67622097+emilyliublair@users.noreply.github.com> Date: Tue, 17 Aug 2021 21:18:32 -0400 Subject: [PATCH] home pg + language --- .../java/com/blazerapp/MainApplication.java | 1 + android/settings.gradle | 2 + app/Announcements.js | 65 +- app/App.js | 27 +- app/Calendar.js | 96 +- app/ChallengeWeek.js | 31 +- app/Clubs.js | 69 +- app/Home.js | 688 ++-- app/Images.js | 38 - app/Language.js | 10 +- app/Languages/en.js | 39 +- app/Languages/es.js | 37 +- app/LunchEvents.js | 14 +- app/More.js | 162 +- app/Resources.js | 2 +- app/SSLOps.js | 8 +- app/Settings.js | 129 - app/Staff.js | 111 +- app/StudentWeek.js | 11 +- app/assets/arrow_right.png | Bin 361 -> 0 bytes app/assets/calendar.png | Bin 6201 -> 0 bytes app/assets/dep.png | Bin 6629 -> 0 bytes app/assets/desc.png | Bin 7783 -> 0 bytes app/i18n.js | 26 +- app/styles/liststyles.js | 2 +- ios/Podfile | 2 + ios/Podfile.lock | 14 +- package-lock.json | 217 +- package.json | 7 +- yarn.lock | 2835 +++++++++-------- 30 files changed, 2368 insertions(+), 2275 deletions(-) delete mode 100644 app/Images.js delete mode 100644 app/Settings.js delete mode 100644 app/assets/arrow_right.png delete mode 100644 app/assets/calendar.png delete mode 100644 app/assets/dep.png delete mode 100644 app/assets/desc.png diff --git a/android/app/src/main/java/com/blazerapp/MainApplication.java b/android/app/src/main/java/com/blazerapp/MainApplication.java index b9421c8..5a8591a 100644 --- a/android/app/src/main/java/com/blazerapp/MainApplication.java +++ b/android/app/src/main/java/com/blazerapp/MainApplication.java @@ -4,6 +4,7 @@ import android.app.Application; import android.content.Context; import com.facebook.react.PackageList; import com.facebook.react.ReactApplication; +import com.zoontek.rnlocalize.RNLocalizePackage; import com.reactnativecommunity.webview.RNCWebViewPackage; import com.reactnativecommunity.webview.RNCWebViewPackage; import com.oblador.vectoricons.VectorIconsPackage; diff --git a/android/settings.gradle b/android/settings.gradle index 0f6104c..cbf9876 100644 --- a/android/settings.gradle +++ b/android/settings.gradle @@ -1,4 +1,6 @@ rootProject.name = 'blazerapp' +include ':react-native-localize' +project(':react-native-localize').projectDir = new File(rootProject.projectDir, '../node_modules/react-native-localize/android') include ':react-native-webview' project(':react-native-webview').projectDir = new File(rootProject.projectDir, '../node_modules/react-native-webview/android') include ':react-native-webview' diff --git a/app/Announcements.js b/app/Announcements.js index 9c07efa..6d8b3ea 100644 --- a/app/Announcements.js +++ b/app/Announcements.js @@ -25,21 +25,22 @@ import Icon from 'react-native-vector-icons/AntDesign' import Ionicons from 'react-native-vector-icons/Ionicons'; import AsyncStorage from '@react-native-async-storage/async-storage' import LinearGradient from 'react-native-linear-gradient'; +import I18n from './i18n'; const STORAGE_KEY = "teacherAnnouncements" const getCurrentDate=()=>{ var date = new Date().getDate(); - var month = new Date().getMonth() + 1; + var month = new Date().getMonth(); var year = new Date().getFullYear(); return new Date(year, month, date); } const Announcement = ({item}) => { - const date = new Date - const dateStr = `${date.getMonth()+1}/${date.getDate()}/${date.getFullYear()}` - const dateInfo = dateStr===item.item.date&&item.item.time!==undefined?item.item.time:item.item.date; + const todayDate = getCurrentDate() + const itemDate = new Date(item.item.date) + const dateInfo = todayDate.getTime()===itemDate.getTime()&&item.item.time!==undefined?item.item.time:(item.item.date+", " + item.item.time) return ( @@ -52,6 +53,21 @@ const Announcement = ({item}) => { ) } +function NewTeacherList(props) { + return ( + + + {I18n.t('dates.'+props.name)} + + } + keyExtractor={item=>JSON.stringify(item)} + /> + + ) + } + export const TeacherList = ({route}) => { const todayDate = getCurrentDate() const weekPastDate = new Date(); @@ -69,14 +85,14 @@ export const TeacherList = ({route}) => { for (var i = 0; i < route.params.data.length; i++) { const itemDate = new Date(route.params.data[i].date) - if (itemDate == todayDate) { + if (itemDate.getTime() == todayDate.getTime()) { today.push(route.params.data[i]) } - else if (itemDate > todayDate && itemDate <= weekFutureDate) { + else if (itemDate.getTime() > todayDate.getTime() && itemDate.getTime() <= weekFutureDate.getTime()) { future.push(route.params.data[i]) } //else if (itemDate >= weekPastDate && itemDate < todayDate) { - else if (itemDate < todayDate) { + else if (itemDate.getTime() < todayDate.getTime()) { past.push(route.params.data[i]) } } @@ -87,37 +103,10 @@ export const TeacherList = ({route}) => { return ( - {todayBoolean? - - Today - - } - keyExtractor={item=>JSON.stringify(item)} - /> - : <>} - {pastBoolean? - - Past - - } - keyExtractor={item=>JSON.stringify(item)} - /> - :<>} - {futureBoolean? - - Future - - } - keyExtractor={item=>JSON.stringify(item)} - /> - :<>} - {!noAnn?No Announcements:<>} + {todayBoolean?:<>} + {pastBoolean?:<>} + {futureBoolean?:<>} + {!noAnn?{I18n.t('announcements.noAnnouncements')}:<>} ) } diff --git a/app/App.js b/app/App.js index 0262d92..4cfca13 100644 --- a/app/App.js +++ b/app/App.js @@ -27,25 +27,18 @@ import Staff from './Staff' import OpeningPage from './OpeningPage'; import OpenPage from './OpenPage'; import Ionicons from 'react-native-vector-icons/Ionicons'; -//import I18n from './i18n'; -import AsyncStorage from '@react-native-community/async-storage' +import I18n from './i18n.js' +import AsyncStorage from '@react-native-async-storage/async-storage' const Tab = createBottomTabNavigator(); -/*AsyncStorage.getItem('language') + +AsyncStorage.getItem('language') .then((token) => { console.log("lang: " + token); I18n.locale = token; }); -*/ -AsyncStorage.getItem('announcementNotifs') - .then((token) => { - console.log("announcementNotifs: " + token); - }); -AsyncStorage.getItem('eventNotifs') - .then((token) => { - console.log("eventNotifs: " + token); - }); + class App extends React.Component { state = { @@ -86,11 +79,11 @@ class App extends React.Component { fontSize:16 }}} > - - - - - + + + + + : } diff --git a/app/Calendar.js b/app/Calendar.js index 6e9152f..9c9b16d 100644 --- a/app/Calendar.js +++ b/app/Calendar.js @@ -22,6 +22,7 @@ import { createStackNavigator } from '@react-navigation/stack' import styles from './styles/liststyles' import { url } from './resources/fetchInfo.json' import morestyles from './styles/morestyles' +import I18n from './i18n.js' const Stack = createStackNavigator(); @@ -42,38 +43,36 @@ export const EventInfo = ({route}) => { const date = itemDate.getDate() return ( - - - - Info - {item.text} - + + + {I18n.t('calendar.info')} + {item.text} + + - - Location + + {I18n.t('calendar.location')} {item.location} - - Date + + {I18n.t('calendar.date')} {dayOfWeek}, {month} {date} - - Organizer + + {I18n.t('calendar.organizer')} {item.name} {item.emails} - - - + ) } const Event = (props) => { @@ -82,7 +81,7 @@ const Event = (props) => { return ( - props.navigation.navigate('EventInfo', {data:props.data,name:props.name, title: item.item.title,text:item.item.text,location:item.item.location,date:item.item.date, name:item.item.name, emails: item.item.emails})} activeOpacity={0.8}> + props.navigation.navigate('EventInfo', {data:props.data, title: item.item.title,text:item.item.text,location:item.item.location,date:item.item.date, name:item.item.name, emails: item.item.emails})} activeOpacity={0.8}> @@ -108,17 +107,18 @@ function CalendarEvents () { background, - headerleft: null, - headerTitleAlign: 'center' + //headerLeft: null, + headerTitleAlign: 'center', + headerBackTitleVisible:false, + headerTintColor: 'black' })} /> - background, - headerleft: null, - headerTitleAlign: 'center' + //headerLeft: null, + headerTitleAlign: 'center', + headerBackTitleVisible:false, + headerTintColor: 'black' })} /> @@ -135,6 +137,21 @@ function CalendarEvents () { ) } +function NewCalendarCategory (props) { + return ( + + + {I18n.t('dates.'+props.name)} + + } + keyExtractor={item=>JSON.stringify(item)} + /> + + ) +} + class Calendar extends React.Component { constructor(props) { @@ -205,37 +222,10 @@ class Calendar extends React.Component { var noAnn = (todayBoolean||pastBoolean||futureBoolean) return ( - {todayBoolean? - - Today - - } - keyExtractor={item=>JSON.stringify(item)} - /> - : <>} - {pastBoolean? - - Past - - } - keyExtractor={item=>JSON.stringify(item)} - /> - :<>} - {futureBoolean? - - Future - - } - keyExtractor={item=>JSON.stringify(item)} - /> - :<>} - {!noAnn?No Events:<>} + {todayBoolean?: <>} + {pastBoolean?: <>} + {futureBoolean?: <>} + {!noAnn?{I18n.t('calendar.noEvents')}:<>} ) } diff --git a/app/ChallengeWeek.js b/app/ChallengeWeek.js index 73ca040..f744dff 100644 --- a/app/ChallengeWeek.js +++ b/app/ChallengeWeek.js @@ -21,6 +21,7 @@ import { } from 'react-native/Libraries/NewAppScreen'; import styles from './styles/liststyles'; import { url } from './resources/fetchInfo.json' +import I18n from 'i18n-js'; class ChallengeWeek extends React.Component { constructor(props) { @@ -42,7 +43,7 @@ class ChallengeWeek extends React.Component { this.setState({data: JSON.parse(json),isLoading:false}); }).catch((error) => console.error(error)) - this.animatedValue=new Animated.Value(0); + /*this.animatedValue=new Animated.Value(0); this.value=0; this.animatedValue.addListener(({value}) => { this.value=value; @@ -54,10 +55,10 @@ class ChallengeWeek extends React.Component { this.backInterpolate = this.animatedValue.interpolate({ inputRange:[0,180], outputRange: ['180deg','360deg'] - }) + })*/ } - flipCard() { + /*flipCard() { if (this.value >= 90) { Animated.spring(this.animatedValue, { toValue:0, @@ -73,10 +74,10 @@ class ChallengeWeek extends React.Component { }).start(); } this.setState({flip:!this.state.flip}) - } + }*/ render() { - const frontAnimatedStyle = { + {/*const frontAnimatedStyle = { transform: [ {rotateY:this.frontInterpolate} ] @@ -95,7 +96,7 @@ class ChallengeWeek extends React.Component { else { styling=({display:'none'}) styling2=({height: '100%', width: '100%', backgroundColor: 'white', borderRadius: 20, textAlign: 'center', display: 'flex', alignContent: 'center', padding: '5%', paddingTop: '15%', borderColor: 'red', borderWidth: 1}) - } + }*/} if (this.state.isLoading) { return @@ -104,23 +105,7 @@ class ChallengeWeek extends React.Component { {this.state.data.title} {this.state.data.text} - Linking.openURL(this.state.data.link)}>Link - {/*this.flipCard()} style={{height: '70%', width: '80%', borderRadius: 20, shadowColor: 'red', shadowOffset: {width: 0, height: 2}, shadowOpacity: 0.5, shadowRadius: 7, alignSelf: 'center'}}> - - - {this.state.flip?{this.state.data.title}:<>} - - - - - - - {!this.state.flip?{this.state.data.text}:<>} - Linking.openURL(this.state.data.link)}>{'\n'}Link - - - - */} + Linking.openURL(this.state.data.link)}>{I18n.t("challenge.link")} ) } diff --git a/app/Clubs.js b/app/Clubs.js index 4ed064a..b580693 100644 --- a/app/Clubs.js +++ b/app/Clubs.js @@ -29,50 +29,50 @@ import morestyles from './styles/morestyles' import { url } from './resources/fetchInfo.json' import LinearGradient from 'react-native-linear-gradient'; import I18n from './i18n'; +import Ionicons from 'react-native-vector-icons/Ionicons'; const Stack = createStackNavigator(); export const ClubInfo = ({route}) => { const item = route.params; return ( - - - - - - - {item.meeting} + + + + + Meeting Location + Linking.openURL(item.link)}>{item.link} - - - - - - Linking.openURL(item.link)}>{item.link} + + + + Meeting Date + {item.meeting} - - - - - - {item.sponsor} + + + + Sponsor + {item.sponsor} - + ) } function ClubElement (props) { const item = props.item; return( - props.navigation.navigate('ClubInfo', {data:props.data,name:props.name,meeting:item.meeting,link:item.link,sponsor:item.sponsor})} activeOpacity={0.8}> - - - {props.item.name} + props.navigation.navigate('ClubInfo', {data:props.data,name:props.name,meeting:item.meeting,link:item.link,sponsor:item.sponsor})} activeOpacity={0.8}> + + + + {props.item.name} + + - ) @@ -91,7 +91,14 @@ function Club () { name = "Clubs" component = {Clubs} options={({ - headerShown: false + headerShown: true, + headerTitleStyle:morestyles.headerTitle, + headerBackground: ()=>background, + //headerleft: null, + headerTitleAlign: 'center', + headerBackTitleVisible:false, + headerTintColor: 'black', + title:I18n.t('app.clubs'), })} /> ({ title:route.params.name, headerTitleStyle:[morestyles.headerTitle,{alignSelf:'center'}], - headerBackground: ()=>background + headerBackground: ()=>background, + headerBackTitleVisible:false, + headerTintColor: 'black', + headerTitleAlign: 'center', })} /> @@ -157,10 +167,10 @@ class Clubs extends React.Component { const { data , dataSearch,search} = this.state; return ( - + } keyExtractor={item => JSON.stringify(item)} /> - ); diff --git a/app/Home.js b/app/Home.js index 40833b4..dd0bef0 100644 --- a/app/Home.js +++ b/app/Home.js @@ -10,7 +10,9 @@ import { TouchableHighlight, Image, FlatList, + Dimensions, Linking, + ImageBackground } from 'react-native'; import { useHeaderHeight } from '@react-navigation/stack'; @@ -26,266 +28,240 @@ import liststyles from './styles/liststyles' import { url } from './resources/fetchInfo.json' import LinearGradient from 'react-native-linear-gradient'; import StudentWeek from './StudentWeek'; +import LunchEvents from './LunchEvents' import { TouchableOpacity } from 'react-native-gesture-handler'; import { NavigationContainer } from '@react-navigation/native' import { createStackNavigator } from '@react-navigation/stack' import Announcements from './Announcements' -import AsyncStorage from '@react-native-community/async-storage' -//import I18n from './i18n'; - - -const getCurrentDate=()=>{ - var date = new Date().getDate(); - var month = new Date().getMonth() + 1; - var year = new Date().getFullYear(); - - return year + ',' + month + ',' + date; -} -const getWeekDate=()=>{ - var date = new Date().getDate()-8; - var month = new Date().getMonth()+1; - var year = new Date().getFullYear(); - - return year + ',' + month + ',' + date; -} +import I18n from './i18n.js' +import AsyncStorage from '@react-native-async-storage/async-storage' const STORAGE_KEY = "teacherAnnouncements" const Stack = createStackNavigator() +const windowWidth = Dimensions.get('window').width; +const windowHeight = Dimensions.get('window').height; + +const getCurrentDate=()=>{ + var date = new Date().getDate(); + var month = new Date().getMonth(); + var year = new Date().getFullYear(); + + return new Date(year, month, date); +} const Announcement = ({item}) => { - const date = new Date - const dateStr = `${date.getMonth()+1}/${date.getDate()}/${date.getFullYear()}` - const dateInfo = dateStr===item.item.date&&item.item.time!==undefined?item.item.time:item.item.date; + const todayDate = getCurrentDate() + const itemDate = new Date(item.item.date) + const dateInfo = todayDate.getTime()===itemDate.getTime()&&item.item.time!==undefined?item.item.time:(item.item.date+", " + item.item.time) return ( - - - - {item.item.message} - - - {dateInfo!==undefined?{dateInfo}:<>} + + + + {item.item.message} + {dateInfo!==undefined?{dateInfo}:<>} - ) } +function NewTeacherList(props) { + return ( + + + {I18n.t('dates.'+props.name)} + + } + keyExtractor={item=>JSON.stringify(item)} + /> + + ) +} + export const TeacherList = ({route}) => { + const todayDate = getCurrentDate() + const weekPastDate = new Date(); + var pastDate = weekPastDate.getDate() - 7; + weekPastDate.setDate(pastDate); + const weekFutureDate = new Date(); + var futureDate = weekFutureDate.getDate() + 7; + weekFutureDate.setDate(futureDate); + const today = [] + const past = [] + const future = [] + var todayBoolean = true + var pastBoolean = true + var futureBoolean = true + + for (var i = 0; i < route.params.data.length; i++) { + const itemDate = new Date(route.params.data[i].date) + if (itemDate.getTime() == todayDate.getTime()) { + today.push(route.params.data[i]) + } + else if (itemDate.getTime() > todayDate.getTime() && itemDate.getTime() <= weekFutureDate.getTime()) { + future.push(route.params.data[i]) + } + //else if (itemDate >= weekPastDate && itemDate < todayDate) { + else if (itemDate.getTime() < todayDate.getTime()) { + past.push(route.params.data[i]) + } + } + if (today.length === 0) todayBoolean = false + if (past.length === 0) pastBoolean = false + if (future.length === 0) futureBoolean = false + var noAnn = (todayBoolean||pastBoolean||futureBoolean) + return ( - - } - keyExtractor={item=>JSON.stringify(item)} - /> - + + {todayBoolean?:<>} + {pastBoolean?:<>} + {futureBoolean?:<>} + {!noAnn?{I18n.t('home.noAnnouncements')}:<>} + ) } -export const whatsNew = ({route}) => { - const item = route.params +function NewElement(props) { + var name = props.name return ( - - - Today - - - } - keyExtractor={item=>JSON.stringify(item)} - horizontal - /> - - - - - Future - - - } - keyExtractor={item=>JSON.stringify(item)} - horizontal - /> - - - - - Past Week - - - } - keyExtractor={item=>JSON.stringify(item)} - horizontal - /> - - + + + {I18n.t('dates.'+props.name)} + + + } + keyExtractor={item=>JSON.stringify(item)} + horizontal + /> ) } -const Today = ({item}) => { - const newIconURI = item.item.icon !== undefined?`data:image/png;charset=utf-8;base64,${item.item.icon}`:'' - const today = new Date(getCurrentDate()) - const itemDate = new Date(item.item.date) +export const whatsNew = ({route}) => { + const todayDate = getCurrentDate() + const weekPastDate = new Date(); + var pastDate = weekPastDate.getDate() - 7; + weekPastDate.setDate(pastDate); + const weekFutureDate = new Date(); + var futureDate = weekFutureDate.getDate() + 7; + weekFutureDate.setDate(futureDate); + const today = [] + const past = [] + const future = [] + var todayBoolean = true + var pastBoolean = true + var futureBoolean = true + + for (var i = 0; i < route.params.data.length; i++) { + const itemDate = new Date(route.params.data[i].date) + if (itemDate.getTime() == todayDate.getTime()) { + today.push(route.params.data[i]) + } + else if (itemDate.getTime() > todayDate.getTime() && itemDate.getTime() <= weekFutureDate.getTime()) { + future.push(route.params.data[i]) + } + //else if (itemDate >= weekPastDate && itemDate < todayDate) { + else if (itemDate.getTime() < todayDate.getTime()) { + past.push(route.params.data[i]) + } + } + if (today.length === 0) todayBoolean = false + if (past.length === 0) pastBoolean = false + if (future.length === 0) futureBoolean = false - if (itemDate.getTime() == today.getTime()) { - return ( - setVisible(!visible)} activeOpacity={0.8}> - - - {item.item.name} - {item.item.date} - - - ) - } - else { - return ( - null - ) - } + const item = route.params + return ( + + {todayBoolean?:<>} + {pastBoolean?:<>} + {futureBoolean?:<>} + + ) } -const Future = ({item}) => { - const newIconURI = item.item.icon !== undefined?`data:image/png;charset=utf-8;base64,${item.item.icon}`:'' - const today = new Date(getCurrentDate()) - const itemDate = new Date(item.item.date) - if (itemDate.getTime() > today.getTime()) { - return ( - setVisible(!visible)} activeOpacity={0.8}> - - - {item.item.name} - {item.item.date} - - - ) - } - else { - return ( - null - ) - } -} -const PastWeek = ({item}) => { - const newIconURI = item.item.icon !== undefined?`data:image/png;charset=utf-8;base64,${item.item.icon}`:'' - const today = new Date(getCurrentDate()) - const week = new Date(getWeekDate()) - const itemDate = new Date(item.item.date) - - if (itemDate.getTime() >= week.getTime() && today.getTime()>itemDate.getTime()) { - return ( - setVisible(!visible)} activeOpacity={0.8}> - - - {item.item.name} - {item.item.date} - - - ) - } - else { - return ( - null - ) - } +export const NewItem = ({route}) => { + const item = route.params.data + const iconURI = item.icon !== undefined?`data:image/png;charset=utf-8;base64,${item.icon}`:'' + + return ( + + + + + + {item.date} + {item.name} + + + + ) } const AnnouncementToday = ({item}) => { - const date = new Date - const dateStr = `${date.getMonth()+1}/${date.getDate()}/${date.getFullYear()}` - const dateInfo = dateStr===item.item.date&&item.item.time!==undefined?item.item.time:''; - const itemDate = new Date(item.item.date) - const today = new Date(getCurrentDate()) const teacher = item.item.teacher !==""?item.item.teacher:"No Teacher" - if (itemDate.getTime()===today.getTime()) { - return ( - - - {item.item.message} - - - {teacher}{'\t'}{dateInfo} - + return ( + + + {item.item.message} + {item.item.time} - ) - } - else { - return ( - null - ) - } + + {teacher} + + + ) } -const New = ({item}) => { - const calendarIconURI = item.item.icon !== undefined?`data:image/png;charset=utf-8;base64,${item.item.icon}`:'' - const today = new Date(getCurrentDate()) - const week = new Date(getWeekDate()) - const itemDate = new Date(item.item.date) +const New = (props) => { + const item = props.item + const iconURI = item.item.icon !== undefined?`data:image/png;charset=utf-8;base64,${item.item.icon}`:'' + const textLength = item.item.name.length + var text = item.item.name + if (textLength >=17) { + text = text.substring(0, 14)+"..." + } - if (itemDate.getTime() >= today.getTime()) { - return ( - setVisible(!visible)} activeOpacity={0.8}> - - - {item.item.name} - {item.item.date} - - - ) - } - else if (itemDate.getTime() >= week.getTime()){ - return ( - setVisible(!visible)} activeOpacity={0.8}> - - - {item.item.name} - {item.item.date} - + return ( + + props.navigation.navigate('NewItem', {data:props.item.item})}> + + + {item.item.date} + {text} + + + - ) - } - else { - return ( - null - ) - } + ) } function Home1() { const [modalVisible, setModalVisible] = useState(false); return ( - - - - - - {setModalVisible(false);}}> - - - - - - {url} - - - + + + + {setModalVisible(false);}}> + + + + + {url} - + ) } + const background = () function HomeStack() { @@ -305,39 +281,82 @@ function HomeStack() { name="new" component={whatsNew} options={({route})=> ({ - title:"What's New", + title:I18n.t('home.whatsNew'), headerTitleStyle:styles.headerTitle, - headerBackground: ()=>background + headerBackground: ()=>background, + //headerLeft:null, + headerBackTitleVisible:false, + headerTintColor: 'black', + headerTitleAlign: 'center' })} /> ({ - title:"Announcements", + title:I18n.t('home.Announcements'), headerTitleStyle:styles.headerTitle, - headerBackground: ()=>background + headerBackground: ()=>background, + //headerLeft:null, + headerBackTitleVisible:false, + headerTintColor: 'black', + headerTitleAlign: 'center' })} /> ({ - headerTitleStyle:[styles.headerTitle,{alignSelf:'center',fontSize:Math.min(24,24*23/route.params.name.length)}], + headerTitleStyle:[styles.headerTitle], title:route.params.name, headerRight:()=>(<>), - headerBackground: ()=>background + headerBackground: ()=>background, + //headerLeft:null, + headerBackTitleVisible:false, + headerTintColor: 'black', + headerTitleAlign: 'center' })} /> background, + headerTitleAlign: 'center', + headerBackTitleVisible:false, + headerTintColor: 'black' + }} + /> + background + headerBackground: ()=>background, + //headerLeft:null, + headerBackTitleVisible:false, + headerTintColor: 'black', + headerTitleAlign: 'center' }} /> + ({ + headerTitleStyle:[styles.headerTitle], + title:I18n.t('home.news'), + headerRight:()=>(<>), + headerBackground: ()=>background, + //headerLeft: null, + headerBackTitleVisible:false, + headerTintColor: 'black', + headerTitleAlign: 'center' + })} + /> ) @@ -346,138 +365,102 @@ function HomeStack() { function HomeScreen (props) { const iconURI = props.studentData.icon !== undefined?`data:image/png;charset=utf-8;base64,${props.studentData.icon}`:`data:image/png;base64,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`; global.headerHeight = useHeaderHeight(); - return( - - - - Whats New - props.navigation.navigate('new', {data:props.data})}> - View All + const todayDate = getCurrentDate() + var todayAnn = [] + var todayNew = [] + var todayAnnBoolean = true + var todayNewBoolean = true + var showLunch = false + for (var i = 0; i < props.annData.length; i++) { + const itemDate = new Date(props.annData[i].date) + if (itemDate == todayDate) todayAnn.push(props.annData[i]) + else todayAnn.push(props.annData[i]) + } + + for (var i = 0; i < props.data.length; i++) { + const itemDate = new Date(props.data[i].date) + if (itemDate == todayDate) todayNew.push(props.data[i]) + } + + if (todayAnn.length === 0) todayAnnBoolean = false + if (todayNew.length ===0) todayNewBoolean = false + todayAnn = todayAnn.slice(0, 4) + + var currentTime = new Date(); + var time = currentTime.toLocaleTimeString().replace(/([\d]+:[\d]{2})(:[\d]{2})(.*)/, "$1$3").split(' ') + var dayOfWeek = currentTime.getDay() + var hourTime = parseInt(time[0].split(':')[0]) + + if (dayOfWeek!=0 && dayOfWeek!=6 && ((hourTime>=10 && time[1]=='AM') || (hourTime ==12 && parseInt(time[0].split(':')[1])<=30 && time[1]=='PM'))) { + showLunch = true + } + if (dayOfWeek!=0 && dayOfWeek!=6 && hourTime>=10 && (hourTime <=12 && parseInt(time[0].split(':')[1])<=30)) { + showLunch = true + } + + return ( + + {showLunch? + + {I18n.t('home.shortcut')} {'\t'} + props.navigation.navigate(LunchEvents)}> + + {I18n.t('home.seeLunch')} + - - - } + :<>} + + + + {I18n.t('home.whatsNew')} + props.navigation.navigate('new', {data:props.data, navigation: props.navigation})}> + + + + + {!todayNewBoolean?{I18n.t('home.noNews')}:} keyExtractor={item=>JSON.stringify(item)} horizontal - /> - - - - - - Student of the Week - - - - - - - {props.studentData.name} - Grade {props.studentData.year} - - - - Hobbies: {props.studentData.hobbies} - Achievements: {props.studentData.achievements} - Messages: {props.studentData.messages} - + />} - - - Announcements - props.navigation.navigate(Announcements)}> - View All + + + {I18n.t('home.Announcements')} + props.navigation.navigate(Announcements)}> + - {I18n.t('home.noAnnouncements')}:} keyExtractor={item=>JSON.stringify(item)} - /> + />} + + + + {I18n.t('home.SOTW')} + + + + + + {props.studentData.name}, Grade {props.studentData.year} + props.navigation.navigate(StudentWeek)}> + + {I18n.t('home.moreOn')} {props.studentData.name} + + + + ) } -/*function HomeScreen (props) { - const iconURI = props.studentData.icon !== undefined?`data:image/png;charset=utf-8;base64,${props.studentData.icon}`:`data:image/png;base64,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`; - global.headerHeight = useHeaderHeight(); - return( - - - - Whats New - props.navigation.navigate('new', {data:props.data})}> - View All - - - - - } - keyExtractor={item=>JSON.stringify(item)} - horizontal - /> - - - - - - Student of the Week - - - - - - - {props.studentData.name} - Grade {props.studentData.year} - - - - Hobbies: {props.studentData.hobbies} - Achievements: {props.studentData.achievements} - Messages: {props.studentData.messages} - - - - - - - Announcements - props.navigation.navigate(Announcements)}> - View All - - - } - keyExtractor={item=>JSON.stringify(item)} - /> - - - - - Linking.openURL(props.challengeData.link)}> - - - - - - Linking.openURL(props.pollData.link)}> - - - - - - - ) -}*/ class Home extends React.Component { constructor(props) { @@ -486,8 +469,7 @@ class Home extends React.Component { studentData: [], annData:[], data:[], - pollData:[], - challengeData:[], + lunchData:[], teacherNames: [], favoriteNames: [], isLoading:true @@ -507,16 +489,6 @@ class Home extends React.Component { AsyncStorage.setItem(STORAGE_KEY,JSON.stringify(favoriteNames)).catch(console.log).done() } componentDidMount() { - fetch(`${url}/api/en/challenge`,{ - headers: { - 'Cache-Control': 'no-cache' - }} - ).then((response) => { - return response.text(); - }).then((json) => { - this.setState({challengeData: JSON.parse(json),isLoading:false}); - }).catch((error) => console.error(error)) - fetch(`${url}/api/en/student`,{ headers: { 'Cache-Control': 'no-cache' @@ -526,6 +498,16 @@ class Home extends React.Component { }).then((json) => { this.setState({studentData: JSON.parse(json),isLoading:false}); }).catch((error) => console.error(error)) + + fetch(`${url}/api/en/lunchEvents`,{ + headers: { + 'Cache-Control': 'no-cache' + }} + ).then((response) => { + return response.text(); + }).then((json) => { + this.setState({lunchData: JSON.parse(json)}); + }).catch((error) => console.error(error)) this.getData() this.props.navigation.addListener( @@ -563,9 +545,7 @@ class Home extends React.Component { fetch(`${url}/api/en/announcements`,{ headers: { 'Cache-Control': 'no-cache' - } - } - ) + }}) .then((response) => { return response.text() }) @@ -574,14 +554,10 @@ class Home extends React.Component { const teacherNames = [...new Set(data.filter(x=>x.teacher!=null&&x.teacher.trim()!=='').map(x=>x.teacher))]; teacherNames.sort() this.setState({annData: data, teacherNames: teacherNames.map(x=>({name:x})),isLoading:false}); - }) - - .catch((error) => console.error(error)) - + }).catch((error) => console.error(error)) } render() { - return ( diff --git a/app/Images.js b/app/Images.js deleted file mode 100644 index 26e2b5d..0000000 --- a/app/Images.js +++ /dev/null @@ -1,38 +0,0 @@ -import React, { useState } from 'react'; -import { - SafeAreaView, - StyleSheet, - ScrollView, - View, - Text, - StatusBar, - Modal, - TouchableHighlight, - Image, -} from 'react-native'; - -import { - Header, - LearnMoreLinks, - Colors, - DebugInstructions, - ReloadInstructions, -} from 'react-native/Libraries/NewAppScreen'; -import styles from './styles/morestyles' - -const Images = { -} - -export default Images; -/*const Images = { - sslopps: require('./assets/sslopps.png'), - lunch: require('./assets/lunch.png'), - settings:require('./assets/settings.png'), - challenge:require('./assets/challenge.png'), - student:require('./assets/student.png'), - announcements:require('./assets/announcements.png'), - resources:require('./assets/resources.png'), - polls:require('./assets/polls.png'), - notifs:require('./assets/notifs.png'), - lang:require('./assets/lang.png'), -}*/ \ No newline at end of file diff --git a/app/Language.js b/app/Language.js index d350f49..675568c 100644 --- a/app/Language.js +++ b/app/Language.js @@ -1,14 +1,14 @@ -/*import React, { Component } from 'react'; +import React, { Component } from 'react'; import { DevSettings } from 'react-native'; import { Platform, StyleSheet, TouchableOpacity, Text, ScrollView, View } from 'react-native'; import I18n from './i18n'; -import AsyncStorage from '@react-native-community/async-storage' +import AsyncStorage from '@react-native-async-storage/async-storage' const STORAGE_KEY = "language" const language = [ - {lang: {I18n.t('language.English')}, code: "en"}, - {lang: {I18n.t('language.Spanish')}, code: "es"}, + {lang: English, code: "en-US"}, + {lang: Spanish, code: "es-US"}, ] export default class extends Component { @@ -71,4 +71,4 @@ export default class extends Component { ); } -}*/ \ No newline at end of file +} \ No newline at end of file diff --git a/app/Languages/en.js b/app/Languages/en.js index 590675b..f438a16 100644 --- a/app/Languages/en.js +++ b/app/Languages/en.js @@ -7,7 +7,20 @@ export default { Hobbies: "Hobbies", Achievements: "Achievements", Messages: "Messages", - Announcements: "Announcements" + Announcements: "Announcements", + noAnnouncements: "No Announcements", + lunch: "Lunch Events", + news: "News", + shortcut: "Shortcut: ", + seeLunch: "See Lunch Events", + noNews: "No news for today", + noAnnouncements: "No announcements for today", + moreOn: "More on" + }, + dates: { + today: "Today", + past: "Past", + future: "Future" }, app: { home: "Home", @@ -17,7 +30,12 @@ export default { more: "More" }, calendar: { - calendarEvents: "Calendar Events" + calendar: "Calendar", + info: "Info", + location: "Location", + date: "Date", + organizer: "Organizer", + noEvents: "No Events" }, clubs: { searchClubs: "Search Clubs" @@ -25,12 +43,27 @@ export default { staff: { searchStaff: "Search Staff" }, + announcements: { + noAnnouncements: "No Announcements" + }, student: { Grade: "Grade", Hobbies: "Hobbies", Achievements: "Achievements", Messages: "Messages", }, + lunch: { + information: "Information", + location: "Location" + }, + ssl: { + information: "Information", + sponsor: "Sponsor", + location: "Location" + }, + challenge: { + link: "Link" + }, polls: { textInPoll: "Press the image to take the poll!" }, @@ -38,7 +71,7 @@ export default { Announcements: "Announcements", Resources: "Resources", SOTW: "Student of the Week", - lunch: "LunchEvents", + lunch: "Lunch Events", ssl: "SSL Opportunities", COTW: "Challenge of the Week", Polls: "Polls", diff --git a/app/Languages/es.js b/app/Languages/es.js index 05a6805..6eca954 100644 --- a/app/Languages/es.js +++ b/app/Languages/es.js @@ -7,7 +7,20 @@ export default { Hobbies: "El pasatiempo", Achievements: "Logros", Messages: "Mensajes", - Announcements: "Anuncios" + Announcements: "Anuncios", + noAnnouncements: "ESNo Announcements", + lunch: "Eventos de almuerzo", + news: "ESNews", + shortcut: "ESShortcut: ", + seeLunch: "ESSee Lunch Events", + noNews: "ESNo news for today", + noAnnouncements: "ESNo announcements for today", + moreOn: "ESMore on" + }, + dates: { + today: "ESToday", + past: "ESPast", + future: "ESFuture" }, app: { home: "Casa", @@ -17,7 +30,12 @@ export default { more: "Más" }, calendar: { - calendarEvents: "Eventos del calendario" + calendar: "ESCalendar", + info: "ESInfo", + location: "ESLocation", + date: "ESDate", + organizer: "ESOrganizer", + noEvents: "ESNo Events" }, clubs: { searchClubs: "Buscar clubes" @@ -25,12 +43,27 @@ export default { staff: { searchStaff: "Personal de búsqueda" }, + announcements: { + noAnnouncements: "ESNo Announcements" + }, student: { Grade: "El año", Hobbies: "El pasatiempo", Achievements: "Logros", Messages: "Mensajes", }, + lunch: { + information: "ESInformation", + location: "ESLocation" + }, + ssl: { + information: "ESInformation", + sponsor: "ESSponsor", + location: "ESLocation" + }, + challenge: { + link: "ESLink" + }, polls: { textInPoll: "¡Pulsa la imagen para realizar la encuesta!'" }, diff --git a/app/LunchEvents.js b/app/LunchEvents.js index 535612a..9925892 100644 --- a/app/LunchEvents.js +++ b/app/LunchEvents.js @@ -25,9 +25,10 @@ import styles from './styles/liststyles' import { url } from './resources/fetchInfo.json' import LinearGradient from 'react-native-linear-gradient'; import Ionicons from 'react-native-vector-icons/Ionicons'; +import I18n from 'i18n-js'; const Stack = createStackNavigator(); -export const LunchInfo = ({route}) => { +{/*export const LunchInfo = ({route}) => { const item = route.params; return ( @@ -49,7 +50,7 @@ export const LunchInfo = ({route}) => { ) -} +}*/} function LunchEvent (props) { const item = props.item @@ -64,18 +65,11 @@ function LunchEvent (props) { {expand?:} - {expand?Information{item.text}{'\n'}Location{item.loc}:<>} + {expand?{I18n.t('lunch.information')}{item.text}{'\n'}{I18n.t('lunch.location')}{item.loc}:<>} ) } -/*props.navigation.navigate('LunchInfo', {data:props.data,name:item.title,text:item.text,loc:item.loc})} activeOpacity={0.8}> - - - {item.title} - - -*/ class LunchEvents extends React.Component { diff --git a/app/More.js b/app/More.js index 89e6b20..47b9bf7 100644 --- a/app/More.js +++ b/app/More.js @@ -21,7 +21,7 @@ import { } from 'react-native/Libraries/NewAppScreen'; import { NavigationContainer } from '@react-navigation/native' -import { createStackNavigator } from '@react-navigation/stack' +import { createStackNavigator, HeaderBackButton } from '@react-navigation/stack' import styles from './styles/morestyles' import Announcements, {TeacherList} from './Announcements' @@ -30,12 +30,11 @@ import StudentWeek from './StudentWeek' import SSLOps, {SSLInfo} from './SSLOps' import LunchEvents, {LunchInfo} from './LunchEvents' import ChallengeWeek from './ChallengeWeek' -import Settings from './Settings' import Poll from './Poll' -import Images from './Images' +import Language from './Language' import LinearGradient from 'react-native-linear-gradient' import Ionicons from 'react-native-vector-icons/Ionicons'; -//import I18n from './i18n'; +import I18n from './i18n'; const Stack = createStackNavigator() @@ -50,14 +49,14 @@ class MoreSwitch extends React.Component { @@ -76,6 +75,35 @@ class MoreSwitch extends React.Component { } } +class SettingSwitch extends React.Component { + constructor(props) { + super(props) + this.props = props + } + + render() { + return ( + + + this.props.navigation.navigate(item.key)}> + + + {I18n.t('settings.' + item.key)} + + + + } + /> + + ) + } +} + + const background = (background, headerTitleAlign: 'center' @@ -100,118 +128,130 @@ class More extends React.Component { name="announce" component={Announcements} options={{ - title:"Announcements", - headerTitleStyle:[styles.headerTitle,{alignSelf:'center'}], - headerLeft:null, + title:I18n.t("more.Announcements"), + headerTitleStyle:[styles.headerTitle], headerBackground: ()=>background, - headerTitleAlign: 'center' + headerTitleAlign: 'center', + headerBackTitleVisible:false, + headerTintColor: 'black' }} /> background, - headerTitleAlign: 'center' + headerTitleAlign: 'center', + headerBackTitleVisible:false, + headerTintColor: 'black' }} /> background, - headerTitleAlign: 'center' + headerTitleAlign: 'center', + headerBackTitleVisible:false, + headerTintColor: 'black' }} /> background, - headerTitleAlign: 'center' + headerTitleAlign: 'center', + headerBackTitleVisible:false, + headerTintColor: 'black' }} /> background, - headerTitleAlign: 'center' + headerTitleAlign: 'center', + headerBackTitleVisible:false, + headerTintColor: 'black' }} /> background, - headerTitleAlign: 'center' + headerTitleAlign: 'center', + headerBackTitleVisible:false, + headerTintColor: 'black' }} /> background, - headerTitleAlign: 'center' + headerTitleAlign: 'center', + headerBackTitleVisible:false, + headerTintColor: 'black' }} /> background, - headerShown:false, + headerBackTitleVisible:false, + headerTintColor: 'black', + headerTitleAlign: 'center' + }} + /> + background, + //headerLeft: null, + headerBackTitleVisible:false, + headerTintColor: 'black', + headerTitleAlign: 'center' }} /> ({ - headerTitleStyle:[styles.headerTitle,{alignSelf:'center',fontSize:Math.min(24,24*23/route.params.name.length)}], + headerTitleStyle:[styles.headerTitle], title:route.params.name, headerRight:()=>(<>), - headerBackground: ()=>background - })} - /> - ({ - headerTitleStyle:[styles.headerTitle,{alignSelf:'center',fontSize:Math.min(24,24*23/route.params.name.length)}], - title:route.params.name, - headerRight:()=>(<>), - headerBackground: ()=>background - })} - /> - ({ - headerTitleStyle:[styles.headerTitle,{alignSelf:'center',fontSize:Math.min(24,24*23/route.params.name.length)}], - title:route.params.name, headerBackground: ()=>background, - headerRight:()=>(<>) + headerBackTitleVisible:false, + headerTintColor: 'black', + headerTitleAlign: 'center' + //headerLeft: null, })} /> diff --git a/app/Resources.js b/app/Resources.js index a128ed1..5c51b8c 100644 --- a/app/Resources.js +++ b/app/Resources.js @@ -30,7 +30,7 @@ function ResourceLink(props) { - {props.name} + {props.name} ) diff --git a/app/SSLOps.js b/app/SSLOps.js index e302829..80d6231 100644 --- a/app/SSLOps.js +++ b/app/SSLOps.js @@ -25,11 +25,11 @@ import styles from './styles/liststyles'; import { url } from './resources/fetchInfo.json'; import LinearGradient from 'react-native-linear-gradient'; import Ionicons from 'react-native-vector-icons/Ionicons'; -//import I18n from './i18n'; +import I18n from './i18n'; const Stack = createStackNavigator(); -export const SSLInfo = ({route}) => { +{/*export const SSLInfo = ({route}) => { const item = route.params; console return ( @@ -60,7 +60,7 @@ export const SSLInfo = ({route}) => { ) - } + }*/} function SSLElement (props) { const item = props.item; @@ -75,7 +75,7 @@ function SSLElement (props) { {expand?:} - {expand?Information{item.item.text}{'\n'}Sponsor{item.item.teacher}{'\n'}Location{item.item.loc}:<>} + {expand?{I18n.t('ssl.information')}{item.item.text}{'\n'}{I18n.t('ssl.sponsor')}{item.item.teacher}{'\n'}{I18n.t('ssl.location')}{item.item.loc}:<>} ) diff --git a/app/Settings.js b/app/Settings.js deleted file mode 100644 index 48b547a..0000000 --- a/app/Settings.js +++ /dev/null @@ -1,129 +0,0 @@ -import React from 'react'; -import { - SafeAreaView, - StyleSheet, - ScrollView, - View, - Text, - StatusBar, - Modal, - TouchableHighlight, - Image, - FlatList, - TouchableOpacity, -} from 'react-native'; - -import { - Header, - LearnMoreLinks, - Colors, - DebugInstructions, - ReloadInstructions, -} from 'react-native/Libraries/NewAppScreen'; - -import styles from './styles/morestyles' -import LinearGradient from 'react-native-linear-gradient' -import Images from './Images' -import { NavigationContainer } from '@react-navigation/native' -import { createStackNavigator } from '@react-navigation/stack' -//import I18n from './i18n'; -//import Language from './Language' -//import Notifications from './Notifications' - -const Stack = createStackNavigator() - - - - -class placeHoldingForNow extends React.Component{ - constructor(props) { - super(props) - this.props = props - } - render() { - return ( - - - Coming Soon... - - - ) - } -} -/*class SettingSwitch extends React.Component { - constructor(props) { - super(props) - this.props = props - } - - render() { - return ( - - - this.props.navigation.navigate(item.key)}> - - {I18n.t('settings.' + item.key)} - - } - /> - - ) - } -} -*/ -const background = () - -class Settings extends React.Component { - render() { - return ( - - - Coming Soon... - - - /* - - background - }} - /> - {/*background - }} - />}*/ - /*{background - }} - />} - - */ - ) - } -} - -export default Settings; \ No newline at end of file diff --git a/app/Staff.js b/app/Staff.js index fd4c4d3..9b8b931 100644 --- a/app/Staff.js +++ b/app/Staff.js @@ -10,6 +10,7 @@ import { FlatList, TouchableOpacity, Image, + TouchableHighlight, Linking } from 'react-native'; @@ -20,43 +21,93 @@ import { DebugInstructions, ReloadInstructions, } from 'react-native/Libraries/NewAppScreen'; +import { NavigationContainer } from '@react-navigation/native' +import { createStackNavigator } from '@react-navigation/stack' import { SearchBar } from 'react-native-elements'; import styles from './styles/liststyles' +import morestyles from './styles/morestyles' import { url } from './resources/fetchInfo.json' -//import I18n from './i18n'; +import LinearGradient from 'react-native-linear-gradient'; +import Ionicons from 'react-native-vector-icons/Ionicons'; +import I18n from './i18n'; -const StaffElement = ({item}) => { - const [visible, setVisible] = useState(false) - const extra = ( - [ - ...item.item.emails.map(email=>( - - - +const Stack = createStackNavigator(); + +export const StaffInfo = ({route}) => { + const item = route.params; + return ( + + {item.emails.map(email => + + + + + + {email} + - - Linking.openURL("mailto:"+email)}>{email} - - - )) - ] + )} + ) - //const extra = [...item.item.emails.map(email=>({'\n'}Email: Linking.openURL("mailto:"+email)}>{email}))] +} +function StaffElement (props) { + const item = props.item; return( - setVisible(!visible)} activeOpacity={0.8}> - - - {item.item.name} - - {visible?extra:<>} - + props.navigation.navigate('StaffInfo', {data:props.data,name:props.name,emails:item.emails})} activeOpacity={0.8}> + + + + {props.item.name} + + + + ) } -class Staff extends React.Component { - +const background = () + +function Staff () { + return ( + + + background, + //headerleft: null, + title:I18n.t('app.staff'), + headerBackTitleVisible:false, + headerTintColor: 'black', + headerTitleAlign: 'center' + })} + /> + ({ + title:route.params.name, + headerTitleStyle:[morestyles.headerTitle,{alignSelf:'center'}], + headerBackground: ()=>background, + headerBackTitleVisible:false, + headerTintColor: 'black', + headerTitleAlign: 'center', + })} + /> + + + ) +} + +class Staffs extends React.Component { constructor(props) { super(props); @@ -95,7 +146,7 @@ class Staff extends React.Component { updateSearch = (search) => { this.setState({ search:search }); const searchPool = search.startsWith(this.state.search)?this.state.dataSearch:this.state.data; - const ds = searchPool.filter((thing)=>{return thing.name.toLowerCase().split(' ').some(x=>x.startsWith(search.toLowerCase()))}) + const ds = searchPool.filter((thing)=>{return thing.name.toLowerCase().startsWith(search.toLowerCase())}) this.setState({dataSearch: ds}) }; clearSearch = (search)=>{ @@ -104,21 +155,23 @@ class Staff extends React.Component { } render() { const { data , dataSearch,search} = this.state; + return ( - + } + renderItem={({item}) => } keyExtractor={item => JSON.stringify(item)} /> + ); } } diff --git a/app/StudentWeek.js b/app/StudentWeek.js index f296782..6ad15a9 100644 --- a/app/StudentWeek.js +++ b/app/StudentWeek.js @@ -17,9 +17,8 @@ import { DebugInstructions, ReloadInstructions, } from 'react-native/Libraries/NewAppScreen'; -//import I18n from './i18n'; +import I18n from './i18n'; import { url } from './resources/fetchInfo.json' - import LinearGradient from 'react-native-linear-gradient'; class StudentWeek extends React.Component { @@ -76,14 +75,14 @@ class StudentWeek extends React.Component { {this.state.data.name} - Grade {this.state.data.year} + {I18n.t('student.Grade')} {this.state.data.year} - Hobbies + {I18n.t('student.Hobbies')} {this.state.hobbyExpanded?:} @@ -93,7 +92,7 @@ class StudentWeek extends React.Component { - Achievements + {I18n.t('student.Achievements')} {this.state.achievementExpanded?:} @@ -103,7 +102,7 @@ class StudentWeek extends React.Component { - Messages + {I18n.t('student.Messages')} {this.state.messageExpanded?:} diff --git a/app/assets/arrow_right.png b/app/assets/arrow_right.png deleted file mode 100644 index bae3fd942fd51e6666e9408a692e90da98807e09..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 361 zcmV-v0ha!WP)fdKi9{l~cil0&7U|&$DqW*jy9@L z@B2v`x60q$iKo^y8~3oEsAxvD^jD|R5>+j~<6elDSSXn5*AAs6s@tOMNlR3>Y21;P zsBRm-<)3_5-D#Gn_EY!4ute2AA2#&MbO*;Fgb+dqA^e>$-^cE&+KpE-00000NkvXX Hu0mjfI1!^7 diff --git a/app/assets/calendar.png b/app/assets/calendar.png deleted file mode 100644 index 02f337fb1a1f1ff396f37e1bbe2f6c8c2736a214..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 6201 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 Xh`o})q%lHQ00000NkvXXu0mjfYCHFj diff --git a/app/assets/dep.png b/app/assets/dep.png deleted file mode 100644 index cb3d6f6d8becacbdf2ad3172632cdfa93ba09d25..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 6629 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 diff --git a/app/i18n.js b/app/i18n.js index 32e0f8f..d3342a2 100644 --- a/app/i18n.js +++ b/app/i18n.js @@ -1,12 +1,18 @@ -//'use strict'; -//import I18n from 'react-native-i18n'; -//import en from './Languages/en' -//import es from './Languages/es' +import I18n from "i18n-js"; +import * as RNLocalize from "react-native-localize"; +import en from "./Languages/en.js"; +import es from "./Languages/es.js"; -//I18n.fallbacks = true; -//I18n.translations = { - //en, - //es, -//}; +const locales = RNLocalize.getLocales(); -//export default I18n; \ No newline at end of file +if (Array.isArray(locales)) { + I18n.locale = locales[0].languageTag; +} + +I18n.fallbacks = true; +I18n.translations = { + en, + es +}; + +export default I18n; \ No newline at end of file diff --git a/app/styles/liststyles.js b/app/styles/liststyles.js index ccffbc5..94a0862 100644 --- a/app/styles/liststyles.js +++ b/app/styles/liststyles.js @@ -3,7 +3,7 @@ import {StyleSheet, StatusBar, Dimensions} from 'react-native'; const styles = StyleSheet.create({ container: { flex: 1, - marginTop: StatusBar.currentHeight || 0 + marginTop: /*StatusBar.currentHeight ||*/ 0 }, item: { backgroundColor: 'white', diff --git a/ios/Podfile b/ios/Podfile index 7b460f4..778cf8d 100644 --- a/ios/Podfile +++ b/ios/Podfile @@ -15,6 +15,8 @@ target 'blazerapp' do pod 'RNVectorIcons', :path => '../node_modules/react-native-vector-icons' + pod 'RNLocalize', :path => '../node_modules/react-native-localize' + target 'blazerappTests' do inherit! :complete # Pods for testing diff --git a/ios/Podfile.lock b/ios/Podfile.lock index 6421e37..2c82491 100644 --- a/ios/Podfile.lock +++ b/ios/Podfile.lock @@ -313,12 +313,14 @@ PODS: - React-Core (= 0.63.4) - React-cxxreact (= 0.63.4) - React-jsi (= 0.63.4) - - RNCAsyncStorage (1.13.0): + - RNCAsyncStorage (1.15.5): - React-Core - RNCMaskedView (0.1.11): - React - RNGestureHandler (1.10.3): - React-Core + - RNLocalize (2.1.1): + - React-Core - RNScreens (3.4.0): - React-Core - React-RCTImage @@ -379,9 +381,10 @@ DEPENDENCIES: - React-RCTText (from `../node_modules/react-native/Libraries/Text`) - React-RCTVibration (from `../node_modules/react-native/Libraries/Vibration`) - ReactCommon/turbomodule/core (from `../node_modules/react-native/ReactCommon`) - - "RNCAsyncStorage (from `../node_modules/@react-native-community/async-storage`)" + - "RNCAsyncStorage (from `../node_modules/@react-native-async-storage/async-storage`)" - "RNCMaskedView (from `../node_modules/@react-native-community/masked-view`)" - RNGestureHandler (from `../node_modules/react-native-gesture-handler`) + - RNLocalize (from `../node_modules/react-native-localize`) - RNScreens (from `../node_modules/react-native-screens`) - RNVectorIcons (from `../node_modules/react-native-vector-icons`) - Yoga (from `../node_modules/react-native/ReactCommon/yoga`) @@ -461,11 +464,13 @@ EXTERNAL SOURCES: ReactCommon: :path: "../node_modules/react-native/ReactCommon" RNCAsyncStorage: - :path: "../node_modules/@react-native-community/async-storage" + :path: "../node_modules/@react-native-async-storage/async-storage" RNCMaskedView: :path: "../node_modules/@react-native-community/masked-view" RNGestureHandler: :path: "../node_modules/react-native-gesture-handler" + RNLocalize: + :path: "../node_modules/react-native-localize" RNScreens: :path: "../node_modules/react-native-screens" RNVectorIcons: @@ -514,9 +519,10 @@ SPEC CHECKSUMS: React-RCTText: 5c51df3f08cb9dedc6e790161195d12bac06101c React-RCTVibration: ae4f914cfe8de7d4de95ae1ea6cc8f6315d73d9d ReactCommon: 73d79c7039f473b76db6ff7c6b159c478acbbb3b - RNCAsyncStorage: dfcd17ecff5403061bc649ee33ee751718870c8a + RNCAsyncStorage: 56a3355a10b5d660c48c6e37325ac85ebfd09885 RNCMaskedView: 0e1bc4bfa8365eba5fbbb71e07fbdc0555249489 RNGestureHandler: a479ebd5ed4221a810967000735517df0d2db211 + RNLocalize: 82a569022724d35461e2dc5b5d015a13c3ca995b RNScreens: 21b73c94c9117e1110a79ee0ee80c93ccefed8ce RNVectorIcons: bc69e6a278b14842063605de32bec61f0b251a59 Yoga: 4bd86afe9883422a7c4028c00e34790f560923d6 diff --git a/package-lock.json b/package-lock.json index 092a0a0..0f23192 100644 --- a/package-lock.json +++ b/package-lock.json @@ -8,20 +8,25 @@ "version": "0.0.1", "dependencies": { "@k3rn31p4nic/google-translate-api": "github:k3rn31p4nic/google-translate-api", - "@react-native-community/async-storage": "github:react-native-community/async-storage", + "@react-native-async-storage/async-storage": "^1.15.5", "@react-native-community/masked-view": "^0.1.11", "@react-navigation/bottom-tabs": "^5.8.0", "@react-navigation/native": "^5.9.4", "@react-navigation/stack": "^5.9.0", "@vitalets/google-translate-api": "^4.0.0", "events": "^3.2.0", + "i18n-js": "^3.8.0", + "i18next": "^20.3.3", + "lodash.memoize": "^4.1.2", "querystring": "^0.2.0", "react": "16.13.1", + "react-i18next": "^11.11.3", "react-native": "^0.63.2", "react-native-elements": "^2.2.0", "react-native-gesture-handler": "^1.10.3", "react-native-linear-gradient": "^2.5.6", "react-native-locale-detector": "^1.0.1", + "react-native-localize": "^2.1.1", "react-native-safe-area-context": "^3.2.0", "react-native-screens": "^3.4.0", "react-native-splash-screen": "^3.2.0", @@ -1967,11 +1972,10 @@ "node": ">=8.0.0" } }, - "node_modules/@react-native-community/async-storage": { - "name": "@react-native-async-storage/async-storage", - "version": "1.13.0", - "resolved": "git+ssh://git@github.com/react-native-community/async-storage.git#32f697a67173ca0daa051c292561d74567a0147a", - "license": "MIT", + "node_modules/@react-native-async-storage/async-storage": { + "version": "1.15.5", + "resolved": "https://registry.npmjs.org/@react-native-async-storage/async-storage/-/async-storage-1.15.5.tgz", + "integrity": "sha512-4AYehLH39B9a8UXCMf3ieOK+G61wGMP72ikx6/XSMA0DUnvx0PgaeaT2Wyt06kTrDTy8edewKnbrbeqwaM50TQ==", "dependencies": { "deep-assign": "^3.0.0" }, @@ -7016,6 +7020,14 @@ "integrity": "sha512-H2iMtd0I4Mt5eYiapRdIDjp+XzelXQ0tFE4JS7YFwFevXXMmOp9myNrUvCg0D6ws8iqkRPBfKHgbwig1SmlLfg==", "dev": true }, + "node_modules/html-parse-stringify": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/html-parse-stringify/-/html-parse-stringify-3.0.1.tgz", + "integrity": "sha512-KknJ50kTInJ7qIScF3jeaFRpMpE8/lfiTdzf/twXyPBLAGrLRTmkz3AdTnKeh40X8k9L2fdYwEp/42WGXIRGcg==", + "dependencies": { + "void-elements": "3.1.0" + } + }, "node_modules/http-cache-semantics": { "version": "4.1.0", "resolved": "https://registry.npmjs.org/http-cache-semantics/-/http-cache-semantics-4.1.0.tgz", @@ -7072,6 +7084,30 @@ "node": ">=8.12.0" } }, + "node_modules/i18n-js": { + "version": "3.8.0", + "resolved": "https://registry.npmjs.org/i18n-js/-/i18n-js-3.8.0.tgz", + "integrity": "sha512-hDsGgPuvw/2P+lXSbOafAwspK8Ste8YrwuuUg17W3wEcO1JkQxBlPgsN1t2+852nTnz4YSYTjZc/1nAA2PC/nw==" + }, + "node_modules/i18next": { + "version": "20.3.3", + "resolved": "https://registry.npmjs.org/i18next/-/i18next-20.3.3.tgz", + "integrity": "sha512-tx9EUhHeaipvZ5pFLTaN9Xdm5Ssal774MpujaTA1Wv/ST/1My5SnoBmliY1lOpyEP5Z51Dq1gXifk/y4Yt3agQ==", + "dependencies": { + "@babel/runtime": "^7.12.0" + } + }, + "node_modules/i18next/node_modules/@babel/runtime": { + "version": "7.14.6", + "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.14.6.tgz", + "integrity": "sha512-/PCB2uJ7oM44tz8YhC4Z/6PeOKXp4K588f+5M3clr1M4zbqztlo0XEfJ2LEzj/FgwfgGcIdl8n7YYjTCI0BYwg==", + "dependencies": { + "regenerator-runtime": "^0.13.4" + }, + "engines": { + "node": ">=6.9.0" + } + }, "node_modules/iconv-lite": { "version": "0.4.24", "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz", @@ -9605,6 +9641,11 @@ "resolved": "https://registry.npmjs.org/lodash.isstring/-/lodash.isstring-4.0.1.tgz", "integrity": "sha1-1SfftUVuynzJu5XV2ur4i6VKVFE=" }, + "node_modules/lodash.memoize": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/lodash.memoize/-/lodash.memoize-4.1.2.tgz", + "integrity": "sha1-vMbEmkKihA7Zl/Mj6tpezRguC/4=" + }, "node_modules/lodash.omit": { "version": "4.5.0", "resolved": "https://registry.npmjs.org/lodash.omit/-/lodash.omit-4.5.0.tgz", @@ -12416,6 +12457,30 @@ "ws": "^7" } }, + "node_modules/react-i18next": { + "version": "11.11.3", + "resolved": "https://registry.npmjs.org/react-i18next/-/react-i18next-11.11.3.tgz", + "integrity": "sha512-upzG5/SpyOlYP5oSF4K8TZBvDWVhnCo38JNV+KnWjrg0+IaJCBltyh6lRGZDO5ovLyA4dU6Ip0bwbUCjb6Yyxw==", + "dependencies": { + "@babel/runtime": "^7.14.5", + "html-parse-stringify": "^3.0.1" + }, + "peerDependencies": { + "i18next": ">= 19.0.0", + "react": ">= 16.8.0" + } + }, + "node_modules/react-i18next/node_modules/@babel/runtime": { + "version": "7.14.6", + "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.14.6.tgz", + "integrity": "sha512-/PCB2uJ7oM44tz8YhC4Z/6PeOKXp4K588f+5M3clr1M4zbqztlo0XEfJ2LEzj/FgwfgGcIdl8n7YYjTCI0BYwg==", + "dependencies": { + "regenerator-runtime": "^0.13.4" + }, + "engines": { + "node": ">=6.9.0" + } + }, "node_modules/react-is": { "version": "16.13.1", "resolved": "https://registry.npmjs.org/react-is/-/react-is-16.13.1.tgz", @@ -12539,6 +12604,14 @@ "resolved": "https://registry.npmjs.org/react-native-locale-detector/-/react-native-locale-detector-1.0.1.tgz", "integrity": "sha1-wAImHstgYZ5ZUiV8jH+jHCwV7TA=" }, + "node_modules/react-native-localize": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/react-native-localize/-/react-native-localize-2.1.1.tgz", + "integrity": "sha512-+uyz2/b0vyLq19fcb7r1qU1gqmzbp3aC6EMTvOVXwfBuiN+aJXR/fDdFOJJ8D7+bLccKeuS2zBDrazh+ZayX/g==", + "peerDependencies": { + "react-native": ">=0.60.0" + } + }, "node_modules/react-native-ratings": { "version": "7.6.1", "resolved": "https://registry.npmjs.org/react-native-ratings/-/react-native-ratings-7.6.1.tgz", @@ -14710,20 +14783,6 @@ "is-typedarray": "^1.0.0" } }, - "node_modules/typescript": { - "version": "4.3.4", - "resolved": "https://registry.npmjs.org/typescript/-/typescript-4.3.4.tgz", - "integrity": "sha512-uauPG7XZn9F/mo+7MrsRjyvbxFpzemRjKEZXS4AK83oP2KKOJPvb+9cO/gmnv8arWZvhnjVOXz7B49m1l0e9Ew==", - "dev": true, - "peer": true, - "bin": { - "tsc": "bin/tsc", - "tsserver": "bin/tsserver" - }, - "engines": { - "node": ">=4.2.0" - } - }, "node_modules/ua-parser-js": { "version": "0.7.28", "resolved": "https://registry.npmjs.org/ua-parser-js/-/ua-parser-js-0.7.28.tgz", @@ -15091,6 +15150,14 @@ "resolved": "https://registry.npmjs.org/vlq/-/vlq-1.0.1.tgz", "integrity": "sha512-gQpnTgkubC6hQgdIcRdYGDSDc+SaujOdyesZQMv6JlfQee/9Mp0Qhnys6WxDWvQnL5WZdT7o2Ul187aSt0Rq+w==" }, + "node_modules/void-elements": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/void-elements/-/void-elements-3.1.0.tgz", + "integrity": "sha1-YU9/v42AHwu18GYfWy9XhXUOTwk=", + "engines": { + "node": ">=0.10.0" + } + }, "node_modules/w3c-hr-time": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/w3c-hr-time/-/w3c-hr-time-1.0.2.tgz", @@ -16813,9 +16880,10 @@ "got": "^11.8.1" } }, - "@react-native-community/async-storage": { - "version": "git+ssh://git@github.com/react-native-community/async-storage.git#32f697a67173ca0daa051c292561d74567a0147a", - "from": "@react-native-community/async-storage@github:react-native-community/async-storage", + "@react-native-async-storage/async-storage": { + "version": "1.15.5", + "resolved": "https://registry.npmjs.org/@react-native-async-storage/async-storage/-/async-storage-1.15.5.tgz", + "integrity": "sha512-4AYehLH39B9a8UXCMf3ieOK+G61wGMP72ikx6/XSMA0DUnvx0PgaeaT2Wyt06kTrDTy8edewKnbrbeqwaM50TQ==", "requires": { "deep-assign": "^3.0.0" } @@ -17475,8 +17543,7 @@ "@react-native-community/masked-view": { "version": "0.1.11", "resolved": "https://registry.npmjs.org/@react-native-community/masked-view/-/masked-view-0.1.11.tgz", - "integrity": "sha512-rQfMIGSR/1r/SyN87+VD8xHHzDYeHaJq6elOSCAD+0iLagXkSI2pfA0LmSXP21uw5i3em7GkkRjfJ8wpqWXZNw==", - "requires": {} + "integrity": "sha512-rQfMIGSR/1r/SyN87+VD8xHHzDYeHaJq6elOSCAD+0iLagXkSI2pfA0LmSXP21uw5i3em7GkkRjfJ8wpqWXZNw==" }, "@react-navigation/bottom-tabs": { "version": "5.11.11", @@ -18039,8 +18106,7 @@ "version": "5.3.1", "resolved": "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-5.3.1.tgz", "integrity": "sha512-K0Ptm/47OKfQRpNQ2J/oIN/3QYiK6FwW+eJbILhsdxh2WTLdl+30o8aGdTbm5JbffpFFAg/g+zi1E+jvJha5ng==", - "dev": true, - "requires": {} + "dev": true }, "acorn-walk": { "version": "6.2.0", @@ -19698,8 +19764,7 @@ "version": "22.4.1", "resolved": "https://registry.npmjs.org/eslint-plugin-jest/-/eslint-plugin-jest-22.4.1.tgz", "integrity": "sha512-gcLfn6P2PrFAVx3AobaOzlIEevpAEf9chTpFZz7bYfc7pz8XRv7vuKTIE4hxPKZSha6XWKKplDQ0x9Pq8xX2mg==", - "dev": true, - "requires": {} + "dev": true }, "eslint-plugin-prettier": { "version": "3.1.2", @@ -19751,8 +19816,7 @@ "version": "3.0.0", "resolved": "https://registry.npmjs.org/eslint-plugin-react-hooks/-/eslint-plugin-react-hooks-3.0.0.tgz", "integrity": "sha512-EjxTHxjLKIBWFgDJdhKKzLh5q+vjTFrqNZX36uIxWS4OfyXe5DawqPj3U5qeJ1ngLwatjzQnmR0Lz0J0YH3kxw==", - "dev": true, - "requires": {} + "dev": true }, "eslint-plugin-react-native": { "version": "3.8.1", @@ -20761,6 +20825,14 @@ "integrity": "sha512-H2iMtd0I4Mt5eYiapRdIDjp+XzelXQ0tFE4JS7YFwFevXXMmOp9myNrUvCg0D6ws8iqkRPBfKHgbwig1SmlLfg==", "dev": true }, + "html-parse-stringify": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/html-parse-stringify/-/html-parse-stringify-3.0.1.tgz", + "integrity": "sha512-KknJ50kTInJ7qIScF3jeaFRpMpE8/lfiTdzf/twXyPBLAGrLRTmkz3AdTnKeh40X8k9L2fdYwEp/42WGXIRGcg==", + "requires": { + "void-elements": "3.1.0" + } + }, "http-cache-semantics": { "version": "4.1.0", "resolved": "https://registry.npmjs.org/http-cache-semantics/-/http-cache-semantics-4.1.0.tgz", @@ -20804,6 +20876,29 @@ "integrity": "sha512-SEQu7vl8KjNL2eoGBLF3+wAjpsNfA9XMlXAYj/3EdaNfAlxKthD1xjEQfGOUhllCGGJVNY34bRr6lPINhNjyZw==", "dev": true }, + "i18n-js": { + "version": "3.8.0", + "resolved": "https://registry.npmjs.org/i18n-js/-/i18n-js-3.8.0.tgz", + "integrity": "sha512-hDsGgPuvw/2P+lXSbOafAwspK8Ste8YrwuuUg17W3wEcO1JkQxBlPgsN1t2+852nTnz4YSYTjZc/1nAA2PC/nw==" + }, + "i18next": { + "version": "20.3.3", + "resolved": "https://registry.npmjs.org/i18next/-/i18next-20.3.3.tgz", + "integrity": "sha512-tx9EUhHeaipvZ5pFLTaN9Xdm5Ssal774MpujaTA1Wv/ST/1My5SnoBmliY1lOpyEP5Z51Dq1gXifk/y4Yt3agQ==", + "requires": { + "@babel/runtime": "^7.12.0" + }, + "dependencies": { + "@babel/runtime": { + "version": "7.14.6", + "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.14.6.tgz", + "integrity": "sha512-/PCB2uJ7oM44tz8YhC4Z/6PeOKXp4K588f+5M3clr1M4zbqztlo0XEfJ2LEzj/FgwfgGcIdl8n7YYjTCI0BYwg==", + "requires": { + "regenerator-runtime": "^0.13.4" + } + } + } + }, "iconv-lite": { "version": "0.4.24", "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz", @@ -21939,8 +22034,7 @@ "version": "1.2.2", "resolved": "https://registry.npmjs.org/jest-pnp-resolver/-/jest-pnp-resolver-1.2.2.tgz", "integrity": "sha512-olV41bKSMm8BdnuMsewT4jqlZ8+3TCARAXjZGT9jcoSnrfUnRCqnMoF9XEeoWjbzObpqF9dRhHQj0Xb9QdF6/w==", - "dev": true, - "requires": {} + "dev": true }, "jest-regex-util": { "version": "25.2.6", @@ -22746,6 +22840,11 @@ "resolved": "https://registry.npmjs.org/lodash.isstring/-/lodash.isstring-4.0.1.tgz", "integrity": "sha1-1SfftUVuynzJu5XV2ur4i6VKVFE=" }, + "lodash.memoize": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/lodash.memoize/-/lodash.memoize-4.1.2.tgz", + "integrity": "sha1-vMbEmkKihA7Zl/Mj6tpezRguC/4=" + }, "lodash.omit": { "version": "4.5.0", "resolved": "https://registry.npmjs.org/lodash.omit/-/lodash.omit-4.5.0.tgz", @@ -24078,6 +24177,7 @@ "resolved": "https://registry.npmjs.org/metro-react-native-babel-transformer/-/metro-react-native-babel-transformer-0.59.0.tgz", "integrity": "sha512-1O3wrnMq4NcPQ1asEcl9lRDn/t+F1Oef6S9WaYVIKEhg9m/EQRGVrrTVP+R6B5Eeaj3+zNKbzM8Dx/NWy1hUbQ==", "requires": { + "@babel/core": "^7.0.0", "babel-preset-fbjs": "^3.3.0", "metro-babel-transformer": "0.59.0", "metro-react-native-babel-preset": "0.59.0", @@ -24971,6 +25071,25 @@ "ws": "^7" } }, + "react-i18next": { + "version": "11.11.3", + "resolved": "https://registry.npmjs.org/react-i18next/-/react-i18next-11.11.3.tgz", + "integrity": "sha512-upzG5/SpyOlYP5oSF4K8TZBvDWVhnCo38JNV+KnWjrg0+IaJCBltyh6lRGZDO5ovLyA4dU6Ip0bwbUCjb6Yyxw==", + "requires": { + "@babel/runtime": "^7.14.5", + "html-parse-stringify": "^3.0.1" + }, + "dependencies": { + "@babel/runtime": { + "version": "7.14.6", + "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.14.6.tgz", + "integrity": "sha512-/PCB2uJ7oM44tz8YhC4Z/6PeOKXp4K588f+5M3clr1M4zbqztlo0XEfJ2LEzj/FgwfgGcIdl8n7YYjTCI0BYwg==", + "requires": { + "regenerator-runtime": "^0.13.4" + } + } + } + }, "react-is": { "version": "16.13.1", "resolved": "https://registry.npmjs.org/react-is/-/react-is-16.13.1.tgz", @@ -25101,20 +25220,23 @@ "react-native-iphone-x-helper": { "version": "1.3.1", "resolved": "https://registry.npmjs.org/react-native-iphone-x-helper/-/react-native-iphone-x-helper-1.3.1.tgz", - "integrity": "sha512-HOf0jzRnq2/aFUcdCJ9w9JGzN3gdEg0zFE4FyYlp4jtidqU03D5X7ZegGKfT1EWteR0gPBGp9ye5T5FvSWi9Yg==", - "requires": {} + "integrity": "sha512-HOf0jzRnq2/aFUcdCJ9w9JGzN3gdEg0zFE4FyYlp4jtidqU03D5X7ZegGKfT1EWteR0gPBGp9ye5T5FvSWi9Yg==" }, "react-native-linear-gradient": { "version": "2.5.6", "resolved": "https://registry.npmjs.org/react-native-linear-gradient/-/react-native-linear-gradient-2.5.6.tgz", - "integrity": "sha512-HDwEaXcQIuXXCV70O+bK1rizFong3wj+5Q/jSyifKFLg0VWF95xh8XQgfzXwtq0NggL9vNjPKXa016KuFu+VFg==", - "requires": {} + "integrity": "sha512-HDwEaXcQIuXXCV70O+bK1rizFong3wj+5Q/jSyifKFLg0VWF95xh8XQgfzXwtq0NggL9vNjPKXa016KuFu+VFg==" }, "react-native-locale-detector": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/react-native-locale-detector/-/react-native-locale-detector-1.0.1.tgz", "integrity": "sha1-wAImHstgYZ5ZUiV8jH+jHCwV7TA=" }, + "react-native-localize": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/react-native-localize/-/react-native-localize-2.1.1.tgz", + "integrity": "sha512-+uyz2/b0vyLq19fcb7r1qU1gqmzbp3aC6EMTvOVXwfBuiN+aJXR/fDdFOJJ8D7+bLccKeuS2zBDrazh+ZayX/g==" + }, "react-native-ratings": { "version": "7.6.1", "resolved": "https://registry.npmjs.org/react-native-ratings/-/react-native-ratings-7.6.1.tgz", @@ -25127,8 +25249,7 @@ "react-native-safe-area-context": { "version": "3.2.0", "resolved": "https://registry.npmjs.org/react-native-safe-area-context/-/react-native-safe-area-context-3.2.0.tgz", - "integrity": "sha512-k2Nty4PwSnrg9HwrYeeE+EYqViYJoOFwEy9LxL5RIRfoqxAq/uQXNGwpUg2/u4gnKpBbEPa9eRh15KKMe/VHkA==", - "requires": {} + "integrity": "sha512-k2Nty4PwSnrg9HwrYeeE+EYqViYJoOFwEy9LxL5RIRfoqxAq/uQXNGwpUg2/u4gnKpBbEPa9eRh15KKMe/VHkA==" }, "react-native-screens": { "version": "3.4.0", @@ -25141,8 +25262,7 @@ "react-native-splash-screen": { "version": "3.2.0", "resolved": "https://registry.npmjs.org/react-native-splash-screen/-/react-native-splash-screen-3.2.0.tgz", - "integrity": "sha512-Ls9qiNZzW/OLFoI25wfjjAcrf2DZ975hn2vr6U9gyuxi2nooVbzQeFoQS5vQcbCt9QX5NY8ASEEAtlLdIa6KVg==", - "requires": {} + "integrity": "sha512-Ls9qiNZzW/OLFoI25wfjjAcrf2DZ975hn2vr6U9gyuxi2nooVbzQeFoQS5vQcbCt9QX5NY8ASEEAtlLdIa6KVg==" }, "react-native-status-bar-height": { "version": "2.6.0", @@ -26820,13 +26940,6 @@ "is-typedarray": "^1.0.0" } }, - "typescript": { - "version": "4.3.4", - "resolved": "https://registry.npmjs.org/typescript/-/typescript-4.3.4.tgz", - "integrity": "sha512-uauPG7XZn9F/mo+7MrsRjyvbxFpzemRjKEZXS4AK83oP2KKOJPvb+9cO/gmnv8arWZvhnjVOXz7B49m1l0e9Ew==", - "dev": true, - "peer": true - }, "ua-parser-js": { "version": "0.7.28", "resolved": "https://registry.npmjs.org/ua-parser-js/-/ua-parser-js-0.7.28.tgz", @@ -27103,6 +27216,11 @@ "resolved": "https://registry.npmjs.org/vlq/-/vlq-1.0.1.tgz", "integrity": "sha512-gQpnTgkubC6hQgdIcRdYGDSDc+SaujOdyesZQMv6JlfQee/9Mp0Qhnys6WxDWvQnL5WZdT7o2Ul187aSt0Rq+w==" }, + "void-elements": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/void-elements/-/void-elements-3.1.0.tgz", + "integrity": "sha1-YU9/v42AHwu18GYfWy9XhXUOTwk=" + }, "w3c-hr-time": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/w3c-hr-time/-/w3c-hr-time-1.0.2.tgz", @@ -27287,8 +27405,7 @@ "ws": { "version": "7.5.0", "resolved": "https://registry.npmjs.org/ws/-/ws-7.5.0.tgz", - "integrity": "sha512-6ezXvzOZupqKj4jUqbQ9tXuJNo+BR2gU8fFRk3XCP3e0G6WT414u5ELe6Y0vtp7kmSJ3F7YWObSNr1ESsgi4vw==", - "requires": {} + "integrity": "sha512-6ezXvzOZupqKj4jUqbQ9tXuJNo+BR2gU8fFRk3XCP3e0G6WT414u5ELe6Y0vtp7kmSJ3F7YWObSNr1ESsgi4vw==" }, "xcode": { "version": "2.1.0", diff --git a/package.json b/package.json index f4a0f9d..3e65bf8 100644 --- a/package.json +++ b/package.json @@ -11,20 +11,25 @@ }, "dependencies": { "@k3rn31p4nic/google-translate-api": "github:k3rn31p4nic/google-translate-api", - "@react-native-community/async-storage": "github:react-native-community/async-storage", + "@react-native-async-storage/async-storage": "^1.15.5", "@react-native-community/masked-view": "^0.1.11", "@react-navigation/bottom-tabs": "^5.8.0", "@react-navigation/native": "^5.9.4", "@react-navigation/stack": "^5.9.0", "@vitalets/google-translate-api": "^4.0.0", "events": "^3.2.0", + "i18n-js": "^3.8.0", + "i18next": "^20.3.3", + "lodash.memoize": "^4.1.2", "querystring": "^0.2.0", "react": "16.13.1", + "react-i18next": "^11.11.3", "react-native": "^0.63.2", "react-native-elements": "^2.2.0", "react-native-gesture-handler": "^1.10.3", "react-native-linear-gradient": "^2.5.6", "react-native-locale-detector": "^1.0.1", + "react-native-localize": "^2.1.1", "react-native-safe-area-context": "^3.2.0", "react-native-screens": "^3.4.0", "react-native-splash-screen": "^3.2.0", diff --git a/yarn.lock b/yarn.lock index b96b397..33cbc07 100644 --- a/yarn.lock +++ b/yarn.lock @@ -2,12 +2,17 @@ # yarn lockfile v1 -"@babel/code-frame@^7.0.0", "@babel/code-frame@^7.10.4": - "integrity" "sha512-vG6SvB6oYEhvgisZNFRmRCUkLz11c7rp+tbNTynGqc6mS1d5ATd/sGyV6W0KZZnXRKMTzZDRgQT3Ou9jhpAfUg==" - "resolved" "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.10.4.tgz" - "version" "7.10.4" +"@babel/code-frame@^7.0.0", "@babel/code-frame@^7.10.4", "@babel/code-frame@^7.14.5": + "integrity" "sha512-9pzDqyc6OLDaqe+zbACgFkb6fKMNG6CObKpnYXChRsvYGyEdc7CA2BaqeOM+vOtCS5ndmJicPJhKAwYRI6UfFw==" + "resolved" "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.14.5.tgz" + "version" "7.14.5" dependencies: - "@babel/highlight" "^7.10.4" + "@babel/highlight" "^7.14.5" + +"@babel/compat-data@^7.13.11", "@babel/compat-data@^7.14.5", "@babel/compat-data@^7.14.7": + "integrity" "sha512-nS6dZaISCXJ3+518CWiBfEr//gHyMO02uDxBkXTKZDN5POruCnOZ1N4YBRZDCabwF8nZMWBpRxIicmXtBs+fvw==" + "resolved" "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.14.7.tgz" + "version" "7.14.7" "@babel/core@^7.0.0", "@babel/core@^7.1.0", "@babel/core@^7.7.5", "@babel/core@7.11.1": "integrity" "sha512-XqF7F6FWQdKGGWAzGELL+aCO1p+lRY5Tj5/tbT3St1G8NaH70jhhDIKknIZaDans0OQBG5wRAldROLHSt44BgQ==" @@ -31,320 +36,266 @@ "semver" "^5.4.1" "source-map" "^0.5.0" -"@babel/generator@^7.11.0", "@babel/generator@^7.5.0": - "integrity" "sha512-fEm3Uzw7Mc9Xi//qU20cBKatTfs2aOtKqmvy/Vm7RkJEGFQ4xc9myCfbXxqK//ZS8MR/ciOHw6meGASJuKmDfQ==" - "resolved" "https://registry.npmjs.org/@babel/generator/-/generator-7.11.0.tgz" - "version" "7.11.0" +"@babel/generator@^7.11.0", "@babel/generator@^7.14.5", "@babel/generator@^7.5.0": + "integrity" "sha512-y3rlP+/G25OIX3mYKKIOlQRcqj7YgrvHxOLbVmyLJ9bPmi5ttvUmpydVjcFjZphOktWuA7ovbx91ECloWTfjIA==" + "resolved" "https://registry.npmjs.org/@babel/generator/-/generator-7.14.5.tgz" + "version" "7.14.5" dependencies: - "@babel/types" "^7.11.0" + "@babel/types" "^7.14.5" "jsesc" "^2.5.1" "source-map" "^0.5.0" -"@babel/generator@^7.12.5": - "integrity" "sha512-m16TQQJ8hPt7E+OS/XVQg/7U184MLXtvuGbCdA7na61vha+ImkyyNM/9DDA0unYCVZn3ZOhng+qz48/KBOT96A==" - "resolved" "https://registry.npmjs.org/@babel/generator/-/generator-7.12.5.tgz" - "version" "7.12.5" +"@babel/helper-annotate-as-pure@^7.14.5": + "integrity" "sha512-EivH9EgBIb+G8ij1B2jAwSH36WnGvkQSEC6CkX/6v6ZFlw5fVOHvsgGF4uiEHO2GzMvunZb6tDLQEQSdrdocrA==" + "resolved" "https://registry.npmjs.org/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.14.5.tgz" + "version" "7.14.5" dependencies: - "@babel/types" "^7.12.5" - "jsesc" "^2.5.1" - "source-map" "^0.5.0" + "@babel/types" "^7.14.5" -"@babel/helper-annotate-as-pure@^7.10.4": - "integrity" "sha512-XQlqKQP4vXFB7BN8fEEerrmYvHp3fK/rBkRFz9jaJbzK0B1DSfej9Kc7ZzE8Z/OnId1jpJdNAZ3BFQjWG68rcA==" - "resolved" "https://registry.npmjs.org/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.10.4.tgz" - "version" "7.10.4" +"@babel/helper-builder-binary-assignment-operator-visitor@^7.14.5": + "integrity" "sha512-YTA/Twn0vBXDVGJuAX6PwW7x5zQei1luDDo2Pl6q1qZ7hVNl0RZrhHCQG/ArGpR29Vl7ETiB8eJyrvpuRp300w==" + "resolved" "https://registry.npmjs.org/@babel/helper-builder-binary-assignment-operator-visitor/-/helper-builder-binary-assignment-operator-visitor-7.14.5.tgz" + "version" "7.14.5" dependencies: - "@babel/types" "^7.10.4" + "@babel/helper-explode-assignable-expression" "^7.14.5" + "@babel/types" "^7.14.5" -"@babel/helper-builder-binary-assignment-operator-visitor@^7.10.4": - "integrity" "sha512-L0zGlFrGWZK4PbT8AszSfLTM5sDU1+Az/En9VrdT8/LmEiJt4zXt+Jve9DCAnQcbqDhCI+29y/L93mrDzddCcg==" - "resolved" "https://registry.npmjs.org/@babel/helper-builder-binary-assignment-operator-visitor/-/helper-builder-binary-assignment-operator-visitor-7.10.4.tgz" - "version" "7.10.4" +"@babel/helper-compilation-targets@^7.13.0", "@babel/helper-compilation-targets@^7.14.5": + "integrity" "sha512-v+QtZqXEiOnpO6EYvlImB6zCD2Lel06RzOPzmkz/D/XgQiUu3C/Jb1LOqSt/AIA34TYi/Q+KlT8vTQrgdxkbLw==" + "resolved" "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.14.5.tgz" + "version" "7.14.5" dependencies: - "@babel/helper-explode-assignable-expression" "^7.10.4" - "@babel/types" "^7.10.4" + "@babel/compat-data" "^7.14.5" + "@babel/helper-validator-option" "^7.14.5" + "browserslist" "^4.16.6" + "semver" "^6.3.0" -"@babel/helper-builder-react-jsx-experimental@^7.10.4": - "integrity" "sha512-Buewnx6M4ttG+NLkKyt7baQn7ScC/Td+e99G914fRU8fGIUivDDgVIQeDHFa5e4CRSJQt58WpNHhsAZgtzVhsg==" - "resolved" "https://registry.npmjs.org/@babel/helper-builder-react-jsx-experimental/-/helper-builder-react-jsx-experimental-7.10.5.tgz" - "version" "7.10.5" +"@babel/helper-create-class-features-plugin@^7.14.5", "@babel/helper-create-class-features-plugin@^7.14.6": + "integrity" "sha512-Z6gsfGofTxH/+LQXqYEK45kxmcensbzmk/oi8DmaQytlQCgqNZt9XQF8iqlI/SeXWVjaMNxvYvzaYw+kh42mDg==" + "resolved" "https://registry.npmjs.org/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.14.6.tgz" + "version" "7.14.6" dependencies: - "@babel/helper-annotate-as-pure" "^7.10.4" - "@babel/helper-module-imports" "^7.10.4" - "@babel/types" "^7.10.5" + "@babel/helper-annotate-as-pure" "^7.14.5" + "@babel/helper-function-name" "^7.14.5" + "@babel/helper-member-expression-to-functions" "^7.14.5" + "@babel/helper-optimise-call-expression" "^7.14.5" + "@babel/helper-replace-supers" "^7.14.5" + "@babel/helper-split-export-declaration" "^7.14.5" -"@babel/helper-builder-react-jsx@^7.10.4": - "integrity" "sha512-5nPcIZ7+KKDxT1427oBivl9V9YTal7qk0diccnh7RrcgrT/pGFOjgGw1dgryyx1GvHEpXVfoDF6Ak3rTiWh8Rg==" - "resolved" "https://registry.npmjs.org/@babel/helper-builder-react-jsx/-/helper-builder-react-jsx-7.10.4.tgz" - "version" "7.10.4" +"@babel/helper-create-regexp-features-plugin@^7.14.5": + "integrity" "sha512-TLawwqpOErY2HhWbGJ2nZT5wSkR192QpN+nBg1THfBfftrlvOh+WbhrxXCH4q4xJ9Gl16BGPR/48JA+Ryiho/A==" + "resolved" "https://registry.npmjs.org/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.14.5.tgz" + "version" "7.14.5" dependencies: - "@babel/helper-annotate-as-pure" "^7.10.4" - "@babel/types" "^7.10.4" + "@babel/helper-annotate-as-pure" "^7.14.5" + "regexpu-core" "^4.7.1" -"@babel/helper-create-class-features-plugin@^7.10.4", "@babel/helper-create-class-features-plugin@^7.10.5": - "integrity" "sha512-0nkdeijB7VlZoLT3r/mY3bUkw3T8WG/hNw+FATs/6+pG2039IJWjTYL0VTISqsNHMUTEnwbVnc89WIJX9Qed0A==" - "resolved" "https://registry.npmjs.org/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.10.5.tgz" - "version" "7.10.5" +"@babel/helper-define-polyfill-provider@^0.2.2": + "integrity" "sha512-RH3QDAfRMzj7+0Nqu5oqgO5q9mFtQEVvCRsi8qCEfzLR9p2BHfn5FzhSB2oj1fF7I2+DcTORkYaQ6aTR9Cofew==" + "resolved" "https://registry.npmjs.org/@babel/helper-define-polyfill-provider/-/helper-define-polyfill-provider-0.2.3.tgz" + "version" "0.2.3" dependencies: - "@babel/helper-function-name" "^7.10.4" - "@babel/helper-member-expression-to-functions" "^7.10.5" - "@babel/helper-optimise-call-expression" "^7.10.4" - "@babel/helper-plugin-utils" "^7.10.4" - "@babel/helper-replace-supers" "^7.10.4" - "@babel/helper-split-export-declaration" "^7.10.4" + "@babel/helper-compilation-targets" "^7.13.0" + "@babel/helper-module-imports" "^7.12.13" + "@babel/helper-plugin-utils" "^7.13.0" + "@babel/traverse" "^7.13.0" + "debug" "^4.1.1" + "lodash.debounce" "^4.0.8" + "resolve" "^1.14.2" + "semver" "^6.1.2" -"@babel/helper-create-regexp-features-plugin@^7.10.4": - "integrity" "sha512-2/hu58IEPKeoLF45DBwx3XFqsbCXmkdAay4spVr2x0jYgRxrSNp+ePwvSsy9g6YSaNDcKIQVPXk1Ov8S2edk2g==" - "resolved" "https://registry.npmjs.org/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.10.4.tgz" - "version" "7.10.4" +"@babel/helper-explode-assignable-expression@^7.14.5": + "integrity" "sha512-Htb24gnGJdIGT4vnRKMdoXiOIlqOLmdiUYpAQ0mYfgVT/GDm8GOYhgi4GL+hMKrkiPRohO4ts34ELFsGAPQLDQ==" + "resolved" "https://registry.npmjs.org/@babel/helper-explode-assignable-expression/-/helper-explode-assignable-expression-7.14.5.tgz" + "version" "7.14.5" dependencies: - "@babel/helper-annotate-as-pure" "^7.10.4" - "@babel/helper-regex" "^7.10.4" - "regexpu-core" "^4.7.0" + "@babel/types" "^7.14.5" -"@babel/helper-define-map@^7.10.4": - "integrity" "sha512-fMw4kgFB720aQFXSVaXr79pjjcW5puTCM16+rECJ/plGS+zByelE8l9nCpV1GibxTnFVmUuYG9U8wYfQHdzOEQ==" - "resolved" "https://registry.npmjs.org/@babel/helper-define-map/-/helper-define-map-7.10.5.tgz" - "version" "7.10.5" +"@babel/helper-function-name@^7.14.5": + "integrity" "sha512-Gjna0AsXWfFvrAuX+VKcN/aNNWonizBj39yGwUzVDVTlMYJMK2Wp6xdpy72mfArFq5uK+NOuexfzZlzI1z9+AQ==" + "resolved" "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.14.5.tgz" + "version" "7.14.5" dependencies: - "@babel/helper-function-name" "^7.10.4" - "@babel/types" "^7.10.5" - "lodash" "^4.17.19" + "@babel/helper-get-function-arity" "^7.14.5" + "@babel/template" "^7.14.5" + "@babel/types" "^7.14.5" -"@babel/helper-explode-assignable-expression@^7.10.4": - "integrity" "sha512-4K71RyRQNPRrR85sr5QY4X3VwG4wtVoXZB9+L3r1Gp38DhELyHCtovqydRi7c1Ovb17eRGiQ/FD5s8JdU0Uy5A==" - "resolved" "https://registry.npmjs.org/@babel/helper-explode-assignable-expression/-/helper-explode-assignable-expression-7.10.4.tgz" - "version" "7.10.4" +"@babel/helper-get-function-arity@^7.14.5": + "integrity" "sha512-I1Db4Shst5lewOM4V+ZKJzQ0JGGaZ6VY1jYvMghRjqs6DWgxLCIyFt30GlnKkfUeFLpJt2vzbMVEXVSXlIFYUg==" + "resolved" "https://registry.npmjs.org/@babel/helper-get-function-arity/-/helper-get-function-arity-7.14.5.tgz" + "version" "7.14.5" dependencies: - "@babel/traverse" "^7.10.4" - "@babel/types" "^7.10.4" + "@babel/types" "^7.14.5" -"@babel/helper-function-name@^7.10.4": - "integrity" "sha512-YdaSyz1n8gY44EmN7x44zBn9zQ1Ry2Y+3GTA+3vH6Mizke1Vw0aWDM66FOYEPw8//qKkmqOckrGgTYa+6sceqQ==" - "resolved" "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.10.4.tgz" - "version" "7.10.4" +"@babel/helper-hoist-variables@^7.14.5": + "integrity" "sha512-R1PXiz31Uc0Vxy4OEOm07x0oSjKAdPPCh3tPivn/Eo8cvz6gveAeuyUUPB21Hoiif0uoPQSSdhIPS3352nvdyQ==" + "resolved" "https://registry.npmjs.org/@babel/helper-hoist-variables/-/helper-hoist-variables-7.14.5.tgz" + "version" "7.14.5" dependencies: - "@babel/helper-get-function-arity" "^7.10.4" - "@babel/template" "^7.10.4" - "@babel/types" "^7.10.4" + "@babel/types" "^7.14.5" -"@babel/helper-get-function-arity@^7.10.4": - "integrity" "sha512-EkN3YDB+SRDgiIUnNgcmiD361ti+AVbL3f3Henf6dqqUyr5dMsorno0lJWJuLhDhkI5sYEpgj6y9kB8AOU1I2A==" - "resolved" "https://registry.npmjs.org/@babel/helper-get-function-arity/-/helper-get-function-arity-7.10.4.tgz" - "version" "7.10.4" +"@babel/helper-member-expression-to-functions@^7.14.5": + "integrity" "sha512-TMUt4xKxJn6ccjcOW7c4hlwyJArizskAhoSTOCkA0uZ+KghIaci0Qg9R043kUMWI9mtQfgny+NQ5QATnZ+paaA==" + "resolved" "https://registry.npmjs.org/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.14.7.tgz" + "version" "7.14.7" dependencies: - "@babel/types" "^7.10.4" + "@babel/types" "^7.14.5" -"@babel/helper-member-expression-to-functions@^7.10.4", "@babel/helper-member-expression-to-functions@^7.10.5": - "integrity" "sha512-JbFlKHFntRV5qKw3YC0CvQnDZ4XMwgzzBbld7Ly4Mj4cbFy3KywcR8NtNctRToMWJOVvLINJv525Gd6wwVEx/Q==" - "resolved" "https://registry.npmjs.org/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.11.0.tgz" - "version" "7.11.0" +"@babel/helper-module-imports@^7.12.13", "@babel/helper-module-imports@^7.14.5": + "integrity" "sha512-SwrNHu5QWS84XlHwGYPDtCxcA0hrSlL2yhWYLgeOc0w7ccOl2qv4s/nARI0aYZW+bSwAL5CukeXA47B/1NKcnQ==" + "resolved" "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.14.5.tgz" + "version" "7.14.5" dependencies: - "@babel/types" "^7.11.0" + "@babel/types" "^7.14.5" -"@babel/helper-member-expression-to-functions@^7.12.1": - "integrity" "sha512-DCsuPyeWxeHgh1Dus7APn7iza42i/qXqiFPWyBDdOFtvS581JQePsc1F/nD+fHrcswhLlRc2UpYS1NwERxZhHw==" - "resolved" "https://registry.npmjs.org/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.12.7.tgz" - "version" "7.12.7" +"@babel/helper-module-transforms@^7.11.0", "@babel/helper-module-transforms@^7.14.5": + "integrity" "sha512-iXpX4KW8LVODuAieD7MzhNjmM6dzYY5tfRqT+R9HDXWl0jPn/djKmA+G9s/2C2T9zggw5tK1QNqZ70USfedOwA==" + "resolved" "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.14.5.tgz" + "version" "7.14.5" dependencies: - "@babel/types" "^7.12.7" + "@babel/helper-module-imports" "^7.14.5" + "@babel/helper-replace-supers" "^7.14.5" + "@babel/helper-simple-access" "^7.14.5" + "@babel/helper-split-export-declaration" "^7.14.5" + "@babel/helper-validator-identifier" "^7.14.5" + "@babel/template" "^7.14.5" + "@babel/traverse" "^7.14.5" + "@babel/types" "^7.14.5" -"@babel/helper-module-imports@^7.10.4": - "integrity" "sha512-nEQJHqYavI217oD9+s5MUBzk6x1IlvoS9WTPfgG43CbMEeStE0v+r+TucWdx8KFGowPGvyOkDT9+7DHedIDnVw==" - "resolved" "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.10.4.tgz" - "version" "7.10.4" +"@babel/helper-optimise-call-expression@^7.14.5": + "integrity" "sha512-IqiLIrODUOdnPU9/F8ib1Fx2ohlgDhxnIDU7OEVi+kAbEZcyiF7BLU8W6PfvPi9LzztjS7kcbzbmL7oG8kD6VA==" + "resolved" "https://registry.npmjs.org/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.14.5.tgz" + "version" "7.14.5" dependencies: - "@babel/types" "^7.10.4" + "@babel/types" "^7.14.5" -"@babel/helper-module-imports@^7.12.1": - "integrity" "sha512-SR713Ogqg6++uexFRORf/+nPXMmWIn80TALu0uaFb+iQIUoR7bOC7zBWyzBs5b3tBBJXuyD0cRu1F15GyzjOWA==" - "resolved" "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.12.5.tgz" - "version" "7.12.5" +"@babel/helper-plugin-utils@^7.0.0", "@babel/helper-plugin-utils@^7.10.4", "@babel/helper-plugin-utils@^7.12.13", "@babel/helper-plugin-utils@^7.13.0", "@babel/helper-plugin-utils@^7.14.5", "@babel/helper-plugin-utils@^7.8.0": + "integrity" "sha512-/37qQCE3K0vvZKwoK4XU/irIJQdIfCJuhU5eKnNxpFDsOkgFaUAwbv+RYw6eYgsC0E4hS7r5KqGULUogqui0fQ==" + "resolved" "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.14.5.tgz" + "version" "7.14.5" + +"@babel/helper-replace-supers@^7.14.5": + "integrity" "sha512-3i1Qe9/8x/hCHINujn+iuHy+mMRLoc77b2nI9TB0zjH1hvn9qGlXjWlggdwUcju36PkPCy/lpM7LLUdcTyH4Ow==" + "resolved" "https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.14.5.tgz" + "version" "7.14.5" dependencies: - "@babel/types" "^7.12.5" + "@babel/helper-member-expression-to-functions" "^7.14.5" + "@babel/helper-optimise-call-expression" "^7.14.5" + "@babel/traverse" "^7.14.5" + "@babel/types" "^7.14.5" -"@babel/helper-module-transforms@^7.10.4", "@babel/helper-module-transforms@^7.11.0": - "integrity" "sha512-02EVu8COMuTRO1TAzdMtpBPbe6aQ1w/8fePD2YgQmxZU4gpNWaL9gK3Jp7dxlkUlUCJOTaSeA+Hrm1BRQwqIhg==" - "resolved" "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.11.0.tgz" - "version" "7.11.0" +"@babel/helper-simple-access@^7.14.5": + "integrity" "sha512-nfBN9xvmCt6nrMZjfhkl7i0oTV3yxR4/FztsbOASyTvVcoYd0TRHh7eMLdlEcCqobydC0LAF3LtC92Iwxo0wyw==" + "resolved" "https://registry.npmjs.org/@babel/helper-simple-access/-/helper-simple-access-7.14.5.tgz" + "version" "7.14.5" dependencies: - "@babel/helper-module-imports" "^7.10.4" - "@babel/helper-replace-supers" "^7.10.4" - "@babel/helper-simple-access" "^7.10.4" - "@babel/helper-split-export-declaration" "^7.11.0" - "@babel/template" "^7.10.4" - "@babel/types" "^7.11.0" - "lodash" "^4.17.19" + "@babel/types" "^7.14.5" -"@babel/helper-optimise-call-expression@^7.10.4": - "integrity" "sha512-n3UGKY4VXwXThEiKrgRAoVPBMqeoPgHVqiHZOanAJCG9nQUL2pLRQirUzl0ioKclHGpGqRgIOkgcIJaIWLpygg==" - "resolved" "https://registry.npmjs.org/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.10.4.tgz" - "version" "7.10.4" +"@babel/helper-skip-transparent-expression-wrappers@^7.14.5": + "integrity" "sha512-dmqZB7mrb94PZSAOYtr+ZN5qt5owZIAgqtoTuqiFbHFtxgEcmQlRJVI+bO++fciBunXtB6MK7HrzrfcAzIz2NQ==" + "resolved" "https://registry.npmjs.org/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.14.5.tgz" + "version" "7.14.5" dependencies: - "@babel/types" "^7.10.4" + "@babel/types" "^7.14.5" -"@babel/helper-plugin-utils@^7.0.0", "@babel/helper-plugin-utils@^7.10.4", "@babel/helper-plugin-utils@^7.8.0": - "integrity" "sha512-O4KCvQA6lLiMU9l2eawBPMf1xPP8xPfB3iEQw150hOVTqj/rfXz0ThTb4HEzqQfs2Bmo5Ay8BzxfzVtBrr9dVg==" - "resolved" "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.10.4.tgz" - "version" "7.10.4" - -"@babel/helper-regex@^7.10.4": - "integrity" "sha512-68kdUAzDrljqBrio7DYAEgCoJHxppJOERHOgOrDN7WjOzP0ZQ1LsSDRXcemzVZaLvjaJsJEESb6qt+znNuENDg==" - "resolved" "https://registry.npmjs.org/@babel/helper-regex/-/helper-regex-7.10.5.tgz" - "version" "7.10.5" +"@babel/helper-split-export-declaration@^7.14.5": + "integrity" "sha512-hprxVPu6e5Kdp2puZUmvOGjaLv9TCe58E/Fl6hRq4YiVQxIcNvuq6uTM2r1mT/oPskuS9CgR+I94sqAYv0NGKA==" + "resolved" "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.14.5.tgz" + "version" "7.14.5" dependencies: - "lodash" "^4.17.19" + "@babel/types" "^7.14.5" -"@babel/helper-remap-async-to-generator@^7.12.1": - "integrity" "sha512-9d0KQCRM8clMPcDwo8SevNs+/9a8yWVVmaE80FGJcEP8N1qToREmWEGnBn8BUlJhYRFz6fqxeRL1sl5Ogsed7A==" - "resolved" "https://registry.npmjs.org/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.12.1.tgz" - "version" "7.12.1" - dependencies: - "@babel/helper-annotate-as-pure" "^7.10.4" - "@babel/helper-wrap-function" "^7.10.4" - "@babel/types" "^7.12.1" +"@babel/helper-validator-identifier@^7.14.5": + "integrity" "sha512-5lsetuxCLilmVGyiLEfoHBRX8UCFD+1m2x3Rj97WrW3V7H3u4RWRXA4evMjImCsin2J2YT0QaVDGf+z8ondbAg==" + "resolved" "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.14.5.tgz" + "version" "7.14.5" -"@babel/helper-replace-supers@^7.10.4": - "integrity" "sha512-sPxZfFXocEymYTdVK1UNmFPBN+Hv5mJkLPsYWwGBxZAxaWfFu+xqp7b6qWD0yjNuNL2VKc6L5M18tOXUP7NU0A==" - "resolved" "https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.10.4.tgz" - "version" "7.10.4" - dependencies: - "@babel/helper-member-expression-to-functions" "^7.10.4" - "@babel/helper-optimise-call-expression" "^7.10.4" - "@babel/traverse" "^7.10.4" - "@babel/types" "^7.10.4" - -"@babel/helper-replace-supers@^7.12.1": - "integrity" "sha512-5YILoed0ZyIpF4gKcpZitEnXEJ9UoDRki1Ey6xz46rxOzfNMAhVIJMoune1hmPVxh40LRv1+oafz7UsWX+vyWA==" - "resolved" "https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.12.5.tgz" - "version" "7.12.5" - dependencies: - "@babel/helper-member-expression-to-functions" "^7.12.1" - "@babel/helper-optimise-call-expression" "^7.10.4" - "@babel/traverse" "^7.12.5" - "@babel/types" "^7.12.5" - -"@babel/helper-simple-access@^7.10.4": - "integrity" "sha512-0fMy72ej/VEvF8ULmX6yb5MtHG4uH4Dbd6I/aHDb/JVg0bbivwt9Wg+h3uMvX+QSFtwr5MeItvazbrc4jtRAXw==" - "resolved" "https://registry.npmjs.org/@babel/helper-simple-access/-/helper-simple-access-7.10.4.tgz" - "version" "7.10.4" - dependencies: - "@babel/template" "^7.10.4" - "@babel/types" "^7.10.4" - -"@babel/helper-skip-transparent-expression-wrappers@^7.11.0": - "integrity" "sha512-0XIdiQln4Elglgjbwo9wuJpL/K7AGCY26kmEt0+pRP0TAj4jjyNq1MjoRvikrTVqKcx4Gysxt4cXvVFXP/JO2Q==" - "resolved" "https://registry.npmjs.org/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.11.0.tgz" - "version" "7.11.0" - dependencies: - "@babel/types" "^7.11.0" - -"@babel/helper-split-export-declaration@^7.10.4", "@babel/helper-split-export-declaration@^7.11.0": - "integrity" "sha512-74Vejvp6mHkGE+m+k5vHY93FX2cAtrw1zXrZXRlG4l410Nm9PxfEiVTn1PjDPV5SnmieiueY4AFg2xqhNFuuZg==" - "resolved" "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.11.0.tgz" - "version" "7.11.0" - dependencies: - "@babel/types" "^7.11.0" - -"@babel/helper-validator-identifier@^7.10.4": - "integrity" "sha512-3U9y+43hz7ZM+rzG24Qe2mufW5KhvFg/NhnNph+i9mgCtdTCtMJuI1TMkrIUiK7Ix4PYlRF9I5dhqaLYA/ADXw==" - "resolved" "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.10.4.tgz" - "version" "7.10.4" - -"@babel/helper-wrap-function@^7.10.4": - "integrity" "sha512-Cvb8IuJDln3rs6tzjW3Y8UeelAOdnpB8xtQ4sme2MSZ9wOxrbThporC0y/EtE16VAtoyEfLM404Xr1e0OOp+ow==" - "resolved" "https://registry.npmjs.org/@babel/helper-wrap-function/-/helper-wrap-function-7.12.3.tgz" - "version" "7.12.3" - dependencies: - "@babel/helper-function-name" "^7.10.4" - "@babel/template" "^7.10.4" - "@babel/traverse" "^7.10.4" - "@babel/types" "^7.10.4" +"@babel/helper-validator-option@^7.14.5": + "integrity" "sha512-OX8D5eeX4XwcroVW45NMvoYaIuFI+GQpA2a8Gi+X/U/cDUIRsV37qQfF905F0htTRCREQIB4KqPeaveRJUl3Ow==" + "resolved" "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.14.5.tgz" + "version" "7.14.5" "@babel/helpers@^7.10.4": - "integrity" "sha512-L2gX/XeUONeEbI78dXSrJzGdz4GQ+ZTA/aazfUsFaWjSe95kiCuOZ5HsXvkiw3iwF+mFHSRUfJU8t6YavocdXA==" - "resolved" "https://registry.npmjs.org/@babel/helpers/-/helpers-7.10.4.tgz" - "version" "7.10.4" + "integrity" "sha512-yesp1ENQBiLI+iYHSJdoZKUtRpfTlL1grDIX9NRlAVppljLw/4tTyYupIB7uIYmC3stW/imAv8EqaKaS/ibmeA==" + "resolved" "https://registry.npmjs.org/@babel/helpers/-/helpers-7.14.6.tgz" + "version" "7.14.6" dependencies: - "@babel/template" "^7.10.4" - "@babel/traverse" "^7.10.4" - "@babel/types" "^7.10.4" + "@babel/template" "^7.14.5" + "@babel/traverse" "^7.14.5" + "@babel/types" "^7.14.5" -"@babel/highlight@^7.10.4": - "integrity" "sha512-i6rgnR/YgPEQzZZnbTHHuZdlE8qyoBNalD6F+q4vAFlcMEcqmkoG+mPqJYJCo63qPf74+Y1UZsl3l6f7/RIkmA==" - "resolved" "https://registry.npmjs.org/@babel/highlight/-/highlight-7.10.4.tgz" - "version" "7.10.4" +"@babel/highlight@^7.14.5": + "integrity" "sha512-qf9u2WFWVV0MppaL877j2dBtQIDgmidgjGk5VIMw3OadXvYaXn66U1BFlH2t4+t3i+8PhedppRv+i40ABzd+gg==" + "resolved" "https://registry.npmjs.org/@babel/highlight/-/highlight-7.14.5.tgz" + "version" "7.14.5" dependencies: - "@babel/helper-validator-identifier" "^7.10.4" + "@babel/helper-validator-identifier" "^7.14.5" "chalk" "^2.0.0" "js-tokens" "^4.0.0" -"@babel/parser@^7.0.0", "@babel/parser@^7.1.0", "@babel/parser@^7.10.4", "@babel/parser@^7.11.0", "@babel/parser@^7.11.1", "@babel/parser@^7.7.0": - "integrity" "sha512-REo8xv7+sDxkKvoxEywIdsNFiZLybwdI7hcT5uEPyQrSMB4YQ973BfC9OOrD/81MaIjh6UxdulIQXkjmiH3PcA==" - "resolved" "https://registry.npmjs.org/@babel/parser/-/parser-7.11.3.tgz" - "version" "7.11.3" - -"@babel/parser@^7.12.7": - "integrity" "sha512-oWR02Ubp4xTLCAqPRiNIuMVgNO5Aif/xpXtabhzW2HWUD47XJsAB4Zd/Rg30+XeQA3juXigV7hlquOTmwqLiwg==" - "resolved" "https://registry.npmjs.org/@babel/parser/-/parser-7.12.7.tgz" - "version" "7.12.7" +"@babel/parser@^7.0.0", "@babel/parser@^7.1.0", "@babel/parser@^7.11.1", "@babel/parser@^7.14.5", "@babel/parser@^7.14.7", "@babel/parser@^7.7.0": + "integrity" "sha512-X67Z5y+VBJuHB/RjwECp8kSl5uYi0BvRbNeWqkaJCVh+LiTPl19WBUfG627psSgp9rSf6ojuXghQM3ha6qHHdA==" + "resolved" "https://registry.npmjs.org/@babel/parser/-/parser-7.14.7.tgz" + "version" "7.14.7" "@babel/plugin-external-helpers@^7.0.0": - "integrity" "sha512-5VBqan0daXhDSRjrq2miABuELRwWJWFdM42Jvs/CDuhp+Es+fW+ISA5l+co8d+9oN3WLz/N3VvzyeseL3AvjxA==" - "resolved" "https://registry.npmjs.org/@babel/plugin-external-helpers/-/plugin-external-helpers-7.12.1.tgz" - "version" "7.12.1" + "integrity" "sha512-q/B/hLX+nDGk73Xn529d7Ar4ih17J8pNBbsXafq8oXij0XfFEA/bks+u+6q5q04zO5o/qivjzui6BqzPfYShEg==" + "resolved" "https://registry.npmjs.org/@babel/plugin-external-helpers/-/plugin-external-helpers-7.14.5.tgz" + "version" "7.14.5" dependencies: - "@babel/helper-plugin-utils" "^7.10.4" + "@babel/helper-plugin-utils" "^7.14.5" "@babel/plugin-proposal-class-properties@^7.0.0": - "integrity" "sha512-vhwkEROxzcHGNu2mzUC0OFFNXdZ4M23ib8aRRcJSsW8BZK9pQMD7QB7csl97NBbgGZO7ZyHUyKDnxzOaP4IrCg==" - "resolved" "https://registry.npmjs.org/@babel/plugin-proposal-class-properties/-/plugin-proposal-class-properties-7.10.4.tgz" - "version" "7.10.4" + "integrity" "sha512-q/PLpv5Ko4dVc1LYMpCY7RVAAO4uk55qPwrIuJ5QJ8c6cVuAmhu7I/49JOppXL6gXf7ZHzpRVEUZdYoPLM04Gg==" + "resolved" "https://registry.npmjs.org/@babel/plugin-proposal-class-properties/-/plugin-proposal-class-properties-7.14.5.tgz" + "version" "7.14.5" dependencies: - "@babel/helper-create-class-features-plugin" "^7.10.4" - "@babel/helper-plugin-utils" "^7.10.4" + "@babel/helper-create-class-features-plugin" "^7.14.5" + "@babel/helper-plugin-utils" "^7.14.5" "@babel/plugin-proposal-export-default-from@^7.0.0": - "integrity" "sha512-G1l00VvDZ7Yk2yRlC5D8Ybvu3gmeHS3rCHoUYdjrqGYUtdeOBoRypnvDZ5KQqxyaiiGHWnVDeSEzA5F9ozItig==" - "resolved" "https://registry.npmjs.org/@babel/plugin-proposal-export-default-from/-/plugin-proposal-export-default-from-7.10.4.tgz" - "version" "7.10.4" + "integrity" "sha512-T8KZ5abXvKMjF6JcoXjgac3ElmXf0AWzJwi2O/42Jk+HmCky3D9+i1B7NPP1FblyceqTevKeV/9szeikFoaMDg==" + "resolved" "https://registry.npmjs.org/@babel/plugin-proposal-export-default-from/-/plugin-proposal-export-default-from-7.14.5.tgz" + "version" "7.14.5" dependencies: - "@babel/helper-plugin-utils" "^7.10.4" - "@babel/plugin-syntax-export-default-from" "^7.10.4" + "@babel/helper-plugin-utils" "^7.14.5" + "@babel/plugin-syntax-export-default-from" "^7.14.5" "@babel/plugin-proposal-nullish-coalescing-operator@^7.0.0": - "integrity" "sha512-wq5n1M3ZUlHl9sqT2ok1T2/MTt6AXE0e1Lz4WzWBr95LsAZ5qDXe4KnFuauYyEyLiohvXFMdbsOTMyLZs91Zlw==" - "resolved" "https://registry.npmjs.org/@babel/plugin-proposal-nullish-coalescing-operator/-/plugin-proposal-nullish-coalescing-operator-7.10.4.tgz" - "version" "7.10.4" + "integrity" "sha512-gun/SOnMqjSb98Nkaq2rTKMwervfdAoz6NphdY0vTfuzMfryj+tDGb2n6UkDKwez+Y8PZDhE3D143v6Gepp4Hg==" + "resolved" "https://registry.npmjs.org/@babel/plugin-proposal-nullish-coalescing-operator/-/plugin-proposal-nullish-coalescing-operator-7.14.5.tgz" + "version" "7.14.5" dependencies: - "@babel/helper-plugin-utils" "^7.10.4" - "@babel/plugin-syntax-nullish-coalescing-operator" "^7.8.0" + "@babel/helper-plugin-utils" "^7.14.5" + "@babel/plugin-syntax-nullish-coalescing-operator" "^7.8.3" "@babel/plugin-proposal-object-rest-spread@^7.0.0": - "integrity" "sha512-wzch41N4yztwoRw0ak+37wxwJM2oiIiy6huGCoqkvSTA9acYWcPfn9Y4aJqmFFJ70KTJUu29f3DQ43uJ9HXzEA==" - "resolved" "https://registry.npmjs.org/@babel/plugin-proposal-object-rest-spread/-/plugin-proposal-object-rest-spread-7.11.0.tgz" - "version" "7.11.0" + "integrity" "sha512-082hsZz+sVabfmDWo1Oct1u1AgbKbUAyVgmX4otIc7bdsRgHBXwTwb3DpDmD4Eyyx6DNiuz5UAATT655k+kL5g==" + "resolved" "https://registry.npmjs.org/@babel/plugin-proposal-object-rest-spread/-/plugin-proposal-object-rest-spread-7.14.7.tgz" + "version" "7.14.7" dependencies: - "@babel/helper-plugin-utils" "^7.10.4" - "@babel/plugin-syntax-object-rest-spread" "^7.8.0" - "@babel/plugin-transform-parameters" "^7.10.4" + "@babel/compat-data" "^7.14.7" + "@babel/helper-compilation-targets" "^7.14.5" + "@babel/helper-plugin-utils" "^7.14.5" + "@babel/plugin-syntax-object-rest-spread" "^7.8.3" + "@babel/plugin-transform-parameters" "^7.14.5" "@babel/plugin-proposal-optional-catch-binding@^7.0.0": - "integrity" "sha512-LflT6nPh+GK2MnFiKDyLiqSqVHkQnVf7hdoAvyTnnKj9xB3docGRsdPuxp6qqqW19ifK3xgc9U5/FwrSaCNX5g==" - "resolved" "https://registry.npmjs.org/@babel/plugin-proposal-optional-catch-binding/-/plugin-proposal-optional-catch-binding-7.10.4.tgz" - "version" "7.10.4" + "integrity" "sha512-3Oyiixm0ur7bzO5ybNcZFlmVsygSIQgdOa7cTfOYCMY+wEPAYhZAJxi3mixKFCTCKUhQXuCTtQ1MzrpL3WT8ZQ==" + "resolved" "https://registry.npmjs.org/@babel/plugin-proposal-optional-catch-binding/-/plugin-proposal-optional-catch-binding-7.14.5.tgz" + "version" "7.14.5" dependencies: - "@babel/helper-plugin-utils" "^7.10.4" - "@babel/plugin-syntax-optional-catch-binding" "^7.8.0" + "@babel/helper-plugin-utils" "^7.14.5" + "@babel/plugin-syntax-optional-catch-binding" "^7.8.3" "@babel/plugin-proposal-optional-chaining@^7.0.0": - "integrity" "sha512-v9fZIu3Y8562RRwhm1BbMRxtqZNFmFA2EG+pT2diuU8PT3H6T/KXoZ54KgYisfOFZHV6PfvAiBIZ9Rcz+/JCxA==" - "resolved" "https://registry.npmjs.org/@babel/plugin-proposal-optional-chaining/-/plugin-proposal-optional-chaining-7.11.0.tgz" - "version" "7.11.0" + "integrity" "sha512-ycz+VOzo2UbWNI1rQXxIuMOzrDdHGrI23fRiz/Si2R4kv2XZQ1BK8ccdHwehMKBlcH/joGW/tzrUmo67gbJHlQ==" + "resolved" "https://registry.npmjs.org/@babel/plugin-proposal-optional-chaining/-/plugin-proposal-optional-chaining-7.14.5.tgz" + "version" "7.14.5" dependencies: - "@babel/helper-plugin-utils" "^7.10.4" - "@babel/helper-skip-transparent-expression-wrappers" "^7.11.0" - "@babel/plugin-syntax-optional-chaining" "^7.8.0" + "@babel/helper-plugin-utils" "^7.14.5" + "@babel/helper-skip-transparent-expression-wrappers" "^7.14.5" + "@babel/plugin-syntax-optional-chaining" "^7.8.3" "@babel/plugin-syntax-async-generators@^7.8.4": "integrity" "sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==" @@ -361,11 +312,11 @@ "@babel/helper-plugin-utils" "^7.8.0" "@babel/plugin-syntax-class-properties@^7.0.0", "@babel/plugin-syntax-class-properties@^7.8.3": - "integrity" "sha512-GCSBF7iUle6rNugfURwNmCGG3Z/2+opxAMLs1nND4bhEG5PuxTIggDBoeYYSujAlLtsupzOHYJQgPS3pivwXIA==" - "resolved" "https://registry.npmjs.org/@babel/plugin-syntax-class-properties/-/plugin-syntax-class-properties-7.10.4.tgz" - "version" "7.10.4" + "integrity" "sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==" + "resolved" "https://registry.npmjs.org/@babel/plugin-syntax-class-properties/-/plugin-syntax-class-properties-7.12.13.tgz" + "version" "7.12.13" dependencies: - "@babel/helper-plugin-utils" "^7.10.4" + "@babel/helper-plugin-utils" "^7.12.13" "@babel/plugin-syntax-dynamic-import@^7.0.0": "integrity" "sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ==" @@ -374,19 +325,19 @@ dependencies: "@babel/helper-plugin-utils" "^7.8.0" -"@babel/plugin-syntax-export-default-from@^7.0.0", "@babel/plugin-syntax-export-default-from@^7.10.4": - "integrity" "sha512-79V6r6Pgudz0RnuMGp5xidu6Z+bPFugh8/Q9eDHonmLp4wKFAZDwygJwYgCzuDu8lFA/sYyT+mc5y2wkd7bTXA==" - "resolved" "https://registry.npmjs.org/@babel/plugin-syntax-export-default-from/-/plugin-syntax-export-default-from-7.10.4.tgz" - "version" "7.10.4" +"@babel/plugin-syntax-export-default-from@^7.0.0", "@babel/plugin-syntax-export-default-from@^7.14.5": + "integrity" "sha512-snWDxjuaPEobRBnhpqEfZ8RMxDbHt8+87fiEioGuE+Uc0xAKgSD8QiuL3lF93hPVQfZFAcYwrrf+H5qUhike3Q==" + "resolved" "https://registry.npmjs.org/@babel/plugin-syntax-export-default-from/-/plugin-syntax-export-default-from-7.14.5.tgz" + "version" "7.14.5" dependencies: - "@babel/helper-plugin-utils" "^7.10.4" + "@babel/helper-plugin-utils" "^7.14.5" -"@babel/plugin-syntax-flow@^7.0.0", "@babel/plugin-syntax-flow@^7.10.4", "@babel/plugin-syntax-flow@^7.2.0": - "integrity" "sha512-yxQsX1dJixF4qEEdzVbst3SZQ58Nrooz8NV9Z9GL4byTE25BvJgl5lf0RECUf0fh28rZBb/RYTWn/eeKwCMrZQ==" - "resolved" "https://registry.npmjs.org/@babel/plugin-syntax-flow/-/plugin-syntax-flow-7.10.4.tgz" - "version" "7.10.4" +"@babel/plugin-syntax-flow@^7.0.0", "@babel/plugin-syntax-flow@^7.14.5", "@babel/plugin-syntax-flow@^7.2.0": + "integrity" "sha512-9WK5ZwKCdWHxVuU13XNT6X73FGmutAXeor5lGFq6qhOFtMFUF4jkbijuyUdZZlpYq6E2hZeZf/u3959X9wsv0Q==" + "resolved" "https://registry.npmjs.org/@babel/plugin-syntax-flow/-/plugin-syntax-flow-7.14.5.tgz" + "version" "7.14.5" dependencies: - "@babel/helper-plugin-utils" "^7.10.4" + "@babel/helper-plugin-utils" "^7.14.5" "@babel/plugin-syntax-import-meta@^7.8.3": "integrity" "sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g==" @@ -402,12 +353,12 @@ dependencies: "@babel/helper-plugin-utils" "^7.8.0" -"@babel/plugin-syntax-jsx@^7.0.0", "@babel/plugin-syntax-jsx@^7.10.4": - "integrity" "sha512-KCg9mio9jwiARCB7WAcQ7Y1q+qicILjoK8LP/VkPkEKaf5dkaZZK1EcTe91a3JJlZ3qy6L5s9X52boEYi8DM9g==" - "resolved" "https://registry.npmjs.org/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.10.4.tgz" - "version" "7.10.4" +"@babel/plugin-syntax-jsx@^7.0.0", "@babel/plugin-syntax-jsx@^7.14.5": + "integrity" "sha512-ohuFIsOMXJnbOMRfX7/w7LocdR6R7whhuRD4ax8IipLcLPlZGJKkBxgHp++U4N/vKyU16/YDQr2f5seajD3jIw==" + "resolved" "https://registry.npmjs.org/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.14.5.tgz" + "version" "7.14.5" dependencies: - "@babel/helper-plugin-utils" "^7.10.4" + "@babel/helper-plugin-utils" "^7.14.5" "@babel/plugin-syntax-logical-assignment-operators@^7.8.3": "integrity" "sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==" @@ -416,7 +367,7 @@ dependencies: "@babel/helper-plugin-utils" "^7.10.4" -"@babel/plugin-syntax-nullish-coalescing-operator@^7.0.0", "@babel/plugin-syntax-nullish-coalescing-operator@^7.8.0", "@babel/plugin-syntax-nullish-coalescing-operator@^7.8.3": +"@babel/plugin-syntax-nullish-coalescing-operator@^7.0.0", "@babel/plugin-syntax-nullish-coalescing-operator@^7.8.3": "integrity" "sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==" "resolved" "https://registry.npmjs.org/@babel/plugin-syntax-nullish-coalescing-operator/-/plugin-syntax-nullish-coalescing-operator-7.8.3.tgz" "version" "7.8.3" @@ -430,292 +381,280 @@ dependencies: "@babel/helper-plugin-utils" "^7.10.4" -"@babel/plugin-syntax-object-rest-spread@^7.0.0", "@babel/plugin-syntax-object-rest-spread@^7.8.0", "@babel/plugin-syntax-object-rest-spread@^7.8.3": +"@babel/plugin-syntax-object-rest-spread@^7.0.0", "@babel/plugin-syntax-object-rest-spread@^7.8.3": "integrity" "sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==" "resolved" "https://registry.npmjs.org/@babel/plugin-syntax-object-rest-spread/-/plugin-syntax-object-rest-spread-7.8.3.tgz" "version" "7.8.3" dependencies: "@babel/helper-plugin-utils" "^7.8.0" -"@babel/plugin-syntax-optional-catch-binding@^7.8.0", "@babel/plugin-syntax-optional-catch-binding@^7.8.3": +"@babel/plugin-syntax-optional-catch-binding@^7.8.3": "integrity" "sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==" "resolved" "https://registry.npmjs.org/@babel/plugin-syntax-optional-catch-binding/-/plugin-syntax-optional-catch-binding-7.8.3.tgz" "version" "7.8.3" dependencies: "@babel/helper-plugin-utils" "^7.8.0" -"@babel/plugin-syntax-optional-chaining@^7.0.0", "@babel/plugin-syntax-optional-chaining@^7.8.0", "@babel/plugin-syntax-optional-chaining@^7.8.3": +"@babel/plugin-syntax-optional-chaining@^7.0.0", "@babel/plugin-syntax-optional-chaining@^7.8.3": "integrity" "sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==" "resolved" "https://registry.npmjs.org/@babel/plugin-syntax-optional-chaining/-/plugin-syntax-optional-chaining-7.8.3.tgz" "version" "7.8.3" dependencies: "@babel/helper-plugin-utils" "^7.8.0" -"@babel/plugin-syntax-typescript@^7.10.4": - "integrity" "sha512-oSAEz1YkBCAKr5Yiq8/BNtvSAPwkp/IyUnwZogd8p+F0RuYQQrLeRUzIQhueQTTBy/F+a40uS7OFKxnkRvmvFQ==" - "resolved" "https://registry.npmjs.org/@babel/plugin-syntax-typescript/-/plugin-syntax-typescript-7.10.4.tgz" - "version" "7.10.4" +"@babel/plugin-syntax-typescript@^7.14.5": + "integrity" "sha512-u6OXzDaIXjEstBRRoBCQ/uKQKlbuaeE5in0RvWdA4pN6AhqxTIwUsnHPU1CFZA/amYObMsuWhYfRl3Ch90HD0Q==" + "resolved" "https://registry.npmjs.org/@babel/plugin-syntax-typescript/-/plugin-syntax-typescript-7.14.5.tgz" + "version" "7.14.5" dependencies: - "@babel/helper-plugin-utils" "^7.10.4" + "@babel/helper-plugin-utils" "^7.14.5" "@babel/plugin-transform-arrow-functions@^7.0.0": - "integrity" "sha512-9J/oD1jV0ZCBcgnoFWFq1vJd4msoKb/TCpGNFyyLt0zABdcvgK3aYikZ8HjzB14c26bc7E3Q1yugpwGy2aTPNA==" - "resolved" "https://registry.npmjs.org/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.10.4.tgz" - "version" "7.10.4" + "integrity" "sha512-KOnO0l4+tD5IfOdi4x8C1XmEIRWUjNRV8wc6K2vz/3e8yAOoZZvsRXRRIF/yo/MAOFb4QjtAw9xSxMXbSMRy8A==" + "resolved" "https://registry.npmjs.org/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.14.5.tgz" + "version" "7.14.5" dependencies: - "@babel/helper-plugin-utils" "^7.10.4" - -"@babel/plugin-transform-async-to-generator@^7.0.0": - "integrity" "sha512-SDtqoEcarK1DFlRJ1hHRY5HvJUj5kX4qmtpMAm2QnhOlyuMC4TMdCRgW6WXpv93rZeYNeLP22y8Aq2dbcDRM1A==" - "resolved" "https://registry.npmjs.org/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.12.1.tgz" - "version" "7.12.1" - dependencies: - "@babel/helper-module-imports" "^7.12.1" - "@babel/helper-plugin-utils" "^7.10.4" - "@babel/helper-remap-async-to-generator" "^7.12.1" + "@babel/helper-plugin-utils" "^7.14.5" "@babel/plugin-transform-block-scoped-functions@^7.0.0": - "integrity" "sha512-5OpxfuYnSgPalRpo8EWGPzIYf0lHBWORCkj5M0oLBwHdlux9Ri36QqGW3/LR13RSVOAoUUMzoPI/jpE4ABcHoA==" - "resolved" "https://registry.npmjs.org/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.12.1.tgz" - "version" "7.12.1" + "integrity" "sha512-dtqWqdWZ5NqBX3KzsVCWfQI3A53Ft5pWFCT2eCVUftWZgjc5DpDponbIF1+c+7cSGk2wN0YK7HGL/ezfRbpKBQ==" + "resolved" "https://registry.npmjs.org/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.14.5.tgz" + "version" "7.14.5" dependencies: - "@babel/helper-plugin-utils" "^7.10.4" + "@babel/helper-plugin-utils" "^7.14.5" "@babel/plugin-transform-block-scoping@^7.0.0": - "integrity" "sha512-00dYeDE0EVEHuuM+26+0w/SCL0BH2Qy7LwHuI4Hi4MH5gkC8/AqMN5uWFJIsoXZrAphiMm1iXzBw6L2T+eA0ew==" - "resolved" "https://registry.npmjs.org/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.11.1.tgz" - "version" "7.11.1" + "integrity" "sha512-LBYm4ZocNgoCqyxMLoOnwpsmQ18HWTQvql64t3GvMUzLQrNoV1BDG0lNftC8QKYERkZgCCT/7J5xWGObGAyHDw==" + "resolved" "https://registry.npmjs.org/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.14.5.tgz" + "version" "7.14.5" dependencies: - "@babel/helper-plugin-utils" "^7.10.4" + "@babel/helper-plugin-utils" "^7.14.5" "@babel/plugin-transform-classes@^7.0.0": - "integrity" "sha512-2oZ9qLjt161dn1ZE0Ms66xBncQH4In8Sqw1YWgBUZuGVJJS5c0OFZXL6dP2MRHrkU/eKhWg8CzFJhRQl50rQxA==" - "resolved" "https://registry.npmjs.org/@babel/plugin-transform-classes/-/plugin-transform-classes-7.10.4.tgz" - "version" "7.10.4" + "integrity" "sha512-J4VxKAMykM06K/64z9rwiL6xnBHgB1+FVspqvlgCdwD1KUbQNfszeKVVOMh59w3sztHYIZDgnhOC4WbdEfHFDA==" + "resolved" "https://registry.npmjs.org/@babel/plugin-transform-classes/-/plugin-transform-classes-7.14.5.tgz" + "version" "7.14.5" dependencies: - "@babel/helper-annotate-as-pure" "^7.10.4" - "@babel/helper-define-map" "^7.10.4" - "@babel/helper-function-name" "^7.10.4" - "@babel/helper-optimise-call-expression" "^7.10.4" - "@babel/helper-plugin-utils" "^7.10.4" - "@babel/helper-replace-supers" "^7.10.4" - "@babel/helper-split-export-declaration" "^7.10.4" + "@babel/helper-annotate-as-pure" "^7.14.5" + "@babel/helper-function-name" "^7.14.5" + "@babel/helper-optimise-call-expression" "^7.14.5" + "@babel/helper-plugin-utils" "^7.14.5" + "@babel/helper-replace-supers" "^7.14.5" + "@babel/helper-split-export-declaration" "^7.14.5" "globals" "^11.1.0" "@babel/plugin-transform-computed-properties@^7.0.0": - "integrity" "sha512-JFwVDXcP/hM/TbyzGq3l/XWGut7p46Z3QvqFMXTfk6/09m7xZHJUN9xHfsv7vqqD4YnfI5ueYdSJtXqqBLyjBw==" - "resolved" "https://registry.npmjs.org/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.10.4.tgz" - "version" "7.10.4" + "integrity" "sha512-pWM+E4283UxaVzLb8UBXv4EIxMovU4zxT1OPnpHJcmnvyY9QbPPTKZfEj31EUvG3/EQRbYAGaYEUZ4yWOBC2xg==" + "resolved" "https://registry.npmjs.org/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.14.5.tgz" + "version" "7.14.5" dependencies: - "@babel/helper-plugin-utils" "^7.10.4" + "@babel/helper-plugin-utils" "^7.14.5" "@babel/plugin-transform-destructuring@^7.0.0": - "integrity" "sha512-+WmfvyfsyF603iPa6825mq6Qrb7uLjTOsa3XOFzlYcYDHSS4QmpOWOL0NNBY5qMbvrcf3tq0Cw+v4lxswOBpgA==" - "resolved" "https://registry.npmjs.org/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.10.4.tgz" - "version" "7.10.4" + "integrity" "sha512-0mDE99nK+kVh3xlc5vKwB6wnP9ecuSj+zQCa/n0voENtP/zymdT4HH6QEb65wjjcbqr1Jb/7z9Qp7TF5FtwYGw==" + "resolved" "https://registry.npmjs.org/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.14.7.tgz" + "version" "7.14.7" dependencies: - "@babel/helper-plugin-utils" "^7.10.4" + "@babel/helper-plugin-utils" "^7.14.5" "@babel/plugin-transform-exponentiation-operator@^7.0.0": - "integrity" "sha512-S5HgLVgkBcRdyQAHbKj+7KyuWx8C6t5oETmUuwz1pt3WTWJhsUV0WIIXuVvfXMxl/QQyHKlSCNNtaIamG8fysw==" - "resolved" "https://registry.npmjs.org/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.10.4.tgz" - "version" "7.10.4" + "integrity" "sha512-jFazJhMBc9D27o9jDnIE5ZErI0R0m7PbKXVq77FFvqFbzvTMuv8jaAwLZ5PviOLSFttqKIW0/wxNSDbjLk0tYA==" + "resolved" "https://registry.npmjs.org/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.14.5.tgz" + "version" "7.14.5" dependencies: - "@babel/helper-builder-binary-assignment-operator-visitor" "^7.10.4" - "@babel/helper-plugin-utils" "^7.10.4" + "@babel/helper-builder-binary-assignment-operator-visitor" "^7.14.5" + "@babel/helper-plugin-utils" "^7.14.5" "@babel/plugin-transform-flow-strip-types@^7.0.0": - "integrity" "sha512-XTadyuqNst88UWBTdLjM+wEY7BFnY2sYtPyAidfC7M/QaZnSuIZpMvLxqGT7phAcnGyWh/XQFLKcGf04CnvxSQ==" - "resolved" "https://registry.npmjs.org/@babel/plugin-transform-flow-strip-types/-/plugin-transform-flow-strip-types-7.10.4.tgz" - "version" "7.10.4" + "integrity" "sha512-KhcolBKfXbvjwI3TV7r7TkYm8oNXHNBqGOy6JDVwtecFaRoKYsUUqJdS10q0YDKW1c6aZQgO+Ys3LfGkox8pXA==" + "resolved" "https://registry.npmjs.org/@babel/plugin-transform-flow-strip-types/-/plugin-transform-flow-strip-types-7.14.5.tgz" + "version" "7.14.5" dependencies: - "@babel/helper-plugin-utils" "^7.10.4" - "@babel/plugin-syntax-flow" "^7.10.4" + "@babel/helper-plugin-utils" "^7.14.5" + "@babel/plugin-syntax-flow" "^7.14.5" "@babel/plugin-transform-for-of@^7.0.0": - "integrity" "sha512-ItdQfAzu9AlEqmusA/65TqJ79eRcgGmpPPFvBnGILXZH975G0LNjP1yjHvGgfuCxqrPPueXOPe+FsvxmxKiHHQ==" - "resolved" "https://registry.npmjs.org/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.10.4.tgz" - "version" "7.10.4" + "integrity" "sha512-CfmqxSUZzBl0rSjpoQSFoR9UEj3HzbGuGNL21/iFTmjb5gFggJp3ph0xR1YBhexmLoKRHzgxuFvty2xdSt6gTA==" + "resolved" "https://registry.npmjs.org/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.14.5.tgz" + "version" "7.14.5" dependencies: - "@babel/helper-plugin-utils" "^7.10.4" + "@babel/helper-plugin-utils" "^7.14.5" "@babel/plugin-transform-function-name@^7.0.0": - "integrity" "sha512-OcDCq2y5+E0dVD5MagT5X+yTRbcvFjDI2ZVAottGH6tzqjx/LKpgkUepu3hp/u4tZBzxxpNGwLsAvGBvQ2mJzg==" - "resolved" "https://registry.npmjs.org/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.10.4.tgz" - "version" "7.10.4" + "integrity" "sha512-vbO6kv0fIzZ1GpmGQuvbwwm+O4Cbm2NrPzwlup9+/3fdkuzo1YqOZcXw26+YUJB84Ja7j9yURWposEHLYwxUfQ==" + "resolved" "https://registry.npmjs.org/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.14.5.tgz" + "version" "7.14.5" dependencies: - "@babel/helper-function-name" "^7.10.4" - "@babel/helper-plugin-utils" "^7.10.4" + "@babel/helper-function-name" "^7.14.5" + "@babel/helper-plugin-utils" "^7.14.5" "@babel/plugin-transform-literals@^7.0.0": - "integrity" "sha512-Xd/dFSTEVuUWnyZiMu76/InZxLTYilOSr1UlHV+p115Z/Le2Fi1KXkJUYz0b42DfndostYlPub3m8ZTQlMaiqQ==" - "resolved" "https://registry.npmjs.org/@babel/plugin-transform-literals/-/plugin-transform-literals-7.10.4.tgz" - "version" "7.10.4" + "integrity" "sha512-ql33+epql2F49bi8aHXxvLURHkxJbSmMKl9J5yHqg4PLtdE6Uc48CH1GS6TQvZ86eoB/ApZXwm7jlA+B3kra7A==" + "resolved" "https://registry.npmjs.org/@babel/plugin-transform-literals/-/plugin-transform-literals-7.14.5.tgz" + "version" "7.14.5" dependencies: - "@babel/helper-plugin-utils" "^7.10.4" + "@babel/helper-plugin-utils" "^7.14.5" "@babel/plugin-transform-member-expression-literals@^7.0.0": - "integrity" "sha512-1sxePl6z9ad0gFMB9KqmYofk34flq62aqMt9NqliS/7hPEpURUCMbyHXrMPlo282iY7nAvUB1aQd5mg79UD9Jg==" - "resolved" "https://registry.npmjs.org/@babel/plugin-transform-member-expression-literals/-/plugin-transform-member-expression-literals-7.12.1.tgz" - "version" "7.12.1" + "integrity" "sha512-WkNXxH1VXVTKarWFqmso83xl+2V3Eo28YY5utIkbsmXoItO8Q3aZxN4BTS2k0hz9dGUloHK26mJMyQEYfkn/+Q==" + "resolved" "https://registry.npmjs.org/@babel/plugin-transform-member-expression-literals/-/plugin-transform-member-expression-literals-7.14.5.tgz" + "version" "7.14.5" dependencies: - "@babel/helper-plugin-utils" "^7.10.4" + "@babel/helper-plugin-utils" "^7.14.5" "@babel/plugin-transform-modules-commonjs@^7.0.0": - "integrity" "sha512-Xj7Uq5o80HDLlW64rVfDBhao6OX89HKUmb+9vWYaLXBZOma4gA6tw4Ni1O5qVDoZWUV0fxMYA0aYzOawz0l+1w==" - "resolved" "https://registry.npmjs.org/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.10.4.tgz" - "version" "7.10.4" + "integrity" "sha512-en8GfBtgnydoao2PS+87mKyw62k02k7kJ9ltbKe0fXTHrQmG6QZZflYuGI1VVG7sVpx4E1n7KBpNlPb8m78J+A==" + "resolved" "https://registry.npmjs.org/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.14.5.tgz" + "version" "7.14.5" dependencies: - "@babel/helper-module-transforms" "^7.10.4" - "@babel/helper-plugin-utils" "^7.10.4" - "@babel/helper-simple-access" "^7.10.4" + "@babel/helper-module-transforms" "^7.14.5" + "@babel/helper-plugin-utils" "^7.14.5" + "@babel/helper-simple-access" "^7.14.5" "babel-plugin-dynamic-import-node" "^2.3.3" "@babel/plugin-transform-object-assign@^7.0.0": - "integrity" "sha512-6zccDhYEICfMeQqIjuY5G09/yhKzG30DKHJeYBQUHIsJH7c2jXSGvgwRalufLAXAq432OSlsEfAOLlzEsQzxVw==" - "resolved" "https://registry.npmjs.org/@babel/plugin-transform-object-assign/-/plugin-transform-object-assign-7.10.4.tgz" - "version" "7.10.4" + "integrity" "sha512-lvhjk4UN9xJJYB1mI5KC0/o1D5EcJXdbhVe+4fSk08D6ZN+iuAIs7LJC+71h8av9Ew4+uRq9452v9R93SFmQlQ==" + "resolved" "https://registry.npmjs.org/@babel/plugin-transform-object-assign/-/plugin-transform-object-assign-7.14.5.tgz" + "version" "7.14.5" dependencies: - "@babel/helper-plugin-utils" "^7.10.4" + "@babel/helper-plugin-utils" "^7.14.5" "@babel/plugin-transform-object-super@^7.0.0": - "integrity" "sha512-AvypiGJH9hsquNUn+RXVcBdeE3KHPZexWRdimhuV59cSoOt5kFBmqlByorAeUlGG2CJWd0U+4ZtNKga/TB0cAw==" - "resolved" "https://registry.npmjs.org/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.12.1.tgz" - "version" "7.12.1" + "integrity" "sha512-MKfOBWzK0pZIrav9z/hkRqIk/2bTv9qvxHzPQc12RcVkMOzpIKnFCNYJip00ssKWYkd8Sf5g0Wr7pqJ+cmtuFg==" + "resolved" "https://registry.npmjs.org/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.14.5.tgz" + "version" "7.14.5" dependencies: - "@babel/helper-plugin-utils" "^7.10.4" - "@babel/helper-replace-supers" "^7.12.1" + "@babel/helper-plugin-utils" "^7.14.5" + "@babel/helper-replace-supers" "^7.14.5" -"@babel/plugin-transform-parameters@^7.0.0", "@babel/plugin-transform-parameters@^7.10.4": - "integrity" "sha512-xPHwUj5RdFV8l1wuYiu5S9fqWGM2DrYc24TMvUiRrPVm+SM3XeqU9BcokQX/kEUe+p2RBwy+yoiR1w/Blq6ubw==" - "resolved" "https://registry.npmjs.org/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.10.5.tgz" - "version" "7.10.5" +"@babel/plugin-transform-parameters@^7.0.0", "@babel/plugin-transform-parameters@^7.14.5": + "integrity" "sha512-Tl7LWdr6HUxTmzQtzuU14SqbgrSKmaR77M0OKyq4njZLQTPfOvzblNKyNkGwOfEFCEx7KeYHQHDI0P3F02IVkA==" + "resolved" "https://registry.npmjs.org/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.14.5.tgz" + "version" "7.14.5" dependencies: - "@babel/helper-get-function-arity" "^7.10.4" - "@babel/helper-plugin-utils" "^7.10.4" + "@babel/helper-plugin-utils" "^7.14.5" "@babel/plugin-transform-property-literals@^7.0.0": - "integrity" "sha512-6MTCR/mZ1MQS+AwZLplX4cEySjCpnIF26ToWo942nqn8hXSm7McaHQNeGx/pt7suI1TWOWMfa/NgBhiqSnX0cQ==" - "resolved" "https://registry.npmjs.org/@babel/plugin-transform-property-literals/-/plugin-transform-property-literals-7.12.1.tgz" - "version" "7.12.1" + "integrity" "sha512-r1uilDthkgXW8Z1vJz2dKYLV1tuw2xsbrp3MrZmD99Wh9vsfKoob+JTgri5VUb/JqyKRXotlOtwgu4stIYCmnw==" + "resolved" "https://registry.npmjs.org/@babel/plugin-transform-property-literals/-/plugin-transform-property-literals-7.14.5.tgz" + "version" "7.14.5" dependencies: - "@babel/helper-plugin-utils" "^7.10.4" + "@babel/helper-plugin-utils" "^7.14.5" "@babel/plugin-transform-react-display-name@^7.0.0": - "integrity" "sha512-Zd4X54Mu9SBfPGnEcaGcOrVAYOtjT2on8QZkLKEq1S/tHexG39d9XXGZv19VfRrDjPJzFmPfTAqOQS1pfFOujw==" - "resolved" "https://registry.npmjs.org/@babel/plugin-transform-react-display-name/-/plugin-transform-react-display-name-7.10.4.tgz" - "version" "7.10.4" + "integrity" "sha512-07aqY1ChoPgIxsuDviptRpVkWCSbXWmzQqcgy65C6YSFOfPFvb/DX3bBRHh7pCd/PMEEYHYWUTSVkCbkVainYQ==" + "resolved" "https://registry.npmjs.org/@babel/plugin-transform-react-display-name/-/plugin-transform-react-display-name-7.14.5.tgz" + "version" "7.14.5" dependencies: - "@babel/helper-plugin-utils" "^7.10.4" + "@babel/helper-plugin-utils" "^7.14.5" "@babel/plugin-transform-react-jsx-self@^7.0.0": - "integrity" "sha512-yOvxY2pDiVJi0axdTWHSMi5T0DILN+H+SaeJeACHKjQLezEzhLx9nEF9xgpBLPtkZsks9cnb5P9iBEi21En3gg==" - "resolved" "https://registry.npmjs.org/@babel/plugin-transform-react-jsx-self/-/plugin-transform-react-jsx-self-7.10.4.tgz" - "version" "7.10.4" + "integrity" "sha512-M/fmDX6n0cfHK/NLTcPmrfVAORKDhK8tyjDhyxlUjYyPYYO8FRWwuxBA3WBx8kWN/uBUuwGa3s/0+hQ9JIN3Tg==" + "resolved" "https://registry.npmjs.org/@babel/plugin-transform-react-jsx-self/-/plugin-transform-react-jsx-self-7.14.5.tgz" + "version" "7.14.5" dependencies: - "@babel/helper-plugin-utils" "^7.10.4" - "@babel/plugin-syntax-jsx" "^7.10.4" + "@babel/helper-plugin-utils" "^7.14.5" "@babel/plugin-transform-react-jsx-source@^7.0.0": - "integrity" "sha512-wTeqHVkN1lfPLubRiZH3o73f4rfon42HpgxUSs86Nc+8QIcm/B9s8NNVXu/gwGcOyd7yDib9ikxoDLxJP0UiDA==" - "resolved" "https://registry.npmjs.org/@babel/plugin-transform-react-jsx-source/-/plugin-transform-react-jsx-source-7.10.5.tgz" - "version" "7.10.5" + "integrity" "sha512-1TpSDnD9XR/rQ2tzunBVPThF5poaYT9GqP+of8fAtguYuI/dm2RkrMBDemsxtY0XBzvW7nXjYM0hRyKX9QYj7Q==" + "resolved" "https://registry.npmjs.org/@babel/plugin-transform-react-jsx-source/-/plugin-transform-react-jsx-source-7.14.5.tgz" + "version" "7.14.5" dependencies: - "@babel/helper-plugin-utils" "^7.10.4" - "@babel/plugin-syntax-jsx" "^7.10.4" + "@babel/helper-plugin-utils" "^7.14.5" "@babel/plugin-transform-react-jsx@^7.0.0": - "integrity" "sha512-L+MfRhWjX0eI7Js093MM6MacKU4M6dnCRa/QPDwYMxjljzSCzzlzKzj9Pk4P3OtrPcxr2N3znR419nr3Xw+65A==" - "resolved" "https://registry.npmjs.org/@babel/plugin-transform-react-jsx/-/plugin-transform-react-jsx-7.10.4.tgz" - "version" "7.10.4" + "integrity" "sha512-7RylxNeDnxc1OleDm0F5Q/BSL+whYRbOAR+bwgCxIr0L32v7UFh/pz1DLMZideAUxKT6eMoS2zQH6fyODLEi8Q==" + "resolved" "https://registry.npmjs.org/@babel/plugin-transform-react-jsx/-/plugin-transform-react-jsx-7.14.5.tgz" + "version" "7.14.5" dependencies: - "@babel/helper-builder-react-jsx" "^7.10.4" - "@babel/helper-builder-react-jsx-experimental" "^7.10.4" - "@babel/helper-plugin-utils" "^7.10.4" - "@babel/plugin-syntax-jsx" "^7.10.4" + "@babel/helper-annotate-as-pure" "^7.14.5" + "@babel/helper-module-imports" "^7.14.5" + "@babel/helper-plugin-utils" "^7.14.5" + "@babel/plugin-syntax-jsx" "^7.14.5" + "@babel/types" "^7.14.5" "@babel/plugin-transform-regenerator@^7.0.0": - "integrity" "sha512-3thAHwtor39A7C04XucbMg17RcZ3Qppfxr22wYzZNcVIkPHfpM9J0SO8zuCV6SZa265kxBJSrfKTvDCYqBFXGw==" - "resolved" "https://registry.npmjs.org/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.10.4.tgz" - "version" "7.10.4" + "integrity" "sha512-NVIY1W3ITDP5xQl50NgTKlZ0GrotKtLna08/uGY6ErQt6VEQZXla86x/CTddm5gZdcr+5GSsvMeTmWA5Ii6pkg==" + "resolved" "https://registry.npmjs.org/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.14.5.tgz" + "version" "7.14.5" dependencies: "regenerator-transform" "^0.14.2" "@babel/plugin-transform-runtime@^7.0.0": - "integrity" "sha512-LFEsP+t3wkYBlis8w6/kmnd6Kb1dxTd+wGJ8MlxTGzQo//ehtqlVL4S9DNUa53+dtPSQobN2CXx4d81FqC58cw==" - "resolved" "https://registry.npmjs.org/@babel/plugin-transform-runtime/-/plugin-transform-runtime-7.11.0.tgz" - "version" "7.11.0" + "integrity" "sha512-fPMBhh1AV8ZyneiCIA+wYYUH1arzlXR1UMcApjvchDhfKxhy2r2lReJv8uHEyihi4IFIGlr1Pdx7S5fkESDQsg==" + "resolved" "https://registry.npmjs.org/@babel/plugin-transform-runtime/-/plugin-transform-runtime-7.14.5.tgz" + "version" "7.14.5" dependencies: - "@babel/helper-module-imports" "^7.10.4" - "@babel/helper-plugin-utils" "^7.10.4" - "resolve" "^1.8.1" - "semver" "^5.5.1" + "@babel/helper-module-imports" "^7.14.5" + "@babel/helper-plugin-utils" "^7.14.5" + "babel-plugin-polyfill-corejs2" "^0.2.2" + "babel-plugin-polyfill-corejs3" "^0.2.2" + "babel-plugin-polyfill-regenerator" "^0.2.2" + "semver" "^6.3.0" "@babel/plugin-transform-shorthand-properties@^7.0.0": - "integrity" "sha512-AC2K/t7o07KeTIxMoHneyX90v3zkm5cjHJEokrPEAGEy3UCp8sLKfnfOIGdZ194fyN4wfX/zZUWT9trJZ0qc+Q==" - "resolved" "https://registry.npmjs.org/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.10.4.tgz" - "version" "7.10.4" + "integrity" "sha512-xLucks6T1VmGsTB+GWK5Pl9Jl5+nRXD1uoFdA5TSO6xtiNjtXTjKkmPdFXVLGlK5A2/or/wQMKfmQ2Y0XJfn5g==" + "resolved" "https://registry.npmjs.org/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.14.5.tgz" + "version" "7.14.5" dependencies: - "@babel/helper-plugin-utils" "^7.10.4" + "@babel/helper-plugin-utils" "^7.14.5" "@babel/plugin-transform-spread@^7.0.0": - "integrity" "sha512-UwQYGOqIdQJe4aWNyS7noqAnN2VbaczPLiEtln+zPowRNlD+79w3oi2TWfYe0eZgd+gjZCbsydN7lzWysDt+gw==" - "resolved" "https://registry.npmjs.org/@babel/plugin-transform-spread/-/plugin-transform-spread-7.11.0.tgz" - "version" "7.11.0" + "integrity" "sha512-Zr0x0YroFJku7n7+/HH3A2eIrGMjbmAIbJSVv0IZ+t3U2WUQUA64S/oeied2e+MaGSjmt4alzBCsK9E8gh+fag==" + "resolved" "https://registry.npmjs.org/@babel/plugin-transform-spread/-/plugin-transform-spread-7.14.6.tgz" + "version" "7.14.6" dependencies: - "@babel/helper-plugin-utils" "^7.10.4" - "@babel/helper-skip-transparent-expression-wrappers" "^7.11.0" + "@babel/helper-plugin-utils" "^7.14.5" + "@babel/helper-skip-transparent-expression-wrappers" "^7.14.5" "@babel/plugin-transform-sticky-regex@^7.0.0": - "integrity" "sha512-Ddy3QZfIbEV0VYcVtFDCjeE4xwVTJWTmUtorAJkn6u/92Z/nWJNV+mILyqHKrUxXYKA2EoCilgoPePymKL4DvQ==" - "resolved" "https://registry.npmjs.org/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.10.4.tgz" - "version" "7.10.4" + "integrity" "sha512-Z7F7GyvEMzIIbwnziAZmnSNpdijdr4dWt+FJNBnBLz5mwDFkqIXU9wmBcWWad3QeJF5hMTkRe4dAq2sUZiG+8A==" + "resolved" "https://registry.npmjs.org/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.14.5.tgz" + "version" "7.14.5" dependencies: - "@babel/helper-plugin-utils" "^7.10.4" - "@babel/helper-regex" "^7.10.4" + "@babel/helper-plugin-utils" "^7.14.5" "@babel/plugin-transform-template-literals@^7.0.0": - "integrity" "sha512-V/lnPGIb+KT12OQikDvgSuesRX14ck5FfJXt6+tXhdkJ+Vsd0lDCVtF6jcB4rNClYFzaB2jusZ+lNISDk2mMMw==" - "resolved" "https://registry.npmjs.org/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.10.5.tgz" - "version" "7.10.5" + "integrity" "sha512-22btZeURqiepOfuy/VkFr+zStqlujWaarpMErvay7goJS6BWwdd6BY9zQyDLDa4x2S3VugxFb162IZ4m/S/+Gg==" + "resolved" "https://registry.npmjs.org/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.14.5.tgz" + "version" "7.14.5" dependencies: - "@babel/helper-annotate-as-pure" "^7.10.4" - "@babel/helper-plugin-utils" "^7.10.4" + "@babel/helper-plugin-utils" "^7.14.5" "@babel/plugin-transform-typescript@^7.5.0": - "integrity" "sha512-edJsNzTtvb3MaXQwj8403B7mZoGu9ElDJQZOKjGUnvilquxBA3IQoEIOvkX/1O8xfAsnHS/oQhe2w/IXrr+w0w==" - "resolved" "https://registry.npmjs.org/@babel/plugin-transform-typescript/-/plugin-transform-typescript-7.11.0.tgz" - "version" "7.11.0" + "integrity" "sha512-XlTdBq7Awr4FYIzqhmYY80WN0V0azF74DMPyFqVHBvf81ZUgc4X7ZOpx6O8eLDK6iM5cCQzeyJw0ynTaefixRA==" + "resolved" "https://registry.npmjs.org/@babel/plugin-transform-typescript/-/plugin-transform-typescript-7.14.6.tgz" + "version" "7.14.6" dependencies: - "@babel/helper-create-class-features-plugin" "^7.10.5" - "@babel/helper-plugin-utils" "^7.10.4" - "@babel/plugin-syntax-typescript" "^7.10.4" + "@babel/helper-create-class-features-plugin" "^7.14.6" + "@babel/helper-plugin-utils" "^7.14.5" + "@babel/plugin-syntax-typescript" "^7.14.5" "@babel/plugin-transform-unicode-regex@^7.0.0": - "integrity" "sha512-wNfsc4s8N2qnIwpO/WP2ZiSyjfpTamT2C9V9FDH/Ljub9zw6P3SjkXcFmc0RQUt96k2fmIvtla2MMjgTwIAC+A==" - "resolved" "https://registry.npmjs.org/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.10.4.tgz" - "version" "7.10.4" + "integrity" "sha512-UygduJpC5kHeCiRw/xDVzC+wj8VaYSoKl5JNVmbP7MadpNinAm3SvZCxZ42H37KZBKztz46YC73i9yV34d0Tzw==" + "resolved" "https://registry.npmjs.org/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.14.5.tgz" + "version" "7.14.5" dependencies: - "@babel/helper-create-regexp-features-plugin" "^7.10.4" - "@babel/helper-plugin-utils" "^7.10.4" + "@babel/helper-create-regexp-features-plugin" "^7.14.5" + "@babel/helper-plugin-utils" "^7.14.5" "@babel/register@^7.0.0": - "integrity" "sha512-XWcmseMIncOjoydKZnWvWi0/5CUCD+ZYKhRwgYlWOrA8fGZ/FjuLRpqtIhLOVD/fvR1b9DQHtZPn68VvhpYf+Q==" - "resolved" "https://registry.npmjs.org/@babel/register/-/register-7.12.1.tgz" - "version" "7.12.1" + "integrity" "sha512-TjJpGz/aDjFGWsItRBQMOFTrmTI9tr79CHOK+KIvLeCkbxuOAk2M5QHjvruIMGoo9OuccMh5euplPzc5FjAKGg==" + "resolved" "https://registry.npmjs.org/@babel/register/-/register-7.14.5.tgz" + "version" "7.14.5" dependencies: + "clone-deep" "^4.0.1" "find-cache-dir" "^2.0.0" - "lodash" "^4.17.19" "make-dir" "^2.1.0" "pirates" "^4.0.0" "source-map-support" "^0.5.16" -"@babel/runtime-corejs3@^7.8.3": - "integrity" "sha512-qh5IR+8VgFz83VBa6OkaET6uN/mJOhHONuy3m1sgF0CV6mXdPSEBdA7e1eUbVvyNtANjMbg22JUv71BaDXLY6A==" - "resolved" "https://registry.npmjs.org/@babel/runtime-corejs3/-/runtime-corejs3-7.11.2.tgz" - "version" "7.11.2" +"@babel/runtime-corejs3@^7.12.1": + "integrity" "sha512-Wvzcw4mBYbTagyBVZpAJWI06auSIj033T/yNE0Zn1xcup83MieCddZA7ls3kme17L4NOGBrQ09Q+nKB41RLWBA==" + "resolved" "https://registry.npmjs.org/@babel/runtime-corejs3/-/runtime-corejs3-7.14.7.tgz" + "version" "7.14.7" dependencies: - "core-js-pure" "^3.0.0" + "core-js-pure" "^3.15.0" "regenerator-runtime" "^0.13.4" "@babel/runtime@^7.0.0", "@babel/runtime@^7.8.4", "@babel/runtime@7.11.2": @@ -725,70 +664,50 @@ dependencies: "regenerator-runtime" "^0.13.4" -"@babel/template@^7.0.0", "@babel/template@^7.10.4", "@babel/template@^7.3.3": - "integrity" "sha512-ZCjD27cGJFUB6nmCB1Enki3r+L5kJveX9pq1SvAUKoICy6CZ9yD8xO086YXdYhvNjBdnekm4ZnaP5yC8Cs/1tA==" - "resolved" "https://registry.npmjs.org/@babel/template/-/template-7.10.4.tgz" - "version" "7.10.4" +"@babel/runtime@^7.12.0": + "integrity" "sha512-/PCB2uJ7oM44tz8YhC4Z/6PeOKXp4K588f+5M3clr1M4zbqztlo0XEfJ2LEzj/FgwfgGcIdl8n7YYjTCI0BYwg==" + "resolved" "https://registry.npmjs.org/@babel/runtime/-/runtime-7.14.6.tgz" + "version" "7.14.6" dependencies: - "@babel/code-frame" "^7.10.4" - "@babel/parser" "^7.10.4" - "@babel/types" "^7.10.4" + "regenerator-runtime" "^0.13.4" -"@babel/traverse@^7.0.0", "@babel/traverse@^7.1.0", "@babel/traverse@^7.10.4", "@babel/traverse@^7.11.0", "@babel/traverse@^7.7.0": - "integrity" "sha512-ZB2V+LskoWKNpMq6E5UUCrjtDUh5IOTAyIl0dTjIEoXum/iKWkoIEKIRDnUucO6f+2FzNkE0oD4RLKoPIufDtg==" - "resolved" "https://registry.npmjs.org/@babel/traverse/-/traverse-7.11.0.tgz" - "version" "7.11.0" +"@babel/runtime@^7.14.5": + "integrity" "sha512-/PCB2uJ7oM44tz8YhC4Z/6PeOKXp4K588f+5M3clr1M4zbqztlo0XEfJ2LEzj/FgwfgGcIdl8n7YYjTCI0BYwg==" + "resolved" "https://registry.npmjs.org/@babel/runtime/-/runtime-7.14.6.tgz" + "version" "7.14.6" dependencies: - "@babel/code-frame" "^7.10.4" - "@babel/generator" "^7.11.0" - "@babel/helper-function-name" "^7.10.4" - "@babel/helper-split-export-declaration" "^7.11.0" - "@babel/parser" "^7.11.0" - "@babel/types" "^7.11.0" + "regenerator-runtime" "^0.13.4" + +"@babel/template@^7.0.0", "@babel/template@^7.10.4", "@babel/template@^7.14.5", "@babel/template@^7.3.3": + "integrity" "sha512-6Z3Po85sfxRGachLULUhOmvAaOo7xCvqGQtxINai2mEGPFm6pQ4z5QInFnUrRpfoSV60BnjyF5F3c+15fxFV1g==" + "resolved" "https://registry.npmjs.org/@babel/template/-/template-7.14.5.tgz" + "version" "7.14.5" + dependencies: + "@babel/code-frame" "^7.14.5" + "@babel/parser" "^7.14.5" + "@babel/types" "^7.14.5" + +"@babel/traverse@^7.0.0", "@babel/traverse@^7.1.0", "@babel/traverse@^7.11.0", "@babel/traverse@^7.13.0", "@babel/traverse@^7.14.5", "@babel/traverse@^7.7.0": + "integrity" "sha512-9vDr5NzHu27wgwejuKL7kIOm4bwEtaPQ4Z6cpCmjSuaRqpH/7xc4qcGEscwMqlkwgcXl6MvqoAjZkQ24uSdIZQ==" + "resolved" "https://registry.npmjs.org/@babel/traverse/-/traverse-7.14.7.tgz" + "version" "7.14.7" + dependencies: + "@babel/code-frame" "^7.14.5" + "@babel/generator" "^7.14.5" + "@babel/helper-function-name" "^7.14.5" + "@babel/helper-hoist-variables" "^7.14.5" + "@babel/helper-split-export-declaration" "^7.14.5" + "@babel/parser" "^7.14.7" + "@babel/types" "^7.14.5" "debug" "^4.1.0" "globals" "^11.1.0" - "lodash" "^4.17.19" -"@babel/traverse@^7.12.5": - "integrity" "sha512-iX9ajqnLdoU1s1nHt36JDI9KG4k+vmI8WgjK5d+aDTwQbL2fUnzedNedssA645Ede3PM2ma1n8Q4h2ohwXgMXw==" - "resolved" "https://registry.npmjs.org/@babel/traverse/-/traverse-7.12.9.tgz" - "version" "7.12.9" +"@babel/types@^7.0.0", "@babel/types@^7.11.0", "@babel/types@^7.14.5", "@babel/types@^7.3.0", "@babel/types@^7.3.3", "@babel/types@^7.7.0": + "integrity" "sha512-M/NzBpEL95I5Hh4dwhin5JlE7EzO5PHMAuzjxss3tiOBD46KfQvVedN/3jEPZvdRvtsK2222XfdHogNIttFgcg==" + "resolved" "https://registry.npmjs.org/@babel/types/-/types-7.14.5.tgz" + "version" "7.14.5" dependencies: - "@babel/code-frame" "^7.10.4" - "@babel/generator" "^7.12.5" - "@babel/helper-function-name" "^7.10.4" - "@babel/helper-split-export-declaration" "^7.11.0" - "@babel/parser" "^7.12.7" - "@babel/types" "^7.12.7" - "debug" "^4.1.0" - "globals" "^11.1.0" - "lodash" "^4.17.19" - -"@babel/types@^7.0.0", "@babel/types@^7.10.4", "@babel/types@^7.10.5", "@babel/types@^7.11.0", "@babel/types@^7.3.0", "@babel/types@^7.3.3", "@babel/types@^7.7.0": - "integrity" "sha512-O53yME4ZZI0jO1EVGtF1ePGl0LHirG4P1ibcD80XyzZcKhcMFeCXmh4Xb1ifGBIV233Qg12x4rBfQgA+tmOukA==" - "resolved" "https://registry.npmjs.org/@babel/types/-/types-7.11.0.tgz" - "version" "7.11.0" - dependencies: - "@babel/helper-validator-identifier" "^7.10.4" - "lodash" "^4.17.19" - "to-fast-properties" "^2.0.0" - -"@babel/types@^7.12.1": - "integrity" "sha512-MNyI92qZq6jrQkXvtIiykvl4WtoRrVV9MPn+ZfsoEENjiWcBQ3ZSHrkxnJWgWtLX3XXqX5hrSQ+X69wkmesXuQ==" - "resolved" "https://registry.npmjs.org/@babel/types/-/types-7.12.7.tgz" - "version" "7.12.7" - dependencies: - "@babel/helper-validator-identifier" "^7.10.4" - "lodash" "^4.17.19" - "to-fast-properties" "^2.0.0" - -"@babel/types@^7.12.5", "@babel/types@^7.12.7": - "integrity" "sha512-MNyI92qZq6jrQkXvtIiykvl4WtoRrVV9MPn+ZfsoEENjiWcBQ3ZSHrkxnJWgWtLX3XXqX5hrSQ+X69wkmesXuQ==" - "resolved" "https://registry.npmjs.org/@babel/types/-/types-7.12.7.tgz" - "version" "7.12.7" - dependencies: - "@babel/helper-validator-identifier" "^7.10.4" - "lodash" "^4.17.19" + "@babel/helper-validator-identifier" "^7.14.5" "to-fast-properties" "^2.0.0" "@bcoe/v8-coverage@^0.2.3": @@ -855,9 +774,9 @@ "resolve-from" "^5.0.0" "@istanbuljs/schema@^0.1.2": - "integrity" "sha512-tsAQNx32a8CoFhjhijUIhI4kccIAgmGhy8LZMZgGfmXcpMbPRUqn5LWmgRttILi6yeGmBJd2xsPkFMs0PzgPCw==" - "resolved" "https://registry.npmjs.org/@istanbuljs/schema/-/schema-0.1.2.tgz" - "version" "0.1.2" + "integrity" "sha512-ZXRY4jNvVgSVQ8DL3LTcakaAtXwTVUxE81hslsyD2AtoXW/wVob10HkOJ1X/pAlcI7D+2YoZKg5do8G/w6RYgA==" + "resolved" "https://registry.npmjs.org/@istanbuljs/schema/-/schema-0.1.3.tgz" + "version" "0.1.3" "@jest/console@^24.9.0": "integrity" "sha512-Zuj6b8TnKXi3q4ymac8EQfc3ea/uhLeCGThFqXeC8H9/raaH8ARPUTdId+XyGd03Z4In0/VjD2OYFcBF09fNLQ==" @@ -1073,12 +992,15 @@ "chalk" "^3.0.0" "@k3rn31p4nic/google-translate-api@github:k3rn31p4nic/google-translate-api": - "resolved" "git+ssh://git@github.com/k3rn31p4nic/google-translate-api.git#b15b464fb0a8fa4d58bc90d3d251250a8a71e907" + "resolved" "git+ssh://git@github.com/k3rn31p4nic/google-translate-api.git#46e06baf64d8425f148f1da3cf427813eeb179ac" + "version" "1.1.2" dependencies: "got" "^11.8.1" -"@react-native-community/async-storage@github:react-native-community/async-storage": - "resolved" "git+ssh://git@github.com/react-native-community/async-storage.git#3f868caa6e8a2b15b8bf8bea1e0f48eda9736fde" +"@react-native-async-storage/async-storage@^1.15.5": + "integrity" "sha512-4AYehLH39B9a8UXCMf3ieOK+G61wGMP72ikx6/XSMA0DUnvx0PgaeaT2Wyt06kTrDTy8edewKnbrbeqwaM50TQ==" + "resolved" "https://registry.npmjs.org/@react-native-async-storage/async-storage/-/async-storage-1.15.5.tgz" + "version" "1.15.5" dependencies: "deep-assign" "^3.0.0" @@ -1100,7 +1022,7 @@ "hermes-profile-transformer" "^0.0.6" "ip" "^1.1.5" -"@react-native-community/cli-platform-android@^4.13.0", "@react-native-community/cli-platform-android@^4.7.0": +"@react-native-community/cli-platform-android@^4.10.0", "@react-native-community/cli-platform-android@^4.13.0": "integrity" "sha512-3i8sX8GklEytUZwPnojuoFbCjIRzMugCdzDIdZ9UNmi/OhD4/8mLGO0dgXfT4sMWjZwu3qjy45sFfk2zOAgHbA==" "resolved" "https://registry.npmjs.org/@react-native-community/cli-platform-android/-/cli-platform-android-4.13.0.tgz" "version" "4.13.0" @@ -1116,7 +1038,7 @@ "slash" "^3.0.0" "xmldoc" "^1.1.2" -"@react-native-community/cli-platform-ios@^4.7.0": +"@react-native-community/cli-platform-ios@^4.10.0": "integrity" "sha512-6THlTu8zp62efkzimfGr3VIuQJ2514o+vScZERJCV1xgEi8XtV7mb/ZKt9o6Y9WGxKKkc0E0b/aVAtgy+L27CA==" "resolved" "https://registry.npmjs.org/@react-native-community/cli-platform-ios/-/cli-platform-ios-4.13.0.tgz" "version" "4.13.0" @@ -1161,10 +1083,10 @@ "resolved" "https://registry.npmjs.org/@react-native-community/cli-types/-/cli-types-4.10.1.tgz" "version" "4.10.1" -"@react-native-community/cli@^4.7.0": - "integrity" "sha512-+/TeRVToADpQPSprsPkwi9KY8x64YcuJpjzMBVISwWP+aWzsIDuWJmyMXTADlCg2EBMJqJR7bn1W/IkfzVRCWA==" - "resolved" "https://registry.npmjs.org/@react-native-community/cli/-/cli-4.13.1.tgz" - "version" "4.13.1" +"@react-native-community/cli@^4.10.0": + "integrity" "sha512-EYJKBuxFxAu/iwNUfwDq41FjORpvSh1wvQ3qsHjzcR5uaGlWEOJrd3uNJDuKBAS0TVvbEesLF9NEXipjyRVr4Q==" + "resolved" "https://registry.npmjs.org/@react-native-community/cli/-/cli-4.14.0.tgz" + "version" "4.14.0" dependencies: "@hapi/joi" "^15.0.3" "@react-native-community/cli-debugger-ui" "^4.13.1" @@ -1186,11 +1108,11 @@ "inquirer" "^3.0.6" "leven" "^3.1.0" "lodash" "^4.17.15" - "metro" "^0.58.0" - "metro-config" "^0.58.0" - "metro-core" "^0.58.0" - "metro-react-native-babel-transformer" "^0.58.0" - "metro-resolver" "^0.58.0" + "metro" "^0.59.0" + "metro-config" "^0.59.0" + "metro-core" "^0.59.0" + "metro-react-native-babel-transformer" "^0.59.0" + "metro-resolver" "^0.59.0" "minimist" "^1.2.0" "mkdirp" "^0.5.1" "node-stream-zip" "^1.9.1" @@ -1232,12 +1154,12 @@ "version" "0.1.11" "@react-navigation/bottom-tabs@^5.8.0": - "integrity" "sha512-geF/FSIg6cArY5jLwJJZrp7PDzLoSrONkCgq9n/4yKxtQapB/Pn5ljSHCNRGNkkb/+g8zqRQmEL5yX4DOja0OA==" - "resolved" "https://registry.npmjs.org/@react-navigation/bottom-tabs/-/bottom-tabs-5.8.0.tgz" - "version" "5.8.0" + "integrity" "sha512-hThj6Vfw+ITzAVj5TgLEoxkVEcBD+gYeieWOe6FryBRgokgKNCzFQzqArJ5UCmNMxklNH0rstJfcdyHflLuPtw==" + "resolved" "https://registry.npmjs.org/@react-navigation/bottom-tabs/-/bottom-tabs-5.11.11.tgz" + "version" "5.11.11" dependencies: - "color" "^3.1.2" - "react-native-iphone-x-helper" "^1.2.1" + "color" "^3.1.3" + "react-native-iphone-x-helper" "^1.3.0" "@react-navigation/core@^5.15.3": "integrity" "sha512-3ZdyDInh8qg1kygCNkmh9lFgpDf29lTvPsaMe2mm/qvmxLKSgttWBz07P2fc181aV9jTdgQpzYfWZ5KWT036zw==" @@ -1267,12 +1189,12 @@ "nanoid" "^3.1.15" "@react-navigation/stack@^5.9.0": - "integrity" "sha512-kt6M0ZLMyNKXfKi50n01bHg4/d8zp0Yh5QaQG4d1roWOqdV9ou1nFEK4l2yQ6XKH2lLSYswHElPDZUuWd+6XzA==" - "resolved" "https://registry.npmjs.org/@react-navigation/stack/-/stack-5.9.0.tgz" - "version" "5.9.0" + "integrity" "sha512-hpdn1SS0tc3/3atkV2Q2y++n5B4e0rUcCj4W43PODMu72yX2m0LkKAAcpkPDCWAvwnLLIoLAEl5BEifZigl/6A==" + "resolved" "https://registry.npmjs.org/@react-navigation/stack/-/stack-5.14.5.tgz" + "version" "5.14.5" dependencies: - "color" "^3.1.2" - "react-native-iphone-x-helper" "^1.2.1" + "color" "^3.1.3" + "react-native-iphone-x-helper" "^1.3.0" "@sindresorhus/is@^0.14.0": "integrity" "sha512-9NET910DNaIPngYnLLPeg+Ogzqsi9uM4mSboU5y6p8S5DzMTVEsJZrawi+BoDNUVBa2DhJqQYUFvMDfgU062LQ==" @@ -1280,14 +1202,14 @@ "version" "0.14.0" "@sindresorhus/is@^4.0.0": - "integrity" "sha512-FyD2meJpDPjyNQejSjvnhpgI/azsQkA4lGbuu5BQZfjvJ9cbRZXzeWL2HceCekW4lixO9JPesIIQkSoLjeJHNQ==" - "resolved" "https://registry.npmjs.org/@sindresorhus/is/-/is-4.0.0.tgz" - "version" "4.0.0" + "integrity" "sha512-Qm9hBEBu18wt1PO2flE7LPb30BHMQt1eQgbV76YntdNk73XZGpn3izvGTYxbGgzXKgbCjiia0uxTd3aTNQrY/g==" + "resolved" "https://registry.npmjs.org/@sindresorhus/is/-/is-4.0.1.tgz" + "version" "4.0.1" "@sinonjs/commons@^1.7.0": - "integrity" "sha512-892K+kWUUi3cl+LlqEWIDrhvLgdL79tECi8JZUyq6IviKy/DNhuzCRlbHUjxK89f4ypPMMaFnFuR9Ie6DoIMsw==" - "resolved" "https://registry.npmjs.org/@sinonjs/commons/-/commons-1.8.1.tgz" - "version" "1.8.1" + "integrity" "sha512-xkNcLAn/wZaX14RPlwizcKicDk9G3F8m2nU3L7Ukm5zBgTwiT0wsoFAHx9Jq56fJA1z/7uKGtCRu16sOUCLIHQ==" + "resolved" "https://registry.npmjs.org/@sinonjs/commons/-/commons-1.8.3.tgz" + "version" "1.8.3" dependencies: "type-detect" "4.0.8" @@ -1306,9 +1228,9 @@ "defer-to-connect" "^2.0.0" "@types/babel__core@^7.1.7": - "integrity" "sha512-sY2RsIJ5rpER1u3/aQ8OFSI7qGIy8o1NEEbgb2UaJcvOtXOMpd39ko723NBpjQFg9SIX7TXtjejZVGeIMLhoOw==" - "resolved" "https://registry.npmjs.org/@types/babel__core/-/babel__core-7.1.9.tgz" - "version" "7.1.9" + "integrity" "sha512-zGZJzzBUVDo/eV6KgbE0f0ZI7dInEYvo12Rb70uNQDshC3SkRMb67ja0GgRHZgAX3Za6rhaWlvbDO8rrGyAb1g==" + "resolved" "https://registry.npmjs.org/@types/babel__core/-/babel__core-7.1.14.tgz" + "version" "7.1.14" dependencies: "@babel/parser" "^7.1.0" "@babel/types" "^7.0.0" @@ -1317,24 +1239,24 @@ "@types/babel__traverse" "*" "@types/babel__generator@*": - "integrity" "sha512-bBKm+2VPJcMRVwNhxKu8W+5/zT7pwNEqeokFOmbvVSqGzFneNxYcEBro9Ac7/N9tlsaPYnZLK8J1LWKkMsLAew==" - "resolved" "https://registry.npmjs.org/@types/babel__generator/-/babel__generator-7.6.1.tgz" - "version" "7.6.1" + "integrity" "sha512-MdSJnBjl+bdwkLskZ3NGFp9YcXGx5ggLpQQPqtgakVhsWK0hTtNYhjpZLlWQTviGTvF8at+Bvli3jV7faPdgeQ==" + "resolved" "https://registry.npmjs.org/@types/babel__generator/-/babel__generator-7.6.2.tgz" + "version" "7.6.2" dependencies: "@babel/types" "^7.0.0" "@types/babel__template@*": - "integrity" "sha512-/K6zCpeW7Imzgab2bLkLEbz0+1JlFSrUMdw7KoIIu+IUdu51GWaBZpd3y1VXGVXzynvGa4DaIaxNZHiON3GXUg==" - "resolved" "https://registry.npmjs.org/@types/babel__template/-/babel__template-7.0.2.tgz" - "version" "7.0.2" + "integrity" "sha512-NTPErx4/FiPCGScH7foPyr+/1Dkzkni+rHiYHHoTjvwou7AQzJkNeD60A9CXRy+ZEN2B1bggmkTMCDb+Mv5k+A==" + "resolved" "https://registry.npmjs.org/@types/babel__template/-/babel__template-7.4.0.tgz" + "version" "7.4.0" dependencies: "@babel/parser" "^7.1.0" "@babel/types" "^7.0.0" "@types/babel__traverse@*", "@types/babel__traverse@^7.0.6": - "integrity" "sha512-i+zS7t6/s9cdQvbqKDARrcbrPvtJGlbYsMkazo03nTAK3RX9FNrLllXys22uiTGJapPOTZTQ35nHh4ISph4SLQ==" - "resolved" "https://registry.npmjs.org/@types/babel__traverse/-/babel__traverse-7.0.13.tgz" - "version" "7.0.13" + "integrity" "sha512-Vs0hm0vPahPMYi9tDjtP66llufgO3ST16WXaSTtDGEl9cewAl3AibmxWw6TINOqHPT9z0uABKAYjT9jNSg4npw==" + "resolved" "https://registry.npmjs.org/@types/babel__traverse/-/babel__traverse-7.11.1.tgz" + "version" "7.11.1" dependencies: "@babel/types" "^7.3.0" @@ -1348,20 +1270,15 @@ "@types/node" "*" "@types/responselike" "*" -"@types/color-name@^1.1.1": - "integrity" "sha512-rr+OQyAjxze7GgWrSaJwydHStIhHq2lvY3BOC2Mj7KnzI7XK0Uw1TOOdI9lDoajEbSWLiYgoo4f1R51erQfhPQ==" - "resolved" "https://registry.npmjs.org/@types/color-name/-/color-name-1.1.1.tgz" - "version" "1.1.1" - "@types/eslint-visitor-keys@^1.0.0": "integrity" "sha512-OCutwjDZ4aFS6PB1UZ988C4YgwlBHJd6wCeQqaLdmadZ/7e+w79+hbMUFC1QXDNCmdyoRfAFdm0RypzwR+Qpag==" "resolved" "https://registry.npmjs.org/@types/eslint-visitor-keys/-/eslint-visitor-keys-1.0.0.tgz" "version" "1.0.0" "@types/graceful-fs@^4.1.2": - "integrity" "sha512-AiHRaEB50LQg0pZmm659vNBb9f4SJ0qrAnteuzhSeAUcJKxoYgEnprg/83kppCnc2zvtCKbdZry1a5pVY3lOTQ==" - "resolved" "https://registry.npmjs.org/@types/graceful-fs/-/graceful-fs-4.1.3.tgz" - "version" "4.1.3" + "integrity" "sha512-anKkLmZZ+xm4p8JWBf4hElkM4XR+EZeA2M9BAkkTldmcyDY4mbdIJnRghDJH3Ov5ooY7/UAoENtmdMSkaAd7Cw==" + "resolved" "https://registry.npmjs.org/@types/graceful-fs/-/graceful-fs-4.1.5.tgz" + "version" "4.1.5" dependencies: "@types/node" "*" @@ -1396,9 +1313,9 @@ "@types/istanbul-lib-report" "*" "@types/json-schema@^7.0.3": - "integrity" "sha512-7+2BITlgjgDhH0vvwZU/HZJVyk+2XUlvxXe8dFMedNX/aMkaOq++rMAFXc0tM7ij15QaWlbdQASBR9dihi+bDQ==" - "resolved" "https://registry.npmjs.org/@types/json-schema/-/json-schema-7.0.5.tgz" - "version" "7.0.5" + "integrity" "sha512-cxWFQVseBm6O9Gbw1IWb8r6OS4OhSt3hPZLkFApLjM8TEXROBuQGLAH2i2gZpcXdLBIrpXuTDhH7Vbm1iXmNGA==" + "resolved" "https://registry.npmjs.org/@types/json-schema/-/json-schema-7.0.7.tgz" + "version" "7.0.7" "@types/keyv@*": "integrity" "sha512-MPtoySlAZQ37VoLaPcTHCu1RWJ4llDkULYZIzOYxlhxBqYPB0RsRlmMU0R6tahtFe27mIdkHV+551ZWV4PLmVw==" @@ -1408,9 +1325,9 @@ "@types/node" "*" "@types/node@*": - "integrity" "sha512-kVrqXhbclHNHGu9ztnAwSncIgJv/FaxmzXJvGXNdcCpV1b8u1/Mi6z6m0vwy0LzKeXFTPLH0NzwmoJ3fNCIq0g==" - "resolved" "https://registry.npmjs.org/@types/node/-/node-14.0.27.tgz" - "version" "14.0.27" + "integrity" "sha512-zrNj1+yqYF4WskCMOHwN+w9iuD12+dGm0rQ35HLl9/Ouuq52cEtd0CH9qMgrdNmi5ejC1/V7vKEXYubB+65DkA==" + "resolved" "https://registry.npmjs.org/@types/node/-/node-15.12.4.tgz" + "version" "15.12.4" "@types/normalize-package-data@^2.4.0": "integrity" "sha512-f5j5b/Gf71L+dbqxIpQ4Z2WlmI/mPJ0fOkGGmFgtb6sAu97EPczzbS3/tJKxmcYDj55OX6ssqwDAWOHIYDRDGA==" @@ -1428,26 +1345,27 @@ "version" "15.7.3" "@types/react-native-vector-icons@^6.4.5": - "integrity" "sha512-JBpcjWQE4n0GlE0p6HpDDclT+uXpFC453T5k4h+B38q0utlGJhvgNr8899BoJGc1xOktA2cgqFKmFMJd0h7YaA==" - "resolved" "https://registry.npmjs.org/@types/react-native-vector-icons/-/react-native-vector-icons-6.4.5.tgz" - "version" "6.4.5" + "integrity" "sha512-srU4IWO5ghzm96dwyiKRYJCGD+Q0Lcu8NsWOXLi4pRPH24mb68XhrqW5Gb63AeiXlAOFsaOl2Irlsg79BNYt4A==" + "resolved" "https://registry.npmjs.org/@types/react-native-vector-icons/-/react-native-vector-icons-6.4.7.tgz" + "version" "6.4.7" dependencies: "@types/react" "*" "@types/react-native" "*" "@types/react-native@*": - "integrity" "sha512-qAv/VOyXAk4it9MOsQoyUjUnEJ3kAW1FCRGi0OvfQDKLH1/FFogVFvoB6xAlBNc6lPyBtCg+nvzj/ScYe0PqCQ==" - "resolved" "https://registry.npmjs.org/@types/react-native/-/react-native-0.63.6.tgz" - "version" "0.63.6" + "integrity" "sha512-3Kb9QM5/WZ6p58yZ7VPbvjvi6Wc/ZkESgJhKso1gKkNuHBe/4WL6586R2JRDiz9Tsxal9lMnbj3fligBVGl8PA==" + "resolved" "https://registry.npmjs.org/@types/react-native/-/react-native-0.64.10.tgz" + "version" "0.64.10" dependencies: "@types/react" "*" "@types/react@*": - "integrity" "sha512-vv950slTF5UZ5eDOf13b8qC1SD4rTvkqg3HfaUKzr17U97oeJZAa+dUaIHn0QoOJflNTIt6Pem9MmapULs9dkA==" - "resolved" "https://registry.npmjs.org/@types/react/-/react-16.9.45.tgz" - "version" "16.9.45" + "integrity" "sha512-yFRQbD+whVonItSk7ZzP/L+gPTJVBkL/7shLEF+i9GC/1cV3JmUxEQz6+9ylhUpWSDuqo1N9qEvqS6vTj4USUA==" + "resolved" "https://registry.npmjs.org/@types/react/-/react-17.0.11.tgz" + "version" "17.0.11" dependencies: "@types/prop-types" "*" + "@types/scheduler" "*" "csstype" "^3.0.2" "@types/responselike@*", "@types/responselike@^1.0.0": @@ -1457,15 +1375,20 @@ dependencies: "@types/node" "*" +"@types/scheduler@*": + "integrity" "sha512-EaCxbanVeyxDRTQBkdLb3Bvl/HK7PBK6UJjsSixB0iHKoWxE5uu2Q/DgtpOhPIojN0Zl1whvOd7PoHs2P0s5eA==" + "resolved" "https://registry.npmjs.org/@types/scheduler/-/scheduler-0.16.1.tgz" + "version" "0.16.1" + "@types/stack-utils@^1.0.1": "integrity" "sha512-l42BggppR6zLmpfU6fq9HEa2oGPEI8yrSPL3GITjfRInppYFahObbIQOQK3UGxEnyQpltZLaPe75046NOZQikw==" "resolved" "https://registry.npmjs.org/@types/stack-utils/-/stack-utils-1.0.1.tgz" "version" "1.0.1" "@types/yargs-parser@*": - "integrity" "sha512-FA/BWv8t8ZWJ+gEOnLLd8ygxH/2UFbAvgEonyfN6yWGLKc7zVjbpl2Y4CTjid9h2RfgPP6SEt6uHwEOply00yw==" - "resolved" "https://registry.npmjs.org/@types/yargs-parser/-/yargs-parser-15.0.0.tgz" - "version" "15.0.0" + "integrity" "sha512-37RSHht+gzzgYeobbG+KWryeAW8J33Nhr69cjTqSYymXVZEN9NbRYWoYlRtDhHKPVT1FyNKwaTPC1NynKZpzRA==" + "resolved" "https://registry.npmjs.org/@types/yargs-parser/-/yargs-parser-20.2.0.tgz" + "version" "20.2.0" "@types/yargs@^13.0.0": "integrity" "sha512-NRqD6T4gktUrDi1o1wLH3EKC1o2caCr7/wR87ODcbVITQF106OM3sFN92ysZ++wqelOd1CTzatnOBRDYYG6wGQ==" @@ -1475,9 +1398,9 @@ "@types/yargs-parser" "*" "@types/yargs@^15.0.0": - "integrity" "sha512-Dk/IDOPtOgubt/IaevIUbTgV7doaKkoorvOyYM2CMwuDyP89bekI7H4xLIwunNYiK9jhCkmc6pUrJk3cj2AB9w==" - "resolved" "https://registry.npmjs.org/@types/yargs/-/yargs-15.0.5.tgz" - "version" "15.0.5" + "integrity" "sha512-kQ5JNTrbDv3Rp5X2n/iUu37IJBDU2gsZ5R/g1/KHOOEc5IKfUFjXT6DENPGduh08I/pamwtEq4oul7gUqKTQDQ==" + "resolved" "https://registry.npmjs.org/@types/yargs/-/yargs-15.0.13.tgz" + "version" "15.0.13" dependencies: "@types/yargs-parser" "*" @@ -1542,9 +1465,9 @@ "got" "^6.3.0" "abab@^2.0.0": - "integrity" "sha512-Eu9ELJWCz/c1e9gTiCY+FceWxcqzjYEbqMgtndnuSqZSUCOL73TWNK2mHfIj4Cw2E/ongOp+JISVNCmovt2KYQ==" - "resolved" "https://registry.npmjs.org/abab/-/abab-2.0.4.tgz" - "version" "2.0.4" + "integrity" "sha512-9IK9EadsbHo6jLWIpxpR6pL0sazTXV6+SQv25ZB+F7Bj9mJNaOc4nCRabwd5M/JwmUa8idz6Eci6eKfJryPs6Q==" + "resolved" "https://registry.npmjs.org/abab/-/abab-2.0.5.tgz" + "version" "2.0.5" "abort-controller@^3.0.0": "integrity" "sha512-h8lQ8tacZYnR3vNQTgibj+tODHI5/+l06Au2Pcriv/Gmet0eaj4TwWH41sO9wnHDiQsEj19q0drzdWdeAHtweg==" @@ -1575,9 +1498,9 @@ "acorn-walk" "^6.0.1" "acorn-jsx@^5.2.0": - "integrity" "sha512-HiUX/+K2YpkpJ+SzBffkM/AQ2YE03S0U1kjTLVpoJdhZMOWy8qvXVN9JdLqv2QsaQ6MPYQIuNmwD8zOiYUofLQ==" - "resolved" "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-5.2.0.tgz" - "version" "5.2.0" + "integrity" "sha512-K0Ptm/47OKfQRpNQ2J/oIN/3QYiK6FwW+eJbILhsdxh2WTLdl+30o8aGdTbm5JbffpFFAg/g+zi1E+jvJha5ng==" + "resolved" "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-5.3.1.tgz" + "version" "5.3.1" "acorn-walk@^6.0.1": "integrity" "sha512-7evsyfH1cLOCdAzZAd43Cic04yKydNx0cF+7tiA19p1XnLLPU4dpCQOqpjqwokFe//vS0QqfqqjCS2JkiIs0cA==" @@ -1585,19 +1508,19 @@ "version" "6.2.0" "acorn@^6.0.1": - "integrity" "sha512-ZVA9k326Nwrj3Cj9jlh3wGFutC2ZornPNARZwsNYqQYgN0EsV2d53w5RN/co65Ohn4sUAUtb1rSUAOD6XN9idA==" - "resolved" "https://registry.npmjs.org/acorn/-/acorn-6.4.1.tgz" - "version" "6.4.1" + "integrity" "sha512-XtGIhXwF8YM8bJhGxG5kXgjkEuNGLTkoYqVE+KMR+aspr4KGYmKYg7yUe3KghyQ9yheNwLnjmzh/7+gfDBmHCQ==" + "resolved" "https://registry.npmjs.org/acorn/-/acorn-6.4.2.tgz" + "version" "6.4.2" "acorn@^7.1.0", "acorn@^7.1.1": - "integrity" "sha512-+G7P8jJmCHr+S+cLfQxygbWhXy+8YTVGzAkpEbcLo2mLoL7tij/VG41QSHACSf5QgYRhMZYHuNc6drJaO0Da+w==" - "resolved" "https://registry.npmjs.org/acorn/-/acorn-7.4.0.tgz" - "version" "7.4.0" + "integrity" "sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A==" + "resolved" "https://registry.npmjs.org/acorn/-/acorn-7.4.1.tgz" + "version" "7.4.1" "ajv@^6.10.0", "ajv@^6.10.2", "ajv@^6.12.3": - "integrity" "sha512-4K0cK3L1hsqk9xIb2z9vs/XU+PGJZ9PNpJRDS9YLzmNdX6jmVPfamLvTJr0aDAusnHyCHO6MjzlkAsgtqp9teA==" - "resolved" "https://registry.npmjs.org/ajv/-/ajv-6.12.3.tgz" - "version" "6.12.3" + "integrity" "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==" + "resolved" "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz" + "version" "6.12.6" dependencies: "fast-deep-equal" "^3.1.1" "fast-json-stable-stringify" "^2.0.0" @@ -1629,11 +1552,11 @@ "version" "3.2.0" "ansi-escapes@^4.2.1": - "integrity" "sha512-JWF7ocqNrp8u9oqpgV+wH5ftbt+cfvv+PTjOvKLT3AdYly/LmORARfEVT1iyjwN+4MqE5UmVKoAdIBqeoCHgLA==" - "resolved" "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-4.3.1.tgz" - "version" "4.3.1" + "integrity" "sha512-gKXj5ALrKWQLsYG9jlTRmR/xKluxHV+Z9QEwNIgCfM1/uwPMCuzVVnh5mwTd+OuBZcwSIMbqssNWRm1lE51QaQ==" + "resolved" "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-4.3.2.tgz" + "version" "4.3.2" dependencies: - "type-fest" "^0.11.0" + "type-fest" "^0.21.3" "ansi-fragments@^0.2.1": "integrity" "sha512-DykbNHxuXQwUDRv5ibc2b0x7uw7wmwOGLBUd5RmaQ5z8Lhx19vwvKV+FAsM5rEA6dEcHxX+/Ad5s9eF2k2bB+w==" @@ -1685,12 +1608,18 @@ dependencies: "color-convert" "^1.9.0" -"ansi-styles@^4.0.0", "ansi-styles@^4.1.0": - "integrity" "sha512-9VGjrMsG1vePxcSweQsN20KY/c4zN0h9fLjqAbwbPfahM3t+NL+M9HC8xeXG2I8pX5NoamTGNuomEUFI7fcUjA==" - "resolved" "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.2.1.tgz" - "version" "4.2.1" +"ansi-styles@^4.0.0": + "integrity" "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==" + "resolved" "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz" + "version" "4.3.0" + dependencies: + "color-convert" "^2.0.1" + +"ansi-styles@^4.1.0": + "integrity" "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==" + "resolved" "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz" + "version" "4.3.0" dependencies: - "@types/color-name" "^1.1.1" "color-convert" "^2.0.1" "ansi-wrap@^0.1.0", "ansi-wrap@0.1.0": @@ -1707,9 +1636,9 @@ "normalize-path" "^2.1.1" "anymatch@^3.0.3": - "integrity" "sha512-mM8522psRCqzV+6LhomX5wgp25YVibjh8Wj23I5RPkPppSVSjyKD2A2mBJmWGa+KN7f2D6LNh9jkBCeyLktzjg==" - "resolved" "https://registry.npmjs.org/anymatch/-/anymatch-3.1.1.tgz" - "version" "3.1.1" + "integrity" "sha512-P43ePfOAIupkguHUycrc4qJ9kz8ZiuOUijaETwX7THt0Y/GNK7v0aa8rY816xWjZ7rJdA5XdMcpVFTKMq+RvWg==" + "resolved" "https://registry.npmjs.org/anymatch/-/anymatch-3.1.2.tgz" + "version" "3.1.2" dependencies: "normalize-path" "^3.0.0" "picomatch" "^2.0.4" @@ -1760,12 +1689,14 @@ "version" "0.0.1" "array-includes@^3.1.1": - "integrity" "sha512-c2VXaCHl7zPsvpkFsw4nxvFie4fh1ur9bpcgsVkIjqn0H/Xwdg+7fv3n2r/isyS8EBj5b06M9kHyZuIr4El6WQ==" - "resolved" "https://registry.npmjs.org/array-includes/-/array-includes-3.1.1.tgz" - "version" "3.1.1" + "integrity" "sha512-gcem1KlBU7c9rB+Rq8/3PPKsK2kjqeEBa3bD5kkQo4nYlOHQCJqIJFqBXDEfwaRuYTT4E+FxA9xez7Gf/e3Q7A==" + "resolved" "https://registry.npmjs.org/array-includes/-/array-includes-3.1.3.tgz" + "version" "3.1.3" dependencies: + "call-bind" "^1.0.2" "define-properties" "^1.1.3" - "es-abstract" "^1.17.0" + "es-abstract" "^1.18.0-next.2" + "get-intrinsic" "^1.1.1" "is-string" "^1.0.5" "array-map@~0.0.0": @@ -1838,9 +1769,9 @@ "version" "0.7.0" "aws4@^1.8.0": - "integrity" "sha512-3YDiu347mtVtjpyV3u5kVqQLP242c06zwDOgpeRnybmXlYYsLbtTrUBUm8i8srONt+FWobl5aibnU1030PeeuA==" - "resolved" "https://registry.npmjs.org/aws4/-/aws4-1.10.0.tgz" - "version" "1.10.0" + "integrity" "sha512-xh1Rl34h6Fi1DC2WWKfxUTVqRsNnr6LsKz2+hfwDxQJWmrx8+c7ylaqBMcHfl1U1r2dsifOvKX3LQuLNZ+XSvA==" + "resolved" "https://registry.npmjs.org/aws4/-/aws4-1.11.0.tgz" + "version" "1.11.0" "axios@^0.20.0": "integrity" "sha512-ANA4rr2BDcmmAQLOKft2fufrtuvlqR+cXNNinUmvfeSNCOF98PZL+7M/v1zIdGo7OLjEA9J2gXJL+j4zGsl0bA==" @@ -1902,15 +1833,39 @@ "@babel/types" "^7.3.3" "@types/babel__traverse" "^7.0.6" +"babel-plugin-polyfill-corejs2@^0.2.2": + "integrity" "sha512-kISrENsJ0z5dNPq5eRvcctITNHYXWOA4DUZRFYCz3jYCcvTb/A546LIddmoGNMVYg2U38OyFeNosQwI9ENTqIQ==" + "resolved" "https://registry.npmjs.org/babel-plugin-polyfill-corejs2/-/babel-plugin-polyfill-corejs2-0.2.2.tgz" + "version" "0.2.2" + dependencies: + "@babel/compat-data" "^7.13.11" + "@babel/helper-define-polyfill-provider" "^0.2.2" + "semver" "^6.1.1" + +"babel-plugin-polyfill-corejs3@^0.2.2": + "integrity" "sha512-rCOFzEIJpJEAU14XCcV/erIf/wZQMmMT5l5vXOpL5uoznyOGfDIjPj6FVytMvtzaKSTSVKouOCTPJ5OMUZH30g==" + "resolved" "https://registry.npmjs.org/babel-plugin-polyfill-corejs3/-/babel-plugin-polyfill-corejs3-0.2.3.tgz" + "version" "0.2.3" + dependencies: + "@babel/helper-define-polyfill-provider" "^0.2.2" + "core-js-compat" "^3.14.0" + +"babel-plugin-polyfill-regenerator@^0.2.2": + "integrity" "sha512-Goy5ghsc21HgPDFtzRkSirpZVW35meGoTmTOb2bxqdl60ghub4xOidgNTHaZfQ2FaxQsKmwvXtOAkcIS4SMBWg==" + "resolved" "https://registry.npmjs.org/babel-plugin-polyfill-regenerator/-/babel-plugin-polyfill-regenerator-0.2.2.tgz" + "version" "0.2.2" + dependencies: + "@babel/helper-define-polyfill-provider" "^0.2.2" + "babel-plugin-syntax-trailing-function-commas@^7.0.0-beta.0": "integrity" "sha512-Xj9XuRuz3nTSbaTXWv3itLOcxyF4oPD8douBBmj7U9BBC6nEBYfyOJYQMf/8PJAFotC62UY5dFfIGEPr7WswzQ==" "resolved" "https://registry.npmjs.org/babel-plugin-syntax-trailing-function-commas/-/babel-plugin-syntax-trailing-function-commas-7.0.0-beta.0.tgz" "version" "7.0.0-beta.0" "babel-preset-current-node-syntax@^0.1.2": - "integrity" "sha512-uyexu1sVwcdFnyq9o8UQYsXwXflIh8LvrF5+cKrYam93ned1CStffB3+BEcsxGSgagoA3GEyjDqO4a/58hyPYQ==" - "resolved" "https://registry.npmjs.org/babel-preset-current-node-syntax/-/babel-preset-current-node-syntax-0.1.3.tgz" - "version" "0.1.3" + "integrity" "sha512-5/INNCYhUGqw7VbVjT/hb3ucjgkVHKXY7lX3ZjlN4gm565VyFmJUrJ/h+h16ECVB38R/9SF6aACydpKMLZ/c9w==" + "resolved" "https://registry.npmjs.org/babel-preset-current-node-syntax/-/babel-preset-current-node-syntax-0.1.4.tgz" + "version" "0.1.4" dependencies: "@babel/plugin-syntax-async-generators" "^7.8.4" "@babel/plugin-syntax-bigint" "^7.8.3" @@ -1925,9 +1880,9 @@ "@babel/plugin-syntax-optional-chaining" "^7.8.3" "babel-preset-fbjs@^3.2.0", "babel-preset-fbjs@^3.3.0": - "integrity" "sha512-7QTLTCd2gwB2qGoi5epSULMHugSVgpcVt5YAeiFO9ABLrutDQzKfGwzxgZHLpugq8qMdg/DhRZDZ5CLKxBkEbw==" - "resolved" "https://registry.npmjs.org/babel-preset-fbjs/-/babel-preset-fbjs-3.3.0.tgz" - "version" "3.3.0" + "integrity" "sha512-9ywCsCvo1ojrw0b+XYk7aFvTH6D9064t0RIL1rtMf3nsa02Xw41MS7sZw216Im35xj/UY0PDBQsa1brUDDF1Ow==" + "resolved" "https://registry.npmjs.org/babel-preset-fbjs/-/babel-preset-fbjs-3.4.0.tgz" + "version" "3.4.0" dependencies: "@babel/plugin-proposal-class-properties" "^7.0.0" "@babel/plugin-proposal-object-rest-spread" "^7.0.0" @@ -1966,9 +1921,9 @@ "babel-preset-current-node-syntax" "^0.1.2" "balanced-match@^1.0.0": - "integrity" "sha1-ibTRmasr7kneFk6gK4nORi1xt2c=" - "resolved" "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.0.tgz" - "version" "1.0.0" + "integrity" "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==" + "resolved" "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz" + "version" "1.0.2" "base@^0.11.1": "integrity" "sha512-5T6P4xPgpp0YDFvSWwEZ4NoE3aM4QBQXDzmVbraCkFj8zHM+mba8SyqB5DbZWyR7mYHo6Y7BdQo3MoA4m0TeQg==" @@ -1983,7 +1938,7 @@ "mixin-deep" "^1.2.0" "pascalcase" "^0.1.1" -"base64-js@^1.1.2", "base64-js@^1.2.3": +"base64-js@^1.1.2", "base64-js@^1.5.1": "integrity" "sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==" "resolved" "https://registry.npmjs.org/base64-js/-/base64-js-1.5.1.tgz" "version" "1.5.1" @@ -2064,6 +2019,17 @@ dependencies: "resolve" "1.1.7" +"browserslist@^4.16.6": + "integrity" "sha512-Wspk/PqO+4W9qp5iUTJsa1B/QrYn1keNCcEP5OvP7WBwT4KaDly0uONYmC6Xa3Z5IqnUgS0KcgLYu1l74x0ZXQ==" + "resolved" "https://registry.npmjs.org/browserslist/-/browserslist-4.16.6.tgz" + "version" "4.16.6" + dependencies: + "caniuse-lite" "^1.0.30001219" + "colorette" "^1.2.2" + "electron-to-chromium" "^1.3.723" + "escalade" "^3.1.1" + "node-releases" "^1.1.71" + "bser@2.1.1": "integrity" "sha512-gQxTNE/GAfIIrmHLUE3oJyp5FO6HRBfhjnw4/wMmA63ZGDJnWBmgY/lyQBpnDUkGmAhbSe39tx2d/iTOAfglwQ==" "resolved" "https://registry.npmjs.org/bser/-/bser-2.1.1.tgz" @@ -2120,18 +2086,26 @@ "responselike" "^1.0.2" "cacheable-request@^7.0.1": - "integrity" "sha512-lt0mJ6YAnsrBErpTMWeu5kl/tg9xMAWjavYTN6VQXM1A/teBITuNcccXsCxF0tDQQJf9DfAaX5O4e0zp0KlfZw==" - "resolved" "https://registry.npmjs.org/cacheable-request/-/cacheable-request-7.0.1.tgz" - "version" "7.0.1" + "integrity" "sha512-pouW8/FmiPQbuGpkXQ9BAPv/Mo5xDGANgSNXzTzJ8DrKGuXOssM4wIQRjfanNRh3Yu5cfYPvcorqbhg2KIJtew==" + "resolved" "https://registry.npmjs.org/cacheable-request/-/cacheable-request-7.0.2.tgz" + "version" "7.0.2" dependencies: "clone-response" "^1.0.2" "get-stream" "^5.1.0" "http-cache-semantics" "^4.0.0" "keyv" "^4.0.0" "lowercase-keys" "^2.0.0" - "normalize-url" "^4.1.0" + "normalize-url" "^6.0.1" "responselike" "^2.0.0" +"call-bind@^1.0.0", "call-bind@^1.0.2": + "integrity" "sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA==" + "resolved" "https://registry.npmjs.org/call-bind/-/call-bind-1.0.2.tgz" + "version" "1.0.2" + dependencies: + "function-bind" "^1.1.1" + "get-intrinsic" "^1.0.2" + "caller-callsite@^2.0.0": "integrity" "sha1-hH4PzgoiN1CpoCfFSzNzGtMVQTQ=" "resolved" "https://registry.npmjs.org/caller-callsite/-/caller-callsite-2.0.0.tgz" @@ -2161,6 +2135,11 @@ "resolved" "https://registry.npmjs.org/camelcase/-/camelcase-5.3.1.tgz" "version" "5.3.1" +"caniuse-lite@^1.0.30001219": + "integrity" "sha512-cyBkXJDMeI4wthy8xJ2FvDU6+0dtcZSJW3voUF8+e9f1bBeuvyZfc3PNbkOETyhbR+dGCPzn9E7MA3iwzusOhQ==" + "resolved" "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001239.tgz" + "version" "1.0.30001239" + "capture-exit@^2.0.0": "integrity" "sha512-PiT/hQmTonHhl/HFGN+Lx3JJUznrVYJ3+AQsnthneZbvW7x+f08Tk7yLJTLEOUvBTbduLeeBkxEaYXUOUrRq6g==" "resolved" "https://registry.npmjs.org/capture-exit/-/capture-exit-2.0.0.tgz" @@ -2178,43 +2157,7 @@ "resolved" "https://registry.npmjs.org/caseless/-/caseless-0.12.0.tgz" "version" "0.12.0" -"chalk@^2.0.0": - "integrity" "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==" - "resolved" "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz" - "version" "2.4.2" - dependencies: - "ansi-styles" "^3.2.1" - "escape-string-regexp" "^1.0.5" - "supports-color" "^5.3.0" - -"chalk@^2.0.1": - "integrity" "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==" - "resolved" "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz" - "version" "2.4.2" - dependencies: - "ansi-styles" "^3.2.1" - "escape-string-regexp" "^1.0.5" - "supports-color" "^5.3.0" - -"chalk@^2.1.0": - "integrity" "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==" - "resolved" "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz" - "version" "2.4.2" - dependencies: - "ansi-styles" "^3.2.1" - "escape-string-regexp" "^1.0.5" - "supports-color" "^5.3.0" - -"chalk@^2.4.1": - "integrity" "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==" - "resolved" "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz" - "version" "2.4.2" - dependencies: - "ansi-styles" "^3.2.1" - "escape-string-regexp" "^1.0.5" - "supports-color" "^5.3.0" - -"chalk@^2.4.2": +"chalk@^2.0.0", "chalk@^2.0.1", "chalk@^2.1.0", "chalk@^2.4.1", "chalk@^2.4.2": "integrity" "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==" "resolved" "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz" "version" "2.4.2" @@ -2232,9 +2175,9 @@ "supports-color" "^7.1.0" "chalk@^4.1.0": - "integrity" "sha512-qwx12AxXe2Q5xQ43Ac//I6v5aXTipYrSESdOgzrN+9XjgEpyjpKuvSGaN4qE93f7TQTlerQQ8S+EQ0EyDoVL1A==" - "resolved" "https://registry.npmjs.org/chalk/-/chalk-4.1.0.tgz" - "version" "4.1.0" + "integrity" "sha512-diHzdDKxcU+bAsUboHLPEDQiw0qEe0qd7SYUn3HgcFlWgbDcfLGswOHYeGrHKzG9z6UYf01d9VFMfZxPM1xZSg==" + "resolved" "https://registry.npmjs.org/chalk/-/chalk-4.1.1.tgz" + "version" "4.1.1" dependencies: "ansi-styles" "^4.1.0" "supports-color" "^7.1.0" @@ -2279,9 +2222,9 @@ "restore-cursor" "^3.1.0" "cli-spinners@^2.0.0": - "integrity" "sha512-PC+AmIuK04E6aeSs/pUccSujsTzBhu4HzC2dL+CfJB/Jcc2qTRbEwZQDfIUpt2Xl8BodYBEq8w4fc0kU2I9DjQ==" - "resolved" "https://registry.npmjs.org/cli-spinners/-/cli-spinners-2.5.0.tgz" - "version" "2.5.0" + "integrity" "sha512-t+4/y50K/+4xcCRosKkA7W4gTr1MySvLV0q+PxmG7FJ5g+66ChKurYjxBCjHggHH3HA5Hh9cy+lcUGWDqVH+4Q==" + "resolved" "https://registry.npmjs.org/cli-spinners/-/cli-spinners-2.6.0.tgz" + "version" "2.6.0" "cli-width@^2.0.0": "integrity" "sha512-GRMWDxpOB6Dgk2E5Uo+3eEBvtOOlimMmpbFiKuLFnQzYDavtLFY3K5ona41jgN/WdRZtG7utuVSVTL4HbZHGkw==" @@ -2311,6 +2254,15 @@ "strip-ansi" "^6.0.0" "wrap-ansi" "^6.2.0" +"clone-deep@^4.0.1": + "integrity" "sha512-neHB9xuzh/wk0dIHweyAXv2aPGZIVk3pLMe+/RNzINf17fe0OG96QroktYAUm7SM1PBnzTabaLboqqxDyMU+SQ==" + "resolved" "https://registry.npmjs.org/clone-deep/-/clone-deep-4.0.1.tgz" + "version" "4.0.1" + dependencies: + "is-plain-object" "^2.0.4" + "kind-of" "^6.0.2" + "shallow-clone" "^3.0.0" + "clone-response@^1.0.2": "integrity" "sha1-0dyXOSAxTfZ/vrlCI7TuNQI56Ws=" "resolved" "https://registry.npmjs.org/clone-response/-/clone-response-1.0.2.tgz" @@ -2341,14 +2293,7 @@ "map-visit" "^1.0.0" "object-visit" "^1.0.0" -"color-convert@^1.9.0": - "integrity" "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==" - "resolved" "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz" - "version" "1.9.3" - dependencies: - "color-name" "1.1.3" - -"color-convert@^1.9.1": +"color-convert@^1.9.0", "color-convert@^1.9.1": "integrity" "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==" "resolved" "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz" "version" "1.9.3" @@ -2362,20 +2307,20 @@ dependencies: "color-name" "~1.1.4" -"color-name@^1.0.0", "color-name@~1.1.4": - "integrity" "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" - "resolved" "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz" - "version" "1.1.4" - -"color-name@1.1.3": +"color-name@^1.0.0", "color-name@1.1.3": "integrity" "sha1-p9BVi9icQveV3UIyj3QIMcpTvCU=" "resolved" "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz" "version" "1.1.3" -"color-string@^1.5.2": - "integrity" "sha512-dC2C5qeWoYkxki5UAXapdjqO672AM4vZuPGRQfO8b5HKuKGBbKWpITyDYN7TOFKvRW7kOgAn3746clDBMDJyQw==" - "resolved" "https://registry.npmjs.org/color-string/-/color-string-1.5.3.tgz" - "version" "1.5.3" +"color-name@~1.1.4": + "integrity" "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" + "resolved" "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz" + "version" "1.1.4" + +"color-string@^1.5.4": + "integrity" "sha512-jgIoum0OfQfq9Whcfc2z/VhCNcmQjWbey6qBX0vqt7YICflUmBCh9E9CiQD5GSJ+Uehixm3NUwHVhqUAWRivZg==" + "resolved" "https://registry.npmjs.org/color-string/-/color-string-1.5.5.tgz" + "version" "1.5.5" dependencies: "color-name" "^1.0.0" "simple-swizzle" "^0.2.2" @@ -2385,18 +2330,18 @@ "resolved" "https://registry.npmjs.org/color-support/-/color-support-1.1.3.tgz" "version" "1.1.3" -"color@^3.1.0", "color@^3.1.2": - "integrity" "sha512-vXTJhHebByxZn3lDvDJYw4lR5+uB3vuoHsuYA5AKuxRVn5wzzIfQKGLBmgdVRHKTJYeK5rvJcHnrd0Li49CFpg==" - "resolved" "https://registry.npmjs.org/color/-/color-3.1.2.tgz" - "version" "3.1.2" +"color@^3.1.0", "color@^3.1.3": + "integrity" "sha512-xgXAcTHa2HeFCGLE9Xs/R82hujGtu9Jd9x4NW3T34+OMs7VoPsjwzRczKHvTAHeJwWFwX5j15+MgAppE8ztObQ==" + "resolved" "https://registry.npmjs.org/color/-/color-3.1.3.tgz" + "version" "3.1.3" dependencies: "color-convert" "^1.9.1" - "color-string" "^1.5.2" + "color-string" "^1.5.4" -"colorette@^1.0.7": - "integrity" "sha512-puCDz0CzydiSYOrnXpz/PKd69zRrribezjtE9yd4zvytoRc8+RY/KJPvtPFKZS3E3wP6neGyMe0vOTlHO5L3Pw==" - "resolved" "https://registry.npmjs.org/colorette/-/colorette-1.2.1.tgz" - "version" "1.2.1" +"colorette@^1.0.7", "colorette@^1.2.2": + "integrity" "sha512-MKGMzyfeuutC/ZJ1cba9NqcNpfeqMUcYmyF1ZFY6/Cn7CNSAKx6a+s48sqLqyAiZuaP2TcqMhoo+dlwFnVxT9w==" + "resolved" "https://registry.npmjs.org/colorette/-/colorette-1.2.2.tgz" + "version" "1.2.2" "combined-stream@^1.0.6", "combined-stream@~1.0.6": "integrity" "sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==" @@ -2488,9 +2433,9 @@ "utils-merge" "1.0.1" "convert-source-map@^1.4.0", "convert-source-map@^1.6.0", "convert-source-map@^1.7.0": - "integrity" "sha512-4FJkXzKXEDB1snCFZlLP4gpC3JILicCpGbzG9f9G7tGqGCzETQ2hWPrcinA9oU4wtf2biUaEH5065UnMeR33oA==" - "resolved" "https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.7.0.tgz" - "version" "1.7.0" + "integrity" "sha512-+OQdjP49zViI/6i7nIJpA8rAl4sV/JdPfU9nZs3VqOwGIgizICvuN2ru6fMd+4llL0tar18UYJXfZ/TWtmhUjA==" + "resolved" "https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.8.0.tgz" + "version" "1.8.0" dependencies: "safe-buffer" "~5.1.1" @@ -2499,15 +2444,23 @@ "resolved" "https://registry.npmjs.org/copy-descriptor/-/copy-descriptor-0.1.1.tgz" "version" "0.1.1" -"core-js-pure@^3.0.0": - "integrity" "sha512-lacdXOimsiD0QyNf9BC/mxivNJ/ybBGJXQFKzRekp1WTHoVUWsUHEn+2T8GJAzzIhyOuXA+gOxCVN3l+5PLPUA==" - "resolved" "https://registry.npmjs.org/core-js-pure/-/core-js-pure-3.6.5.tgz" - "version" "3.6.5" +"core-js-compat@^3.14.0": + "integrity" "sha512-xGhzYMX6y7oEGQGAJmP2TmtBLvR4nZmRGEcFa3ubHOq5YEp51gGN9AovVa0AoujGZIq+Wm6dISiYyGNfdflYww==" + "resolved" "https://registry.npmjs.org/core-js-compat/-/core-js-compat-3.15.1.tgz" + "version" "3.15.1" + dependencies: + "browserslist" "^4.16.6" + "semver" "7.0.0" -"core-js@^2.2.2", "core-js@^2.4.1": - "integrity" "sha512-5wjnpaT/3dV+XB4borEsnAYQchn00XSgTAWKDkEqv+K8KevjbzmofK6hfJ9TZIlpj2N0xQpazy7PiRQiWHqzWg==" - "resolved" "https://registry.npmjs.org/core-js/-/core-js-2.6.11.tgz" - "version" "2.6.11" +"core-js-pure@^3.15.0": + "integrity" "sha512-OZuWHDlYcIda8sJLY4Ec6nWq2hRjlyCqCZ+jCflyleMkVt3tPedDVErvHslyS2nbO+SlBFMSBJYvtLMwxnrzjA==" + "resolved" "https://registry.npmjs.org/core-js-pure/-/core-js-pure-3.15.1.tgz" + "version" "3.15.1" + +"core-js@^2.4.1": + "integrity" "sha512-Kb2wC0fvsWfQrgk8HU5lW6U/Lcs8+9aaYcy4ZFc6DDlo4nZ7n70dEgE5rtR0oG6ufKDUnrwfWL1mXR5ljDatrQ==" + "resolved" "https://registry.npmjs.org/core-js/-/core-js-2.6.12.tgz" + "version" "2.6.12" "core-util-is@~1.0.0", "core-util-is@1.0.2": "integrity" "sha1-tf1UIgqivFq1eqtxQMlAdUUDwac=" @@ -2590,9 +2543,9 @@ "cssom" "~0.3.6" "csstype@^3.0.2": - "integrity" "sha512-ofovWglpqoqbfLNOTBNZLSbMuGrblAf1efvvArGKOZMBrIoJeu5UsAipQolkijtyQx5MtAzT/J9IHj/CEY1mJw==" - "resolved" "https://registry.npmjs.org/csstype/-/csstype-3.0.2.tgz" - "version" "3.0.2" + "integrity" "sha512-jXKhWqXPmlUeoQnF/EhTtTl4C9SnrxSH/jZUih3jmO6lBKr99rP3/+FmrMj4EFpOXzMtXHAZkd3x0E6h6Fgflw==" + "resolved" "https://registry.npmjs.org/csstype/-/csstype-3.0.8.tgz" + "version" "3.0.8" "dashdash@^1.12.0": "integrity" "sha1-hTz6D3y+L+1d4gMmuN1YEDX24vA=" @@ -2611,37 +2564,37 @@ "whatwg-url" "^7.0.0" "dayjs@^1.8.15": - "integrity" "sha512-IC877KBdMhBrCfBfJXHQlo0G8keZ0Opy7YIIq5QKtUbCuHMzim8S4PyiVK4YmihI3iOF9lhfUBW4AQWHTR5WHA==" - "resolved" "https://registry.npmjs.org/dayjs/-/dayjs-1.9.7.tgz" - "version" "1.9.7" + "integrity" "sha512-BUFis41ikLz+65iH6LHQCDm4YPMj5r1YFLdupPIyM4SGcXMmtiLQ7U37i+hGS8urIuqe7I/ou3IS1jVc4nbN4g==" + "resolved" "https://registry.npmjs.org/dayjs/-/dayjs-1.10.5.tgz" + "version" "1.10.5" -"debug@^2.2.0", "debug@^2.3.3", "debug@2.6.9": +"debug@^2.2.0": "integrity" "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==" "resolved" "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz" "version" "2.6.9" dependencies: "ms" "2.0.0" -"debug@^4.0.1": - "integrity" "sha512-pYAIzeRo8J6KPEaJ0VWOh5Pzkbw/RetuzehGM7QRRX5he4fPHx2rdKMB256ehJCkX+XRQm16eZLqLNS8RSZXZw==" - "resolved" "https://registry.npmjs.org/debug/-/debug-4.1.1.tgz" - "version" "4.1.1" +"debug@^2.3.3": + "integrity" "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==" + "resolved" "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz" + "version" "2.6.9" dependencies: - "ms" "^2.1.1" + "ms" "2.0.0" -"debug@^4.1.0": - "integrity" "sha512-pYAIzeRo8J6KPEaJ0VWOh5Pzkbw/RetuzehGM7QRRX5he4fPHx2rdKMB256ehJCkX+XRQm16eZLqLNS8RSZXZw==" - "resolved" "https://registry.npmjs.org/debug/-/debug-4.1.1.tgz" - "version" "4.1.1" +"debug@^4.0.1", "debug@^4.1.0", "debug@^4.1.1": + "integrity" "sha512-doEwdvm4PCeK4K3RQN2ZC2BYUBaxwLARCqZmMjtF8a51J2Rb0xpVloFRnCODwqjpwnAoao4pelN8l3RJdv3gRQ==" + "resolved" "https://registry.npmjs.org/debug/-/debug-4.3.1.tgz" + "version" "4.3.1" dependencies: - "ms" "^2.1.1" + "ms" "2.1.2" -"debug@^4.1.1": - "integrity" "sha512-pYAIzeRo8J6KPEaJ0VWOh5Pzkbw/RetuzehGM7QRRX5he4fPHx2rdKMB256ehJCkX+XRQm16eZLqLNS8RSZXZw==" - "resolved" "https://registry.npmjs.org/debug/-/debug-4.1.1.tgz" - "version" "4.1.1" +"debug@2.6.9": + "integrity" "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==" + "resolved" "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz" + "version" "2.6.9" dependencies: - "ms" "^2.1.1" + "ms" "2.0.0" "decamelize@^1.2.0": "integrity" "sha1-9lNNFRSCabIDUue+4m9QH5oZEpA=" @@ -2679,7 +2632,7 @@ "resolved" "https://registry.npmjs.org/deep-is/-/deep-is-0.1.3.tgz" "version" "0.1.3" -"deepmerge@^3.1.0", "deepmerge@^3.2.0": +"deepmerge@^3.2.0": "integrity" "sha512-GRQOafGHwMHpjPx9iCvTgpu9NojZ49q794EEL94JVEw6VaeA8XTUyBKvAkOOjBX9oJNiV6G3P+T+tihFjo2TqA==" "resolved" "https://registry.npmjs.org/deepmerge/-/deepmerge-3.3.0.tgz" "version" "3.3.0" @@ -2702,11 +2655,11 @@ "version" "1.1.3" "defer-to-connect@^2.0.0": - "integrity" "sha512-bYL2d05vOSf1JEZNx5vSAtPuBMkX8K9EUutg7zlKvTqKXHt7RhWJFbmd7qakVuf13i+IkGmp6FwSsONOf6VYIg==" - "resolved" "https://registry.npmjs.org/defer-to-connect/-/defer-to-connect-2.0.0.tgz" - "version" "2.0.0" + "integrity" "sha512-4tvttepXG1VaYGrRibk5EwJd1t4udunSOVMdLSAL6mId1ix438oPwPZMALY41FCijukO1L0twNcGsdzS7dHgDg==" + "resolved" "https://registry.npmjs.org/defer-to-connect/-/defer-to-connect-2.0.1.tgz" + "version" "2.0.1" -"define-properties@^1.1.2", "define-properties@^1.1.3": +"define-properties@^1.1.3": "integrity" "sha512-3MqfYKj2lLzdMSf8ZIZE/V+Zuy+BgD6f164e8K2w7dgnpKArBDerGYpM46IYYcjnkdPNMjPk9A6VFB8+3SKlXQ==" "resolved" "https://registry.npmjs.org/define-properties/-/define-properties-1.1.3.tgz" "version" "1.1.3" @@ -2811,6 +2764,11 @@ "resolved" "https://registry.npmjs.org/ee-first/-/ee-first-1.1.1.tgz" "version" "1.1.1" +"electron-to-chromium@^1.3.723": + "integrity" "sha512-nM76xH0t2FBH5iMEZDVc3S/qbdKjGH7TThezxC8k1Q7w7WHvIAyJh8lAe2UamGfdRqBTjHfPDn82LJ0ksCiB9g==" + "resolved" "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.3.759.tgz" + "version" "1.3.759" + "emoji-regex@^7.0.1": "integrity" "sha512-CwBLREIQ7LvYFB0WyRvwhq5N5qPhc6PMjD6bYggFlI5YyDgl+0vxq5VHbMOFqLg7hfWzmu8T5Z1QofhmTIhItA==" "resolved" "https://registry.npmjs.org/emoji-regex/-/emoji-regex-7.0.3.tgz" @@ -2841,9 +2799,9 @@ "once" "^1.4.0" "envinfo@^7.7.2": - "integrity" "sha512-46+j5QxbPWza0PB1i15nZx0xQ4I/EfQxg9J8Had3b408SV63nEtor2e+oiY63amTo9KTuh2a3XLObNwduxYwwA==" - "resolved" "https://registry.npmjs.org/envinfo/-/envinfo-7.7.3.tgz" - "version" "7.7.3" + "integrity" "sha512-/o+BXHmB7ocbHEAs6F2EnG0ogybVVUdkRunTT2glZU9XAaGmhqskrvKwqXuDfNjEO0LZKWdejEEpnq8aM0tOaw==" + "resolved" "https://registry.npmjs.org/envinfo/-/envinfo-7.8.1.tgz" + "version" "7.8.1" "error-ex@^1.3.1": "integrity" "sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==" @@ -2852,6 +2810,13 @@ dependencies: "is-arrayish" "^0.2.1" +"error-stack-parser@^2.0.6": + "integrity" "sha512-d51brTeqC+BHlwF0BhPtcYgF5nlzf9ZZ0ZIUQNZpc9ZB9qw5IJ2diTrBY9jlCJkTLITYPjmiX6OWCwH+fuyNgQ==" + "resolved" "https://registry.npmjs.org/error-stack-parser/-/error-stack-parser-2.0.6.tgz" + "version" "2.0.6" + dependencies: + "stackframe" "^1.1.1" + "errorhandler@^1.5.0": "integrity" "sha512-rcOwbfvP1WTViVoUjcfZicVzjhjTuhSMntHh6mW3IrEiyE6mJyXvsToJUJGlGlw/2xU9P5whlWNGlIDVeCiT4A==" "resolved" "https://registry.npmjs.org/errorhandler/-/errorhandler-1.5.1.tgz" @@ -2860,22 +2825,27 @@ "accepts" "~1.3.7" "escape-html" "~1.0.3" -"es-abstract@^1.17.0", "es-abstract@^1.17.0-next.1", "es-abstract@^1.17.5": - "integrity" "sha512-Fr89bON3WFyUi5EvAeI48QTWX0AyekGgLA8H+c+7fbfCkJwRWRMLd8CQedNEyJuoYYhmtEqY92pgte1FAhBlhw==" - "resolved" "https://registry.npmjs.org/es-abstract/-/es-abstract-1.17.6.tgz" - "version" "1.17.6" +"es-abstract@^1.18.0-next.2", "es-abstract@^1.18.2": + "integrity" "sha512-nQIr12dxV7SSxE6r6f1l3DtAeEYdsGpps13dR0TwJg1S8gyp4ZPgy3FZcHBgbiQqnoqSTb+oC+kO4UQ0C/J8vw==" + "resolved" "https://registry.npmjs.org/es-abstract/-/es-abstract-1.18.3.tgz" + "version" "1.18.3" dependencies: + "call-bind" "^1.0.2" "es-to-primitive" "^1.2.1" "function-bind" "^1.1.1" + "get-intrinsic" "^1.1.1" "has" "^1.0.3" - "has-symbols" "^1.0.1" - "is-callable" "^1.2.0" - "is-regex" "^1.1.0" - "object-inspect" "^1.7.0" + "has-symbols" "^1.0.2" + "is-callable" "^1.2.3" + "is-negative-zero" "^2.0.1" + "is-regex" "^1.1.3" + "is-string" "^1.0.6" + "object-inspect" "^1.10.3" "object-keys" "^1.1.1" - "object.assign" "^4.1.0" - "string.prototype.trimend" "^1.0.1" - "string.prototype.trimstart" "^1.0.1" + "object.assign" "^4.1.2" + "string.prototype.trimend" "^1.0.4" + "string.prototype.trimstart" "^1.0.4" + "unbox-primitive" "^1.0.1" "es-to-primitive@^1.2.1": "integrity" "sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==" @@ -2886,6 +2856,11 @@ "is-date-object" "^1.0.1" "is-symbol" "^1.0.2" +"escalade@^3.1.1": + "integrity" "sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==" + "resolved" "https://registry.npmjs.org/escalade/-/escalade-3.1.1.tgz" + "version" "3.1.1" + "escape-html@~1.0.3": "integrity" "sha1-Aljq5NPQwJdN4cFpGI7wBR0dGYg=" "resolved" "https://registry.npmjs.org/escape-html/-/escape-html-1.0.3.tgz" @@ -2896,6 +2871,11 @@ "resolved" "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz" "version" "1.0.5" +"escape-string-regexp@^2.0.0": + "integrity" "sha512-UpzcLCXolUWcNu5HtVMHYdXJjArjsF9C0aNnquZYY4uW/Vu0miy5YoWvbV345HauVvcAUnpRuhMMcqTcGOY2+w==" + "resolved" "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-2.0.0.tgz" + "version" "2.0.0" + "escape-string-regexp@^4.0.0": "integrity" "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==" "resolved" "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz" @@ -2919,9 +2899,9 @@ "source-map" "~0.6.1" "eslint-config-prettier@^6.10.1": - "integrity" "sha512-oB8cpLWSAjOVFEJhhyMZh6NOEOtBVziaqdDQ86+qhDHFbZXoRTM7pNSvFRfW/W/L/LrQ38C99J5CGuRBBzBsdA==" - "resolved" "https://registry.npmjs.org/eslint-config-prettier/-/eslint-config-prettier-6.11.0.tgz" - "version" "6.11.0" + "integrity" "sha512-a1+kOYLR8wMGustcgAjdydMsQ2A/2ipRPwRKUmfYaSxc9ZPcrku080Ctl6zrZzZNs/U82MjSv+qKREkoq3bJaw==" + "resolved" "https://registry.npmjs.org/eslint-config-prettier/-/eslint-config-prettier-6.15.0.tgz" + "version" "6.15.0" dependencies: "get-stdin" "^6.0.0" @@ -2988,11 +2968,11 @@ "xregexp" "^4.3.0" "eslint-scope@^5.0.0": - "integrity" "sha512-iiGRvtxWqgtx5m8EyQUJihBloE4EnYeGE/bz1wSPwJE6tZuJUtHlhqDM4Xj2ukE8Dyy1+HCZ4hE0fzIVMzb58w==" - "resolved" "https://registry.npmjs.org/eslint-scope/-/eslint-scope-5.1.0.tgz" - "version" "5.1.0" + "integrity" "sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw==" + "resolved" "https://registry.npmjs.org/eslint-scope/-/eslint-scope-5.1.1.tgz" + "version" "5.1.1" dependencies: - "esrecurse" "^4.1.0" + "esrecurse" "^4.3.0" "estraverse" "^4.1.1" "eslint-utils@^1.4.3": @@ -3072,20 +3052,20 @@ "version" "4.0.1" "esquery@^1.0.1": - "integrity" "sha512-olpvt9QG0vniUBZspVRN6lwB7hOZoTRtT+jzR+tS4ffYx2mzbw+z0XCOk44aaLYKApNX5nMm+E+P6o25ip/DHQ==" - "resolved" "https://registry.npmjs.org/esquery/-/esquery-1.3.1.tgz" - "version" "1.3.1" + "integrity" "sha512-cCDispWt5vHHtwMY2YrAQ4ibFkAL8RbH5YGBnZBc90MolvvfkkQcJro/aZiAQUlQ3qgrYS6D6v8Gc5G5CQsc9w==" + "resolved" "https://registry.npmjs.org/esquery/-/esquery-1.4.0.tgz" + "version" "1.4.0" dependencies: "estraverse" "^5.1.0" -"esrecurse@^4.1.0": - "integrity" "sha512-64RBB++fIOAXPw3P9cy89qfMlvZEXZkqqJkjqqXIvzP5ezRZjW+lPWjw35UX/3EhUPFYbg5ER4JYgDw4007/DQ==" - "resolved" "https://registry.npmjs.org/esrecurse/-/esrecurse-4.2.1.tgz" - "version" "4.2.1" +"esrecurse@^4.3.0": + "integrity" "sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==" + "resolved" "https://registry.npmjs.org/esrecurse/-/esrecurse-4.3.0.tgz" + "version" "4.3.0" dependencies: - "estraverse" "^4.1.0" + "estraverse" "^5.2.0" -"estraverse@^4.1.0", "estraverse@^4.1.1", "estraverse@^4.2.0": +"estraverse@^4.1.1", "estraverse@^4.2.0": "integrity" "sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==" "resolved" "https://registry.npmjs.org/estraverse/-/estraverse-4.3.0.tgz" "version" "4.3.0" @@ -3095,6 +3075,11 @@ "resolved" "https://registry.npmjs.org/estraverse/-/estraverse-5.2.0.tgz" "version" "5.2.0" +"estraverse@^5.2.0": + "integrity" "sha512-BxbNGGNm0RyRYvUdHpIwv9IWzeM9XClbOxwoATuFdOE7ZE6wHL+HQ5T8hoPM+zHvmKzzsEqhgy0GrQ5X13afiQ==" + "resolved" "https://registry.npmjs.org/estraverse/-/estraverse-5.2.0.tgz" + "version" "5.2.0" + "esutils@^2.0.2": "integrity" "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==" "resolved" "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz" @@ -3116,14 +3101,14 @@ "version" "3.1.2" "events@^3.2.0": - "integrity" "sha512-/46HWwbfCX2xTawVfkKLGxMifJYQBWMwY1mjywRtb4c9x8l5NP3KoJtnIOiL1hfdRkIuYhETxQlo62IF8tcnlg==" - "resolved" "https://registry.npmjs.org/events/-/events-3.2.0.tgz" - "version" "3.2.0" + "integrity" "sha512-mQw+2fkQbALzQ7V0MY0IqdnXNOeTtP4r0lN9z7AAawCXgqea7bDii20AYrIBrFd/Hx0M2Ocz6S111CaFkUcb0Q==" + "resolved" "https://registry.npmjs.org/events/-/events-3.3.0.tgz" + "version" "3.3.0" "exec-sh@^0.3.2": - "integrity" "sha512-sEFIkc61v75sWeOe72qyrqg2Qg0OuLESziUDk/O/z2qgS15y2gWVFrI6f2Qn/qw/0/NCfCEsmNA4zOjkwEZT1A==" - "resolved" "https://registry.npmjs.org/exec-sh/-/exec-sh-0.3.4.tgz" - "version" "0.3.4" + "integrity" "sha512-nQn+hI3yp+oD0huYhKwvYI32+JFeq+XkNcD1GAo3Y/MjxsfVGmrrzrnzjWiNY6f+pUCP440fThsFh5gZrRAU/w==" + "resolved" "https://registry.npmjs.org/exec-sh/-/exec-sh-0.3.6.tgz" + "version" "0.3.6" "execa@^1.0.0": "integrity" "sha512-adbxcyWV46qiHyvSp50TKt05tB4tK3HcmF7/nxfAdhnox83seTDbwnaqKO4sXRy7roHAIFqJP/Rw/AuEbX61LA==" @@ -3198,7 +3183,15 @@ dependencies: "is-extendable" "^0.1.0" -"extend-shallow@^3.0.0", "extend-shallow@^3.0.2": +"extend-shallow@^3.0.0": + "integrity" "sha1-Jqcarwc7OfshJxcnRhMcJwQCjbg=" + "resolved" "https://registry.npmjs.org/extend-shallow/-/extend-shallow-3.0.2.tgz" + "version" "3.0.2" + dependencies: + "assign-symbols" "^1.0.0" + "is-extendable" "^1.0.1" + +"extend-shallow@^3.0.2": "integrity" "sha1-Jqcarwc7OfshJxcnRhMcJwQCjbg=" "resolved" "https://registry.npmjs.org/extend-shallow/-/extend-shallow-3.0.2.tgz" "version" "3.0.2" @@ -3433,9 +3426,9 @@ "version" "2.0.2" "follow-redirects@^1.10.0": - "integrity" "sha512-SSG5xmZh1mkPGyKzjZP8zLjltIfpW32Y5QpdNJyjcfGxK3qo3NDDkZOZSFiGn1A6SclQxY9GzEwAHQ3dmYRWpg==" - "resolved" "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.13.1.tgz" - "version" "1.13.1" + "integrity" "sha512-HWqDgT7ZEkqRzBvc2s64vSZ/hfOceEol3ac/7tKwzuvEyWx3/4UegXh5oBOIotkGsObyk3xznnSRVADBgWSQVg==" + "resolved" "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.14.1.tgz" + "version" "1.14.1" "for-in@^1.0.2": "integrity" "sha1-gQaNKVqBQuwKxybG4iAMMPttXoA=" @@ -3500,9 +3493,9 @@ "nan" "^2.12.1" "fsevents@^2.1.2": - "integrity" "sha512-Auw9a4AxqWpa9GUfj370BMPzzyncfBABW8Mab7BGWBYDj4Isgq+cDKtx0i6u9jcX9pQDnswsaaOTgTmA5pEjuQ==" - "resolved" "https://registry.npmjs.org/fsevents/-/fsevents-2.1.3.tgz" - "version" "2.1.3" + "integrity" "sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA==" + "resolved" "https://registry.npmjs.org/fsevents/-/fsevents-2.3.2.tgz" + "version" "2.3.2" "function-bind@^1.1.1": "integrity" "sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==" @@ -3515,15 +3508,24 @@ "version" "1.0.1" "gensync@^1.0.0-beta.1": - "integrity" "sha512-r8EC6NO1sngH/zdD9fiRDLdcgnbayXah+mLgManTaIZJqEC1MZstmnox8KpnI2/fxQwrp5OpCOYWLp4rBl4Jcg==" - "resolved" "https://registry.npmjs.org/gensync/-/gensync-1.0.0-beta.1.tgz" - "version" "1.0.0-beta.1" + "integrity" "sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==" + "resolved" "https://registry.npmjs.org/gensync/-/gensync-1.0.0-beta.2.tgz" + "version" "1.0.0-beta.2" "get-caller-file@^2.0.1": "integrity" "sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==" "resolved" "https://registry.npmjs.org/get-caller-file/-/get-caller-file-2.0.5.tgz" "version" "2.0.5" +"get-intrinsic@^1.0.2", "get-intrinsic@^1.1.0", "get-intrinsic@^1.1.1": + "integrity" "sha512-kWZrnVM42QCiEA2Ig1bG8zjoIMOgxWwYCEeNdwY6Tv/cOSeGpcoX4pXHfKUxNKVoArnrEr2e9srnAxxGIraS9Q==" + "resolved" "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.1.1.tgz" + "version" "1.1.1" + dependencies: + "function-bind" "^1.1.1" + "has" "^1.0.3" + "has-symbols" "^1.0.1" + "get-package-type@^0.1.0": "integrity" "sha512-pjzuKtY64GYfWizNAJ0fr9VqttZkNiK2iS430LtIHzjBEr6bX8Am2zm4sW4Ro5wjWW5cAlRL1qAMTcXbjNAO2Q==" "resolved" "https://registry.npmjs.org/get-package-type/-/get-package-type-0.1.0.tgz" @@ -3539,21 +3541,21 @@ "resolved" "https://registry.npmjs.org/get-stream/-/get-stream-3.0.0.tgz" "version" "3.0.0" -"get-stream@^4.0.0", "get-stream@^4.1.0": +"get-stream@^4.0.0": "integrity" "sha512-GMat4EJ5161kIy2HevLlr4luNjBgvmj413KaQA7jt4V8B4RDsfpHk7WQ9GVqfYyyx8OS/L66Kox+rJRNklLK7w==" "resolved" "https://registry.npmjs.org/get-stream/-/get-stream-4.1.0.tgz" "version" "4.1.0" dependencies: "pump" "^3.0.0" -"get-stream@^5.0.0": - "integrity" "sha512-EXr1FOzrzTfGeL0gQdeFEvOMm2mzMOglyiOXSTpPC+iAjAKftbr3jpCMWynogwYnM+eSj9sHGc6wjIcDvYiygw==" - "resolved" "https://registry.npmjs.org/get-stream/-/get-stream-5.1.0.tgz" - "version" "5.1.0" +"get-stream@^4.1.0": + "integrity" "sha512-GMat4EJ5161kIy2HevLlr4luNjBgvmj413KaQA7jt4V8B4RDsfpHk7WQ9GVqfYyyx8OS/L66Kox+rJRNklLK7w==" + "resolved" "https://registry.npmjs.org/get-stream/-/get-stream-4.1.0.tgz" + "version" "4.1.0" dependencies: "pump" "^3.0.0" -"get-stream@^5.1.0": +"get-stream@^5.0.0", "get-stream@^5.1.0": "integrity" "sha512-nBF+F1rAZVCu/p7rjzgA+Yb4lfYXrpl7a6VmJrU8wF9I1CKvP/QwPNZHnOlwbTkY6dvtFIzFMSyQXbLoTQPRpA==" "resolved" "https://registry.npmjs.org/get-stream/-/get-stream-5.2.0.tgz" "version" "5.2.0" @@ -3573,16 +3575,16 @@ "assert-plus" "^1.0.0" "glob-parent@^5.0.0": - "integrity" "sha512-FnI+VGOpnlGHWZxthPGR+QhR78fuiK0sNLkHQv+bL9fQi57lNNdquIbna/WrfROrolq8GK5Ek6BiMwqL/voRYQ==" - "resolved" "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.1.tgz" - "version" "5.1.1" + "integrity" "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==" + "resolved" "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz" + "version" "5.1.2" dependencies: "is-glob" "^4.0.1" "glob@^7.1.1", "glob@^7.1.2", "glob@^7.1.3", "glob@^7.1.4", "glob@^7.1.6": - "integrity" "sha512-LwaxwyZ72Lk7vZINtNNrywX0ZuLyStrdDtabefZKAY5ZGJhVtgdznluResxNmPitE0SAO+O26sWTHeKSI2wMBA==" - "resolved" "https://registry.npmjs.org/glob/-/glob-7.1.6.tgz" - "version" "7.1.6" + "integrity" "sha512-OvD9ENzPLbegENnYP5UUfJIirTg4+XwMWGaQfQTY0JenxNvvIKP3U3/tAQSPIu/lHxXYSZmpXlUHeqAIdKzBLQ==" + "resolved" "https://registry.npmjs.org/glob/-/glob-7.1.7.tgz" + "version" "7.1.7" dependencies: "fs.realpath" "^1.0.0" "inflight" "^1.0.4" @@ -3604,9 +3606,9 @@ "type-fest" "^0.8.1" "got@^11.8.1": - "integrity" "sha512-9aYdZL+6nHmvJwHALLwKSUZ0hMwGaJGYv3hoPLPgnT8BoBXm1SjnZeky+91tfwJaDzun2s4RsBRy48IEYv2q2Q==" - "resolved" "https://registry.npmjs.org/got/-/got-11.8.1.tgz" - "version" "11.8.1" + "integrity" "sha512-D0QywKgIe30ODs+fm8wMZiAcZjypcCodPNuMz5H9Mny7RJ+IjJ10BdmGW7OM7fHXP+O7r6ZwapQ/YQmMSvB0UQ==" + "resolved" "https://registry.npmjs.org/got/-/got-11.8.2.tgz" + "version" "11.8.2" dependencies: "@sindresorhus/is" "^4.0.0" "@szmarczak/http-timer" "^4.0.5" @@ -3654,10 +3656,10 @@ "to-readable-stream" "^1.0.0" "url-parse-lax" "^3.0.0" -"graceful-fs@^4.1.11", "graceful-fs@^4.1.15", "graceful-fs@^4.1.2", "graceful-fs@^4.1.3", "graceful-fs@^4.1.6", "graceful-fs@^4.1.9", "graceful-fs@^4.2.0", "graceful-fs@^4.2.4": - "integrity" "sha512-WjKPNJF79dtJAVniUlGGWHYGz2jWxT6VhN/4m1NdkbZ2nOsEF+cI1Edgql5zCRhs/VsQYRvrXctxktVXZUkixw==" - "resolved" "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.4.tgz" - "version" "4.2.4" +"graceful-fs@^4.1.15", "graceful-fs@^4.1.2", "graceful-fs@^4.1.3", "graceful-fs@^4.1.6", "graceful-fs@^4.1.9", "graceful-fs@^4.2.0", "graceful-fs@^4.2.4": + "integrity" "sha512-nTnJ528pbqxYanhpDYsi4Rd8MAeaBA67+RZ10CM1m3bTAVFEDcd5AuA4a6W5YkGZ1iNXHzZz8T6TBKLeBuNriQ==" + "resolved" "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.6.tgz" + "version" "4.2.6" "growly@^1.3.0": "integrity" "sha1-8QdIy+dq+WS3yWyTxrzCivEgwIE=" @@ -3677,6 +3679,11 @@ "ajv" "^6.12.3" "har-schema" "^2.0.0" +"has-bigints@^1.0.1": + "integrity" "sha512-LSBS2LjbNBTf6287JEbEzvJgftkF5qFkmCo9hDRpAzKhUOlJ+hx8dd4USs00SgsUNwc4617J9ki5YtEClM2ffA==" + "resolved" "https://registry.npmjs.org/has-bigints/-/has-bigints-1.0.1.tgz" + "version" "1.0.1" + "has-flag@^3.0.0": "integrity" "sha1-tdRU3CGZriJWmfNGfloH87lVuv0=" "resolved" "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz" @@ -3687,10 +3694,10 @@ "resolved" "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz" "version" "4.0.0" -"has-symbols@^1.0.0", "has-symbols@^1.0.1": - "integrity" "sha512-PLcsoqu++dmEIZB+6totNFKq/7Do+Z0u4oT0zKOJNl3lYK6vGwwu2hjHs+68OEZbTjiUE9bgOABXbP/GvrS0Kg==" - "resolved" "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.1.tgz" - "version" "1.0.1" +"has-symbols@^1.0.1", "has-symbols@^1.0.2": + "integrity" "sha512-chXa79rL/UC2KlX17jo3vRGz0azaWEx5tGqZg5pO3NUyEJVB17dMruQlzCCOfUvElghKcm5194+BCRvi2Rv/Gw==" + "resolved" "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.2.tgz" + "version" "1.0.2" "has-value@^0.3.1": "integrity" "sha1-ex9YutpiyoJ+wKIHgCVlSEWZXh8=" @@ -3750,9 +3757,9 @@ "react-is" "^16.7.0" "hosted-git-info@^2.1.4": - "integrity" "sha512-f/wzC2QaWBs7t9IYqB4T3sR1xviIViXJRJTWBlx2Gf3g0Xi5vI7Yy4koXQ1c9OYDGHN9sBy1DQ2AB8fqZBWhUg==" - "resolved" "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-2.8.8.tgz" - "version" "2.8.8" + "integrity" "sha512-mxIDAb9Lsm6DoOJ7xH+5+X4y1LU/4Hi50L9C5sIswK3JzULS4bwk1FvjdBgvYR4bzT4tuUQiC15FE2f5HbLvYw==" + "resolved" "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-2.8.9.tgz" + "version" "2.8.9" "html-encoding-sniffer@^1.0.2": "integrity" "sha512-71lZziiDnsuabfdYiUeWdCVyKuqwWi23L8YeIgV9jSSZHCtb6wB1BKWooH7L3tn4/FuZJMVWyNaIDr4RGmaSYw==" @@ -3766,6 +3773,13 @@ "resolved" "https://registry.npmjs.org/html-escaper/-/html-escaper-2.0.2.tgz" "version" "2.0.2" +"html-parse-stringify@^3.0.1": + "integrity" "sha512-KknJ50kTInJ7qIScF3jeaFRpMpE8/lfiTdzf/twXyPBLAGrLRTmkz3AdTnKeh40X8k9L2fdYwEp/42WGXIRGcg==" + "resolved" "https://registry.npmjs.org/html-parse-stringify/-/html-parse-stringify-3.0.1.tgz" + "version" "3.0.1" + dependencies: + "void-elements" "3.1.0" + "http-cache-semantics@^4.0.0": "integrity" "sha512-carPklcUh7ROWRK7Cv27RPtdhYhUsela/ue5/jKzjegVvXDqM2ILE9Q2BGn9JZJh1g87cp56su/FgQSzcWS8cQ==" "resolved" "https://registry.npmjs.org/http-cache-semantics/-/http-cache-semantics-4.1.0.tgz" @@ -3792,9 +3806,9 @@ "sshpk" "^1.7.0" "http2-wrapper@^1.0.0-beta.5.2": - "integrity" "sha512-xYz9goEyBnC8XwXDTuC/MZ6t+MrKVQZOk4s7+PaDkwIsQd8IwqvM+0M6bA/2lvG8GHXcPdf+MejTUeO2LCPCeQ==" - "resolved" "https://registry.npmjs.org/http2-wrapper/-/http2-wrapper-1.0.0-beta.5.2.tgz" - "version" "1.0.0-beta.5.2" + "integrity" "sha512-V+23sDMr12Wnz7iTcDeJr3O6AIxlnvT/bmaAAAP/Xda35C90p9599p0F1eHR/N1KILWSoWVAiOMFjBBXaXSMxg==" + "resolved" "https://registry.npmjs.org/http2-wrapper/-/http2-wrapper-1.0.3.tgz" + "version" "1.0.3" dependencies: "quick-lru" "^5.1.1" "resolve-alpn" "^1.0.0" @@ -3804,6 +3818,18 @@ "resolved" "https://registry.npmjs.org/human-signals/-/human-signals-1.1.1.tgz" "version" "1.1.1" +"i18n-js@^3.8.0": + "integrity" "sha512-hDsGgPuvw/2P+lXSbOafAwspK8Ste8YrwuuUg17W3wEcO1JkQxBlPgsN1t2+852nTnz4YSYTjZc/1nAA2PC/nw==" + "resolved" "https://registry.npmjs.org/i18n-js/-/i18n-js-3.8.0.tgz" + "version" "3.8.0" + +"i18next@^20.3.3": + "integrity" "sha512-tx9EUhHeaipvZ5pFLTaN9Xdm5Ssal774MpujaTA1Wv/ST/1My5SnoBmliY1lOpyEP5Z51Dq1gXifk/y4Yt3agQ==" + "resolved" "https://registry.npmjs.org/i18next/-/i18next-20.3.3.tgz" + "version" "20.3.3" + dependencies: + "@babel/runtime" "^7.12.0" + "iconv-lite@^0.4.17", "iconv-lite@^0.4.24", "iconv-lite@0.4.24": "integrity" "sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==" "resolved" "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz" @@ -3812,9 +3838,9 @@ "safer-buffer" ">= 2.1.2 < 3" "iconv-lite@^0.6.2": - "integrity" "sha512-2y91h5OpQlolefMPmUlivelittSWy0rP+oYVpn6A7GwVHNE8AWzoYOBNmlwks3LobaJxgHCYZAnyNo2GgpNRNQ==" - "resolved" "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.6.2.tgz" - "version" "0.6.2" + "integrity" "sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw==" + "resolved" "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.6.3.tgz" + "version" "0.6.3" dependencies: "safer-buffer" ">= 2.1.2 < 3.0.0" @@ -3842,9 +3868,9 @@ "resolve-from" "^3.0.0" "import-fresh@^3.0.0": - "integrity" "sha512-6e1q1cnWP2RXD9/keSkxHScg508CdXqXWgWBaETNhyuBFz+kUZlKboh+ISK+bU++DmbHimVBrOz/zzPe0sZ3sQ==" - "resolved" "https://registry.npmjs.org/import-fresh/-/import-fresh-3.2.1.tgz" - "version" "3.2.1" + "integrity" "sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==" + "resolved" "https://registry.npmjs.org/import-fresh/-/import-fresh-3.3.0.tgz" + "version" "3.3.0" dependencies: "parent-module" "^1.0.0" "resolve-from" "^4.0.0" @@ -3914,14 +3940,14 @@ "strip-ansi" "^6.0.0" "through" "^2.3.6" -"internal-slot@^1.0.2": - "integrity" "sha512-2cQNfwhAfJIkU4KZPkDI+Gj5yNNnbqi40W9Gge6dfnk4TocEVm00B3bdiL+JINrbGJil2TeHvM4rETGzk/f/0g==" - "resolved" "https://registry.npmjs.org/internal-slot/-/internal-slot-1.0.2.tgz" - "version" "1.0.2" +"internal-slot@^1.0.3": + "integrity" "sha512-O0DB1JC/sPyZl7cIo78n5dR7eUSwwpYPiXRhTzNxZVAMUuB8vlnRFyLxdrVToks6XPLVnFfbzaVd5WLjhgg+vA==" + "resolved" "https://registry.npmjs.org/internal-slot/-/internal-slot-1.0.3.tgz" + "version" "1.0.3" dependencies: - "es-abstract" "^1.17.0-next.1" + "get-intrinsic" "^1.1.0" "has" "^1.0.3" - "side-channel" "^1.0.2" + "side-channel" "^1.0.4" "invariant@^2.2.4", "invariant@2.2.4": "integrity" "sha512-phJfQVBuaJM5raOpJjSfkiD6BpbCE4Ns//LaXl6wGYtUBY83nWS6Rf9tXm2e8VaK60JEjYldbPif/A2B1C2gNA==" @@ -3964,15 +3990,27 @@ "resolved" "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.3.2.tgz" "version" "0.3.2" +"is-bigint@^1.0.1": + "integrity" "sha512-0JV5+SOCQkIdzjBK9buARcV804Ddu7A0Qet6sHi3FimE9ne6m4BGQZfRn+NZiXbBk4F4XmHfDZIipLj9pX8dSA==" + "resolved" "https://registry.npmjs.org/is-bigint/-/is-bigint-1.0.2.tgz" + "version" "1.0.2" + +"is-boolean-object@^1.1.0": + "integrity" "sha512-bXdQWkECBUIAcCkeH1unwJLIpZYaa5VvuygSyS/c2lf719mTKZDU5UdDRlpd01UjADgmW8RfqaP+mRaVPdr/Ng==" + "resolved" "https://registry.npmjs.org/is-boolean-object/-/is-boolean-object-1.1.1.tgz" + "version" "1.1.1" + dependencies: + "call-bind" "^1.0.2" + "is-buffer@^1.1.5": "integrity" "sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w==" "resolved" "https://registry.npmjs.org/is-buffer/-/is-buffer-1.1.6.tgz" "version" "1.1.6" -"is-callable@^1.1.4", "is-callable@^1.2.0": - "integrity" "sha512-pyVD9AaGLxtg6srb2Ng6ynWJqkHU9bEM087AKck0w8QwDarTfNcpIYoU8x8Hv2Icm8u6kFJM18Dag8lyqGkviw==" - "resolved" "https://registry.npmjs.org/is-callable/-/is-callable-1.2.0.tgz" - "version" "1.2.0" +"is-callable@^1.1.4", "is-callable@^1.2.3": + "integrity" "sha512-J1DcMe8UYTBSrKezuIUTUwjXsho29693unXM2YhJUTR2txK/eG47bvNa/wipPFmZFgr/N6f1GA66dv0mEyTIyQ==" + "resolved" "https://registry.npmjs.org/is-callable/-/is-callable-1.2.3.tgz" + "version" "1.2.3" "is-ci@^2.0.0": "integrity" "sha512-YfJT7rkpQB0updsdHLGWrvhBJfcfzNNawYDNIyQXJz0IViGf75O8EBPKSdvw2rF+LGCsX4FZ8tcr3b19LcZq4w==" @@ -3981,6 +4019,13 @@ dependencies: "ci-info" "^2.0.0" +"is-core-module@^2.2.0": + "integrity" "sha512-6A2fkfq1rfeQZjxrZJGerpLCTHRNEBiSgnu0+obeJpEPZRUooHgsizvzv0ZjJwOz3iWIHdJtVWJ/tmPr3D21/A==" + "resolved" "https://registry.npmjs.org/is-core-module/-/is-core-module-2.4.0.tgz" + "version" "2.4.0" + dependencies: + "has" "^1.0.3" + "is-data-descriptor@^0.1.4": "integrity" "sha1-C17mSDiOLIYCgueT8YVv7D8wG1Y=" "resolved" "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-0.1.4.tgz" @@ -3996,9 +4041,9 @@ "kind-of" "^6.0.0" "is-date-object@^1.0.1": - "integrity" "sha512-USlDT524woQ08aoZFzh3/Z6ch9Y/EWXEHQ/AaRN0SkKq4t2Jw2R2339tSXmwuVoY7LLlBCbOIlx2myP/L5zk0g==" - "resolved" "https://registry.npmjs.org/is-date-object/-/is-date-object-1.0.2.tgz" - "version" "1.0.2" + "integrity" "sha512-/b4ZVsG7Z5XVtIxs/h9W8nvfLgSAyKYdtGWQLbqy6jA1icmgjf8WCoTKgeS4wy5tYaPePouzFMANbnj94c2Z+A==" + "resolved" "https://registry.npmjs.org/is-date-object/-/is-date-object-1.0.4.tgz" + "version" "1.0.4" "is-descriptor@^0.1.0": "integrity" "sha512-avDYr0SB3DwO9zsMov0gKCESFYqCnE4hq/4z3TdUlukEy5t9C0YRq7HLrsN52NAcqXKaepeCD0n+B0arnVG3Hg==" @@ -4009,16 +4054,7 @@ "is-data-descriptor" "^0.1.4" "kind-of" "^5.0.0" -"is-descriptor@^1.0.0": - "integrity" "sha512-2eis5WqQGV7peooDyLmNEPUrps9+SXX5c9pL3xEB+4e9HnGuDa7mB7kHxHw4CbqS9k1T2hOH3miL8n8WtiYVtg==" - "resolved" "https://registry.npmjs.org/is-descriptor/-/is-descriptor-1.0.2.tgz" - "version" "1.0.2" - dependencies: - "is-accessor-descriptor" "^1.0.0" - "is-data-descriptor" "^1.0.0" - "kind-of" "^6.0.2" - -"is-descriptor@^1.0.2": +"is-descriptor@^1.0.0", "is-descriptor@^1.0.2": "integrity" "sha512-2eis5WqQGV7peooDyLmNEPUrps9+SXX5c9pL3xEB+4e9HnGuDa7mB7kHxHw4CbqS9k1T2hOH3miL8n8WtiYVtg==" "resolved" "https://registry.npmjs.org/is-descriptor/-/is-descriptor-1.0.2.tgz" "version" "1.0.2" @@ -4033,15 +4069,20 @@ "version" "0.3.1" "is-docker@^2.0.0": - "integrity" "sha512-ZOoqiXfEwtGknTiuDEy8pN2CfE3TxMHprvNer1mXiqwkOT77Rw3YVrUQ52EqAOU3QAWDQ+bQdx7HJzrv7LS2Hw==" - "resolved" "https://registry.npmjs.org/is-docker/-/is-docker-2.1.1.tgz" - "version" "2.1.1" + "integrity" "sha512-F+i2BKsFrH66iaUFc0woD8sLy8getkwTwtOBjvs56Cx4CgJDeKQeqfz8wAYiSb8JOprWhHH5p77PbmYCvvUuXQ==" + "resolved" "https://registry.npmjs.org/is-docker/-/is-docker-2.2.1.tgz" + "version" "2.2.1" "is-extendable@^0.1.0", "is-extendable@^0.1.1": "integrity" "sha1-YrEQ4omkcUGOPsNqYX1HLjAd/Ik=" "resolved" "https://registry.npmjs.org/is-extendable/-/is-extendable-0.1.1.tgz" "version" "0.1.1" +"is-extendable@^0.1.1": + "integrity" "sha1-YrEQ4omkcUGOPsNqYX1HLjAd/Ik=" + "resolved" "https://registry.npmjs.org/is-extendable/-/is-extendable-0.1.1.tgz" + "version" "0.1.1" + "is-extendable@^1.0.1": "integrity" "sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==" "resolved" "https://registry.npmjs.org/is-extendable/-/is-extendable-1.0.1.tgz" @@ -4076,6 +4117,16 @@ dependencies: "is-extglob" "^2.1.1" +"is-negative-zero@^2.0.1": + "integrity" "sha512-2z6JzQvZRa9A2Y7xC6dQQm4FSTSTNWjKIYYTt4246eMTJmIo0Q+ZyOsU66X8lxK1AbB92dFeglPLrhwpeRKO6w==" + "resolved" "https://registry.npmjs.org/is-negative-zero/-/is-negative-zero-2.0.1.tgz" + "version" "2.0.1" + +"is-number-object@^1.0.4": + "integrity" "sha512-RU0lI/n95pMoUKu9v1BZP5MBcZuNSVJkMkAG2dJqC4z2GlkGUNeH68SuHuBKBD/XFe+LHZ+f9BKkLET60Niedw==" + "resolved" "https://registry.npmjs.org/is-number-object/-/is-number-object-1.0.5.tgz" + "version" "1.0.5" + "is-number@^3.0.0": "integrity" "sha1-JP1iAaR4LPUFYcgQJ2r8fRLXEZU=" "resolved" "https://registry.npmjs.org/is-number/-/is-number-3.0.0.tgz" @@ -4110,19 +4161,30 @@ "resolved" "https://registry.npmjs.org/is-redirect/-/is-redirect-1.0.0.tgz" "version" "1.0.0" -"is-regex@^1.1.0": - "integrity" "sha512-1+QkEcxiLlB7VEyFtyBg94e08OAsvq7FUBgApTq/w2ymCLyKJgDPsybBENVtA7XCQEgEXxKPonG+mvYRxh/LIg==" - "resolved" "https://registry.npmjs.org/is-regex/-/is-regex-1.1.1.tgz" - "version" "1.1.1" +"is-regex@^1.1.3": + "integrity" "sha512-qSVXFz28HM7y+IWX6vLCsexdlvzT1PJNFSBuaQLQ5o0IEw8UDYW6/2+eCMVyIsbM8CNLX2a/QWmSpyxYEHY7CQ==" + "resolved" "https://registry.npmjs.org/is-regex/-/is-regex-1.1.3.tgz" + "version" "1.1.3" dependencies: - "has-symbols" "^1.0.1" + "call-bind" "^1.0.2" + "has-symbols" "^1.0.2" "is-retry-allowed@^1.0.0": "integrity" "sha512-RUbUeKwvm3XG2VYamhJL1xFktgjvPzL0Hq8C+6yrWIswDy3BIXGqCxhxkc30N9jqK311gVU137K8Ei55/zVJRg==" "resolved" "https://registry.npmjs.org/is-retry-allowed/-/is-retry-allowed-1.2.0.tgz" "version" "1.2.0" -"is-stream@^1.0.0", "is-stream@^1.0.1", "is-stream@^1.1.0": +"is-stream@^1.0.0": + "integrity" "sha1-EtSj3U5o4Lec6428hBc66A2RykQ=" + "resolved" "https://registry.npmjs.org/is-stream/-/is-stream-1.1.0.tgz" + "version" "1.1.0" + +"is-stream@^1.0.1": + "integrity" "sha1-EtSj3U5o4Lec6428hBc66A2RykQ=" + "resolved" "https://registry.npmjs.org/is-stream/-/is-stream-1.1.0.tgz" + "version" "1.1.0" + +"is-stream@^1.1.0": "integrity" "sha1-EtSj3U5o4Lec6428hBc66A2RykQ=" "resolved" "https://registry.npmjs.org/is-stream/-/is-stream-1.1.0.tgz" "version" "1.1.0" @@ -4132,17 +4194,17 @@ "resolved" "https://registry.npmjs.org/is-stream/-/is-stream-2.0.0.tgz" "version" "2.0.0" -"is-string@^1.0.5": - "integrity" "sha512-buY6VNRjhQMiF1qWDouloZlQbRhDPCebwxSjxMjxgemYT46YMd2NR0/H+fBhEfWX4A/w9TBJ+ol+okqJKFE6vQ==" - "resolved" "https://registry.npmjs.org/is-string/-/is-string-1.0.5.tgz" - "version" "1.0.5" +"is-string@^1.0.5", "is-string@^1.0.6": + "integrity" "sha512-2gdzbKUuqtQ3lYNrUTQYoClPhm7oQu4UdpSZMp1/DGgkHBT8E2Z1l0yMdb6D4zNAxwDiMv8MdulKROJGNl0Q0w==" + "resolved" "https://registry.npmjs.org/is-string/-/is-string-1.0.6.tgz" + "version" "1.0.6" -"is-symbol@^1.0.2": - "integrity" "sha512-OwijhaRSgqvhm/0ZdAcXNZt9lYdKFpcRDT5ULUuYXPoT794UNOdU+gpT6Rzo7b4V2HUl/op6GqY894AZwv9faQ==" - "resolved" "https://registry.npmjs.org/is-symbol/-/is-symbol-1.0.3.tgz" - "version" "1.0.3" +"is-symbol@^1.0.2", "is-symbol@^1.0.3": + "integrity" "sha512-C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg==" + "resolved" "https://registry.npmjs.org/is-symbol/-/is-symbol-1.0.4.tgz" + "version" "1.0.4" dependencies: - "has-symbols" "^1.0.1" + "has-symbols" "^1.0.2" "is-typedarray@^1.0.0", "is-typedarray@~1.0.0": "integrity" "sha1-5HnICFjfDBsR3dppQPlgEfzaSpo=" @@ -4358,7 +4420,7 @@ "resolved" "https://registry.npmjs.org/jest-get-type/-/jest-get-type-25.2.6.tgz" "version" "25.2.6" -"jest-haste-map@^24.7.1": +"jest-haste-map@^24.9.0": "integrity" "sha512-kfVFmsuWui2Sj1Rp1AJ4D9HqJwE4uwTlS/vO+eRUaMmd54BFpli2XhMQnPC2k4cHFVbB2Q2C+jtI1AGLgEnCjQ==" "resolved" "https://registry.npmjs.org/jest-haste-map/-/jest-haste-map-24.9.0.tgz" "version" "24.9.0" @@ -4571,7 +4633,7 @@ "strip-bom" "^4.0.0" "yargs" "^15.3.1" -"jest-serializer@^24.4.0", "jest-serializer@^24.9.0": +"jest-serializer@^24.9.0": "integrity" "sha512-DxYipDr8OvfrKH3Kel6NdED3OXxjvxXZ1uIY2I9OFbGg+vUkkg7AGvi65qbhbWNPvDckXmzMPbK3u3HaDO49bQ==" "resolved" "https://registry.npmjs.org/jest-serializer/-/jest-serializer-24.9.0.tgz" "version" "24.9.0" @@ -4633,7 +4695,7 @@ "is-ci" "^2.0.0" "make-dir" "^3.0.0" -"jest-validate@^24.7.0": +"jest-validate@^24.9.0": "integrity" "sha512-HPIt6C5ACwiqSiwi+OfSSHbK8sG7akG8eATl+IPKaeIjtPOeBUd/g3J7DghugzxrGjI93qS/+RPKe1H6PqvhRQ==" "resolved" "https://registry.npmjs.org/jest-validate/-/jest-validate-24.9.0.tgz" "version" "24.9.0" @@ -4669,7 +4731,7 @@ "jest-util" "^25.5.0" "string-length" "^3.1.0" -"jest-worker@^24.6.0", "jest-worker@^24.9.0": +"jest-worker@^24.9.0": "integrity" "sha512-51PE4haMSXcHohnSMdM42anbvZANYTqMrr52tVKPqqsPJMzoP6FYYDVqahX/HrAoKEKz3uUPzSvKs9A3qR4iVw==" "resolved" "https://registry.npmjs.org/jest-worker/-/jest-worker-24.9.0.tgz" "version" "24.9.0" @@ -4695,9 +4757,9 @@ "jest-cli" "^25.5.4" "jetifier@^1.6.2": - "integrity" "sha512-JNAkmPeB/GS2tCRqUzRPsTOHpGDah7xP18vGJfIjZC+W2sxEHbxgJxetIjIqhjQ3yYbYNEELkM/spKLtwoOSUQ==" - "resolved" "https://registry.npmjs.org/jetifier/-/jetifier-1.6.6.tgz" - "version" "1.6.6" + "integrity" "sha512-3Zi16h6L5tXDRQJTb221cnRoVG9/9OvreLdLU2/ZjRv/GILL+2Cemt0IKvkowwkDpvouAU1DQPOJ7qaiHeIdrw==" + "resolved" "https://registry.npmjs.org/jetifier/-/jetifier-1.6.8.tgz" + "version" "1.6.8" "js-tokens@^3.0.0 || ^4.0.0", "js-tokens@^4.0.0": "integrity" "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==" @@ -4705,9 +4767,9 @@ "version" "4.0.0" "js-yaml@^3.13.1": - "integrity" "sha512-/4IbIeHcD9VMHFqDR/gQ7EdZdLimOvW2DdcxFjdyyZ9NsbS+ccrXqVWDtab/lRl5AlUqmpBx8EhPaWR+OtY17A==" - "resolved" "https://registry.npmjs.org/js-yaml/-/js-yaml-3.14.0.tgz" - "version" "3.14.0" + "integrity" "sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g==" + "resolved" "https://registry.npmjs.org/js-yaml/-/js-yaml-3.14.1.tgz" + "version" "3.14.1" dependencies: "argparse" "^1.0.7" "esprima" "^4.0.0" @@ -4779,6 +4841,11 @@ "resolved" "https://registry.npmjs.org/json-parse-better-errors/-/json-parse-better-errors-1.0.2.tgz" "version" "1.0.2" +"json-parse-even-better-errors@^2.3.0": + "integrity" "sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==" + "resolved" "https://registry.npmjs.org/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz" + "version" "2.3.1" + "json-schema-traverse@^0.4.1": "integrity" "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==" "resolved" "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz" @@ -4807,9 +4874,9 @@ "version" "5.0.1" "json5@^2.1.2": - "integrity" "sha512-KXPvOm8K9IJKFM0bmdn8QXh7udDh1g/giieX0NLCaMnb4hEiVFqnop2ImTXCc5e0/oHz3LTqmHGtExn5hfMkOA==" - "resolved" "https://registry.npmjs.org/json5/-/json5-2.1.3.tgz" - "version" "2.1.3" + "integrity" "sha512-f+8cldu7X/y7RAJurMEJmdoKXGB/X550w2Nr3tTbezL6RwEE/iMcm+tZnXeoZtKuOq6ft8+CqzEkrIgx1fPoQA==" + "resolved" "https://registry.npmjs.org/json5/-/json5-2.2.0.tgz" + "version" "2.2.0" dependencies: "minimist" "^1.2.5" @@ -4817,14 +4884,14 @@ "integrity" "sha1-NzaitCi4e72gzIO1P6PWM6NcKug=" "resolved" "https://registry.npmjs.org/jsonfile/-/jsonfile-2.4.0.tgz" "version" "2.4.0" - dependencies: + optionalDependencies: "graceful-fs" "^4.1.6" "jsonfile@^4.0.0": "integrity" "sha1-h3Gq4HmbZAdrdmQPygWPnBDjPss=" "resolved" "https://registry.npmjs.org/jsonfile/-/jsonfile-4.0.0.tgz" "version" "4.0.0" - dependencies: + optionalDependencies: "graceful-fs" "^4.1.6" "jsonify@~0.0.0": @@ -4869,14 +4936,7 @@ "resolved" "https://registry.npmjs.org/kind-of/-/kind-of-1.1.0.tgz" "version" "1.1.0" -"kind-of@^3.0.2": - "integrity" "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=" - "resolved" "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz" - "version" "3.2.2" - dependencies: - "is-buffer" "^1.1.5" - -"kind-of@^3.0.3": +"kind-of@^3.0.2", "kind-of@^3.0.3": "integrity" "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=" "resolved" "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz" "version" "3.2.2" @@ -4911,7 +4971,7 @@ "integrity" "sha1-QIhDO0azsbolnXh4XY6W9zugJDk=" "resolved" "https://registry.npmjs.org/klaw/-/klaw-1.3.1.tgz" "version" "1.3.1" - dependencies: + optionalDependencies: "graceful-fs" "^4.1.9" "kleur@^3.0.3": @@ -4952,25 +5012,75 @@ dependencies: "p-locate" "^4.1.0" +"lodash._reinterpolate@^3.0.0": + "integrity" "sha1-DM8tiRZq8Ds2Y8eWU4t1rG4RTZ0=" + "resolved" "https://registry.npmjs.org/lodash._reinterpolate/-/lodash._reinterpolate-3.0.0.tgz" + "version" "3.0.0" + +"lodash.debounce@^4.0.8": + "integrity" "sha1-gteb/zCmfEAF/9XiUVMArZyk168=" + "resolved" "https://registry.npmjs.org/lodash.debounce/-/lodash.debounce-4.0.8.tgz" + "version" "4.0.8" + +"lodash.frompairs@^4.0.1": + "integrity" "sha1-vE5SB/onV8E25XNhTpZkUGsrG9I=" + "resolved" "https://registry.npmjs.org/lodash.frompairs/-/lodash.frompairs-4.0.1.tgz" + "version" "4.0.1" + "lodash.isequal@^4.5.0": "integrity" "sha1-QVxEePK8wwEgwizhDtMib30+GOA=" "resolved" "https://registry.npmjs.org/lodash.isequal/-/lodash.isequal-4.5.0.tgz" "version" "4.5.0" +"lodash.isstring@^4.0.1": + "integrity" "sha1-1SfftUVuynzJu5XV2ur4i6VKVFE=" + "resolved" "https://registry.npmjs.org/lodash.isstring/-/lodash.isstring-4.0.1.tgz" + "version" "4.0.1" + +"lodash.memoize@^4.1.2": + "integrity" "sha1-vMbEmkKihA7Zl/Mj6tpezRguC/4=" + "resolved" "https://registry.npmjs.org/lodash.memoize/-/lodash.memoize-4.1.2.tgz" + "version" "4.1.2" + +"lodash.omit@^4.5.0": + "integrity" "sha1-brGa5aHuHdnfC5aeZs4Lf6MLXmA=" + "resolved" "https://registry.npmjs.org/lodash.omit/-/lodash.omit-4.5.0.tgz" + "version" "4.5.0" + +"lodash.pick@^4.4.0": + "integrity" "sha1-UvBWEP/53tQiYRRB7R/BI6AwAbM=" + "resolved" "https://registry.npmjs.org/lodash.pick/-/lodash.pick-4.4.0.tgz" + "version" "4.4.0" + "lodash.sortby@^4.7.0": "integrity" "sha1-7dFMgk4sycHgsKG0K7UhBRakJDg=" "resolved" "https://registry.npmjs.org/lodash.sortby/-/lodash.sortby-4.7.0.tgz" "version" "4.7.0" +"lodash.template@^4.5.0": + "integrity" "sha512-84vYFxIkmidUiFxidA/KjjH9pAycqW+h980j7Fuz5qxRtO9pgB7MDFTdys1N7A5mcucRiDyEq4fusljItR1T/A==" + "resolved" "https://registry.npmjs.org/lodash.template/-/lodash.template-4.5.0.tgz" + "version" "4.5.0" + dependencies: + "lodash._reinterpolate" "^3.0.0" + "lodash.templatesettings" "^4.0.0" + +"lodash.templatesettings@^4.0.0": + "integrity" "sha512-stgLz+i3Aa9mZgnjr/O+v9ruKZsPsndy7qPZOchbqk2cnTU1ZaldKK+v7m54WoKIyxiuMZTKT2H81F8BeAc3ZQ==" + "resolved" "https://registry.npmjs.org/lodash.templatesettings/-/lodash.templatesettings-4.2.0.tgz" + "version" "4.2.0" + dependencies: + "lodash._reinterpolate" "^3.0.0" + "lodash.throttle@^4.1.1": "integrity" "sha1-wj6RtxAkKscMN/HhzaknTMOb8vQ=" "resolved" "https://registry.npmjs.org/lodash.throttle/-/lodash.throttle-4.1.1.tgz" "version" "4.1.1" -"lodash@^4.17.10", "lodash@^4.17.14", "lodash@^4.17.15", "lodash@^4.17.19", "lodash@^4.17.4", "lodash@^4.3.0": - "integrity" "sha512-JNvd8XER9GQX0v2qJgsaN/mzFCNA5BRe/j8JN9d+tWyGLSodKQHKFicdwNYzWwI3wjRnaKPsGj1XkBjx/F96DQ==" - "resolved" "https://registry.npmjs.org/lodash/-/lodash-4.17.19.tgz" - "version" "4.17.19" +"lodash@^4.17.10", "lodash@^4.17.14", "lodash@^4.17.15", "lodash@^4.17.19", "lodash@^4.3.0": + "integrity" "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==" + "resolved" "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz" + "version" "4.17.21" "log-symbols@^2.2.0": "integrity" "sha512-VeIAFslyIerEJLXHziedo2basKbMKtTw3vfn5IzG0XTjhAVEJyNHnL2p7vc+wBDSdQuUpNw3M2u6xb9QsAY5Eg==" @@ -5002,7 +5112,12 @@ dependencies: "js-tokens" "^3.0.0 || ^4.0.0" -"lowercase-keys@^1.0.0", "lowercase-keys@^1.0.1": +"lowercase-keys@^1.0.0": + "integrity" "sha512-G2Lj61tXDnVFFOi8VZds+SoQjtQC3dgokKdDG2mTm1tx4m50NUHBOZSBwQQHyy0V12A0JTG4icfZQH+xPyh8VA==" + "resolved" "https://registry.npmjs.org/lowercase-keys/-/lowercase-keys-1.0.1.tgz" + "version" "1.0.1" + +"lowercase-keys@^1.0.1": "integrity" "sha512-G2Lj61tXDnVFFOi8VZds+SoQjtQC3dgokKdDG2mTm1tx4m50NUHBOZSBwQQHyy0V12A0JTG4icfZQH+xPyh8VA==" "resolved" "https://registry.npmjs.org/lowercase-keys/-/lowercase-keys-1.0.1.tgz" "version" "1.0.1" @@ -5020,7 +5135,22 @@ "pseudomap" "^1.0.2" "yallist" "^2.1.2" -"make-dir@^2.0.0", "make-dir@^2.1.0": +"lru-cache@^6.0.0": + "integrity" "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==" + "resolved" "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz" + "version" "6.0.0" + dependencies: + "yallist" "^4.0.0" + +"make-dir@^2.0.0": + "integrity" "sha512-LS9X+dc8KLxXCb8dni79fLIIUA5VyZoyjSMCwTluaXA0o27cCK0bhXkpgw+sTXVpPy/lSO57ilRixqk0vDmtRA==" + "resolved" "https://registry.npmjs.org/make-dir/-/make-dir-2.1.0.tgz" + "version" "2.1.0" + dependencies: + "pify" "^4.0.1" + "semver" "^5.6.0" + +"make-dir@^2.1.0": "integrity" "sha512-LS9X+dc8KLxXCb8dni79fLIIUA5VyZoyjSMCwTluaXA0o27cCK0bhXkpgw+sTXVpPy/lSO57ilRixqk0vDmtRA==" "resolved" "https://registry.npmjs.org/make-dir/-/make-dir-2.1.0.tgz" "version" "2.1.0" @@ -5066,24 +5196,6 @@ "resolved" "https://registry.npmjs.org/merge-stream/-/merge-stream-2.0.0.tgz" "version" "2.0.0" -"metro-babel-register@0.58.0": - "integrity" "sha512-P5+G3ufhSYL6cA3a7xkbSJzzFBvtivj/PhWvGXFXnuFssDlMAX1CTktff+0gpka5Cd6B6QLt0UAMWulUAAE4Eg==" - "resolved" "https://registry.npmjs.org/metro-babel-register/-/metro-babel-register-0.58.0.tgz" - "version" "0.58.0" - dependencies: - "@babel/core" "^7.0.0" - "@babel/plugin-proposal-class-properties" "^7.0.0" - "@babel/plugin-proposal-nullish-coalescing-operator" "^7.0.0" - "@babel/plugin-proposal-object-rest-spread" "^7.0.0" - "@babel/plugin-proposal-optional-catch-binding" "^7.0.0" - "@babel/plugin-proposal-optional-chaining" "^7.0.0" - "@babel/plugin-transform-async-to-generator" "^7.0.0" - "@babel/plugin-transform-flow-strip-types" "^7.0.0" - "@babel/plugin-transform-modules-commonjs" "^7.0.0" - "@babel/register" "^7.0.0" - "core-js" "^2.2.2" - "escape-string-regexp" "^1.0.5" - "metro-babel-register@0.59.0": "integrity" "sha512-JtWc29erdsXO/V3loenXKw+aHUXgj7lt0QPaZKPpctLLy8kcEpI/8pfXXgVK9weXICCpCnYtYncIosAyzh0xjg==" "resolved" "https://registry.npmjs.org/metro-babel-register/-/metro-babel-register-0.59.0.tgz" @@ -5098,14 +5210,6 @@ "@babel/register" "^7.0.0" "escape-string-regexp" "^1.0.5" -"metro-babel-transformer@0.58.0": - "integrity" "sha512-yBX3BkRhw2TCNPhe+pmLSgsAEA3huMvnX08UwjFqSXXI1aiqzRQobn92uKd1U5MM1Vx8EtXVomlJb95ZHNAv6A==" - "resolved" "https://registry.npmjs.org/metro-babel-transformer/-/metro-babel-transformer-0.58.0.tgz" - "version" "0.58.0" - dependencies: - "@babel/core" "^7.0.0" - "metro-source-map" "0.58.0" - "metro-babel-transformer@0.59.0": "integrity" "sha512-fdZJl8rs54GVFXokxRdD7ZrQ1TJjxWzOi/xSP25VR3E8tbm3nBZqS+/ylu643qSr/IueABR+jrlqAyACwGEf6w==" "resolved" "https://registry.npmjs.org/metro-babel-transformer/-/metro-babel-transformer-0.59.0.tgz" @@ -5114,97 +5218,54 @@ "@babel/core" "^7.0.0" "metro-source-map" "0.59.0" -"metro-cache@0.58.0": - "integrity" "sha512-jjW9zCTKxhgKcVkyQ6LHyna9Zdf4TK/45vvT1fPyyTk1RY82ZYjU1qs+84ycKEd08Ka4YcK9xcUew9SIDJYI8Q==" - "resolved" "https://registry.npmjs.org/metro-cache/-/metro-cache-0.58.0.tgz" - "version" "0.58.0" +"metro-cache@0.59.0": + "integrity" "sha512-ryWNkSnpyADfRpHGb8BRhQ3+k8bdT/bsxMH2O0ntlZYZ188d8nnYWmxbRvFmEzToJxe/ol4uDw0tJFAaQsN8KA==" + "resolved" "https://registry.npmjs.org/metro-cache/-/metro-cache-0.59.0.tgz" + "version" "0.59.0" dependencies: - "jest-serializer" "^24.4.0" - "metro-core" "0.58.0" + "jest-serializer" "^24.9.0" + "metro-core" "0.59.0" "mkdirp" "^0.5.1" "rimraf" "^2.5.4" -"metro-config@^0.58.0", "metro-config@0.58.0": - "integrity" "sha512-4vgBliXwL56vjUlYplvGMVSNrJJpkHuLcD+O20trV3FvPxKg4ZsvuOcNSxqDSMU26FCtIEJ15ojcuCbRL7KY0w==" - "resolved" "https://registry.npmjs.org/metro-config/-/metro-config-0.58.0.tgz" - "version" "0.58.0" +"metro-config@^0.59.0", "metro-config@0.59.0": + "integrity" "sha512-MDsknFG9vZ4Nb5VR6OUDmGHaWz6oZg/FtE3up1zVBKPVRTXE1Z+k7zypnPtMXjMh3WHs/Sy4+wU1xnceE/zdnA==" + "resolved" "https://registry.npmjs.org/metro-config/-/metro-config-0.59.0.tgz" + "version" "0.59.0" dependencies: "cosmiconfig" "^5.0.5" - "jest-validate" "^24.7.0" - "metro" "0.58.0" - "metro-cache" "0.58.0" - "metro-core" "0.58.0" - "pretty-format" "^24.7.0" + "jest-validate" "^24.9.0" + "metro" "0.59.0" + "metro-cache" "0.59.0" + "metro-core" "0.59.0" -"metro-core@^0.58.0", "metro-core@0.58.0": - "integrity" "sha512-RzXUjGFmCLOyzUqcKDvr91AldGtIOxnzNZrWUIiG8uC3kerVLo0mQp4YH3+XVm6fMNiLMg6iER7HLqD+MbpUjQ==" - "resolved" "https://registry.npmjs.org/metro-core/-/metro-core-0.58.0.tgz" - "version" "0.58.0" +"metro-core@^0.59.0", "metro-core@0.59.0": + "integrity" "sha512-kb5LKvV5r2pqMEzGyTid8ai2mIjW13NMduQ8oBmfha7/EPTATcTQ//s+bkhAs1toQD8vqVvjAb0cPNjWQEmcmQ==" + "resolved" "https://registry.npmjs.org/metro-core/-/metro-core-0.59.0.tgz" + "version" "0.59.0" dependencies: - "jest-haste-map" "^24.7.1" + "jest-haste-map" "^24.9.0" "lodash.throttle" "^4.1.1" - "metro-resolver" "0.58.0" + "metro-resolver" "0.59.0" "wordwrap" "^1.0.0" -"metro-inspector-proxy@0.58.0": - "integrity" "sha512-oFqTyNTJdCdvcw1Ha6SKE7ITbSaoTbO4xpYownIoJR+WZ0ZfxbWpp225JkHuBJm9UcBAnG9c0CME924m3uBbaw==" - "resolved" "https://registry.npmjs.org/metro-inspector-proxy/-/metro-inspector-proxy-0.58.0.tgz" - "version" "0.58.0" +"metro-inspector-proxy@0.59.0": + "integrity" "sha512-hPeAuQcofTOH0F+2GEZqWkvkVY1/skezSSlMocDQDaqds+Kw6JgdA7FlZXxnKmQ/jYrWUzff/pl8SUCDwuYthQ==" + "resolved" "https://registry.npmjs.org/metro-inspector-proxy/-/metro-inspector-proxy-0.59.0.tgz" + "version" "0.59.0" dependencies: "connect" "^3.6.5" "debug" "^2.2.0" - "rxjs" "^5.4.3" "ws" "^1.1.5" "yargs" "^14.2.0" -"metro-minify-uglify@0.58.0": - "integrity" "sha512-vRHsA7bCi7eCn3LXLm20EfY2NoWDyYOnmWaq/N8LB0OxL2L5DXRqMYAQK+prWGJ5S1yvVnDuuNVP+peQ9851TA==" - "resolved" "https://registry.npmjs.org/metro-minify-uglify/-/metro-minify-uglify-0.58.0.tgz" - "version" "0.58.0" +"metro-minify-uglify@0.59.0": + "integrity" "sha512-7IzVgCVWZMymgZ/quieg/9v5EQ8QmZWAgDc86Zp9j0Vy6tQTjUn6jlU+YAKW3mfMEjMr6iIUzCD8YklX78tFAw==" + "resolved" "https://registry.npmjs.org/metro-minify-uglify/-/metro-minify-uglify-0.59.0.tgz" + "version" "0.59.0" dependencies: "uglify-es" "^3.1.9" -"metro-react-native-babel-preset@0.58.0": - "integrity" "sha512-MRriNW+fF6jxABsgPphocUY6mIhmCm8idcrQZ58fT3Iti2vCdtkaK32TyCGUNUptzhUe2/cbE57j4aC+eaodAA==" - "resolved" "https://registry.npmjs.org/metro-react-native-babel-preset/-/metro-react-native-babel-preset-0.58.0.tgz" - "version" "0.58.0" - dependencies: - "@babel/plugin-proposal-class-properties" "^7.0.0" - "@babel/plugin-proposal-export-default-from" "^7.0.0" - "@babel/plugin-proposal-nullish-coalescing-operator" "^7.0.0" - "@babel/plugin-proposal-object-rest-spread" "^7.0.0" - "@babel/plugin-proposal-optional-catch-binding" "^7.0.0" - "@babel/plugin-proposal-optional-chaining" "^7.0.0" - "@babel/plugin-syntax-dynamic-import" "^7.0.0" - "@babel/plugin-syntax-export-default-from" "^7.0.0" - "@babel/plugin-syntax-flow" "^7.2.0" - "@babel/plugin-transform-arrow-functions" "^7.0.0" - "@babel/plugin-transform-block-scoping" "^7.0.0" - "@babel/plugin-transform-classes" "^7.0.0" - "@babel/plugin-transform-computed-properties" "^7.0.0" - "@babel/plugin-transform-destructuring" "^7.0.0" - "@babel/plugin-transform-exponentiation-operator" "^7.0.0" - "@babel/plugin-transform-flow-strip-types" "^7.0.0" - "@babel/plugin-transform-for-of" "^7.0.0" - "@babel/plugin-transform-function-name" "^7.0.0" - "@babel/plugin-transform-literals" "^7.0.0" - "@babel/plugin-transform-modules-commonjs" "^7.0.0" - "@babel/plugin-transform-object-assign" "^7.0.0" - "@babel/plugin-transform-parameters" "^7.0.0" - "@babel/plugin-transform-react-display-name" "^7.0.0" - "@babel/plugin-transform-react-jsx" "^7.0.0" - "@babel/plugin-transform-react-jsx-source" "^7.0.0" - "@babel/plugin-transform-regenerator" "^7.0.0" - "@babel/plugin-transform-runtime" "^7.0.0" - "@babel/plugin-transform-shorthand-properties" "^7.0.0" - "@babel/plugin-transform-spread" "^7.0.0" - "@babel/plugin-transform-sticky-regex" "^7.0.0" - "@babel/plugin-transform-template-literals" "^7.0.0" - "@babel/plugin-transform-typescript" "^7.5.0" - "@babel/plugin-transform-unicode-regex" "^7.0.0" - "@babel/template" "^7.0.0" - "react-refresh" "^0.4.0" - "metro-react-native-babel-preset@0.59.0": "integrity" "sha512-BoO6ncPfceIDReIH8pQ5tQptcGo5yRWQXJGVXfANbiKLq4tfgdZB1C1e2rMUJ6iypmeJU9dzl+EhPmIFKtgREg==" "resolved" "https://registry.npmjs.org/metro-react-native-babel-preset/-/metro-react-native-babel-preset-0.59.0.tgz" @@ -5249,18 +5310,7 @@ "@babel/template" "^7.0.0" "react-refresh" "^0.4.0" -"metro-react-native-babel-transformer@^0.58.0": - "integrity" "sha512-3A73+cRq1eUPQ8g+hPNGgMUMCGmtQjwqHfoG1DwinAoJ/kr4WOXWWbGZo0xHJNBe/zdHGl0uHcDCp2knPglTdQ==" - "resolved" "https://registry.npmjs.org/metro-react-native-babel-transformer/-/metro-react-native-babel-transformer-0.58.0.tgz" - "version" "0.58.0" - dependencies: - "@babel/core" "^7.0.0" - "babel-preset-fbjs" "^3.3.0" - "metro-babel-transformer" "0.58.0" - "metro-react-native-babel-preset" "0.58.0" - "metro-source-map" "0.58.0" - -"metro-react-native-babel-transformer@0.59.0": +"metro-react-native-babel-transformer@^0.59.0", "metro-react-native-babel-transformer@0.59.0": "integrity" "sha512-1O3wrnMq4NcPQ1asEcl9lRDn/t+F1Oef6S9WaYVIKEhg9m/EQRGVrrTVP+R6B5Eeaj3+zNKbzM8Dx/NWy1hUbQ==" "resolved" "https://registry.npmjs.org/metro-react-native-babel-transformer/-/metro-react-native-babel-transformer-0.59.0.tgz" "version" "0.59.0" @@ -5271,26 +5321,13 @@ "metro-react-native-babel-preset" "0.59.0" "metro-source-map" "0.59.0" -"metro-resolver@^0.58.0", "metro-resolver@0.58.0": - "integrity" "sha512-XFbAKvCHN2iWqKeiRARzEXn69eTDdJVJC7lu16S4dPQJ+Dy82dZBr5Es12iN+NmbJuFgrAuIHbpWrdnA9tOf6Q==" - "resolved" "https://registry.npmjs.org/metro-resolver/-/metro-resolver-0.58.0.tgz" - "version" "0.58.0" +"metro-resolver@^0.59.0", "metro-resolver@0.59.0": + "integrity" "sha512-lbgiumnwoVosffEI96z0FGuq1ejTorHAj3QYUPmp5dFMfitRxLP7Wm/WP9l4ZZjIptxTExsJwuEff1SLRCPD9w==" + "resolved" "https://registry.npmjs.org/metro-resolver/-/metro-resolver-0.59.0.tgz" + "version" "0.59.0" dependencies: "absolute-path" "^0.0.0" -"metro-source-map@0.58.0": - "integrity" "sha512-yvN1YPmejmgiiS7T1aKBiiUTHPw2Vcm3r2TZ+DY92z/9PR4alysIywrCs/fTHs8rbDcKM5VfPCKGLpkBrbKeOw==" - "resolved" "https://registry.npmjs.org/metro-source-map/-/metro-source-map-0.58.0.tgz" - "version" "0.58.0" - dependencies: - "@babel/traverse" "^7.0.0" - "@babel/types" "^7.0.0" - "invariant" "^2.2.4" - "metro-symbolicate" "0.58.0" - "ob1" "0.58.0" - "source-map" "^0.5.6" - "vlq" "^1.0.0" - "metro-source-map@0.59.0": "integrity" "sha512-0w5CmCM+ybSqXIjqU4RiK40t4bvANL6lafabQ2GP2XD3vSwkLY+StWzCtsb4mPuyi9R/SgoLBel+ZOXHXAH0eQ==" "resolved" "https://registry.npmjs.org/metro-source-map/-/metro-source-map-0.59.0.tgz" @@ -5304,17 +5341,6 @@ "source-map" "^0.5.6" "vlq" "^1.0.0" -"metro-symbolicate@0.58.0": - "integrity" "sha512-uIVxUQC1E26qOMj13dKROhwAa2FmZk5eR0NcBqej/aXmQhpr8LjJg2sondkoLKUp827Tf/Fm9+pS4icb5XiqCw==" - "resolved" "https://registry.npmjs.org/metro-symbolicate/-/metro-symbolicate-0.58.0.tgz" - "version" "0.58.0" - dependencies: - "invariant" "^2.2.4" - "metro-source-map" "0.58.0" - "source-map" "^0.5.6" - "through2" "^2.0.1" - "vlq" "^1.0.0" - "metro-symbolicate@0.59.0": "integrity" "sha512-asLaF2A7rndrToGFIknL13aiohwPJ95RKHf0NM3hP/nipiLDoMzXT6ZnQvBqDxkUKyP+51AI75DMtb+Wcyw4Bw==" "resolved" "https://registry.npmjs.org/metro-symbolicate/-/metro-symbolicate-0.59.0.tgz" @@ -5326,10 +5352,10 @@ "through2" "^2.0.1" "vlq" "^1.0.0" -"metro@^0.58.0", "metro@0.58.0": - "integrity" "sha512-yi/REXX+/s4r7RjzXht+E+qE6nzvFIrEXO5Q61h+70Q7RODMU8EnlpXx04JYk7DevHuMhFaX+NWhCtRINzR4zA==" - "resolved" "https://registry.npmjs.org/metro/-/metro-0.58.0.tgz" - "version" "0.58.0" +"metro@^0.59.0", "metro@0.59.0": + "integrity" "sha512-OpVgYXyuTvouusFZQJ/UYKEbwfLmialrSCUUTGTFaBor6UMUHZgXPYtK86LzesgMqRc8aiuTQVO78iKW2Iz3wg==" + "resolved" "https://registry.npmjs.org/metro/-/metro-0.59.0.tgz" + "version" "0.59.0" dependencies: "@babel/code-frame" "^7.0.0" "@babel/core" "^7.0.0" @@ -5349,28 +5375,29 @@ "connect" "^3.6.5" "debug" "^2.2.0" "denodeify" "^1.2.1" + "error-stack-parser" "^2.0.6" "eventemitter3" "^3.0.0" "fbjs" "^1.0.0" "fs-extra" "^1.0.0" "graceful-fs" "^4.1.3" "image-size" "^0.6.0" "invariant" "^2.2.4" - "jest-haste-map" "^24.7.1" - "jest-worker" "^24.6.0" + "jest-haste-map" "^24.9.0" + "jest-worker" "^24.9.0" "json-stable-stringify" "^1.0.1" "lodash.throttle" "^4.1.1" "merge-stream" "^1.0.1" - "metro-babel-register" "0.58.0" - "metro-babel-transformer" "0.58.0" - "metro-cache" "0.58.0" - "metro-config" "0.58.0" - "metro-core" "0.58.0" - "metro-inspector-proxy" "0.58.0" - "metro-minify-uglify" "0.58.0" - "metro-react-native-babel-preset" "0.58.0" - "metro-resolver" "0.58.0" - "metro-source-map" "0.58.0" - "metro-symbolicate" "0.58.0" + "metro-babel-register" "0.59.0" + "metro-babel-transformer" "0.59.0" + "metro-cache" "0.59.0" + "metro-config" "0.59.0" + "metro-core" "0.59.0" + "metro-inspector-proxy" "0.59.0" + "metro-minify-uglify" "0.59.0" + "metro-react-native-babel-preset" "0.59.0" + "metro-resolver" "0.59.0" + "metro-source-map" "0.59.0" + "metro-symbolicate" "0.59.0" "mime-types" "2.1.11" "mkdirp" "^0.5.1" "node-fetch" "^2.2.0" @@ -5383,7 +5410,6 @@ "temp" "0.8.3" "throat" "^4.1.0" "wordwrap" "^1.0.0" - "write-file-atomic" "^1.2.0" "ws" "^1.1.5" "xpipe" "^1.0.5" "yargs" "^14.2.0" @@ -5408,17 +5434,17 @@ "to-regex" "^3.0.2" "micromatch@^4.0.2": - "integrity" "sha512-y7FpHSbMUMoyPbYUSzO6PaZ6FyRnQOpHuKwbo1G+Knck95XVU4QAiKdGEnj5wwoS7PlOgthX/09u5iFJ+aYf5Q==" - "resolved" "https://registry.npmjs.org/micromatch/-/micromatch-4.0.2.tgz" - "version" "4.0.2" + "integrity" "sha512-pRmzw/XUcwXGpD9aI9q/0XOwLNygjETJ8y0ao0wdqprrzDa4YnxLcz7fQRZr8voh8V10kGhABbNcHVk5wHgWwg==" + "resolved" "https://registry.npmjs.org/micromatch/-/micromatch-4.0.4.tgz" + "version" "4.0.4" dependencies: "braces" "^3.0.1" - "picomatch" "^2.0.5" + "picomatch" "^2.2.3" -"mime-db@>= 1.43.0 < 2", "mime-db@1.44.0": - "integrity" "sha512-/NOTfLrsPBVeH7YtFPgsVWveuL+4SjjYxaQ1xtM1KMFj7HdxlBlxeyNLzhyJVx7r4rZGJAZ/6lkKCitSc/Nmpg==" - "resolved" "https://registry.npmjs.org/mime-db/-/mime-db-1.44.0.tgz" - "version" "1.44.0" +"mime-db@>= 1.43.0 < 2", "mime-db@1.48.0": + "integrity" "sha512-FM3QwxV+TnZYQ2aRqhlKBMHxk10lTbMt3bBkMAp54ddrNeVSfcQYOOKuGuy3Ddrm38I04If834fOUSq1yzslJQ==" + "resolved" "https://registry.npmjs.org/mime-db/-/mime-db-1.48.0.tgz" + "version" "1.48.0" "mime-db@~1.23.0": "integrity" "sha1-oxtAcK2uon1zLqMzdApk0OyaZlk=" @@ -5426,11 +5452,11 @@ "version" "1.23.0" "mime-types@^2.1.12", "mime-types@~2.1.19", "mime-types@~2.1.24": - "integrity" "sha512-JIhqnCasI9yD+SsmkquHBxTSEuZdQX5BuQnS2Vc7puQQQ+8yiP5AY5uWhpdv4YL4VM5c6iliiYWPgJ/nJQLp7w==" - "resolved" "https://registry.npmjs.org/mime-types/-/mime-types-2.1.27.tgz" - "version" "2.1.27" + "integrity" "sha512-XGZnNzm3QvgKxa8dpzyhFTHmpP3l5YNusmne07VUOXxou9CqUqYa/HBy124RqtVh/O2pECas/MOcsDgpilPOPg==" + "resolved" "https://registry.npmjs.org/mime-types/-/mime-types-2.1.31.tgz" + "version" "2.1.31" dependencies: - "mime-db" "1.44.0" + "mime-db" "1.48.0" "mime-types@2.1.11": "integrity" "sha1-wlnEcb2oCKhdbNGTtDCl+uRHOzw=" @@ -5440,9 +5466,9 @@ "mime-db" "~1.23.0" "mime@^2.4.1": - "integrity" "sha512-RZKhC3EmpBchfTGBVb8fb+RL2cWyw/32lshnsETttkBAyAUXSGHxbEJWWRXc751DrIxG1q04b8QwMbAwkRPpUA==" - "resolved" "https://registry.npmjs.org/mime/-/mime-2.4.6.tgz" - "version" "2.4.6" + "integrity" "sha512-tqkh47FzKeCPD2PUiPB6pkbMzsCasjxAfC62/Wap5qrUWcb+sFasXUC5I3gYM5iBM8v/Qpn4UK0x+j0iHyFPDg==" + "resolved" "https://registry.npmjs.org/mime/-/mime-2.5.2.tgz" + "version" "2.5.2" "mime@1.6.0": "integrity" "sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==" @@ -5496,16 +5522,16 @@ dependencies: "minimist" "^1.2.5" -"ms@^2.1.1", "ms@2.1.1": - "integrity" "sha512-tgp+dl5cGk28utYktBsrFqA7HKgrhgPsg6Z/EfhWI4gl1Hwq8B/GmY/0oXZ6nF8hDVesS/FpnYaD/kOWhYQvyg==" - "resolved" "https://registry.npmjs.org/ms/-/ms-2.1.1.tgz" - "version" "2.1.1" - "ms@2.0.0": "integrity" "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=" "resolved" "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz" "version" "2.0.0" +"ms@2.1.1": + "integrity" "sha512-tgp+dl5cGk28utYktBsrFqA7HKgrhgPsg6Z/EfhWI4gl1Hwq8B/GmY/0oXZ6nF8hDVesS/FpnYaD/kOWhYQvyg==" + "resolved" "https://registry.npmjs.org/ms/-/ms-2.1.1.tgz" + "version" "2.1.1" + "ms@2.1.2": "integrity" "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==" "resolved" "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz" @@ -5602,10 +5628,15 @@ "shellwords" "^0.1.1" "which" "^1.3.1" +"node-releases@^1.1.71": + "integrity" "sha512-uW7fodD6pyW2FZNZnp/Z3hvWKeEW1Y8R1+1CnErE8cXFXzl5blBOoVB41CvMer6P6Q0S5FXDwcHgFd1Wj0U9zg==" + "resolved" "https://registry.npmjs.org/node-releases/-/node-releases-1.1.73.tgz" + "version" "1.1.73" + "node-stream-zip@^1.9.1": - "integrity" "sha512-HZ3XehqShTFj9gHauRJ3Bri9eiCTOII7/crtXzURtT14NdnOFs9Ia5E82W7z3izVBNx760tqwddxrBJVG52Y1Q==" - "resolved" "https://registry.npmjs.org/node-stream-zip/-/node-stream-zip-1.12.0.tgz" - "version" "1.12.0" + "integrity" "sha512-c7tRSVkLNOHvasWgmZ2d86cDgTWEygnkuuHNOY9c0mR3yLZtQTTrGvMaJ/fPs6+LOJn3240y30l5sjLaXFtcvw==" + "resolved" "https://registry.npmjs.org/node-stream-zip/-/node-stream-zip-1.13.6.tgz" + "version" "1.13.6" "normalize-package-data@^2.5.0": "integrity" "sha512-/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA==" @@ -5630,9 +5661,14 @@ "version" "3.0.0" "normalize-url@^4.1.0": - "integrity" "sha512-2s47yzUxdexf1OhyRi4Em83iQk0aPvwTddtFz4hnSSw9dCEsLEGf6SwIO8ss/19S9iBb5sJaOuTvTGDeZI00BQ==" - "resolved" "https://registry.npmjs.org/normalize-url/-/normalize-url-4.5.0.tgz" - "version" "4.5.0" + "integrity" "sha512-9UZCFRHQdNrfTpGg8+1INIg93B6zE0aXMVFkw1WFwvO4SlZywU6aLg5Of0Ap/PgcbSw4LNxvMWXMeugwMCX0AA==" + "resolved" "https://registry.npmjs.org/normalize-url/-/normalize-url-4.5.1.tgz" + "version" "4.5.1" + +"normalize-url@^6.0.1": + "integrity" "sha512-DlL+XwOy3NxAQ8xuC0okPgK46iuVNAK01YN7RueYBqqFeGsBjV9XmCAzAdgt+667bCl5kPh9EqKKDwnaPG1I7A==" + "resolved" "https://registry.npmjs.org/normalize-url/-/normalize-url-6.1.0.tgz" + "version" "6.1.0" "npm-run-path@^2.0.0": "integrity" "sha1-NakjLfo11wZ7TLLd8jV7GHFTbF8=" @@ -5663,11 +5699,6 @@ "resolved" "https://registry.npmjs.org/oauth-sign/-/oauth-sign-0.9.0.tgz" "version" "0.9.0" -"ob1@0.58.0": - "integrity" "sha512-uZP44cbowAfHafP1k4skpWItk5iHCoRevMfrnUvYCfyNNPPJd3rfDCyj0exklWi2gDXvjlj2ObsfiqP/bs/J7Q==" - "resolved" "https://registry.npmjs.org/ob1/-/ob1-0.58.0.tgz" - "version" "0.58.0" - "ob1@0.59.0": "integrity" "sha512-opXMTxyWJ9m68ZglCxwo0OPRESIC/iGmKFPXEXzMZqsVIrgoRXOHmoMDkQzz4y3irVjbyPJRAh5pI9fd0MJTFQ==" "resolved" "https://registry.npmjs.org/ob1/-/ob1-0.59.0.tgz" @@ -5687,12 +5718,12 @@ "define-property" "^0.2.5" "kind-of" "^3.0.3" -"object-inspect@^1.7.0": - "integrity" "sha512-jLdtEOB112fORuypAyl/50VRVIBIdVQOSUUGQHzJ4xBSbit81zRarz7GThkEFZy1RceYrWYcPcBFPQwHyAc1gA==" - "resolved" "https://registry.npmjs.org/object-inspect/-/object-inspect-1.8.0.tgz" - "version" "1.8.0" +"object-inspect@^1.10.3", "object-inspect@^1.9.0": + "integrity" "sha512-e5mCJlSH7poANfC8z8S9s9S2IN5/4Zb3aZ33f5s8YqoazCFzNLloLU8r5VCG+G7WoqLvAAZoVMcy3tp/3X0Plw==" + "resolved" "https://registry.npmjs.org/object-inspect/-/object-inspect-1.10.3.tgz" + "version" "1.10.3" -"object-keys@^1.0.11", "object-keys@^1.0.12", "object-keys@^1.1.1": +"object-keys@^1.0.12", "object-keys@^1.1.1": "integrity" "sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==" "resolved" "https://registry.npmjs.org/object-keys/-/object-keys-1.1.1.tgz" "version" "1.1.1" @@ -5704,33 +5735,33 @@ dependencies: "isobject" "^3.0.0" -"object.assign@^4.1.0": - "integrity" "sha512-exHJeq6kBKj58mqGyTQ9DFvrZC/eR6OwxzoM9YRoGBqrXYonaFyGiFMuc9VZrXf7DarreEwMpurG3dd+CNyW5w==" - "resolved" "https://registry.npmjs.org/object.assign/-/object.assign-4.1.0.tgz" - "version" "4.1.0" +"object.assign@^4.1.0", "object.assign@^4.1.2": + "integrity" "sha512-ixT2L5THXsApyiUPYKmW+2EHpXXe5Ii3M+f4e+aJFAHao5amFRW6J0OO6c/LU8Be47utCx2GL89hxGB6XSmKuQ==" + "resolved" "https://registry.npmjs.org/object.assign/-/object.assign-4.1.2.tgz" + "version" "4.1.2" dependencies: - "define-properties" "^1.1.2" - "function-bind" "^1.1.1" - "has-symbols" "^1.0.0" - "object-keys" "^1.0.11" + "call-bind" "^1.0.0" + "define-properties" "^1.1.3" + "has-symbols" "^1.0.1" + "object-keys" "^1.1.1" "object.entries@^1.1.1": - "integrity" "sha512-BQdB9qKmb/HyNdMNWVr7O3+z5MUIx3aiegEIJqjMBbBf0YT9RRxTJSim4mzFqtyr7PDAHigq0N9dO0m0tRakQA==" - "resolved" "https://registry.npmjs.org/object.entries/-/object.entries-1.1.2.tgz" - "version" "1.1.2" + "integrity" "sha512-h4LWKWE+wKQGhtMjZEBud7uLGhqyLwj8fpHOarZhD2uY3C9cRtk57VQ89ke3moByLXMedqs3XCHzyb4AmA2DjA==" + "resolved" "https://registry.npmjs.org/object.entries/-/object.entries-1.1.4.tgz" + "version" "1.1.4" dependencies: + "call-bind" "^1.0.2" "define-properties" "^1.1.3" - "es-abstract" "^1.17.5" - "has" "^1.0.3" + "es-abstract" "^1.18.2" "object.fromentries@^2.0.2": - "integrity" "sha512-r3ZiBH7MQppDJVLx6fhD618GKNG40CZYH9wgwdhKxBDDbQgjeWGGd4AtkZad84d291YxvWe7bJGuE65Anh0dxQ==" - "resolved" "https://registry.npmjs.org/object.fromentries/-/object.fromentries-2.0.2.tgz" - "version" "2.0.2" + "integrity" "sha512-EsFBshs5RUUpQEY1D4q/m59kMfz4YJvxuNCJcv/jWwOJr34EaVnG11ZrZa0UHB3wnzV1wx8m58T4hQL8IuNXlQ==" + "resolved" "https://registry.npmjs.org/object.fromentries/-/object.fromentries-2.0.4.tgz" + "version" "2.0.4" dependencies: + "call-bind" "^1.0.2" "define-properties" "^1.1.3" - "es-abstract" "^1.17.0-next.1" - "function-bind" "^1.1.1" + "es-abstract" "^1.18.0-next.2" "has" "^1.0.3" "object.pick@^1.3.0": @@ -5741,14 +5772,13 @@ "isobject" "^3.0.1" "object.values@^1.1.1": - "integrity" "sha512-WTa54g2K8iu0kmS/us18jEmdv1a4Wi//BZ/DTVYEcH0XhLM5NYdpDHja3gt57VrZLcNAO2WGA+KpWsDBaHt6eA==" - "resolved" "https://registry.npmjs.org/object.values/-/object.values-1.1.1.tgz" - "version" "1.1.1" + "integrity" "sha512-TnGo7j4XSnKQoK3MfvkzqKCi0nVe/D9I9IjwTNYdb/fxYHpjrluHVOgw0AF6jrRFGMPHdfuidR09tIDiIvnaSg==" + "resolved" "https://registry.npmjs.org/object.values/-/object.values-1.1.4.tgz" + "version" "1.1.4" dependencies: + "call-bind" "^1.0.2" "define-properties" "^1.1.3" - "es-abstract" "^1.17.0-next.1" - "function-bind" "^1.1.1" - "has" "^1.0.3" + "es-abstract" "^1.18.2" "on-finished@~2.3.0": "integrity" "sha1-IPEzZIGwg811M3mSoWlxqi2QaUc=" @@ -5777,9 +5807,9 @@ "mimic-fn" "^1.0.0" "onetime@^5.1.0": - "integrity" "sha512-ZpZpjcJeugQfWsfyQlshVoowIIQ1qBGSVll4rfDq6JJVO//fesjoX808hXWfBjY+ROZgpKDI5TRSRBSoJiZ8eg==" - "resolved" "https://registry.npmjs.org/onetime/-/onetime-5.1.1.tgz" - "version" "5.1.1" + "integrity" "sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==" + "resolved" "https://registry.npmjs.org/onetime/-/onetime-5.1.2.tgz" + "version" "5.1.2" dependencies: "mimic-fn" "^2.1.0" @@ -5835,14 +5865,14 @@ "version" "1.1.0" "p-cancelable@^2.0.0": - "integrity" "sha512-wvPXDmbMmu2ksjkB4Z3nZWTSkJEb9lqVdMaCKpZUGJG9TMiNp9XcbG3fn9fPKjem04fJMJnXoyFPk2FmgiaiNg==" - "resolved" "https://registry.npmjs.org/p-cancelable/-/p-cancelable-2.0.0.tgz" - "version" "2.0.0" + "integrity" "sha512-BZOr3nRQHOntUjTrH8+Lh54smKHoHyur8We1V8DSMVrl5A2malOOwuJRnKRDjSnkoeBh4at6BwEnb5I7Jl31wg==" + "resolved" "https://registry.npmjs.org/p-cancelable/-/p-cancelable-2.1.1.tgz" + "version" "2.1.1" "p-each-series@^2.1.0": - "integrity" "sha512-ZuRs1miPT4HrjFa+9fRfOFXxGJfORgelKV9f9nNOWw2gl6gVsRaVDOQP0+MI0G0wGKns1Yacsu0GjOFbTK0JFQ==" - "resolved" "https://registry.npmjs.org/p-each-series/-/p-each-series-2.1.0.tgz" - "version" "2.1.0" + "integrity" "sha512-ycIL2+1V32th+8scbpTvyHNaHe02z0sjgh91XXjAk+ZeXoPN4Z46DVUnzdso0aX4KckKw0FNNFHdjZ2UsZvxiA==" + "resolved" "https://registry.npmjs.org/p-each-series/-/p-each-series-2.2.0.tgz" + "version" "2.2.0" "p-finally@^1.0.0": "integrity" "sha1-P7z7FbiZpEEjs0ttzBi3JDNqLK4=" @@ -5896,13 +5926,13 @@ "json-parse-better-errors" "^1.0.1" "parse-json@^5.0.0": - "integrity" "sha512-ztoZ4/DYeXQq4E21v169sC8qWINGpcosGv9XhTDvg9/hWvx/zrFkc9BiWxR58OJLHGk28j5BL0SDLeV2WmFZlQ==" - "resolved" "https://registry.npmjs.org/parse-json/-/parse-json-5.0.1.tgz" - "version" "5.0.1" + "integrity" "sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==" + "resolved" "https://registry.npmjs.org/parse-json/-/parse-json-5.2.0.tgz" + "version" "5.2.0" dependencies: "@babel/code-frame" "^7.0.0" "error-ex" "^1.3.1" - "json-parse-better-errors" "^1.0.1" + "json-parse-even-better-errors" "^2.3.0" "lines-and-columns" "^1.1.6" "parse-node-version@^1.0.0": @@ -5945,25 +5975,30 @@ "resolved" "https://registry.npmjs.org/path-key/-/path-key-2.0.1.tgz" "version" "2.0.1" -"path-key@^3.0.0", "path-key@^3.1.0": +"path-key@^3.0.0": + "integrity" "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==" + "resolved" "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz" + "version" "3.1.1" + +"path-key@^3.1.0": "integrity" "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==" "resolved" "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz" "version" "3.1.1" "path-parse@^1.0.6": - "integrity" "sha512-GSmOT2EbHrINBf9SR7CDELwlJ8AENk3Qn7OikK4nFYAu3Ote2+JYNVvkpAEQm3/TLNEJFD/xZJjzyxg3KBWOzw==" - "resolved" "https://registry.npmjs.org/path-parse/-/path-parse-1.0.6.tgz" - "version" "1.0.6" + "integrity" "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==" + "resolved" "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz" + "version" "1.0.7" "performance-now@^2.1.0": "integrity" "sha1-Ywn04OX6kT7BxpMHrjZLSzd8nns=" "resolved" "https://registry.npmjs.org/performance-now/-/performance-now-2.1.0.tgz" "version" "2.1.0" -"picomatch@^2.0.4", "picomatch@^2.0.5": - "integrity" "sha512-q0M/9eZHzmr0AulXyPwNfZjtwZ/RBZlbN3K3CErVrk50T2ASYI7Bye0EvekFY3IP1Nt2DHu0re+V2ZHIpMkuWg==" - "resolved" "https://registry.npmjs.org/picomatch/-/picomatch-2.2.2.tgz" - "version" "2.2.2" +"picomatch@^2.0.4", "picomatch@^2.2.3": + "integrity" "sha512-lY1Q/PiJGC2zOv/z391WOTD+Z02bCgsFfvxoXXf6h7kv9o+WmsmzYqrAwY63sNgOxE4xEdq0WyUnXfKeBrSvYw==" + "resolved" "https://registry.npmjs.org/picomatch/-/picomatch-2.3.0.tgz" + "version" "2.3.0" "pify@^4.0.1": "integrity" "sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g==" @@ -5992,13 +6027,13 @@ "find-up" "^4.0.0" "plist@^3.0.1": - "integrity" "sha512-GpgvHHocGRyQm74b6FWEZZVRroHKE1I0/BTjAmySaohK+cUn+hZpbqXkc3KWgW3gQYkqcQej35FohcT0FRlkRQ==" - "resolved" "https://registry.npmjs.org/plist/-/plist-3.0.1.tgz" - "version" "3.0.1" + "integrity" "sha512-MSrkwZBdQ6YapHy87/8hDU8MnIcyxBKjeF+McXnr5A9MtffPewTs7G3hlpodT5TacyfIyFTaJEhh3GGcmasTgQ==" + "resolved" "https://registry.npmjs.org/plist/-/plist-3.0.2.tgz" + "version" "3.0.2" dependencies: - "base64-js" "^1.2.3" + "base64-js" "^1.5.1" "xmlbuilder" "^9.0.7" - "xmldom" "0.1.x" + "xmldom" "^0.5.0" "plugin-error@^0.1.2": "integrity" "sha1-O5uzM1zPAPQl4HQ34ZJ2ln2kes4=" @@ -6044,11 +6079,11 @@ "fast-diff" "^1.1.2" "prettier@^2.0.2": - "integrity" "sha512-7PtVymN48hGcO4fGjybyBSIWDsLU4H4XlvOHfq91pz9kkGlonzwTfYkaIEwiRg/dAJF9YlbsduBAgtYLi+8cFg==" - "resolved" "https://registry.npmjs.org/prettier/-/prettier-2.0.5.tgz" - "version" "2.0.5" + "integrity" "sha512-p+vNbgpLjif/+D+DwAZAbndtRrR0md0MwfmOVN9N+2RgyACMT+7tfaRnT+WDPkqnuVwleyuBIG2XBxKDme3hPA==" + "resolved" "https://registry.npmjs.org/prettier/-/prettier-2.3.1.tgz" + "version" "2.3.1" -"pretty-format@^24.7.0", "pretty-format@^24.9.0": +"pretty-format@^24.9.0": "integrity" "sha512-00ZMZUiHaJrNfk33guavqgvfJS30sLYf0f8+Srklv0AMPodGGHcoHgksZ3OThYnIvOd+8yMCn0YiEOogjlgsnA==" "resolved" "https://registry.npmjs.org/pretty-format/-/pretty-format-24.9.0.tgz" "version" "24.9.0" @@ -6058,27 +6093,7 @@ "ansi-styles" "^3.2.0" "react-is" "^16.8.4" -"pretty-format@^25.1.0": - "integrity" "sha512-kbo/kq2LQ/A/is0PQwsEHM7Ca6//bGPPvU6UnsdDRSKTWxT/ru/xb88v4BJf6a69H+uTytOEsTusT9ksd/1iWQ==" - "resolved" "https://registry.npmjs.org/pretty-format/-/pretty-format-25.5.0.tgz" - "version" "25.5.0" - dependencies: - "@jest/types" "^25.5.0" - "ansi-regex" "^5.0.0" - "ansi-styles" "^4.0.0" - "react-is" "^16.12.0" - -"pretty-format@^25.2.0": - "integrity" "sha512-kbo/kq2LQ/A/is0PQwsEHM7Ca6//bGPPvU6UnsdDRSKTWxT/ru/xb88v4BJf6a69H+uTytOEsTusT9ksd/1iWQ==" - "resolved" "https://registry.npmjs.org/pretty-format/-/pretty-format-25.5.0.tgz" - "version" "25.5.0" - dependencies: - "@jest/types" "^25.5.0" - "ansi-regex" "^5.0.0" - "ansi-styles" "^4.0.0" - "react-is" "^16.12.0" - -"pretty-format@^25.5.0": +"pretty-format@^25.1.0", "pretty-format@^25.2.0", "pretty-format@^25.5.0": "integrity" "sha512-kbo/kq2LQ/A/is0PQwsEHM7Ca6//bGPPvU6UnsdDRSKTWxT/ru/xb88v4BJf6a69H+uTytOEsTusT9ksd/1iWQ==" "resolved" "https://registry.npmjs.org/pretty-format/-/pretty-format-25.5.0.tgz" "version" "25.5.0" @@ -6113,14 +6128,14 @@ "asap" "~2.0.6" "prompts@^2.0.1": - "integrity" "sha512-Q06uKs2CkNYVID0VqwfAl9mipo99zkBv/n2JtWY89Yxa3ZabWSrs0e2KTudKVa3peLUvYXMefDqIleLPVUBZMA==" - "resolved" "https://registry.npmjs.org/prompts/-/prompts-2.3.2.tgz" - "version" "2.3.2" + "integrity" "sha512-EQyfIuO2hPDsX1L/blblV+H7I0knhgAd82cVneCwcdND9B8AuCDuRcBH6yIcG4dFzlOUqbazQqwGjx5xmsNLuQ==" + "resolved" "https://registry.npmjs.org/prompts/-/prompts-2.4.1.tgz" + "version" "2.4.1" dependencies: "kleur" "^3.0.3" - "sisteransi" "^1.0.4" + "sisteransi" "^1.0.5" -"prop-types@^15.5.10", "prop-types@^15.6.2", "prop-types@^15.7.2": +"prop-types@^15.6.2", "prop-types@^15.7.2": "integrity" "sha512-8QQikdH7//R2vurIJSutZ1smHYTcLpRWEOlHnzcWHmBYrOGUysKwSsrC89BCiFj3CbrfJ/nXFdJepOVrY1GCHQ==" "resolved" "https://registry.npmjs.org/prop-types/-/prop-types-15.7.2.tgz" "version" "15.7.2" @@ -6172,7 +6187,12 @@ "split-on-first" "^1.0.0" "strict-uri-encode" "^2.0.0" -"querystring@^0.2.0", "querystring@0.2.0": +"querystring@^0.2.0": + "integrity" "sha512-wkvS7mL/JMugcup3/rMitHmd9ecIGd2lhFhK9N3UUQ450h66d1r3Y9nvXzQAW1Lq+wyx61k/1pfKS5KuKiyEbg==" + "resolved" "https://registry.npmjs.org/querystring/-/querystring-0.2.1.tgz" + "version" "0.2.1" + +"querystring@0.2.0": "integrity" "sha1-sgmEkgO7Jd+CDadW50cAWHhSFiA=" "resolved" "https://registry.npmjs.org/querystring/-/querystring-0.2.0.tgz" "version" "0.2.0" @@ -6188,26 +6208,34 @@ "version" "1.2.1" "react-devtools-core@^4.6.0": - "integrity" "sha512-sXbBjGAWcf9HAblTP/zMtFhGHqxAfIR+GPxONZsSGN9FHnF4635dx1s2LdQWG9rJ+Ehr3nWg+BUAB6P78my5PA==" - "resolved" "https://registry.npmjs.org/react-devtools-core/-/react-devtools-core-4.10.1.tgz" - "version" "4.10.1" + "integrity" "sha512-k+P5VSKM6P22Go9IQ8dJmjj9fbztvKt1iRDI/4wS5oTvd1EnytIJMYB59wZt+D3kgp64jklNX/MRmY42xAQ08g==" + "resolved" "https://registry.npmjs.org/react-devtools-core/-/react-devtools-core-4.13.5.tgz" + "version" "4.13.5" dependencies: "shell-quote" "^1.6.1" "ws" "^7" +"react-i18next@^11.11.3": + "integrity" "sha512-upzG5/SpyOlYP5oSF4K8TZBvDWVhnCo38JNV+KnWjrg0+IaJCBltyh6lRGZDO5ovLyA4dU6Ip0bwbUCjb6Yyxw==" + "resolved" "https://registry.npmjs.org/react-i18next/-/react-i18next-11.11.3.tgz" + "version" "11.11.3" + dependencies: + "@babel/runtime" "^7.14.5" + "html-parse-stringify" "^3.0.1" + "react-is@^16.12.0", "react-is@^16.13.0", "react-is@^16.7.0", "react-is@^16.8.1", "react-is@^16.8.4", "react-is@^16.8.6": "integrity" "sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==" "resolved" "https://registry.npmjs.org/react-is/-/react-is-16.13.1.tgz" "version" "16.13.1" "react-native-elements@^2.2.0": - "integrity" "sha512-OkXH96ecqDFcrjxzOWw2h3nt8TxX1ghzvJ/W4OGaxm7u7LC0LzE3SMAx/rh/Zyp/jkdXap032ZLm1mSrxrBuuQ==" - "resolved" "https://registry.npmjs.org/react-native-elements/-/react-native-elements-2.2.0.tgz" - "version" "2.2.0" + "integrity" "sha512-HygYYmq8JYjk/YYiUwr/64qT64H2xlPBz0JnkGTQwvnnyXZrfkHFopw8rLWCupv3iLLPDzVohvPs0Z5HLdonSQ==" + "resolved" "https://registry.npmjs.org/react-native-elements/-/react-native-elements-2.3.2.tgz" + "version" "2.3.2" dependencies: "@types/react-native-vector-icons" "^6.4.5" "color" "^3.1.0" - "deepmerge" "^3.1.0" + "deepmerge" "^4.2.2" "hoist-non-react-statics" "^3.1.0" "lodash.isequal" "^4.5.0" "opencollective-postinstall" "^2.0.0" @@ -6226,10 +6254,10 @@ "invariant" "^2.2.4" "prop-types" "^15.7.2" -"react-native-iphone-x-helper@^1.2.1": - "integrity" "sha512-/VbpIEp8tSNNHIvstuA3Swx610whci1Zpc9mqNkqn14DkMbw+ORviln2u0XyHG1kPvvwTNGZY6QpeFwxYaSdbQ==" - "resolved" "https://registry.npmjs.org/react-native-iphone-x-helper/-/react-native-iphone-x-helper-1.2.1.tgz" - "version" "1.2.1" +"react-native-iphone-x-helper@^1.3.0": + "integrity" "sha512-HOf0jzRnq2/aFUcdCJ9w9JGzN3gdEg0zFE4FyYlp4jtidqU03D5X7ZegGKfT1EWteR0gPBGp9ye5T5FvSWi9Yg==" + "resolved" "https://registry.npmjs.org/react-native-iphone-x-helper/-/react-native-iphone-x-helper-1.3.1.tgz" + "version" "1.3.1" "react-native-linear-gradient@^2.5.6": "integrity" "sha512-HDwEaXcQIuXXCV70O+bK1rizFong3wj+5Q/jSyifKFLg0VWF95xh8XQgfzXwtq0NggL9vNjPKXa016KuFu+VFg==" @@ -6241,13 +6269,18 @@ "resolved" "https://registry.npmjs.org/react-native-locale-detector/-/react-native-locale-detector-1.0.1.tgz" "version" "1.0.1" +"react-native-localize@^2.1.1": + "integrity" "sha512-+uyz2/b0vyLq19fcb7r1qU1gqmzbp3aC6EMTvOVXwfBuiN+aJXR/fDdFOJJ8D7+bLccKeuS2zBDrazh+ZayX/g==" + "resolved" "https://registry.npmjs.org/react-native-localize/-/react-native-localize-2.1.1.tgz" + "version" "2.1.1" + "react-native-ratings@^7.2.0": - "integrity" "sha512-oSrkQ4rnpYjCw+d6MPJQghXfrfb3uQKoTJx1exdk7xqzw4jnv3pyu0PAuxCDJk/rfDSD/sirIAudz+zdGxrBog==" - "resolved" "https://registry.npmjs.org/react-native-ratings/-/react-native-ratings-7.2.0.tgz" - "version" "7.2.0" + "integrity" "sha512-V3y19iIifwemMr87KfovFIIzy/Rotqcds9k+ECaayQvrlucm/mXFC69R8xl/NivEdnxX7K87iurigByhpE37EQ==" + "resolved" "https://registry.npmjs.org/react-native-ratings/-/react-native-ratings-7.6.1.tgz" + "version" "7.6.1" dependencies: - "lodash" "^4.17.4" - "prop-types" "^15.5.10" + "lodash" "^4.17.15" + "prop-types" "^15.7.2" "react-native-safe-area-context@^3.2.0": "integrity" "sha512-k2Nty4PwSnrg9HwrYeeE+EYqViYJoOFwEy9LxL5RIRfoqxAq/uQXNGwpUg2/u4gnKpBbEPa9eRh15KKMe/VHkA==" @@ -6267,36 +6300,41 @@ "version" "3.2.0" "react-native-status-bar-height@^2.5.0": - "integrity" "sha512-sYBCPYA/NapBSHkdm/IVL4ID3LLlIuLqINi2FBDyMkc2BU9pfSGOtkz9yfxoK39mYJuTrlTOQ7mManARUsYDSA==" - "resolved" "https://registry.npmjs.org/react-native-status-bar-height/-/react-native-status-bar-height-2.5.0.tgz" - "version" "2.5.0" + "integrity" "sha512-z3SGLF0mHT+OlJDq7B7h/jXPjWcdBT3V14Le5L2PjntjjWM3+EJzq2BcXDwV+v67KFNJic5pgA26cCmseYek6w==" + "resolved" "https://registry.npmjs.org/react-native-status-bar-height/-/react-native-status-bar-height-2.6.0.tgz" + "version" "2.6.0" "react-native-vector-icons@^7.0.0": - "integrity" "sha512-Ku8+dTUAnR9pexRPQqsUcQEZlxEpFZsIy8iOFqVL/3mrUyncZJHtqJyx2cUOmltZIC6W2GI4IkD3EYzPerXV5g==" - "resolved" "https://registry.npmjs.org/react-native-vector-icons/-/react-native-vector-icons-7.0.0.tgz" - "version" "7.0.0" + "integrity" "sha512-V2a1zJ4i+kS8O4j183gIwX14St9AxxXabxwYpFBgRhvr2NDXyFcjHDEAgrOYYlt2W57e20aN1tBDU/I+wn9WtQ==" + "resolved" "https://registry.npmjs.org/react-native-vector-icons/-/react-native-vector-icons-7.1.0.tgz" + "version" "7.1.0" dependencies: - "lodash" "^4.17.15" + "lodash.frompairs" "^4.0.1" + "lodash.isequal" "^4.5.0" + "lodash.isstring" "^4.0.1" + "lodash.omit" "^4.5.0" + "lodash.pick" "^4.4.0" + "lodash.template" "^4.5.0" "prop-types" "^15.7.2" "yargs" "^15.0.2" "react-native-webview@^11.0.2": - "integrity" "sha512-GDyIBRbCZ2wbMUGCxA7LufSEbSoWKOzkFB8YljmAffA15tzN6ccvGEquB/hkk5KhvoYy300kwJyEmyBeG6d/AA==" - "resolved" "https://registry.npmjs.org/react-native-webview/-/react-native-webview-11.0.2.tgz" - "version" "11.0.2" + "integrity" "sha512-ahW9KL/iBooDRdQwBgPEWOl5Awjwvmo5FtV83WzbgUpQxDJ+ZRzZDpbmwcjLtd6R67yWg6dk1inqKQTrmkWiXQ==" + "resolved" "https://registry.npmjs.org/react-native-webview/-/react-native-webview-11.6.4.tgz" + "version" "11.6.4" dependencies: "escape-string-regexp" "2.0.0" "invariant" "2.2.4" -"react-native@*", "react-native@^0.63.2", "react-native@>=0.57": - "integrity" "sha512-MkxHeJorUDzmQwKJrTfrFYMDRLyu9GSBpsFFMDX7X+HglVnaZi3CTzW2mRv1eIcazoseBOP2eJe+bnkyLl8Y2A==" - "resolved" "https://registry.npmjs.org/react-native/-/react-native-0.63.2.tgz" - "version" "0.63.2" +"react-native@^0.63.2": + "integrity" "sha512-I4kM8kYO2mWEYUFITMcpRulcy4/jd+j9T6PbIzR0FuMcz/xwd+JwHoLPa1HmCesvR1RDOw9o4D+OFLwuXXfmGw==" + "resolved" "https://registry.npmjs.org/react-native/-/react-native-0.63.4.tgz" + "version" "0.63.4" dependencies: "@babel/runtime" "^7.0.0" - "@react-native-community/cli" "^4.7.0" - "@react-native-community/cli-platform-android" "^4.7.0" - "@react-native-community/cli-platform-ios" "^4.7.0" + "@react-native-community/cli" "^4.10.0" + "@react-native-community/cli-platform-android" "^4.10.0" + "@react-native-community/cli-platform-ios" "^4.10.0" "abort-controller" "^3.0.0" "anser" "^1.4.9" "base64-js" "^1.1.2" @@ -6336,7 +6374,7 @@ "react-is" "^16.8.6" "scheduler" "^0.19.1" -"react@*", "react@>=16.0", "react@16.13.1": +"react@16.13.1": "integrity" "sha512-YMZQQq32xHLX0bz5Mnibv1/LHb3Sqzngu7xstSM+vrkE5Kzr9xE0yMByK5kMoTK30YVJE61WfbxIFFvfeDKT1w==" "resolved" "https://registry.npmjs.org/react/-/react-16.13.1.tgz" "version" "16.13.1" @@ -6390,9 +6428,9 @@ "regenerate" "^1.4.0" "regenerate@^1.4.0": - "integrity" "sha512-j2+C8+NtXQgEKWk49MMP5P/u2GhnahTtVkRIHr5R5lVRlbKvmQ+oS+A5aLKWp2ma5VkT8sh6v+v4hbH0YHR66A==" - "resolved" "https://registry.npmjs.org/regenerate/-/regenerate-1.4.1.tgz" - "version" "1.4.1" + "integrity" "sha512-zrceR/XhGYU/d/opr2EKO7aRHUeiBI8qjtfHqADTwZd6Szfy16la6kqD0MIUs5z5hx6AaKa+PixpPrR289+I0A==" + "resolved" "https://registry.npmjs.org/regenerate/-/regenerate-1.4.2.tgz" + "version" "1.4.2" "regenerator-runtime@^0.13.2", "regenerator-runtime@^0.13.4": "integrity" "sha512-a54FxoJDIr27pgf7IgeQGxmqUNYrcV338lf/6gH456HZ/PhX+5BcwHXG9ajESmwe6WRO0tAzRUrRmNONWgkrew==" @@ -6414,13 +6452,13 @@ "extend-shallow" "^3.0.2" "safe-regex" "^1.1.0" -"regexp.prototype.flags@^1.3.0": - "integrity" "sha512-2+Q0C5g951OlYlJz6yu5/M33IcsESLlLfsyIaLJaG4FA2r4yP8MvVMJUUP/fVBkSpbbbZlS5gynbEWLipiiXiQ==" - "resolved" "https://registry.npmjs.org/regexp.prototype.flags/-/regexp.prototype.flags-1.3.0.tgz" - "version" "1.3.0" +"regexp.prototype.flags@^1.3.1": + "integrity" "sha512-JiBdRBq91WlY7uRJ0ds7R+dU02i6LKi8r3BuQhNXn+kmeLN+EfHhfjqMRis1zJxnlu88hq/4dx0P2OP3APRTOA==" + "resolved" "https://registry.npmjs.org/regexp.prototype.flags/-/regexp.prototype.flags-1.3.1.tgz" + "version" "1.3.1" dependencies: + "call-bind" "^1.0.2" "define-properties" "^1.1.3" - "es-abstract" "^1.17.0-next.1" "regexpp@^2.0.1": "integrity" "sha512-lv0M6+TkDVniA3aD1Eg0DVpfU/booSu7Eev3TDO/mZKHBfVjgCGTV4t4buppESEYDtkArYFOxTJWv6S5C+iaNw==" @@ -6428,14 +6466,14 @@ "version" "2.0.1" "regexpp@^3.0.0": - "integrity" "sha512-ZOIzd8yVsQQA7j8GCSlPGXwg5PfmA1mrq0JP4nGhh54LaKN3xdai/vHUDu74pKwV8OxseMS65u2NImosQcSD0Q==" - "resolved" "https://registry.npmjs.org/regexpp/-/regexpp-3.1.0.tgz" - "version" "3.1.0" + "integrity" "sha512-pq2bWo9mVD43nbts2wGv17XLiNLya+GklZ8kaDLV2Z08gDCsGpnKn9BFMepvWuHCbyVvY7J5o5+BVvoQbmlJLg==" + "resolved" "https://registry.npmjs.org/regexpp/-/regexpp-3.2.0.tgz" + "version" "3.2.0" -"regexpu-core@^4.7.0": - "integrity" "sha512-TQ4KXRnIn6tz6tjnrXEkD/sshygKH/j5KzK86X8MkeHyZ8qst/LZ89j3X4/8HEIfHANTFIP/AbXakeRhWIl5YQ==" - "resolved" "https://registry.npmjs.org/regexpu-core/-/regexpu-core-4.7.0.tgz" - "version" "4.7.0" +"regexpu-core@^4.7.1": + "integrity" "sha512-ywH2VUraA44DZQuRKzARmw6S66mr48pQVva4LBeRhcOltJ6hExvWly5ZjFLYo67xbIxb6W1q4bAGtgfEl20zfQ==" + "resolved" "https://registry.npmjs.org/regexpu-core/-/regexpu-core-4.7.1.tgz" + "version" "4.7.1" dependencies: "regenerate" "^1.4.0" "regenerate-unicode-properties" "^8.2.0" @@ -6450,9 +6488,9 @@ "version" "0.5.2" "regjsparser@^0.6.4": - "integrity" "sha512-64O87/dPDgfk8/RQqC4gkZoGyyWFIEUTTh80CU6CWuK5vkCGyekIx+oKcEIYtP/RAxSQltCZHCNu/mdd7fqlJw==" - "resolved" "https://registry.npmjs.org/regjsparser/-/regjsparser-0.6.4.tgz" - "version" "0.6.4" + "integrity" "sha512-ZqbNRz1SNjLAiYuwY0zoXW8Ne675IX5q+YHioAGbCw4X96Mjl2+dcX9B2ciaeyYjViDAfvIjFpQjJgLttTEERQ==" + "resolved" "https://registry.npmjs.org/regjsparser/-/regjsparser-0.6.9.tgz" + "version" "0.6.9" dependencies: "jsesc" "~0.5.0" @@ -6462,9 +6500,9 @@ "version" "1.1.0" "repeat-element@^1.1.2": - "integrity" "sha512-ahGq0ZnV5m5XtZLMb+vP76kcAM5nkLqk0lpqAuojSKGgQtn4eRi4ZZGm2olo2zKFH+sMsWaqOCW1dqAnOru72g==" - "resolved" "https://registry.npmjs.org/repeat-element/-/repeat-element-1.1.3.tgz" - "version" "1.1.3" + "integrity" "sha512-LFiNfRcSu7KK3evMyYOuCzv3L10TW7yC1G2/+StMjK8Y6Vqd2MG7r/Qjw4ghtuCOjFvlnms/iMmLqpvW/ES/WQ==" + "resolved" "https://registry.npmjs.org/repeat-element/-/repeat-element-1.1.4.tgz" + "version" "1.1.4" "repeat-string@^1.6.1": "integrity" "sha1-jcrkcOHIirwtYA//Sndihtp15jc=" @@ -6524,9 +6562,9 @@ "version" "2.0.0" "resolve-alpn@^1.0.0": - "integrity" "sha512-rTuiIEqFmGxne4IovivKSDzld2lWW9QCjqv80SYjPgf+gS35eaCAjaP54CCwGAwBtnCsvNLYtqxe1Nw+i6JEmA==" - "resolved" "https://registry.npmjs.org/resolve-alpn/-/resolve-alpn-1.0.0.tgz" - "version" "1.0.0" + "integrity" "sha512-8OyfzhAtA32LVUsJSke3auIyINcwdh5l3cvYKdKO0nvsYSKuiLfTM5i78PJswFPT8y6cPW+L1v6/hE95chcpDA==" + "resolved" "https://registry.npmjs.org/resolve-alpn/-/resolve-alpn-1.1.2.tgz" + "version" "1.1.2" "resolve-cwd@^3.0.0": "integrity" "sha512-OrZaX2Mb+rJCpH/6CpSqt9xFVpN++x01XnN2ie9g6P5/3xelLAkXWVADpdz1IHD/KFfEXyE6V0U01OQ3UO2rEg==" @@ -6555,11 +6593,12 @@ "resolved" "https://registry.npmjs.org/resolve-url/-/resolve-url-0.2.1.tgz" "version" "0.2.1" -"resolve@^1.10.0", "resolve@^1.12.0", "resolve@^1.15.1", "resolve@^1.17.0", "resolve@^1.3.2", "resolve@^1.5.0", "resolve@^1.8.1": - "integrity" "sha512-ic+7JYiV8Vi2yzQGFWOkiZD5Z9z7O2Zhm9XMaTxdJExKasieFCr+yXZ/WmXsckHiKl12ar0y6XiXDx3m4RHn1w==" - "resolved" "https://registry.npmjs.org/resolve/-/resolve-1.17.0.tgz" - "version" "1.17.0" +"resolve@^1.10.0", "resolve@^1.12.0", "resolve@^1.14.2", "resolve@^1.15.1", "resolve@^1.17.0", "resolve@^1.3.2", "resolve@^1.5.0": + "integrity" "sha512-wENBPt4ySzg4ybFQW2TT1zMQucPK95HSh/nq2CFTZVOGut2+pQvSsgtda4d26YrYcr067wjbmzOG8byDPBX63A==" + "resolved" "https://registry.npmjs.org/resolve/-/resolve-1.20.0.tgz" + "version" "1.20.0" dependencies: + "is-core-module" "^2.2.0" "path-parse" "^1.0.6" "resolve@1.1.7": @@ -6602,10 +6641,10 @@ "resolved" "https://registry.npmjs.org/ret/-/ret-0.1.15.tgz" "version" "0.1.15" -"rimraf@^2.5.4": - "integrity" "sha512-uWjbaKIK3T1OSVptzX7Nl6PvQ3qAGtKEtVRjRuazjfL3Bx5eI409VZSqgND+4UNnmzLVdPj9FqFJNPqBZFve4w==" - "resolved" "https://registry.npmjs.org/rimraf/-/rimraf-2.7.1.tgz" - "version" "2.7.1" +"rimraf@^2.5.4", "rimraf@2.6.3": + "integrity" "sha512-mwqeW5XsA2qAejG46gYdENaxXjx9onRNCfn7L0duuP4hCuTIi/QO7PDK07KJfp1d+izWPrzEJDcSqBa0OZQriA==" + "resolved" "https://registry.npmjs.org/rimraf/-/rimraf-2.6.3.tgz" + "version" "2.6.3" dependencies: "glob" "^7.1.3" @@ -6621,13 +6660,6 @@ "resolved" "https://registry.npmjs.org/rimraf/-/rimraf-2.2.8.tgz" "version" "2.2.8" -"rimraf@2.6.3": - "integrity" "sha512-mwqeW5XsA2qAejG46gYdENaxXjx9onRNCfn7L0duuP4hCuTIi/QO7PDK07KJfp1d+izWPrzEJDcSqBa0OZQriA==" - "resolved" "https://registry.npmjs.org/rimraf/-/rimraf-2.6.3.tgz" - "version" "2.6.3" - dependencies: - "glob" "^7.1.3" - "rsvp@^4.8.4": "integrity" "sha512-nfMOlASu9OnRJo1mbEk2cz0D56a1MBNrJ7orjRZQG10XDyuvwksKbuXNp6qa+kbn839HwjwhBzhFmdsaEAfauA==" "resolved" "https://registry.npmjs.org/rsvp/-/rsvp-4.8.5.tgz" @@ -6650,17 +6682,10 @@ "resolved" "https://registry.npmjs.org/rx-lite/-/rx-lite-4.0.8.tgz" "version" "4.0.8" -"rxjs@^5.4.3": - "integrity" "sha512-xx2itnL5sBbqeeiVgNPVuQQ1nC8Jp2WfNJhXWHmElW9YmrpS9UVnNzhP3EH3HFqexO5Tlp8GhYY+WEcqcVMvGw==" - "resolved" "https://registry.npmjs.org/rxjs/-/rxjs-5.5.12.tgz" - "version" "5.5.12" - dependencies: - "symbol-observable" "1.0.1" - "rxjs@^6.6.0": - "integrity" "sha512-BHdBMVoWC2sL26w//BCu3YzKT4s2jip/WhwsGEDmeKYBhKDZeYezVUnHatYB7L85v5xs0BAQmg6BEYJEKxBabg==" - "resolved" "https://registry.npmjs.org/rxjs/-/rxjs-6.6.2.tgz" - "version" "6.6.2" + "integrity" "sha512-hTdwr+7yYNIT5n4AMYp85KA6yw2Va0FLa3Rguvbpa4W3I5xynaBZo41cM3XM+4Q6fRMj3sBYIR1VAmZMXYJvRQ==" + "resolved" "https://registry.npmjs.org/rxjs/-/rxjs-6.6.7.tgz" + "version" "6.6.7" dependencies: "tslib" "^1.9.0" @@ -6716,45 +6741,42 @@ "loose-envify" "^1.1.0" "object-assign" "^4.1.1" -"semver@^5.1.0": +"semver@^5.1.0", "semver@^5.4.1", "semver@^5.5.0", "semver@^5.6.0", "semver@2 || 3 || 4 || 5": "integrity" "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==" "resolved" "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz" "version" "5.7.1" -"semver@^5.4.1": - "integrity" "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==" - "resolved" "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz" - "version" "5.7.1" +"semver@^6.0.0": + "integrity" "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==" + "resolved" "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz" + "version" "6.3.0" -"semver@^5.5.0": - "integrity" "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==" - "resolved" "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz" - "version" "5.7.1" +"semver@^6.1.1": + "integrity" "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==" + "resolved" "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz" + "version" "6.3.0" -"semver@^5.5.1": - "integrity" "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==" - "resolved" "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz" - "version" "5.7.1" +"semver@^6.1.2": + "integrity" "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==" + "resolved" "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz" + "version" "6.3.0" -"semver@^5.6.0": - "integrity" "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==" - "resolved" "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz" - "version" "5.7.1" - -"semver@^6.0.0", "semver@^6.1.2", "semver@^6.3.0": +"semver@^6.3.0": "integrity" "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==" "resolved" "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz" "version" "6.3.0" "semver@^7.3.2": - "integrity" "sha512-OrOb32TeeambH6UrhtShmF7CRDqhL6/5XpPNp2DuRH6+9QLw/orhp72j87v8Qa1ScDkvrrBNpZcDejAirJmfXQ==" - "resolved" "https://registry.npmjs.org/semver/-/semver-7.3.2.tgz" - "version" "7.3.2" + "integrity" "sha512-PoeGJYh8HK4BTO/a9Tf6ZG3veo/A7ZVsYrSA6J8ny9nb3B1VrpkuN+z9OE5wfE5p6H4LchYZsegiQgbJD94ZFQ==" + "resolved" "https://registry.npmjs.org/semver/-/semver-7.3.5.tgz" + "version" "7.3.5" + dependencies: + "lru-cache" "^6.0.0" -"semver@2 || 3 || 4 || 5": - "integrity" "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==" - "resolved" "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz" - "version" "5.7.1" +"semver@7.0.0": + "integrity" "sha512-+GB6zVA9LWh6zovYQLALHwv5rb2PHGlJi3lfiqIHxR0uuwCgefcOJc59v9fv1w8GbStwxuuqqAjI9NMAOOgq1A==" + "resolved" "https://registry.npmjs.org/semver/-/semver-7.0.0.tgz" + "version" "7.0.0" "send@0.17.1": "integrity" "sha512-BsVKsiGcQMFwT8UxypobUKyv7irCNRHk1T0G680vk88yf6LBByGcZJOTJCrTP2xVN6yI+XjPJcNuE3V4fT9sAg==" @@ -6815,6 +6837,13 @@ "resolved" "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.1.1.tgz" "version" "1.1.1" +"shallow-clone@^3.0.0": + "integrity" "sha512-/6KqX+GVUdqPuPPd2LxDDxzX6CAbjJehAAOKlNpqqUpAqPM6HeL8f+o3a+JsyGjn2lv0WY8UsTgUJjU9Ok55NA==" + "resolved" "https://registry.npmjs.org/shallow-clone/-/shallow-clone-3.0.1.tgz" + "version" "3.0.1" + dependencies: + "kind-of" "^6.0.2" + "shebang-command@^1.2.0": "integrity" "sha1-RKrGW2lbAzmJaMOfNj/uXer98eo=" "resolved" "https://registry.npmjs.org/shebang-command/-/shebang-command-1.2.0.tgz" @@ -6854,13 +6883,14 @@ "resolved" "https://registry.npmjs.org/shellwords/-/shellwords-0.1.1.tgz" "version" "0.1.1" -"side-channel@^1.0.2": - "integrity" "sha512-7rL9YlPHg7Ancea1S96Pa8/QWb4BtXL/TZvS6B8XFetGBeuhAsfmUspK6DokBeZ64+Kj9TCNRD/30pVz1BvQNA==" - "resolved" "https://registry.npmjs.org/side-channel/-/side-channel-1.0.2.tgz" - "version" "1.0.2" +"side-channel@^1.0.4": + "integrity" "sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw==" + "resolved" "https://registry.npmjs.org/side-channel/-/side-channel-1.0.4.tgz" + "version" "1.0.4" dependencies: - "es-abstract" "^1.17.0-next.1" - "object-inspect" "^1.7.0" + "call-bind" "^1.0.0" + "get-intrinsic" "^1.0.2" + "object-inspect" "^1.9.0" "signal-exit@^3.0.0", "signal-exit@^3.0.2": "integrity" "sha512-VUJ49FC8U1OxwZLxIbTTrDvLnf/6TDgxZcK8wxR8zs13xpx7xbG60ndBlhNrFi2EMuFRoeDoJO7wthSLq42EjA==" @@ -6883,7 +6913,7 @@ dependencies: "is-arrayish" "^0.3.1" -"sisteransi@^1.0.4": +"sisteransi@^1.0.5": "integrity" "sha512-bLGGlR1QxBcynn2d5YmDX4MGjlZvy2MRBDRNHLJ8VI6l6+9FUiyTFNJ0IveOSP0bcXgVDPRcfGqA0pjaqUpfVg==" "resolved" "https://registry.npmjs.org/sisteransi/-/sisteransi-1.0.5.tgz" "version" "1.0.5" @@ -6907,11 +6937,6 @@ "astral-regex" "^1.0.0" "is-fullwidth-code-point" "^2.0.0" -"slide@^1.1.5": - "integrity" "sha1-VusCfWW00tzmyy4tMsTUr8nh1wc=" - "resolved" "https://registry.npmjs.org/slide/-/slide-1.1.6.tgz" - "version" "1.1.6" - "snapdragon-node@^2.0.1": "integrity" "sha512-O27l4xaMYt/RSQ5TR3vpWCAB5Kb/czIcqUFOM/C4fYcLnbZUc1PkjTAMjof2pBWaSTwOUd6qUHcFGVGj7aIwnw==" "resolved" "https://registry.npmjs.org/snapdragon-node/-/snapdragon-node-2.1.1.tgz" @@ -6962,9 +6987,9 @@ "source-map" "^0.6.0" "source-map-url@^0.4.0": - "integrity" "sha1-PpNdfd1zYxuXZZlW1VEo6HtQhKM=" - "resolved" "https://registry.npmjs.org/source-map-url/-/source-map-url-0.4.0.tgz" - "version" "0.4.0" + "integrity" "sha512-cPiFOTLUKvJFIg4SKVScy4ilPPW6rFgMgfuZJPNoDuMs3nC1HbMUycBoJw77xFIp6z1UJQJOfx6C9GMH80DiTw==" + "resolved" "https://registry.npmjs.org/source-map-url/-/source-map-url-0.4.1.tgz" + "version" "0.4.1" "source-map@^0.5.0", "source-map@^0.5.6": "integrity" "sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w=" @@ -7013,9 +7038,9 @@ "spdx-license-ids" "^3.0.0" "spdx-license-ids@^3.0.0": - "integrity" "sha512-J+FWzZoynJEXGphVIS+XEh3kFSjZX/1i9gFBaWQcB+/tmpe2qUsSBABpcxqxnAxFdiUFEgAX1bjYGQvIZmoz9Q==" - "resolved" "https://registry.npmjs.org/spdx-license-ids/-/spdx-license-ids-3.0.5.tgz" - "version" "3.0.5" + "integrity" "sha512-Ki212dKK4ogX+xDo4CtOZBVIwhsKBEfsEEcwmJfLQzirgc2jIWdzg40Unxz/HzEUqM1WFzVlQSMF9kZZ2HboLQ==" + "resolved" "https://registry.npmjs.org/spdx-license-ids/-/spdx-license-ids-3.0.9.tgz" + "version" "3.0.9" "split-on-first@^1.0.0": "integrity" "sha512-43ZssAJaMusuKWL8sKUBQXHWOpq8d6CfN/u1p4gUzfJkM05C8rxTmYrkIPTXapZpORA6LkkzcUulJ8FqA7Uudw==" @@ -7050,9 +7075,16 @@ "tweetnacl" "~0.14.0" "stack-utils@^1.0.1": - "integrity" "sha512-MTX+MeG5U994cazkjd/9KNAapsHnibjMLnfXodlkXw76JEea0UiNzrqidzo1emMwk7w5Qhc9jd4Bn9TBb1MFwA==" - "resolved" "https://registry.npmjs.org/stack-utils/-/stack-utils-1.0.2.tgz" - "version" "1.0.2" + "integrity" "sha512-KZiTzuV3CnSnSvgMRrARVCj+Ht7rMbauGDK0LdVFRGyenwdylpajAp4Q0i6SX8rEmbTpMMf6ryq2gb8pPq2WgQ==" + "resolved" "https://registry.npmjs.org/stack-utils/-/stack-utils-1.0.5.tgz" + "version" "1.0.5" + dependencies: + "escape-string-regexp" "^2.0.0" + +"stackframe@^1.1.1": + "integrity" "sha512-GrdeshiRmS1YLMYgzF16olf2jJ/IzxXY9lhKOskuVziubpTYcYqyOwYeJKzQkwy7uN0fYSsbsC4RQaXf9LCrYA==" + "resolved" "https://registry.npmjs.org/stackframe/-/stackframe-1.2.0.tgz" + "version" "1.2.0" "stacktrace-parser@^0.1.3": "integrity" "sha512-KJP1OCML99+8fhOHxwwzyWrlUuVX5GQ0ZpJTd1DFXhdkrvg1szxfHhawXUZ3g9TkXORQd4/WG68jMlQZ2p8wlg==" @@ -7122,41 +7154,43 @@ "strip-ansi" "^5.1.0" "string-width@^4.1.0", "string-width@^4.2.0": - "integrity" "sha512-zUz5JD+tgqtuDjMhwIg5uFVV3dtqZ9yQJlZVfq4I01/K5Paj5UHj7VyrQOJvzawSVlKpObApbfD0Ed6yJc+1eg==" - "resolved" "https://registry.npmjs.org/string-width/-/string-width-4.2.0.tgz" - "version" "4.2.0" + "integrity" "sha512-XBJbT3N4JhVumXE0eoLU9DCjcaF92KLNqTmFCnG1pf8duUxFGwtP6AD6nkjw9a3IdiRtL3E2w3JDiE/xi3vOeA==" + "resolved" "https://registry.npmjs.org/string-width/-/string-width-4.2.2.tgz" + "version" "4.2.2" dependencies: "emoji-regex" "^8.0.0" "is-fullwidth-code-point" "^3.0.0" "strip-ansi" "^6.0.0" "string.prototype.matchall@^4.0.2": - "integrity" "sha512-N/jp6O5fMf9os0JU3E72Qhf590RSRZU/ungsL/qJUYVTNv7hTG0P/dbPjxINVN9jpscu3nzYwKESU3P3RY5tOg==" - "resolved" "https://registry.npmjs.org/string.prototype.matchall/-/string.prototype.matchall-4.0.2.tgz" - "version" "4.0.2" + "integrity" "sha512-Z5ZaXO0svs0M2xd/6By3qpeKpLKd9mO4v4q3oMEQrk8Ck4xOD5d5XeBOOjGrmVZZ/AHB1S0CgG4N5r1G9N3E2Q==" + "resolved" "https://registry.npmjs.org/string.prototype.matchall/-/string.prototype.matchall-4.0.5.tgz" + "version" "4.0.5" dependencies: + "call-bind" "^1.0.2" "define-properties" "^1.1.3" - "es-abstract" "^1.17.0" - "has-symbols" "^1.0.1" - "internal-slot" "^1.0.2" - "regexp.prototype.flags" "^1.3.0" - "side-channel" "^1.0.2" + "es-abstract" "^1.18.2" + "get-intrinsic" "^1.1.1" + "has-symbols" "^1.0.2" + "internal-slot" "^1.0.3" + "regexp.prototype.flags" "^1.3.1" + "side-channel" "^1.0.4" -"string.prototype.trimend@^1.0.1": - "integrity" "sha512-LRPxFUaTtpqYsTeNKaFOw3R4bxIzWOnbQ837QfBylo8jIxtcbK/A/sMV7Q+OAV/vWo+7s25pOE10KYSjaSO06g==" - "resolved" "https://registry.npmjs.org/string.prototype.trimend/-/string.prototype.trimend-1.0.1.tgz" - "version" "1.0.1" +"string.prototype.trimend@^1.0.4": + "integrity" "sha512-y9xCjw1P23Awk8EvTpcyL2NIr1j7wJ39f+k6lvRnSMz+mz9CGz9NYPelDk42kOz6+ql8xjfK8oYzy3jAP5QU5A==" + "resolved" "https://registry.npmjs.org/string.prototype.trimend/-/string.prototype.trimend-1.0.4.tgz" + "version" "1.0.4" dependencies: + "call-bind" "^1.0.2" "define-properties" "^1.1.3" - "es-abstract" "^1.17.5" -"string.prototype.trimstart@^1.0.1": - "integrity" "sha512-XxZn+QpvrBI1FOcg6dIpxUPgWCPuNXvMD72aaRaUQv1eD4e/Qy8i/hFTe0BUmD60p/QA6bh1avmuPTfNjqVWRw==" - "resolved" "https://registry.npmjs.org/string.prototype.trimstart/-/string.prototype.trimstart-1.0.1.tgz" - "version" "1.0.1" +"string.prototype.trimstart@^1.0.4": + "integrity" "sha512-jh6e984OBfvxS50tdY2nRZnoC5/mLFKOREQfw8t5yytkoUsJRNxvI/E39qu1sD0OtWI3OC0XgKSmcWwziwYuZw==" + "resolved" "https://registry.npmjs.org/string.prototype.trimstart/-/string.prototype.trimstart-1.0.4.tgz" + "version" "1.0.4" dependencies: + "call-bind" "^1.0.2" "define-properties" "^1.1.3" - "es-abstract" "^1.17.5" "strip-ansi@^4.0.0": "integrity" "sha1-qEeQIusaw2iocTibY1JixQXuNo8=" @@ -7218,26 +7252,28 @@ dependencies: "has-flag" "^3.0.0" -"supports-color@^7.0.0", "supports-color@^7.1.0": - "integrity" "sha512-oRSIpR8pxT1Wr2FquTNnGet79b3BWljqOuoW/h4oBhxJ/HUbX5nX6JSruTkvXDCFMwDPvsaTTbvMLKZWSy0R5g==" - "resolved" "https://registry.npmjs.org/supports-color/-/supports-color-7.1.0.tgz" - "version" "7.1.0" +"supports-color@^7.0.0": + "integrity" "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==" + "resolved" "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz" + "version" "7.2.0" + dependencies: + "has-flag" "^4.0.0" + +"supports-color@^7.1.0": + "integrity" "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==" + "resolved" "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz" + "version" "7.2.0" dependencies: "has-flag" "^4.0.0" "supports-hyperlinks@^2.0.0": - "integrity" "sha512-zoE5/e+dnEijk6ASB6/qrK+oYdm2do1hjoLWrqUC/8WEIW1gbxFcKuBof7sW8ArN6e+AYvsE8HBGiVRWL/F5CA==" - "resolved" "https://registry.npmjs.org/supports-hyperlinks/-/supports-hyperlinks-2.1.0.tgz" - "version" "2.1.0" + "integrity" "sha512-6sXEzV5+I5j8Bmq9/vUphGRM/RJNT9SCURJLjwfOg51heRtguGWDzcaBlgAzKhQa0EVNpPEKzQuBwZ8S8WaCeQ==" + "resolved" "https://registry.npmjs.org/supports-hyperlinks/-/supports-hyperlinks-2.2.0.tgz" + "version" "2.2.0" dependencies: "has-flag" "^4.0.0" "supports-color" "^7.0.0" -"symbol-observable@1.0.1": - "integrity" "sha1-g0D8RwLDEi310iKI+IKD9RPT/dQ=" - "resolved" "https://registry.npmjs.org/symbol-observable/-/symbol-observable-1.0.1.tgz" - "version" "1.0.1" - "symbol-tree@^3.2.2": "integrity" "sha512-9QNk5KwDF+Bvz+PyObkmSYjI5ksVUYtjW7AU22r2NKcfLJcXp96hkDWU3+XndOsUb+AQ9QhfzfCT2O+CNWT5Tw==" "resolved" "https://registry.npmjs.org/symbol-tree/-/symbol-tree-3.2.4.tgz" @@ -7415,14 +7451,14 @@ "axios" "^0.20.0" "tslib@^1.8.1", "tslib@^1.9.0": - "integrity" "sha512-i/6DQjL8Xf3be4K/E6Wgpekn5Qasl1usyw++dAA35Ue5orEn65VIxOA+YvNNl9HV3qv70T7CNwjODHZrLwvd1Q==" - "resolved" "https://registry.npmjs.org/tslib/-/tslib-1.13.0.tgz" - "version" "1.13.0" + "integrity" "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==" + "resolved" "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz" + "version" "1.14.1" "tsutils@^3.17.1": - "integrity" "sha512-kzeQ5B8H3w60nFY2g8cJIuH7JDpsALXySGtwGJ0p2LSjLgay3NdIpqq5SoOBe46bKDW2iq25irHCr8wjomUS2g==" - "resolved" "https://registry.npmjs.org/tsutils/-/tsutils-3.17.1.tgz" - "version" "3.17.1" + "integrity" "sha512-mHKK3iUXL+3UF6xL5k0PEhKRUBKPBCv/+RkEOpjRWxxx27KKRBmmA60A9pgOUvMi8GKhRMPEmjBRPzs2W7O1OA==" + "resolved" "https://registry.npmjs.org/tsutils/-/tsutils-3.21.0.tgz" + "version" "3.21.0" dependencies: "tslib" "^1.8.1" @@ -7450,10 +7486,10 @@ "resolved" "https://registry.npmjs.org/type-detect/-/type-detect-4.0.8.tgz" "version" "4.0.8" -"type-fest@^0.11.0": - "integrity" "sha512-OdjXJxnCN1AvyLSzeKIgXTXxV+99ZuXl3Hpo9XpJAv9MBcHrrJOQ5kV7ypXOuQie+AmWG25hLbiKdwYTifzcfQ==" - "resolved" "https://registry.npmjs.org/type-fest/-/type-fest-0.11.0.tgz" - "version" "0.11.0" +"type-fest@^0.21.3": + "integrity" "sha512-t0rzBq87m3fVcduHDUFhKmyyX+9eo6WQjZvf51Ea/M0Q7+T374Jp1aUiyUl0GKxp8M/OETVHSDvmkyPgvX+X2w==" + "resolved" "https://registry.npmjs.org/type-fest/-/type-fest-0.21.3.tgz" + "version" "0.21.3" "type-fest@^0.6.0": "integrity" "sha512-q+MB8nYR1KDLrgr4G5yemftpMC7/QLqVndBmEEdqzmNj5dcFOO4Oo8qlwZE3ULT3+Zim1F8Kq4cBnikNhlCMlg==" @@ -7483,9 +7519,9 @@ "version" "0.0.6" "ua-parser-js@^0.7.18": - "integrity" "sha512-+O8/qh/Qj8CgC6eYBVBykMrNtp5Gebn4dlGD/kKXVkJNDwyrAwSIqwz8CDf+tsAIWVycKcku6gIXJ0qwx/ZXaQ==" - "resolved" "https://registry.npmjs.org/ua-parser-js/-/ua-parser-js-0.7.21.tgz" - "version" "0.7.21" + "integrity" "sha512-6Gurc1n//gjp9eQNXjD9O3M/sMwVtN5S8Lv9bvOYBfKfDNiIIhqiyi01vMBO45u4zkDE420w/e0se7Vs+sIg+g==" + "resolved" "https://registry.npmjs.org/ua-parser-js/-/ua-parser-js-0.7.28.tgz" + "version" "0.7.28" "uglify-es@^3.1.9": "integrity" "sha512-r+MU0rfv4L/0eeW3xZrd16t4NZfK8Ld4SWVglYBb7ez5uXFWHuVRs6xCTrf1yirs9a4j4Y27nn7SRfO6v67XsQ==" @@ -7500,6 +7536,16 @@ "resolved" "https://registry.npmjs.org/ultron/-/ultron-1.0.2.tgz" "version" "1.0.2" +"unbox-primitive@^1.0.1": + "integrity" "sha512-tZU/3NqK3dA5gpE1KtyiJUrEB0lxnGkMFHptJ7q6ewdZ8s12QrODwNbhIJStmJkd1QDXa1NRA8aF2A1zk/Ypyw==" + "resolved" "https://registry.npmjs.org/unbox-primitive/-/unbox-primitive-1.0.1.tgz" + "version" "1.0.1" + dependencies: + "function-bind" "^1.1.1" + "has-bigints" "^1.0.1" + "has-symbols" "^1.0.2" + "which-boxed-primitive" "^1.0.2" + "unicode-canonical-property-names-ecmascript@^1.0.4": "integrity" "sha512-jDrNnXWHd4oHiTZnx/ZG7gtUTVp+gCcTTKr8L0HjlwphROEW3+Him+IpvC+xcJEFegapiMZyZe02CyuOnRmbnQ==" "resolved" "https://registry.npmjs.org/unicode-canonical-property-names-ecmascript/-/unicode-canonical-property-names-ecmascript-1.0.4.tgz" @@ -7564,9 +7610,9 @@ "version" "2.0.1" "uri-js@^4.2.2": - "integrity" "sha512-KY9Frmirql91X2Qgjry0Wd4Y+YTdrdZheS8TFwvkbLWf/G5KNJDCh6pKL5OZctEW4+0Baa5idK2ZQuELRwPznQ==" - "resolved" "https://registry.npmjs.org/uri-js/-/uri-js-4.2.2.tgz" - "version" "4.2.2" + "integrity" "sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==" + "resolved" "https://registry.npmjs.org/uri-js/-/uri-js-4.4.1.tgz" + "version" "4.4.1" dependencies: "punycode" "^2.1.0" @@ -7598,9 +7644,9 @@ "querystring" "0.2.0" "use-subscription@^1.0.0": - "integrity" "sha512-7+IIwDG/4JICrWHL/Q/ZPK5yozEnvRm6vHImu0LKwQlmWGKeiF7mbAenLlK/cTNXrTtXHU/SFASQHzB6+oSJMQ==" - "resolved" "https://registry.npmjs.org/use-subscription/-/use-subscription-1.4.1.tgz" - "version" "1.4.1" + "integrity" "sha512-Xv2a1P/yReAjAbhylMfFplFKj9GssgTwN7RlcTxBujFQcloStWNDQdc4g4NRWH9xS4i/FDk04vQBptAXoF3VcA==" + "resolved" "https://registry.npmjs.org/use-subscription/-/use-subscription-1.5.1.tgz" + "version" "1.5.1" dependencies: "object-assign" "^4.1.1" @@ -7625,9 +7671,9 @@ "version" "3.4.0" "v8-compile-cache@^2.0.3": - "integrity" "sha512-8OQ9CL+VWyt3JStj7HX7/ciTL2V3Rl1Wf5OL+SNTm0yK1KvtReVulksyeRnCANHHuUxHlQig+JJDlUhBt1NQDQ==" - "resolved" "https://registry.npmjs.org/v8-compile-cache/-/v8-compile-cache-2.1.1.tgz" - "version" "2.1.1" + "integrity" "sha512-l8lCEmLcLYZh4nbunNZvQCJc5pv7+RCwa8q/LdUx8u7lsWvPDKmpodJAJNwkAhJC//dFY48KuIEmjtd4RViDrA==" + "resolved" "https://registry.npmjs.org/v8-compile-cache/-/v8-compile-cache-2.3.0.tgz" + "version" "2.3.0" "v8-to-istanbul@^4.1.3": "integrity" "sha512-Rw6vJHj1mbdK8edjR7+zuJrpDtKIgNdAvTSAcpYfgMIw+u2dPDntD3dgN4XQFLU2/fvFQdzj+EeSGfd/jnY5fQ==" @@ -7665,6 +7711,11 @@ "resolved" "https://registry.npmjs.org/vlq/-/vlq-1.0.1.tgz" "version" "1.0.1" +"void-elements@3.1.0": + "integrity" "sha1-YU9/v42AHwu18GYfWy9XhXUOTwk=" + "resolved" "https://registry.npmjs.org/void-elements/-/void-elements-3.1.0.tgz" + "version" "3.1.0" + "w3c-hr-time@^1.0.1": "integrity" "sha512-z8P5DvDNjKDoFIHK7q8r8lackT6l+jo/Ye3HOle7l9nICP9lf1Ci25fy9vHd0JOWewkIFzXIEig3TdKT7JQ5fQ==" "resolved" "https://registry.npmjs.org/w3c-hr-time/-/w3c-hr-time-1.0.2.tgz" @@ -7713,9 +7764,9 @@ "iconv-lite" "0.4.24" "whatwg-fetch@^3.0.0", "whatwg-fetch@>=0.10.0": - "integrity" "sha512-rsum2ulz2iuZH08mJkT0Yi6JnKhwdw4oeyMjokgxd+mmqYSd9cPpOQf01TIWgjxG/U4+QR+AwKq6lSbXVxkyoQ==" - "resolved" "https://registry.npmjs.org/whatwg-fetch/-/whatwg-fetch-3.4.0.tgz" - "version" "3.4.0" + "integrity" "sha512-bJlen0FcuU/0EMLrdbJ7zOnW6ITZLrZMIarMUVmdKtsGvZna8vxKYaexICWPfZ8qwf9fzNq+UEIZrnSaApt6RA==" + "resolved" "https://registry.npmjs.org/whatwg-fetch/-/whatwg-fetch-3.6.2.tgz" + "version" "3.6.2" "whatwg-mimetype@^2.2.0", "whatwg-mimetype@^2.3.0": "integrity" "sha512-M4yMwr6mAnQz76TbJm914+gPpB/nCwvZbJU28cUD6dR004SAxDLOOSUaB1JDRqLtaOV/vi0IC5lEAGFgrjGv/g==" @@ -7731,6 +7782,17 @@ "tr46" "^1.0.1" "webidl-conversions" "^4.0.2" +"which-boxed-primitive@^1.0.2": + "integrity" "sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg==" + "resolved" "https://registry.npmjs.org/which-boxed-primitive/-/which-boxed-primitive-1.0.2.tgz" + "version" "1.0.2" + dependencies: + "is-bigint" "^1.0.1" + "is-boolean-object" "^1.1.0" + "is-number-object" "^1.0.4" + "is-string" "^1.0.5" + "is-symbol" "^1.0.3" + "which-module@^2.0.0": "integrity" "sha1-2e8H3Od7mQK4o6j6SzHD4/fm6Ho=" "resolved" "https://registry.npmjs.org/which-module/-/which-module-2.0.0.tgz" @@ -7790,15 +7852,6 @@ "resolved" "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz" "version" "1.0.2" -"write-file-atomic@^1.2.0": - "integrity" "sha1-+Aek8LHZ6ROuekgRLmzDrxmRtF8=" - "resolved" "https://registry.npmjs.org/write-file-atomic/-/write-file-atomic-1.3.4.tgz" - "version" "1.3.4" - dependencies: - "graceful-fs" "^4.1.11" - "imurmurhash" "^0.1.4" - "slide" "^1.1.5" - "write-file-atomic@^3.0.0": "integrity" "sha512-AvHcyZ5JnSfq3ioSyjrBkH9yW4m7Ayk8/9My/DD9onKeu/94fwrMocemO2QAJFAlnnDN+ZDS+ZjAR5ua1/PV/Q==" "resolved" "https://registry.npmjs.org/write-file-atomic/-/write-file-atomic-3.0.3.tgz" @@ -7816,7 +7869,7 @@ dependencies: "mkdirp" "^0.5.1" -"ws@^1.1.0", "ws@^1.1.5": +"ws@^1.1.0": "integrity" "sha512-o3KqipXNUdS7wpQzBHSe180lBGO60SoK0yVo3CYJgb2MkobuWuBX6dhkYP5ORCLd55y+SaflMOV5fqAB53ux4w==" "resolved" "https://registry.npmjs.org/ws/-/ws-1.1.5.tgz" "version" "1.1.5" @@ -7824,15 +7877,18 @@ "options" ">=0.0.5" "ultron" "1.0.x" -"ws@^7.0.0": - "integrity" "sha512-D3RuNkynyHmEJIpD2qrgVkc9DQ23OrN/moAwZX4L8DfvszsJxpjQuUq3LMx6HoYji9fbIOBY18XWBsAux1ZZUA==" - "resolved" "https://registry.npmjs.org/ws/-/ws-7.3.1.tgz" - "version" "7.3.1" +"ws@^1.1.5": + "integrity" "sha512-o3KqipXNUdS7wpQzBHSe180lBGO60SoK0yVo3CYJgb2MkobuWuBX6dhkYP5ORCLd55y+SaflMOV5fqAB53ux4w==" + "resolved" "https://registry.npmjs.org/ws/-/ws-1.1.5.tgz" + "version" "1.1.5" + dependencies: + "options" ">=0.0.5" + "ultron" "1.0.x" -"ws@^7": - "integrity" "sha512-pTsP8UAfhy3sk1lSk/O/s4tjD0CRwvMnzvwr4OKGX7ZvqZtUyx4KIJB5JWbkykPoc55tixMGgTNoh3k4FkNGFQ==" - "resolved" "https://registry.npmjs.org/ws/-/ws-7.4.1.tgz" - "version" "7.4.1" +"ws@^7", "ws@^7.0.0": + "integrity" "sha512-6ezXvzOZupqKj4jUqbQ9tXuJNo+BR2gU8fFRk3XCP3e0G6WT414u5ELe6Y0vtp7kmSJ3F7YWObSNr1ESsgi4vw==" + "resolved" "https://registry.npmjs.org/ws/-/ws-7.5.0.tgz" + "version" "7.5.0" "xcode@^2.0.0": "integrity" "sha512-uCrmPITrqTEzhn0TtT57fJaNaw8YJs1aCzs+P/QqxsDbvPZSv7XMPPwXrKvHtD6pLjBM/NaVwraWJm8q83Y4iQ==" @@ -7869,10 +7925,10 @@ dependencies: "sax" "^1.2.1" -"xmldom@0.1.x": - "integrity" "sha512-yS2uJflVQs6n+CyjHoaBmVSqIDevTAWrzMmjG1Gc7h1qQ7uVozNhEPJAwZXWyGQ/Gafo3fCwrcaokezLPupVyQ==" - "resolved" "https://registry.npmjs.org/xmldom/-/xmldom-0.1.31.tgz" - "version" "0.1.31" +"xmldom@^0.5.0": + "integrity" "sha512-Foaj5FXVzgn7xFzsKeNIde9g6aFBxTPi37iwsno8QvApmtg7KYrr+OPyRHcJF7dud2a5nGRBXK3n0dL62Gf7PA==" + "resolved" "https://registry.npmjs.org/xmldom/-/xmldom-0.5.0.tgz" + "version" "0.5.0" "xpipe@^1.0.5": "integrity" "sha1-jdi/Rfw/f1Xw4FS4ePQ6YmFNr98=" @@ -7880,11 +7936,11 @@ "version" "1.0.5" "xregexp@^4.3.0": - "integrity" "sha512-7jXDIFXh5yJ/orPn4SXjuVrWWoi4Cr8jfV1eHv9CixKSbU+jY4mxfrBwAuDvupPNKpMUY+FeIqsVw/JLT9+B8g==" - "resolved" "https://registry.npmjs.org/xregexp/-/xregexp-4.3.0.tgz" - "version" "4.3.0" + "integrity" "sha512-2u9HwfadaJaY9zHtRRnH6BY6CQVNQKkYm3oLtC9gJXXzfsbACg5X5e4EZZGVAH+YIfa+QA9lsFQTTe3HURF3ag==" + "resolved" "https://registry.npmjs.org/xregexp/-/xregexp-4.4.1.tgz" + "version" "4.4.1" dependencies: - "@babel/runtime-corejs3" "^7.8.3" + "@babel/runtime-corejs3" "^7.12.1" "xtend@~4.0.1": "integrity" "sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ==" @@ -7892,19 +7948,24 @@ "version" "4.0.2" "y18n@^4.0.0": - "integrity" "sha512-r9S/ZyXu/Xu9q1tYlpsLIsa3EeLXXk0VwlxqTcFRfg9EhMW+17kbt9G0NrgCmhGb5vT2hyhJZLfDGx+7+5Uj/w==" - "resolved" "https://registry.npmjs.org/y18n/-/y18n-4.0.0.tgz" - "version" "4.0.0" + "integrity" "sha512-JKhqTOwSrqNA1NY5lSztJ1GrBiUodLMmIZuLiDaMRJ+itFd+ABVE8XBjOvIWL+rSqNDC74LCSFmlb/U4UZ4hJQ==" + "resolved" "https://registry.npmjs.org/y18n/-/y18n-4.0.3.tgz" + "version" "4.0.3" "yallist@^2.1.2": "integrity" "sha1-HBH5IY8HYImkfdUS+TxmmaaoHVI=" "resolved" "https://registry.npmjs.org/yallist/-/yallist-2.1.2.tgz" "version" "2.1.2" +"yallist@^4.0.0": + "integrity" "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==" + "resolved" "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz" + "version" "4.0.0" + "yargs-parser@^15.0.1": - "integrity" "sha512-0OAMV2mAZQrs3FkNpDQcBk1x5HXb8X4twADss4S0Iuk+2dGnLOE/fRHrsYm542GduMveyA77OF4wrNJuanRCWw==" - "resolved" "https://registry.npmjs.org/yargs-parser/-/yargs-parser-15.0.1.tgz" - "version" "15.0.1" + "integrity" "sha512-/MVEVjTXy/cGAjdtQf8dW3V9b97bPN7rNn8ETj6BmAQL7ibC7O1Q9SPJbGjgh3SlwoBNXMzj/ZGIj8mBgl12YA==" + "resolved" "https://registry.npmjs.org/yargs-parser/-/yargs-parser-15.0.3.tgz" + "version" "15.0.3" dependencies: "camelcase" "^5.0.0" "decamelize" "^1.2.0" @@ -7934,41 +7995,7 @@ "y18n" "^4.0.0" "yargs-parser" "^15.0.1" -"yargs@^15.0.2": - "integrity" "sha512-aePbxDmcYW++PaqBsJ+HYUFwCdv4LVvdnhBy78E57PIor8/OVvhMrADFFEDh8DHDFRv/O9i3lPhsENjO7QX0+A==" - "resolved" "https://registry.npmjs.org/yargs/-/yargs-15.4.1.tgz" - "version" "15.4.1" - dependencies: - "cliui" "^6.0.0" - "decamelize" "^1.2.0" - "find-up" "^4.1.0" - "get-caller-file" "^2.0.1" - "require-directory" "^2.1.1" - "require-main-filename" "^2.0.0" - "set-blocking" "^2.0.0" - "string-width" "^4.2.0" - "which-module" "^2.0.0" - "y18n" "^4.0.0" - "yargs-parser" "^18.1.2" - -"yargs@^15.1.0": - "integrity" "sha512-aePbxDmcYW++PaqBsJ+HYUFwCdv4LVvdnhBy78E57PIor8/OVvhMrADFFEDh8DHDFRv/O9i3lPhsENjO7QX0+A==" - "resolved" "https://registry.npmjs.org/yargs/-/yargs-15.4.1.tgz" - "version" "15.4.1" - dependencies: - "cliui" "^6.0.0" - "decamelize" "^1.2.0" - "find-up" "^4.1.0" - "get-caller-file" "^2.0.1" - "require-directory" "^2.1.1" - "require-main-filename" "^2.0.0" - "set-blocking" "^2.0.0" - "string-width" "^4.2.0" - "which-module" "^2.0.0" - "y18n" "^4.0.0" - "yargs-parser" "^18.1.2" - -"yargs@^15.3.1": +"yargs@^15.0.2", "yargs@^15.1.0", "yargs@^15.3.1": "integrity" "sha512-aePbxDmcYW++PaqBsJ+HYUFwCdv4LVvdnhBy78E57PIor8/OVvhMrADFFEDh8DHDFRv/O9i3lPhsENjO7QX0+A==" "resolved" "https://registry.npmjs.org/yargs/-/yargs-15.4.1.tgz" "version" "15.4.1"