- {({
- className, style, tokens, getLineProps, getTokenProps,
- }) => (
+ {({ className, style, tokens, getLineProps, getTokenProps }) => (
(
+const CodeIcon = (props) => (
);
-export default SvgComponent;
+export default CodeIcon;
diff --git a/docs/common/CodePanel.tsx b/docs/common/CodePanel.tsx
new file mode 100644
index 0000000..9bd0ada
--- /dev/null
+++ b/docs/common/CodePanel.tsx
@@ -0,0 +1,57 @@
+import React, { useState } from 'react';
+import PropTypes from 'prop-types';
+
+import styled from '@emotion/styled';
+
+import { H3 } from './Headers';
+import CodeBlock from './CodeBlock';
+import CodeIcon from './CodeIcon';
+
+const CodePanel = ({ heading, code, children }) => {
+ const [isOpen, setIsOpen] = useState(false);
+
+ return (
+
+
+ {heading}
+ {code && setIsOpen((prev) => !prev)} />}
+
+ {isOpen && {code}}
+ {children}
+
+ );
+};
+
+const Container = styled.div`
+ width: 100%;
+ display: flex;
+ flex-direction: column;
+ justify-content: center;
+ align-items: center;
+ padding: 30px 30px;
+`;
+
+const Row = styled.div`
+ display: flex;
+ align-items: center;
+`;
+
+const CodeParent = styled.div`
+ margin: 20px 0px;
+ display: flex;
+ justify-content: center;
+`;
+
+CodePanel.Block = CodeBlock;
+
+CodePanel.propTypes = {
+ heading: PropTypes.string.isRequired,
+ children: PropTypes.node.isRequired,
+ code: PropTypes.node,
+};
+
+CodePanel.defaultProps = {
+ code: '',
+};
+
+export default CodePanel;
diff --git a/docs/common-util/hgroup.jsx b/docs/common/HGroup.tsx
similarity index 53%
rename from docs/common-util/hgroup.jsx
rename to docs/common/HGroup.tsx
index ac65c27..a9416f7 100644
--- a/docs/common-util/hgroup.jsx
+++ b/docs/common/HGroup.tsx
@@ -1,12 +1,12 @@
import styled from '@emotion/styled';
-export default styled.div`
+const HGroup = styled.div`
display: flex;
- flex: ${({ flex }) => (flex || 1)} !important;
+ flex: ${({ flex }) => flex || 1} !important;
& > * {
flex: 1;
- margin: 0px ${({ spacing }) => (spacing || '5px')};
+ margin: 0px ${({ spacing }) => spacing || '5px'};
&:first-child {
margin-left: 0px;
@@ -17,3 +17,5 @@ export default styled.div`
}
}
`;
+
+export default HGroup;
diff --git a/docs/common-util/headers/index.jsx b/docs/common/Headers.tsx
similarity index 100%
rename from docs/common-util/headers/index.jsx
rename to docs/common/Headers.tsx
diff --git a/docs/components/Home/MadeWithLove/heart-icon.jsx b/docs/common/HeartIcon.tsx
similarity index 88%
rename from docs/components/Home/MadeWithLove/heart-icon.jsx
rename to docs/common/HeartIcon.tsx
index 8d325e6..6a80d2b 100644
--- a/docs/components/Home/MadeWithLove/heart-icon.jsx
+++ b/docs/common/HeartIcon.tsx
@@ -1,6 +1,6 @@
import React from 'react';
-const SvgComponent = props => (
+const HeartIcon = (props) => (
);
-export default SvgComponent;
+export default HeartIcon;
diff --git a/docs/common-util/paragraph/index.jsx b/docs/common/Paragraph.tsx
similarity index 70%
rename from docs/common-util/paragraph/index.jsx
rename to docs/common/Paragraph.tsx
index c6250a6..dfd3703 100644
--- a/docs/common-util/paragraph/index.jsx
+++ b/docs/common/Paragraph.tsx
@@ -1,9 +1,11 @@
import styled from '@emotion/styled';
-export default styled.p`
+const Paragraph = styled.p`
color: #404040;
margin: 2px 0px;
padding: 0px;
font-size: 14px;
text-align: center;
`;
+
+export default Paragraph;
diff --git a/docs/common-util/tag/index.jsx b/docs/common/Tag.tsx
similarity index 82%
rename from docs/common-util/tag/index.jsx
rename to docs/common/Tag.tsx
index c6a04e1..bad85ca 100644
--- a/docs/common-util/tag/index.jsx
+++ b/docs/common/Tag.tsx
@@ -1,6 +1,6 @@
import styled from '@emotion/styled';
-export default styled.div`
+const Tag = styled.div`
color: #fff;
text-align: center;
border-radius: 5px;
@@ -13,3 +13,5 @@ export default styled.div`
font-size: 14px;
}
`;
+
+export default Tag;
diff --git a/docs/common-util/vgroup.jsx b/docs/common/VGroup.tsx
similarity index 50%
rename from docs/common-util/vgroup.jsx
rename to docs/common/VGroup.tsx
index 4e0dc78..7c9aa20 100644
--- a/docs/common-util/vgroup.jsx
+++ b/docs/common/VGroup.tsx
@@ -1,11 +1,11 @@
import styled from '@emotion/styled';
-export default styled.div`
- flex: ${({ flex }) => (flex || 1)} !important;
+const VGroup = styled.div`
+ flex: ${({ flex }) => flex || 1} !important;
& > * {
flex: 1;
- margin: ${({ spacing }) => (spacing || '10px')} 0px;
+ margin: ${({ spacing }) => spacing || '10px'} 0px;
&:first-child {
margin-top: 0px;
@@ -16,3 +16,5 @@ export default styled.div`
}
}
`;
+
+export default VGroup;
diff --git a/docs/components/Global-Styles/index.jsx b/docs/components/GlobalStyles.tsx
similarity index 100%
rename from docs/components/Global-Styles/index.jsx
rename to docs/components/GlobalStyles.tsx
diff --git a/docs/components/Home/AllOptions.tsx b/docs/components/Home/AllOptions.tsx
new file mode 100644
index 0000000..ea8a2f1
--- /dev/null
+++ b/docs/components/Home/AllOptions.tsx
@@ -0,0 +1,24 @@
+import React from 'react';
+import styled from '@emotion/styled';
+
+import CodePanel from '../../common/CodePanel';
+
+const AllOptions = () => (
+
+
+
+);
+
+const Section = styled.section`
+ display: flex;
+ justify-content: center;
+ flex-wrap: wrap;
+ margin-top: 20px;
+
+ & > * {
+ margin: 10px 15px;
+ width: 150px;
+ }
+`;
+
+export default AllOptions;
diff --git a/docs/components/Home/AllOptions/index.jsx b/docs/components/Home/AllOptions/index.jsx
deleted file mode 100644
index 4de4c31..0000000
--- a/docs/components/Home/AllOptions/index.jsx
+++ /dev/null
@@ -1,12 +0,0 @@
-import React from 'react';
-
-import CodePanel from '../../../common-util/code-panel';
-import Section from './styles';
-
-const AllOptions = () => (
-
-
-
-);
-
-export default AllOptions;
diff --git a/docs/components/Home/AllOptions/styles.jsx b/docs/components/Home/AllOptions/styles.jsx
deleted file mode 100644
index 08a5a82..0000000
--- a/docs/components/Home/AllOptions/styles.jsx
+++ /dev/null
@@ -1,13 +0,0 @@
-import styled from '@emotion/styled';
-
-export default styled.section`
- display: flex;
- justify-content: center;
- flex-wrap: wrap;
- margin-top: 20px;
-
- & > * {
- margin: 10px 15px;
- width: 150px;
- }
-`;
diff --git a/docs/components/Home/Banner.tsx b/docs/components/Home/Banner.tsx
new file mode 100644
index 0000000..19df901
--- /dev/null
+++ b/docs/components/Home/Banner.tsx
@@ -0,0 +1,53 @@
+import React from 'react';
+import styled from '@emotion/styled';
+
+import Tag from '../../common/Tag';
+import { H1, H2 } from '../../common/Headers';
+import Paragraph from '../../common/Paragraph';
+
+import colors from '../../util/colors';
+
+const Banner = () => (
+
+
+
+ MIT
+ Open Source
+
+ CogoToast
+ Beautiful, Zero-Configuration, Toast Messages
+
+
+ - Plug & Play. No configuration required
+ ~ 4K Gzipped (All Inclusive of Icons, Styles, & Code)
+ - Completely Customizable
+ - Built with React
+
+
+);
+
+const Container = styled.div`
+ width: 100%;
+ background: ${colors.ACCENT_LIGHT};
+ background: linear-gradient(to top, ${colors.ACCENT_LIGHT}, ${colors.ACCENT_DARK});
+ display: flex;
+ flex-direction: column;
+ justify-content: center;
+ align-items: center;
+ padding: 30px 30px;
+`;
+
+const Section = styled.section`
+ display: flex;
+ flex-direction: column;
+ justify-content: center;
+ align-items: center;
+ margin: 15px 0px;
+`;
+
+const Row = styled.div`
+ display: flex;
+ margin-bottom: 20px;
+`;
+
+export default Banner;
diff --git a/docs/components/Home/Banner/index.jsx b/docs/components/Home/Banner/index.jsx
deleted file mode 100644
index 6f0b1d8..0000000
--- a/docs/components/Home/Banner/index.jsx
+++ /dev/null
@@ -1,28 +0,0 @@
-import React from 'react';
-
-import Tag from '../../../common-util/tag';
-import { H1, H2 } from '../../../common-util/headers';
-import Paragraph from '../../../common-util/paragraph';
-
-import Container, { Section, Row } from './styles';
-
-const Hero = () => (
-
-
-
- MIT
- Open Source
-
- CogoToast
- Beautiful, Zero-Configuration, Toast Messages
-
-
- - Plug & Play. No configuration required
- ~ 4K Gzipped (All Inclusive of Icons, Styles, & Code)
- - Completely Customizable
- - Built with React
-
-
-);
-
-export default Hero;
diff --git a/docs/components/Home/Banner/styles.jsx b/docs/components/Home/Banner/styles.jsx
deleted file mode 100644
index 1b067db..0000000
--- a/docs/components/Home/Banner/styles.jsx
+++ /dev/null
@@ -1,26 +0,0 @@
-import styled from '@emotion/styled';
-import colors from '../../../util/colors';
-
-export default styled.div`
- width: 100%;
- background: ${colors.ACCENT_LIGHT};
- background: linear-gradient(to top, ${colors.ACCENT_LIGHT}, ${colors.ACCENT_DARK});
- display: flex;
- flex-direction: column;
- justify-content: center;
- align-items: center;
- padding: 30px 30px;
-`;
-
-export const Row = styled.div`
- display: flex;
- margin-bottom: 20px;
-`;
-
-export const Section = styled.section`
- display: flex;
- flex-direction: column;
- justify-content: center;
- align-items: center;
- margin: 15px 0px;
-`;
diff --git a/docs/components/Home/Gzipped/index.jsx b/docs/components/Home/Gzipped.tsx
similarity index 52%
rename from docs/components/Home/Gzipped/index.jsx
rename to docs/components/Home/Gzipped.tsx
index 1da4281..19cd408 100644
--- a/docs/components/Home/Gzipped/index.jsx
+++ b/docs/components/Home/Gzipped.tsx
@@ -1,12 +1,11 @@
import React from 'react';
+import styled from '@emotion/styled';
-import Paragraph from '../../../common-util/paragraph';
-import CodePanel from '../../../common-util/code-panel';
-import Button from '../../../common-util/button';
+import Paragraph from '../../common/Paragraph';
+import CodePanel from '../../common/CodePanel';
+import Button from '../../common/Button';
-import Section from './styles';
-
-const Types = () => (
+const Gzipped = () => (
@@ -15,11 +14,20 @@ const Types = () => (
Built into the Code, with a total of ~4K Gzipped
);
-export default Types;
+const Section = styled.section`
+ display: flex;
+ flex-direction: column;
+ justify-content: center;
+ align-items: center;
+ flex-wrap: wrap;
+ margin: 20px 0px;
+`;
+
+export default Gzipped;
diff --git a/docs/components/Home/Gzipped/styles.jsx b/docs/components/Home/Gzipped/styles.jsx
deleted file mode 100644
index cc4e6b7..0000000
--- a/docs/components/Home/Gzipped/styles.jsx
+++ /dev/null
@@ -1,10 +0,0 @@
-import styled from '@emotion/styled';
-
-export default styled.section`
- display: flex;
- flex-direction: column;
- justify-content: center;
- align-items: center;
- flex-wrap: wrap;
- margin: 20px 0px;
-`;
diff --git a/docs/components/Home/MadeWithLove.tsx b/docs/components/Home/MadeWithLove.tsx
new file mode 100644
index 0000000..39595bf
--- /dev/null
+++ b/docs/components/Home/MadeWithLove.tsx
@@ -0,0 +1,42 @@
+import React from 'react';
+import styled from '@emotion/styled';
+
+import HeartIcon from '../../common/HeartIcon';
+
+const MadeWithLove = () => (
+
+
+ Made with
+ at
+
+
+
+);
+
+const Container = styled.p`
+ margin: 0px auto;
+ padding: 20px;
+ border-top: 1px dashed #ddd;
+ display: flex;
+ justify-content: center;
+ align-items: center;
+ color: #000;
+ text-decoration: none;
+ font-size: 14px;
+`;
+
+const Anchor = styled.a`
+ color: #000;
+ text-decoration: none;
+`;
+
+const Logo = styled.img`
+ margin: 0px 8px;
+ margin-top: 2px;
+ width: 90px;
+`;
+
+export default MadeWithLove;
diff --git a/docs/components/Home/MadeWithLove/index.jsx b/docs/components/Home/MadeWithLove/index.jsx
deleted file mode 100644
index 878e82e..0000000
--- a/docs/components/Home/MadeWithLove/index.jsx
+++ /dev/null
@@ -1,19 +0,0 @@
-import React from 'react';
-
-import Container, { Anchor, Logo } from './styles';
-import HeartIcon from './heart-icon';
-
-const MadeWithLove = () => (
-
-
- Made with
- at
-
-
-
-);
-
-export default MadeWithLove;
diff --git a/docs/components/Home/MadeWithLove/styles.jsx b/docs/components/Home/MadeWithLove/styles.jsx
deleted file mode 100644
index f70e50a..0000000
--- a/docs/components/Home/MadeWithLove/styles.jsx
+++ /dev/null
@@ -1,29 +0,0 @@
-import styled from '@emotion/styled';
-
-export default styled.p`
- margin: 0px auto;
- padding: 20px;
- border-top: 1px dashed #ddd;
- display: flex;
- justify-content: center;
- align-items: center;
- color: #000;
- text-decoration: none;
- font-size: 14px;
-`;
-
-export const Anchor = styled.a`
- color: #000;
- text-decoration: none;
-`;
-
-export const Icon = styled.img`
- margin: 0px 8px;
- width: 15px;
-`;
-
-export const Logo = styled.img`
- margin: 0px 8px;
- margin-top: 2px;
- width: 90px;
-`;
diff --git a/docs/components/Home/PlugPlay.tsx b/docs/components/Home/PlugPlay.tsx
new file mode 100644
index 0000000..1e223b3
--- /dev/null
+++ b/docs/components/Home/PlugPlay.tsx
@@ -0,0 +1,52 @@
+import React from 'react';
+import styled from '@emotion/styled';
+
+import CodePanel from '../../common/CodePanel';
+import CodeBlock from '../../common/CodeBlock';
+import { H4 } from '../../common/Headers';
+
+const installCode = `npm install --save cogo-toast
+yarn add cogo-toast`;
+
+const importCode = `import cogoToast from 'cogo-toast';
+cogoToast.success("Success!");`;
+
+const PlugPlay = () => (
+
+
+
+ Install via NPM or Yarn
+ {installCode}
+
+
+ Usage
+ {importCode}
+
+
+
+);
+
+const Section = styled.section`
+ display: flex;
+ justify-content: center;
+ flex-wrap: wrap;
+ margin: 20px 0px;
+
+ & > * {
+ margin: 10px 15px;
+ min-width: 350px;
+ }
+`;
+
+export const Group = styled.div`
+ display: flex;
+ flex-direction: column;
+ justify-content: center;
+ flex-wrap: wrap;
+
+ & > * {
+ margin: 5px 0px;
+ }
+`;
+
+export default PlugPlay;
diff --git a/docs/components/Home/PlugPlay/index.jsx b/docs/components/Home/PlugPlay/index.jsx
deleted file mode 100644
index cb07916..0000000
--- a/docs/components/Home/PlugPlay/index.jsx
+++ /dev/null
@@ -1,30 +0,0 @@
-import React from 'react';
-
-import CodePanel from '../../../common-util/code-panel';
-import CodeBlock from '../../../common-util/code-block';
-import { H4 } from '../../../common-util/headers';
-
-import Section, { Group } from './styles';
-
-const installCode = `npm install --save cogo-toast
-yarn add cogo-toast`;
-
-const importCode = `import cogoToast from 'cogo-toast';
-cogoToast.success("Success!");`;
-
-const Types = () => (
-
-
-
- Install via NPM or Yarn
- {installCode}
-
-
- Usage
- {importCode}
-
-
-
-);
-
-export default Types;
diff --git a/docs/components/Home/PlugPlay/styles.jsx b/docs/components/Home/PlugPlay/styles.jsx
deleted file mode 100644
index ce097ec..0000000
--- a/docs/components/Home/PlugPlay/styles.jsx
+++ /dev/null
@@ -1,24 +0,0 @@
-import styled from '@emotion/styled';
-
-export default styled.section`
- display: flex;
- justify-content: center;
- flex-wrap: wrap;
- margin: 20px 0px;
-
- & > * {
- margin: 10px 15px;
- min-width: 350px;
- }
-`;
-
-export const Group = styled.div`
- display: flex;
- flex-direction: column;
- justify-content: center;
- flex-wrap: wrap;
-
- & > * {
- margin: 5px 0px;
- }
-`;
diff --git a/docs/components/Home/Positions/index.jsx b/docs/components/Home/Positions.tsx
similarity index 54%
rename from docs/components/Home/Positions/index.jsx
rename to docs/components/Home/Positions.tsx
index 1bedb6d..5cd6a72 100644
--- a/docs/components/Home/Positions/index.jsx
+++ b/docs/components/Home/Positions.tsx
@@ -1,10 +1,10 @@
import React from 'react';
+import styled from '@emotion/styled';
import cogoToast from 'cogo-toast';
-import CodePanel from '../../../common-util/code-panel';
-import Button from '../../../common-util/button';
-import Section, { Group } from './styles';
+import CodePanel from '../../common/CodePanel';
+import Button from '../../common/Button';
const positions = [
'top-left',
@@ -15,7 +15,7 @@ const positions = [
'bottom-right',
];
-const showMessage = position => cogoToast.info('This is an info message.', { position });
+const showMessage = (position) => cogoToast.info('This is an info message.', { position });
const showMessageWithHeading = (position) => {
cogoToast.info('This is an info message.', { position, heading: 'Information' });
@@ -23,14 +23,16 @@ const showMessageWithHeading = (position) => {
const codeBlock = (
- {'cogoToast.info("This is an info message", { position: \'top-center\', heading: \'Information\' });'}
+ {
+ "cogoToast.info(\"This is an info message\", { position: 'top-center', heading: 'Information' });"
+ }
);
const Positions = () => (
- {positions.map(position => (
+ {positions.map((position) => (
);
+const Section = styled.section`
+ display: flex;
+ justify-content: center;
+ flex-wrap: wrap;
+ margin-top: 20px;
+
+ & > * {
+ margin: 10px 15px;
+ width: 150px;
+ }
+`;
+
+const Group = styled.div`
+ display: flex;
+ flex-direction: column;
+ justify-content: center;
+
+ & > * {
+ margin: 10px 0px;
+ }
+`;
+
export default Positions;
diff --git a/docs/components/Home/Positions/styles.jsx b/docs/components/Home/Positions/styles.jsx
deleted file mode 100644
index 601e537..0000000
--- a/docs/components/Home/Positions/styles.jsx
+++ /dev/null
@@ -1,23 +0,0 @@
-import styled from '@emotion/styled';
-
-export default styled.section`
- display: flex;
- justify-content: center;
- flex-wrap: wrap;
- margin-top: 20px;
-
- & > * {
- margin: 10px 15px;
- width: 150px;
- }
-`;
-
-export const Group = styled.div`
- display: flex;
- flex-direction: column;
- justify-content: center;
-
- & > * {
- margin: 10px 0px;
- }
-`;
diff --git a/docs/components/Home/Promise/index.jsx b/docs/components/Home/Promise.tsx
similarity index 61%
rename from docs/components/Home/Promise/index.jsx
rename to docs/components/Home/Promise.tsx
index d9a287a..b18816f 100644
--- a/docs/components/Home/Promise/index.jsx
+++ b/docs/components/Home/Promise.tsx
@@ -1,13 +1,12 @@
import React from 'react';
+import styled from '@emotion/styled';
import cogoToast from 'cogo-toast';
-import Paragraph from '../../../common-util/paragraph';
-import CodePanel from '../../../common-util/code-panel';
-import CodeBlock from '../../../common-util/code-block';
-import Button from '../../../common-util/button';
-
-import Section, { Group } from './styles';
+import Paragraph from '../../common/Paragraph';
+import CodePanel from '../../common/CodePanel';
+import CodeBlock from '../../common/CodeBlock';
+import Button from '../../common/Button';
const showToast = () => {
cogoToast.loading('Loading your data...').then(() => {
@@ -19,7 +18,7 @@ const code = `cogoToast.loading('Loading your data...').then(() => {
cogoToast.success('Data Successfully Loaded');
});`;
-const Types = () => (
+const Promise = () => (
@@ -44,4 +43,26 @@ const Types = () => (
);
-export default Types;
+const Section = styled.section`
+ display: flex;
+ justify-content: center;
+ flex-direction: column;
+ flex-wrap: wrap;
+ margin: 20px 0px;
+ max-width: 90%;
+`;
+
+const Group = styled.div`
+ display: flex;
+ flex-direction: column;
+ justify-content: center;
+ align-items: center;
+ flex-wrap: wrap;
+ margin: 10px;
+
+ & > * {
+ margin: 5px 0px;
+ }
+`;
+
+export default Promise;
diff --git a/docs/components/Home/Promise/styles.jsx b/docs/components/Home/Promise/styles.jsx
deleted file mode 100644
index 8edfefd..0000000
--- a/docs/components/Home/Promise/styles.jsx
+++ /dev/null
@@ -1,23 +0,0 @@
-import styled from '@emotion/styled';
-
-export default styled.section`
- display: flex;
- justify-content: center;
- flex-direction: column;
- flex-wrap: wrap;
- margin: 20px 0px;
- max-width: 90%;
-`;
-
-export const Group = styled.div`
- display: flex;
- flex-direction: column;
- justify-content: center;
- align-items: center;
- flex-wrap: wrap;
- margin: 10px;
-
- & > * {
- margin: 5px 0px;
- }
-`;
diff --git a/docs/components/Home/Types/index.jsx b/docs/components/Home/Types.tsx
similarity index 64%
rename from docs/components/Home/Types/index.jsx
rename to docs/components/Home/Types.tsx
index 295301d..0d05330 100644
--- a/docs/components/Home/Types/index.jsx
+++ b/docs/components/Home/Types.tsx
@@ -1,13 +1,13 @@
import React from 'react';
+import styled from '@emotion/styled';
import cogoToast from 'cogo-toast';
-import CodePanel from '../../../common-util/code-panel';
-import Button from '../../../common-util/button';
-import Section from './styles';
+import CodePanel from '../../common/CodePanel';
+import Button from '../../common/Button';
const types = ['success', 'info', 'loading', 'warn', 'error'];
-const showMessage = type => {
+const showMessage = (type) => {
const { hide } = cogoToast[type](`This is a ${type} message.`, {
onClick: () => {
hide();
@@ -15,7 +15,7 @@ const showMessage = type => {
});
};
-const showAll = () => types.forEach(type => showMessage(type));
+const showAll = () => types.forEach((type) => showMessage(type));
const code = types.reduce(
(prev, type) => `${prev ? `${prev} \n` : ''} cogoToast.${type}('This is a ${type} message');`,
@@ -27,7 +27,7 @@ const codeBlock = {code};
const Types = () => (
- {types.map(type => (
+ {types.map((type) => (
@@ -39,4 +39,16 @@ const Types = () => (
);
+const Section = styled.section`
+ display: flex;
+ justify-content: center;
+ flex-wrap: wrap;
+ margin: 20px 0px;
+
+ & > * {
+ margin: 10px 15px;
+ width: 120px;
+ }
+`;
+
export default Types;
diff --git a/docs/components/Home/Types/styles.jsx b/docs/components/Home/Types/styles.jsx
deleted file mode 100644
index 19bcaa2..0000000
--- a/docs/components/Home/Types/styles.jsx
+++ /dev/null
@@ -1,13 +0,0 @@
-import styled from '@emotion/styled';
-
-export default styled.section`
- display: flex;
- justify-content: center;
- flex-wrap: wrap;
- margin: 20px 0px;
-
- & > * {
- margin: 10px 15px;
- width: 120px;
- }
-`;
diff --git a/docs/components/Home/UseJSX/index.jsx b/docs/components/Home/UseJSX.tsx
similarity index 55%
rename from docs/components/Home/UseJSX/index.jsx
rename to docs/components/Home/UseJSX.tsx
index 61522c4..f1bacb8 100644
--- a/docs/components/Home/UseJSX/index.jsx
+++ b/docs/components/Home/UseJSX.tsx
@@ -1,13 +1,12 @@
import React from 'react';
+import styled from '@emotion/styled';
import cogoToast from 'cogo-toast';
-import Paragraph from '../../../common-util/paragraph';
-import CodePanel from '../../../common-util/code-panel';
-import CodeBlock from '../../../common-util/code-block';
-import Button from '../../../common-util/button';
-
-import Section, { Group } from './styles';
+import Paragraph from '../../common/Paragraph';
+import CodePanel from '../../common/CodePanel';
+import CodeBlock from '../../common/CodeBlock';
+import Button from '../../common/Button';
const showToast = () => {
cogoToast.info(
@@ -44,4 +43,26 @@ const UseJSX = () => (
);
+const Section = styled.section`
+ display: flex;
+ justify-content: center;
+ flex-direction: column;
+ flex-wrap: wrap;
+ margin: 20px 0px;
+ max-width: 90%;
+`;
+
+const Group = styled.div`
+ display: flex;
+ flex-direction: column;
+ justify-content: center;
+ align-items: center;
+ flex-wrap: wrap;
+ margin: 10px;
+
+ & > * {
+ margin: 5px 0px;
+ }
+`;
+
export default UseJSX;
diff --git a/docs/components/Home/UseJSX/styles.jsx b/docs/components/Home/UseJSX/styles.jsx
deleted file mode 100644
index 8edfefd..0000000
--- a/docs/components/Home/UseJSX/styles.jsx
+++ /dev/null
@@ -1,23 +0,0 @@
-import styled from '@emotion/styled';
-
-export default styled.section`
- display: flex;
- justify-content: center;
- flex-direction: column;
- flex-wrap: wrap;
- margin: 20px 0px;
- max-width: 90%;
-`;
-
-export const Group = styled.div`
- display: flex;
- flex-direction: column;
- justify-content: center;
- align-items: center;
- flex-wrap: wrap;
- margin: 10px;
-
- & > * {
- margin: 5px 0px;
- }
-`;
diff --git a/docs/components/Meta/index.jsx b/docs/components/Meta.tsx
similarity index 100%
rename from docs/components/Meta/index.jsx
rename to docs/components/Meta.tsx
diff --git a/docs/next-env.d.ts b/docs/next-env.d.ts
new file mode 100644
index 0000000..7b7aa2c
--- /dev/null
+++ b/docs/next-env.d.ts
@@ -0,0 +1,2 @@
+///
+///
diff --git a/docs/next.config.js b/docs/next.config.js
index 0d48bee..cb80f4b 100755
--- a/docs/next.config.js
+++ b/docs/next.config.js
@@ -3,4 +3,8 @@ module.exports = {
env: {
linkPrefix: process.env.NODE_ENV === 'production' ? '/cogo-toast/' : '',
},
+ typescript: {
+ ignoreDevErrors: true,
+ ignoreBuildErrors: true,
+ },
};
diff --git a/docs/package.json b/docs/package.json
index 7a8e817..d0dc9ca 100755
--- a/docs/package.json
+++ b/docs/package.json
@@ -6,20 +6,24 @@
"dev": "next",
"build": "next build",
"start": "next start",
- "export": "yarn run build && next export",
- "deploy": "rm -rf node_modules/.cache && yarn export && touch out/.nojekyll"
+ "export": "pnpm run build && next export",
+ "deploy": "rm -rf node_modules/.cache && pnpm run export && touch out/.nojekyll"
},
"dependencies": {
- "@emotion/core": "10.0.22",
- "@emotion/styled": "10.0.23",
- "babel-plugin-emotion": "10.0.23",
+ "@emotion/core": "10.0.27",
+ "@emotion/styled": "10.0.27",
+ "babel-plugin-emotion": "10.0.27",
"cogo-toast": "link:../",
- "next": "^9.1.6",
+ "next": "^9.1.7",
"prism-react-renderer": "^1.0.2",
"react": "^16.12.0",
"react-dom": "^16.12.0"
},
"devDependencies": {
- "serve": "11.2.0"
+ "@types/node": "^13.1.4",
+ "@types/react": "^16.9.17",
+ "@types/react-dom": "^16.9.4",
+ "typescript": "3.7.4",
+ "serve": "11.3.0"
}
}
diff --git a/docs/pages/_app.jsx b/docs/pages/_app.tsx
similarity index 87%
rename from docs/pages/_app.jsx
rename to docs/pages/_app.tsx
index 22e3ae7..56a4c3d 100755
--- a/docs/pages/_app.jsx
+++ b/docs/pages/_app.tsx
@@ -3,13 +3,13 @@ import App from 'next/app';
import Head from 'next/head';
import Meta from '../components/Meta';
-import GlobalStyles from '../components/Global-Styles';
+import GlobalStyles from '../components/GlobalStyles';
class MyApp extends App {
static async getInitialProps({ Component, ctx }) {
const { asPath, query = {} } = ctx;
- const initialProps = Component.getInitialProps
+ const initialProps = Component?.getInitialProps
? await Component.getInitialProps({ ...ctx })
: {};
const pageProps = { pathname: asPath, query, ...(initialProps || {}) };
diff --git a/docs/pages/_document.jsx b/docs/pages/_document.tsx
similarity index 83%
rename from docs/pages/_document.jsx
rename to docs/pages/_document.tsx
index 5253139..bd720d1 100644
--- a/docs/pages/_document.jsx
+++ b/docs/pages/_document.tsx
@@ -1,8 +1,6 @@
import React from 'react';
-import Document, {
- Html, Head, Main, NextScript,
-} from 'next/document';
+import Document, { Html, Head, Main, NextScript } from 'next/document';
class CogoDocument extends Document {
static async getInitialProps(ctx) {
diff --git a/docs/pages/index.jsx b/docs/pages/index.tsx
similarity index 98%
rename from docs/pages/index.jsx
rename to docs/pages/index.tsx
index 50eba4d..95ff78c 100644
--- a/docs/pages/index.jsx
+++ b/docs/pages/index.tsx
@@ -18,7 +18,7 @@ const Home = () => (
- {/* */}
+
diff --git a/docs/pnpm-lock.yaml b/docs/pnpm-lock.yaml
new file mode 100644
index 0000000..a8dc000
--- /dev/null
+++ b/docs/pnpm-lock.yaml
@@ -0,0 +1,6322 @@
+dependencies:
+ '@emotion/core': 10.0.27_react@16.12.0
+ '@emotion/styled': 10.0.27_2c5d77e899508087ed51e7755add9fe3
+ babel-plugin-emotion: 10.0.27
+ cogo-toast: 'link:..'
+ next: 9.1.7_727e55409c51e4668fd8ce6c10d18575
+ prism-react-renderer: 1.0.2_react@16.12.0
+ react: 16.12.0
+ react-dom: 16.12.0_react@16.12.0
+devDependencies:
+ '@types/node': 13.1.4
+ '@types/react': 16.9.17
+ '@types/react-dom': 16.9.4
+ serve: 11.3.0
+ typescript: 3.7.4
+lockfileVersion: 5.1
+packages:
+ /@ampproject/toolbox-core/1.1.1:
+ dependencies:
+ node-fetch: 2.6.0
+ dev: false
+ resolution:
+ integrity: sha512-jcuVJUnGDRUEJgMYO6QVdf1dBy/oLZX3NjN2hYG48biFcPCvXevuv4xYFZMJsnsHSvXKg8y0qB8rANNyhTUN/A==
+ /@ampproject/toolbox-optimizer/1.1.1_lru-cache@5.1.1:
+ dependencies:
+ '@ampproject/toolbox-core': 1.1.1
+ '@ampproject/toolbox-runtime-version': 1.1.1
+ '@ampproject/toolbox-script-csp': 1.1.1
+ css: 2.2.4
+ lru-cache: 5.1.1
+ parse5: 5.1.0
+ parse5-htmlparser2-tree-adapter: 5.1.0
+ dev: false
+ peerDependencies:
+ jimp: '*'
+ lru-cache: '*'
+ peerDependenciesMeta:
+ jimp:
+ optional: true
+ lru-cache:
+ optional: true
+ resolution:
+ integrity: sha512-LTtTM5FSOrWuTJ6mOwPfZmpUDI6polrNz3tX2EmDmDkjDK+43vSpq1OHtukivIFHafdixJuoeki5dF3PC/ZoWw==
+ /@ampproject/toolbox-runtime-version/1.1.1:
+ dependencies:
+ '@ampproject/toolbox-core': 1.1.1
+ dev: false
+ resolution:
+ integrity: sha512-ibmw5p+0Sz+wingbX/Dyboe8a0+XDkMfFGSM7KFE0h2z3Op9MADup8ZPLeHT54Z7cYKmB6ob60FVHtQQDhEXNw==
+ /@ampproject/toolbox-script-csp/1.1.1:
+ dev: false
+ resolution:
+ integrity: sha512-gACGfsVKinCy/977FSrlVgo6jxTZ0lcTCvCnRlNwvSOcxJVm+jJR3sP7/F43fpak9Gsq/EwFaatfnNMbunPc+w==
+ /@babel/code-frame/7.5.5:
+ dependencies:
+ '@babel/highlight': 7.5.0
+ dev: false
+ resolution:
+ integrity: sha512-27d4lZoomVyo51VegxI20xZPuSHusqbQag/ztrBC7wegWoQ1nLREPVSKSW8byhTlzTKyNE4ifaTA6lCp7JjpFw==
+ /@babel/core/7.7.2:
+ dependencies:
+ '@babel/code-frame': 7.5.5
+ '@babel/generator': 7.7.7
+ '@babel/helpers': 7.7.4
+ '@babel/parser': 7.7.7
+ '@babel/template': 7.7.4
+ '@babel/traverse': 7.7.4
+ '@babel/types': 7.7.4
+ convert-source-map: 1.7.0
+ debug: 4.1.1
+ json5: 2.1.1
+ lodash: 4.17.15
+ resolve: 1.14.2
+ semver: 5.7.1
+ source-map: 0.5.7
+ dev: false
+ engines:
+ node: '>=6.9.0'
+ resolution:
+ integrity: sha512-eeD7VEZKfhK1KUXGiyPFettgF3m513f8FoBSWiQ1xTvl1RAopLs42Wp9+Ze911I6H0N9lNqJMDgoZT7gHsipeQ==
+ /@babel/generator/7.7.7:
+ dependencies:
+ '@babel/types': 7.7.4
+ jsesc: 2.5.2
+ lodash: 4.17.15
+ source-map: 0.5.7
+ dev: false
+ resolution:
+ integrity: sha512-/AOIBpHh/JU1l0ZFS4kiRCBnLi6OTHzh0RPk3h9isBxkkqELtQNFi1Vr/tiG9p1yfoUdKVwISuXWQR+hwwM4VQ==
+ /@babel/helper-annotate-as-pure/7.7.4:
+ dependencies:
+ '@babel/types': 7.7.4
+ dev: false
+ resolution:
+ integrity: sha512-2BQmQgECKzYKFPpiycoF9tlb5HA4lrVyAmLLVK177EcQAqjVLciUb2/R+n1boQ9y5ENV3uz2ZqiNw7QMBBw1Og==
+ /@babel/helper-builder-binary-assignment-operator-visitor/7.7.4:
+ dependencies:
+ '@babel/helper-explode-assignable-expression': 7.7.4
+ '@babel/types': 7.7.4
+ dev: false
+ resolution:
+ integrity: sha512-Biq/d/WtvfftWZ9Uf39hbPBYDUo986m5Bb4zhkeYDGUllF43D+nUe5M6Vuo6/8JDK/0YX/uBdeoQpyaNhNugZQ==
+ /@babel/helper-builder-react-jsx/7.7.4:
+ dependencies:
+ '@babel/types': 7.7.4
+ esutils: 2.0.3
+ dev: false
+ resolution:
+ integrity: sha512-kvbfHJNN9dg4rkEM4xn1s8d1/h6TYNvajy9L1wx4qLn9HFg0IkTsQi4rfBe92nxrPUFcMsHoMV+8rU7MJb3fCA==
+ /@babel/helper-call-delegate/7.7.4:
+ dependencies:
+ '@babel/helper-hoist-variables': 7.7.4
+ '@babel/traverse': 7.7.4
+ '@babel/types': 7.7.4
+ dev: false
+ resolution:
+ integrity: sha512-8JH9/B7J7tCYJ2PpWVpw9JhPuEVHztagNVuQAFBVFYluRMlpG7F1CgKEgGeL6KFqcsIa92ZYVj6DSc0XwmN1ZA==
+ /@babel/helper-create-class-features-plugin/7.7.4_@babel+core@7.7.2:
+ dependencies:
+ '@babel/core': 7.7.2
+ '@babel/helper-function-name': 7.7.4
+ '@babel/helper-member-expression-to-functions': 7.7.4
+ '@babel/helper-optimise-call-expression': 7.7.4
+ '@babel/helper-plugin-utils': 7.0.0
+ '@babel/helper-replace-supers': 7.7.4
+ '@babel/helper-split-export-declaration': 7.7.4
+ dev: false
+ peerDependencies:
+ '@babel/core': ^7.0.0
+ resolution:
+ integrity: sha512-l+OnKACG4uiDHQ/aJT8dwpR+LhCJALxL0mJ6nzjB25e5IPwqV1VOsY7ah6UB1DG+VOXAIMtuC54rFJGiHkxjgA==
+ /@babel/helper-create-regexp-features-plugin/7.7.4_@babel+core@7.7.2:
+ dependencies:
+ '@babel/core': 7.7.2
+ '@babel/helper-regex': 7.5.5
+ regexpu-core: 4.6.0
+ dev: false
+ peerDependencies:
+ '@babel/core': ^7.0.0
+ resolution:
+ integrity: sha512-Mt+jBKaxL0zfOIWrfQpnfYCN7/rS6GKx6CCCfuoqVVd+17R8zNDlzVYmIi9qyb2wOk002NsmSTDymkIygDUH7A==
+ /@babel/helper-define-map/7.7.4:
+ dependencies:
+ '@babel/helper-function-name': 7.7.4
+ '@babel/types': 7.7.4
+ lodash: 4.17.15
+ dev: false
+ resolution:
+ integrity: sha512-v5LorqOa0nVQUvAUTUF3KPastvUt/HzByXNamKQ6RdJRTV7j8rLL+WB5C/MzzWAwOomxDhYFb1wLLxHqox86lg==
+ /@babel/helper-explode-assignable-expression/7.7.4:
+ dependencies:
+ '@babel/traverse': 7.7.4
+ '@babel/types': 7.7.4
+ dev: false
+ resolution:
+ integrity: sha512-2/SicuFrNSXsZNBxe5UGdLr+HZg+raWBLE9vC98bdYOKX/U6PY0mdGlYUJdtTDPSU0Lw0PNbKKDpwYHJLn2jLg==
+ /@babel/helper-function-name/7.7.4:
+ dependencies:
+ '@babel/helper-get-function-arity': 7.7.4
+ '@babel/template': 7.7.4
+ '@babel/types': 7.7.4
+ dev: false
+ resolution:
+ integrity: sha512-AnkGIdiBhEuiwdoMnKm7jfPfqItZhgRaZfMg1XX3bS25INOnLPjPG1Ppnajh8eqgt5kPJnfqrRHqFqmjKDZLzQ==
+ /@babel/helper-get-function-arity/7.7.4:
+ dependencies:
+ '@babel/types': 7.7.4
+ dev: false
+ resolution:
+ integrity: sha512-QTGKEdCkjgzgfJ3bAyRwF4yyT3pg+vDgan8DSivq1eS0gwi+KGKE5x8kRcbeFTb/673mkO5SN1IZfmCfA5o+EA==
+ /@babel/helper-hoist-variables/7.7.4:
+ dependencies:
+ '@babel/types': 7.7.4
+ dev: false
+ resolution:
+ integrity: sha512-wQC4xyvc1Jo/FnLirL6CEgPgPCa8M74tOdjWpRhQYapz5JC7u3NYU1zCVoVAGCE3EaIP9T1A3iW0WLJ+reZlpQ==
+ /@babel/helper-member-expression-to-functions/7.7.4:
+ dependencies:
+ '@babel/types': 7.7.4
+ dev: false
+ resolution:
+ integrity: sha512-9KcA1X2E3OjXl/ykfMMInBK+uVdfIVakVe7W7Lg3wfXUNyS3Q1HWLFRwZIjhqiCGbslummPDnmb7vIekS0C1vw==
+ /@babel/helper-module-imports/7.7.4:
+ dependencies:
+ '@babel/types': 7.7.4
+ dev: false
+ resolution:
+ integrity: sha512-dGcrX6K9l8258WFjyDLJwuVKxR4XZfU0/vTUgOQYWEnRD8mgr+p4d6fCUMq/ys0h4CCt/S5JhbvtyErjWouAUQ==
+ /@babel/helper-module-transforms/7.7.5:
+ dependencies:
+ '@babel/helper-module-imports': 7.7.4
+ '@babel/helper-simple-access': 7.7.4
+ '@babel/helper-split-export-declaration': 7.7.4
+ '@babel/template': 7.7.4
+ '@babel/types': 7.7.4
+ lodash: 4.17.15
+ dev: false
+ resolution:
+ integrity: sha512-A7pSxyJf1gN5qXVcidwLWydjftUN878VkalhXX5iQDuGyiGK3sOrrKKHF4/A4fwHtnsotv/NipwAeLzY4KQPvw==
+ /@babel/helper-optimise-call-expression/7.7.4:
+ dependencies:
+ '@babel/types': 7.7.4
+ dev: false
+ resolution:
+ integrity: sha512-VB7gWZ2fDkSuqW6b1AKXkJWO5NyNI3bFL/kK79/30moK57blr6NbH8xcl2XcKCwOmJosftWunZqfO84IGq3ZZg==
+ /@babel/helper-plugin-utils/7.0.0:
+ dev: false
+ resolution:
+ integrity: sha512-CYAOUCARwExnEixLdB6sDm2dIJ/YgEAKDM1MOeMeZu9Ld/bDgVo8aiWrXwcY7OBh+1Ea2uUcVRcxKk0GJvW7QA==
+ /@babel/helper-regex/7.5.5:
+ dependencies:
+ lodash: 4.17.15
+ dev: false
+ resolution:
+ integrity: sha512-CkCYQLkfkiugbRDO8eZn6lRuR8kzZoGXCg3149iTk5se7g6qykSpy3+hELSwquhu+TgHn8nkLiBwHvNX8Hofcw==
+ /@babel/helper-remap-async-to-generator/7.7.4:
+ dependencies:
+ '@babel/helper-annotate-as-pure': 7.7.4
+ '@babel/helper-wrap-function': 7.7.4
+ '@babel/template': 7.7.4
+ '@babel/traverse': 7.7.4
+ '@babel/types': 7.7.4
+ dev: false
+ resolution:
+ integrity: sha512-Sk4xmtVdM9sA/jCI80f+KS+Md+ZHIpjuqmYPk1M7F/upHou5e4ReYmExAiu6PVe65BhJPZA2CY9x9k4BqE5klw==
+ /@babel/helper-replace-supers/7.7.4:
+ dependencies:
+ '@babel/helper-member-expression-to-functions': 7.7.4
+ '@babel/helper-optimise-call-expression': 7.7.4
+ '@babel/traverse': 7.7.4
+ '@babel/types': 7.7.4
+ dev: false
+ resolution:
+ integrity: sha512-pP0tfgg9hsZWo5ZboYGuBn/bbYT/hdLPVSS4NMmiRJdwWhP0IznPwN9AE1JwyGsjSPLC364I0Qh5p+EPkGPNpg==
+ /@babel/helper-simple-access/7.7.4:
+ dependencies:
+ '@babel/template': 7.7.4
+ '@babel/types': 7.7.4
+ dev: false
+ resolution:
+ integrity: sha512-zK7THeEXfan7UlWsG2A6CI/L9jVnI5+xxKZOdej39Y0YtDYKx9raHk5F2EtK9K8DHRTihYwg20ADt9S36GR78A==
+ /@babel/helper-split-export-declaration/7.7.4:
+ dependencies:
+ '@babel/types': 7.7.4
+ dev: false
+ resolution:
+ integrity: sha512-guAg1SXFcVr04Guk9eq0S4/rWS++sbmyqosJzVs8+1fH5NI+ZcmkaSkc7dmtAFbHFva6yRJnjW3yAcGxjueDug==
+ /@babel/helper-wrap-function/7.7.4:
+ dependencies:
+ '@babel/helper-function-name': 7.7.4
+ '@babel/template': 7.7.4
+ '@babel/traverse': 7.7.4
+ '@babel/types': 7.7.4
+ dev: false
+ resolution:
+ integrity: sha512-VsfzZt6wmsocOaVU0OokwrIytHND55yvyT4BPB9AIIgwr8+x7617hetdJTsuGwygN5RC6mxA9EJztTjuwm2ofg==
+ /@babel/helpers/7.7.4:
+ dependencies:
+ '@babel/template': 7.7.4
+ '@babel/traverse': 7.7.4
+ '@babel/types': 7.7.4
+ dev: false
+ resolution:
+ integrity: sha512-ak5NGZGJ6LV85Q1Zc9gn2n+ayXOizryhjSUBTdu5ih1tlVCJeuQENzc4ItyCVhINVXvIT/ZQ4mheGIsfBkpskg==
+ /@babel/highlight/7.5.0:
+ dependencies:
+ chalk: 2.4.2
+ esutils: 2.0.3
+ js-tokens: 4.0.0
+ dev: false
+ resolution:
+ integrity: sha512-7dV4eu9gBxoM0dAnj/BCFDW9LFU0zvTrkq0ugM7pnHEgguOEeOz1so2ZghEdzviYzQEED0r4EAgpsBChKy1TRQ==
+ /@babel/parser/7.7.7:
+ dev: false
+ engines:
+ node: '>=6.0.0'
+ hasBin: true
+ resolution:
+ integrity: sha512-WtTZMZAZLbeymhkd/sEaPD8IQyGAhmuTuvTzLiCFM7iXiVdY0gc0IaI+cW0fh1BnSMbJSzXX6/fHllgHKwHhXw==
+ /@babel/plugin-proposal-async-generator-functions/7.7.4_@babel+core@7.7.2:
+ dependencies:
+ '@babel/core': 7.7.2
+ '@babel/helper-plugin-utils': 7.0.0
+ '@babel/helper-remap-async-to-generator': 7.7.4
+ '@babel/plugin-syntax-async-generators': 7.7.4_@babel+core@7.7.2
+ dev: false
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ resolution:
+ integrity: sha512-1ypyZvGRXriY/QP668+s8sFr2mqinhkRDMPSQLNghCQE+GAkFtp+wkHVvg2+Hdki8gwP+NFzJBJ/N1BfzCCDEw==
+ /@babel/plugin-proposal-class-properties/7.7.0_@babel+core@7.7.2:
+ dependencies:
+ '@babel/core': 7.7.2
+ '@babel/helper-create-class-features-plugin': 7.7.4_@babel+core@7.7.2
+ '@babel/helper-plugin-utils': 7.0.0
+ dev: false
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ resolution:
+ integrity: sha512-tufDcFA1Vj+eWvwHN+jvMN6QsV5o+vUlytNKrbMiCeDL0F2j92RURzUsUMWE5EJkLyWxjdUslCsMQa9FWth16A==
+ /@babel/plugin-proposal-dynamic-import/7.7.4_@babel+core@7.7.2:
+ dependencies:
+ '@babel/core': 7.7.2
+ '@babel/helper-plugin-utils': 7.0.0
+ '@babel/plugin-syntax-dynamic-import': 7.7.4_@babel+core@7.7.2
+ dev: false
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ resolution:
+ integrity: sha512-StH+nGAdO6qDB1l8sZ5UBV8AC3F2VW2I8Vfld73TMKyptMU9DY5YsJAS8U81+vEtxcH3Y/La0wG0btDrhpnhjQ==
+ /@babel/plugin-proposal-json-strings/7.7.4_@babel+core@7.7.2:
+ dependencies:
+ '@babel/core': 7.7.2
+ '@babel/helper-plugin-utils': 7.0.0
+ '@babel/plugin-syntax-json-strings': 7.7.4_@babel+core@7.7.2
+ dev: false
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ resolution:
+ integrity: sha512-wQvt3akcBTfLU/wYoqm/ws7YOAQKu8EVJEvHip/mzkNtjaclQoCCIqKXFP5/eyfnfbQCDV3OLRIK3mIVyXuZlw==
+ /@babel/plugin-proposal-nullish-coalescing-operator/7.7.4_@babel+core@7.7.2:
+ dependencies:
+ '@babel/core': 7.7.2
+ '@babel/helper-plugin-utils': 7.0.0
+ '@babel/plugin-syntax-nullish-coalescing-operator': 7.7.4_@babel+core@7.7.2
+ dev: false
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ resolution:
+ integrity: sha512-TbYHmr1Gl1UC7Vo2HVuj/Naci5BEGNZ0AJhzqD2Vpr6QPFWpUmBRLrIDjedzx7/CShq0bRDS2gI4FIs77VHLVQ==
+ /@babel/plugin-proposal-object-rest-spread/7.6.2_@babel+core@7.7.2:
+ dependencies:
+ '@babel/core': 7.7.2
+ '@babel/helper-plugin-utils': 7.0.0
+ '@babel/plugin-syntax-object-rest-spread': 7.7.4_@babel+core@7.7.2
+ dev: false
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ resolution:
+ integrity: sha512-LDBXlmADCsMZV1Y9OQwMc0MyGZ8Ta/zlD9N67BfQT8uYwkRswiu2hU6nJKrjrt/58aH/vqfQlR/9yId/7A2gWw==
+ /@babel/plugin-proposal-optional-catch-binding/7.7.4_@babel+core@7.7.2:
+ dependencies:
+ '@babel/core': 7.7.2
+ '@babel/helper-plugin-utils': 7.0.0
+ '@babel/plugin-syntax-optional-catch-binding': 7.7.4_@babel+core@7.7.2
+ dev: false
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ resolution:
+ integrity: sha512-DyM7U2bnsQerCQ+sejcTNZh8KQEUuC3ufzdnVnSiUv/qoGJp2Z3hanKL18KDhsBT5Wj6a7CMT5mdyCNJsEaA9w==
+ /@babel/plugin-proposal-optional-chaining/7.7.4_@babel+core@7.7.2:
+ dependencies:
+ '@babel/core': 7.7.2
+ '@babel/helper-plugin-utils': 7.0.0
+ '@babel/plugin-syntax-optional-chaining': 7.7.4_@babel+core@7.7.2
+ dev: false
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ resolution:
+ integrity: sha512-JmgaS+ygAWDR/STPe3/7y0lNlHgS+19qZ9aC06nYLwQ/XB7c0q5Xs+ksFU3EDnp9EiEsO0dnRAOKeyLHTZuW3A==
+ /@babel/plugin-proposal-unicode-property-regex/7.7.7_@babel+core@7.7.2:
+ dependencies:
+ '@babel/core': 7.7.2
+ '@babel/helper-create-regexp-features-plugin': 7.7.4_@babel+core@7.7.2
+ '@babel/helper-plugin-utils': 7.0.0
+ dev: false
+ engines:
+ node: '>=4'
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ resolution:
+ integrity: sha512-80PbkKyORBUVm1fbTLrHpYdJxMThzM1UqFGh0ALEhO9TYbG86Ah9zQYAB/84axz2vcxefDLdZwWwZNlYARlu9w==
+ /@babel/plugin-syntax-async-generators/7.7.4_@babel+core@7.7.2:
+ dependencies:
+ '@babel/core': 7.7.2
+ '@babel/helper-plugin-utils': 7.0.0
+ dev: false
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ resolution:
+ integrity: sha512-Li4+EjSpBgxcsmeEF8IFcfV/+yJGxHXDirDkEoyFjumuwbmfCVHUt0HuowD/iGM7OhIRyXJH9YXxqiH6N815+g==
+ /@babel/plugin-syntax-dynamic-import/7.2.0_@babel+core@7.7.2:
+ dependencies:
+ '@babel/core': 7.7.2
+ '@babel/helper-plugin-utils': 7.0.0
+ dev: false
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ resolution:
+ integrity: sha512-mVxuJ0YroI/h/tbFTPGZR8cv6ai+STMKNBq0f8hFxsxWjl94qqhsb+wXbpNMDPU3cfR1TIsVFzU3nXyZMqyK4w==
+ /@babel/plugin-syntax-dynamic-import/7.7.4_@babel+core@7.7.2:
+ dependencies:
+ '@babel/core': 7.7.2
+ '@babel/helper-plugin-utils': 7.0.0
+ dev: false
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ resolution:
+ integrity: sha512-jHQW0vbRGvwQNgyVxwDh4yuXu4bH1f5/EICJLAhl1SblLs2CDhrsmCk+v5XLdE9wxtAFRyxx+P//Iw+a5L/tTg==
+ /@babel/plugin-syntax-json-strings/7.7.4_@babel+core@7.7.2:
+ dependencies:
+ '@babel/core': 7.7.2
+ '@babel/helper-plugin-utils': 7.0.0
+ dev: false
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ resolution:
+ integrity: sha512-QpGupahTQW1mHRXddMG5srgpHWqRLwJnJZKXTigB9RPFCCGbDGCgBeM/iC82ICXp414WeYx/tD54w7M2qRqTMg==
+ /@babel/plugin-syntax-jsx/7.7.4_@babel+core@7.7.2:
+ dependencies:
+ '@babel/core': 7.7.2
+ '@babel/helper-plugin-utils': 7.0.0
+ dev: false
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ resolution:
+ integrity: sha512-wuy6fiMe9y7HeZBWXYCGt2RGxZOj0BImZ9EyXJVnVGBKO/Br592rbR3rtIQn0eQhAk9vqaKP5n8tVqEFBQMfLg==
+ /@babel/plugin-syntax-nullish-coalescing-operator/7.7.4_@babel+core@7.7.2:
+ dependencies:
+ '@babel/core': 7.7.2
+ '@babel/helper-plugin-utils': 7.0.0
+ dev: false
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ resolution:
+ integrity: sha512-XKh/yIRPiQTOeBg0QJjEus5qiSKucKAiApNtO1psqG7D17xmE+X2i5ZqBEuSvo0HRuyPaKaSN/Gy+Ha9KFQolw==
+ /@babel/plugin-syntax-object-rest-spread/7.7.4_@babel+core@7.7.2:
+ dependencies:
+ '@babel/core': 7.7.2
+ '@babel/helper-plugin-utils': 7.0.0
+ dev: false
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ resolution:
+ integrity: sha512-mObR+r+KZq0XhRVS2BrBKBpr5jqrqzlPvS9C9vuOf5ilSwzloAl7RPWLrgKdWS6IreaVrjHxTjtyqFiOisaCwg==
+ /@babel/plugin-syntax-optional-catch-binding/7.7.4_@babel+core@7.7.2:
+ dependencies:
+ '@babel/core': 7.7.2
+ '@babel/helper-plugin-utils': 7.0.0
+ dev: false
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ resolution:
+ integrity: sha512-4ZSuzWgFxqHRE31Glu+fEr/MirNZOMYmD/0BhBWyLyOOQz/gTAl7QmWm2hX1QxEIXsr2vkdlwxIzTyiYRC4xcQ==
+ /@babel/plugin-syntax-optional-chaining/7.7.4_@babel+core@7.7.2:
+ dependencies:
+ '@babel/core': 7.7.2
+ '@babel/helper-plugin-utils': 7.0.0
+ dev: false
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ resolution:
+ integrity: sha512-2MqYD5WjZSbJdUagnJvIdSfkb/ucOC9/1fRJxm7GAxY6YQLWlUvkfxoNbUPcPLHJyetKUDQ4+yyuUyAoc0HriA==
+ /@babel/plugin-syntax-top-level-await/7.7.4_@babel+core@7.7.2:
+ dependencies:
+ '@babel/core': 7.7.2
+ '@babel/helper-plugin-utils': 7.0.0
+ dev: false
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ resolution:
+ integrity: sha512-wdsOw0MvkL1UIgiQ/IFr3ETcfv1xb8RMM0H9wbiDyLaJFyiDg5oZvDLCXosIXmFeIlweML5iOBXAkqddkYNizg==
+ /@babel/plugin-syntax-typescript/7.7.4_@babel+core@7.7.2:
+ dependencies:
+ '@babel/core': 7.7.2
+ '@babel/helper-plugin-utils': 7.0.0
+ dev: false
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ resolution:
+ integrity: sha512-77blgY18Hud4NM1ggTA8xVT/dBENQf17OpiToSa2jSmEY3fWXD2jwrdVlO4kq5yzUTeF15WSQ6b4fByNvJcjpQ==
+ /@babel/plugin-transform-arrow-functions/7.7.4_@babel+core@7.7.2:
+ dependencies:
+ '@babel/core': 7.7.2
+ '@babel/helper-plugin-utils': 7.0.0
+ dev: false
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ resolution:
+ integrity: sha512-zUXy3e8jBNPiffmqkHRNDdZM2r8DWhCB7HhcoyZjiK1TxYEluLHAvQuYnTT+ARqRpabWqy/NHkO6e3MsYB5YfA==
+ /@babel/plugin-transform-async-to-generator/7.7.4_@babel+core@7.7.2:
+ dependencies:
+ '@babel/core': 7.7.2
+ '@babel/helper-module-imports': 7.7.4
+ '@babel/helper-plugin-utils': 7.0.0
+ '@babel/helper-remap-async-to-generator': 7.7.4
+ dev: false
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ resolution:
+ integrity: sha512-zpUTZphp5nHokuy8yLlyafxCJ0rSlFoSHypTUWgpdwoDXWQcseaect7cJ8Ppk6nunOM6+5rPMkod4OYKPR5MUg==
+ /@babel/plugin-transform-block-scoped-functions/7.7.4_@babel+core@7.7.2:
+ dependencies:
+ '@babel/core': 7.7.2
+ '@babel/helper-plugin-utils': 7.0.0
+ dev: false
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ resolution:
+ integrity: sha512-kqtQzwtKcpPclHYjLK//3lH8OFsCDuDJBaFhVwf8kqdnF6MN4l618UDlcA7TfRs3FayrHj+svYnSX8MC9zmUyQ==
+ /@babel/plugin-transform-block-scoping/7.7.4_@babel+core@7.7.2:
+ dependencies:
+ '@babel/core': 7.7.2
+ '@babel/helper-plugin-utils': 7.0.0
+ lodash: 4.17.15
+ dev: false
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ resolution:
+ integrity: sha512-2VBe9u0G+fDt9B5OV5DQH4KBf5DoiNkwFKOz0TCvBWvdAN2rOykCTkrL+jTLxfCAm76l9Qo5OqL7HBOx2dWggg==
+ /@babel/plugin-transform-classes/7.7.4_@babel+core@7.7.2:
+ dependencies:
+ '@babel/core': 7.7.2
+ '@babel/helper-annotate-as-pure': 7.7.4
+ '@babel/helper-define-map': 7.7.4
+ '@babel/helper-function-name': 7.7.4
+ '@babel/helper-optimise-call-expression': 7.7.4
+ '@babel/helper-plugin-utils': 7.0.0
+ '@babel/helper-replace-supers': 7.7.4
+ '@babel/helper-split-export-declaration': 7.7.4
+ globals: 11.12.0
+ dev: false
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ resolution:
+ integrity: sha512-sK1mjWat7K+buWRuImEzjNf68qrKcrddtpQo3swi9j7dUcG6y6R6+Di039QN2bD1dykeswlagupEmpOatFHHUg==
+ /@babel/plugin-transform-computed-properties/7.7.4_@babel+core@7.7.2:
+ dependencies:
+ '@babel/core': 7.7.2
+ '@babel/helper-plugin-utils': 7.0.0
+ dev: false
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ resolution:
+ integrity: sha512-bSNsOsZnlpLLyQew35rl4Fma3yKWqK3ImWMSC/Nc+6nGjC9s5NFWAer1YQ899/6s9HxO2zQC1WoFNfkOqRkqRQ==
+ /@babel/plugin-transform-destructuring/7.7.4_@babel+core@7.7.2:
+ dependencies:
+ '@babel/core': 7.7.2
+ '@babel/helper-plugin-utils': 7.0.0
+ dev: false
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ resolution:
+ integrity: sha512-4jFMXI1Cu2aXbcXXl8Lr6YubCn6Oc7k9lLsu8v61TZh+1jny2BWmdtvY9zSUlLdGUvcy9DMAWyZEOqjsbeg/wA==
+ /@babel/plugin-transform-dotall-regex/7.7.7_@babel+core@7.7.2:
+ dependencies:
+ '@babel/core': 7.7.2
+ '@babel/helper-create-regexp-features-plugin': 7.7.4_@babel+core@7.7.2
+ '@babel/helper-plugin-utils': 7.0.0
+ dev: false
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ resolution:
+ integrity: sha512-b4in+YlTeE/QmTgrllnb3bHA0HntYvjz8O3Mcbx75UBPJA2xhb5A8nle498VhxSXJHQefjtQxpnLPehDJ4TRlg==
+ /@babel/plugin-transform-duplicate-keys/7.7.4_@babel+core@7.7.2:
+ dependencies:
+ '@babel/core': 7.7.2
+ '@babel/helper-plugin-utils': 7.0.0
+ dev: false
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ resolution:
+ integrity: sha512-g1y4/G6xGWMD85Tlft5XedGaZBCIVN+/P0bs6eabmcPP9egFleMAo65OOjlhcz1njpwagyY3t0nsQC9oTFegJA==
+ /@babel/plugin-transform-exponentiation-operator/7.7.4_@babel+core@7.7.2:
+ dependencies:
+ '@babel/core': 7.7.2
+ '@babel/helper-builder-binary-assignment-operator-visitor': 7.7.4
+ '@babel/helper-plugin-utils': 7.0.0
+ dev: false
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ resolution:
+ integrity: sha512-MCqiLfCKm6KEA1dglf6Uqq1ElDIZwFuzz1WH5mTf8k2uQSxEJMbOIEh7IZv7uichr7PMfi5YVSrr1vz+ipp7AQ==
+ /@babel/plugin-transform-for-of/7.7.4_@babel+core@7.7.2:
+ dependencies:
+ '@babel/core': 7.7.2
+ '@babel/helper-plugin-utils': 7.0.0
+ dev: false
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ resolution:
+ integrity: sha512-zZ1fD1B8keYtEcKF+M1TROfeHTKnijcVQm0yO/Yu1f7qoDoxEIc/+GX6Go430Bg84eM/xwPFp0+h4EbZg7epAA==
+ /@babel/plugin-transform-function-name/7.7.4_@babel+core@7.7.2:
+ dependencies:
+ '@babel/core': 7.7.2
+ '@babel/helper-function-name': 7.7.4
+ '@babel/helper-plugin-utils': 7.0.0
+ dev: false
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ resolution:
+ integrity: sha512-E/x09TvjHNhsULs2IusN+aJNRV5zKwxu1cpirZyRPw+FyyIKEHPXTsadj48bVpc1R5Qq1B5ZkzumuFLytnbT6g==
+ /@babel/plugin-transform-literals/7.7.4_@babel+core@7.7.2:
+ dependencies:
+ '@babel/core': 7.7.2
+ '@babel/helper-plugin-utils': 7.0.0
+ dev: false
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ resolution:
+ integrity: sha512-X2MSV7LfJFm4aZfxd0yLVFrEXAgPqYoDG53Br/tCKiKYfX0MjVjQeWPIhPHHsCqzwQANq+FLN786fF5rgLS+gw==
+ /@babel/plugin-transform-member-expression-literals/7.7.4_@babel+core@7.7.2:
+ dependencies:
+ '@babel/core': 7.7.2
+ '@babel/helper-plugin-utils': 7.0.0
+ dev: false
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ resolution:
+ integrity: sha512-9VMwMO7i69LHTesL0RdGy93JU6a+qOPuvB4F4d0kR0zyVjJRVJRaoaGjhtki6SzQUu8yen/vxPKN6CWnCUw6bA==
+ /@babel/plugin-transform-modules-amd/7.7.5_@babel+core@7.7.2:
+ dependencies:
+ '@babel/core': 7.7.2
+ '@babel/helper-module-transforms': 7.7.5
+ '@babel/helper-plugin-utils': 7.0.0
+ babel-plugin-dynamic-import-node: 2.3.0
+ dev: false
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ resolution:
+ integrity: sha512-CT57FG4A2ZUNU1v+HdvDSDrjNWBrtCmSH6YbbgN3Lrf0Di/q/lWRxZrE72p3+HCCz9UjfZOEBdphgC0nzOS6DQ==
+ /@babel/plugin-transform-modules-commonjs/7.7.0_@babel+core@7.7.2:
+ dependencies:
+ '@babel/core': 7.7.2
+ '@babel/helper-module-transforms': 7.7.5
+ '@babel/helper-plugin-utils': 7.0.0
+ '@babel/helper-simple-access': 7.7.4
+ babel-plugin-dynamic-import-node: 2.3.0
+ dev: false
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ resolution:
+ integrity: sha512-KEMyWNNWnjOom8vR/1+d+Ocz/mILZG/eyHHO06OuBQ2aNhxT62fr4y6fGOplRx+CxCSp3IFwesL8WdINfY/3kg==
+ /@babel/plugin-transform-modules-systemjs/7.7.4_@babel+core@7.7.2:
+ dependencies:
+ '@babel/core': 7.7.2
+ '@babel/helper-hoist-variables': 7.7.4
+ '@babel/helper-plugin-utils': 7.0.0
+ babel-plugin-dynamic-import-node: 2.3.0
+ dev: false
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ resolution:
+ integrity: sha512-y2c96hmcsUi6LrMqvmNDPBBiGCiQu0aYqpHatVVu6kD4mFEXKjyNxd/drc18XXAf9dv7UXjrZwBVmTTGaGP8iw==
+ /@babel/plugin-transform-modules-umd/7.7.4_@babel+core@7.7.2:
+ dependencies:
+ '@babel/core': 7.7.2
+ '@babel/helper-module-transforms': 7.7.5
+ '@babel/helper-plugin-utils': 7.0.0
+ dev: false
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ resolution:
+ integrity: sha512-u2B8TIi0qZI4j8q4C51ktfO7E3cQ0qnaXFI1/OXITordD40tt17g/sXqgNNCcMTcBFKrUPcGDx+TBJuZxLx7tw==
+ /@babel/plugin-transform-named-capturing-groups-regex/7.7.4_@babel+core@7.7.2:
+ dependencies:
+ '@babel/core': 7.7.2
+ '@babel/helper-create-regexp-features-plugin': 7.7.4_@babel+core@7.7.2
+ dev: false
+ peerDependencies:
+ '@babel/core': ^7.0.0
+ resolution:
+ integrity: sha512-jBUkiqLKvUWpv9GLSuHUFYdmHg0ujC1JEYoZUfeOOfNydZXp1sXObgyPatpcwjWgsdBGsagWW0cdJpX/DO2jMw==
+ /@babel/plugin-transform-new-target/7.7.4_@babel+core@7.7.2:
+ dependencies:
+ '@babel/core': 7.7.2
+ '@babel/helper-plugin-utils': 7.0.0
+ dev: false
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ resolution:
+ integrity: sha512-CnPRiNtOG1vRodnsyGX37bHQleHE14B9dnnlgSeEs3ek3fHN1A1SScglTCg1sfbe7sRQ2BUcpgpTpWSfMKz3gg==
+ /@babel/plugin-transform-object-super/7.7.4_@babel+core@7.7.2:
+ dependencies:
+ '@babel/core': 7.7.2
+ '@babel/helper-plugin-utils': 7.0.0
+ '@babel/helper-replace-supers': 7.7.4
+ dev: false
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ resolution:
+ integrity: sha512-ho+dAEhC2aRnff2JCA0SAK7V2R62zJd/7dmtoe7MHcso4C2mS+vZjn1Pb1pCVZvJs1mgsvv5+7sT+m3Bysb6eg==
+ /@babel/plugin-transform-parameters/7.7.7_@babel+core@7.7.2:
+ dependencies:
+ '@babel/core': 7.7.2
+ '@babel/helper-call-delegate': 7.7.4
+ '@babel/helper-get-function-arity': 7.7.4
+ '@babel/helper-plugin-utils': 7.0.0
+ dev: false
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ resolution:
+ integrity: sha512-OhGSrf9ZBrr1fw84oFXj5hgi8Nmg+E2w5L7NhnG0lPvpDtqd7dbyilM2/vR8CKbJ907RyxPh2kj6sBCSSfI9Ew==
+ /@babel/plugin-transform-property-literals/7.7.4_@babel+core@7.7.2:
+ dependencies:
+ '@babel/core': 7.7.2
+ '@babel/helper-plugin-utils': 7.0.0
+ dev: false
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ resolution:
+ integrity: sha512-MatJhlC4iHsIskWYyawl53KuHrt+kALSADLQQ/HkhTjX954fkxIEh4q5slL4oRAnsm/eDoZ4q0CIZpcqBuxhJQ==
+ /@babel/plugin-transform-react-display-name/7.7.4_@babel+core@7.7.2:
+ dependencies:
+ '@babel/core': 7.7.2
+ '@babel/helper-plugin-utils': 7.0.0
+ dev: false
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ resolution:
+ integrity: sha512-sBbIvqYkthai0X0vkD2xsAwluBp+LtNHH+/V4a5ydifmTtb8KOVOlrMIk/MYmIc4uTYDnjZUHQildYNo36SRJw==
+ /@babel/plugin-transform-react-jsx-self/7.7.4_@babel+core@7.7.2:
+ dependencies:
+ '@babel/core': 7.7.2
+ '@babel/helper-plugin-utils': 7.0.0
+ '@babel/plugin-syntax-jsx': 7.7.4_@babel+core@7.7.2
+ dev: false
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ resolution:
+ integrity: sha512-PWYjSfqrO273mc1pKCRTIJXyqfc9vWYBax88yIhQb+bpw3XChVC7VWS4VwRVs63wFHKxizvGSd00XEr+YB9Q2A==
+ /@babel/plugin-transform-react-jsx-source/7.7.4_@babel+core@7.7.2:
+ dependencies:
+ '@babel/core': 7.7.2
+ '@babel/helper-plugin-utils': 7.0.0
+ '@babel/plugin-syntax-jsx': 7.7.4_@babel+core@7.7.2
+ dev: false
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ resolution:
+ integrity: sha512-5ZU9FnPhqtHsOXxutRtXZAzoEJwDaP32QcobbMP1/qt7NYcsCNK8XgzJcJfoEr/ZnzVvUNInNjIW22Z6I8p9mg==
+ /@babel/plugin-transform-react-jsx/7.7.7_@babel+core@7.7.2:
+ dependencies:
+ '@babel/core': 7.7.2
+ '@babel/helper-builder-react-jsx': 7.7.4
+ '@babel/helper-plugin-utils': 7.0.0
+ '@babel/plugin-syntax-jsx': 7.7.4_@babel+core@7.7.2
+ dev: false
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ resolution:
+ integrity: sha512-SlPjWPbva2+7/ZJbGcoqjl4LsQaLpKEzxW9hcxU7675s24JmdotJOSJ4cgAbV82W3FcZpHIGmRZIlUL8ayMvjw==
+ /@babel/plugin-transform-regenerator/7.7.5_@babel+core@7.7.2:
+ dependencies:
+ '@babel/core': 7.7.2
+ regenerator-transform: 0.14.1
+ dev: false
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ resolution:
+ integrity: sha512-/8I8tPvX2FkuEyWbjRCt4qTAgZK0DVy8QRguhA524UH48RfGJy94On2ri+dCuwOpcerPRl9O4ebQkRcVzIaGBw==
+ /@babel/plugin-transform-reserved-words/7.7.4_@babel+core@7.7.2:
+ dependencies:
+ '@babel/core': 7.7.2
+ '@babel/helper-plugin-utils': 7.0.0
+ dev: false
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ resolution:
+ integrity: sha512-OrPiUB5s5XvkCO1lS7D8ZtHcswIC57j62acAnJZKqGGnHP+TIc/ljQSrgdX/QyOTdEK5COAhuc820Hi1q2UgLQ==
+ /@babel/plugin-transform-runtime/7.6.2_@babel+core@7.7.2:
+ dependencies:
+ '@babel/core': 7.7.2
+ '@babel/helper-module-imports': 7.7.4
+ '@babel/helper-plugin-utils': 7.0.0
+ resolve: 1.14.2
+ semver: 5.7.1
+ dev: false
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ resolution:
+ integrity: sha512-cqULw/QB4yl73cS5Y0TZlQSjDvNkzDbu0FurTZyHlJpWE5T3PCMdnyV+xXoH1opr1ldyHODe3QAX3OMAii5NxA==
+ /@babel/plugin-transform-shorthand-properties/7.7.4_@babel+core@7.7.2:
+ dependencies:
+ '@babel/core': 7.7.2
+ '@babel/helper-plugin-utils': 7.0.0
+ dev: false
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ resolution:
+ integrity: sha512-q+suddWRfIcnyG5YiDP58sT65AJDZSUhXQDZE3r04AuqD6d/XLaQPPXSBzP2zGerkgBivqtQm9XKGLuHqBID6Q==
+ /@babel/plugin-transform-spread/7.7.4_@babel+core@7.7.2:
+ dependencies:
+ '@babel/core': 7.7.2
+ '@babel/helper-plugin-utils': 7.0.0
+ dev: false
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ resolution:
+ integrity: sha512-8OSs0FLe5/80cndziPlg4R0K6HcWSM0zyNhHhLsmw/Nc5MaA49cAsnoJ/t/YZf8qkG7fD+UjTRaApVDB526d7Q==
+ /@babel/plugin-transform-sticky-regex/7.7.4_@babel+core@7.7.2:
+ dependencies:
+ '@babel/core': 7.7.2
+ '@babel/helper-plugin-utils': 7.0.0
+ '@babel/helper-regex': 7.5.5
+ dev: false
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ resolution:
+ integrity: sha512-Ls2NASyL6qtVe1H1hXts9yuEeONV2TJZmplLONkMPUG158CtmnrzW5Q5teibM5UVOFjG0D3IC5mzXR6pPpUY7A==
+ /@babel/plugin-transform-template-literals/7.7.4_@babel+core@7.7.2:
+ dependencies:
+ '@babel/core': 7.7.2
+ '@babel/helper-annotate-as-pure': 7.7.4
+ '@babel/helper-plugin-utils': 7.0.0
+ dev: false
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ resolution:
+ integrity: sha512-sA+KxLwF3QwGj5abMHkHgshp9+rRz+oY9uoRil4CyLtgEuE/88dpkeWgNk5qKVsJE9iSfly3nvHapdRiIS2wnQ==
+ /@babel/plugin-transform-typeof-symbol/7.7.4_@babel+core@7.7.2:
+ dependencies:
+ '@babel/core': 7.7.2
+ '@babel/helper-plugin-utils': 7.0.0
+ dev: false
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ resolution:
+ integrity: sha512-KQPUQ/7mqe2m0B8VecdyaW5XcQYaePyl9R7IsKd+irzj6jvbhoGnRE+M0aNkyAzI07VfUQ9266L5xMARitV3wg==
+ /@babel/plugin-transform-typescript/7.7.4_@babel+core@7.7.2:
+ dependencies:
+ '@babel/core': 7.7.2
+ '@babel/helper-create-class-features-plugin': 7.7.4_@babel+core@7.7.2
+ '@babel/helper-plugin-utils': 7.0.0
+ '@babel/plugin-syntax-typescript': 7.7.4_@babel+core@7.7.2
+ dev: false
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ resolution:
+ integrity: sha512-X8e3tcPEKnwwPVG+vP/vSqEShkwODOEeyQGod82qrIuidwIrfnsGn11qPM1jBLF4MqguTXXYzm58d0dY+/wdpg==
+ /@babel/plugin-transform-unicode-regex/7.7.4_@babel+core@7.7.2:
+ dependencies:
+ '@babel/core': 7.7.2
+ '@babel/helper-create-regexp-features-plugin': 7.7.4_@babel+core@7.7.2
+ '@babel/helper-plugin-utils': 7.0.0
+ dev: false
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ resolution:
+ integrity: sha512-N77UUIV+WCvE+5yHw+oks3m18/umd7y392Zv7mYTpFqHtkpcc+QUz+gLJNTWVlWROIWeLqY0f3OjZxV5TcXnRw==
+ /@babel/preset-env/7.7.1_@babel+core@7.7.2:
+ dependencies:
+ '@babel/core': 7.7.2
+ '@babel/helper-module-imports': 7.7.4
+ '@babel/helper-plugin-utils': 7.0.0
+ '@babel/plugin-proposal-async-generator-functions': 7.7.4_@babel+core@7.7.2
+ '@babel/plugin-proposal-dynamic-import': 7.7.4_@babel+core@7.7.2
+ '@babel/plugin-proposal-json-strings': 7.7.4_@babel+core@7.7.2
+ '@babel/plugin-proposal-object-rest-spread': 7.6.2_@babel+core@7.7.2
+ '@babel/plugin-proposal-optional-catch-binding': 7.7.4_@babel+core@7.7.2
+ '@babel/plugin-proposal-unicode-property-regex': 7.7.7_@babel+core@7.7.2
+ '@babel/plugin-syntax-async-generators': 7.7.4_@babel+core@7.7.2
+ '@babel/plugin-syntax-dynamic-import': 7.2.0_@babel+core@7.7.2
+ '@babel/plugin-syntax-json-strings': 7.7.4_@babel+core@7.7.2
+ '@babel/plugin-syntax-object-rest-spread': 7.7.4_@babel+core@7.7.2
+ '@babel/plugin-syntax-optional-catch-binding': 7.7.4_@babel+core@7.7.2
+ '@babel/plugin-syntax-top-level-await': 7.7.4_@babel+core@7.7.2
+ '@babel/plugin-transform-arrow-functions': 7.7.4_@babel+core@7.7.2
+ '@babel/plugin-transform-async-to-generator': 7.7.4_@babel+core@7.7.2
+ '@babel/plugin-transform-block-scoped-functions': 7.7.4_@babel+core@7.7.2
+ '@babel/plugin-transform-block-scoping': 7.7.4_@babel+core@7.7.2
+ '@babel/plugin-transform-classes': 7.7.4_@babel+core@7.7.2
+ '@babel/plugin-transform-computed-properties': 7.7.4_@babel+core@7.7.2
+ '@babel/plugin-transform-destructuring': 7.7.4_@babel+core@7.7.2
+ '@babel/plugin-transform-dotall-regex': 7.7.7_@babel+core@7.7.2
+ '@babel/plugin-transform-duplicate-keys': 7.7.4_@babel+core@7.7.2
+ '@babel/plugin-transform-exponentiation-operator': 7.7.4_@babel+core@7.7.2
+ '@babel/plugin-transform-for-of': 7.7.4_@babel+core@7.7.2
+ '@babel/plugin-transform-function-name': 7.7.4_@babel+core@7.7.2
+ '@babel/plugin-transform-literals': 7.7.4_@babel+core@7.7.2
+ '@babel/plugin-transform-member-expression-literals': 7.7.4_@babel+core@7.7.2
+ '@babel/plugin-transform-modules-amd': 7.7.5_@babel+core@7.7.2
+ '@babel/plugin-transform-modules-commonjs': 7.7.0_@babel+core@7.7.2
+ '@babel/plugin-transform-modules-systemjs': 7.7.4_@babel+core@7.7.2
+ '@babel/plugin-transform-modules-umd': 7.7.4_@babel+core@7.7.2
+ '@babel/plugin-transform-named-capturing-groups-regex': 7.7.4_@babel+core@7.7.2
+ '@babel/plugin-transform-new-target': 7.7.4_@babel+core@7.7.2
+ '@babel/plugin-transform-object-super': 7.7.4_@babel+core@7.7.2
+ '@babel/plugin-transform-parameters': 7.7.7_@babel+core@7.7.2
+ '@babel/plugin-transform-property-literals': 7.7.4_@babel+core@7.7.2
+ '@babel/plugin-transform-regenerator': 7.7.5_@babel+core@7.7.2
+ '@babel/plugin-transform-reserved-words': 7.7.4_@babel+core@7.7.2
+ '@babel/plugin-transform-shorthand-properties': 7.7.4_@babel+core@7.7.2
+ '@babel/plugin-transform-spread': 7.7.4_@babel+core@7.7.2
+ '@babel/plugin-transform-sticky-regex': 7.7.4_@babel+core@7.7.2
+ '@babel/plugin-transform-template-literals': 7.7.4_@babel+core@7.7.2
+ '@babel/plugin-transform-typeof-symbol': 7.7.4_@babel+core@7.7.2
+ '@babel/plugin-transform-unicode-regex': 7.7.4_@babel+core@7.7.2
+ '@babel/types': 7.7.4
+ browserslist: 4.8.3
+ core-js-compat: 3.6.2
+ invariant: 2.2.4
+ js-levenshtein: 1.1.6
+ semver: 5.7.1
+ dev: false
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ resolution:
+ integrity: sha512-/93SWhi3PxcVTDpSqC+Dp4YxUu3qZ4m7I76k0w73wYfn7bGVuRIO4QUz95aJksbS+AD1/mT1Ie7rbkT0wSplaA==
+ /@babel/preset-modules/0.1.1_@babel+core@7.7.2:
+ dependencies:
+ '@babel/core': 7.7.2
+ '@babel/helper-plugin-utils': 7.0.0
+ '@babel/plugin-proposal-unicode-property-regex': 7.7.7_@babel+core@7.7.2
+ '@babel/plugin-transform-dotall-regex': 7.7.7_@babel+core@7.7.2
+ '@babel/types': 7.7.4
+ esutils: 2.0.3
+ dev: false
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ resolution:
+ integrity: sha512-x/kt2aAZlgcFnP3P851fkkb2s4FmTiyGic58pkWMaRK9Am3u9KkH1ttHGjwlsKu7/TVJsLEBXZnjUxqsid3tww==
+ /@babel/preset-react/7.7.0_@babel+core@7.7.2:
+ dependencies:
+ '@babel/core': 7.7.2
+ '@babel/helper-plugin-utils': 7.0.0
+ '@babel/plugin-transform-react-display-name': 7.7.4_@babel+core@7.7.2
+ '@babel/plugin-transform-react-jsx': 7.7.7_@babel+core@7.7.2
+ '@babel/plugin-transform-react-jsx-self': 7.7.4_@babel+core@7.7.2
+ '@babel/plugin-transform-react-jsx-source': 7.7.4_@babel+core@7.7.2
+ dev: false
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ resolution:
+ integrity: sha512-IXXgSUYBPHUGhUkH+89TR6faMcBtuMW0h5OHbMuVbL3/5wK2g6a2M2BBpkLa+Kw0sAHiZ9dNVgqJMDP/O4GRBA==
+ /@babel/preset-typescript/7.7.2_@babel+core@7.7.2:
+ dependencies:
+ '@babel/core': 7.7.2
+ '@babel/helper-plugin-utils': 7.0.0
+ '@babel/plugin-transform-typescript': 7.7.4_@babel+core@7.7.2
+ dev: false
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ resolution:
+ integrity: sha512-1B4HthAelaLGfNRyrWqJtBEjXX1ulThCrLQ5B2VOtEAznWFIFXFJahgXImqppy66lx/Oh+cOSCQdJzZqh2Jh5g==
+ /@babel/runtime-corejs2/7.7.2:
+ dependencies:
+ core-js: 2.6.11
+ regenerator-runtime: 0.13.3
+ dev: false
+ resolution:
+ integrity: sha512-GfVnHchOBvIMsweQ13l4jd9lT4brkevnavnVOej5g2y7PpTRY+R4pcQlCjWMZoUla5rMLFzaS/Ll2s59cB1TqQ==
+ /@babel/runtime/7.7.2:
+ dependencies:
+ regenerator-runtime: 0.13.3
+ dev: false
+ resolution:
+ integrity: sha512-JONRbXbTXc9WQE2mAZd1p0Z3DZ/6vaQIkgYMSTP3KjRCyd7rCZCcfhCyX+YjwcKxcZ82UrxbRD358bpExNgrjw==
+ /@babel/runtime/7.7.7:
+ dependencies:
+ regenerator-runtime: 0.13.3
+ dev: false
+ resolution:
+ integrity: sha512-uCnC2JEVAu8AKB5do1WRIsvrdJ0flYx/A/9f/6chdacnEZ7LmavjdsDXr5ksYBegxtuTPR5Va9/+13QF/kFkCA==
+ /@babel/template/7.7.4:
+ dependencies:
+ '@babel/code-frame': 7.5.5
+ '@babel/parser': 7.7.7
+ '@babel/types': 7.7.4
+ dev: false
+ resolution:
+ integrity: sha512-qUzihgVPguAzXCK7WXw8pqs6cEwi54s3E+HrejlkuWO6ivMKx9hZl3Y2fSXp9i5HgyWmj7RKP+ulaYnKM4yYxw==
+ /@babel/traverse/7.7.4:
+ dependencies:
+ '@babel/code-frame': 7.5.5
+ '@babel/generator': 7.7.7
+ '@babel/helper-function-name': 7.7.4
+ '@babel/helper-split-export-declaration': 7.7.4
+ '@babel/parser': 7.7.7
+ '@babel/types': 7.7.4
+ debug: 4.1.1
+ globals: 11.12.0
+ lodash: 4.17.15
+ dev: false
+ resolution:
+ integrity: sha512-P1L58hQyupn8+ezVA2z5KBm4/Zr4lCC8dwKCMYzsa5jFMDMQAzaBNy9W5VjB+KAmBjb40U7a/H6ao+Xo+9saIw==
+ /@babel/types/7.7.4:
+ dependencies:
+ esutils: 2.0.3
+ lodash: 4.17.15
+ to-fast-properties: 2.0.0
+ dev: false
+ resolution:
+ integrity: sha512-cz5Ji23KCi4T+YIE/BolWosrJuSmoZeN1EFnRtBwF+KKLi8GG/Z2c2hOJJeCXPk4mwk4QFvTmwIodJowXgttRA==
+ /@csstools/convert-colors/1.4.0:
+ dev: false
+ engines:
+ node: '>=4.0.0'
+ resolution:
+ integrity: sha512-5a6wqoJV/xEdbRNKVo6I4hO3VjyDq//8q2f9I6PBAvMesJHFauXDorcNCsr9RzvsZnaWi5NYCcfyqP1QeFHFbw==
+ /@emotion/cache/10.0.27:
+ dependencies:
+ '@emotion/sheet': 0.9.4
+ '@emotion/stylis': 0.8.5
+ '@emotion/utils': 0.11.3
+ '@emotion/weak-memoize': 0.2.5
+ dev: false
+ resolution:
+ integrity: sha512-Zp8BEpbMunFsTcqAK4D7YTm3MvCp1SekflSLJH8lze2fCcSZ/yMkXHo8kb3t1/1Tdd3hAqf3Fb7z9VZ+FMiC9w==
+ /@emotion/core/10.0.27_react@16.12.0:
+ dependencies:
+ '@babel/runtime': 7.7.7
+ '@emotion/cache': 10.0.27
+ '@emotion/css': 10.0.27
+ '@emotion/serialize': 0.11.15
+ '@emotion/sheet': 0.9.4
+ '@emotion/utils': 0.11.3
+ react: 16.12.0
+ dev: false
+ peerDependencies:
+ react: '>=16.3.0'
+ resolution:
+ integrity: sha512-XbD5R36pVbohQMnKfajHv43g8EbN4NHdF6Zh9zg/C0nr0jqwOw3gYnC07Xj3yG43OYSRyrGsoQ5qPwc8ycvLZw==
+ /@emotion/css/10.0.27:
+ dependencies:
+ '@emotion/serialize': 0.11.15
+ '@emotion/utils': 0.11.3
+ babel-plugin-emotion: 10.0.27
+ dev: false
+ resolution:
+ integrity: sha512-6wZjsvYeBhyZQYNrGoR5yPMYbMBNEnanDrqmsqS1mzDm1cOTu12shvl2j4QHNS36UaTE0USIJawCH9C8oW34Zw==
+ /@emotion/hash/0.7.4:
+ dev: false
+ resolution:
+ integrity: sha512-fxfMSBMX3tlIbKUdtGKxqB1fyrH6gVrX39Gsv3y8lRYKUqlgDt3UMqQyGnR1bQMa2B8aGnhLZokZgg8vT0Le+A==
+ /@emotion/is-prop-valid/0.8.6:
+ dependencies:
+ '@emotion/memoize': 0.7.4
+ dev: false
+ resolution:
+ integrity: sha512-mnZMho3Sq8BfzkYYRVc8ilQTnc8U02Ytp6J1AwM6taQStZ3AhsEJBX2LzhA/LJirNCwM2VtHL3VFIZ+sNJUgUQ==
+ /@emotion/memoize/0.7.4:
+ dev: false
+ resolution:
+ integrity: sha512-Ja/Vfqe3HpuzRsG1oBtWTHk2PGZ7GR+2Vz5iYGelAw8dx32K0y7PjVuxK6z1nMpZOqAFsRUPCkK1YjJ56qJlgw==
+ /@emotion/serialize/0.11.15:
+ dependencies:
+ '@emotion/hash': 0.7.4
+ '@emotion/memoize': 0.7.4
+ '@emotion/unitless': 0.7.5
+ '@emotion/utils': 0.11.3
+ csstype: 2.6.8
+ dev: false
+ resolution:
+ integrity: sha512-YE+qnrmGwyR+XB5j7Bi+0GT1JWsdcjM/d4POu+TXkcnrRs4RFCCsi3d/Ebf+wSStHqAlTT2+dfd+b9N9EO2KBg==
+ /@emotion/sheet/0.9.4:
+ dev: false
+ resolution:
+ integrity: sha512-zM9PFmgVSqBw4zL101Q0HrBVTGmpAxFZH/pYx/cjJT5advXguvcgjHFTCaIO3enL/xr89vK2bh0Mfyj9aa0ANA==
+ /@emotion/styled-base/10.0.27_2c5d77e899508087ed51e7755add9fe3:
+ dependencies:
+ '@babel/runtime': 7.7.7
+ '@emotion/core': 10.0.27_react@16.12.0
+ '@emotion/is-prop-valid': 0.8.6
+ '@emotion/serialize': 0.11.15
+ '@emotion/utils': 0.11.3
+ react: 16.12.0
+ dev: false
+ peerDependencies:
+ '@emotion/core': ^10.0.27
+ react: '>=16.3.0'
+ resolution:
+ integrity: sha512-ufHM/HhE3nr309hJG9jxuFt71r6aHn7p+bwXduFxcwPFEfBIqvmZUMtZ9YxIsY61PVwK3bp4G1XhaCzy9smVvw==
+ /@emotion/styled/10.0.27_2c5d77e899508087ed51e7755add9fe3:
+ dependencies:
+ '@emotion/core': 10.0.27_react@16.12.0
+ '@emotion/styled-base': 10.0.27_2c5d77e899508087ed51e7755add9fe3
+ babel-plugin-emotion: 10.0.27
+ react: 16.12.0
+ dev: false
+ peerDependencies:
+ '@emotion/core': ^10.0.27
+ react: '>=16.3.0'
+ resolution:
+ integrity: sha512-iK/8Sh7+NLJzyp9a5+vIQIXTYxfT4yB/OJbjzQanB2RZpvmzBQOHZWhpAMZWYEKRNNbsD6WfBw5sVWkb6WzS/Q==
+ /@emotion/stylis/0.8.5:
+ dev: false
+ resolution:
+ integrity: sha512-h6KtPihKFn3T9fuIrwvXXUOwlx3rfUvfZIcP5a6rh8Y7zjE3O06hT5Ss4S/YI1AYhuZ1kjaE/5EaOOI2NqSylQ==
+ /@emotion/unitless/0.7.5:
+ dev: false
+ resolution:
+ integrity: sha512-OWORNpfjMsSSUBVrRBVGECkhWcULOAJz9ZW8uK9qgxD+87M7jHRcvh/A96XXNhXTLmKcoYSQtBEX7lHMO7YRwg==
+ /@emotion/utils/0.11.3:
+ dev: false
+ resolution:
+ integrity: sha512-0o4l6pZC+hI88+bzuaX/6BgOvQVhbt2PfmxauVaYOGgbsAw14wdKyvMCZXnsnsHys94iadcF+RG/wZyx6+ZZBw==
+ /@emotion/weak-memoize/0.2.5:
+ dev: false
+ resolution:
+ integrity: sha512-6U71C2Wp7r5XtFtQzYrW5iKFT67OixrSxjI4MptCHzdSVlgabczzqLe0ZSgnub/5Kp4hSbpDB1tMytZY9pwxxA==
+ /@types/node/13.1.4:
+ dev: true
+ resolution:
+ integrity: sha512-Lue/mlp2egZJoHXZr4LndxDAd7i/7SQYhV0EjWfb/a4/OZ6tuVwMCVPiwkU5nsEipxEf7hmkSU7Em5VQ8P5NGA==
+ /@types/parse-json/4.0.0:
+ dev: false
+ resolution:
+ integrity: sha512-//oorEZjL6sbPcKUaCdIGlIUeH26mgzimjBB77G6XRgnDl/L5wOnpyBGRe/Mmf5CVW3PwEBE1NjiMZ/ssFh4wA==
+ /@types/prop-types/15.7.3:
+ dev: true
+ resolution:
+ integrity: sha512-KfRL3PuHmqQLOG+2tGpRO26Ctg+Cq1E01D2DMriKEATHgWLfeNDmq9e29Q9WIky0dQ3NPkd1mzYH8Lm936Z9qw==
+ /@types/react-dom/16.9.4:
+ dependencies:
+ '@types/react': 16.9.17
+ dev: true
+ resolution:
+ integrity: sha512-fya9xteU/n90tda0s+FtN5Ym4tbgxpq/hb/Af24dvs6uYnYn+fspaxw5USlw0R8apDNwxsqumdRoCoKitckQqw==
+ /@types/react/16.9.17:
+ dependencies:
+ '@types/prop-types': 15.7.3
+ csstype: 2.6.8
+ dev: true
+ resolution:
+ integrity: sha512-UP27In4fp4sWF5JgyV6pwVPAQM83Fj76JOcg02X5BZcpSu5Wx+fP9RMqc2v0ssBoQIFvD5JdKY41gjJJKmw6Bg==
+ /@webassemblyjs/ast/1.8.5:
+ dependencies:
+ '@webassemblyjs/helper-module-context': 1.8.5
+ '@webassemblyjs/helper-wasm-bytecode': 1.8.5
+ '@webassemblyjs/wast-parser': 1.8.5
+ dev: false
+ resolution:
+ integrity: sha512-aJMfngIZ65+t71C3y2nBBg5FFG0Okt9m0XEgWZ7Ywgn1oMAT8cNwx00Uv1cQyHtidq0Xn94R4TAywO+LCQ+ZAQ==
+ /@webassemblyjs/floating-point-hex-parser/1.8.5:
+ dev: false
+ resolution:
+ integrity: sha512-9p+79WHru1oqBh9ewP9zW95E3XAo+90oth7S5Re3eQnECGq59ly1Ri5tsIipKGpiStHsUYmY3zMLqtk3gTcOtQ==
+ /@webassemblyjs/helper-api-error/1.8.5:
+ dev: false
+ resolution:
+ integrity: sha512-Za/tnzsvnqdaSPOUXHyKJ2XI7PDX64kWtURyGiJJZKVEdFOsdKUCPTNEVFZq3zJ2R0G5wc2PZ5gvdTRFgm81zA==
+ /@webassemblyjs/helper-buffer/1.8.5:
+ dev: false
+ resolution:
+ integrity: sha512-Ri2R8nOS0U6G49Q86goFIPNgjyl6+oE1abW1pS84BuhP1Qcr5JqMwRFT3Ah3ADDDYGEgGs1iyb1DGX+kAi/c/Q==
+ /@webassemblyjs/helper-code-frame/1.8.5:
+ dependencies:
+ '@webassemblyjs/wast-printer': 1.8.5
+ dev: false
+ resolution:
+ integrity: sha512-VQAadSubZIhNpH46IR3yWO4kZZjMxN1opDrzePLdVKAZ+DFjkGD/rf4v1jap744uPVU6yjL/smZbRIIJTOUnKQ==
+ /@webassemblyjs/helper-fsm/1.8.5:
+ dev: false
+ resolution:
+ integrity: sha512-kRuX/saORcg8se/ft6Q2UbRpZwP4y7YrWsLXPbbmtepKr22i8Z4O3V5QE9DbZK908dh5Xya4Un57SDIKwB9eow==
+ /@webassemblyjs/helper-module-context/1.8.5:
+ dependencies:
+ '@webassemblyjs/ast': 1.8.5
+ mamacro: 0.0.3
+ dev: false
+ resolution:
+ integrity: sha512-/O1B236mN7UNEU4t9X7Pj38i4VoU8CcMHyy3l2cV/kIF4U5KoHXDVqcDuOs1ltkac90IM4vZdHc52t1x8Yfs3g==
+ /@webassemblyjs/helper-wasm-bytecode/1.8.5:
+ dev: false
+ resolution:
+ integrity: sha512-Cu4YMYG3Ddl72CbmpjU/wbP6SACcOPVbHN1dI4VJNJVgFwaKf1ppeFJrwydOG3NDHxVGuCfPlLZNyEdIYlQ6QQ==
+ /@webassemblyjs/helper-wasm-section/1.8.5:
+ dependencies:
+ '@webassemblyjs/ast': 1.8.5
+ '@webassemblyjs/helper-buffer': 1.8.5
+ '@webassemblyjs/helper-wasm-bytecode': 1.8.5
+ '@webassemblyjs/wasm-gen': 1.8.5
+ dev: false
+ resolution:
+ integrity: sha512-VV083zwR+VTrIWWtgIUpqfvVdK4ff38loRmrdDBgBT8ADXYsEZ5mPQ4Nde90N3UYatHdYoDIFb7oHzMncI02tA==
+ /@webassemblyjs/ieee754/1.8.5:
+ dependencies:
+ '@xtuc/ieee754': 1.2.0
+ dev: false
+ resolution:
+ integrity: sha512-aaCvQYrvKbY/n6wKHb/ylAJr27GglahUO89CcGXMItrOBqRarUMxWLJgxm9PJNuKULwN5n1csT9bYoMeZOGF3g==
+ /@webassemblyjs/leb128/1.8.5:
+ dependencies:
+ '@xtuc/long': 4.2.2
+ dev: false
+ resolution:
+ integrity: sha512-plYUuUwleLIziknvlP8VpTgO4kqNaH57Y3JnNa6DLpu/sGcP6hbVdfdX5aHAV716pQBKrfuU26BJK29qY37J7A==
+ /@webassemblyjs/utf8/1.8.5:
+ dev: false
+ resolution:
+ integrity: sha512-U7zgftmQriw37tfD934UNInokz6yTmn29inT2cAetAsaU9YeVCveWEwhKL1Mg4yS7q//NGdzy79nlXh3bT8Kjw==
+ /@webassemblyjs/wasm-edit/1.8.5:
+ dependencies:
+ '@webassemblyjs/ast': 1.8.5
+ '@webassemblyjs/helper-buffer': 1.8.5
+ '@webassemblyjs/helper-wasm-bytecode': 1.8.5
+ '@webassemblyjs/helper-wasm-section': 1.8.5
+ '@webassemblyjs/wasm-gen': 1.8.5
+ '@webassemblyjs/wasm-opt': 1.8.5
+ '@webassemblyjs/wasm-parser': 1.8.5
+ '@webassemblyjs/wast-printer': 1.8.5
+ dev: false
+ resolution:
+ integrity: sha512-A41EMy8MWw5yvqj7MQzkDjU29K7UJq1VrX2vWLzfpRHt3ISftOXqrtojn7nlPsZ9Ijhp5NwuODuycSvfAO/26Q==
+ /@webassemblyjs/wasm-gen/1.8.5:
+ dependencies:
+ '@webassemblyjs/ast': 1.8.5
+ '@webassemblyjs/helper-wasm-bytecode': 1.8.5
+ '@webassemblyjs/ieee754': 1.8.5
+ '@webassemblyjs/leb128': 1.8.5
+ '@webassemblyjs/utf8': 1.8.5
+ dev: false
+ resolution:
+ integrity: sha512-BCZBT0LURC0CXDzj5FXSc2FPTsxwp3nWcqXQdOZE4U7h7i8FqtFK5Egia6f9raQLpEKT1VL7zr4r3+QX6zArWg==
+ /@webassemblyjs/wasm-opt/1.8.5:
+ dependencies:
+ '@webassemblyjs/ast': 1.8.5
+ '@webassemblyjs/helper-buffer': 1.8.5
+ '@webassemblyjs/wasm-gen': 1.8.5
+ '@webassemblyjs/wasm-parser': 1.8.5
+ dev: false
+ resolution:
+ integrity: sha512-HKo2mO/Uh9A6ojzu7cjslGaHaUU14LdLbGEKqTR7PBKwT6LdPtLLh9fPY33rmr5wcOMrsWDbbdCHq4hQUdd37Q==
+ /@webassemblyjs/wasm-parser/1.8.5:
+ dependencies:
+ '@webassemblyjs/ast': 1.8.5
+ '@webassemblyjs/helper-api-error': 1.8.5
+ '@webassemblyjs/helper-wasm-bytecode': 1.8.5
+ '@webassemblyjs/ieee754': 1.8.5
+ '@webassemblyjs/leb128': 1.8.5
+ '@webassemblyjs/utf8': 1.8.5
+ dev: false
+ resolution:
+ integrity: sha512-pi0SYE9T6tfcMkthwcgCpL0cM9nRYr6/6fjgDtL6q/ZqKHdMWvxitRi5JcZ7RI4SNJJYnYNaWy5UUrHQy998lw==
+ /@webassemblyjs/wast-parser/1.8.5:
+ dependencies:
+ '@webassemblyjs/ast': 1.8.5
+ '@webassemblyjs/floating-point-hex-parser': 1.8.5
+ '@webassemblyjs/helper-api-error': 1.8.5
+ '@webassemblyjs/helper-code-frame': 1.8.5
+ '@webassemblyjs/helper-fsm': 1.8.5
+ '@xtuc/long': 4.2.2
+ dev: false
+ resolution:
+ integrity: sha512-daXC1FyKWHF1i11obK086QRlsMsY4+tIOKgBqI1lxAnkp9xe9YMcgOxm9kLe+ttjs5aWV2KKE1TWJCN57/Btsg==
+ /@webassemblyjs/wast-printer/1.8.5:
+ dependencies:
+ '@webassemblyjs/ast': 1.8.5
+ '@webassemblyjs/wast-parser': 1.8.5
+ '@xtuc/long': 4.2.2
+ dev: false
+ resolution:
+ integrity: sha512-w0U0pD4EhlnvRyeJzBqaVSJAo9w/ce7/WPogeXLzGkO6hzhr4GnQIZ4W4uUt5b9ooAaXPtnXlj0gzsXEOUNYMg==
+ /@xtuc/ieee754/1.2.0:
+ dev: false
+ resolution:
+ integrity: sha512-DX8nKgqcGwsc0eJSqYt5lwP4DH5FlHnmuWWBRy7X0NcaGR0ZtuyeESgMwTYVEtxmsNGY+qit4QYT/MIYTOTPeA==
+ /@xtuc/long/4.2.2:
+ dev: false
+ resolution:
+ integrity: sha512-NuHqBY1PB/D8xU6s/thBgOAiAP7HOYDQ32+BFZILJ8ivkUkAHQnWfn6WhL79Owj1qmUnoN/YPhktdIoucipkAQ==
+ /@zeit/schemas/2.6.0:
+ dev: true
+ resolution:
+ integrity: sha512-uUrgZ8AxS+Lio0fZKAipJjAh415JyrOZowliZAzmnJSsf7piVL5w+G0+gFJ0KSu3QRhvui/7zuvpLz03YjXAhg==
+ /accepts/1.3.7:
+ dependencies:
+ mime-types: 2.1.26
+ negotiator: 0.6.2
+ engines:
+ node: '>= 0.6'
+ resolution:
+ integrity: sha512-Il80Qs2WjYlJIBNzNkK6KYqlVMTbZLXgHx2oT0pU/fjRHyEp+PEfEPY0R3WCwAGVOtauxh1hOxNgIf5bv7dQpA==
+ /acorn/6.4.0:
+ dev: false
+ engines:
+ node: '>=0.4.0'
+ hasBin: true
+ resolution:
+ integrity: sha512-gac8OEcQ2Li1dxIEWGZzsp2BitJxwkwcOm0zHAJLcPJaVvm58FRnk6RkuLRpU1EujipU2ZFODv2P9DLMfnV8mw==
+ /ajv-errors/1.0.1_ajv@6.10.2:
+ dependencies:
+ ajv: 6.10.2
+ dev: false
+ peerDependencies:
+ ajv: '>=5.0.0'
+ resolution:
+ integrity: sha512-DCRfO/4nQ+89p/RK43i8Ezd41EqdGIU4ld7nGF8OQ14oc/we5rEntLCUa7+jrn3nn83BosfwZA0wb4pon2o8iQ==
+ /ajv-keywords/3.4.1_ajv@6.10.2:
+ dependencies:
+ ajv: 6.10.2
+ dev: false
+ peerDependencies:
+ ajv: ^6.9.1
+ resolution:
+ integrity: sha512-RO1ibKvd27e6FEShVFfPALuHI3WjSVNeK5FIsmme/LYRNxjKuNj+Dt7bucLa6NdSv3JcVTyMlm9kGR84z1XpaQ==
+ /ajv/6.10.2:
+ dependencies:
+ fast-deep-equal: 2.0.1
+ fast-json-stable-stringify: 2.1.0
+ json-schema-traverse: 0.4.1
+ uri-js: 4.2.2
+ dev: false
+ resolution:
+ integrity: sha512-TXtUUEYHuaTEbLZWIKUr5pmBuhDLy+8KYtPYdcV8qC+pOZL+NKqYwvWSRrVXHn+ZmRRAu8vJTAznH7Oag6RVRw==
+ /ajv/6.5.3:
+ dependencies:
+ fast-deep-equal: 2.0.1
+ fast-json-stable-stringify: 2.1.0
+ json-schema-traverse: 0.4.1
+ uri-js: 4.2.2
+ dev: true
+ resolution:
+ integrity: sha512-LqZ9wY+fx3UMiiPd741yB2pj3hhil+hQc8taf4o2QGRFpWgZ2V5C8HA165DY9sS3fJwsk7uT7ZlFEyC3Ig3lLg==
+ /amphtml-validator/1.0.23:
+ dependencies:
+ colors: 1.1.2
+ commander: 2.9.0
+ promise: 7.1.1
+ dev: false
+ engines:
+ node: '>=0.10.25'
+ hasBin: true
+ resolution:
+ integrity: sha1-26DDhUKJVjwK2qwpLNTWCW7k18g=
+ /ansi-align/2.0.0:
+ dependencies:
+ string-width: 2.1.1
+ dev: true
+ resolution:
+ integrity: sha1-w2rsy6VjuJzrVW82kPCx2eNUf38=
+ /ansi-colors/3.2.4:
+ dev: false
+ engines:
+ node: '>=6'
+ resolution:
+ integrity: sha512-hHUXGagefjN2iRrID63xckIvotOXOojhQKWIPUZ4mNUZ9nLZW+7FMNoE1lOkEhNWYsx/7ysGIuJYCiMAA9FnrA==
+ /ansi-html/0.0.7:
+ dev: false
+ engines:
+ '0': node >= 0.8.0
+ hasBin: true
+ resolution:
+ integrity: sha1-gTWEAhliqenm/QOflA0S9WynhZ4=
+ /ansi-regex/2.1.1:
+ dev: false
+ engines:
+ node: '>=0.10.0'
+ resolution:
+ integrity: sha1-w7M6te42DYbg5ijwRorn7yfWVN8=
+ /ansi-regex/3.0.0:
+ dev: true
+ engines:
+ node: '>=4'
+ resolution:
+ integrity: sha1-7QMXwyIGT3lGbAKWa922Bas32Zg=
+ /ansi-regex/4.1.0:
+ dev: false
+ engines:
+ node: '>=6'
+ resolution:
+ integrity: sha512-1apePfXM1UOSqw0o9IiFAovVz9M5S1Dg+4TrDwfMewQ6p/rmMueb7tWZjQ1rx4Loy1ArBggoqGpfqqdI4rondg==
+ /ansi-styles/2.2.1:
+ dev: false
+ engines:
+ node: '>=0.10.0'
+ resolution:
+ integrity: sha1-tDLdM1i2NM914eRmQ2gkBTPB3b4=
+ /ansi-styles/3.2.1:
+ dependencies:
+ color-convert: 1.9.3
+ engines:
+ node: '>=4'
+ resolution:
+ integrity: sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==
+ /anymatch/2.0.0:
+ dependencies:
+ micromatch: 3.1.10
+ normalize-path: 2.1.1
+ dev: false
+ resolution:
+ integrity: sha512-5teOsQWABXHHBFP9y3skS5P3d/WfWXpv3FUpy+LorMrNYaT9pI4oLMQX7jzQ2KklNpGpWHzdCXTDT2Y3XGlZBw==
+ /anymatch/3.1.1:
+ dependencies:
+ normalize-path: 3.0.0
+ picomatch: 2.2.1
+ dev: false
+ engines:
+ node: '>= 8'
+ resolution:
+ integrity: sha512-mM8522psRCqzV+6LhomX5wgp25YVibjh8Wj23I5RPkPppSVSjyKD2A2mBJmWGa+KN7f2D6LNh9jkBCeyLktzjg==
+ /aproba/1.2.0:
+ dev: false
+ resolution:
+ integrity: sha512-Y9J6ZjXtoYh8RnXVCMOU/ttDmk1aBjunq9vO0ta5x85WDQiQfUF9sIPBITdbiiIVcBo03Hi3jMxigBtsddlXRw==
+ /arch/2.1.1:
+ dev: true
+ resolution:
+ integrity: sha512-BLM56aPo9vLLFVa8+/+pJLnrZ7QGGTVHWsCwieAWT9o9K8UeGaQbzZbGoabWLOo2ksBCztoXdqBZBplqLDDCSg==
+ /arg/2.0.0:
+ dev: true
+ resolution:
+ integrity: sha512-XxNTUzKnz1ctK3ZIcI2XUPlD96wbHP2nGqkPKpvk/HNRlPveYrXIVSTk9m3LcqOgDPg3B1nMvdV/K8wZd7PG4w==
+ /argparse/1.0.10:
+ dependencies:
+ sprintf-js: 1.0.3
+ dev: false
+ resolution:
+ integrity: sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==
+ /arr-diff/4.0.0:
+ dev: false
+ engines:
+ node: '>=0.10.0'
+ resolution:
+ integrity: sha1-1kYQdP6/7HHn4VI1dhoyml3HxSA=
+ /arr-flatten/1.1.0:
+ dev: false
+ engines:
+ node: '>=0.10.0'
+ resolution:
+ integrity: sha512-L3hKV5R/p5o81R7O02IGnwpDmkp6E982XhtbuwSe3O4qOtMMMtodicASA1Cny2U+aCXcNpml+m4dPsvsJ3jatg==
+ /arr-union/3.1.0:
+ dev: false
+ engines:
+ node: '>=0.10.0'
+ resolution:
+ integrity: sha1-45sJrqne+Gao8gbiiK9jkZuuOcQ=
+ /array-union/1.0.2:
+ dependencies:
+ array-uniq: 1.0.3
+ dev: false
+ engines:
+ node: '>=0.10.0'
+ resolution:
+ integrity: sha1-mjRBDk9OPaI96jdb5b5w8kd47Dk=
+ /array-uniq/1.0.3:
+ dev: false
+ engines:
+ node: '>=0.10.0'
+ resolution:
+ integrity: sha1-r2rId6Jcx/dOBYiUdThY39sk/bY=
+ /array-unique/0.3.2:
+ dev: false
+ engines:
+ node: '>=0.10.0'
+ resolution:
+ integrity: sha1-qJS3XUvE9s1nnvMkSp/Y9Gri1Cg=
+ /asap/2.0.6:
+ dev: false
+ resolution:
+ integrity: sha1-5QNHYR1+aQlDIIu9r+vLwvuGbUY=
+ /asn1.js/4.10.1:
+ dependencies:
+ bn.js: 4.11.8
+ inherits: 2.0.4
+ minimalistic-assert: 1.0.1
+ dev: false
+ resolution:
+ integrity: sha512-p32cOF5q0Zqs9uBiONKYLm6BClCoBCM5O9JfeUSlnQLBTxYdTK+pW+nXflm8UkKd2UYlEbYz5qEi0JuZR9ckSw==
+ /assert/1.5.0:
+ dependencies:
+ object-assign: 4.1.1
+ util: 0.10.3
+ dev: false
+ resolution:
+ integrity: sha512-EDsgawzwoun2CZkCgtxJbv392v4nbk9XDD06zI+kQYoBM/3RBWLlEyJARDOmhAAosBjWACEkKL6S+lIZtcAubA==
+ /assign-symbols/1.0.0:
+ dev: false
+ engines:
+ node: '>=0.10.0'
+ resolution:
+ integrity: sha1-WWZ/QfrdTyDMvCu5a41Pf3jsA2c=
+ /async-each/1.0.3:
+ dev: false
+ resolution:
+ integrity: sha512-z/WhQ5FPySLdvREByI2vZiTWwCnF0moMJ1hK9YQwDTHKh6I7/uSckMetoRGb5UBZPC1z0jlw+n/XCgjeH7y1AQ==
+ /async-retry/1.2.3:
+ dependencies:
+ retry: 0.12.0
+ dev: false
+ resolution:
+ integrity: sha512-tfDb02Th6CE6pJUF2gjW5ZVjsgwlucVXOEQMvEX9JgSJMs9gAX+Nz3xRuJBKuUYjTSYORqvDBORdAQ3LU59g7Q==
+ /async-sema/3.0.0:
+ dev: false
+ resolution:
+ integrity: sha512-zyCMBDl4m71feawrxYcVbHxv/UUkqm4nKJiLu3+l9lfiQha6jQ/9dxhrXLnzzBXVFqCTDwiUkZOz9XFbdEGQsg==
+ /atob/2.1.2:
+ dev: false
+ engines:
+ node: '>= 4.5.0'
+ hasBin: true
+ resolution:
+ integrity: sha512-Wm6ukoaOGJi/73p/cl2GvLjTI5JM1k/O14isD73YML8StrH/7/lRFgmg8nICZgD3bZZvjwCGxtMOD3wWNAu8cg==
+ /autodll-webpack-plugin/0.4.2_webpack@4.41.2:
+ dependencies:
+ bluebird: 3.7.2
+ del: 3.0.0
+ find-cache-dir: 1.0.0
+ lodash: 4.17.15
+ make-dir: 1.3.0
+ memory-fs: 0.4.1
+ read-pkg: 2.0.0
+ tapable: 1.1.3
+ webpack: 4.41.2_webpack@4.41.2
+ webpack-merge: 4.2.2
+ webpack-sources: 1.4.3
+ dev: false
+ peerDependencies:
+ webpack: ^2.0.0 || ^3.0.0 || ^4.0.0
+ resolution:
+ integrity: sha512-JLrV3ErBNKVkmhi0celM6PJkgYEtztFnXwsNBApjinpVHtIP3g/m2ZZSOvsAe7FoByfJzDhpOXBKFbH3k2UNjw==
+ /autoprefixer/9.7.3:
+ dependencies:
+ browserslist: 4.8.3
+ caniuse-lite: 1.0.30001019
+ chalk: 2.4.2
+ normalize-range: 0.1.2
+ num2fraction: 1.2.2
+ postcss: 7.0.26
+ postcss-value-parser: 4.0.2
+ dev: false
+ engines:
+ node: '>=6.0.0'
+ hasBin: true
+ resolution:
+ integrity: sha512-8T5Y1C5Iyj6PgkPSFd0ODvK9DIleuPKUPYniNxybS47g2k2wFgLZ46lGQHlBuGKIAEV8fbCDfKCCRS1tvOgc3Q==
+ /babel-code-frame/6.26.0:
+ dependencies:
+ chalk: 1.1.3
+ esutils: 2.0.3
+ js-tokens: 3.0.2
+ dev: false
+ resolution:
+ integrity: sha1-Y/1D99weO7fONZR9uP42mj9Yx0s=
+ /babel-core/7.0.0-bridge.0_@babel+core@7.7.2:
+ dependencies:
+ '@babel/core': 7.7.2
+ dev: false
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ resolution:
+ integrity: sha512-poPX9mZH/5CSanm50Q+1toVci6pv5KSRv/5TWCwtzQS5XEwn40BcCrgIeMFWP9CKKIniKXNxoIOnOq4VVlGXhg==
+ /babel-loader/8.0.6_@babel+core@7.7.2+webpack@4.41.2:
+ dependencies:
+ '@babel/core': 7.7.2
+ find-cache-dir: 2.1.0
+ loader-utils: 1.2.3
+ mkdirp: 0.5.1
+ pify: 4.0.1
+ webpack: 4.41.2_webpack@4.41.2
+ dev: false
+ engines:
+ node: '>= 6.9'
+ peerDependencies:
+ '@babel/core': ^7.0.0
+ webpack: '>=2'
+ resolution:
+ integrity: sha512-4BmWKtBOBm13uoUwd08UwjZlaw3O9GWf456R9j+5YykFZ6LUIjIKLc0zEZf+hauxPOJs96C8k6FvYD09vWzhYw==
+ /babel-plugin-dynamic-import-node/2.3.0:
+ dependencies:
+ object.assign: 4.1.0
+ dev: false
+ resolution:
+ integrity: sha512-o6qFkpeQEBxcqt0XYlWzAVxNCSCZdUgcR8IRlhD/8DylxjjO4foPcvTW0GGKa/cVt3rvxZ7o5ippJ+/0nvLhlQ==
+ /babel-plugin-emotion/10.0.27:
+ dependencies:
+ '@babel/helper-module-imports': 7.7.4
+ '@emotion/hash': 0.7.4
+ '@emotion/memoize': 0.7.4
+ '@emotion/serialize': 0.11.15
+ babel-plugin-macros: 2.8.0
+ babel-plugin-syntax-jsx: 6.18.0
+ convert-source-map: 1.7.0
+ escape-string-regexp: 1.0.5
+ find-root: 1.1.0
+ source-map: 0.5.7
+ dev: false
+ resolution:
+ integrity: sha512-SUNYcT4FqhOqvwv0z1oeYhqgheU8qrceLojuHyX17ngo7WtWqN5I9l3IGHzf21Xraj465CVzF4IvOlAF+3ed0A==
+ /babel-plugin-macros/2.8.0:
+ dependencies:
+ '@babel/runtime': 7.7.7
+ cosmiconfig: 6.0.0
+ resolve: 1.14.2
+ dev: false
+ resolution:
+ integrity: sha512-SEP5kJpfGYqYKpBrj5XU3ahw5p5GOHJ0U5ssOSQ/WBVdwkD2Dzlce95exQTs3jOVWPPKLBN2rlEWkCK7dSmLvg==
+ /babel-plugin-syntax-jsx/6.18.0:
+ dev: false
+ resolution:
+ integrity: sha1-CvMqmm4Tyno/1QaeYtew9Y0NiUY=
+ /babel-plugin-transform-define/2.0.0:
+ dependencies:
+ lodash: 4.17.15
+ traverse: 0.6.6
+ dev: false
+ engines:
+ node: '>= 8.x.x'
+ resolution:
+ integrity: sha512-0dv5RNRUlUKxGYIIErl01lpvi8b7W2R04Qcl1mCj70ahwZcgiklfXnFlh4FGnRh6aayCfSZKdhiMryVzcq5Dmg==
+ /babel-plugin-transform-react-remove-prop-types/0.4.24:
+ dev: false
+ resolution:
+ integrity: sha512-eqj0hVcJUR57/Ug2zE1Yswsw4LhuqqHhD+8v120T1cl3kjg76QwtyBrdIk4WVwK+lAhBJVYCd/v+4nc4y+8JsA==
+ /babel-runtime/6.26.0:
+ dependencies:
+ core-js: 2.6.11
+ regenerator-runtime: 0.11.1
+ dev: false
+ resolution:
+ integrity: sha1-llxwWGaOgrVde/4E/yM3vItWR/4=
+ /babel-types/6.26.0:
+ dependencies:
+ babel-runtime: 6.26.0
+ esutils: 2.0.3
+ lodash: 4.17.15
+ to-fast-properties: 1.0.3
+ dev: false
+ resolution:
+ integrity: sha1-o7Bz+Uq0nrb6Vc1lInozQ4BjJJc=
+ /balanced-match/1.0.0:
+ resolution:
+ integrity: sha1-ibTRmasr7kneFk6gK4nORi1xt2c=
+ /base/0.11.2:
+ dependencies:
+ cache-base: 1.0.1
+ class-utils: 0.3.6
+ component-emitter: 1.3.0
+ define-property: 1.0.0
+ isobject: 3.0.1
+ mixin-deep: 1.3.2
+ pascalcase: 0.1.1
+ dev: false
+ engines:
+ node: '>=0.10.0'
+ resolution:
+ integrity: sha512-5T6P4xPgpp0YDFvSWwEZ4NoE3aM4QBQXDzmVbraCkFj8zHM+mba8SyqB5DbZWyR7mYHo6Y7BdQo3MoA4m0TeQg==
+ /base64-js/1.3.1:
+ dev: false
+ resolution:
+ integrity: sha512-mLQ4i2QO1ytvGWFWmcngKO//JXAQueZvwEKtjgQFM4jIK0kU+ytMfplL8j+n5mspOfjHwoAg+9yhb7BwAHm36g==
+ /big.js/5.2.2:
+ dev: false
+ resolution:
+ integrity: sha512-vyL2OymJxmarO8gxMr0mhChsO9QGwhynfuu4+MHTAW6czfq9humCB7rKpUjDd9YUiDPU4mzpyupFSvOClAwbmQ==
+ /binary-extensions/1.13.1:
+ dev: false
+ engines:
+ node: '>=0.10.0'
+ resolution:
+ integrity: sha512-Un7MIEDdUC5gNpcGDV97op1Ywk748MpHcFTHoYs6qnj1Z3j7I53VG3nwZhKzoBZmbdRNnb6WRdFlwl7tSDuZGw==
+ /binary-extensions/2.0.0:
+ dev: false
+ engines:
+ node: '>=8'
+ resolution:
+ integrity: sha512-Phlt0plgpIIBOGTT/ehfFnbNlfsDEiqmzE2KRXoX1bLIlir4X/MR+zSyBEkL05ffWgnRSf/DXv+WrUAVr93/ow==
+ /bindings/1.5.0:
+ dependencies:
+ file-uri-to-path: 1.0.0
+ dev: false
+ optional: true
+ resolution:
+ integrity: sha512-p2q/t/mhvuOj/UeLlV6566GD/guowlr0hHxClI0W9m7MWYkL1F0hLo+0Aexs9HSPCtR1SXQ0TD3MMKrXZajbiQ==
+ /bluebird/3.7.2:
+ dev: false
+ resolution:
+ integrity: sha512-XpNj6GDQzdfW+r2Wnn7xiSAd7TM3jzkxGXBGTtWKuSXv1xUV+azxAm8jdWZN06QTQk+2N2XB9jRDkvbmQmcRtg==
+ /bn.js/4.11.8:
+ dev: false
+ resolution:
+ integrity: sha512-ItfYfPLkWHUjckQCk8xC+LwxgK8NYcXywGigJgSwOP8Y2iyWT4f2vsZnoOXTTbo+o5yXmIUJ4gn5538SO5S3gA==
+ /boxen/1.3.0:
+ dependencies:
+ ansi-align: 2.0.0
+ camelcase: 4.1.0
+ chalk: 2.4.1
+ cli-boxes: 1.0.0
+ string-width: 2.1.1
+ term-size: 1.2.0
+ widest-line: 2.0.1
+ dev: true
+ engines:
+ node: '>=4'
+ resolution:
+ integrity: sha512-TNPjfTr432qx7yOjQyaXm3dSR0MH9vXp7eT1BFSl/C51g+EFnOR9hTg1IreahGBmDNCehscshe45f+C1TBZbLw==
+ /brace-expansion/1.1.11:
+ dependencies:
+ balanced-match: 1.0.0
+ concat-map: 0.0.1
+ resolution:
+ integrity: sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==
+ /braces/2.3.2:
+ dependencies:
+ arr-flatten: 1.1.0
+ array-unique: 0.3.2
+ extend-shallow: 2.0.1
+ fill-range: 4.0.0
+ isobject: 3.0.1
+ repeat-element: 1.1.3
+ snapdragon: 0.8.2
+ snapdragon-node: 2.1.1
+ split-string: 3.1.0
+ to-regex: 3.0.2
+ dev: false
+ engines:
+ node: '>=0.10.0'
+ resolution:
+ integrity: sha512-aNdbnj9P8PjdXU4ybaWLK2IF3jc/EoDYbC7AazW6to3TRsfXxscC9UXOB5iDiEQrkyIbWp2SLQda4+QAa7nc3w==
+ /braces/3.0.2:
+ dependencies:
+ fill-range: 7.0.1
+ dev: false
+ engines:
+ node: '>=8'
+ resolution:
+ integrity: sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==
+ /brorand/1.1.0:
+ dev: false
+ resolution:
+ integrity: sha1-EsJe/kCkXjwyPrhnWgoM5XsiNx8=
+ /browserify-aes/1.2.0:
+ dependencies:
+ buffer-xor: 1.0.3
+ cipher-base: 1.0.4
+ create-hash: 1.2.0
+ evp_bytestokey: 1.0.3
+ inherits: 2.0.4
+ safe-buffer: 5.2.0
+ dev: false
+ resolution:
+ integrity: sha512-+7CHXqGuspUn/Sl5aO7Ea0xWGAtETPXNSAjHo48JfLdPWcMng33Xe4znFvQweqc/uzk5zSOI3H52CYnjCfb5hA==
+ /browserify-cipher/1.0.1:
+ dependencies:
+ browserify-aes: 1.2.0
+ browserify-des: 1.0.2
+ evp_bytestokey: 1.0.3
+ dev: false
+ resolution:
+ integrity: sha512-sPhkz0ARKbf4rRQt2hTpAHqn47X3llLkUGn+xEJzLjwY8LRs2p0v7ljvI5EyoRO/mexrNunNECisZs+gw2zz1w==
+ /browserify-des/1.0.2:
+ dependencies:
+ cipher-base: 1.0.4
+ des.js: 1.0.1
+ inherits: 2.0.4
+ safe-buffer: 5.2.0
+ dev: false
+ resolution:
+ integrity: sha512-BioO1xf3hFwz4kc6iBhI3ieDFompMhrMlnDFC4/0/vd5MokpuAc3R+LYbwTA9A5Yc9pq9UYPqffKpW2ObuwX5A==
+ /browserify-rsa/4.0.1:
+ dependencies:
+ bn.js: 4.11.8
+ randombytes: 2.1.0
+ dev: false
+ resolution:
+ integrity: sha1-IeCr+vbyApzy+vsTNWenAdQTVSQ=
+ /browserify-sign/4.0.4:
+ dependencies:
+ bn.js: 4.11.8
+ browserify-rsa: 4.0.1
+ create-hash: 1.2.0
+ create-hmac: 1.1.7
+ elliptic: 6.5.2
+ inherits: 2.0.4
+ parse-asn1: 5.1.5
+ dev: false
+ resolution:
+ integrity: sha1-qk62jl17ZYuqa/alfmMMvXqT0pg=
+ /browserify-zlib/0.2.0:
+ dependencies:
+ pako: 1.0.10
+ dev: false
+ resolution:
+ integrity: sha512-Z942RysHXmJrhqk88FmKBVq/v5tqmSkDz7p54G/MGyjMnCFFnC79XWNbg+Vta8W6Wb2qtSZTSxIGkJrRpCFEiA==
+ /browserslist/4.8.3:
+ dependencies:
+ caniuse-lite: 1.0.30001019
+ electron-to-chromium: 1.3.328
+ node-releases: 1.1.44
+ dev: false
+ hasBin: true
+ resolution:
+ integrity: sha512-iU43cMMknxG1ClEZ2MDKeonKE1CCrFVkQK2AqO2YWFmvIrx4JWrvQ4w4hQez6EpVI8rHTtqh/ruHHDHSOKxvUg==
+ /buffer-from/1.1.1:
+ dev: false
+ resolution:
+ integrity: sha512-MQcXEUbCKtEo7bhqEs6560Hyd4XaovZlO/k9V3hjVUF/zwW7KBVdSK4gIt/bzwS9MbR5qob+F5jusZsb0YQK2A==
+ /buffer-json/2.0.0:
+ dev: false
+ resolution:
+ integrity: sha512-+jjPFVqyfF1esi9fvfUs3NqM0pH1ziZ36VP4hmA/y/Ssfo/5w5xHKfTw9BwQjoJ1w/oVtpLomqwUHKdefGyuHw==
+ /buffer-xor/1.0.3:
+ dev: false
+ resolution:
+ integrity: sha1-JuYe0UIvtw3ULm42cp7VHYVf6Nk=
+ /buffer/4.9.2:
+ dependencies:
+ base64-js: 1.3.1
+ ieee754: 1.1.13
+ isarray: 1.0.0
+ dev: false
+ resolution:
+ integrity: sha512-xq+q3SRMOxGivLhBNaUdC64hDTQwejJ+H0T/NB1XMtTVEwNTrfFF3gAxiyW0Bu/xWEGhjVKgUcMhCrUy2+uCWg==
+ /builtin-status-codes/3.0.0:
+ dev: false
+ resolution:
+ integrity: sha1-hZgoeOIbmOHGZCXgPQF0eI9Wnug=
+ /bytes/3.0.0:
+ engines:
+ node: '>= 0.8'
+ resolution:
+ integrity: sha1-0ygVQE1olpn4Wk6k+odV3ROpYEg=
+ /bytes/3.1.0:
+ dev: false
+ engines:
+ node: '>= 0.8'
+ resolution:
+ integrity: sha512-zauLjrfCG+xvoyaqLoV8bLVXXNGC4JqlxFCutSDWA6fJrTo2ZuvLYTqZ7aHBLZSMOopbzwv8f+wZcVzfVTI2Dg==
+ /cacache/12.0.3:
+ dependencies:
+ bluebird: 3.7.2
+ chownr: 1.1.3
+ figgy-pudding: 3.5.1
+ glob: 7.1.6
+ graceful-fs: 4.2.3
+ infer-owner: 1.0.4
+ lru-cache: 5.1.1
+ mississippi: 3.0.0
+ mkdirp: 0.5.1
+ move-concurrently: 1.0.1
+ promise-inflight: 1.0.1
+ rimraf: 2.7.1
+ ssri: 6.0.1
+ unique-filename: 1.1.1
+ y18n: 4.0.0
+ dev: false
+ resolution:
+ integrity: sha512-kqdmfXEGFepesTuROHMs3MpFLWrPkSSpRqOw80RCflZXy/khxaArvFrQ7uJxSUduzAufc6G0g1VUCOZXxWavPw==
+ /cache-base/1.0.1:
+ dependencies:
+ collection-visit: 1.0.0
+ component-emitter: 1.3.0
+ get-value: 2.0.6
+ has-value: 1.0.0
+ isobject: 3.0.1
+ set-value: 2.0.1
+ to-object-path: 0.3.0
+ union-value: 1.0.1
+ unset-value: 1.0.0
+ dev: false
+ engines:
+ node: '>=0.10.0'
+ resolution:
+ integrity: sha512-AKcdTnFSWATd5/GCPRxr2ChwIJ85CeyrEyjRHlKxQ56d4XJMGym0uAiKn0xbLOGOl3+yRpOTi484dVCEc5AUzQ==
+ /cache-loader/4.1.0_webpack@4.41.2:
+ dependencies:
+ buffer-json: 2.0.0
+ find-cache-dir: 3.2.0
+ loader-utils: 1.2.3
+ mkdirp: 0.5.1
+ neo-async: 2.6.1
+ schema-utils: 2.6.1
+ webpack: 4.41.2_webpack@4.41.2
+ dev: false
+ engines:
+ node: '>= 8.9.0'
+ peerDependencies:
+ webpack: ^4.0.0
+ resolution:
+ integrity: sha512-ftOayxve0PwKzBF/GLsZNC9fJBXl8lkZE3TOsjkboHfVHVkL39iUEs1FO07A33mizmci5Dudt38UZrrYXDtbhw==
+ /caller-callsite/2.0.0:
+ dependencies:
+ callsites: 2.0.0
+ dev: false
+ engines:
+ node: '>=4'
+ resolution:
+ integrity: sha1-hH4PzgoiN1CpoCfFSzNzGtMVQTQ=
+ /caller-path/2.0.0:
+ dependencies:
+ caller-callsite: 2.0.0
+ dev: false
+ engines:
+ node: '>=4'
+ resolution:
+ integrity: sha1-Ro+DBE42mrIBD6xfBs7uFbsssfQ=
+ /callsites/2.0.0:
+ dev: false
+ engines:
+ node: '>=4'
+ resolution:
+ integrity: sha1-BuuE8A7qQT2oav/vrL/7Ngk7PFA=
+ /callsites/3.1.0:
+ dev: false
+ engines:
+ node: '>=6'
+ resolution:
+ integrity: sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==
+ /camelcase/4.1.0:
+ dev: true
+ engines:
+ node: '>=4'
+ resolution:
+ integrity: sha1-1UVjW+HjPFQmScaRc+Xeas+uNN0=
+ /camelcase/5.3.1:
+ dev: false
+ engines:
+ node: '>=6'
+ resolution:
+ integrity: sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==
+ /caniuse-lite/1.0.30001019:
+ dev: false
+ resolution:
+ integrity: sha512-6ljkLtF1KM5fQ+5ZN0wuyVvvebJxgJPTmScOMaFuQN2QuOzvRJnWSKfzQskQU5IOU4Gap3zasYPIinzwUjoj/g==
+ /chalk/1.1.3:
+ dependencies:
+ ansi-styles: 2.2.1
+ escape-string-regexp: 1.0.5
+ has-ansi: 2.0.0
+ strip-ansi: 3.0.1
+ supports-color: 2.0.0
+ dev: false
+ engines:
+ node: '>=0.10.0'
+ resolution:
+ integrity: sha1-qBFcVeSnAv5NFQq9OHKCKn4J/Jg=
+ /chalk/2.4.1:
+ dependencies:
+ ansi-styles: 3.2.1
+ escape-string-regexp: 1.0.5
+ supports-color: 5.5.0
+ dev: true
+ engines:
+ node: '>=4'
+ resolution:
+ integrity: sha512-ObN6h1v2fTJSmUXoS3nMQ92LbDK9be4TV+6G+omQlGJFdcUX5heKi1LZ1YnRMIgwTLEj3E24bT6tYni50rlCfQ==
+ /chalk/2.4.2:
+ dependencies:
+ ansi-styles: 3.2.1
+ escape-string-regexp: 1.0.5
+ supports-color: 5.5.0
+ dev: false
+ engines:
+ node: '>=4'
+ resolution:
+ integrity: sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==
+ /chokidar/2.1.8:
+ dependencies:
+ anymatch: 2.0.0
+ async-each: 1.0.3
+ braces: 2.3.2
+ glob-parent: 3.1.0
+ inherits: 2.0.4
+ is-binary-path: 1.0.1
+ is-glob: 4.0.1
+ normalize-path: 3.0.0
+ path-is-absolute: 1.0.1
+ readdirp: 2.2.1
+ upath: 1.2.0
+ dev: false
+ optionalDependencies:
+ fsevents: 1.2.11
+ resolution:
+ integrity: sha512-ZmZUazfOzf0Nve7duiCKD23PFSCs4JPoYyccjUFF3aQkQadqBhfzhjkwBH2mNOG9cTBwhamM37EIsIkZw3nRgg==
+ /chokidar/3.3.1:
+ dependencies:
+ anymatch: 3.1.1
+ braces: 3.0.2
+ glob-parent: 5.1.0
+ is-binary-path: 2.1.0
+ is-glob: 4.0.1
+ normalize-path: 3.0.0
+ readdirp: 3.3.0
+ dev: false
+ engines:
+ node: '>= 8.10.0'
+ optionalDependencies:
+ fsevents: 2.1.2
+ resolution:
+ integrity: sha512-4QYCEWOcK3OJrxwvyyAOxFuhpvOVCYkr33LPfFNBjAD/w3sEzWsp2BUOkI4l9bHvWioAd0rc6NlHUOEaWkTeqg==
+ /chownr/1.1.3:
+ dev: false
+ resolution:
+ integrity: sha512-i70fVHhmV3DtTl6nqvZOnIjbY0Pe4kAUjwHj8z0zAdgBtYrJyYwLKCCuRBQ5ppkyL0AkN7HKRnETdmdp1zqNXw==
+ /chrome-trace-event/1.0.2:
+ dependencies:
+ tslib: 1.10.0
+ dev: false
+ engines:
+ node: '>=6.0'
+ resolution:
+ integrity: sha512-9e/zx1jw7B4CO+c/RXoCsfg/x1AfUBioy4owYH0bJprEYAx5hRFLRhWBqHAG57D0ZM4H7vxbP7bPe0VwhQRYDQ==
+ /ci-info/2.0.0:
+ dev: false
+ resolution:
+ integrity: sha512-5tK7EtrZ0N+OLFMthtqOj4fI2Jeb88C4CAZPu25LDVUgXJ0A3Js4PMGqrn0JU1W0Mh1/Z8wZzYPxqUrXeBboCQ==
+ /cipher-base/1.0.4:
+ dependencies:
+ inherits: 2.0.4
+ safe-buffer: 5.2.0
+ dev: false
+ resolution:
+ integrity: sha512-Kkht5ye6ZGmwv40uUDZztayT2ThLQGfnj/T71N/XzeZeo3nf8foyW7zGTsPYkEya3m5f3cAypH+qe7YOrM1U2Q==
+ /class-utils/0.3.6:
+ dependencies:
+ arr-union: 3.1.0
+ define-property: 0.2.5
+ isobject: 3.0.1
+ static-extend: 0.1.2
+ dev: false
+ engines:
+ node: '>=0.10.0'
+ resolution:
+ integrity: sha512-qOhPa/Fj7s6TY8H8esGu5QNpMMQxz79h+urzrNYN6mn+9BnxlDGf5QZ+XeCDsxSjPqsSR56XOZOJmpeurnLMeg==
+ /cli-boxes/1.0.0:
+ dev: true
+ engines:
+ node: '>=0.10.0'
+ resolution:
+ integrity: sha1-T6kXw+WclKAEzWH47lCdplFocUM=
+ /cli-cursor/2.1.0:
+ dependencies:
+ restore-cursor: 2.0.0
+ dev: false
+ engines:
+ node: '>=4'
+ resolution:
+ integrity: sha1-s12sN2R5+sw+lHR9QdDQ9SOP/LU=
+ /cli-spinners/2.2.0:
+ dev: false
+ engines:
+ node: '>=6'
+ resolution:
+ integrity: sha512-tgU3fKwzYjiLEQgPMD9Jt+JjHVL9kW93FiIMX/l7rivvOD4/LL0Mf7gda3+4U2KJBloybwgj5KEoQgGRioMiKQ==
+ /clipboardy/1.2.3:
+ dependencies:
+ arch: 2.1.1
+ execa: 0.8.0
+ dev: true
+ engines:
+ node: '>=4'
+ resolution:
+ integrity: sha512-2WNImOvCRe6r63Gk9pShfkwXsVtKCroMAevIbiae021mS850UkWPbevxsBz3tnvjZIEGvlwaqCPsw+4ulzNgJA==
+ /clone/1.0.4:
+ dev: false
+ engines:
+ node: '>=0.8'
+ resolution:
+ integrity: sha1-2jCcwmPfFZlMaIypAheco8fNfH4=
+ /collection-visit/1.0.0:
+ dependencies:
+ map-visit: 1.0.0
+ object-visit: 1.0.1
+ dev: false
+ engines:
+ node: '>=0.10.0'
+ resolution:
+ integrity: sha1-S8A3PBZLwykbTTaMgpzxqApZ3KA=
+ /color-convert/1.9.3:
+ dependencies:
+ color-name: 1.1.3
+ resolution:
+ integrity: sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==
+ /color-name/1.1.3:
+ resolution:
+ integrity: sha1-p9BVi9icQveV3UIyj3QIMcpTvCU=
+ /colors/1.1.2:
+ dev: false
+ engines:
+ node: '>=0.1.90'
+ resolution:
+ integrity: sha1-FopHAXVran9RoSzgyXv6KMCE7WM=
+ /commander/2.20.3:
+ dev: false
+ resolution:
+ integrity: sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==
+ /commander/2.9.0:
+ dependencies:
+ graceful-readlink: 1.0.1
+ dev: false
+ engines:
+ node: '>= 0.6.x'
+ resolution:
+ integrity: sha1-nJkJQXbhIkDLItbFFGCYQA/g99Q=
+ /commondir/1.0.1:
+ dev: false
+ resolution:
+ integrity: sha1-3dgA2gxmEnOTzKWVDqloo6rxJTs=
+ /component-emitter/1.3.0:
+ dev: false
+ resolution:
+ integrity: sha512-Rd3se6QB+sO1TwqZjscQrurpEPIfO0/yYnSin6Q/rD3mOutHvUrCAhJub3r90uNb+SESBuE0QYoB90YdfatsRg==
+ /compressible/2.0.18:
+ dependencies:
+ mime-db: 1.43.0
+ engines:
+ node: '>= 0.6'
+ resolution:
+ integrity: sha512-AF3r7P5dWxL8MxyITRMlORQNaOA2IkAFaTr4k7BUumjPtRpGDTZpl0Pb1XCO6JeDCBdp126Cgs9sMxqSjgYyRg==
+ /compression/1.7.3:
+ dependencies:
+ accepts: 1.3.7
+ bytes: 3.0.0
+ compressible: 2.0.18
+ debug: 2.6.9
+ on-headers: 1.0.2
+ safe-buffer: 5.1.2
+ vary: 1.1.2
+ dev: true
+ engines:
+ node: '>= 0.8.0'
+ resolution:
+ integrity: sha512-HSjyBG5N1Nnz7tF2+O7A9XUhyjru71/fwgNb7oIsEVHR0WShfs2tIS/EySLgiTe98aOK18YDlMXpzjCXY/n9mg==
+ /compression/1.7.4:
+ dependencies:
+ accepts: 1.3.7
+ bytes: 3.0.0
+ compressible: 2.0.18
+ debug: 2.6.9
+ on-headers: 1.0.2
+ safe-buffer: 5.1.2
+ vary: 1.1.2
+ dev: false
+ engines:
+ node: '>= 0.8.0'
+ resolution:
+ integrity: sha512-jaSIDzP9pZVS4ZfQ+TzvtiWhdpFhE2RDHz8QJkpX9SIpLq88VueF5jJw6t+6CUQcAoA6t+x89MLrWAqpfDE8iQ==
+ /concat-map/0.0.1:
+ resolution:
+ integrity: sha1-2Klr13/Wjfd5OnMDajug1UBdR3s=
+ /concat-stream/1.6.2:
+ dependencies:
+ buffer-from: 1.1.1
+ inherits: 2.0.4
+ readable-stream: 2.3.7
+ typedarray: 0.0.6
+ dev: false
+ engines:
+ '0': node >= 0.8
+ resolution:
+ integrity: sha512-27HBghJxjiZtIk3Ycvn/4kbJk/1uZuJFfuPEns6LaEvpvG1f0hTea8lilrouyo9mVc2GWdcEZ8OLoGmSADlrCw==
+ /conf/5.0.0:
+ dependencies:
+ ajv: 6.10.2
+ dot-prop: 5.2.0
+ env-paths: 2.2.0
+ json-schema-typed: 7.0.3
+ make-dir: 3.0.0
+ pkg-up: 3.1.0
+ write-file-atomic: 3.0.1
+ dev: false
+ engines:
+ node: '>=8'
+ resolution:
+ integrity: sha512-lRNyt+iRD4plYaOSVTxu1zPWpaH0EOxgFIR1l3mpC/DGZ7XzhoGFMKmbl54LAgXcSu6knqWgOwdINkqm58N85A==
+ /console-browserify/1.2.0:
+ dev: false
+ resolution:
+ integrity: sha512-ZMkYO/LkF17QvCPqM0gxw8yUzigAOZOSWSHg91FH6orS7vcEj5dVZTidN2fQ14yBSdg97RqhSNwLUXInd52OTA==
+ /constants-browserify/1.0.0:
+ dev: false
+ resolution:
+ integrity: sha1-wguW2MYXdIqvHBYCF2DNJ/y4y3U=
+ /content-disposition/0.5.2:
+ dev: true
+ engines:
+ node: '>= 0.6'
+ resolution:
+ integrity: sha1-DPaLud318r55YcOoUXjLhdunjLQ=
+ /content-type/1.0.4:
+ dev: false
+ engines:
+ node: '>= 0.6'
+ resolution:
+ integrity: sha512-hIP3EEPs8tB9AT1L+NUqtwOAps4mk2Zob89MWXMHjHWg9milF/j4osnnQLXBCBFBk/tvIG/tUc9mOUJiPBhPXA==
+ /convert-source-map/1.7.0:
+ dependencies:
+ safe-buffer: 5.1.2
+ dev: false
+ resolution:
+ integrity: sha512-4FJkXzKXEDB1snCFZlLP4gpC3JILicCpGbzG9f9G7tGqGCzETQ2hWPrcinA9oU4wtf2biUaEH5065UnMeR33oA==
+ /cookie/0.4.0:
+ dev: false
+ engines:
+ node: '>= 0.6'
+ resolution:
+ integrity: sha512-+Hp8fLp57wnUSt0tY0tHEXh4voZRDnoIrZPqlo3DPiI4y9lwg/jqx+1Om94/W6ZaPDOUbnjOt/99w66zk+l1Xg==
+ /copy-concurrently/1.0.5:
+ dependencies:
+ aproba: 1.2.0
+ fs-write-stream-atomic: 1.0.10
+ iferr: 0.1.5
+ mkdirp: 0.5.1
+ rimraf: 2.7.1
+ run-queue: 1.0.3
+ dev: false
+ resolution:
+ integrity: sha512-f2domd9fsVDFtaFcbaRZuYXwtdmnzqbADSwhSWYxYB/Q8zsdUUFMXVRwXGDMWmbEzAn1kdRrtI1T/KTFOL4X2A==
+ /copy-descriptor/0.1.1:
+ dev: false
+ engines:
+ node: '>=0.10.0'
+ resolution:
+ integrity: sha1-Z29us8OZl8LuGsOpJP1hJHSPV40=
+ /core-js-compat/3.6.2:
+ dependencies:
+ browserslist: 4.8.3
+ semver: 7.0.0
+ dev: false
+ resolution:
+ integrity: sha512-+G28dzfYGtAM+XGvB1C5AS1ZPKfQ47HLhcdeIQdZgQnJVdp7/D0m+W/TErwhgsX6CujRUk/LebB6dCrKrtJrvQ==
+ /core-js/2.6.11:
+ deprecated: 'core-js@<3 is no longer maintained and not recommended for usage due to the number of issues. Please, upgrade your dependencies to the actual version of core-js@3.'
+ dev: false
+ requiresBuild: true
+ resolution:
+ integrity: sha512-5wjnpaT/3dV+XB4borEsnAYQchn00XSgTAWKDkEqv+K8KevjbzmofK6hfJ9TZIlpj2N0xQpazy7PiRQiWHqzWg==
+ /core-util-is/1.0.2:
+ dev: false
+ resolution:
+ integrity: sha1-tf1UIgqivFq1eqtxQMlAdUUDwac=
+ /cosmiconfig/5.2.1:
+ dependencies:
+ import-fresh: 2.0.0
+ is-directory: 0.3.1
+ js-yaml: 3.13.1
+ parse-json: 4.0.0
+ dev: false
+ engines:
+ node: '>=4'
+ resolution:
+ integrity: sha512-H65gsXo1SKjf8zmrJ67eJk8aIRKV5ff2D4uKZIBZShbhGSpEmsQOPW/SKMKYhSTrqR7ufy6RP69rPogdaPh/kA==
+ /cosmiconfig/6.0.0:
+ dependencies:
+ '@types/parse-json': 4.0.0
+ import-fresh: 3.2.1
+ parse-json: 5.0.0
+ path-type: 4.0.0
+ yaml: 1.7.2
+ dev: false
+ engines:
+ node: '>=8'
+ resolution:
+ integrity: sha512-xb3ZL6+L8b9JLLCx3ZdoZy4+2ECphCMo2PwqgP1tlfVq6M6YReyzBJtvWWtbDSpNr9hn96pkCiZqUcFEc+54Qg==
+ /create-ecdh/4.0.3:
+ dependencies:
+ bn.js: 4.11.8
+ elliptic: 6.5.2
+ dev: false
+ resolution:
+ integrity: sha512-GbEHQPMOswGpKXM9kCWVrremUcBmjteUaQ01T9rkKCPDXfUHX0IoP9LpHYo2NPFampa4e+/pFDc3jQdxrxQLaw==
+ /create-hash/1.2.0:
+ dependencies:
+ cipher-base: 1.0.4
+ inherits: 2.0.4
+ md5.js: 1.3.5
+ ripemd160: 2.0.2
+ sha.js: 2.4.11
+ dev: false
+ resolution:
+ integrity: sha512-z00bCGNHDG8mHAkP7CtT1qVu+bFQUPjYq/4Iv3C3kWjTFV10zIjfSoeqXo9Asws8gwSHDGj/hl2u4OGIjapeCg==
+ /create-hmac/1.1.7:
+ dependencies:
+ cipher-base: 1.0.4
+ create-hash: 1.2.0
+ inherits: 2.0.4
+ ripemd160: 2.0.2
+ safe-buffer: 5.2.0
+ sha.js: 2.4.11
+ dev: false
+ resolution:
+ integrity: sha512-MJG9liiZ+ogc4TzUwuvbER1JRdgvUFSB5+VR/g5h82fGaIRWMWddtKBHi7/sVhfjQZ6SehlyhvQYrcYkaUIpLg==
+ /cross-spawn/5.1.0:
+ dependencies:
+ lru-cache: 4.1.5
+ shebang-command: 1.2.0
+ which: 1.3.1
+ dev: true
+ resolution:
+ integrity: sha1-6L0O/uWPz/b4+UUQoKVUu/ojVEk=
+ /crypto-browserify/3.12.0:
+ dependencies:
+ browserify-cipher: 1.0.1
+ browserify-sign: 4.0.4
+ create-ecdh: 4.0.3
+ create-hash: 1.2.0
+ create-hmac: 1.1.7
+ diffie-hellman: 5.0.3
+ inherits: 2.0.4
+ pbkdf2: 3.0.17
+ public-encrypt: 4.0.3
+ randombytes: 2.1.0
+ randomfill: 1.0.4
+ dev: false
+ resolution:
+ integrity: sha512-fz4spIh+znjO2VjL+IdhEpRJ3YN6sMzITSBijk6FK2UvTqruSQW+/cCZTSNsMiZNvUeq0CqurF+dAbyiGOY6Wg==
+ /css-blank-pseudo/0.1.4:
+ dependencies:
+ postcss: 7.0.26
+ dev: false
+ engines:
+ node: '>=6.0.0'
+ hasBin: true
+ resolution:
+ integrity: sha512-LHz35Hr83dnFeipc7oqFDmsjHdljj3TQtxGGiNWSOsTLIAubSm4TEz8qCaKFpk7idaQ1GfWscF4E6mgpBysA1w==
+ /css-has-pseudo/0.10.0:
+ dependencies:
+ postcss: 7.0.26
+ postcss-selector-parser: 5.0.0
+ dev: false
+ engines:
+ node: '>=6.0.0'
+ hasBin: true
+ resolution:
+ integrity: sha512-Z8hnfsZu4o/kt+AuFzeGpLVhFOGO9mluyHBaA2bA8aCGTwah5sT3WV/fTHH8UNZUytOIImuGPrl/prlb4oX4qQ==
+ /css-loader/3.3.0_webpack@4.41.2:
+ dependencies:
+ camelcase: 5.3.1
+ cssesc: 3.0.0
+ icss-utils: 4.1.1
+ loader-utils: 1.2.3
+ normalize-path: 3.0.0
+ postcss: 7.0.26
+ postcss-modules-extract-imports: 2.0.0
+ postcss-modules-local-by-default: 3.0.2
+ postcss-modules-scope: 2.1.1
+ postcss-modules-values: 3.0.0
+ postcss-value-parser: 4.0.2
+ schema-utils: 2.6.1
+ webpack: 4.41.2_webpack@4.41.2
+ dev: false
+ engines:
+ node: '>= 8.9.0'
+ peerDependencies:
+ webpack: ^4.0.0
+ resolution:
+ integrity: sha512-x9Y1vvHe5RR+4tzwFdWExPueK00uqFTCw7mZy+9aE/X1SKWOArm5luaOrtJ4d05IpOwJ6S86b/tVcIdhw1Bu4A==
+ /css-prefers-color-scheme/3.1.1:
+ dependencies:
+ postcss: 7.0.26
+ dev: false
+ engines:
+ node: '>=6.0.0'
+ hasBin: true
+ resolution:
+ integrity: sha512-MTu6+tMs9S3EUqzmqLXEcgNRbNkkD/TGFvowpeoWJn5Vfq7FMgsmRQs9X5NXAURiOBmOxm/lLjsDNXDE6k9bhg==
+ /css/2.2.4:
+ dependencies:
+ inherits: 2.0.4
+ source-map: 0.6.1
+ source-map-resolve: 0.5.3
+ urix: 0.1.0
+ dev: false
+ resolution:
+ integrity: sha512-oUnjmWpy0niI3x/mPL8dVEI1l7MnG3+HHyRPHf+YFSbK+svOhXpmSOcDURUh2aOCgl2grzrOPt1nHLuCVFULLw==
+ /cssdb/4.4.0:
+ dev: false
+ resolution:
+ integrity: sha512-LsTAR1JPEM9TpGhl/0p3nQecC2LJ0kD8X5YARu1hk/9I1gril5vDtMZyNxcEpxxDj34YNck/ucjuoUd66K03oQ==
+ /cssesc/2.0.0:
+ dev: false
+ engines:
+ node: '>=4'
+ hasBin: true
+ resolution:
+ integrity: sha512-MsCAG1z9lPdoO/IUMLSBWBSVxVtJ1395VGIQ+Fc2gNdkQ1hNDnQdw3YhA71WJCBW1vdwA0cAnk/DnW6bqoEUYg==
+ /cssesc/3.0.0:
+ dev: false
+ engines:
+ node: '>=4'
+ hasBin: true
+ resolution:
+ integrity: sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==
+ /cssnano-preset-simple/1.0.2:
+ dependencies:
+ postcss: 7.0.26
+ dev: false
+ resolution:
+ integrity: sha512-FhAjiyAJoQOfvOZVSaNYkmmg2KE/SmaJVBNqglvvZ4QgwtTMVOaggozmRwfyO2QfeyKstRCpeRglziWym0Q9/w==
+ /cssnano-simple/1.0.0:
+ dependencies:
+ cssnano-preset-simple: 1.0.2
+ postcss: 7.0.26
+ dev: false
+ resolution:
+ integrity: sha512-B7u9vvtXEqeU2rzdt+Kfw5O9Nd46R7KNjJoP7Y5lGQs6c7n1Et5Ilofh2W9OjBV/ZiJV5+7j9ShWgiYNtH/57A==
+ /csstype/2.6.8:
+ resolution:
+ integrity: sha512-msVS9qTuMT5zwAGCVm4mxfrZ18BNc6Csd0oJAtiFMZ1FAx1CCvy2+5MDmYoix63LM/6NDbNtodCiGYGmFgO0dA==
+ /cyclist/1.0.1:
+ dev: false
+ resolution:
+ integrity: sha1-WW6WmP0MgOEgOMK4LW6xs1tiJNk=
+ /debug/2.6.9:
+ dependencies:
+ ms: 2.0.0
+ resolution:
+ integrity: sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==
+ /debug/4.1.1:
+ dependencies:
+ ms: 2.1.2
+ dev: false
+ resolution:
+ integrity: sha512-pYAIzeRo8J6KPEaJ0VWOh5Pzkbw/RetuzehGM7QRRX5he4fPHx2rdKMB256ehJCkX+XRQm16eZLqLNS8RSZXZw==
+ /decode-uri-component/0.2.0:
+ dev: false
+ engines:
+ node: '>=0.10'
+ resolution:
+ integrity: sha1-6zkTMzRYd1y4TNGh+uBiEGu4dUU=
+ /deep-extend/0.6.0:
+ dev: true
+ engines:
+ node: '>=4.0.0'
+ resolution:
+ integrity: sha512-LOHxIOaPYdHlJRtCQfDIVZtfw/ufM8+rVj649RIHzcm/vGwQRXFt6OPqIFWsm2XEMrNIEtWR64sY1LEKD2vAOA==
+ /defaults/1.0.3:
+ dependencies:
+ clone: 1.0.4
+ dev: false
+ resolution:
+ integrity: sha1-xlYFHpgX2f8I7YgUd/P+QBnz730=
+ /define-properties/1.1.3:
+ dependencies:
+ object-keys: 1.1.1
+ dev: false
+ engines:
+ node: '>= 0.4'
+ resolution:
+ integrity: sha512-3MqfYKj2lLzdMSf8ZIZE/V+Zuy+BgD6f164e8K2w7dgnpKArBDerGYpM46IYYcjnkdPNMjPk9A6VFB8+3SKlXQ==
+ /define-property/0.2.5:
+ dependencies:
+ is-descriptor: 0.1.6
+ dev: false
+ engines:
+ node: '>=0.10.0'
+ resolution:
+ integrity: sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY=
+ /define-property/1.0.0:
+ dependencies:
+ is-descriptor: 1.0.2
+ dev: false
+ engines:
+ node: '>=0.10.0'
+ resolution:
+ integrity: sha1-dp66rz9KY6rTr56NMEybvnm/sOY=
+ /define-property/2.0.2:
+ dependencies:
+ is-descriptor: 1.0.2
+ isobject: 3.0.1
+ dev: false
+ engines:
+ node: '>=0.10.0'
+ resolution:
+ integrity: sha512-jwK2UV4cnPpbcG7+VRARKTZPUWowwXA8bzH5NP6ud0oeAxyYPuGZUAC7hMugpCdz4BeSZl2Dl9k66CHJ/46ZYQ==
+ /del/3.0.0:
+ dependencies:
+ globby: 6.1.0
+ is-path-cwd: 1.0.0
+ is-path-in-cwd: 1.0.1
+ p-map: 1.2.0
+ pify: 3.0.0
+ rimraf: 2.7.1
+ dev: false
+ engines:
+ node: '>=4'
+ resolution:
+ integrity: sha1-U+z2mf/LyzljdpGrE7rxYIGXZuU=
+ /depd/1.1.2:
+ dev: false
+ engines:
+ node: '>= 0.6'
+ resolution:
+ integrity: sha1-m81S4UwJd2PnSbJ0xDRu0uVgtak=
+ /des.js/1.0.1:
+ dependencies:
+ inherits: 2.0.4
+ minimalistic-assert: 1.0.1
+ dev: false
+ resolution:
+ integrity: sha512-Q0I4pfFrv2VPd34/vfLrFOoRmlYj3OV50i7fskps1jZWK1kApMWWT9G6RRUeYedLcBDIhnSDaUvJMb3AhUlaEA==
+ /destroy/1.0.4:
+ dev: false
+ resolution:
+ integrity: sha1-l4hXRCxEdJ5CBmE+N5RiBYJqvYA=
+ /devalue/2.0.1:
+ dev: false
+ resolution:
+ integrity: sha512-I2TiqT5iWBEyB8GRfTDP0hiLZ0YeDJZ+upDxjBfOC2lebO5LezQMv7QvIUTzdb64jQyAKLf1AHADtGN+jw6v8Q==
+ /diffie-hellman/5.0.3:
+ dependencies:
+ bn.js: 4.11.8
+ miller-rabin: 4.0.1
+ randombytes: 2.1.0
+ dev: false
+ resolution:
+ integrity: sha512-kqag/Nl+f3GwyK25fhUMYj81BUOrZ9IuJsjIcDE5icNM9FJHAVm3VcUDxdLPoQtTuUylWm6ZIknYJwwaPxsUzg==
+ /domain-browser/1.2.0:
+ dev: false
+ engines:
+ node: '>=0.4'
+ npm: '>=1.2'
+ resolution:
+ integrity: sha512-jnjyiM6eRyZl2H+W8Q/zLMA481hzi0eszAaBUzIVnmYVDBbnLxVNnfu1HgEBvCbL+71FrxMl3E6lpKH7Ge3OXA==
+ /dot-prop/5.2.0:
+ dependencies:
+ is-obj: 2.0.0
+ dev: false
+ engines:
+ node: '>=8'
+ resolution:
+ integrity: sha512-uEUyaDKoSQ1M4Oq8l45hSE26SnTxL6snNnqvK/VWx5wJhmff5z0FUVJDKDanor/6w3kzE3i7XZOk+7wC0EXr1A==
+ /duplexer/0.1.1:
+ dev: false
+ resolution:
+ integrity: sha1-rOb/gIwc5mtX0ev5eXessCM0z8E=
+ /duplexify/3.7.1:
+ dependencies:
+ end-of-stream: 1.4.4
+ inherits: 2.0.4
+ readable-stream: 2.3.7
+ stream-shift: 1.0.1
+ dev: false
+ resolution:
+ integrity: sha512-07z8uv2wMyS51kKhD1KsdXJg5WQ6t93RneqRxUHnskXVtlYYkLqM0gqStQZ3pj073g687jPCHrqNfCzawLYh5g==
+ /ee-first/1.1.1:
+ dev: false
+ resolution:
+ integrity: sha1-WQxhFWsK4vTwJVcyoViyZrxWsh0=
+ /electron-to-chromium/1.3.328:
+ dev: false
+ resolution:
+ integrity: sha512-x4XefnFxDxFwaQ01d/pppJP9meWhOIJ/gtI6/4jqkpsadq79uL7NYSaX64naLmJqvzUBjSrO3IM2+1b/W9KdPg==
+ /elliptic/6.5.2:
+ dependencies:
+ bn.js: 4.11.8
+ brorand: 1.1.0
+ hash.js: 1.1.7
+ hmac-drbg: 1.0.1
+ inherits: 2.0.4
+ minimalistic-assert: 1.0.1
+ minimalistic-crypto-utils: 1.0.1
+ dev: false
+ resolution:
+ integrity: sha512-f4x70okzZbIQl/NSRLkI/+tteV/9WqL98zx+SQ69KbXxmVrmjwsNUPn/gYJJ0sHvEak24cZgHIPegRePAtA/xw==
+ /emojis-list/2.1.0:
+ dev: false
+ engines:
+ node: '>= 0.10'
+ resolution:
+ integrity: sha1-TapNnbAPmBmIDHn6RXrlsJof04k=
+ /encodeurl/1.0.2:
+ dev: false
+ engines:
+ node: '>= 0.8'
+ resolution:
+ integrity: sha1-rT/0yG7C0CkyL1oCw6mmBslbP1k=
+ /end-of-stream/1.4.4:
+ dependencies:
+ once: 1.4.0
+ dev: false
+ resolution:
+ integrity: sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q==
+ /enhanced-resolve/4.1.1:
+ dependencies:
+ graceful-fs: 4.2.3
+ memory-fs: 0.5.0
+ tapable: 1.1.3
+ dev: false
+ engines:
+ node: '>=6.9.0'
+ resolution:
+ integrity: sha512-98p2zE+rL7/g/DzMHMTF4zZlCgeVdJ7yr6xzEpJRYwFYrGi9ANdn5DnJURg6RpBkyk60XYDnWIv51VfIhfNGuA==
+ /env-paths/2.2.0:
+ dev: false
+ engines:
+ node: '>=6'
+ resolution:
+ integrity: sha512-6u0VYSCo/OW6IoD5WCLLy9JUGARbamfSavcNXry/eu8aHVFei6CD3Sw+VGX5alea1i9pgPHW0mbu6Xj0uBh7gA==
+ /errno/0.1.7:
+ dependencies:
+ prr: 1.0.1
+ dev: false
+ hasBin: true
+ resolution:
+ integrity: sha512-MfrRBDWzIWifgq6tJj60gkAwtLNb6sQPlcFrSOflcP1aFmmruKQ2wRnze/8V6kgyz7H3FF8Npzv78mZ7XLLflg==
+ /error-ex/1.3.2:
+ dependencies:
+ is-arrayish: 0.2.1
+ dev: false
+ resolution:
+ integrity: sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==
+ /escape-html/1.0.3:
+ dev: false
+ resolution:
+ integrity: sha1-Aljq5NPQwJdN4cFpGI7wBR0dGYg=
+ /escape-string-regexp/1.0.5:
+ engines:
+ node: '>=0.8.0'
+ resolution:
+ integrity: sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ=
+ /eslint-scope/4.0.3:
+ dependencies:
+ esrecurse: 4.2.1
+ estraverse: 4.3.0
+ dev: false
+ engines:
+ node: '>=4.0.0'
+ resolution:
+ integrity: sha512-p7VutNr1O/QrxysMo3E45FjYDTeXBy0iTltPFNSqKAIfjDSXC+4dj+qfyuD8bfAXrW/y6lW3O76VaYNPKfpKrg==
+ /esprima/4.0.1:
+ dev: false
+ engines:
+ node: '>=4'
+ hasBin: true
+ resolution:
+ integrity: sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==
+ /esrecurse/4.2.1:
+ dependencies:
+ estraverse: 4.3.0
+ dev: false
+ engines:
+ node: '>=4.0'
+ resolution:
+ integrity: sha512-64RBB++fIOAXPw3P9cy89qfMlvZEXZkqqJkjqqXIvzP5ezRZjW+lPWjw35UX/3EhUPFYbg5ER4JYgDw4007/DQ==
+ /estraverse/4.3.0:
+ dev: false
+ engines:
+ node: '>=4.0'
+ resolution:
+ integrity: sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==
+ /esutils/2.0.3:
+ dev: false
+ engines:
+ node: '>=0.10.0'
+ resolution:
+ integrity: sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==
+ /etag/1.8.1:
+ dev: false
+ engines:
+ node: '>= 0.6'
+ resolution:
+ integrity: sha1-Qa4u62XvpiJorr/qg6x9eSmbCIc=
+ /events/3.0.0:
+ dev: false
+ engines:
+ node: '>=0.8.x'
+ resolution:
+ integrity: sha512-Dc381HFWJzEOhQ+d8pkNon++bk9h6cdAoAj4iE6Q4y6xgTzySWXlKn05/TVNpjnfRqi/X0EpJEJohPjNI3zpVA==
+ /evp_bytestokey/1.0.3:
+ dependencies:
+ md5.js: 1.3.5
+ safe-buffer: 5.2.0
+ dev: false
+ resolution:
+ integrity: sha512-/f2Go4TognH/KvCISP7OUsHn85hT9nUkxxA9BEWxFn+Oj9o8ZNLm/40hdlgSLyuOimsrTKLUMEorQexp/aPQeA==
+ /execa/0.7.0:
+ dependencies:
+ cross-spawn: 5.1.0
+ get-stream: 3.0.0
+ is-stream: 1.1.0
+ npm-run-path: 2.0.2
+ p-finally: 1.0.0
+ signal-exit: 3.0.2
+ strip-eof: 1.0.0
+ dev: true
+ engines:
+ node: '>=4'
+ resolution:
+ integrity: sha1-lEvs00zEHuMqY6n68nrVpl/Fl3c=
+ /execa/0.8.0:
+ dependencies:
+ cross-spawn: 5.1.0
+ get-stream: 3.0.0
+ is-stream: 1.1.0
+ npm-run-path: 2.0.2
+ p-finally: 1.0.0
+ signal-exit: 3.0.2
+ strip-eof: 1.0.0
+ dev: true
+ engines:
+ node: '>=4'
+ resolution:
+ integrity: sha1-2NdrvBtVIX7RkP1t1J08d07PyNo=
+ /expand-brackets/2.1.4:
+ dependencies:
+ debug: 2.6.9
+ define-property: 0.2.5
+ extend-shallow: 2.0.1
+ posix-character-classes: 0.1.1
+ regex-not: 1.0.2
+ snapdragon: 0.8.2
+ to-regex: 3.0.2
+ dev: false
+ engines:
+ node: '>=0.10.0'
+ resolution:
+ integrity: sha1-t3c14xXOMPa27/D4OwQVGiJEliI=
+ /extend-shallow/2.0.1:
+ dependencies:
+ is-extendable: 0.1.1
+ dev: false
+ engines:
+ node: '>=0.10.0'
+ resolution:
+ integrity: sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=
+ /extend-shallow/3.0.2:
+ dependencies:
+ assign-symbols: 1.0.0
+ is-extendable: 1.0.1
+ dev: false
+ engines:
+ node: '>=0.10.0'
+ resolution:
+ integrity: sha1-Jqcarwc7OfshJxcnRhMcJwQCjbg=
+ /extglob/2.0.4:
+ dependencies:
+ array-unique: 0.3.2
+ define-property: 1.0.0
+ expand-brackets: 2.1.4
+ extend-shallow: 2.0.1
+ fragment-cache: 0.2.1
+ regex-not: 1.0.2
+ snapdragon: 0.8.2
+ to-regex: 3.0.2
+ dev: false
+ engines:
+ node: '>=0.10.0'
+ resolution:
+ integrity: sha512-Nmb6QXkELsuBr24CJSkilo6UHHgbekK5UiZgfE6UHD3Eb27YC6oD+bhcT+tJ6cl8dmsgdQxnWlcry8ksBIBLpw==
+ /fast-deep-equal/2.0.1:
+ resolution:
+ integrity: sha1-ewUhjd+WZ79/Nwv3/bLLFf3Qqkk=
+ /fast-json-stable-stringify/2.1.0:
+ resolution:
+ integrity: sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==
+ /fast-url-parser/1.1.3:
+ dependencies:
+ punycode: 1.4.1
+ dev: true
+ resolution:
+ integrity: sha1-9K8+qfNNiicc9YrSs3WfQx8LMY0=
+ /figgy-pudding/3.5.1:
+ dev: false
+ resolution:
+ integrity: sha512-vNKxJHTEKNThjfrdJwHc7brvM6eVevuO5nTj6ez8ZQ1qbXTvGthucRF7S4vf2cr71QVnT70V34v0S1DyQsti0w==
+ /file-loader/4.2.0_webpack@4.41.2:
+ dependencies:
+ loader-utils: 1.2.3
+ schema-utils: 2.6.1
+ webpack: 4.41.2_webpack@4.41.2
+ dev: false
+ engines:
+ node: '>= 8.9.0'
+ peerDependencies:
+ webpack: ^4.0.0
+ resolution:
+ integrity: sha512-+xZnaK5R8kBJrHK0/6HRlrKNamvVS5rjyuju+rnyxRGuwUJwpAMsVzUl5dz6rK8brkzjV6JpcFNjp6NqV0g1OQ==
+ /file-uri-to-path/1.0.0:
+ dev: false
+ optional: true
+ resolution:
+ integrity: sha512-0Zt+s3L7Vf1biwWZ29aARiVYLx7iMGnEUl9x33fbB/j3jR81u/O2LbqK+Bm1CDSNDKVtJ/YjwY7TUd5SkeLQLw==
+ /fill-range/4.0.0:
+ dependencies:
+ extend-shallow: 2.0.1
+ is-number: 3.0.0
+ repeat-string: 1.6.1
+ to-regex-range: 2.1.1
+ dev: false
+ engines:
+ node: '>=0.10.0'
+ resolution:
+ integrity: sha1-1USBHUKPmOsGpj3EAtJAPDKMOPc=
+ /fill-range/7.0.1:
+ dependencies:
+ to-regex-range: 5.0.1
+ dev: false
+ engines:
+ node: '>=8'
+ resolution:
+ integrity: sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==
+ /find-cache-dir/1.0.0:
+ dependencies:
+ commondir: 1.0.1
+ make-dir: 1.3.0
+ pkg-dir: 2.0.0
+ dev: false
+ engines:
+ node: '>=4'
+ resolution:
+ integrity: sha1-kojj6ePMN0hxfTnq3hfPcfww7m8=
+ /find-cache-dir/2.1.0:
+ dependencies:
+ commondir: 1.0.1
+ make-dir: 2.1.0
+ pkg-dir: 3.0.0
+ dev: false
+ engines:
+ node: '>=6'
+ resolution:
+ integrity: sha512-Tq6PixE0w/VMFfCgbONnkiQIVol/JJL7nRMi20fqzA4NRs9AfeqMGeRdPi3wIhYkxjeBaWh2rxwapn5Tu3IqOQ==
+ /find-cache-dir/3.2.0:
+ dependencies:
+ commondir: 1.0.1
+ make-dir: 3.0.0
+ pkg-dir: 4.2.0
+ dev: false
+ engines:
+ node: '>=8'
+ resolution:
+ integrity: sha512-1JKclkYYsf1q9WIJKLZa9S9muC+08RIjzAlLrK4QcYLJMS6mk9yombQ9qf+zJ7H9LS800k0s44L4sDq9VYzqyg==
+ /find-root/1.1.0:
+ dev: false
+ resolution:
+ integrity: sha512-NKfW6bec6GfKc0SGx1e07QZY9PE99u0Bft/0rzSD5k3sO/vwkVUpDUKVm5Gpp5Ue3YfShPFTX2070tDs5kB9Ng==
+ /find-up/2.1.0:
+ dependencies:
+ locate-path: 2.0.0
+ dev: false
+ engines:
+ node: '>=4'
+ resolution:
+ integrity: sha1-RdG35QbHF93UgndaK3eSCjwMV6c=
+ /find-up/3.0.0:
+ dependencies:
+ locate-path: 3.0.0
+ dev: false
+ engines:
+ node: '>=6'
+ resolution:
+ integrity: sha512-1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg==
+ /find-up/4.0.0:
+ dependencies:
+ locate-path: 5.0.0
+ dev: false
+ engines:
+ node: '>=8'
+ resolution:
+ integrity: sha512-zoH7ZWPkRdgwYCDVoQTzqjG8JSPANhtvLhh4KVUHyKnaUJJrNeFmWIkTcNuJmR3GLMEmGYEf2S2bjgx26JTF+Q==
+ /find-up/4.1.0:
+ dependencies:
+ locate-path: 5.0.0
+ path-exists: 4.0.0
+ dev: false
+ engines:
+ node: '>=8'
+ resolution:
+ integrity: sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==
+ /flatten/1.0.3:
+ dev: false
+ resolution:
+ integrity: sha512-dVsPA/UwQ8+2uoFe5GHtiBMu48dWLTdsuEd7CKGlZlD78r1TTWBvDuFaFGKCo/ZfEr95Uk56vZoX86OsHkUeIg==
+ /flush-write-stream/1.1.1:
+ dependencies:
+ inherits: 2.0.4
+ readable-stream: 2.3.7
+ dev: false
+ resolution:
+ integrity: sha512-3Z4XhFZ3992uIq0XOqb9AreonueSYphE6oYbpt5+3u06JWklbsPkNv3ZKkP9Bz/r+1MWCaMoSQ28P85+1Yc77w==
+ /for-in/1.0.2:
+ dev: false
+ engines:
+ node: '>=0.10.0'
+ resolution:
+ integrity: sha1-gQaNKVqBQuwKxybG4iAMMPttXoA=
+ /fork-ts-checker-webpack-plugin/3.1.1:
+ dependencies:
+ babel-code-frame: 6.26.0
+ chalk: 2.4.2
+ chokidar: 3.3.1
+ micromatch: 3.1.10
+ minimatch: 3.0.4
+ semver: 5.7.1
+ tapable: 1.1.3
+ worker-rpc: 0.1.1
+ dev: false
+ engines:
+ node: '>=6.11.5'
+ yarn: '>=1.0.0'
+ resolution:
+ integrity: sha512-DuVkPNrM12jR41KM2e+N+styka0EgLkTnXmNcXdgOM37vtGeY+oCBK/Jx0hzSeEU6memFCtWb4htrHPMDfwwUQ==
+ /fragment-cache/0.2.1:
+ dependencies:
+ map-cache: 0.2.2
+ dev: false
+ engines:
+ node: '>=0.10.0'
+ resolution:
+ integrity: sha1-QpD60n8T6Jvn8zeZxrxaCr//DRk=
+ /fresh/0.5.2:
+ dev: false
+ engines:
+ node: '>= 0.6'
+ resolution:
+ integrity: sha1-PYyt2Q2XZWn6g1qx+OSyOhBWBac=
+ /from2/2.3.0:
+ dependencies:
+ inherits: 2.0.4
+ readable-stream: 2.3.7
+ dev: false
+ resolution:
+ integrity: sha1-i/tVAr3kpNNs/e6gB/zKIdfjgq8=
+ /fs-write-stream-atomic/1.0.10:
+ dependencies:
+ graceful-fs: 4.2.3
+ iferr: 0.1.5
+ imurmurhash: 0.1.4
+ readable-stream: 2.3.7
+ dev: false
+ resolution:
+ integrity: sha1-tH31NJPvkR33VzHnCp3tAYnbQMk=
+ /fs.realpath/1.0.0:
+ dev: false
+ resolution:
+ integrity: sha1-FQStJSMVjKpA20onh8sBQRmU6k8=
+ /fsevents/1.2.11:
+ bundledDependencies:
+ - node-pre-gyp
+ dependencies:
+ bindings: 1.5.0
+ nan: 2.14.0
+ dev: false
+ engines:
+ node: '>=4.0'
+ optional: true
+ requiresBuild: true
+ resolution:
+ integrity: sha512-+ux3lx6peh0BpvY0JebGyZoiR4D+oYzdPZMKJwkZ+sFkNJzpL7tXc/wehS49gUAxg3tmMHPHZkA8JU2rhhgDHw==
+ /fsevents/2.1.2:
+ dev: false
+ engines:
+ node: ^8.16.0 || ^10.6.0 || >=11.0.0
+ optional: true
+ resolution:
+ integrity: sha512-R4wDiBwZ0KzpgOWetKDug1FZcYhqYnUYKtfZYt4mD5SBz76q0KR4Q9o7GIPamsVPGmW3EYPPJ0dOOjvx32ldZA==
+ /function-bind/1.1.1:
+ dev: false
+ resolution:
+ integrity: sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==
+ /get-stream/3.0.0:
+ dev: true
+ engines:
+ node: '>=4'
+ resolution:
+ integrity: sha1-jpQ9E1jcN1VQVOy+LtsFqhdO3hQ=
+ /get-value/2.0.6:
+ dev: false
+ engines:
+ node: '>=0.10.0'
+ resolution:
+ integrity: sha1-3BXKHGcjh8p2vTesCjlbogQqLCg=
+ /glob-parent/3.1.0:
+ dependencies:
+ is-glob: 3.1.0
+ path-dirname: 1.0.2
+ dev: false
+ resolution:
+ integrity: sha1-nmr2KZ2NO9K9QEMIMr0RPfkGxa4=
+ /glob-parent/5.1.0:
+ dependencies:
+ is-glob: 4.0.1
+ dev: false
+ engines:
+ node: '>= 6'
+ resolution:
+ integrity: sha512-qjtRgnIVmOfnKUE3NJAQEdk+lKrxfw8t5ke7SXtfMTHcjsBfOfWXCQfdb30zfDoZQ2IRSIiidmjtbHZPZ++Ihw==
+ /glob-to-regexp/0.4.1:
+ dev: false
+ resolution:
+ integrity: sha512-lkX1HJXwyMcprw/5YUZc2s7DrpAiHB21/V+E1rHUrVNokkvB6bqMzT0VfV6/86ZNabt1k14YOIaT7nDvOX3Iiw==
+ /glob/7.1.6:
+ dependencies:
+ fs.realpath: 1.0.0
+ inflight: 1.0.6
+ inherits: 2.0.4
+ minimatch: 3.0.4
+ once: 1.4.0
+ path-is-absolute: 1.0.1
+ dev: false
+ resolution:
+ integrity: sha512-LwaxwyZ72Lk7vZINtNNrywX0ZuLyStrdDtabefZKAY5ZGJhVtgdznluResxNmPitE0SAO+O26sWTHeKSI2wMBA==
+ /globals/11.12.0:
+ dev: false
+ engines:
+ node: '>=4'
+ resolution:
+ integrity: sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==
+ /globby/6.1.0:
+ dependencies:
+ array-union: 1.0.2
+ glob: 7.1.6
+ object-assign: 4.1.1
+ pify: 2.3.0
+ pinkie-promise: 2.0.1
+ dev: false
+ engines:
+ node: '>=0.10.0'
+ resolution:
+ integrity: sha1-9abXDoOV4hyFj7BInWTfAkJNUGw=
+ /graceful-fs/4.2.3:
+ dev: false
+ resolution:
+ integrity: sha512-a30VEBm4PEdx1dRB7MFK7BejejvCvBronbLjht+sHuGYj8PHs7M/5Z+rt5lw551vZ7yfTCj4Vuyy3mSJytDWRQ==
+ /graceful-readlink/1.0.1:
+ dev: false
+ resolution:
+ integrity: sha1-TK+tdrxi8C+gObL5Tpo906ORpyU=
+ /gzip-size/5.1.1:
+ dependencies:
+ duplexer: 0.1.1
+ pify: 4.0.1
+ dev: false
+ engines:
+ node: '>=6'
+ resolution:
+ integrity: sha512-FNHi6mmoHvs1mxZAds4PpdCS6QG8B4C1krxJsMutgxl5t3+GlRTzzI3NEkifXx2pVsOvJdOGSmIgDhQ55FwdPA==
+ /has-ansi/2.0.0:
+ dependencies:
+ ansi-regex: 2.1.1
+ dev: false
+ engines:
+ node: '>=0.10.0'
+ resolution:
+ integrity: sha1-NPUEnOHs3ysGSa8+8k5F7TVBbZE=
+ /has-flag/3.0.0:
+ engines:
+ node: '>=4'
+ resolution:
+ integrity: sha1-tdRU3CGZriJWmfNGfloH87lVuv0=
+ /has-symbols/1.0.1:
+ dev: false
+ engines:
+ node: '>= 0.4'
+ resolution:
+ integrity: sha512-PLcsoqu++dmEIZB+6totNFKq/7Do+Z0u4oT0zKOJNl3lYK6vGwwu2hjHs+68OEZbTjiUE9bgOABXbP/GvrS0Kg==
+ /has-value/0.3.1:
+ dependencies:
+ get-value: 2.0.6
+ has-values: 0.1.4
+ isobject: 2.1.0
+ dev: false
+ engines:
+ node: '>=0.10.0'
+ resolution:
+ integrity: sha1-ex9YutpiyoJ+wKIHgCVlSEWZXh8=
+ /has-value/1.0.0:
+ dependencies:
+ get-value: 2.0.6
+ has-values: 1.0.0
+ isobject: 3.0.1
+ dev: false
+ engines:
+ node: '>=0.10.0'
+ resolution:
+ integrity: sha1-GLKB2lhbHFxR3vJMkw7SmgvmsXc=
+ /has-values/0.1.4:
+ dev: false
+ engines:
+ node: '>=0.10.0'
+ resolution:
+ integrity: sha1-bWHeldkd/Km5oCCJrThL/49it3E=
+ /has-values/1.0.0:
+ dependencies:
+ is-number: 3.0.0
+ kind-of: 4.0.0
+ dev: false
+ engines:
+ node: '>=0.10.0'
+ resolution:
+ integrity: sha1-lbC2P+whRmGab+V/51Yo1aOe/k8=
+ /has/1.0.3:
+ dependencies:
+ function-bind: 1.1.1
+ dev: false
+ engines:
+ node: '>= 0.4.0'
+ resolution:
+ integrity: sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==
+ /hash-base/3.0.4:
+ dependencies:
+ inherits: 2.0.4
+ safe-buffer: 5.2.0
+ dev: false
+ engines:
+ node: '>=4'
+ resolution:
+ integrity: sha1-X8hoaEfs1zSZQDMZprCj8/auSRg=
+ /hash.js/1.1.7:
+ dependencies:
+ inherits: 2.0.4
+ minimalistic-assert: 1.0.1
+ dev: false
+ resolution:
+ integrity: sha512-taOaskGt4z4SOANNseOviYDvjEJinIkRgmp7LbKP2YTTmVxWBl87s/uzK9r+44BclBSp2X7K1hqeNfz9JbBeXA==
+ /hmac-drbg/1.0.1:
+ dependencies:
+ hash.js: 1.1.7
+ minimalistic-assert: 1.0.1
+ minimalistic-crypto-utils: 1.0.1
+ dev: false
+ resolution:
+ integrity: sha1-0nRXAQJabHdabFRXk+1QL8DGSaE=
+ /hosted-git-info/2.8.5:
+ dev: false
+ resolution:
+ integrity: sha512-kssjab8CvdXfcXMXVcvsXum4Hwdq9XGtRD3TteMEvEbq0LXyiNQr6AprqKqfeaDXze7SxWvRxdpwE6ku7ikLkg==
+ /html-entities/1.2.1:
+ dev: false
+ engines:
+ '0': node >= 0.4.0
+ resolution:
+ integrity: sha1-DfKTUfByEWNRXfueVUPl9u7VFi8=
+ /http-errors/1.7.2:
+ dependencies:
+ depd: 1.1.2
+ inherits: 2.0.3
+ setprototypeof: 1.1.1
+ statuses: 1.5.0
+ toidentifier: 1.0.0
+ dev: false
+ engines:
+ node: '>= 0.6'
+ resolution:
+ integrity: sha512-uUQBt3H/cSIVfch6i1EuPNy/YsRSOUBXTVfZ+yR7Zjez3qjBz6i9+i4zjNaoqcoFVI4lQJ5plg63TvGfRSDCRg==
+ /http-errors/1.7.3:
+ dependencies:
+ depd: 1.1.2
+ inherits: 2.0.4
+ setprototypeof: 1.1.1
+ statuses: 1.5.0
+ toidentifier: 1.0.0
+ dev: false
+ engines:
+ node: '>= 0.6'
+ resolution:
+ integrity: sha512-ZTTX0MWrsQ2ZAhA1cejAwDLycFsd7I7nVtnkT3Ol0aqodaKW+0CTZDQ1uBv5whptCnc8e8HeRRJxRs0kmm/Qfw==
+ /https-browserify/1.0.0:
+ dev: false
+ resolution:
+ integrity: sha1-7AbBDgo0wPL68Zn3/X/Hj//QPHM=
+ /iconv-lite/0.4.24:
+ dependencies:
+ safer-buffer: 2.1.2
+ dev: false
+ engines:
+ node: '>=0.10.0'
+ resolution:
+ integrity: sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==
+ /icss-utils/4.1.1:
+ dependencies:
+ postcss: 7.0.26
+ dev: false
+ engines:
+ node: '>= 6'
+ resolution:
+ integrity: sha512-4aFq7wvWyMHKgxsH8QQtGpvbASCf+eM3wPRLI6R+MgAnTCZ6STYsRvttLvRWK0Nfif5piF394St3HeJDaljGPA==
+ /ieee754/1.1.13:
+ dev: false
+ resolution:
+ integrity: sha512-4vf7I2LYV/HaWerSo3XmlMkp5eZ83i+/CDluXi/IGTs/O1sejBNhTtnxzmRZfvOUqj7lZjqHkeTvpgSFDlWZTg==
+ /iferr/0.1.5:
+ dev: false
+ resolution:
+ integrity: sha1-xg7taebY/bazEEofy8ocGS3FtQE=
+ /ignore-loader/0.1.2:
+ dev: false
+ resolution:
+ integrity: sha1-2B8kA3bQuk8Nd4lyw60lh0EXpGM=
+ /import-cwd/2.1.0:
+ dependencies:
+ import-from: 2.1.0
+ dev: false
+ engines:
+ node: '>=4'
+ resolution:
+ integrity: sha1-qmzzbnInYShcs3HsZRn1PiQ1sKk=
+ /import-fresh/2.0.0:
+ dependencies:
+ caller-path: 2.0.0
+ resolve-from: 3.0.0
+ dev: false
+ engines:
+ node: '>=4'
+ resolution:
+ integrity: sha1-2BNVwVYS04bGH53dOSLUMEgipUY=
+ /import-fresh/3.2.1:
+ dependencies:
+ parent-module: 1.0.1
+ resolve-from: 4.0.0
+ dev: false
+ engines:
+ node: '>=6'
+ resolution:
+ integrity: sha512-6e1q1cnWP2RXD9/keSkxHScg508CdXqXWgWBaETNhyuBFz+kUZlKboh+ISK+bU++DmbHimVBrOz/zzPe0sZ3sQ==
+ /import-from/2.1.0:
+ dependencies:
+ resolve-from: 3.0.0
+ dev: false
+ engines:
+ node: '>=4'
+ resolution:
+ integrity: sha1-M1238qev/VOqpHHUuAId7ja387E=
+ /imurmurhash/0.1.4:
+ dev: false
+ engines:
+ node: '>=0.8.19'
+ resolution:
+ integrity: sha1-khi5srkoojixPcT7a21XbyMUU+o=
+ /indexes-of/1.0.1:
+ dev: false
+ resolution:
+ integrity: sha1-8w9xbI4r00bHtn0985FVZqfAVgc=
+ /infer-owner/1.0.4:
+ dev: false
+ resolution:
+ integrity: sha512-IClj+Xz94+d7irH5qRyfJonOdfTzuDaifE6ZPWfx0N0+/ATZCbuTPq2prFl526urkQd90WyUKIh1DfBQ2hMz9A==
+ /inflight/1.0.6:
+ dependencies:
+ once: 1.4.0
+ wrappy: 1.0.2
+ dev: false
+ resolution:
+ integrity: sha1-Sb1jMdfQLQwJvJEKEHW6gWW1bfk=
+ /inherits/2.0.1:
+ dev: false
+ resolution:
+ integrity: sha1-sX0I0ya0Qj5Wjv9xn5GwscvfafE=
+ /inherits/2.0.3:
+ dev: false
+ resolution:
+ integrity: sha1-Yzwsg+PaQqUC9SRmAiSA9CCCYd4=
+ /inherits/2.0.4:
+ dev: false
+ resolution:
+ integrity: sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==
+ /ini/1.3.5:
+ dev: true
+ resolution:
+ integrity: sha512-RZY5huIKCMRWDUqZlEi72f/lmXKMvuszcMBduliQ3nnWbx9X/ZBQO7DijMEYS9EhHBb2qacRUMtC7svLwe0lcw==
+ /invariant/2.2.4:
+ dependencies:
+ loose-envify: 1.4.0
+ dev: false
+ resolution:
+ integrity: sha512-phJfQVBuaJM5raOpJjSfkiD6BpbCE4Ns//LaXl6wGYtUBY83nWS6Rf9tXm2e8VaK60JEjYldbPif/A2B1C2gNA==
+ /is-accessor-descriptor/0.1.6:
+ dependencies:
+ kind-of: 3.2.2
+ dev: false
+ engines:
+ node: '>=0.10.0'
+ resolution:
+ integrity: sha1-qeEss66Nh2cn7u84Q/igiXtcmNY=
+ /is-accessor-descriptor/1.0.0:
+ dependencies:
+ kind-of: 6.0.2
+ dev: false
+ engines:
+ node: '>=0.10.0'
+ resolution:
+ integrity: sha512-m5hnHTkcVsPfqx3AKlyttIPb7J+XykHvJP2B9bZDjlhLIoEq4XoK64Vg7boZlVWYK6LUY94dYPEE7Lh0ZkZKcQ==
+ /is-arrayish/0.2.1:
+ dev: false
+ resolution:
+ integrity: sha1-d8mYQFJ6qOyxqLppe4BkWnqSap0=
+ /is-binary-path/1.0.1:
+ dependencies:
+ binary-extensions: 1.13.1
+ dev: false
+ engines:
+ node: '>=0.10.0'
+ resolution:
+ integrity: sha1-dfFmQrSA8YenEcgUFh/TpKdlWJg=
+ /is-binary-path/2.1.0:
+ dependencies:
+ binary-extensions: 2.0.0
+ dev: false
+ engines:
+ node: '>=8'
+ resolution:
+ integrity: sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==
+ /is-buffer/1.1.6:
+ dev: false
+ resolution:
+ integrity: sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w==
+ /is-data-descriptor/0.1.4:
+ dependencies:
+ kind-of: 3.2.2
+ dev: false
+ engines:
+ node: '>=0.10.0'
+ resolution:
+ integrity: sha1-C17mSDiOLIYCgueT8YVv7D8wG1Y=
+ /is-data-descriptor/1.0.0:
+ dependencies:
+ kind-of: 6.0.2
+ dev: false
+ engines:
+ node: '>=0.10.0'
+ resolution:
+ integrity: sha512-jbRXy1FmtAoCjQkVmIVYwuuqDFUbaOeDjmed1tOGPrsMhtJA4rD9tkgA0F1qJ3gRFRXcHYVkdeaP50Q5rE/jLQ==
+ /is-descriptor/0.1.6:
+ dependencies:
+ is-accessor-descriptor: 0.1.6
+ is-data-descriptor: 0.1.4
+ kind-of: 5.1.0
+ dev: false
+ engines:
+ node: '>=0.10.0'
+ resolution:
+ integrity: sha512-avDYr0SB3DwO9zsMov0gKCESFYqCnE4hq/4z3TdUlukEy5t9C0YRq7HLrsN52NAcqXKaepeCD0n+B0arnVG3Hg==
+ /is-descriptor/1.0.2:
+ dependencies:
+ is-accessor-descriptor: 1.0.0
+ is-data-descriptor: 1.0.0
+ kind-of: 6.0.2
+ dev: false
+ engines:
+ node: '>=0.10.0'
+ resolution:
+ integrity: sha512-2eis5WqQGV7peooDyLmNEPUrps9+SXX5c9pL3xEB+4e9HnGuDa7mB7kHxHw4CbqS9k1T2hOH3miL8n8WtiYVtg==
+ /is-directory/0.3.1:
+ dev: false
+ engines:
+ node: '>=0.10.0'
+ resolution:
+ integrity: sha1-YTObbyR1/Hcv2cnYP1yFddwVSuE=
+ /is-docker/2.0.0:
+ dev: false
+ engines:
+ node: '>=8'
+ resolution:
+ integrity: sha512-pJEdRugimx4fBMra5z2/5iRdZ63OhYV0vr0Dwm5+xtW4D1FvRkB8hamMIhnWfyJeDdyr/aa7BDyNbtG38VxgoQ==
+ /is-extendable/0.1.1:
+ dev: false
+ engines:
+ node: '>=0.10.0'
+ resolution:
+ integrity: sha1-YrEQ4omkcUGOPsNqYX1HLjAd/Ik=
+ /is-extendable/1.0.1:
+ dependencies:
+ is-plain-object: 2.0.4
+ dev: false
+ engines:
+ node: '>=0.10.0'
+ resolution:
+ integrity: sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==
+ /is-extglob/2.1.1:
+ dev: false
+ engines:
+ node: '>=0.10.0'
+ resolution:
+ integrity: sha1-qIwCU1eR8C7TfHahueqXc8gz+MI=
+ /is-fullwidth-code-point/2.0.0:
+ dev: true
+ engines:
+ node: '>=4'
+ resolution:
+ integrity: sha1-o7MKXE8ZkYMWeqq5O+764937ZU8=
+ /is-glob/3.1.0:
+ dependencies:
+ is-extglob: 2.1.1
+ dev: false
+ engines:
+ node: '>=0.10.0'
+ resolution:
+ integrity: sha1-e6WuJCF4BKxwcHuWkiVnSGzD6Eo=
+ /is-glob/4.0.1:
+ dependencies:
+ is-extglob: 2.1.1
+ dev: false
+ engines:
+ node: '>=0.10.0'
+ resolution:
+ integrity: sha512-5G0tKtBTFImOqDnLB2hG6Bp2qcKEFduo4tZu9MT/H6NQv/ghhy30o55ufafxJ/LdH79LLs2Kfrn85TLKyA7BUg==
+ /is-number/3.0.0:
+ dependencies:
+ kind-of: 3.2.2
+ dev: false
+ engines:
+ node: '>=0.10.0'
+ resolution:
+ integrity: sha1-JP1iAaR4LPUFYcgQJ2r8fRLXEZU=
+ /is-number/7.0.0:
+ dev: false
+ engines:
+ node: '>=0.12.0'
+ resolution:
+ integrity: sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==
+ /is-obj/2.0.0:
+ dev: false
+ engines:
+ node: '>=8'
+ resolution:
+ integrity: sha512-drqDG3cbczxxEJRoOXcOjtdp1J/lyp1mNn0xaznRs8+muBhgQcrnbspox5X5fOw0HnMnbfDzvnEMEtqDEJEo8w==
+ /is-path-cwd/1.0.0:
+ dev: false
+ engines:
+ node: '>=0.10.0'
+ resolution:
+ integrity: sha1-0iXsIxMuie3Tj9p2dHLmLmXxEG0=
+ /is-path-in-cwd/1.0.1:
+ dependencies:
+ is-path-inside: 1.0.1
+ dev: false
+ engines:
+ node: '>=0.10.0'
+ resolution:
+ integrity: sha512-FjV1RTW48E7CWM7eE/J2NJvAEEVektecDBVBE5Hh3nM1Jd0kvhHtX68Pr3xsDf857xt3Y4AkwVULK1Vku62aaQ==
+ /is-path-inside/1.0.1:
+ dependencies:
+ path-is-inside: 1.0.2
+ dev: false
+ engines:
+ node: '>=0.10.0'
+ resolution:
+ integrity: sha1-jvW33lBDej/cprToZe96pVy0gDY=
+ /is-plain-obj/1.1.0:
+ dev: false
+ engines:
+ node: '>=0.10.0'
+ resolution:
+ integrity: sha1-caUMhCnfync8kqOQpKA7OfzVHT4=
+ /is-plain-object/2.0.4:
+ dependencies:
+ isobject: 3.0.1
+ dev: false
+ engines:
+ node: '>=0.10.0'
+ resolution:
+ integrity: sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==
+ /is-stream/1.1.0:
+ dev: true
+ engines:
+ node: '>=0.10.0'
+ resolution:
+ integrity: sha1-EtSj3U5o4Lec6428hBc66A2RykQ=
+ /is-typedarray/1.0.0:
+ dev: false
+ resolution:
+ integrity: sha1-5HnICFjfDBsR3dppQPlgEfzaSpo=
+ /is-windows/1.0.2:
+ dev: false
+ engines:
+ node: '>=0.10.0'
+ resolution:
+ integrity: sha512-eXK1UInq2bPmjyX6e3VHIzMLobc4J94i4AWn+Hpq3OU5KkrRC96OAcR3PRJ/pGu6m8TRnBHP9dkXQVsT/COVIA==
+ /is-wsl/1.1.0:
+ dev: false
+ engines:
+ node: '>=4'
+ resolution:
+ integrity: sha1-HxbkqiKwTRM2tmGIpmrzxgDDpm0=
+ /is-wsl/2.1.1:
+ dev: false
+ engines:
+ node: '>=8'
+ resolution:
+ integrity: sha512-umZHcSrwlDHo2TGMXv0DZ8dIUGunZ2Iv68YZnrmCiBPkZ4aaOhtv7pXJKeki9k3qJ3RJr0cDyitcl5wEH3AYog==
+ /isarray/1.0.0:
+ dev: false
+ resolution:
+ integrity: sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE=
+ /isexe/2.0.0:
+ dev: true
+ resolution:
+ integrity: sha1-6PvzdNxVb/iUehDcsFctYz8s+hA=
+ /isobject/2.1.0:
+ dependencies:
+ isarray: 1.0.0
+ dev: false
+ engines:
+ node: '>=0.10.0'
+ resolution:
+ integrity: sha1-8GVWEJaj8dou9GJy+BXIQNh+DIk=
+ /isobject/3.0.1:
+ dev: false
+ engines:
+ node: '>=0.10.0'
+ resolution:
+ integrity: sha1-TkMekrEalzFjaqH5yNHMvP2reN8=
+ /jest-worker/24.9.0:
+ dependencies:
+ merge-stream: 2.0.0
+ supports-color: 6.1.0
+ dev: false
+ engines:
+ node: '>= 6'
+ resolution:
+ integrity: sha512-51PE4haMSXcHohnSMdM42anbvZANYTqMrr52tVKPqqsPJMzoP6FYYDVqahX/HrAoKEKz3uUPzSvKs9A3qR4iVw==
+ /js-levenshtein/1.1.6:
+ dev: false
+ engines:
+ node: '>=0.10.0'
+ resolution:
+ integrity: sha512-X2BB11YZtrRqY4EnQcLX5Rh373zbK4alC1FW7D7MBhL2gtcC17cTnr6DmfHZeS0s2rTHjUTMMHfG7gO8SSdw+g==
+ /js-tokens/3.0.2:
+ dev: false
+ resolution:
+ integrity: sha1-mGbfOVECEw449/mWvOtlRDIJwls=
+ /js-tokens/4.0.0:
+ dev: false
+ resolution:
+ integrity: sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==
+ /js-yaml/3.13.1:
+ dependencies:
+ argparse: 1.0.10
+ esprima: 4.0.1
+ dev: false
+ hasBin: true
+ resolution:
+ integrity: sha512-YfbcO7jXDdyj0DGxYVSlSeQNHbD7XPWvrVWeVUujrQEoZzWJIRrCPoyk6kL6IAjAG2IolMK4T0hNUe0HOUs5Jw==
+ /jsesc/0.5.0:
+ dev: false
+ hasBin: true
+ resolution:
+ integrity: sha1-597mbjXW/Bb3EP6R1c9p9w8IkR0=
+ /jsesc/2.5.2:
+ dev: false
+ engines:
+ node: '>=4'
+ hasBin: true
+ resolution:
+ integrity: sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA==
+ /json-parse-better-errors/1.0.2:
+ dev: false
+ resolution:
+ integrity: sha512-mrqyZKfX5EhL7hvqcV6WG1yYjnjeuYDzDhhcAAUrq8Po85NBQBJP+ZDUT75qZQ98IkUoBqdkExkukOU7Ts2wrw==
+ /json-schema-traverse/0.4.1:
+ resolution:
+ integrity: sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==
+ /json-schema-typed/7.0.3:
+ dev: false
+ resolution:
+ integrity: sha512-7DE8mpG+/fVw+dTpjbxnx47TaMnDfOI1jwft9g1VybltZCduyRQPJPvc+zzKY9WPHxhPWczyFuYa6I8Mw4iU5A==
+ /json5/1.0.1:
+ dependencies:
+ minimist: 1.2.0
+ dev: false
+ hasBin: true
+ resolution:
+ integrity: sha512-aKS4WQjPenRxiQsC93MNfjx+nbF4PAdYzmd/1JIj8HYzqfbu86beTuNgXDzPknWk0n0uARlyewZo4s++ES36Ow==
+ /json5/2.1.1:
+ dependencies:
+ minimist: 1.2.0
+ dev: false
+ engines:
+ node: '>=6'
+ hasBin: true
+ resolution:
+ integrity: sha512-l+3HXD0GEI3huGq1njuqtzYK8OYJyXMkOLtQ53pjWh89tvWS2h6l+1zMkYWqlb57+SiQodKZyvMEFb2X+KrFhQ==
+ /kind-of/3.2.2:
+ dependencies:
+ is-buffer: 1.1.6
+ dev: false
+ engines:
+ node: '>=0.10.0'
+ resolution:
+ integrity: sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=
+ /kind-of/4.0.0:
+ dependencies:
+ is-buffer: 1.1.6
+ dev: false
+ engines:
+ node: '>=0.10.0'
+ resolution:
+ integrity: sha1-IIE989cSkosgc3hpGkUGb65y3Vc=
+ /kind-of/5.1.0:
+ dev: false
+ engines:
+ node: '>=0.10.0'
+ resolution:
+ integrity: sha512-NGEErnH6F2vUuXDh+OlbcKW7/wOcfdRHaZ7VWtqCztfHri/++YKmP51OdWeGPuqCOba6kk2OTe5d02VmTB80Pw==
+ /kind-of/6.0.2:
+ dev: false
+ engines:
+ node: '>=0.10.0'
+ resolution:
+ integrity: sha512-s5kLOcnH0XqDO+FvuaLX8DDjZ18CGFk7VygH40QoKPUQhW4e2rvM0rwUq0t8IQDOwYSeLK01U90OjzBTme2QqA==
+ /launch-editor/2.2.1:
+ dependencies:
+ chalk: 2.4.2
+ shell-quote: 1.7.2
+ dev: false
+ resolution:
+ integrity: sha512-On+V7K2uZK6wK7x691ycSUbLD/FyKKelArkbaAMSSJU8JmqmhwN2+mnJDNINuJWSrh2L0kDk+ZQtbC/gOWUwLw==
+ /lines-and-columns/1.1.6:
+ dev: false
+ resolution:
+ integrity: sha1-HADHQ7QzzQpOgHWPe2SldEDZ/wA=
+ /load-json-file/2.0.0:
+ dependencies:
+ graceful-fs: 4.2.3
+ parse-json: 2.2.0
+ pify: 2.3.0
+ strip-bom: 3.0.0
+ dev: false
+ engines:
+ node: '>=4'
+ resolution:
+ integrity: sha1-eUfkIUmvgNaWy/eXvKq8/h/inKg=
+ /loader-runner/2.4.0:
+ dev: false
+ engines:
+ node: '>=4.3.0 <5.0.0 || >=5.10'
+ resolution:
+ integrity: sha512-Jsmr89RcXGIwivFY21FcRrisYZfvLMTWx5kOLc+JTxtpBOG6xML0vzbc6SEQG2FO9/4Fc3wW4LVcB5DmGflaRw==
+ /loader-utils/1.2.3:
+ dependencies:
+ big.js: 5.2.2
+ emojis-list: 2.1.0
+ json5: 1.0.1
+ dev: false
+ engines:
+ node: '>=4.0.0'
+ resolution:
+ integrity: sha512-fkpz8ejdnEMG3s37wGL07iSBDg99O9D5yflE9RGNH3hRdx9SOwYfnGYdZOUIZitN8E+E2vkq3MUMYMvPYl5ZZA==
+ /locate-path/2.0.0:
+ dependencies:
+ p-locate: 2.0.0
+ path-exists: 3.0.0
+ dev: false
+ engines:
+ node: '>=4'
+ resolution:
+ integrity: sha1-K1aLJl7slExtnA3pw9u7ygNUzY4=
+ /locate-path/3.0.0:
+ dependencies:
+ p-locate: 3.0.0
+ path-exists: 3.0.0
+ dev: false
+ engines:
+ node: '>=6'
+ resolution:
+ integrity: sha512-7AO748wWnIhNqAuaty2ZWHkQHRSNfPVIsPIfwEOWO22AmaoVrWavlOcMR5nzTLNYvp36X220/maaRsrec1G65A==
+ /locate-path/5.0.0:
+ dependencies:
+ p-locate: 4.1.0
+ dev: false
+ engines:
+ node: '>=8'
+ resolution:
+ integrity: sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==
+ /lodash._reinterpolate/3.0.0:
+ dev: false
+ resolution:
+ integrity: sha1-DM8tiRZq8Ds2Y8eWU4t1rG4RTZ0=
+ /lodash.curry/4.1.1:
+ dev: false
+ resolution:
+ integrity: sha1-JI42By7ekGUB11lmIAqG2riyMXA=
+ /lodash.template/4.5.0:
+ dependencies:
+ lodash._reinterpolate: 3.0.0
+ lodash.templatesettings: 4.2.0
+ dev: false
+ resolution:
+ integrity: sha512-84vYFxIkmidUiFxidA/KjjH9pAycqW+h980j7Fuz5qxRtO9pgB7MDFTdys1N7A5mcucRiDyEq4fusljItR1T/A==
+ /lodash.templatesettings/4.2.0:
+ dependencies:
+ lodash._reinterpolate: 3.0.0
+ dev: false
+ resolution:
+ integrity: sha512-stgLz+i3Aa9mZgnjr/O+v9ruKZsPsndy7qPZOchbqk2cnTU1ZaldKK+v7m54WoKIyxiuMZTKT2H81F8BeAc3ZQ==
+ /lodash/4.17.15:
+ dev: false
+ resolution:
+ integrity: sha512-8xOcRHvCjnocdS5cpwXQXVzmmh5e5+saE2QGoeQmbKmRS6J3VQppPOIt0MnmE+4xlZoumy0GPG0D0MVIQbNA1A==
+ /log-symbols/2.2.0:
+ dependencies:
+ chalk: 2.4.2
+ dev: false
+ engines:
+ node: '>=4'
+ resolution:
+ integrity: sha512-VeIAFslyIerEJLXHziedo2basKbMKtTw3vfn5IzG0XTjhAVEJyNHnL2p7vc+wBDSdQuUpNw3M2u6xb9QsAY5Eg==
+ /loose-envify/1.4.0:
+ dependencies:
+ js-tokens: 4.0.0
+ dev: false
+ hasBin: true
+ resolution:
+ integrity: sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==
+ /lru-cache/4.1.5:
+ dependencies:
+ pseudomap: 1.0.2
+ yallist: 2.1.2
+ dev: true
+ resolution:
+ integrity: sha512-sWZlbEP2OsHNkXrMl5GYk/jKk70MBng6UU4YI/qGDYbgf6YbP4EvmqISbXCoJiRKs+1bSpFHVgQxvJ17F2li5g==
+ /lru-cache/5.1.1:
+ dependencies:
+ yallist: 3.1.1
+ dev: false
+ resolution:
+ integrity: sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==
+ /make-dir/1.3.0:
+ dependencies:
+ pify: 3.0.0
+ dev: false
+ engines:
+ node: '>=4'
+ resolution:
+ integrity: sha512-2w31R7SJtieJJnQtGc7RVL2StM2vGYVfqUOvUDxH6bC6aJTxPxTF0GnIgCyu7tjockiUWAYQRbxa7vKn34s5sQ==
+ /make-dir/2.1.0:
+ dependencies:
+ pify: 4.0.1
+ semver: 5.7.1
+ dev: false
+ engines:
+ node: '>=6'
+ resolution:
+ integrity: sha512-LS9X+dc8KLxXCb8dni79fLIIUA5VyZoyjSMCwTluaXA0o27cCK0bhXkpgw+sTXVpPy/lSO57ilRixqk0vDmtRA==
+ /make-dir/3.0.0:
+ dependencies:
+ semver: 6.3.0
+ dev: false
+ engines:
+ node: '>=8'
+ resolution:
+ integrity: sha512-grNJDhb8b1Jm1qeqW5R/O63wUo4UXo2v2HMic6YT9i/HBlF93S8jkMgH7yugvY9ABDShH4VZMn8I+U8+fCNegw==
+ /mamacro/0.0.3:
+ dev: false
+ resolution:
+ integrity: sha512-qMEwh+UujcQ+kbz3T6V+wAmO2U8veoq2w+3wY8MquqwVA3jChfwY+Tk52GZKDfACEPjuZ7r2oJLejwpt8jtwTA==
+ /map-cache/0.2.2:
+ dev: false
+ engines:
+ node: '>=0.10.0'
+ resolution:
+ integrity: sha1-wyq9C9ZSXZsFFkW7TyasXcmKDb8=
+ /map-visit/1.0.0:
+ dependencies:
+ object-visit: 1.0.1
+ dev: false
+ engines:
+ node: '>=0.10.0'
+ resolution:
+ integrity: sha1-7Nyo8TFE5mDxtb1B8S80edmN+48=
+ /md5.js/1.3.5:
+ dependencies:
+ hash-base: 3.0.4
+ inherits: 2.0.4
+ safe-buffer: 5.2.0
+ dev: false
+ resolution:
+ integrity: sha512-xitP+WxNPcTTOgnTJcrhM0xvdPepipPSf3I8EIpGKeFLjt3PlJLIDG3u8EX53ZIubkb+5U2+3rELYpEhHhzdkg==
+ /memory-fs/0.4.1:
+ dependencies:
+ errno: 0.1.7
+ readable-stream: 2.3.7
+ dev: false
+ resolution:
+ integrity: sha1-OpoguEYlI+RHz7x+i7gO1me/xVI=
+ /memory-fs/0.5.0:
+ dependencies:
+ errno: 0.1.7
+ readable-stream: 2.3.7
+ dev: false
+ engines:
+ node: '>=4.3.0 <5.0.0 || >=5.10'
+ resolution:
+ integrity: sha512-jA0rdU5KoQMC0e6ppoNRtpp6vjFq6+NY7r8hywnC7V+1Xj/MtHwGIbB1QaK/dunyjWteJzmkpd7ooeWg10T7GA==
+ /merge-stream/2.0.0:
+ dev: false
+ resolution:
+ integrity: sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==
+ /microevent.ts/0.1.1:
+ dev: false
+ resolution:
+ integrity: sha512-jo1OfR4TaEwd5HOrt5+tAZ9mqT4jmpNAusXtyfNzqVm9uiSYFZlKM1wYL4oU7azZW/PxQW53wM0S6OR1JHNa2g==
+ /micromatch/3.1.10:
+ dependencies:
+ arr-diff: 4.0.0
+ array-unique: 0.3.2
+ braces: 2.3.2
+ define-property: 2.0.2
+ extend-shallow: 3.0.2
+ extglob: 2.0.4
+ fragment-cache: 0.2.1
+ kind-of: 6.0.2
+ nanomatch: 1.2.13
+ object.pick: 1.3.0
+ regex-not: 1.0.2
+ snapdragon: 0.8.2
+ to-regex: 3.0.2
+ dev: false
+ engines:
+ node: '>=0.10.0'
+ resolution:
+ integrity: sha512-MWikgl9n9M3w+bpsY3He8L+w9eF9338xRl8IAO5viDizwSzziFEyUzo2xrrloB64ADbTf8uA8vRqqttDTOmccg==
+ /miller-rabin/4.0.1:
+ dependencies:
+ bn.js: 4.11.8
+ brorand: 1.1.0
+ dev: false
+ hasBin: true
+ resolution:
+ integrity: sha512-115fLhvZVqWwHPbClyntxEVfVDfl9DLLTuJvq3g2O/Oxi8AiNouAHvDSzHS0viUJc+V5vm3eq91Xwqn9dp4jRA==
+ /mime-db/1.33.0:
+ dev: true
+ engines:
+ node: '>= 0.6'
+ resolution:
+ integrity: sha512-BHJ/EKruNIqJf/QahvxwQZXKygOQ256myeN/Ew+THcAa5q+PjyTTMMeNQC4DZw5AwfvelsUrA6B67NKMqXDbzQ==
+ /mime-db/1.43.0:
+ engines:
+ node: '>= 0.6'
+ resolution:
+ integrity: sha512-+5dsGEEovYbT8UY9yD7eE4XTc4UwJ1jBYlgaQQF38ENsKR3wj/8q8RFZrF9WIZpB2V1ArTVFUva8sAul1NzRzQ==
+ /mime-types/2.1.18:
+ dependencies:
+ mime-db: 1.33.0
+ dev: true
+ engines:
+ node: '>= 0.6'
+ resolution:
+ integrity: sha512-lc/aahn+t4/SWV/qcmumYjymLsWfN3ELhpmVuUFjgsORruuZPVSwAQryq+HHGvO/SI2KVX26bx+En+zhM8g8hQ==
+ /mime-types/2.1.26:
+ dependencies:
+ mime-db: 1.43.0
+ engines:
+ node: '>= 0.6'
+ resolution:
+ integrity: sha512-01paPWYgLrkqAyrlDorC1uDwl2p3qZT7yl806vW7DvDoxwXi46jsjFbg+WdwotBIk6/MbEhO/dh5aZ5sNj/dWQ==
+ /mime/1.6.0:
+ dev: false
+ engines:
+ node: '>=4'
+ hasBin: true
+ resolution:
+ integrity: sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==
+ /mime/2.4.4:
+ dev: false
+ engines:
+ node: '>=4.0.0'
+ hasBin: true
+ resolution:
+ integrity: sha512-LRxmNwziLPT828z+4YkNzloCFC2YM4wrB99k+AV5ZbEyfGNWfG8SO1FUXLmLDBSo89NrJZ4DIWeLjy1CHGhMGA==
+ /mimic-fn/1.2.0:
+ dev: false
+ engines:
+ node: '>=4'
+ resolution:
+ integrity: sha512-jf84uxzwiuiIVKiOLpfYk7N46TSy8ubTonmneY9vrpHNAnp0QBt2BxWV9dO3/j+BoVAb+a5G6YDPW3M5HOdMWQ==
+ /mini-css-extract-plugin/0.8.0_webpack@4.41.2:
+ dependencies:
+ loader-utils: 1.2.3
+ normalize-url: 1.9.1
+ schema-utils: 1.0.0
+ webpack: 4.41.2_webpack@4.41.2
+ webpack-sources: 1.4.3
+ dev: false
+ engines:
+ node: '>= 6.9.0'
+ peerDependencies:
+ webpack: ^4.4.0
+ resolution:
+ integrity: sha512-MNpRGbNA52q6U92i0qbVpQNsgk7LExy41MdAlG84FeytfDOtRIf/mCHdEgG8rpTKOaNKiqUnZdlptF469hxqOw==
+ /minimalistic-assert/1.0.1:
+ dev: false
+ resolution:
+ integrity: sha512-UtJcAD4yEaGtjPezWuO9wC4nwUnVH/8/Im3yEHQP4b67cXlD/Qr9hdITCU1xDbSEXg2XKNaP8jsReV7vQd00/A==
+ /minimalistic-crypto-utils/1.0.1:
+ dev: false
+ resolution:
+ integrity: sha1-9sAMHAsIIkblxNmd+4x8CDsrWCo=
+ /minimatch/3.0.4:
+ dependencies:
+ brace-expansion: 1.1.11
+ resolution:
+ integrity: sha512-yJHVQEhyqPLUTgt9B83PXu6W3rx4MvvHvSUvToogpwoGDOUQ+yDrR0HRot+yOCdCO7u4hX3pWft6kWBBcqh0UA==
+ /minimist/0.0.8:
+ dev: false
+ resolution:
+ integrity: sha1-hX/Kv8M5fSYluCKCYuhqp6ARsF0=
+ /minimist/1.2.0:
+ resolution:
+ integrity: sha1-o1AIsg9BOD7sH7kU9M1d95omQoQ=
+ /mississippi/3.0.0:
+ dependencies:
+ concat-stream: 1.6.2
+ duplexify: 3.7.1
+ end-of-stream: 1.4.4
+ flush-write-stream: 1.1.1
+ from2: 2.3.0
+ parallel-transform: 1.2.0
+ pump: 3.0.0
+ pumpify: 1.5.1
+ stream-each: 1.2.3
+ through2: 2.0.5
+ dev: false
+ engines:
+ node: '>=4.0.0'
+ resolution:
+ integrity: sha512-x471SsVjUtBRtcvd4BzKE9kFC+/2TeWgKCgw0bZcw1b9l2X3QX5vCWgF+KaZaYm87Ss//rHnWryupDrgLvmSkA==
+ /mixin-deep/1.3.2:
+ dependencies:
+ for-in: 1.0.2
+ is-extendable: 1.0.1
+ dev: false
+ engines:
+ node: '>=0.10.0'
+ resolution:
+ integrity: sha512-WRoDn//mXBiJ1H40rqa3vH0toePwSsGb45iInWlTySa+Uu4k3tYUSxa2v1KqAiLtvlrSzaExqS1gtk96A9zvEA==
+ /mkdirp/0.5.1:
+ dependencies:
+ minimist: 0.0.8
+ dev: false
+ hasBin: true
+ resolution:
+ integrity: sha1-MAV0OOrGz3+MR2fzhkjWaX11yQM=
+ /move-concurrently/1.0.1:
+ dependencies:
+ aproba: 1.2.0
+ copy-concurrently: 1.0.5
+ fs-write-stream-atomic: 1.0.10
+ mkdirp: 0.5.1
+ rimraf: 2.7.1
+ run-queue: 1.0.3
+ dev: false
+ resolution:
+ integrity: sha1-viwAX9oy4LKa8fBdfEszIUxwH5I=
+ /ms/2.0.0:
+ resolution:
+ integrity: sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=
+ /ms/2.1.1:
+ dev: false
+ resolution:
+ integrity: sha512-tgp+dl5cGk28utYktBsrFqA7HKgrhgPsg6Z/EfhWI4gl1Hwq8B/GmY/0oXZ6nF8hDVesS/FpnYaD/kOWhYQvyg==
+ /ms/2.1.2:
+ dev: false
+ resolution:
+ integrity: sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==
+ /nan/2.14.0:
+ dev: false
+ optional: true
+ resolution:
+ integrity: sha512-INOFj37C7k3AfaNTtX8RhsTw7qRy7eLET14cROi9+5HAVbbHuIWUHEauBv5qT4Av2tWasiTY1Jw6puUNqRJXQg==
+ /nanomatch/1.2.13:
+ dependencies:
+ arr-diff: 4.0.0
+ array-unique: 0.3.2
+ define-property: 2.0.2
+ extend-shallow: 3.0.2
+ fragment-cache: 0.2.1
+ is-windows: 1.0.2
+ kind-of: 6.0.2
+ object.pick: 1.3.0
+ regex-not: 1.0.2
+ snapdragon: 0.8.2
+ to-regex: 3.0.2
+ dev: false
+ engines:
+ node: '>=0.10.0'
+ resolution:
+ integrity: sha512-fpoe2T0RbHwBTBUOftAfBPaDEi06ufaUai0mE6Yn1kacc3SnTErfb/h+X94VXzI64rKFHYImXSvdwGGCmwOqCA==
+ /native-url/0.2.4:
+ dependencies:
+ querystring: 0.2.0
+ dev: false
+ resolution:
+ integrity: sha512-McE+8BrgMw2ANypdYX9s1L+aUkbWDCEtsBGIbs8TfKBfQrFcZ2jMXX9LxGjOIOtoRXkwLTSlz38XHm8J3U6hgQ==
+ /negotiator/0.6.2:
+ engines:
+ node: '>= 0.6'
+ resolution:
+ integrity: sha512-hZXc7K2e+PgeI1eDBe/10Ard4ekbfrrqG8Ep+8Jmf4JID2bNg7NvCPOZN+kfF574pFQI7mum2AUqDidoKqcTOw==
+ /neo-async/2.6.1:
+ dev: false
+ resolution:
+ integrity: sha512-iyam8fBuCUpWeKPGpaNMetEocMt364qkCsfL9JuhjXX6dRnguRVOfk2GZaDpPjcOKiiXCPINZC1GczQ7iTq3Zw==
+ /next/9.1.7_727e55409c51e4668fd8ce6c10d18575:
+ dependencies:
+ '@ampproject/toolbox-optimizer': 1.1.1_lru-cache@5.1.1
+ '@babel/core': 7.7.2
+ '@babel/plugin-proposal-class-properties': 7.7.0_@babel+core@7.7.2
+ '@babel/plugin-proposal-nullish-coalescing-operator': 7.7.4_@babel+core@7.7.2
+ '@babel/plugin-proposal-object-rest-spread': 7.6.2_@babel+core@7.7.2
+ '@babel/plugin-proposal-optional-chaining': 7.7.4_@babel+core@7.7.2
+ '@babel/plugin-syntax-dynamic-import': 7.2.0_@babel+core@7.7.2
+ '@babel/plugin-transform-modules-commonjs': 7.7.0_@babel+core@7.7.2
+ '@babel/plugin-transform-runtime': 7.6.2_@babel+core@7.7.2
+ '@babel/preset-env': 7.7.1_@babel+core@7.7.2
+ '@babel/preset-modules': 0.1.1_@babel+core@7.7.2
+ '@babel/preset-react': 7.7.0_@babel+core@7.7.2
+ '@babel/preset-typescript': 7.7.2_@babel+core@7.7.2
+ '@babel/runtime': 7.7.2
+ '@babel/runtime-corejs2': 7.7.2
+ amphtml-validator: 1.0.23
+ async-retry: 1.2.3
+ async-sema: 3.0.0
+ autodll-webpack-plugin: 0.4.2_webpack@4.41.2
+ babel-core: 7.0.0-bridge.0_@babel+core@7.7.2
+ babel-loader: 8.0.6_@babel+core@7.7.2+webpack@4.41.2
+ babel-plugin-syntax-jsx: 6.18.0
+ babel-plugin-transform-define: 2.0.0
+ babel-plugin-transform-react-remove-prop-types: 0.4.24
+ cache-loader: 4.1.0_webpack@4.41.2
+ chalk: 2.4.2
+ ci-info: 2.0.0
+ compression: 1.7.4
+ conf: 5.0.0
+ content-type: 1.0.4
+ cookie: 0.4.0
+ css-loader: 3.3.0_webpack@4.41.2
+ cssnano-simple: 1.0.0
+ devalue: 2.0.1
+ etag: 1.8.1
+ file-loader: 4.2.0_webpack@4.41.2
+ find-up: 4.0.0
+ fork-ts-checker-webpack-plugin: 3.1.1
+ fresh: 0.5.2
+ gzip-size: 5.1.1
+ ignore-loader: 0.1.2
+ is-docker: 2.0.0
+ is-wsl: 2.1.1
+ jest-worker: 24.9.0
+ json5: 2.1.1
+ launch-editor: 2.2.1
+ loader-utils: 1.2.3
+ lodash.curry: 4.1.1
+ lru-cache: 5.1.1
+ mini-css-extract-plugin: 0.8.0_webpack@4.41.2
+ mkdirp: 0.5.1
+ native-url: 0.2.4
+ node-fetch: 2.6.0
+ object-assign: 4.1.1
+ ora: 3.4.0
+ path-to-regexp: 6.1.0
+ pnp-webpack-plugin: 1.5.0_typescript@3.7.4
+ postcss-flexbugs-fixes: 4.1.0
+ postcss-loader: 3.0.0
+ postcss-preset-env: 6.7.0
+ prop-types: 15.7.2
+ prop-types-exact: 1.2.0
+ raw-body: 2.4.0
+ react: 16.12.0
+ react-dom: 16.12.0_react@16.12.0
+ react-error-overlay: 5.1.6
+ react-is: 16.8.6
+ send: 0.17.1
+ source-map: 0.6.1
+ string-hash: 1.1.3
+ strip-ansi: 5.2.0
+ style-loader: 1.0.0_webpack@4.41.2
+ styled-jsx: 3.2.4_react@16.12.0
+ terser: 4.4.2
+ thread-loader: 2.1.3_webpack@4.41.2
+ unfetch: 4.1.0
+ url: 0.11.0
+ url-polyfill: 1.1.7
+ use-subscription: 1.1.1_react@16.12.0
+ watchpack: 2.0.0-beta.5
+ webpack: 4.41.2_webpack@4.41.2
+ webpack-dev-middleware: 3.7.0_webpack@4.41.2
+ webpack-hot-middleware: 2.25.0
+ webpack-sources: 1.4.3
+ whatwg-fetch: 3.0.0
+ dev: false
+ engines:
+ node: '>=8.10.0'
+ hasBin: true
+ peerDependencies:
+ react: ^16.6.0
+ react-dom: ^16.6.0
+ typescript: '*'
+ resolution:
+ integrity: sha512-qG6TsPl7ANuNPFhKq/1Pd4pAf24QCmUAjc0P8qYrSSsbwNIco1KNNXOyZajV/YlqBjBy/fCrZoErKK3zEUVz6w==
+ /node-fetch/2.6.0:
+ dev: false
+ engines:
+ node: 4.x || >=6.0.0
+ resolution:
+ integrity: sha512-8dG4H5ujfvFiqDmVu9fQ5bOHUC15JMjMY/Zumv26oOvvVJjM67KF8koCWIabKQ1GJIa9r2mMZscBq/TbdOcmNA==
+ /node-libs-browser/2.2.1:
+ dependencies:
+ assert: 1.5.0
+ browserify-zlib: 0.2.0
+ buffer: 4.9.2
+ console-browserify: 1.2.0
+ constants-browserify: 1.0.0
+ crypto-browserify: 3.12.0
+ domain-browser: 1.2.0
+ events: 3.0.0
+ https-browserify: 1.0.0
+ os-browserify: 0.3.0
+ path-browserify: 0.0.1
+ process: 0.11.10
+ punycode: 1.4.1
+ querystring-es3: 0.2.1
+ readable-stream: 2.3.7
+ stream-browserify: 2.0.2
+ stream-http: 2.8.3
+ string_decoder: 1.3.0
+ timers-browserify: 2.0.11
+ tty-browserify: 0.0.0
+ url: 0.11.0
+ util: 0.11.1
+ vm-browserify: 1.1.2
+ dev: false
+ resolution:
+ integrity: sha512-h/zcD8H9kaDZ9ALUWwlBUDo6TKF8a7qBSCSEGfjTVIYeqsioSKaAX+BN7NgiMGp6iSIXZ3PxgCu8KS3b71YK5Q==
+ /node-releases/1.1.44:
+ dependencies:
+ semver: 6.3.0
+ dev: false
+ resolution:
+ integrity: sha512-NwbdvJyR7nrcGrXvKAvzc5raj/NkoJudkarh2yIpJ4t0NH4aqjUDz/486P+ynIW5eokKOfzGNRdYoLfBlomruw==
+ /normalize-package-data/2.5.0:
+ dependencies:
+ hosted-git-info: 2.8.5
+ resolve: 1.14.2
+ semver: 5.7.1
+ validate-npm-package-license: 3.0.4
+ dev: false
+ resolution:
+ integrity: sha512-/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA==
+ /normalize-path/2.1.1:
+ dependencies:
+ remove-trailing-separator: 1.1.0
+ dev: false
+ engines:
+ node: '>=0.10.0'
+ resolution:
+ integrity: sha1-GrKLVW4Zg2Oowab35vogE3/mrtk=
+ /normalize-path/3.0.0:
+ dev: false
+ engines:
+ node: '>=0.10.0'
+ resolution:
+ integrity: sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==
+ /normalize-range/0.1.2:
+ dev: false
+ engines:
+ node: '>=0.10.0'
+ resolution:
+ integrity: sha1-LRDAa9/TEuqXd2laTShDlFa3WUI=
+ /normalize-url/1.9.1:
+ dependencies:
+ object-assign: 4.1.1
+ prepend-http: 1.0.4
+ query-string: 4.3.4
+ sort-keys: 1.1.2
+ dev: false
+ engines:
+ node: '>=4'
+ resolution:
+ integrity: sha1-LMDWazHqIwNkWENuNiDYWVTGbDw=
+ /npm-run-path/2.0.2:
+ dependencies:
+ path-key: 2.0.1
+ dev: true
+ engines:
+ node: '>=4'
+ resolution:
+ integrity: sha1-NakjLfo11wZ7TLLd8jV7GHFTbF8=
+ /num2fraction/1.2.2:
+ dev: false
+ resolution:
+ integrity: sha1-b2gragJ6Tp3fpFZM0lidHU5mnt4=
+ /object-assign/4.1.1:
+ dev: false
+ engines:
+ node: '>=0.10.0'
+ resolution:
+ integrity: sha1-IQmtx5ZYh8/AXLvUQsrIv7s2CGM=
+ /object-copy/0.1.0:
+ dependencies:
+ copy-descriptor: 0.1.1
+ define-property: 0.2.5
+ kind-of: 3.2.2
+ dev: false
+ engines:
+ node: '>=0.10.0'
+ resolution:
+ integrity: sha1-fn2Fi3gb18mRpBupde04EnVOmYw=
+ /object-keys/1.1.1:
+ dev: false
+ engines:
+ node: '>= 0.4'
+ resolution:
+ integrity: sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==
+ /object-visit/1.0.1:
+ dependencies:
+ isobject: 3.0.1
+ dev: false
+ engines:
+ node: '>=0.10.0'
+ resolution:
+ integrity: sha1-95xEk68MU3e1n+OdOV5BBC3QRbs=
+ /object.assign/4.1.0:
+ dependencies:
+ define-properties: 1.1.3
+ function-bind: 1.1.1
+ has-symbols: 1.0.1
+ object-keys: 1.1.1
+ dev: false
+ engines:
+ node: '>= 0.4'
+ resolution:
+ integrity: sha512-exHJeq6kBKj58mqGyTQ9DFvrZC/eR6OwxzoM9YRoGBqrXYonaFyGiFMuc9VZrXf7DarreEwMpurG3dd+CNyW5w==
+ /object.pick/1.3.0:
+ dependencies:
+ isobject: 3.0.1
+ dev: false
+ engines:
+ node: '>=0.10.0'
+ resolution:
+ integrity: sha1-h6EKxMFpS9Lhy/U1kaZhQftd10c=
+ /on-finished/2.3.0:
+ dependencies:
+ ee-first: 1.1.1
+ dev: false
+ engines:
+ node: '>= 0.8'
+ resolution:
+ integrity: sha1-IPEzZIGwg811M3mSoWlxqi2QaUc=
+ /on-headers/1.0.2:
+ engines:
+ node: '>= 0.8'
+ resolution:
+ integrity: sha512-pZAE+FJLoyITytdqK0U5s+FIpjN0JP3OzFi/u8Rx+EV5/W+JTWGXG8xFzevE7AjBfDqHv/8vL8qQsIhHnqRkrA==
+ /once/1.4.0:
+ dependencies:
+ wrappy: 1.0.2
+ dev: false
+ resolution:
+ integrity: sha1-WDsap3WWHUsROsF9nFC6753Xa9E=
+ /onetime/2.0.1:
+ dependencies:
+ mimic-fn: 1.2.0
+ dev: false
+ engines:
+ node: '>=4'
+ resolution:
+ integrity: sha1-BnQoIw/WdEOyeUsiu6UotoZ5YtQ=
+ /ora/3.4.0:
+ dependencies:
+ chalk: 2.4.2
+ cli-cursor: 2.1.0
+ cli-spinners: 2.2.0
+ log-symbols: 2.2.0
+ strip-ansi: 5.2.0
+ wcwidth: 1.0.1
+ dev: false
+ engines:
+ node: '>=6'
+ resolution:
+ integrity: sha512-eNwHudNbO1folBP3JsZ19v9azXWtQZjICdr3Q0TDPIaeBQ3mXLrh54wM+er0+hSp+dWKf+Z8KM58CYzEyIYxYg==
+ /os-browserify/0.3.0:
+ dev: false
+ resolution:
+ integrity: sha1-hUNzx/XCMVkU/Jv8a9gjj92h7Cc=
+ /p-finally/1.0.0:
+ dev: true
+ engines:
+ node: '>=4'
+ resolution:
+ integrity: sha1-P7z7FbiZpEEjs0ttzBi3JDNqLK4=
+ /p-limit/1.3.0:
+ dependencies:
+ p-try: 1.0.0
+ dev: false
+ engines:
+ node: '>=4'
+ resolution:
+ integrity: sha512-vvcXsLAJ9Dr5rQOPk7toZQZJApBl2K4J6dANSsEuh6QI41JYcsS/qhTGa9ErIUUgK3WNQoJYvylxvjqmiqEA9Q==
+ /p-limit/2.2.2:
+ dependencies:
+ p-try: 2.2.0
+ dev: false
+ engines:
+ node: '>=6'
+ resolution:
+ integrity: sha512-WGR+xHecKTr7EbUEhyLSh5Dube9JtdiG78ufaeLxTgpudf/20KqyMioIUZJAezlTIi6evxuoUs9YXc11cU+yzQ==
+ /p-locate/2.0.0:
+ dependencies:
+ p-limit: 1.3.0
+ dev: false
+ engines:
+ node: '>=4'
+ resolution:
+ integrity: sha1-IKAQOyIqcMj9OcwuWAaA893l7EM=
+ /p-locate/3.0.0:
+ dependencies:
+ p-limit: 2.2.2
+ dev: false
+ engines:
+ node: '>=6'
+ resolution:
+ integrity: sha512-x+12w/To+4GFfgJhBEpiDcLozRJGegY+Ei7/z0tSLkMmxGZNybVMSfWj9aJn8Z5Fc7dBUNJOOVgPv2H7IwulSQ==
+ /p-locate/4.1.0:
+ dependencies:
+ p-limit: 2.2.2
+ dev: false
+ engines:
+ node: '>=8'
+ resolution:
+ integrity: sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==
+ /p-map/1.2.0:
+ dev: false
+ engines:
+ node: '>=4'
+ resolution:
+ integrity: sha512-r6zKACMNhjPJMTl8KcFH4li//gkrXWfbD6feV8l6doRHlzljFWGJ2AP6iKaCJXyZmAUMOPtvbW7EXkbWO/pLEA==
+ /p-try/1.0.0:
+ dev: false
+ engines:
+ node: '>=4'
+ resolution:
+ integrity: sha1-y8ec26+P1CKOE/Yh8rGiN8GyB7M=
+ /p-try/2.2.0:
+ dev: false
+ engines:
+ node: '>=6'
+ resolution:
+ integrity: sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==
+ /pako/1.0.10:
+ dev: false
+ resolution:
+ integrity: sha512-0DTvPVU3ed8+HNXOu5Bs+o//Mbdj9VNQMUOe9oKCwh8l0GNwpTDMKCWbRjgtD291AWnkAgkqA/LOnQS8AmS1tw==
+ /parallel-transform/1.2.0:
+ dependencies:
+ cyclist: 1.0.1
+ inherits: 2.0.4
+ readable-stream: 2.3.7
+ dev: false
+ resolution:
+ integrity: sha512-P2vSmIu38uIlvdcU7fDkyrxj33gTUy/ABO5ZUbGowxNCopBq/OoD42bP4UmMrJoPyk4Uqf0mu3mtWBhHCZD8yg==
+ /parent-module/1.0.1:
+ dependencies:
+ callsites: 3.1.0
+ dev: false
+ engines:
+ node: '>=6'
+ resolution:
+ integrity: sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==
+ /parse-asn1/5.1.5:
+ dependencies:
+ asn1.js: 4.10.1
+ browserify-aes: 1.2.0
+ create-hash: 1.2.0
+ evp_bytestokey: 1.0.3
+ pbkdf2: 3.0.17
+ safe-buffer: 5.2.0
+ dev: false
+ resolution:
+ integrity: sha512-jkMYn1dcJqF6d5CpU689bq7w/b5ALS9ROVSpQDPrZsqqesUJii9qutvoT5ltGedNXMO2e16YUWIghG9KxaViTQ==
+ /parse-json/2.2.0:
+ dependencies:
+ error-ex: 1.3.2
+ dev: false
+ engines:
+ node: '>=0.10.0'
+ resolution:
+ integrity: sha1-9ID0BDTvgHQfhGkJn43qGPVaTck=
+ /parse-json/4.0.0:
+ dependencies:
+ error-ex: 1.3.2
+ json-parse-better-errors: 1.0.2
+ dev: false
+ engines:
+ node: '>=4'
+ resolution:
+ integrity: sha1-vjX1Qlvh9/bHRxhPmKeIy5lHfuA=
+ /parse-json/5.0.0:
+ dependencies:
+ '@babel/code-frame': 7.5.5
+ error-ex: 1.3.2
+ json-parse-better-errors: 1.0.2
+ lines-and-columns: 1.1.6
+ dev: false
+ engines:
+ node: '>=8'
+ resolution:
+ integrity: sha512-OOY5b7PAEFV0E2Fir1KOkxchnZNCdowAJgQ5NuxjpBKTRP3pQhwkrkxqQjeoKJ+fO7bCpmIZaogI4eZGDMEGOw==
+ /parse5-htmlparser2-tree-adapter/5.1.0:
+ dependencies:
+ parse5: 5.1.0
+ dev: false
+ resolution:
+ integrity: sha512-OrI4DNmghGcwDB3XN8FKKN7g5vBmau91uqj+VYuwuj/r6GhFBMBNymsM+Z9z+Z1p4HHgI0UuQirQRgh3W5d88g==
+ /parse5/5.1.0:
+ dev: false
+ resolution:
+ integrity: sha512-fxNG2sQjHvlVAYmzBZS9YlDp6PTSSDwa98vkD4QgVDDCAo84z5X1t5XyJQ62ImdLXx5NdIIfihey6xpum9/gRQ==
+ /pascalcase/0.1.1:
+ dev: false
+ engines:
+ node: '>=0.10.0'
+ resolution:
+ integrity: sha1-s2PlXoAGym/iF4TS2yK9FdeRfxQ=
+ /path-browserify/0.0.1:
+ dev: false
+ resolution:
+ integrity: sha512-BapA40NHICOS+USX9SN4tyhq+A2RrN/Ws5F0Z5aMHDp98Fl86lX8Oti8B7uN93L4Ifv4fHOEA+pQw87gmMO/lQ==
+ /path-dirname/1.0.2:
+ dev: false
+ resolution:
+ integrity: sha1-zDPSTVJeCZpTiMAzbG4yuRYGCeA=
+ /path-exists/3.0.0:
+ dev: false
+ engines:
+ node: '>=4'
+ resolution:
+ integrity: sha1-zg6+ql94yxiSXqfYENe1mwEP1RU=
+ /path-exists/4.0.0:
+ dev: false
+ engines:
+ node: '>=8'
+ resolution:
+ integrity: sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==
+ /path-is-absolute/1.0.1:
+ dev: false
+ engines:
+ node: '>=0.10.0'
+ resolution:
+ integrity: sha1-F0uSaHNVNP+8es5r9TpanhtcX18=
+ /path-is-inside/1.0.2:
+ resolution:
+ integrity: sha1-NlQX3t5EQw0cEa9hAn+s8HS9/FM=
+ /path-key/2.0.1:
+ dev: true
+ engines:
+ node: '>=4'
+ resolution:
+ integrity: sha1-QRyttXTFoUDTpLGRDUDYDMn0C0A=
+ /path-parse/1.0.6:
+ dev: false
+ resolution:
+ integrity: sha512-GSmOT2EbHrINBf9SR7CDELwlJ8AENk3Qn7OikK4nFYAu3Ote2+JYNVvkpAEQm3/TLNEJFD/xZJjzyxg3KBWOzw==
+ /path-to-regexp/2.2.1:
+ dev: true
+ resolution:
+ integrity: sha512-gu9bD6Ta5bwGrrU8muHzVOBFFREpp2iRkVfhBJahwJ6p6Xw20SjT0MxLnwkjOibQmGSYhiUnf2FLe7k+jcFmGQ==
+ /path-to-regexp/6.1.0:
+ dev: false
+ resolution:
+ integrity: sha512-h9DqehX3zZZDCEm+xbfU0ZmwCGFCAAraPJWMXJ4+v32NjZJilVg3k1TcKsRgIb8IQ/izZSaydDc1OhJCZvs2Dw==
+ /path-type/2.0.0:
+ dependencies:
+ pify: 2.3.0
+ dev: false
+ engines:
+ node: '>=4'
+ resolution:
+ integrity: sha1-8BLMuEFbcJb8LaoQVMPXI4lZTHM=
+ /path-type/4.0.0:
+ dev: false
+ engines:
+ node: '>=8'
+ resolution:
+ integrity: sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==
+ /pbkdf2/3.0.17:
+ dependencies:
+ create-hash: 1.2.0
+ create-hmac: 1.1.7
+ ripemd160: 2.0.2
+ safe-buffer: 5.2.0
+ sha.js: 2.4.11
+ dev: false
+ engines:
+ node: '>=0.12'
+ resolution:
+ integrity: sha512-U/il5MsrZp7mGg3mSQfn742na2T+1/vHDCG5/iTI3X9MKUuYUZVLQhyRsg06mCgDBTd57TxzgZt7P+fYfjRLtA==
+ /picomatch/2.2.1:
+ dev: false
+ engines:
+ node: '>=8.6'
+ resolution:
+ integrity: sha512-ISBaA8xQNmwELC7eOjqFKMESB2VIqt4PPDD0nsS95b/9dZXvVKOlz9keMSnoGGKcOHXfTvDD6WMaRoSc9UuhRA==
+ /pify/2.3.0:
+ dev: false
+ engines:
+ node: '>=0.10.0'
+ resolution:
+ integrity: sha1-7RQaasBDqEnqWISY59yosVMw6Qw=
+ /pify/3.0.0:
+ dev: false
+ engines:
+ node: '>=4'
+ resolution:
+ integrity: sha1-5aSs0sEB/fPZpNB/DbxNtJ3SgXY=
+ /pify/4.0.1:
+ dev: false
+ engines:
+ node: '>=6'
+ resolution:
+ integrity: sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g==
+ /pinkie-promise/2.0.1:
+ dependencies:
+ pinkie: 2.0.4
+ dev: false
+ engines:
+ node: '>=0.10.0'
+ resolution:
+ integrity: sha1-ITXW36ejWMBprJsXh3YogihFD/o=
+ /pinkie/2.0.4:
+ dev: false
+ engines:
+ node: '>=0.10.0'
+ resolution:
+ integrity: sha1-clVrgM+g1IqXToDnckjoDtT3+HA=
+ /pkg-dir/2.0.0:
+ dependencies:
+ find-up: 2.1.0
+ dev: false
+ engines:
+ node: '>=4'
+ resolution:
+ integrity: sha1-9tXREJ4Z1j7fQo4L1X4Sd3YVM0s=
+ /pkg-dir/3.0.0:
+ dependencies:
+ find-up: 3.0.0
+ dev: false
+ engines:
+ node: '>=6'
+ resolution:
+ integrity: sha512-/E57AYkoeQ25qkxMj5PBOVgF8Kiu/h7cYS30Z5+R7WaiCCBfLq58ZI/dSeaEKb9WVJV5n/03QwrN3IeWIFllvw==
+ /pkg-dir/4.2.0:
+ dependencies:
+ find-up: 4.1.0
+ dev: false
+ engines:
+ node: '>=8'
+ resolution:
+ integrity: sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ==
+ /pkg-up/3.1.0:
+ dependencies:
+ find-up: 3.0.0
+ dev: false
+ engines:
+ node: '>=8'
+ resolution:
+ integrity: sha512-nDywThFk1i4BQK4twPQ6TA4RT8bDY96yeuCVBWL3ePARCiEKDRSrNGbFIgUJpLp+XeIR65v8ra7WuJOFUBtkMA==
+ /pnp-webpack-plugin/1.5.0_typescript@3.7.4:
+ dependencies:
+ ts-pnp: 1.1.5_typescript@3.7.4
+ dev: false
+ engines:
+ node: '>=6'
+ peerDependencies:
+ typescript: '*'
+ resolution:
+ integrity: sha512-jd9olUr9D7do+RN8Wspzhpxhgp1n6Vd0NtQ4SFkmIACZoEL1nkyAdW9Ygrinjec0vgDcWjscFQQ1gDW8rsfKTg==
+ /posix-character-classes/0.1.1:
+ dev: false
+ engines:
+ node: '>=0.10.0'
+ resolution:
+ integrity: sha1-AerA/jta9xoqbAL+q7jB/vfgDqs=
+ /postcss-attribute-case-insensitive/4.0.1:
+ dependencies:
+ postcss: 7.0.26
+ postcss-selector-parser: 5.0.0
+ dev: false
+ resolution:
+ integrity: sha512-L2YKB3vF4PetdTIthQVeT+7YiSzMoNMLLYxPXXppOOP7NoazEAy45sh2LvJ8leCQjfBcfkYQs8TtCcQjeZTp8A==
+ /postcss-color-functional-notation/2.0.1:
+ dependencies:
+ postcss: 7.0.26
+ postcss-values-parser: 2.0.1
+ dev: false
+ engines:
+ node: '>=6.0.0'
+ resolution:
+ integrity: sha512-ZBARCypjEDofW4P6IdPVTLhDNXPRn8T2s1zHbZidW6rPaaZvcnCS2soYFIQJrMZSxiePJ2XIYTlcb2ztr/eT2g==
+ /postcss-color-gray/5.0.0:
+ dependencies:
+ '@csstools/convert-colors': 1.4.0
+ postcss: 7.0.26
+ postcss-values-parser: 2.0.1
+ dev: false
+ engines:
+ node: '>=6.0.0'
+ resolution:
+ integrity: sha512-q6BuRnAGKM/ZRpfDascZlIZPjvwsRye7UDNalqVz3s7GDxMtqPY6+Q871liNxsonUw8oC61OG+PSaysYpl1bnw==
+ /postcss-color-hex-alpha/5.0.3:
+ dependencies:
+ postcss: 7.0.26
+ postcss-values-parser: 2.0.1
+ dev: false
+ engines:
+ node: '>=6.0.0'
+ resolution:
+ integrity: sha512-PF4GDel8q3kkreVXKLAGNpHKilXsZ6xuu+mOQMHWHLPNyjiUBOr75sp5ZKJfmv1MCus5/DWUGcK9hm6qHEnXYw==
+ /postcss-color-mod-function/3.0.3:
+ dependencies:
+ '@csstools/convert-colors': 1.4.0
+ postcss: 7.0.26
+ postcss-values-parser: 2.0.1
+ dev: false
+ engines:
+ node: '>=6.0.0'
+ resolution:
+ integrity: sha512-YP4VG+xufxaVtzV6ZmhEtc+/aTXH3d0JLpnYfxqTvwZPbJhWqp8bSY3nfNzNRFLgB4XSaBA82OE4VjOOKpCdVQ==
+ /postcss-color-rebeccapurple/4.0.1:
+ dependencies:
+ postcss: 7.0.26
+ postcss-values-parser: 2.0.1
+ dev: false
+ engines:
+ node: '>=6.0.0'
+ resolution:
+ integrity: sha512-aAe3OhkS6qJXBbqzvZth2Au4V3KieR5sRQ4ptb2b2O8wgvB3SJBsdG+jsn2BZbbwekDG8nTfcCNKcSfe/lEy8g==
+ /postcss-custom-media/7.0.8:
+ dependencies:
+ postcss: 7.0.26
+ dev: false
+ engines:
+ node: '>=6.0.0'
+ resolution:
+ integrity: sha512-c9s5iX0Ge15o00HKbuRuTqNndsJUbaXdiNsksnVH8H4gdc+zbLzr/UasOwNG6CTDpLFekVY4672eWdiiWu2GUg==
+ /postcss-custom-properties/8.0.11:
+ dependencies:
+ postcss: 7.0.26
+ postcss-values-parser: 2.0.1
+ dev: false
+ engines:
+ node: '>=6.0.0'
+ resolution:
+ integrity: sha512-nm+o0eLdYqdnJ5abAJeXp4CEU1c1k+eB2yMCvhgzsds/e0umabFrN6HoTy/8Q4K5ilxERdl/JD1LO5ANoYBeMA==
+ /postcss-custom-selectors/5.1.2:
+ dependencies:
+ postcss: 7.0.26
+ postcss-selector-parser: 5.0.0
+ dev: false
+ engines:
+ node: '>=6.0.0'
+ resolution:
+ integrity: sha512-DSGDhqinCqXqlS4R7KGxL1OSycd1lydugJ1ky4iRXPHdBRiozyMHrdu0H3o7qNOCiZwySZTUI5MV0T8QhCLu+w==
+ /postcss-dir-pseudo-class/5.0.0:
+ dependencies:
+ postcss: 7.0.26
+ postcss-selector-parser: 5.0.0
+ dev: false
+ engines:
+ node: '>=4.0.0'
+ resolution:
+ integrity: sha512-3pm4oq8HYWMZePJY+5ANriPs3P07q+LW6FAdTlkFH2XqDdP4HeeJYMOzn0HYLhRSjBO3fhiqSwwU9xEULSrPgw==
+ /postcss-double-position-gradients/1.0.0:
+ dependencies:
+ postcss: 7.0.26
+ postcss-values-parser: 2.0.1
+ dev: false
+ engines:
+ node: '>=6.0.0'
+ resolution:
+ integrity: sha512-G+nV8EnQq25fOI8CH/B6krEohGWnF5+3A6H/+JEpOncu5dCnkS1QQ6+ct3Jkaepw1NGVqqOZH6lqrm244mCftA==
+ /postcss-env-function/2.0.2:
+ dependencies:
+ postcss: 7.0.26
+ postcss-values-parser: 2.0.1
+ dev: false
+ engines:
+ node: '>=6.0.0'
+ resolution:
+ integrity: sha512-rwac4BuZlITeUbiBq60h/xbLzXY43qOsIErngWa4l7Mt+RaSkT7QBjXVGTcBHupykkblHMDrBFh30zchYPaOUw==
+ /postcss-flexbugs-fixes/4.1.0:
+ dependencies:
+ postcss: 7.0.26
+ dev: false
+ resolution:
+ integrity: sha512-jr1LHxQvStNNAHlgco6PzY308zvLklh7SJVYuWUwyUQncofaAlD2l+P/gxKHOdqWKe7xJSkVLFF/2Tp+JqMSZA==
+ /postcss-focus-visible/4.0.0:
+ dependencies:
+ postcss: 7.0.26
+ dev: false
+ engines:
+ node: '>=6.0.0'
+ resolution:
+ integrity: sha512-Z5CkWBw0+idJHSV6+Bgf2peDOFf/x4o+vX/pwcNYrWpXFrSfTkQ3JQ1ojrq9yS+upnAlNRHeg8uEwFTgorjI8g==
+ /postcss-focus-within/3.0.0:
+ dependencies:
+ postcss: 7.0.26
+ dev: false
+ engines:
+ node: '>=6.0.0'
+ resolution:
+ integrity: sha512-W0APui8jQeBKbCGZudW37EeMCjDeVxKgiYfIIEo8Bdh5SpB9sxds/Iq8SEuzS0Q4YFOlG7EPFulbbxujpkrV2w==
+ /postcss-font-variant/4.0.0:
+ dependencies:
+ postcss: 7.0.26
+ dev: false
+ resolution:
+ integrity: sha512-M8BFYKOvCrI2aITzDad7kWuXXTm0YhGdP9Q8HanmN4EF1Hmcgs1KK5rSHylt/lUJe8yLxiSwWAHdScoEiIxztg==
+ /postcss-gap-properties/2.0.0:
+ dependencies:
+ postcss: 7.0.26
+ dev: false
+ engines:
+ node: '>=6.0.0'
+ resolution:
+ integrity: sha512-QZSqDaMgXCHuHTEzMsS2KfVDOq7ZFiknSpkrPJY6jmxbugUPTuSzs/vuE5I3zv0WAS+3vhrlqhijiprnuQfzmg==
+ /postcss-image-set-function/3.0.1:
+ dependencies:
+ postcss: 7.0.26
+ postcss-values-parser: 2.0.1
+ dev: false
+ engines:
+ node: '>=6.0.0'
+ resolution:
+ integrity: sha512-oPTcFFip5LZy8Y/whto91L9xdRHCWEMs3e1MdJxhgt4jy2WYXfhkng59fH5qLXSCPN8k4n94p1Czrfe5IOkKUw==
+ /postcss-initial/3.0.2:
+ dependencies:
+ lodash.template: 4.5.0
+ postcss: 7.0.26
+ dev: false
+ resolution:
+ integrity: sha512-ugA2wKonC0xeNHgirR4D3VWHs2JcU08WAi1KFLVcnb7IN89phID6Qtg2RIctWbnvp1TM2BOmDtX8GGLCKdR8YA==
+ /postcss-lab-function/2.0.1:
+ dependencies:
+ '@csstools/convert-colors': 1.4.0
+ postcss: 7.0.26
+ postcss-values-parser: 2.0.1
+ dev: false
+ engines:
+ node: '>=6.0.0'
+ resolution:
+ integrity: sha512-whLy1IeZKY+3fYdqQFuDBf8Auw+qFuVnChWjmxm/UhHWqNHZx+B99EwxTvGYmUBqe3Fjxs4L1BoZTJmPu6usVg==
+ /postcss-load-config/2.1.0:
+ dependencies:
+ cosmiconfig: 5.2.1
+ import-cwd: 2.1.0
+ dev: false
+ engines:
+ node: '>= 4'
+ resolution:
+ integrity: sha512-4pV3JJVPLd5+RueiVVB+gFOAa7GWc25XQcMp86Zexzke69mKf6Nx9LRcQywdz7yZI9n1udOxmLuAwTBypypF8Q==
+ /postcss-loader/3.0.0:
+ dependencies:
+ loader-utils: 1.2.3
+ postcss: 7.0.26
+ postcss-load-config: 2.1.0
+ schema-utils: 1.0.0
+ dev: false
+ engines:
+ node: '>= 6'
+ resolution:
+ integrity: sha512-cLWoDEY5OwHcAjDnkyRQzAXfs2jrKjXpO/HQFcc5b5u/r7aa471wdmChmwfnv7x2u840iat/wi0lQ5nbRgSkUA==
+ /postcss-logical/3.0.0:
+ dependencies:
+ postcss: 7.0.26
+ dev: false
+ engines:
+ node: '>=6.0.0'
+ resolution:
+ integrity: sha512-1SUKdJc2vuMOmeItqGuNaC+N8MzBWFWEkAnRnLpFYj1tGGa7NqyVBujfRtgNa2gXR+6RkGUiB2O5Vmh7E2RmiA==
+ /postcss-media-minmax/4.0.0:
+ dependencies:
+ postcss: 7.0.26
+ dev: false
+ engines:
+ node: '>=6.0.0'
+ resolution:
+ integrity: sha512-fo9moya6qyxsjbFAYl97qKO9gyre3qvbMnkOZeZwlsW6XYFsvs2DMGDlchVLfAd8LHPZDxivu/+qW2SMQeTHBw==
+ /postcss-modules-extract-imports/2.0.0:
+ dependencies:
+ postcss: 7.0.26
+ dev: false
+ engines:
+ node: '>= 6'
+ resolution:
+ integrity: sha512-LaYLDNS4SG8Q5WAWqIJgdHPJrDDr/Lv775rMBFUbgjTz6j34lUznACHcdRWroPvXANP2Vj7yNK57vp9eFqzLWQ==
+ /postcss-modules-local-by-default/3.0.2:
+ dependencies:
+ icss-utils: 4.1.1
+ postcss: 7.0.26
+ postcss-selector-parser: 6.0.2
+ postcss-value-parser: 4.0.2
+ dev: false
+ engines:
+ node: '>= 6'
+ resolution:
+ integrity: sha512-jM/V8eqM4oJ/22j0gx4jrp63GSvDH6v86OqyTHHUvk4/k1vceipZsaymiZ5PvocqZOl5SFHiFJqjs3la0wnfIQ==
+ /postcss-modules-scope/2.1.1:
+ dependencies:
+ postcss: 7.0.26
+ postcss-selector-parser: 6.0.2
+ dev: false
+ engines:
+ node: '>= 6'
+ resolution:
+ integrity: sha512-OXRUPecnHCg8b9xWvldG/jUpRIGPNRka0r4D4j0ESUU2/5IOnpsjfPPmDprM3Ih8CgZ8FXjWqaniK5v4rWt3oQ==
+ /postcss-modules-values/3.0.0:
+ dependencies:
+ icss-utils: 4.1.1
+ postcss: 7.0.26
+ dev: false
+ resolution:
+ integrity: sha512-1//E5jCBrZ9DmRX+zCtmQtRSV6PV42Ix7Bzj9GbwJceduuf7IqP8MgeTXuRDHOWj2m0VzZD5+roFWDuU8RQjcg==
+ /postcss-nesting/7.0.1:
+ dependencies:
+ postcss: 7.0.26
+ dev: false
+ engines:
+ node: '>=6.0.0'
+ resolution:
+ integrity: sha512-FrorPb0H3nuVq0Sff7W2rnc3SmIcruVC6YwpcS+k687VxyxO33iE1amna7wHuRVzM8vfiYofXSBHNAZ3QhLvYg==
+ /postcss-overflow-shorthand/2.0.0:
+ dependencies:
+ postcss: 7.0.26
+ dev: false
+ engines:
+ node: '>=6.0.0'
+ resolution:
+ integrity: sha512-aK0fHc9CBNx8jbzMYhshZcEv8LtYnBIRYQD5i7w/K/wS9c2+0NSR6B3OVMu5y0hBHYLcMGjfU+dmWYNKH0I85g==
+ /postcss-page-break/2.0.0:
+ dependencies:
+ postcss: 7.0.26
+ dev: false
+ resolution:
+ integrity: sha512-tkpTSrLpfLfD9HvgOlJuigLuk39wVTbbd8RKcy8/ugV2bNBUW3xU+AIqyxhDrQr1VUj1RmyJrBn1YWrqUm9zAQ==
+ /postcss-place/4.0.1:
+ dependencies:
+ postcss: 7.0.26
+ postcss-values-parser: 2.0.1
+ dev: false
+ engines:
+ node: '>=6.0.0'
+ resolution:
+ integrity: sha512-Zb6byCSLkgRKLODj/5mQugyuj9bvAAw9LqJJjgwz5cYryGeXfFZfSXoP1UfveccFmeq0b/2xxwcTEVScnqGxBg==
+ /postcss-preset-env/6.7.0:
+ dependencies:
+ autoprefixer: 9.7.3
+ browserslist: 4.8.3
+ caniuse-lite: 1.0.30001019
+ css-blank-pseudo: 0.1.4
+ css-has-pseudo: 0.10.0
+ css-prefers-color-scheme: 3.1.1
+ cssdb: 4.4.0
+ postcss: 7.0.26
+ postcss-attribute-case-insensitive: 4.0.1
+ postcss-color-functional-notation: 2.0.1
+ postcss-color-gray: 5.0.0
+ postcss-color-hex-alpha: 5.0.3
+ postcss-color-mod-function: 3.0.3
+ postcss-color-rebeccapurple: 4.0.1
+ postcss-custom-media: 7.0.8
+ postcss-custom-properties: 8.0.11
+ postcss-custom-selectors: 5.1.2
+ postcss-dir-pseudo-class: 5.0.0
+ postcss-double-position-gradients: 1.0.0
+ postcss-env-function: 2.0.2
+ postcss-focus-visible: 4.0.0
+ postcss-focus-within: 3.0.0
+ postcss-font-variant: 4.0.0
+ postcss-gap-properties: 2.0.0
+ postcss-image-set-function: 3.0.1
+ postcss-initial: 3.0.2
+ postcss-lab-function: 2.0.1
+ postcss-logical: 3.0.0
+ postcss-media-minmax: 4.0.0
+ postcss-nesting: 7.0.1
+ postcss-overflow-shorthand: 2.0.0
+ postcss-page-break: 2.0.0
+ postcss-place: 4.0.1
+ postcss-pseudo-class-any-link: 6.0.0
+ postcss-replace-overflow-wrap: 3.0.0
+ postcss-selector-matches: 4.0.0
+ postcss-selector-not: 4.0.0
+ dev: false
+ engines:
+ node: '>=6.0.0'
+ resolution:
+ integrity: sha512-eU4/K5xzSFwUFJ8hTdTQzo2RBLbDVt83QZrAvI07TULOkmyQlnYlpwep+2yIK+K+0KlZO4BvFcleOCCcUtwchg==
+ /postcss-pseudo-class-any-link/6.0.0:
+ dependencies:
+ postcss: 7.0.26
+ postcss-selector-parser: 5.0.0
+ dev: false
+ engines:
+ node: '>=6.0.0'
+ resolution:
+ integrity: sha512-lgXW9sYJdLqtmw23otOzrtbDXofUdfYzNm4PIpNE322/swES3VU9XlXHeJS46zT2onFO7V1QFdD4Q9LiZj8mew==
+ /postcss-replace-overflow-wrap/3.0.0:
+ dependencies:
+ postcss: 7.0.26
+ dev: false
+ resolution:
+ integrity: sha512-2T5hcEHArDT6X9+9dVSPQdo7QHzG4XKclFT8rU5TzJPDN7RIRTbO9c4drUISOVemLj03aezStHCR2AIcr8XLpw==
+ /postcss-selector-matches/4.0.0:
+ dependencies:
+ balanced-match: 1.0.0
+ postcss: 7.0.26
+ dev: false
+ resolution:
+ integrity: sha512-LgsHwQR/EsRYSqlwdGzeaPKVT0Ml7LAT6E75T8W8xLJY62CE4S/l03BWIt3jT8Taq22kXP08s2SfTSzaraoPww==
+ /postcss-selector-not/4.0.0:
+ dependencies:
+ balanced-match: 1.0.0
+ postcss: 7.0.26
+ dev: false
+ resolution:
+ integrity: sha512-W+bkBZRhqJaYN8XAnbbZPLWMvZD1wKTu0UxtFKdhtGjWYmxhkUneoeOhRJKdAE5V7ZTlnbHfCR+6bNwK9e1dTQ==
+ /postcss-selector-parser/5.0.0:
+ dependencies:
+ cssesc: 2.0.0
+ indexes-of: 1.0.1
+ uniq: 1.0.1
+ dev: false
+ engines:
+ node: '>=4'
+ resolution:
+ integrity: sha512-w+zLE5Jhg6Liz8+rQOWEAwtwkyqpfnmsinXjXg6cY7YIONZZtgvE0v2O0uhQBs0peNomOJwWRKt6JBfTdTd3OQ==
+ /postcss-selector-parser/6.0.2:
+ dependencies:
+ cssesc: 3.0.0
+ indexes-of: 1.0.1
+ uniq: 1.0.1
+ dev: false
+ engines:
+ node: '>=4'
+ resolution:
+ integrity: sha512-36P2QR59jDTOAiIkqEprfJDsoNrvwFei3eCqKd1Y0tUsBimsq39BLp7RD+JWny3WgB1zGhJX8XVePwm9k4wdBg==
+ /postcss-value-parser/4.0.2:
+ dev: false
+ resolution:
+ integrity: sha512-LmeoohTpp/K4UiyQCwuGWlONxXamGzCMtFxLq4W1nZVGIQLYvMCJx3yAF9qyyuFpflABI9yVdtJAqbihOsCsJQ==
+ /postcss-values-parser/2.0.1:
+ dependencies:
+ flatten: 1.0.3
+ indexes-of: 1.0.1
+ uniq: 1.0.1
+ dev: false
+ engines:
+ node: '>=6.14.4'
+ resolution:
+ integrity: sha512-2tLuBsA6P4rYTNKCXYG/71C7j1pU6pK503suYOmn4xYrQIzW+opD+7FAFNuGSdZC/3Qfy334QbeMu7MEb8gOxg==
+ /postcss/7.0.26:
+ dependencies:
+ chalk: 2.4.2
+ source-map: 0.6.1
+ supports-color: 6.1.0
+ dev: false
+ engines:
+ node: '>=6.0.0'
+ resolution:
+ integrity: sha512-IY4oRjpXWYshuTDFxMVkJDtWIk2LhsTlu8bZnbEJA4+bYT16Lvpo8Qv6EvDumhYRgzjZl489pmsY3qVgJQ08nA==
+ /prepend-http/1.0.4:
+ dev: false
+ engines:
+ node: '>=0.10.0'
+ resolution:
+ integrity: sha1-1PRWKwzjaW5BrFLQ4ALlemNdxtw=
+ /prism-react-renderer/1.0.2_react@16.12.0:
+ dependencies:
+ react: 16.12.0
+ dev: false
+ peerDependencies:
+ react: '>=0.14.9'
+ resolution:
+ integrity: sha512-0++pJyRfu4v2OxI/Us/5RLui9ESDkTiLkVCtKuPZYdpB8UQWJpnJQhPrWab053XtsKW3oM0sD69uJ6N9exm1Ag==
+ /private/0.1.8:
+ dev: false
+ engines:
+ node: '>= 0.6'
+ resolution:
+ integrity: sha512-VvivMrbvd2nKkiG38qjULzlc+4Vx4wm/whI9pQD35YrARNnhxeiRktSOhSukRLFNlzg6Br/cJPet5J/u19r/mg==
+ /process-nextick-args/2.0.1:
+ dev: false
+ resolution:
+ integrity: sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==
+ /process/0.11.10:
+ dev: false
+ engines:
+ node: '>= 0.6.0'
+ resolution:
+ integrity: sha1-czIwDoQBYb2j5podHZGn1LwW8YI=
+ /promise-inflight/1.0.1:
+ dev: false
+ resolution:
+ integrity: sha1-mEcocL8igTL8vdhoEputEsPAKeM=
+ /promise/7.1.1:
+ dependencies:
+ asap: 2.0.6
+ dev: false
+ resolution:
+ integrity: sha1-SJZUxpJha4qlWwck+oCbt9tJxb8=
+ /prop-types-exact/1.2.0:
+ dependencies:
+ has: 1.0.3
+ object.assign: 4.1.0
+ reflect.ownkeys: 0.2.0
+ dev: false
+ resolution:
+ integrity: sha512-K+Tk3Kd9V0odiXFP9fwDHUYRyvK3Nun3GVyPapSIs5OBkITAm15W0CPFD/YKTkMUAbc0b9CUwRQp2ybiBIq+eA==
+ /prop-types/15.7.2:
+ dependencies:
+ loose-envify: 1.4.0
+ object-assign: 4.1.1
+ react-is: 16.12.0
+ dev: false
+ resolution:
+ integrity: sha512-8QQikdH7//R2vurIJSutZ1smHYTcLpRWEOlHnzcWHmBYrOGUysKwSsrC89BCiFj3CbrfJ/nXFdJepOVrY1GCHQ==
+ /prr/1.0.1:
+ dev: false
+ resolution:
+ integrity: sha1-0/wRS6BplaRexok/SEzrHXj19HY=
+ /pseudomap/1.0.2:
+ dev: true
+ resolution:
+ integrity: sha1-8FKijacOYYkX7wqKw0wa5aaChrM=
+ /public-encrypt/4.0.3:
+ dependencies:
+ bn.js: 4.11.8
+ browserify-rsa: 4.0.1
+ create-hash: 1.2.0
+ parse-asn1: 5.1.5
+ randombytes: 2.1.0
+ safe-buffer: 5.2.0
+ dev: false
+ resolution:
+ integrity: sha512-zVpa8oKZSz5bTMTFClc1fQOnyyEzpl5ozpi1B5YcvBrdohMjH2rfsBtyXcuNuwjsDIXmBYlF2N5FlJYhR29t8Q==
+ /pump/2.0.1:
+ dependencies:
+ end-of-stream: 1.4.4
+ once: 1.4.0
+ dev: false
+ resolution:
+ integrity: sha512-ruPMNRkN3MHP1cWJc9OWr+T/xDP0jhXYCLfJcBuX54hhfIBnaQmAUMfDcG4DM5UMWByBbJY69QSphm3jtDKIkA==
+ /pump/3.0.0:
+ dependencies:
+ end-of-stream: 1.4.4
+ once: 1.4.0
+ dev: false
+ resolution:
+ integrity: sha512-LwZy+p3SFs1Pytd/jYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww==
+ /pumpify/1.5.1:
+ dependencies:
+ duplexify: 3.7.1
+ inherits: 2.0.4
+ pump: 2.0.1
+ dev: false
+ resolution:
+ integrity: sha512-oClZI37HvuUJJxSKKrC17bZ9Cu0ZYhEAGPsPUy9KlMUmv9dKX2o77RUmq7f3XjIxbwyGwYzbzQ1L2Ks8sIradQ==
+ /punycode/1.3.2:
+ dev: false
+ resolution:
+ integrity: sha1-llOgNvt8HuQjQvIyXM7v6jkmxI0=
+ /punycode/1.4.1:
+ resolution:
+ integrity: sha1-wNWmOycYgArY4esPpSachN1BhF4=
+ /punycode/2.1.1:
+ engines:
+ node: '>=6'
+ resolution:
+ integrity: sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A==
+ /query-string/4.3.4:
+ dependencies:
+ object-assign: 4.1.1
+ strict-uri-encode: 1.1.0
+ dev: false
+ engines:
+ node: '>=0.10.0'
+ resolution:
+ integrity: sha1-u7aTucqRXCMlFbIosaArYJBD2+s=
+ /querystring-es3/0.2.1:
+ dev: false
+ engines:
+ node: '>=0.4.x'
+ resolution:
+ integrity: sha1-nsYfeQSYdXB9aUFFlv2Qek1xHnM=
+ /querystring/0.2.0:
+ dev: false
+ engines:
+ node: '>=0.4.x'
+ resolution:
+ integrity: sha1-sgmEkgO7Jd+CDadW50cAWHhSFiA=
+ /randombytes/2.1.0:
+ dependencies:
+ safe-buffer: 5.2.0
+ dev: false
+ resolution:
+ integrity: sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ==
+ /randomfill/1.0.4:
+ dependencies:
+ randombytes: 2.1.0
+ safe-buffer: 5.2.0
+ dev: false
+ resolution:
+ integrity: sha512-87lcbR8+MhcWcUiQ+9e+Rwx8MyR2P7qnt15ynUlbm3TU/fjbgz4GsvfSUDTemtCCtVCqb4ZcEFlyPNTh9bBTLw==
+ /range-parser/1.2.0:
+ dev: true
+ engines:
+ node: '>= 0.6'
+ resolution:
+ integrity: sha1-9JvmtIeJTdxA3MlKMi9hEJLgDV4=
+ /range-parser/1.2.1:
+ dev: false
+ engines:
+ node: '>= 0.6'
+ resolution:
+ integrity: sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg==
+ /raw-body/2.4.0:
+ dependencies:
+ bytes: 3.1.0
+ http-errors: 1.7.2
+ iconv-lite: 0.4.24
+ unpipe: 1.0.0
+ dev: false
+ engines:
+ node: '>= 0.8'
+ resolution:
+ integrity: sha512-4Oz8DUIwdvoa5qMJelxipzi/iJIi40O5cGV1wNYp5hvZP8ZN0T+jiNkL0QepXs+EsQ9XJ8ipEDoiH70ySUJP3Q==
+ /rc/1.2.8:
+ dependencies:
+ deep-extend: 0.6.0
+ ini: 1.3.5
+ minimist: 1.2.0
+ strip-json-comments: 2.0.1
+ dev: true
+ hasBin: true
+ resolution:
+ integrity: sha512-y3bGgqKj3QBdxLbLkomlohkvsA8gdAiUQlSBJnBhfn+BPxg4bc62d8TcBW15wavDfgexCgccckhcZvywyQYPOw==
+ /react-dom/16.12.0_react@16.12.0:
+ dependencies:
+ loose-envify: 1.4.0
+ object-assign: 4.1.1
+ prop-types: 15.7.2
+ react: 16.12.0
+ scheduler: 0.18.0
+ dev: false
+ peerDependencies:
+ react: ^16.0.0
+ resolution:
+ integrity: sha512-LMxFfAGrcS3kETtQaCkTKjMiifahaMySFDn71fZUNpPHZQEzmk/GiAeIT8JSOrHB23fnuCOMruL2a8NYlw+8Gw==
+ /react-error-overlay/5.1.6:
+ dev: false
+ resolution:
+ integrity: sha512-X1Y+0jR47ImDVr54Ab6V9eGk0Hnu7fVWGeHQSOXHf/C2pF9c6uy3gef8QUeuUiWlNb0i08InPSE5a/KJzNzw1Q==
+ /react-is/16.12.0:
+ dev: false
+ resolution:
+ integrity: sha512-rPCkf/mWBtKc97aLL9/txD8DZdemK0vkA3JMLShjlJB3Pj3s+lpf1KaBzMfQrAmhMQB0n1cU/SUGgKKBCe837Q==
+ /react-is/16.8.6:
+ dev: false
+ resolution:
+ integrity: sha512-aUk3bHfZ2bRSVFFbbeVS4i+lNPZr3/WM5jT2J5omUVV1zzcs1nAaf3l51ctA5FFvCRbhrH0bdAsRRQddFJZPtA==
+ /react/16.12.0:
+ dependencies:
+ loose-envify: 1.4.0
+ object-assign: 4.1.1
+ prop-types: 15.7.2
+ dev: false
+ engines:
+ node: '>=0.10.0'
+ resolution:
+ integrity: sha512-fglqy3k5E+81pA8s+7K0/T3DBCF0ZDOher1elBFzF7O6arXJgzyu/FW+COxFvAWXJoJN9KIZbT2LXlukwphYTA==
+ /read-pkg/2.0.0:
+ dependencies:
+ load-json-file: 2.0.0
+ normalize-package-data: 2.5.0
+ path-type: 2.0.0
+ dev: false
+ engines:
+ node: '>=4'
+ resolution:
+ integrity: sha1-jvHAYjxqbbDcZxPEv6xGMysjaPg=
+ /readable-stream/2.3.7:
+ dependencies:
+ core-util-is: 1.0.2
+ inherits: 2.0.4
+ isarray: 1.0.0
+ process-nextick-args: 2.0.1
+ safe-buffer: 5.1.2
+ string_decoder: 1.1.1
+ util-deprecate: 1.0.2
+ dev: false
+ resolution:
+ integrity: sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==
+ /readdirp/2.2.1:
+ dependencies:
+ graceful-fs: 4.2.3
+ micromatch: 3.1.10
+ readable-stream: 2.3.7
+ dev: false
+ engines:
+ node: '>=0.10'
+ resolution:
+ integrity: sha512-1JU/8q+VgFZyxwrJ+SVIOsh+KywWGpds3NTqikiKpDMZWScmAYyKIgqkO+ARvNWJfXeXR1zxz7aHF4u4CyH6vQ==
+ /readdirp/3.3.0:
+ dependencies:
+ picomatch: 2.2.1
+ dev: false
+ engines:
+ node: '>=8.10.0'
+ resolution:
+ integrity: sha512-zz0pAkSPOXXm1viEwygWIPSPkcBYjW1xU5j/JBh5t9bGCJwa6f9+BJa6VaB2g+b55yVrmXzqkyLf4xaWYM0IkQ==
+ /reflect.ownkeys/0.2.0:
+ dev: false
+ resolution:
+ integrity: sha1-dJrO7H8/34tj+SegSAnpDFwLNGA=
+ /regenerate-unicode-properties/8.1.0:
+ dependencies:
+ regenerate: 1.4.0
+ dev: false
+ engines:
+ node: '>=4'
+ resolution:
+ integrity: sha512-LGZzkgtLY79GeXLm8Dp0BVLdQlWICzBnJz/ipWUgo59qBaZ+BHtq51P2q1uVZlppMuUAT37SDk39qUbjTWB7bA==
+ /regenerate/1.4.0:
+ dev: false
+ resolution:
+ integrity: sha512-1G6jJVDWrt0rK99kBjvEtziZNCICAuvIPkSiUFIQxVP06RCVpq3dmDo2oi6ABpYaDYaTRr67BEhL8r1wgEZZKg==
+ /regenerator-runtime/0.11.1:
+ dev: false
+ resolution:
+ integrity: sha512-MguG95oij0fC3QV3URf4V2SDYGJhJnJGqvIIgdECeODCT98wSWDAJ94SSuVpYQUoTcGUIL6L4yNB7j1DFFHSBg==
+ /regenerator-runtime/0.13.3:
+ dev: false
+ resolution:
+ integrity: sha512-naKIZz2GQ8JWh///G7L3X6LaQUAMp2lvb1rvwwsURe/VXwD6VMfr+/1NuNw3ag8v2kY1aQ/go5SNn79O9JU7yw==
+ /regenerator-transform/0.14.1:
+ dependencies:
+ private: 0.1.8
+ dev: false
+ resolution:
+ integrity: sha512-flVuee02C3FKRISbxhXl9mGzdbWUVHubl1SMaknjxkFB1/iqpJhArQUvRxOOPEc/9tAiX0BaQ28FJH10E4isSQ==
+ /regex-not/1.0.2:
+ dependencies:
+ extend-shallow: 3.0.2
+ safe-regex: 1.1.0
+ dev: false
+ engines:
+ node: '>=0.10.0'
+ resolution:
+ integrity: sha512-J6SDjUgDxQj5NusnOtdFxDwN/+HWykR8GELwctJ7mdqhcyy1xEc4SRFHUXvxTp661YaVKAjfRLZ9cCqS6tn32A==
+ /regexpu-core/4.6.0:
+ dependencies:
+ regenerate: 1.4.0
+ regenerate-unicode-properties: 8.1.0
+ regjsgen: 0.5.1
+ regjsparser: 0.6.2
+ unicode-match-property-ecmascript: 1.0.4
+ unicode-match-property-value-ecmascript: 1.1.0
+ dev: false
+ engines:
+ node: '>=4'
+ resolution:
+ integrity: sha512-YlVaefl8P5BnFYOITTNzDvan1ulLOiXJzCNZxduTIosN17b87h3bvG9yHMoHaRuo88H4mQ06Aodj5VtYGGGiTg==
+ /registry-auth-token/3.3.2:
+ dependencies:
+ rc: 1.2.8
+ safe-buffer: 5.2.0
+ dev: true
+ resolution:
+ integrity: sha512-JL39c60XlzCVgNrO+qq68FoNb56w/m7JYvGR2jT5iR1xBrUA3Mfx5Twk5rqTThPmQKMWydGmq8oFtDlxfrmxnQ==
+ /registry-url/3.1.0:
+ dependencies:
+ rc: 1.2.8
+ dev: true
+ engines:
+ node: '>=0.10.0'
+ resolution:
+ integrity: sha1-PU74cPc93h138M+aOBQyRE4XSUI=
+ /regjsgen/0.5.1:
+ dev: false
+ resolution:
+ integrity: sha512-5qxzGZjDs9w4tzT3TPhCJqWdCc3RLYwy9J2NB0nm5Lz+S273lvWcpjaTGHsT1dc6Hhfq41uSEOw8wBmxrKOuyg==
+ /regjsparser/0.6.2:
+ dependencies:
+ jsesc: 0.5.0
+ dev: false
+ hasBin: true
+ resolution:
+ integrity: sha512-E9ghzUtoLwDekPT0DYCp+c4h+bvuUpe6rRHCTYn6eGoqj1LgKXxT6I0Il4WbjhQkOghzi/V+y03bPKvbllL93Q==
+ /remove-trailing-separator/1.1.0:
+ dev: false
+ resolution:
+ integrity: sha1-wkvOKig62tW8P1jg1IJJuSN52O8=
+ /repeat-element/1.1.3:
+ dev: false
+ engines:
+ node: '>=0.10.0'
+ resolution:
+ integrity: sha512-ahGq0ZnV5m5XtZLMb+vP76kcAM5nkLqk0lpqAuojSKGgQtn4eRi4ZZGm2olo2zKFH+sMsWaqOCW1dqAnOru72g==
+ /repeat-string/1.6.1:
+ dev: false
+ engines:
+ node: '>=0.10'
+ resolution:
+ integrity: sha1-jcrkcOHIirwtYA//Sndihtp15jc=
+ /resolve-from/3.0.0:
+ dev: false
+ engines:
+ node: '>=4'
+ resolution:
+ integrity: sha1-six699nWiBvItuZTM17rywoYh0g=
+ /resolve-from/4.0.0:
+ dev: false
+ engines:
+ node: '>=4'
+ resolution:
+ integrity: sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==
+ /resolve-url/0.2.1:
+ dev: false
+ resolution:
+ integrity: sha1-LGN/53yJOv0qZj/iGqkIAGjiBSo=
+ /resolve/1.14.2:
+ dependencies:
+ path-parse: 1.0.6
+ dev: false
+ resolution:
+ integrity: sha512-EjlOBLBO1kxsUxsKjLt7TAECyKW6fOh1VRkykQkKGzcBbjjPIxBqGh0jf7GJ3k/f5mxMqW3htMD3WdTUVtW8HQ==
+ /restore-cursor/2.0.0:
+ dependencies:
+ onetime: 2.0.1
+ signal-exit: 3.0.2
+ dev: false
+ engines:
+ node: '>=4'
+ resolution:
+ integrity: sha1-n37ih/gv0ybU/RYpI9YhKe7g368=
+ /ret/0.1.15:
+ dev: false
+ engines:
+ node: '>=0.12'
+ resolution:
+ integrity: sha512-TTlYpa+OL+vMMNG24xSlQGEJ3B/RzEfUlLct7b5G/ytav+wPrplCpVMFuwzXbkecJrb6IYo1iFb0S9v37754mg==
+ /retry/0.12.0:
+ dev: false
+ engines:
+ node: '>= 4'
+ resolution:
+ integrity: sha1-G0KmJmoh8HQh0bC1S33BZ7AcATs=
+ /rimraf/2.7.1:
+ dependencies:
+ glob: 7.1.6
+ dev: false
+ hasBin: true
+ resolution:
+ integrity: sha512-uWjbaKIK3T1OSVptzX7Nl6PvQ3qAGtKEtVRjRuazjfL3Bx5eI409VZSqgND+4UNnmzLVdPj9FqFJNPqBZFve4w==
+ /ripemd160/2.0.2:
+ dependencies:
+ hash-base: 3.0.4
+ inherits: 2.0.4
+ dev: false
+ resolution:
+ integrity: sha512-ii4iagi25WusVoiC4B4lq7pbXfAp3D9v5CwfkY33vffw2+pkDjY1D8GaN7spsxvCSx8dkPqOZCEZyfxcmJG2IA==
+ /run-queue/1.0.3:
+ dependencies:
+ aproba: 1.2.0
+ dev: false
+ resolution:
+ integrity: sha1-6Eg5bwV9Ij8kOGkkYY4laUFh7Ec=
+ /safe-buffer/5.1.2:
+ resolution:
+ integrity: sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==
+ /safe-buffer/5.2.0:
+ resolution:
+ integrity: sha512-fZEwUGbVl7kouZs1jCdMLdt95hdIv0ZeHg6L7qPeciMZhZ+/gdesW4wgTARkrFWEpspjEATAzUGPG8N2jJiwbg==
+ /safe-regex/1.1.0:
+ dependencies:
+ ret: 0.1.15
+ dev: false
+ resolution:
+ integrity: sha1-QKNmnzsHfR6UPURinhV91IAjvy4=
+ /safer-buffer/2.1.2:
+ dev: false
+ resolution:
+ integrity: sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==
+ /scheduler/0.18.0:
+ dependencies:
+ loose-envify: 1.4.0
+ object-assign: 4.1.1
+ dev: false
+ resolution:
+ integrity: sha512-agTSHR1Nbfi6ulI0kYNK0203joW2Y5W4po4l+v03tOoiJKpTBbxpNhWDvqc/4IcOw+KLmSiQLTasZ4cab2/UWQ==
+ /schema-utils/1.0.0:
+ dependencies:
+ ajv: 6.10.2
+ ajv-errors: 1.0.1_ajv@6.10.2
+ ajv-keywords: 3.4.1_ajv@6.10.2
+ dev: false
+ engines:
+ node: '>= 4'
+ resolution:
+ integrity: sha512-i27Mic4KovM/lnGsy8whRCHhc7VicJajAjTrYg11K9zfZXnYIt4k5F+kZkwjnrhKzLic/HLU4j11mjsz2G/75g==
+ /schema-utils/2.6.1:
+ dependencies:
+ ajv: 6.10.2
+ ajv-keywords: 3.4.1_ajv@6.10.2
+ dev: false
+ engines:
+ node: '>= 8.9.0'
+ resolution:
+ integrity: sha512-0WXHDs1VDJyo+Zqs9TKLKyD/h7yDpHUhEFsM2CzkICFdoX1av+GBq/J2xRTFfsQO5kBfhZzANf2VcIm84jqDbg==
+ /semver/5.7.1:
+ dev: false
+ hasBin: true
+ resolution:
+ integrity: sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==
+ /semver/6.3.0:
+ dev: false
+ hasBin: true
+ resolution:
+ integrity: sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==
+ /semver/7.0.0:
+ dev: false
+ hasBin: true
+ resolution:
+ integrity: sha512-+GB6zVA9LWh6zovYQLALHwv5rb2PHGlJi3lfiqIHxR0uuwCgefcOJc59v9fv1w8GbStwxuuqqAjI9NMAOOgq1A==
+ /send/0.17.1:
+ dependencies:
+ debug: 2.6.9
+ depd: 1.1.2
+ destroy: 1.0.4
+ encodeurl: 1.0.2
+ escape-html: 1.0.3
+ etag: 1.8.1
+ fresh: 0.5.2
+ http-errors: 1.7.3
+ mime: 1.6.0
+ ms: 2.1.1
+ on-finished: 2.3.0
+ range-parser: 1.2.1
+ statuses: 1.5.0
+ dev: false
+ engines:
+ node: '>= 0.8.0'
+ resolution:
+ integrity: sha512-BsVKsiGcQMFwT8UxypobUKyv7irCNRHk1T0G680vk88yf6LBByGcZJOTJCrTP2xVN6yI+XjPJcNuE3V4fT9sAg==
+ /serialize-javascript/2.1.2:
+ dev: false
+ resolution:
+ integrity: sha512-rs9OggEUF0V4jUSecXazOYsLfu7OGK2qIn3c7IPBiffz32XniEp/TX9Xmc9LQfK2nQ2QKHvZ2oygKUGU0lG4jQ==
+ /serve-handler/6.1.2:
+ dependencies:
+ bytes: 3.0.0
+ content-disposition: 0.5.2
+ fast-url-parser: 1.1.3
+ mime-types: 2.1.18
+ minimatch: 3.0.4
+ path-is-inside: 1.0.2
+ path-to-regexp: 2.2.1
+ range-parser: 1.2.0
+ dev: true
+ resolution:
+ integrity: sha512-RFh49wX7zJmmOVDcIjiDSJnMH+ItQEvyuYLYuDBVoA/xmQSCuj+uRmk1cmBB5QQlI3qOiWKp6p4DUGY+Z5AB2A==
+ /serve/11.3.0:
+ dependencies:
+ '@zeit/schemas': 2.6.0
+ ajv: 6.5.3
+ arg: 2.0.0
+ boxen: 1.3.0
+ chalk: 2.4.1
+ clipboardy: 1.2.3
+ compression: 1.7.3
+ serve-handler: 6.1.2
+ update-check: 1.5.2
+ dev: true
+ hasBin: true
+ resolution:
+ integrity: sha512-AU0g50Q1y5EVFX56bl0YX5OtVjUX1N737/Htj93dQGKuHiuLvVB45PD8Muar70W6Kpdlz8aNJfoUqTyAq9EE/A==
+ /set-value/2.0.1:
+ dependencies:
+ extend-shallow: 2.0.1
+ is-extendable: 0.1.1
+ is-plain-object: 2.0.4
+ split-string: 3.1.0
+ dev: false
+ engines:
+ node: '>=0.10.0'
+ resolution:
+ integrity: sha512-JxHc1weCN68wRY0fhCoXpyK55m/XPHafOmK4UWD7m2CI14GMcFypt4w/0+NV5f/ZMby2F6S2wwA7fgynh9gWSw==
+ /setimmediate/1.0.5:
+ dev: false
+ resolution:
+ integrity: sha1-KQy7Iy4waULX1+qbg3Mqt4VvgoU=
+ /setprototypeof/1.1.1:
+ dev: false
+ resolution:
+ integrity: sha512-JvdAWfbXeIGaZ9cILp38HntZSFSo3mWg6xGcJJsd+d4aRMOqauag1C63dJfDw7OaMYwEbHMOxEZ1lqVRYP2OAw==
+ /sha.js/2.4.11:
+ dependencies:
+ inherits: 2.0.4
+ safe-buffer: 5.2.0
+ dev: false
+ hasBin: true
+ resolution:
+ integrity: sha512-QMEp5B7cftE7APOjk5Y6xgrbWu+WkLVQwk8JNjZ8nKRciZaByEW6MubieAiToS7+dwvrjGhH8jRXz3MVd0AYqQ==
+ /shebang-command/1.2.0:
+ dependencies:
+ shebang-regex: 1.0.0
+ dev: true
+ engines:
+ node: '>=0.10.0'
+ resolution:
+ integrity: sha1-RKrGW2lbAzmJaMOfNj/uXer98eo=
+ /shebang-regex/1.0.0:
+ dev: true
+ engines:
+ node: '>=0.10.0'
+ resolution:
+ integrity: sha1-2kL0l0DAtC2yypcoVxyxkMmO/qM=
+ /shell-quote/1.7.2:
+ dev: false
+ resolution:
+ integrity: sha512-mRz/m/JVscCrkMyPqHc/bczi3OQHkLTqXHEFu0zDhK/qfv3UcOA4SVmRCLmos4bhjr9ekVQubj/R7waKapmiQg==
+ /signal-exit/3.0.2:
+ resolution:
+ integrity: sha1-tf3AjxKH6hF4Yo5BXiUTK3NkbG0=
+ /snapdragon-node/2.1.1:
+ dependencies:
+ define-property: 1.0.0
+ isobject: 3.0.1
+ snapdragon-util: 3.0.1
+ dev: false
+ engines:
+ node: '>=0.10.0'
+ resolution:
+ integrity: sha512-O27l4xaMYt/RSQ5TR3vpWCAB5Kb/czIcqUFOM/C4fYcLnbZUc1PkjTAMjof2pBWaSTwOUd6qUHcFGVGj7aIwnw==
+ /snapdragon-util/3.0.1:
+ dependencies:
+ kind-of: 3.2.2
+ dev: false
+ engines:
+ node: '>=0.10.0'
+ resolution:
+ integrity: sha512-mbKkMdQKsjX4BAL4bRYTj21edOf8cN7XHdYUJEe+Zn99hVEYcMvKPct1IqNe7+AZPirn8BCDOQBHQZknqmKlZQ==
+ /snapdragon/0.8.2:
+ dependencies:
+ base: 0.11.2
+ debug: 2.6.9
+ define-property: 0.2.5
+ extend-shallow: 2.0.1
+ map-cache: 0.2.2
+ source-map: 0.5.7
+ source-map-resolve: 0.5.3
+ use: 3.1.1
+ dev: false
+ engines:
+ node: '>=0.10.0'
+ resolution:
+ integrity: sha512-FtyOnWN/wCHTVXOMwvSv26d+ko5vWlIDD6zoUJ7LW8vh+ZBC8QdljveRP+crNrtBwioEUWy/4dMtbBjA4ioNlg==
+ /sort-keys/1.1.2:
+ dependencies:
+ is-plain-obj: 1.1.0
+ dev: false
+ engines:
+ node: '>=0.10.0'
+ resolution:
+ integrity: sha1-RBttTTRnmPG05J6JIK37oOVD+a0=
+ /source-list-map/2.0.1:
+ dev: false
+ resolution:
+ integrity: sha512-qnQ7gVMxGNxsiL4lEuJwe/To8UnK7fAnmbGEEH8RpLouuKbeEm0lhbQVFIrNSuB+G7tVrAlVsZgETT5nljf+Iw==
+ /source-map-resolve/0.5.3:
+ dependencies:
+ atob: 2.1.2
+ decode-uri-component: 0.2.0
+ resolve-url: 0.2.1
+ source-map-url: 0.4.0
+ urix: 0.1.0
+ dev: false
+ resolution:
+ integrity: sha512-Htz+RnsXWk5+P2slx5Jh3Q66vhQj1Cllm0zvnaY98+NFx+Dv2CF/f5O/t8x+KaNdrdIAsruNzoh/KpialbqAnw==
+ /source-map-support/0.5.16:
+ dependencies:
+ buffer-from: 1.1.1
+ source-map: 0.6.1
+ dev: false
+ resolution:
+ integrity: sha512-efyLRJDr68D9hBBNIPWFjhpFzURh+KJykQwvMyW5UiZzYwoF6l4YMMDIJJEyFWxWCqfyxLzz6tSfUFR+kXXsVQ==
+ /source-map-url/0.4.0:
+ dev: false
+ resolution:
+ integrity: sha1-PpNdfd1zYxuXZZlW1VEo6HtQhKM=
+ /source-map/0.5.7:
+ dev: false
+ engines:
+ node: '>=0.10.0'
+ resolution:
+ integrity: sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w=
+ /source-map/0.6.1:
+ dev: false
+ engines:
+ node: '>=0.10.0'
+ resolution:
+ integrity: sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==
+ /source-map/0.7.3:
+ dev: false
+ engines:
+ node: '>= 8'
+ resolution:
+ integrity: sha512-CkCj6giN3S+n9qrYiBTX5gystlENnRW5jZeNLHpe6aue+SrHcG5VYwujhW9s4dY31mEGsxBDrHR6oI69fTXsaQ==
+ /spdx-correct/3.1.0:
+ dependencies:
+ spdx-expression-parse: 3.0.0
+ spdx-license-ids: 3.0.5
+ dev: false
+ resolution:
+ integrity: sha512-lr2EZCctC2BNR7j7WzJ2FpDznxky1sjfxvvYEyzxNyb6lZXHODmEoJeFu4JupYlkfha1KZpJyoqiJ7pgA1qq8Q==
+ /spdx-exceptions/2.2.0:
+ dev: false
+ resolution:
+ integrity: sha512-2XQACfElKi9SlVb1CYadKDXvoajPgBVPn/gOQLrTvHdElaVhr7ZEbqJaRnJLVNeaI4cMEAgVCeBMKF6MWRDCRA==
+ /spdx-expression-parse/3.0.0:
+ dependencies:
+ spdx-exceptions: 2.2.0
+ spdx-license-ids: 3.0.5
+ dev: false
+ resolution:
+ integrity: sha512-Yg6D3XpRD4kkOmTpdgbUiEJFKghJH03fiC1OPll5h/0sO6neh2jqRDVHOQ4o/LMea0tgCkbMgea5ip/e+MkWyg==
+ /spdx-license-ids/3.0.5:
+ dev: false
+ resolution:
+ integrity: sha512-J+FWzZoynJEXGphVIS+XEh3kFSjZX/1i9gFBaWQcB+/tmpe2qUsSBABpcxqxnAxFdiUFEgAX1bjYGQvIZmoz9Q==
+ /split-string/3.1.0:
+ dependencies:
+ extend-shallow: 3.0.2
+ dev: false
+ engines:
+ node: '>=0.10.0'
+ resolution:
+ integrity: sha512-NzNVhJDYpwceVVii8/Hu6DKfD2G+NrQHlS/V/qgv763EYudVwEcMQNxd2lh+0VrUByXN/oJkl5grOhYWvQUYiw==
+ /sprintf-js/1.0.3:
+ dev: false
+ resolution:
+ integrity: sha1-BOaSb2YolTVPPdAVIDYzuFcpfiw=
+ /ssri/6.0.1:
+ dependencies:
+ figgy-pudding: 3.5.1
+ dev: false
+ resolution:
+ integrity: sha512-3Wge10hNcT1Kur4PDFwEieXSCMCJs/7WvSACcrMYrNp+b8kDL1/0wJch5Ni2WrtwEa2IO8OsVfeKIciKCDx/QA==
+ /static-extend/0.1.2:
+ dependencies:
+ define-property: 0.2.5
+ object-copy: 0.1.0
+ dev: false
+ engines:
+ node: '>=0.10.0'
+ resolution:
+ integrity: sha1-YICcOcv/VTNyJv1eC1IPNB8ftcY=
+ /statuses/1.5.0:
+ dev: false
+ engines:
+ node: '>= 0.6'
+ resolution:
+ integrity: sha1-Fhx9rBd2Wf2YEfQ3cfqZOBR4Yow=
+ /stream-browserify/2.0.2:
+ dependencies:
+ inherits: 2.0.4
+ readable-stream: 2.3.7
+ dev: false
+ resolution:
+ integrity: sha512-nX6hmklHs/gr2FuxYDltq8fJA1GDlxKQCz8O/IM4atRqBH8OORmBNgfvW5gG10GT/qQ9u0CzIvr2X5Pkt6ntqg==
+ /stream-each/1.2.3:
+ dependencies:
+ end-of-stream: 1.4.4
+ stream-shift: 1.0.1
+ dev: false
+ resolution:
+ integrity: sha512-vlMC2f8I2u/bZGqkdfLQW/13Zihpej/7PmSiMQsbYddxuTsJp8vRe2x2FvVExZg7FaOds43ROAuFJwPR4MTZLw==
+ /stream-http/2.8.3:
+ dependencies:
+ builtin-status-codes: 3.0.0
+ inherits: 2.0.4
+ readable-stream: 2.3.7
+ to-arraybuffer: 1.0.1
+ xtend: 4.0.2
+ dev: false
+ resolution:
+ integrity: sha512-+TSkfINHDo4J+ZobQLWiMouQYB+UVYFttRA94FpEzzJ7ZdqcL4uUUQ7WkdkI4DSozGmgBUE/a47L+38PenXhUw==
+ /stream-shift/1.0.1:
+ dev: false
+ resolution:
+ integrity: sha512-AiisoFqQ0vbGcZgQPY1cdP2I76glaVA/RauYR4G4thNFgkTqr90yXTo4LYX60Jl+sIlPNHHdGSwo01AvbKUSVQ==
+ /strict-uri-encode/1.1.0:
+ dev: false
+ engines:
+ node: '>=0.10.0'
+ resolution:
+ integrity: sha1-J5siXfHVgrH1TmWt3UNS4Y+qBxM=
+ /string-hash/1.1.3:
+ dev: false
+ resolution:
+ integrity: sha1-6Kr8CsGFW0Zmkp7X3RJ1311sgRs=
+ /string-width/2.1.1:
+ dependencies:
+ is-fullwidth-code-point: 2.0.0
+ strip-ansi: 4.0.0
+ dev: true
+ engines:
+ node: '>=4'
+ resolution:
+ integrity: sha512-nOqH59deCq9SRHlxq1Aw85Jnt4w6KvLKqWVik6oA9ZklXLNIOlqg4F2yrT1MVaTjAqvVwdfeZ7w7aCvJD7ugkw==
+ /string_decoder/1.1.1:
+ dependencies:
+ safe-buffer: 5.1.2
+ dev: false
+ resolution:
+ integrity: sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==
+ /string_decoder/1.3.0:
+ dependencies:
+ safe-buffer: 5.2.0
+ dev: false
+ resolution:
+ integrity: sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==
+ /strip-ansi/3.0.1:
+ dependencies:
+ ansi-regex: 2.1.1
+ dev: false
+ engines:
+ node: '>=0.10.0'
+ resolution:
+ integrity: sha1-ajhfuIU9lS1f8F0Oiq+UJ43GPc8=
+ /strip-ansi/4.0.0:
+ dependencies:
+ ansi-regex: 3.0.0
+ dev: true
+ engines:
+ node: '>=4'
+ resolution:
+ integrity: sha1-qEeQIusaw2iocTibY1JixQXuNo8=
+ /strip-ansi/5.2.0:
+ dependencies:
+ ansi-regex: 4.1.0
+ dev: false
+ engines:
+ node: '>=6'
+ resolution:
+ integrity: sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA==
+ /strip-bom/3.0.0:
+ dev: false
+ engines:
+ node: '>=4'
+ resolution:
+ integrity: sha1-IzTBjpx1n3vdVv3vfprj1YjmjtM=
+ /strip-eof/1.0.0:
+ dev: true
+ engines:
+ node: '>=0.10.0'
+ resolution:
+ integrity: sha1-u0P/VZim6wXYm1n80SnJgzE2Br8=
+ /strip-json-comments/2.0.1:
+ dev: true
+ engines:
+ node: '>=0.10.0'
+ resolution:
+ integrity: sha1-PFMZQukIwml8DsNEhYwobHygpgo=
+ /style-loader/1.0.0_webpack@4.41.2:
+ dependencies:
+ loader-utils: 1.2.3
+ schema-utils: 2.6.1
+ webpack: 4.41.2_webpack@4.41.2
+ dev: false
+ engines:
+ node: '>= 8.9.0'
+ peerDependencies:
+ webpack: ^4.0.0
+ resolution:
+ integrity: sha512-B0dOCFwv7/eY31a5PCieNwMgMhVGFe9w+rh7s/Bx8kfFkrth9zfTZquoYvdw8URgiqxObQKcpW51Ugz1HjfdZw==
+ /styled-jsx/3.2.4_react@16.12.0:
+ dependencies:
+ babel-plugin-syntax-jsx: 6.18.0
+ babel-types: 6.26.0
+ convert-source-map: 1.7.0
+ loader-utils: 1.2.3
+ react: 16.12.0
+ source-map: 0.7.3
+ string-hash: 1.1.3
+ stylis: 3.5.4
+ stylis-rule-sheet: 0.0.10_stylis@3.5.4
+ dev: false
+ peerDependencies:
+ react: 15.x.x || 16.x.x
+ resolution:
+ integrity: sha512-UMclQzI1lss38RhyjTf7SmtXJEMbB6Q9slDz8adGtzHjirYb1PPgeWLSP8SlZc8c9f3LF6axmtv+6K/553ANdg==
+ /stylis-rule-sheet/0.0.10_stylis@3.5.4:
+ dependencies:
+ stylis: 3.5.4
+ dev: false
+ peerDependencies:
+ stylis: ^3.5.0
+ resolution:
+ integrity: sha512-nTbZoaqoBnmK+ptANthb10ZRZOGC+EmTLLUxeYIuHNkEKcmKgXX1XWKkUBT2Ac4es3NybooPe0SmvKdhKJZAuw==
+ /stylis/3.5.4:
+ dev: false
+ resolution:
+ integrity: sha512-8/3pSmthWM7lsPBKv7NXkzn2Uc9W7NotcwGNpJaa3k7WMM1XDCA4MgT5k/8BIexd5ydZdboXtU90XH9Ec4Bv/Q==
+ /supports-color/2.0.0:
+ dev: false
+ engines:
+ node: '>=0.8.0'
+ resolution:
+ integrity: sha1-U10EXOa2Nj+kARcIRimZXp3zJMc=
+ /supports-color/5.5.0:
+ dependencies:
+ has-flag: 3.0.0
+ engines:
+ node: '>=4'
+ resolution:
+ integrity: sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==
+ /supports-color/6.1.0:
+ dependencies:
+ has-flag: 3.0.0
+ dev: false
+ engines:
+ node: '>=6'
+ resolution:
+ integrity: sha512-qe1jfm1Mg7Nq/NSh6XE24gPXROEVsWHxC1LIx//XNlD9iw7YZQGjZNjYN7xGaEG6iKdA8EtNFW6R0gjnVXp+wQ==
+ /tapable/1.1.3:
+ dev: false
+ engines:
+ node: '>=6'
+ resolution:
+ integrity: sha512-4WK/bYZmj8xLr+HUCODHGF1ZFzsYffasLUgEiMBY4fgtltdO6B4WJtlSbPaDTLpYTcGVwM2qLnFTICEcNxs3kA==
+ /term-size/1.2.0:
+ dependencies:
+ execa: 0.7.0
+ dev: true
+ engines:
+ node: '>=4'
+ resolution:
+ integrity: sha1-RYuDiH8oj8Vtb/+/rSYuJmOO+mk=
+ /terser-webpack-plugin/1.4.3_webpack@4.41.2:
+ dependencies:
+ cacache: 12.0.3
+ find-cache-dir: 2.1.0
+ is-wsl: 1.1.0
+ schema-utils: 1.0.0
+ serialize-javascript: 2.1.2
+ source-map: 0.6.1
+ terser: 4.6.1
+ webpack: 4.41.2_webpack@4.41.2
+ webpack-sources: 1.4.3
+ worker-farm: 1.7.0
+ dev: false
+ engines:
+ node: '>= 6.9.0'
+ peerDependencies:
+ webpack: ^4.0.0
+ resolution:
+ integrity: sha512-QMxecFz/gHQwteWwSo5nTc6UaICqN1bMedC5sMtUc7y3Ha3Q8y6ZO0iCR8pq4RJC8Hjf0FEPEHZqcMB/+DFCrA==
+ /terser/4.4.2:
+ dependencies:
+ commander: 2.20.3
+ source-map: 0.6.1
+ source-map-support: 0.5.16
+ dev: false
+ engines:
+ node: '>=6.0.0'
+ hasBin: true
+ resolution:
+ integrity: sha512-Uufrsvhj9O1ikwgITGsZ5EZS6qPokUOkCegS7fYOdGTv+OA90vndUbU6PEjr5ePqHfNUbGyMO7xyIZv2MhsALQ==
+ /terser/4.6.1:
+ dependencies:
+ commander: 2.20.3
+ source-map: 0.6.1
+ source-map-support: 0.5.16
+ dev: false
+ engines:
+ node: '>=6.0.0'
+ hasBin: true
+ resolution:
+ integrity: sha512-w0f2OWFD7ka3zwetgVAhNMeyzEbj39ht2Tb0qKflw9PmW9Qbo5tjTh01QJLkhO9t9RDDQYvk+WXqpECI2C6i2A==
+ /thread-loader/2.1.3_webpack@4.41.2:
+ dependencies:
+ loader-runner: 2.4.0
+ loader-utils: 1.2.3
+ neo-async: 2.6.1
+ webpack: 4.41.2_webpack@4.41.2
+ dev: false
+ engines:
+ node: '>= 6.9.0 <7.0.0 || >= 8.9.0'
+ peerDependencies:
+ webpack: ^2.0.0 || ^3.0.0 || ^4.0.0
+ resolution:
+ integrity: sha512-wNrVKH2Lcf8ZrWxDF/khdlLlsTMczdcwPA9VEK4c2exlEPynYWxi9op3nPTo5lAnDIkE0rQEB3VBP+4Zncc9Hg==
+ /through2/2.0.5:
+ dependencies:
+ readable-stream: 2.3.7
+ xtend: 4.0.2
+ dev: false
+ resolution:
+ integrity: sha512-/mrRod8xqpA+IHSLyGCQ2s8SPHiCDEeQJSep1jqLYeEUClOFG2Qsh+4FU6G9VeqpZnGW/Su8LQGc4YKni5rYSQ==
+ /timers-browserify/2.0.11:
+ dependencies:
+ setimmediate: 1.0.5
+ dev: false
+ engines:
+ node: '>=0.6.0'
+ resolution:
+ integrity: sha512-60aV6sgJ5YEbzUdn9c8kYGIqOubPoUdqQCul3SBAsRCZ40s6Y5cMcrW4dt3/k/EsbLVJNl9n6Vz3fTc+k2GeKQ==
+ /to-arraybuffer/1.0.1:
+ dev: false
+ resolution:
+ integrity: sha1-fSKbH8xjfkZsoIEYCDanqr/4P0M=
+ /to-fast-properties/1.0.3:
+ dev: false
+ engines:
+ node: '>=0.10.0'
+ resolution:
+ integrity: sha1-uDVx+k2MJbguIxsG46MFXeTKGkc=
+ /to-fast-properties/2.0.0:
+ dev: false
+ engines:
+ node: '>=4'
+ resolution:
+ integrity: sha1-3F5pjL0HkmW8c+A3doGk5Og/YW4=
+ /to-object-path/0.3.0:
+ dependencies:
+ kind-of: 3.2.2
+ dev: false
+ engines:
+ node: '>=0.10.0'
+ resolution:
+ integrity: sha1-KXWIt7Dn4KwI4E5nL4XB9JmeF68=
+ /to-regex-range/2.1.1:
+ dependencies:
+ is-number: 3.0.0
+ repeat-string: 1.6.1
+ dev: false
+ engines:
+ node: '>=0.10.0'
+ resolution:
+ integrity: sha1-fIDBe53+vlmeJzZ+DU3VWQFB2zg=
+ /to-regex-range/5.0.1:
+ dependencies:
+ is-number: 7.0.0
+ dev: false
+ engines:
+ node: '>=8.0'
+ resolution:
+ integrity: sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==
+ /to-regex/3.0.2:
+ dependencies:
+ define-property: 2.0.2
+ extend-shallow: 3.0.2
+ regex-not: 1.0.2
+ safe-regex: 1.1.0
+ dev: false
+ engines:
+ node: '>=0.10.0'
+ resolution:
+ integrity: sha512-FWtleNAtZ/Ki2qtqej2CXTOayOH9bHDQF+Q48VpWyDXjbYxA4Yz8iDB31zXOBUlOHHKidDbqGVrTUvQMPmBGBw==
+ /toidentifier/1.0.0:
+ dev: false
+ engines:
+ node: '>=0.6'
+ resolution:
+ integrity: sha512-yaOH/Pk/VEhBWWTlhI+qXxDFXlejDGcQipMlyxda9nthulaxLZUNcUqFxokp0vcYnvteJln5FNQDRrxj3YcbVw==
+ /traverse/0.6.6:
+ dev: false
+ resolution:
+ integrity: sha1-y99WD9e5r2MlAv7UD5GMFX6pcTc=
+ /ts-pnp/1.1.5_typescript@3.7.4:
+ dependencies:
+ typescript: 3.7.4
+ dev: false
+ engines:
+ node: '>=6'
+ peerDependencies:
+ typescript: '*'
+ peerDependenciesMeta:
+ typescript:
+ optional: true
+ resolution:
+ integrity: sha512-ti7OGMOUOzo66wLF3liskw6YQIaSsBgc4GOAlWRnIEj8htCxJUxskanMUoJOD6MDCRAXo36goXJZch+nOS0VMA==
+ /tslib/1.10.0:
+ dev: false
+ resolution:
+ integrity: sha512-qOebF53frne81cf0S9B41ByenJ3/IuH8yJKngAX35CmiZySA0khhkovshKK+jGCaMnVomla7gVlIcc3EvKPbTQ==
+ /tty-browserify/0.0.0:
+ dev: false
+ resolution:
+ integrity: sha1-oVe6QC2iTpv5V/mqadUk7tQpAaY=
+ /typedarray-to-buffer/3.1.5:
+ dependencies:
+ is-typedarray: 1.0.0
+ dev: false
+ resolution:
+ integrity: sha512-zdu8XMNEDepKKR+XYOXAVPtWui0ly0NtohUscw+UmaHiAWT8hrV1rr//H6V+0DvJ3OQ19S979M0laLfX8rm82Q==
+ /typedarray/0.0.6:
+ dev: false
+ resolution:
+ integrity: sha1-hnrHTjhkGHsdPUfZlqeOxciDB3c=
+ /typescript/3.7.4:
+ engines:
+ node: '>=4.2.0'
+ hasBin: true
+ resolution:
+ integrity: sha512-A25xv5XCtarLwXpcDNZzCGvW2D1S3/bACratYBx2sax8PefsFhlYmkQicKHvpYflFS8if4zne5zT5kpJ7pzuvw==
+ /unfetch/4.1.0:
+ dev: false
+ resolution:
+ integrity: sha512-crP/n3eAPUJxZXM9T80/yv0YhkTEx2K1D3h7D1AJM6fzsWZrxdyRuLN0JH/dkZh1LNH8LxCnBzoPFCPbb2iGpg==
+ /unicode-canonical-property-names-ecmascript/1.0.4:
+ dev: false
+ engines:
+ node: '>=4'
+ resolution:
+ integrity: sha512-jDrNnXWHd4oHiTZnx/ZG7gtUTVp+gCcTTKr8L0HjlwphROEW3+Him+IpvC+xcJEFegapiMZyZe02CyuOnRmbnQ==
+ /unicode-match-property-ecmascript/1.0.4:
+ dependencies:
+ unicode-canonical-property-names-ecmascript: 1.0.4
+ unicode-property-aliases-ecmascript: 1.0.5
+ dev: false
+ engines:
+ node: '>=4'
+ resolution:
+ integrity: sha512-L4Qoh15vTfntsn4P1zqnHulG0LdXgjSO035fEpdtp6YxXhMT51Q6vgM5lYdG/5X3MjS+k/Y9Xw4SFCY9IkR0rg==
+ /unicode-match-property-value-ecmascript/1.1.0:
+ dev: false
+ engines:
+ node: '>=4'
+ resolution:
+ integrity: sha512-hDTHvaBk3RmFzvSl0UVrUmC3PuW9wKVnpoUDYH0JDkSIovzw+J5viQmeYHxVSBptubnr7PbH2e0fnpDRQnQl5g==
+ /unicode-property-aliases-ecmascript/1.0.5:
+ dev: false
+ engines:
+ node: '>=4'
+ resolution:
+ integrity: sha512-L5RAqCfXqAwR3RriF8pM0lU0w4Ryf/GgzONwi6KnL1taJQa7x1TCxdJnILX59WIGOwR57IVxn7Nej0fz1Ny6fw==
+ /union-value/1.0.1:
+ dependencies:
+ arr-union: 3.1.0
+ get-value: 2.0.6
+ is-extendable: 0.1.1
+ set-value: 2.0.1
+ dev: false
+ engines:
+ node: '>=0.10.0'
+ resolution:
+ integrity: sha512-tJfXmxMeWYnczCVs7XAEvIV7ieppALdyepWMkHkwciRpZraG/xwT+s2JN8+pr1+8jCRf80FFzvr+MpQeeoF4Xg==
+ /uniq/1.0.1:
+ dev: false
+ resolution:
+ integrity: sha1-sxxa6CVIRKOoKBVBzisEuGWnNP8=
+ /unique-filename/1.1.1:
+ dependencies:
+ unique-slug: 2.0.2
+ dev: false
+ resolution:
+ integrity: sha512-Vmp0jIp2ln35UTXuryvjzkjGdRyf9b2lTXuSYUiPmzRcl3FDtYqAwOnTJkAngD9SWhnoJzDbTKwaOrZ+STtxNQ==
+ /unique-slug/2.0.2:
+ dependencies:
+ imurmurhash: 0.1.4
+ dev: false
+ resolution:
+ integrity: sha512-zoWr9ObaxALD3DOPfjPSqxt4fnZiWblxHIgeWqW8x7UqDzEtHEQLzji2cuJYQFCU6KmoJikOYAZlrTHHebjx2w==
+ /unpipe/1.0.0:
+ dev: false
+ engines:
+ node: '>= 0.8'
+ resolution:
+ integrity: sha1-sr9O6FFKrmFltIF4KdIbLvSZBOw=
+ /unset-value/1.0.0:
+ dependencies:
+ has-value: 0.3.1
+ isobject: 3.0.1
+ dev: false
+ engines:
+ node: '>=0.10.0'
+ resolution:
+ integrity: sha1-g3aHP30jNRef+x5vw6jtDfyKtVk=
+ /upath/1.2.0:
+ dev: false
+ engines:
+ node: '>=4'
+ resolution:
+ integrity: sha512-aZwGpamFO61g3OlfT7OQCHqhGnW43ieH9WZeP7QxN/G/jS4jfqUkZxoryvJgVPEcrl5NL/ggHsSmLMHuH64Lhg==
+ /update-check/1.5.2:
+ dependencies:
+ registry-auth-token: 3.3.2
+ registry-url: 3.1.0
+ dev: true
+ resolution:
+ integrity: sha512-1TrmYLuLj/5ZovwUS7fFd1jMH3NnFDN1y1A8dboedIDt7zs/zJMo6TwwlhYKkSeEwzleeiSBV5/3c9ufAQWDaQ==
+ /uri-js/4.2.2:
+ dependencies:
+ punycode: 2.1.1
+ resolution:
+ integrity: sha512-KY9Frmirql91X2Qgjry0Wd4Y+YTdrdZheS8TFwvkbLWf/G5KNJDCh6pKL5OZctEW4+0Baa5idK2ZQuELRwPznQ==
+ /urix/0.1.0:
+ dev: false
+ resolution:
+ integrity: sha1-2pN/emLiH+wf0Y1Js1wpNQZ6bHI=
+ /url-polyfill/1.1.7:
+ dev: false
+ resolution:
+ integrity: sha512-ZrAxYWCREjmMtL8gSbSiKKLZZticgihCvVBtrFbUVpyoETt8GQJeG2okMWA8XryDAaHMjJfhnc+rnhXRbI4DXA==
+ /url/0.11.0:
+ dependencies:
+ punycode: 1.3.2
+ querystring: 0.2.0
+ dev: false
+ resolution:
+ integrity: sha1-ODjpfPxgUh63PFJajlW/3Z4uKPE=
+ /use-subscription/1.1.1_react@16.12.0:
+ dependencies:
+ react: 16.12.0
+ dev: false
+ peerDependencies:
+ react: ^16.8.0
+ resolution:
+ integrity: sha512-gk4fPTYvNhs6Ia7u8/+K7bM7sZ7O7AMfWtS+zPO8luH+zWuiGgGcrW0hL4MRWZSzXo+4ofNorf87wZwBKz2YdQ==
+ /use/3.1.1:
+ dev: false
+ engines:
+ node: '>=0.10.0'
+ resolution:
+ integrity: sha512-cwESVXlO3url9YWlFW/TA9cshCEhtu7IKJ/p5soJ/gGpj7vbvFrAY/eIioQ6Dw23KjZhYgiIo8HOs1nQ2vr/oQ==
+ /util-deprecate/1.0.2:
+ dev: false
+ resolution:
+ integrity: sha1-RQ1Nyfpw3nMnYvvS1KKJgUGaDM8=
+ /util/0.10.3:
+ dependencies:
+ inherits: 2.0.1
+ dev: false
+ resolution:
+ integrity: sha1-evsa/lCAUkZInj23/g7TeTNqwPk=
+ /util/0.11.1:
+ dependencies:
+ inherits: 2.0.3
+ dev: false
+ resolution:
+ integrity: sha512-HShAsny+zS2TZfaXxD9tYj4HQGlBezXZMZuM/S5PKLLoZkShZiGk9o5CzukI1LVHZvjdvZ2Sj1aW/Ndn2NB/HQ==
+ /uuid/3.3.3:
+ dev: false
+ hasBin: true
+ resolution:
+ integrity: sha512-pW0No1RGHgzlpHJO1nsVrHKpOEIxkGg1xB+v0ZmdNH5OAeAwzAVrCnI2/6Mtx+Uys6iaylxa+D3g4j63IKKjSQ==
+ /validate-npm-package-license/3.0.4:
+ dependencies:
+ spdx-correct: 3.1.0
+ spdx-expression-parse: 3.0.0
+ dev: false
+ resolution:
+ integrity: sha512-DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew==
+ /vary/1.1.2:
+ engines:
+ node: '>= 0.8'
+ resolution:
+ integrity: sha1-IpnwLG3tMNSllhsLn3RSShj2NPw=
+ /vm-browserify/1.1.2:
+ dev: false
+ resolution:
+ integrity: sha512-2ham8XPWTONajOR0ohOKOHXkm3+gaBmGut3SRuu75xLd/RRaY6vqgh8NBYYk7+RW3u5AtzPQZG8F10LHkl0lAQ==
+ /watchpack/1.6.0:
+ dependencies:
+ chokidar: 2.1.8
+ graceful-fs: 4.2.3
+ neo-async: 2.6.1
+ dev: false
+ resolution:
+ integrity: sha512-i6dHe3EyLjMmDlU1/bGQpEw25XSjkJULPuAVKCbNRefQVq48yXKUpwg538F7AZTf9kyr57zj++pQFltUa5H7yA==
+ /watchpack/2.0.0-beta.5:
+ dependencies:
+ glob-to-regexp: 0.4.1
+ graceful-fs: 4.2.3
+ neo-async: 2.6.1
+ dev: false
+ engines:
+ node: '>=6.11.5'
+ resolution:
+ integrity: sha512-HGqh9e9QZFhow8JYX+1+E+kIYK0uTTsk6rCOkI0ff0f9kMO0wX783yW8saQC9WDx7qHpVGPXsRnld9nY7iwzQA==
+ /wcwidth/1.0.1:
+ dependencies:
+ defaults: 1.0.3
+ dev: false
+ resolution:
+ integrity: sha1-8LDc+RW8X/FSivrbLA4XtTLaL+g=
+ /webpack-dev-middleware/3.7.0_webpack@4.41.2:
+ dependencies:
+ memory-fs: 0.4.1
+ mime: 2.4.4
+ range-parser: 1.2.1
+ webpack: 4.41.2_webpack@4.41.2
+ webpack-log: 2.0.0
+ dev: false
+ engines:
+ node: '>= 6'
+ peerDependencies:
+ webpack: ^4.0.0
+ resolution:
+ integrity: sha512-qvDesR1QZRIAZHOE3iQ4CXLZZSQ1lAUsSpnQmlB1PBfoN/xdRjmge3Dok0W4IdaVLJOGJy3sGI4sZHwjRU0PCA==
+ /webpack-hot-middleware/2.25.0:
+ dependencies:
+ ansi-html: 0.0.7
+ html-entities: 1.2.1
+ querystring: 0.2.0
+ strip-ansi: 3.0.1
+ dev: false
+ resolution:
+ integrity: sha512-xs5dPOrGPCzuRXNi8F6rwhawWvQQkeli5Ro48PRuQh8pYPCPmNnltP9itiUPT4xI8oW+y0m59lyyeQk54s5VgA==
+ /webpack-log/2.0.0:
+ dependencies:
+ ansi-colors: 3.2.4
+ uuid: 3.3.3
+ dev: false
+ engines:
+ node: '>= 6'
+ resolution:
+ integrity: sha512-cX8G2vR/85UYG59FgkoMamwHUIkSSlV3bBMRsbxVXVUk2j6NleCKjQ/WE9eYg9WY4w25O9w8wKP4rzNZFmUcUg==
+ /webpack-merge/4.2.2:
+ dependencies:
+ lodash: 4.17.15
+ dev: false
+ resolution:
+ integrity: sha512-TUE1UGoTX2Cd42j3krGYqObZbOD+xF7u28WB7tfUordytSjbWTIjK/8V0amkBfTYN4/pB/GIDlJZZ657BGG19g==
+ /webpack-sources/1.4.3:
+ dependencies:
+ source-list-map: 2.0.1
+ source-map: 0.6.1
+ dev: false
+ resolution:
+ integrity: sha512-lgTS3Xhv1lCOKo7SA5TjKXMjpSM4sBjNV5+q2bqesbSPs5FjGmU6jjtBSkX9b4qW87vDIsCIlUPOEhbZrMdjeQ==
+ /webpack/4.41.2_webpack@4.41.2:
+ dependencies:
+ '@webassemblyjs/ast': 1.8.5
+ '@webassemblyjs/helper-module-context': 1.8.5
+ '@webassemblyjs/wasm-edit': 1.8.5
+ '@webassemblyjs/wasm-parser': 1.8.5
+ acorn: 6.4.0
+ ajv: 6.10.2
+ ajv-keywords: 3.4.1_ajv@6.10.2
+ chrome-trace-event: 1.0.2
+ enhanced-resolve: 4.1.1
+ eslint-scope: 4.0.3
+ json-parse-better-errors: 1.0.2
+ loader-runner: 2.4.0
+ loader-utils: 1.2.3
+ memory-fs: 0.4.1
+ micromatch: 3.1.10
+ mkdirp: 0.5.1
+ neo-async: 2.6.1
+ node-libs-browser: 2.2.1
+ schema-utils: 1.0.0
+ tapable: 1.1.3
+ terser-webpack-plugin: 1.4.3_webpack@4.41.2
+ watchpack: 1.6.0
+ webpack-sources: 1.4.3
+ dev: false
+ engines:
+ node: '>=6.11.5'
+ hasBin: true
+ peerDependencies:
+ webpack: '*'
+ resolution:
+ integrity: sha512-Zhw69edTGfbz9/8JJoyRQ/pq8FYUoY0diOXqW0T6yhgdhCv6wr0hra5DwwWexNRns2Z2+gsnrNcbe9hbGBgk/A==
+ /whatwg-fetch/3.0.0:
+ dev: false
+ resolution:
+ integrity: sha512-9GSJUgz1D4MfyKU7KRqwOjXCXTqWdFNvEr7eUBYchQiVc744mqK/MzXPNR2WsPkmkOa4ywfg8C2n8h+13Bey1Q==
+ /which/1.3.1:
+ dependencies:
+ isexe: 2.0.0
+ dev: true
+ hasBin: true
+ resolution:
+ integrity: sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==
+ /widest-line/2.0.1:
+ dependencies:
+ string-width: 2.1.1
+ dev: true
+ engines:
+ node: '>=4'
+ resolution:
+ integrity: sha512-Ba5m9/Fa4Xt9eb2ELXt77JxVDV8w7qQrH0zS/TWSJdLyAwQjWoOzpzj5lwVftDz6n/EOu3tNACS84v509qwnJA==
+ /worker-farm/1.7.0:
+ dependencies:
+ errno: 0.1.7
+ dev: false
+ resolution:
+ integrity: sha512-rvw3QTZc8lAxyVrqcSGVm5yP/IJ2UcB3U0graE3LCFoZ0Yn2x4EoVSqJKdB/T5M+FLcRPjz4TDacRf3OCfNUzw==
+ /worker-rpc/0.1.1:
+ dependencies:
+ microevent.ts: 0.1.1
+ dev: false
+ resolution:
+ integrity: sha512-P1WjMrUB3qgJNI9jfmpZ/htmBEjFh//6l/5y8SD9hg1Ef5zTTVVoRjTrTEzPrNBQvmhMxkoTsjOXN10GWU7aCg==
+ /wrappy/1.0.2:
+ dev: false
+ resolution:
+ integrity: sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8=
+ /write-file-atomic/3.0.1:
+ dependencies:
+ imurmurhash: 0.1.4
+ is-typedarray: 1.0.0
+ signal-exit: 3.0.2
+ typedarray-to-buffer: 3.1.5
+ dev: false
+ resolution:
+ integrity: sha512-JPStrIyyVJ6oCSz/691fAjFtefZ6q+fP6tm+OS4Qw6o+TGQxNp1ziY2PgS+X/m0V8OWhZiO/m4xSj+Pr4RrZvw==
+ /xtend/4.0.2:
+ dev: false
+ engines:
+ node: '>=0.4'
+ resolution:
+ integrity: sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ==
+ /y18n/4.0.0:
+ dev: false
+ resolution:
+ integrity: sha512-r9S/ZyXu/Xu9q1tYlpsLIsa3EeLXXk0VwlxqTcFRfg9EhMW+17kbt9G0NrgCmhGb5vT2hyhJZLfDGx+7+5Uj/w==
+ /yallist/2.1.2:
+ dev: true
+ resolution:
+ integrity: sha1-HBH5IY8HYImkfdUS+TxmmaaoHVI=
+ /yallist/3.1.1:
+ dev: false
+ resolution:
+ integrity: sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==
+ /yaml/1.7.2:
+ dependencies:
+ '@babel/runtime': 7.7.7
+ dev: false
+ engines:
+ node: '>= 6'
+ resolution:
+ integrity: sha512-qXROVp90sb83XtAoqE8bP9RwAkTTZbugRUTm5YeFCBfNRPEp2YzTeqWiz7m5OORHzEvrA/qcGS8hp/E+MMROYw==
+specifiers:
+ '@emotion/core': 10.0.27
+ '@emotion/styled': 10.0.27
+ '@types/node': ^13.1.4
+ '@types/react': ^16.9.17
+ '@types/react-dom': ^16.9.4
+ babel-plugin-emotion: 10.0.27
+ cogo-toast: 'link:../'
+ next: ^9.1.7
+ prism-react-renderer: ^1.0.2
+ react: ^16.12.0
+ react-dom: ^16.12.0
+ serve: 11.3.0
+ typescript: 3.7.4
diff --git a/docs/tsconfig.json b/docs/tsconfig.json
new file mode 100644
index 0000000..8f8d3a7
--- /dev/null
+++ b/docs/tsconfig.json
@@ -0,0 +1,8 @@
+{
+ "extends": "../tsconfig.json",
+ "include": ["next-env.d.ts", "**/*.ts", "**/*.tsx"],
+ "compilerOptions": {
+ "skipLibCheck": true,
+ "jsx": "preserve"
+ }
+}
diff --git a/docs/util/colors.js b/docs/util/colors.ts
similarity index 100%
rename from docs/util/colors.js
rename to docs/util/colors.ts
diff --git a/docs/yarn.lock b/docs/yarn.lock
deleted file mode 100644
index 0de087f..0000000
--- a/docs/yarn.lock
+++ /dev/null
@@ -1,6211 +0,0 @@
-# THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY.
-# yarn lockfile v1
-
-
-"@ampproject/toolbox-core@^1.1.1":
- version "1.1.1"
- resolved "https://registry.yarnpkg.com/@ampproject/toolbox-core/-/toolbox-core-1.1.1.tgz#540c8f3ab0f5d1faa1ba35282cd5f5f3f0e16a76"
- integrity sha512-jcuVJUnGDRUEJgMYO6QVdf1dBy/oLZX3NjN2hYG48biFcPCvXevuv4xYFZMJsnsHSvXKg8y0qB8rANNyhTUN/A==
- dependencies:
- node-fetch "2.6.0"
-
-"@ampproject/toolbox-optimizer@1.1.1":
- version "1.1.1"
- resolved "https://registry.yarnpkg.com/@ampproject/toolbox-optimizer/-/toolbox-optimizer-1.1.1.tgz#be66245c966ba9b0f5e3020109f87fea90ea377d"
- integrity sha512-LTtTM5FSOrWuTJ6mOwPfZmpUDI6polrNz3tX2EmDmDkjDK+43vSpq1OHtukivIFHafdixJuoeki5dF3PC/ZoWw==
- dependencies:
- "@ampproject/toolbox-core" "^1.1.1"
- "@ampproject/toolbox-runtime-version" "^1.1.1"
- "@ampproject/toolbox-script-csp" "^1.1.1"
- css "2.2.4"
- parse5 "5.1.0"
- parse5-htmlparser2-tree-adapter "5.1.0"
-
-"@ampproject/toolbox-runtime-version@^1.1.1":
- version "1.1.1"
- resolved "https://registry.yarnpkg.com/@ampproject/toolbox-runtime-version/-/toolbox-runtime-version-1.1.1.tgz#628fe5091db4f90b68960620e22ad64f9f2563bd"
- integrity sha512-ibmw5p+0Sz+wingbX/Dyboe8a0+XDkMfFGSM7KFE0h2z3Op9MADup8ZPLeHT54Z7cYKmB6ob60FVHtQQDhEXNw==
- dependencies:
- "@ampproject/toolbox-core" "^1.1.1"
-
-"@ampproject/toolbox-script-csp@^1.1.1":
- version "1.1.1"
- resolved "https://registry.yarnpkg.com/@ampproject/toolbox-script-csp/-/toolbox-script-csp-1.1.1.tgz#0b049a1c86c99f300162a10e1b9ce83c6e354a45"
- integrity sha512-gACGfsVKinCy/977FSrlVgo6jxTZ0lcTCvCnRlNwvSOcxJVm+jJR3sP7/F43fpak9Gsq/EwFaatfnNMbunPc+w==
-
-"@babel/code-frame@^7.0.0", "@babel/code-frame@^7.5.5":
- version "7.5.5"
- resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.5.5.tgz#bc0782f6d69f7b7d49531219699b988f669a8f9d"
- integrity sha512-27d4lZoomVyo51VegxI20xZPuSHusqbQag/ztrBC7wegWoQ1nLREPVSKSW8byhTlzTKyNE4ifaTA6lCp7JjpFw==
- dependencies:
- "@babel/highlight" "^7.0.0"
-
-"@babel/core@7.7.2":
- version "7.7.2"
- resolved "https://registry.yarnpkg.com/@babel/core/-/core-7.7.2.tgz#ea5b99693bcfc058116f42fa1dd54da412b29d91"
- integrity sha512-eeD7VEZKfhK1KUXGiyPFettgF3m513f8FoBSWiQ1xTvl1RAopLs42Wp9+Ze911I6H0N9lNqJMDgoZT7gHsipeQ==
- dependencies:
- "@babel/code-frame" "^7.5.5"
- "@babel/generator" "^7.7.2"
- "@babel/helpers" "^7.7.0"
- "@babel/parser" "^7.7.2"
- "@babel/template" "^7.7.0"
- "@babel/traverse" "^7.7.2"
- "@babel/types" "^7.7.2"
- convert-source-map "^1.7.0"
- debug "^4.1.0"
- json5 "^2.1.0"
- lodash "^4.17.13"
- resolve "^1.3.2"
- semver "^5.4.1"
- source-map "^0.5.0"
-
-"@babel/generator@^7.7.2", "@babel/generator@^7.7.4":
- version "7.7.7"
- resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.7.7.tgz#859ac733c44c74148e1a72980a64ec84b85f4f45"
- integrity sha512-/AOIBpHh/JU1l0ZFS4kiRCBnLi6OTHzh0RPk3h9isBxkkqELtQNFi1Vr/tiG9p1yfoUdKVwISuXWQR+hwwM4VQ==
- dependencies:
- "@babel/types" "^7.7.4"
- jsesc "^2.5.1"
- lodash "^4.17.13"
- source-map "^0.5.0"
-
-"@babel/helper-annotate-as-pure@^7.7.4":
- version "7.7.4"
- resolved "https://registry.yarnpkg.com/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.7.4.tgz#bb3faf1e74b74bd547e867e48f551fa6b098b6ce"
- integrity sha512-2BQmQgECKzYKFPpiycoF9tlb5HA4lrVyAmLLVK177EcQAqjVLciUb2/R+n1boQ9y5ENV3uz2ZqiNw7QMBBw1Og==
- dependencies:
- "@babel/types" "^7.7.4"
-
-"@babel/helper-builder-binary-assignment-operator-visitor@^7.7.4":
- version "7.7.4"
- resolved "https://registry.yarnpkg.com/@babel/helper-builder-binary-assignment-operator-visitor/-/helper-builder-binary-assignment-operator-visitor-7.7.4.tgz#5f73f2b28580e224b5b9bd03146a4015d6217f5f"
- integrity sha512-Biq/d/WtvfftWZ9Uf39hbPBYDUo986m5Bb4zhkeYDGUllF43D+nUe5M6Vuo6/8JDK/0YX/uBdeoQpyaNhNugZQ==
- dependencies:
- "@babel/helper-explode-assignable-expression" "^7.7.4"
- "@babel/types" "^7.7.4"
-
-"@babel/helper-builder-react-jsx@^7.7.4":
- version "7.7.4"
- resolved "https://registry.yarnpkg.com/@babel/helper-builder-react-jsx/-/helper-builder-react-jsx-7.7.4.tgz#da188d247508b65375b2c30cf59de187be6b0c66"
- integrity sha512-kvbfHJNN9dg4rkEM4xn1s8d1/h6TYNvajy9L1wx4qLn9HFg0IkTsQi4rfBe92nxrPUFcMsHoMV+8rU7MJb3fCA==
- dependencies:
- "@babel/types" "^7.7.4"
- esutils "^2.0.0"
-
-"@babel/helper-call-delegate@^7.7.4":
- version "7.7.4"
- resolved "https://registry.yarnpkg.com/@babel/helper-call-delegate/-/helper-call-delegate-7.7.4.tgz#621b83e596722b50c0066f9dc37d3232e461b801"
- integrity sha512-8JH9/B7J7tCYJ2PpWVpw9JhPuEVHztagNVuQAFBVFYluRMlpG7F1CgKEgGeL6KFqcsIa92ZYVj6DSc0XwmN1ZA==
- dependencies:
- "@babel/helper-hoist-variables" "^7.7.4"
- "@babel/traverse" "^7.7.4"
- "@babel/types" "^7.7.4"
-
-"@babel/helper-create-class-features-plugin@^7.7.0", "@babel/helper-create-class-features-plugin@^7.7.4":
- version "7.7.4"
- resolved "https://registry.yarnpkg.com/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.7.4.tgz#fce60939fd50618610942320a8d951b3b639da2d"
- integrity sha512-l+OnKACG4uiDHQ/aJT8dwpR+LhCJALxL0mJ6nzjB25e5IPwqV1VOsY7ah6UB1DG+VOXAIMtuC54rFJGiHkxjgA==
- dependencies:
- "@babel/helper-function-name" "^7.7.4"
- "@babel/helper-member-expression-to-functions" "^7.7.4"
- "@babel/helper-optimise-call-expression" "^7.7.4"
- "@babel/helper-plugin-utils" "^7.0.0"
- "@babel/helper-replace-supers" "^7.7.4"
- "@babel/helper-split-export-declaration" "^7.7.4"
-
-"@babel/helper-create-regexp-features-plugin@^7.7.4":
- version "7.7.4"
- resolved "https://registry.yarnpkg.com/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.7.4.tgz#6d5762359fd34f4da1500e4cff9955b5299aaf59"
- integrity sha512-Mt+jBKaxL0zfOIWrfQpnfYCN7/rS6GKx6CCCfuoqVVd+17R8zNDlzVYmIi9qyb2wOk002NsmSTDymkIygDUH7A==
- dependencies:
- "@babel/helper-regex" "^7.4.4"
- regexpu-core "^4.6.0"
-
-"@babel/helper-define-map@^7.7.4":
- version "7.7.4"
- resolved "https://registry.yarnpkg.com/@babel/helper-define-map/-/helper-define-map-7.7.4.tgz#2841bf92eb8bd9c906851546fe6b9d45e162f176"
- integrity sha512-v5LorqOa0nVQUvAUTUF3KPastvUt/HzByXNamKQ6RdJRTV7j8rLL+WB5C/MzzWAwOomxDhYFb1wLLxHqox86lg==
- dependencies:
- "@babel/helper-function-name" "^7.7.4"
- "@babel/types" "^7.7.4"
- lodash "^4.17.13"
-
-"@babel/helper-explode-assignable-expression@^7.7.4":
- version "7.7.4"
- resolved "https://registry.yarnpkg.com/@babel/helper-explode-assignable-expression/-/helper-explode-assignable-expression-7.7.4.tgz#fa700878e008d85dc51ba43e9fb835cddfe05c84"
- integrity sha512-2/SicuFrNSXsZNBxe5UGdLr+HZg+raWBLE9vC98bdYOKX/U6PY0mdGlYUJdtTDPSU0Lw0PNbKKDpwYHJLn2jLg==
- dependencies:
- "@babel/traverse" "^7.7.4"
- "@babel/types" "^7.7.4"
-
-"@babel/helper-function-name@^7.7.4":
- version "7.7.4"
- resolved "https://registry.yarnpkg.com/@babel/helper-function-name/-/helper-function-name-7.7.4.tgz#ab6e041e7135d436d8f0a3eca15de5b67a341a2e"
- integrity sha512-AnkGIdiBhEuiwdoMnKm7jfPfqItZhgRaZfMg1XX3bS25INOnLPjPG1Ppnajh8eqgt5kPJnfqrRHqFqmjKDZLzQ==
- dependencies:
- "@babel/helper-get-function-arity" "^7.7.4"
- "@babel/template" "^7.7.4"
- "@babel/types" "^7.7.4"
-
-"@babel/helper-get-function-arity@^7.7.4":
- version "7.7.4"
- resolved "https://registry.yarnpkg.com/@babel/helper-get-function-arity/-/helper-get-function-arity-7.7.4.tgz#cb46348d2f8808e632f0ab048172130e636005f0"
- integrity sha512-QTGKEdCkjgzgfJ3bAyRwF4yyT3pg+vDgan8DSivq1eS0gwi+KGKE5x8kRcbeFTb/673mkO5SN1IZfmCfA5o+EA==
- dependencies:
- "@babel/types" "^7.7.4"
-
-"@babel/helper-hoist-variables@^7.7.4":
- version "7.7.4"
- resolved "https://registry.yarnpkg.com/@babel/helper-hoist-variables/-/helper-hoist-variables-7.7.4.tgz#612384e3d823fdfaaf9fce31550fe5d4db0f3d12"
- integrity sha512-wQC4xyvc1Jo/FnLirL6CEgPgPCa8M74tOdjWpRhQYapz5JC7u3NYU1zCVoVAGCE3EaIP9T1A3iW0WLJ+reZlpQ==
- dependencies:
- "@babel/types" "^7.7.4"
-
-"@babel/helper-member-expression-to-functions@^7.7.4":
- version "7.7.4"
- resolved "https://registry.yarnpkg.com/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.7.4.tgz#356438e2569df7321a8326644d4b790d2122cb74"
- integrity sha512-9KcA1X2E3OjXl/ykfMMInBK+uVdfIVakVe7W7Lg3wfXUNyS3Q1HWLFRwZIjhqiCGbslummPDnmb7vIekS0C1vw==
- dependencies:
- "@babel/types" "^7.7.4"
-
-"@babel/helper-module-imports@^7.0.0", "@babel/helper-module-imports@^7.7.0", "@babel/helper-module-imports@^7.7.4":
- version "7.7.4"
- resolved "https://registry.yarnpkg.com/@babel/helper-module-imports/-/helper-module-imports-7.7.4.tgz#e5a92529f8888bf319a6376abfbd1cebc491ad91"
- integrity sha512-dGcrX6K9l8258WFjyDLJwuVKxR4XZfU0/vTUgOQYWEnRD8mgr+p4d6fCUMq/ys0h4CCt/S5JhbvtyErjWouAUQ==
- dependencies:
- "@babel/types" "^7.7.4"
-
-"@babel/helper-module-transforms@^7.7.0", "@babel/helper-module-transforms@^7.7.4", "@babel/helper-module-transforms@^7.7.5":
- version "7.7.5"
- resolved "https://registry.yarnpkg.com/@babel/helper-module-transforms/-/helper-module-transforms-7.7.5.tgz#d044da7ffd91ec967db25cd6748f704b6b244835"
- integrity sha512-A7pSxyJf1gN5qXVcidwLWydjftUN878VkalhXX5iQDuGyiGK3sOrrKKHF4/A4fwHtnsotv/NipwAeLzY4KQPvw==
- dependencies:
- "@babel/helper-module-imports" "^7.7.4"
- "@babel/helper-simple-access" "^7.7.4"
- "@babel/helper-split-export-declaration" "^7.7.4"
- "@babel/template" "^7.7.4"
- "@babel/types" "^7.7.4"
- lodash "^4.17.13"
-
-"@babel/helper-optimise-call-expression@^7.7.4":
- version "7.7.4"
- resolved "https://registry.yarnpkg.com/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.7.4.tgz#034af31370d2995242aa4df402c3b7794b2dcdf2"
- integrity sha512-VB7gWZ2fDkSuqW6b1AKXkJWO5NyNI3bFL/kK79/30moK57blr6NbH8xcl2XcKCwOmJosftWunZqfO84IGq3ZZg==
- dependencies:
- "@babel/types" "^7.7.4"
-
-"@babel/helper-plugin-utils@^7.0.0":
- version "7.0.0"
- resolved "https://registry.yarnpkg.com/@babel/helper-plugin-utils/-/helper-plugin-utils-7.0.0.tgz#bbb3fbee98661c569034237cc03967ba99b4f250"
- integrity sha512-CYAOUCARwExnEixLdB6sDm2dIJ/YgEAKDM1MOeMeZu9Ld/bDgVo8aiWrXwcY7OBh+1Ea2uUcVRcxKk0GJvW7QA==
-
-"@babel/helper-regex@^7.0.0", "@babel/helper-regex@^7.4.4":
- version "7.5.5"
- resolved "https://registry.yarnpkg.com/@babel/helper-regex/-/helper-regex-7.5.5.tgz#0aa6824f7100a2e0e89c1527c23936c152cab351"
- integrity sha512-CkCYQLkfkiugbRDO8eZn6lRuR8kzZoGXCg3149iTk5se7g6qykSpy3+hELSwquhu+TgHn8nkLiBwHvNX8Hofcw==
- dependencies:
- lodash "^4.17.13"
-
-"@babel/helper-remap-async-to-generator@^7.7.4":
- version "7.7.4"
- resolved "https://registry.yarnpkg.com/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.7.4.tgz#c68c2407350d9af0e061ed6726afb4fff16d0234"
- integrity sha512-Sk4xmtVdM9sA/jCI80f+KS+Md+ZHIpjuqmYPk1M7F/upHou5e4ReYmExAiu6PVe65BhJPZA2CY9x9k4BqE5klw==
- dependencies:
- "@babel/helper-annotate-as-pure" "^7.7.4"
- "@babel/helper-wrap-function" "^7.7.4"
- "@babel/template" "^7.7.4"
- "@babel/traverse" "^7.7.4"
- "@babel/types" "^7.7.4"
-
-"@babel/helper-replace-supers@^7.7.4":
- version "7.7.4"
- resolved "https://registry.yarnpkg.com/@babel/helper-replace-supers/-/helper-replace-supers-7.7.4.tgz#3c881a6a6a7571275a72d82e6107126ec9e2cdd2"
- integrity sha512-pP0tfgg9hsZWo5ZboYGuBn/bbYT/hdLPVSS4NMmiRJdwWhP0IznPwN9AE1JwyGsjSPLC364I0Qh5p+EPkGPNpg==
- dependencies:
- "@babel/helper-member-expression-to-functions" "^7.7.4"
- "@babel/helper-optimise-call-expression" "^7.7.4"
- "@babel/traverse" "^7.7.4"
- "@babel/types" "^7.7.4"
-
-"@babel/helper-simple-access@^7.7.0", "@babel/helper-simple-access@^7.7.4":
- version "7.7.4"
- resolved "https://registry.yarnpkg.com/@babel/helper-simple-access/-/helper-simple-access-7.7.4.tgz#a169a0adb1b5f418cfc19f22586b2ebf58a9a294"
- integrity sha512-zK7THeEXfan7UlWsG2A6CI/L9jVnI5+xxKZOdej39Y0YtDYKx9raHk5F2EtK9K8DHRTihYwg20ADt9S36GR78A==
- dependencies:
- "@babel/template" "^7.7.4"
- "@babel/types" "^7.7.4"
-
-"@babel/helper-split-export-declaration@^7.7.4":
- version "7.7.4"
- resolved "https://registry.yarnpkg.com/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.7.4.tgz#57292af60443c4a3622cf74040ddc28e68336fd8"
- integrity sha512-guAg1SXFcVr04Guk9eq0S4/rWS++sbmyqosJzVs8+1fH5NI+ZcmkaSkc7dmtAFbHFva6yRJnjW3yAcGxjueDug==
- dependencies:
- "@babel/types" "^7.7.4"
-
-"@babel/helper-wrap-function@^7.7.4":
- version "7.7.4"
- resolved "https://registry.yarnpkg.com/@babel/helper-wrap-function/-/helper-wrap-function-7.7.4.tgz#37ab7fed5150e22d9d7266e830072c0cdd8baace"
- integrity sha512-VsfzZt6wmsocOaVU0OokwrIytHND55yvyT4BPB9AIIgwr8+x7617hetdJTsuGwygN5RC6mxA9EJztTjuwm2ofg==
- dependencies:
- "@babel/helper-function-name" "^7.7.4"
- "@babel/template" "^7.7.4"
- "@babel/traverse" "^7.7.4"
- "@babel/types" "^7.7.4"
-
-"@babel/helpers@^7.7.0":
- version "7.7.4"
- resolved "https://registry.yarnpkg.com/@babel/helpers/-/helpers-7.7.4.tgz#62c215b9e6c712dadc15a9a0dcab76c92a940302"
- integrity sha512-ak5NGZGJ6LV85Q1Zc9gn2n+ayXOizryhjSUBTdu5ih1tlVCJeuQENzc4ItyCVhINVXvIT/ZQ4mheGIsfBkpskg==
- dependencies:
- "@babel/template" "^7.7.4"
- "@babel/traverse" "^7.7.4"
- "@babel/types" "^7.7.4"
-
-"@babel/highlight@^7.0.0":
- version "7.5.0"
- resolved "https://registry.yarnpkg.com/@babel/highlight/-/highlight-7.5.0.tgz#56d11312bd9248fa619591d02472be6e8cb32540"
- integrity sha512-7dV4eu9gBxoM0dAnj/BCFDW9LFU0zvTrkq0ugM7pnHEgguOEeOz1so2ZghEdzviYzQEED0r4EAgpsBChKy1TRQ==
- dependencies:
- chalk "^2.0.0"
- esutils "^2.0.2"
- js-tokens "^4.0.0"
-
-"@babel/parser@^7.7.2", "@babel/parser@^7.7.4":
- version "7.7.7"
- resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.7.7.tgz#1b886595419cf92d811316d5b715a53ff38b4937"
- integrity sha512-WtTZMZAZLbeymhkd/sEaPD8IQyGAhmuTuvTzLiCFM7iXiVdY0gc0IaI+cW0fh1BnSMbJSzXX6/fHllgHKwHhXw==
-
-"@babel/plugin-proposal-async-generator-functions@^7.7.0":
- version "7.7.4"
- resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-async-generator-functions/-/plugin-proposal-async-generator-functions-7.7.4.tgz#0351c5ac0a9e927845fffd5b82af476947b7ce6d"
- integrity sha512-1ypyZvGRXriY/QP668+s8sFr2mqinhkRDMPSQLNghCQE+GAkFtp+wkHVvg2+Hdki8gwP+NFzJBJ/N1BfzCCDEw==
- dependencies:
- "@babel/helper-plugin-utils" "^7.0.0"
- "@babel/helper-remap-async-to-generator" "^7.7.4"
- "@babel/plugin-syntax-async-generators" "^7.7.4"
-
-"@babel/plugin-proposal-class-properties@7.7.0":
- version "7.7.0"
- resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-class-properties/-/plugin-proposal-class-properties-7.7.0.tgz#ac54e728ecf81d90e8f4d2a9c05a890457107917"
- integrity sha512-tufDcFA1Vj+eWvwHN+jvMN6QsV5o+vUlytNKrbMiCeDL0F2j92RURzUsUMWE5EJkLyWxjdUslCsMQa9FWth16A==
- dependencies:
- "@babel/helper-create-class-features-plugin" "^7.7.0"
- "@babel/helper-plugin-utils" "^7.0.0"
-
-"@babel/plugin-proposal-dynamic-import@^7.7.0":
- version "7.7.4"
- resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-dynamic-import/-/plugin-proposal-dynamic-import-7.7.4.tgz#dde64a7f127691758cbfed6cf70de0fa5879d52d"
- integrity sha512-StH+nGAdO6qDB1l8sZ5UBV8AC3F2VW2I8Vfld73TMKyptMU9DY5YsJAS8U81+vEtxcH3Y/La0wG0btDrhpnhjQ==
- dependencies:
- "@babel/helper-plugin-utils" "^7.0.0"
- "@babel/plugin-syntax-dynamic-import" "^7.7.4"
-
-"@babel/plugin-proposal-json-strings@^7.2.0":
- version "7.7.4"
- resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-json-strings/-/plugin-proposal-json-strings-7.7.4.tgz#7700a6bfda771d8dc81973249eac416c6b4c697d"
- integrity sha512-wQvt3akcBTfLU/wYoqm/ws7YOAQKu8EVJEvHip/mzkNtjaclQoCCIqKXFP5/eyfnfbQCDV3OLRIK3mIVyXuZlw==
- dependencies:
- "@babel/helper-plugin-utils" "^7.0.0"
- "@babel/plugin-syntax-json-strings" "^7.7.4"
-
-"@babel/plugin-proposal-nullish-coalescing-operator@7.7.4":
- version "7.7.4"
- resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-nullish-coalescing-operator/-/plugin-proposal-nullish-coalescing-operator-7.7.4.tgz#7db302c83bc30caa89e38fee935635ef6bd11c28"
- integrity sha512-TbYHmr1Gl1UC7Vo2HVuj/Naci5BEGNZ0AJhzqD2Vpr6QPFWpUmBRLrIDjedzx7/CShq0bRDS2gI4FIs77VHLVQ==
- dependencies:
- "@babel/helper-plugin-utils" "^7.0.0"
- "@babel/plugin-syntax-nullish-coalescing-operator" "^7.7.4"
-
-"@babel/plugin-proposal-object-rest-spread@7.6.2":
- version "7.6.2"
- resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-object-rest-spread/-/plugin-proposal-object-rest-spread-7.6.2.tgz#8ffccc8f3a6545e9f78988b6bf4fe881b88e8096"
- integrity sha512-LDBXlmADCsMZV1Y9OQwMc0MyGZ8Ta/zlD9N67BfQT8uYwkRswiu2hU6nJKrjrt/58aH/vqfQlR/9yId/7A2gWw==
- dependencies:
- "@babel/helper-plugin-utils" "^7.0.0"
- "@babel/plugin-syntax-object-rest-spread" "^7.2.0"
-
-"@babel/plugin-proposal-object-rest-spread@^7.6.2":
- version "7.7.7"
- resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-object-rest-spread/-/plugin-proposal-object-rest-spread-7.7.7.tgz#9f27075004ab99be08c5c1bd653a2985813cb370"
- integrity sha512-3qp9I8lelgzNedI3hrhkvhaEYree6+WHnyA/q4Dza9z7iEIs1eyhWyJnetk3jJ69RT0AT4G0UhEGwyGFJ7GUuQ==
- dependencies:
- "@babel/helper-plugin-utils" "^7.0.0"
- "@babel/plugin-syntax-object-rest-spread" "^7.7.4"
-
-"@babel/plugin-proposal-optional-catch-binding@^7.2.0":
- version "7.7.4"
- resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-optional-catch-binding/-/plugin-proposal-optional-catch-binding-7.7.4.tgz#ec21e8aeb09ec6711bc0a39ca49520abee1de379"
- integrity sha512-DyM7U2bnsQerCQ+sejcTNZh8KQEUuC3ufzdnVnSiUv/qoGJp2Z3hanKL18KDhsBT5Wj6a7CMT5mdyCNJsEaA9w==
- dependencies:
- "@babel/helper-plugin-utils" "^7.0.0"
- "@babel/plugin-syntax-optional-catch-binding" "^7.7.4"
-
-"@babel/plugin-proposal-optional-chaining@7.7.4":
- version "7.7.4"
- resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-optional-chaining/-/plugin-proposal-optional-chaining-7.7.4.tgz#3f04c2de1a942cbd3008324df8144b9cbc0ca0ba"
- integrity sha512-JmgaS+ygAWDR/STPe3/7y0lNlHgS+19qZ9aC06nYLwQ/XB7c0q5Xs+ksFU3EDnp9EiEsO0dnRAOKeyLHTZuW3A==
- dependencies:
- "@babel/helper-plugin-utils" "^7.0.0"
- "@babel/plugin-syntax-optional-chaining" "^7.7.4"
-
-"@babel/plugin-proposal-unicode-property-regex@^7.4.4", "@babel/plugin-proposal-unicode-property-regex@^7.7.0":
- version "7.7.7"
- resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-unicode-property-regex/-/plugin-proposal-unicode-property-regex-7.7.7.tgz#433fa9dac64f953c12578b29633f456b68831c4e"
- integrity sha512-80PbkKyORBUVm1fbTLrHpYdJxMThzM1UqFGh0ALEhO9TYbG86Ah9zQYAB/84axz2vcxefDLdZwWwZNlYARlu9w==
- dependencies:
- "@babel/helper-create-regexp-features-plugin" "^7.7.4"
- "@babel/helper-plugin-utils" "^7.0.0"
-
-"@babel/plugin-syntax-async-generators@^7.2.0", "@babel/plugin-syntax-async-generators@^7.7.4":
- version "7.7.4"
- resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-async-generators/-/plugin-syntax-async-generators-7.7.4.tgz#331aaf310a10c80c44a66b238b6e49132bd3c889"
- integrity sha512-Li4+EjSpBgxcsmeEF8IFcfV/+yJGxHXDirDkEoyFjumuwbmfCVHUt0HuowD/iGM7OhIRyXJH9YXxqiH6N815+g==
- dependencies:
- "@babel/helper-plugin-utils" "^7.0.0"
-
-"@babel/plugin-syntax-dynamic-import@7.2.0":
- version "7.2.0"
- resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-dynamic-import/-/plugin-syntax-dynamic-import-7.2.0.tgz#69c159ffaf4998122161ad8ebc5e6d1f55df8612"
- integrity sha512-mVxuJ0YroI/h/tbFTPGZR8cv6ai+STMKNBq0f8hFxsxWjl94qqhsb+wXbpNMDPU3cfR1TIsVFzU3nXyZMqyK4w==
- dependencies:
- "@babel/helper-plugin-utils" "^7.0.0"
-
-"@babel/plugin-syntax-dynamic-import@^7.2.0", "@babel/plugin-syntax-dynamic-import@^7.7.4":
- version "7.7.4"
- resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-dynamic-import/-/plugin-syntax-dynamic-import-7.7.4.tgz#29ca3b4415abfe4a5ec381e903862ad1a54c3aec"
- integrity sha512-jHQW0vbRGvwQNgyVxwDh4yuXu4bH1f5/EICJLAhl1SblLs2CDhrsmCk+v5XLdE9wxtAFRyxx+P//Iw+a5L/tTg==
- dependencies:
- "@babel/helper-plugin-utils" "^7.0.0"
-
-"@babel/plugin-syntax-json-strings@^7.2.0", "@babel/plugin-syntax-json-strings@^7.7.4":
- version "7.7.4"
- resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-json-strings/-/plugin-syntax-json-strings-7.7.4.tgz#86e63f7d2e22f9e27129ac4e83ea989a382e86cc"
- integrity sha512-QpGupahTQW1mHRXddMG5srgpHWqRLwJnJZKXTigB9RPFCCGbDGCgBeM/iC82ICXp414WeYx/tD54w7M2qRqTMg==
- dependencies:
- "@babel/helper-plugin-utils" "^7.0.0"
-
-"@babel/plugin-syntax-jsx@^7.7.4":
- version "7.7.4"
- resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.7.4.tgz#dab2b56a36fb6c3c222a1fbc71f7bf97f327a9ec"
- integrity sha512-wuy6fiMe9y7HeZBWXYCGt2RGxZOj0BImZ9EyXJVnVGBKO/Br592rbR3rtIQn0eQhAk9vqaKP5n8tVqEFBQMfLg==
- dependencies:
- "@babel/helper-plugin-utils" "^7.0.0"
-
-"@babel/plugin-syntax-nullish-coalescing-operator@^7.7.4":
- version "7.7.4"
- resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-nullish-coalescing-operator/-/plugin-syntax-nullish-coalescing-operator-7.7.4.tgz#e53b751d0c3061b1ba3089242524b65a7a9da12b"
- integrity sha512-XKh/yIRPiQTOeBg0QJjEus5qiSKucKAiApNtO1psqG7D17xmE+X2i5ZqBEuSvo0HRuyPaKaSN/Gy+Ha9KFQolw==
- dependencies:
- "@babel/helper-plugin-utils" "^7.0.0"
-
-"@babel/plugin-syntax-object-rest-spread@^7.2.0", "@babel/plugin-syntax-object-rest-spread@^7.7.4":
- version "7.7.4"
- resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-object-rest-spread/-/plugin-syntax-object-rest-spread-7.7.4.tgz#47cf220d19d6d0d7b154304701f468fc1cc6ff46"
- integrity sha512-mObR+r+KZq0XhRVS2BrBKBpr5jqrqzlPvS9C9vuOf5ilSwzloAl7RPWLrgKdWS6IreaVrjHxTjtyqFiOisaCwg==
- dependencies:
- "@babel/helper-plugin-utils" "^7.0.0"
-
-"@babel/plugin-syntax-optional-catch-binding@^7.2.0", "@babel/plugin-syntax-optional-catch-binding@^7.7.4":
- version "7.7.4"
- resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-optional-catch-binding/-/plugin-syntax-optional-catch-binding-7.7.4.tgz#a3e38f59f4b6233867b4a92dcb0ee05b2c334aa6"
- integrity sha512-4ZSuzWgFxqHRE31Glu+fEr/MirNZOMYmD/0BhBWyLyOOQz/gTAl7QmWm2hX1QxEIXsr2vkdlwxIzTyiYRC4xcQ==
- dependencies:
- "@babel/helper-plugin-utils" "^7.0.0"
-
-"@babel/plugin-syntax-optional-chaining@^7.7.4":
- version "7.7.4"
- resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-optional-chaining/-/plugin-syntax-optional-chaining-7.7.4.tgz#c91fdde6de85d2eb8906daea7b21944c3610c901"
- integrity sha512-2MqYD5WjZSbJdUagnJvIdSfkb/ucOC9/1fRJxm7GAxY6YQLWlUvkfxoNbUPcPLHJyetKUDQ4+yyuUyAoc0HriA==
- dependencies:
- "@babel/helper-plugin-utils" "^7.0.0"
-
-"@babel/plugin-syntax-top-level-await@^7.7.0":
- version "7.7.4"
- resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-top-level-await/-/plugin-syntax-top-level-await-7.7.4.tgz#bd7d8fa7b9fee793a36e4027fd6dd1aa32f946da"
- integrity sha512-wdsOw0MvkL1UIgiQ/IFr3ETcfv1xb8RMM0H9wbiDyLaJFyiDg5oZvDLCXosIXmFeIlweML5iOBXAkqddkYNizg==
- dependencies:
- "@babel/helper-plugin-utils" "^7.0.0"
-
-"@babel/plugin-syntax-typescript@^7.7.4":
- version "7.7.4"
- resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-typescript/-/plugin-syntax-typescript-7.7.4.tgz#5d037ffa10f3b25a16f32570ebbe7a8c2efa304b"
- integrity sha512-77blgY18Hud4NM1ggTA8xVT/dBENQf17OpiToSa2jSmEY3fWXD2jwrdVlO4kq5yzUTeF15WSQ6b4fByNvJcjpQ==
- dependencies:
- "@babel/helper-plugin-utils" "^7.0.0"
-
-"@babel/plugin-transform-arrow-functions@^7.2.0":
- version "7.7.4"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.7.4.tgz#76309bd578addd8aee3b379d809c802305a98a12"
- integrity sha512-zUXy3e8jBNPiffmqkHRNDdZM2r8DWhCB7HhcoyZjiK1TxYEluLHAvQuYnTT+ARqRpabWqy/NHkO6e3MsYB5YfA==
- dependencies:
- "@babel/helper-plugin-utils" "^7.0.0"
-
-"@babel/plugin-transform-async-to-generator@^7.7.0":
- version "7.7.4"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.7.4.tgz#694cbeae6d613a34ef0292713fa42fb45c4470ba"
- integrity sha512-zpUTZphp5nHokuy8yLlyafxCJ0rSlFoSHypTUWgpdwoDXWQcseaect7cJ8Ppk6nunOM6+5rPMkod4OYKPR5MUg==
- dependencies:
- "@babel/helper-module-imports" "^7.7.4"
- "@babel/helper-plugin-utils" "^7.0.0"
- "@babel/helper-remap-async-to-generator" "^7.7.4"
-
-"@babel/plugin-transform-block-scoped-functions@^7.2.0":
- version "7.7.4"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.7.4.tgz#d0d9d5c269c78eaea76227ace214b8d01e4d837b"
- integrity sha512-kqtQzwtKcpPclHYjLK//3lH8OFsCDuDJBaFhVwf8kqdnF6MN4l618UDlcA7TfRs3FayrHj+svYnSX8MC9zmUyQ==
- dependencies:
- "@babel/helper-plugin-utils" "^7.0.0"
-
-"@babel/plugin-transform-block-scoping@^7.6.3":
- version "7.7.4"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.7.4.tgz#200aad0dcd6bb80372f94d9e628ea062c58bf224"
- integrity sha512-2VBe9u0G+fDt9B5OV5DQH4KBf5DoiNkwFKOz0TCvBWvdAN2rOykCTkrL+jTLxfCAm76l9Qo5OqL7HBOx2dWggg==
- dependencies:
- "@babel/helper-plugin-utils" "^7.0.0"
- lodash "^4.17.13"
-
-"@babel/plugin-transform-classes@^7.7.0":
- version "7.7.4"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-classes/-/plugin-transform-classes-7.7.4.tgz#c92c14be0a1399e15df72667067a8f510c9400ec"
- integrity sha512-sK1mjWat7K+buWRuImEzjNf68qrKcrddtpQo3swi9j7dUcG6y6R6+Di039QN2bD1dykeswlagupEmpOatFHHUg==
- dependencies:
- "@babel/helper-annotate-as-pure" "^7.7.4"
- "@babel/helper-define-map" "^7.7.4"
- "@babel/helper-function-name" "^7.7.4"
- "@babel/helper-optimise-call-expression" "^7.7.4"
- "@babel/helper-plugin-utils" "^7.0.0"
- "@babel/helper-replace-supers" "^7.7.4"
- "@babel/helper-split-export-declaration" "^7.7.4"
- globals "^11.1.0"
-
-"@babel/plugin-transform-computed-properties@^7.2.0":
- version "7.7.4"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.7.4.tgz#e856c1628d3238ffe12d668eb42559f79a81910d"
- integrity sha512-bSNsOsZnlpLLyQew35rl4Fma3yKWqK3ImWMSC/Nc+6nGjC9s5NFWAer1YQ899/6s9HxO2zQC1WoFNfkOqRkqRQ==
- dependencies:
- "@babel/helper-plugin-utils" "^7.0.0"
-
-"@babel/plugin-transform-destructuring@^7.6.0":
- version "7.7.4"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.7.4.tgz#2b713729e5054a1135097b6a67da1b6fe8789267"
- integrity sha512-4jFMXI1Cu2aXbcXXl8Lr6YubCn6Oc7k9lLsu8v61TZh+1jny2BWmdtvY9zSUlLdGUvcy9DMAWyZEOqjsbeg/wA==
- dependencies:
- "@babel/helper-plugin-utils" "^7.0.0"
-
-"@babel/plugin-transform-dotall-regex@^7.4.4", "@babel/plugin-transform-dotall-regex@^7.7.0":
- version "7.7.7"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.7.7.tgz#3e9713f1b69f339e87fa796b097d73ded16b937b"
- integrity sha512-b4in+YlTeE/QmTgrllnb3bHA0HntYvjz8O3Mcbx75UBPJA2xhb5A8nle498VhxSXJHQefjtQxpnLPehDJ4TRlg==
- dependencies:
- "@babel/helper-create-regexp-features-plugin" "^7.7.4"
- "@babel/helper-plugin-utils" "^7.0.0"
-
-"@babel/plugin-transform-duplicate-keys@^7.5.0":
- version "7.7.4"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.7.4.tgz#3d21731a42e3f598a73835299dd0169c3b90ac91"
- integrity sha512-g1y4/G6xGWMD85Tlft5XedGaZBCIVN+/P0bs6eabmcPP9egFleMAo65OOjlhcz1njpwagyY3t0nsQC9oTFegJA==
- dependencies:
- "@babel/helper-plugin-utils" "^7.0.0"
-
-"@babel/plugin-transform-exponentiation-operator@^7.2.0":
- version "7.7.4"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.7.4.tgz#dd30c0191e3a1ba19bcc7e389bdfddc0729d5db9"
- integrity sha512-MCqiLfCKm6KEA1dglf6Uqq1ElDIZwFuzz1WH5mTf8k2uQSxEJMbOIEh7IZv7uichr7PMfi5YVSrr1vz+ipp7AQ==
- dependencies:
- "@babel/helper-builder-binary-assignment-operator-visitor" "^7.7.4"
- "@babel/helper-plugin-utils" "^7.0.0"
-
-"@babel/plugin-transform-for-of@^7.4.4":
- version "7.7.4"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.7.4.tgz#248800e3a5e507b1f103d8b4ca998e77c63932bc"
- integrity sha512-zZ1fD1B8keYtEcKF+M1TROfeHTKnijcVQm0yO/Yu1f7qoDoxEIc/+GX6Go430Bg84eM/xwPFp0+h4EbZg7epAA==
- dependencies:
- "@babel/helper-plugin-utils" "^7.0.0"
-
-"@babel/plugin-transform-function-name@^7.7.0":
- version "7.7.4"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.7.4.tgz#75a6d3303d50db638ff8b5385d12451c865025b1"
- integrity sha512-E/x09TvjHNhsULs2IusN+aJNRV5zKwxu1cpirZyRPw+FyyIKEHPXTsadj48bVpc1R5Qq1B5ZkzumuFLytnbT6g==
- dependencies:
- "@babel/helper-function-name" "^7.7.4"
- "@babel/helper-plugin-utils" "^7.0.0"
-
-"@babel/plugin-transform-literals@^7.2.0":
- version "7.7.4"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-literals/-/plugin-transform-literals-7.7.4.tgz#27fe87d2b5017a2a5a34d1c41a6b9f6a6262643e"
- integrity sha512-X2MSV7LfJFm4aZfxd0yLVFrEXAgPqYoDG53Br/tCKiKYfX0MjVjQeWPIhPHHsCqzwQANq+FLN786fF5rgLS+gw==
- dependencies:
- "@babel/helper-plugin-utils" "^7.0.0"
-
-"@babel/plugin-transform-member-expression-literals@^7.2.0":
- version "7.7.4"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-member-expression-literals/-/plugin-transform-member-expression-literals-7.7.4.tgz#aee127f2f3339fc34ce5e3055d7ffbf7aa26f19a"
- integrity sha512-9VMwMO7i69LHTesL0RdGy93JU6a+qOPuvB4F4d0kR0zyVjJRVJRaoaGjhtki6SzQUu8yen/vxPKN6CWnCUw6bA==
- dependencies:
- "@babel/helper-plugin-utils" "^7.0.0"
-
-"@babel/plugin-transform-modules-amd@^7.5.0":
- version "7.7.5"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.7.5.tgz#39e0fb717224b59475b306402bb8eedab01e729c"
- integrity sha512-CT57FG4A2ZUNU1v+HdvDSDrjNWBrtCmSH6YbbgN3Lrf0Di/q/lWRxZrE72p3+HCCz9UjfZOEBdphgC0nzOS6DQ==
- dependencies:
- "@babel/helper-module-transforms" "^7.7.5"
- "@babel/helper-plugin-utils" "^7.0.0"
- babel-plugin-dynamic-import-node "^2.3.0"
-
-"@babel/plugin-transform-modules-commonjs@7.7.0":
- version "7.7.0"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.7.0.tgz#3e5ffb4fd8c947feede69cbe24c9554ab4113fe3"
- integrity sha512-KEMyWNNWnjOom8vR/1+d+Ocz/mILZG/eyHHO06OuBQ2aNhxT62fr4y6fGOplRx+CxCSp3IFwesL8WdINfY/3kg==
- dependencies:
- "@babel/helper-module-transforms" "^7.7.0"
- "@babel/helper-plugin-utils" "^7.0.0"
- "@babel/helper-simple-access" "^7.7.0"
- babel-plugin-dynamic-import-node "^2.3.0"
-
-"@babel/plugin-transform-modules-commonjs@^7.7.0":
- version "7.7.5"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.7.5.tgz#1d27f5eb0bcf7543e774950e5b2fa782e637b345"
- integrity sha512-9Cq4zTFExwFhQI6MT1aFxgqhIsMWQWDVwOgLzl7PTWJHsNaqFvklAU+Oz6AQLAS0dJKTwZSOCo20INwktxpi3Q==
- dependencies:
- "@babel/helper-module-transforms" "^7.7.5"
- "@babel/helper-plugin-utils" "^7.0.0"
- "@babel/helper-simple-access" "^7.7.4"
- babel-plugin-dynamic-import-node "^2.3.0"
-
-"@babel/plugin-transform-modules-systemjs@^7.7.0":
- version "7.7.4"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.7.4.tgz#cd98152339d3e763dfe838b7d4273edaf520bb30"
- integrity sha512-y2c96hmcsUi6LrMqvmNDPBBiGCiQu0aYqpHatVVu6kD4mFEXKjyNxd/drc18XXAf9dv7UXjrZwBVmTTGaGP8iw==
- dependencies:
- "@babel/helper-hoist-variables" "^7.7.4"
- "@babel/helper-plugin-utils" "^7.0.0"
- babel-plugin-dynamic-import-node "^2.3.0"
-
-"@babel/plugin-transform-modules-umd@^7.7.0":
- version "7.7.4"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-umd/-/plugin-transform-modules-umd-7.7.4.tgz#1027c355a118de0aae9fee00ad7813c584d9061f"
- integrity sha512-u2B8TIi0qZI4j8q4C51ktfO7E3cQ0qnaXFI1/OXITordD40tt17g/sXqgNNCcMTcBFKrUPcGDx+TBJuZxLx7tw==
- dependencies:
- "@babel/helper-module-transforms" "^7.7.4"
- "@babel/helper-plugin-utils" "^7.0.0"
-
-"@babel/plugin-transform-named-capturing-groups-regex@^7.7.0":
- version "7.7.4"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.7.4.tgz#fb3bcc4ee4198e7385805007373d6b6f42c98220"
- integrity sha512-jBUkiqLKvUWpv9GLSuHUFYdmHg0ujC1JEYoZUfeOOfNydZXp1sXObgyPatpcwjWgsdBGsagWW0cdJpX/DO2jMw==
- dependencies:
- "@babel/helper-create-regexp-features-plugin" "^7.7.4"
-
-"@babel/plugin-transform-new-target@^7.4.4":
- version "7.7.4"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-new-target/-/plugin-transform-new-target-7.7.4.tgz#4a0753d2d60639437be07b592a9e58ee00720167"
- integrity sha512-CnPRiNtOG1vRodnsyGX37bHQleHE14B9dnnlgSeEs3ek3fHN1A1SScglTCg1sfbe7sRQ2BUcpgpTpWSfMKz3gg==
- dependencies:
- "@babel/helper-plugin-utils" "^7.0.0"
-
-"@babel/plugin-transform-object-super@^7.5.5":
- version "7.7.4"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.7.4.tgz#48488937a2d586c0148451bf51af9d7dda567262"
- integrity sha512-ho+dAEhC2aRnff2JCA0SAK7V2R62zJd/7dmtoe7MHcso4C2mS+vZjn1Pb1pCVZvJs1mgsvv5+7sT+m3Bysb6eg==
- dependencies:
- "@babel/helper-plugin-utils" "^7.0.0"
- "@babel/helper-replace-supers" "^7.7.4"
-
-"@babel/plugin-transform-parameters@^7.4.4":
- version "7.7.7"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.7.7.tgz#7a884b2460164dc5f194f668332736584c760007"
- integrity sha512-OhGSrf9ZBrr1fw84oFXj5hgi8Nmg+E2w5L7NhnG0lPvpDtqd7dbyilM2/vR8CKbJ907RyxPh2kj6sBCSSfI9Ew==
- dependencies:
- "@babel/helper-call-delegate" "^7.7.4"
- "@babel/helper-get-function-arity" "^7.7.4"
- "@babel/helper-plugin-utils" "^7.0.0"
-
-"@babel/plugin-transform-property-literals@^7.2.0":
- version "7.7.4"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-property-literals/-/plugin-transform-property-literals-7.7.4.tgz#2388d6505ef89b266103f450f9167e6bd73f98c2"
- integrity sha512-MatJhlC4iHsIskWYyawl53KuHrt+kALSADLQQ/HkhTjX954fkxIEh4q5slL4oRAnsm/eDoZ4q0CIZpcqBuxhJQ==
- dependencies:
- "@babel/helper-plugin-utils" "^7.0.0"
-
-"@babel/plugin-transform-react-display-name@^7.0.0":
- version "7.7.4"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-display-name/-/plugin-transform-react-display-name-7.7.4.tgz#9f2b80b14ebc97eef4a9b29b612c58ed9c0d10dd"
- integrity sha512-sBbIvqYkthai0X0vkD2xsAwluBp+LtNHH+/V4a5ydifmTtb8KOVOlrMIk/MYmIc4uTYDnjZUHQildYNo36SRJw==
- dependencies:
- "@babel/helper-plugin-utils" "^7.0.0"
-
-"@babel/plugin-transform-react-jsx-self@^7.0.0":
- version "7.7.4"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-jsx-self/-/plugin-transform-react-jsx-self-7.7.4.tgz#81b8fbfd14b2215e8f1c2c3adfba266127b0231c"
- integrity sha512-PWYjSfqrO273mc1pKCRTIJXyqfc9vWYBax88yIhQb+bpw3XChVC7VWS4VwRVs63wFHKxizvGSd00XEr+YB9Q2A==
- dependencies:
- "@babel/helper-plugin-utils" "^7.0.0"
- "@babel/plugin-syntax-jsx" "^7.7.4"
-
-"@babel/plugin-transform-react-jsx-source@^7.0.0":
- version "7.7.4"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-jsx-source/-/plugin-transform-react-jsx-source-7.7.4.tgz#8994b1bf6014b133f5a46d3b7d1ee5f5e3e72c10"
- integrity sha512-5ZU9FnPhqtHsOXxutRtXZAzoEJwDaP32QcobbMP1/qt7NYcsCNK8XgzJcJfoEr/ZnzVvUNInNjIW22Z6I8p9mg==
- dependencies:
- "@babel/helper-plugin-utils" "^7.0.0"
- "@babel/plugin-syntax-jsx" "^7.7.4"
-
-"@babel/plugin-transform-react-jsx@^7.7.0":
- version "7.7.7"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-jsx/-/plugin-transform-react-jsx-7.7.7.tgz#5cbaa7445b4a09f774029f3cc7bb448ff3122a5d"
- integrity sha512-SlPjWPbva2+7/ZJbGcoqjl4LsQaLpKEzxW9hcxU7675s24JmdotJOSJ4cgAbV82W3FcZpHIGmRZIlUL8ayMvjw==
- dependencies:
- "@babel/helper-builder-react-jsx" "^7.7.4"
- "@babel/helper-plugin-utils" "^7.0.0"
- "@babel/plugin-syntax-jsx" "^7.7.4"
-
-"@babel/plugin-transform-regenerator@^7.7.0":
- version "7.7.5"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.7.5.tgz#3a8757ee1a2780f390e89f246065ecf59c26fce9"
- integrity sha512-/8I8tPvX2FkuEyWbjRCt4qTAgZK0DVy8QRguhA524UH48RfGJy94On2ri+dCuwOpcerPRl9O4ebQkRcVzIaGBw==
- dependencies:
- regenerator-transform "^0.14.0"
-
-"@babel/plugin-transform-reserved-words@^7.2.0":
- version "7.7.4"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-reserved-words/-/plugin-transform-reserved-words-7.7.4.tgz#6a7cf123ad175bb5c69aec8f6f0770387ed3f1eb"
- integrity sha512-OrPiUB5s5XvkCO1lS7D8ZtHcswIC57j62acAnJZKqGGnHP+TIc/ljQSrgdX/QyOTdEK5COAhuc820Hi1q2UgLQ==
- dependencies:
- "@babel/helper-plugin-utils" "^7.0.0"
-
-"@babel/plugin-transform-runtime@7.6.2":
- version "7.6.2"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-runtime/-/plugin-transform-runtime-7.6.2.tgz#2669f67c1fae0ae8d8bf696e4263ad52cb98b6f8"
- integrity sha512-cqULw/QB4yl73cS5Y0TZlQSjDvNkzDbu0FurTZyHlJpWE5T3PCMdnyV+xXoH1opr1ldyHODe3QAX3OMAii5NxA==
- dependencies:
- "@babel/helper-module-imports" "^7.0.0"
- "@babel/helper-plugin-utils" "^7.0.0"
- resolve "^1.8.1"
- semver "^5.5.1"
-
-"@babel/plugin-transform-shorthand-properties@^7.2.0":
- version "7.7.4"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.7.4.tgz#74a0a9b2f6d67a684c6fbfd5f0458eb7ba99891e"
- integrity sha512-q+suddWRfIcnyG5YiDP58sT65AJDZSUhXQDZE3r04AuqD6d/XLaQPPXSBzP2zGerkgBivqtQm9XKGLuHqBID6Q==
- dependencies:
- "@babel/helper-plugin-utils" "^7.0.0"
-
-"@babel/plugin-transform-spread@^7.6.2":
- version "7.7.4"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-spread/-/plugin-transform-spread-7.7.4.tgz#aa673b356fe6b7e70d69b6e33a17fef641008578"
- integrity sha512-8OSs0FLe5/80cndziPlg4R0K6HcWSM0zyNhHhLsmw/Nc5MaA49cAsnoJ/t/YZf8qkG7fD+UjTRaApVDB526d7Q==
- dependencies:
- "@babel/helper-plugin-utils" "^7.0.0"
-
-"@babel/plugin-transform-sticky-regex@^7.2.0":
- version "7.7.4"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.7.4.tgz#ffb68c05090c30732076b1285dc1401b404a123c"
- integrity sha512-Ls2NASyL6qtVe1H1hXts9yuEeONV2TJZmplLONkMPUG158CtmnrzW5Q5teibM5UVOFjG0D3IC5mzXR6pPpUY7A==
- dependencies:
- "@babel/helper-plugin-utils" "^7.0.0"
- "@babel/helper-regex" "^7.0.0"
-
-"@babel/plugin-transform-template-literals@^7.4.4":
- version "7.7.4"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.7.4.tgz#1eb6411736dd3fe87dbd20cc6668e5121c17d604"
- integrity sha512-sA+KxLwF3QwGj5abMHkHgshp9+rRz+oY9uoRil4CyLtgEuE/88dpkeWgNk5qKVsJE9iSfly3nvHapdRiIS2wnQ==
- dependencies:
- "@babel/helper-annotate-as-pure" "^7.7.4"
- "@babel/helper-plugin-utils" "^7.0.0"
-
-"@babel/plugin-transform-typeof-symbol@^7.2.0":
- version "7.7.4"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.7.4.tgz#3174626214f2d6de322882e498a38e8371b2140e"
- integrity sha512-KQPUQ/7mqe2m0B8VecdyaW5XcQYaePyl9R7IsKd+irzj6jvbhoGnRE+M0aNkyAzI07VfUQ9266L5xMARitV3wg==
- dependencies:
- "@babel/helper-plugin-utils" "^7.0.0"
-
-"@babel/plugin-transform-typescript@^7.7.2":
- version "7.7.4"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-typescript/-/plugin-transform-typescript-7.7.4.tgz#2974fd05f4e85c695acaf497f432342de9fc0636"
- integrity sha512-X8e3tcPEKnwwPVG+vP/vSqEShkwODOEeyQGod82qrIuidwIrfnsGn11qPM1jBLF4MqguTXXYzm58d0dY+/wdpg==
- dependencies:
- "@babel/helper-create-class-features-plugin" "^7.7.4"
- "@babel/helper-plugin-utils" "^7.0.0"
- "@babel/plugin-syntax-typescript" "^7.7.4"
-
-"@babel/plugin-transform-unicode-regex@^7.7.0":
- version "7.7.4"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.7.4.tgz#a3c0f65b117c4c81c5b6484f2a5e7b95346b83ae"
- integrity sha512-N77UUIV+WCvE+5yHw+oks3m18/umd7y392Zv7mYTpFqHtkpcc+QUz+gLJNTWVlWROIWeLqY0f3OjZxV5TcXnRw==
- dependencies:
- "@babel/helper-create-regexp-features-plugin" "^7.7.4"
- "@babel/helper-plugin-utils" "^7.0.0"
-
-"@babel/preset-env@7.7.1":
- version "7.7.1"
- resolved "https://registry.yarnpkg.com/@babel/preset-env/-/preset-env-7.7.1.tgz#04a2ff53552c5885cf1083e291c8dd5490f744bb"
- integrity sha512-/93SWhi3PxcVTDpSqC+Dp4YxUu3qZ4m7I76k0w73wYfn7bGVuRIO4QUz95aJksbS+AD1/mT1Ie7rbkT0wSplaA==
- dependencies:
- "@babel/helper-module-imports" "^7.7.0"
- "@babel/helper-plugin-utils" "^7.0.0"
- "@babel/plugin-proposal-async-generator-functions" "^7.7.0"
- "@babel/plugin-proposal-dynamic-import" "^7.7.0"
- "@babel/plugin-proposal-json-strings" "^7.2.0"
- "@babel/plugin-proposal-object-rest-spread" "^7.6.2"
- "@babel/plugin-proposal-optional-catch-binding" "^7.2.0"
- "@babel/plugin-proposal-unicode-property-regex" "^7.7.0"
- "@babel/plugin-syntax-async-generators" "^7.2.0"
- "@babel/plugin-syntax-dynamic-import" "^7.2.0"
- "@babel/plugin-syntax-json-strings" "^7.2.0"
- "@babel/plugin-syntax-object-rest-spread" "^7.2.0"
- "@babel/plugin-syntax-optional-catch-binding" "^7.2.0"
- "@babel/plugin-syntax-top-level-await" "^7.7.0"
- "@babel/plugin-transform-arrow-functions" "^7.2.0"
- "@babel/plugin-transform-async-to-generator" "^7.7.0"
- "@babel/plugin-transform-block-scoped-functions" "^7.2.0"
- "@babel/plugin-transform-block-scoping" "^7.6.3"
- "@babel/plugin-transform-classes" "^7.7.0"
- "@babel/plugin-transform-computed-properties" "^7.2.0"
- "@babel/plugin-transform-destructuring" "^7.6.0"
- "@babel/plugin-transform-dotall-regex" "^7.7.0"
- "@babel/plugin-transform-duplicate-keys" "^7.5.0"
- "@babel/plugin-transform-exponentiation-operator" "^7.2.0"
- "@babel/plugin-transform-for-of" "^7.4.4"
- "@babel/plugin-transform-function-name" "^7.7.0"
- "@babel/plugin-transform-literals" "^7.2.0"
- "@babel/plugin-transform-member-expression-literals" "^7.2.0"
- "@babel/plugin-transform-modules-amd" "^7.5.0"
- "@babel/plugin-transform-modules-commonjs" "^7.7.0"
- "@babel/plugin-transform-modules-systemjs" "^7.7.0"
- "@babel/plugin-transform-modules-umd" "^7.7.0"
- "@babel/plugin-transform-named-capturing-groups-regex" "^7.7.0"
- "@babel/plugin-transform-new-target" "^7.4.4"
- "@babel/plugin-transform-object-super" "^7.5.5"
- "@babel/plugin-transform-parameters" "^7.4.4"
- "@babel/plugin-transform-property-literals" "^7.2.0"
- "@babel/plugin-transform-regenerator" "^7.7.0"
- "@babel/plugin-transform-reserved-words" "^7.2.0"
- "@babel/plugin-transform-shorthand-properties" "^7.2.0"
- "@babel/plugin-transform-spread" "^7.6.2"
- "@babel/plugin-transform-sticky-regex" "^7.2.0"
- "@babel/plugin-transform-template-literals" "^7.4.4"
- "@babel/plugin-transform-typeof-symbol" "^7.2.0"
- "@babel/plugin-transform-unicode-regex" "^7.7.0"
- "@babel/types" "^7.7.1"
- browserslist "^4.6.0"
- core-js-compat "^3.1.1"
- invariant "^2.2.2"
- js-levenshtein "^1.1.3"
- semver "^5.5.0"
-
-"@babel/preset-modules@0.1.1":
- version "0.1.1"
- resolved "https://registry.yarnpkg.com/@babel/preset-modules/-/preset-modules-0.1.1.tgz#add61473e3182771b36930c1312f3c56c114e406"
- integrity sha512-x/kt2aAZlgcFnP3P851fkkb2s4FmTiyGic58pkWMaRK9Am3u9KkH1ttHGjwlsKu7/TVJsLEBXZnjUxqsid3tww==
- dependencies:
- "@babel/helper-plugin-utils" "^7.0.0"
- "@babel/plugin-proposal-unicode-property-regex" "^7.4.4"
- "@babel/plugin-transform-dotall-regex" "^7.4.4"
- "@babel/types" "^7.4.4"
- esutils "^2.0.2"
-
-"@babel/preset-react@7.7.0":
- version "7.7.0"
- resolved "https://registry.yarnpkg.com/@babel/preset-react/-/preset-react-7.7.0.tgz#8ab0c4787d98cf1f5f22dabf115552bf9e4e406c"
- integrity sha512-IXXgSUYBPHUGhUkH+89TR6faMcBtuMW0h5OHbMuVbL3/5wK2g6a2M2BBpkLa+Kw0sAHiZ9dNVgqJMDP/O4GRBA==
- dependencies:
- "@babel/helper-plugin-utils" "^7.0.0"
- "@babel/plugin-transform-react-display-name" "^7.0.0"
- "@babel/plugin-transform-react-jsx" "^7.7.0"
- "@babel/plugin-transform-react-jsx-self" "^7.0.0"
- "@babel/plugin-transform-react-jsx-source" "^7.0.0"
-
-"@babel/preset-typescript@7.7.2":
- version "7.7.2"
- resolved "https://registry.yarnpkg.com/@babel/preset-typescript/-/preset-typescript-7.7.2.tgz#f71c8bba2ae02f11b29dbf7d6a35f47bbe011632"
- integrity sha512-1B4HthAelaLGfNRyrWqJtBEjXX1ulThCrLQ5B2VOtEAznWFIFXFJahgXImqppy66lx/Oh+cOSCQdJzZqh2Jh5g==
- dependencies:
- "@babel/helper-plugin-utils" "^7.0.0"
- "@babel/plugin-transform-typescript" "^7.7.2"
-
-"@babel/runtime-corejs2@7.7.2":
- version "7.7.2"
- resolved "https://registry.yarnpkg.com/@babel/runtime-corejs2/-/runtime-corejs2-7.7.2.tgz#5a8c4e2f8688ce58adc9eb1d8320b6e7341f96ce"
- integrity sha512-GfVnHchOBvIMsweQ13l4jd9lT4brkevnavnVOej5g2y7PpTRY+R4pcQlCjWMZoUla5rMLFzaS/Ll2s59cB1TqQ==
- dependencies:
- core-js "^2.6.5"
- regenerator-runtime "^0.13.2"
-
-"@babel/runtime@7.7.2":
- version "7.7.2"
- resolved "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.7.2.tgz#111a78002a5c25fc8e3361bedc9529c696b85a6a"
- integrity sha512-JONRbXbTXc9WQE2mAZd1p0Z3DZ/6vaQIkgYMSTP3KjRCyd7rCZCcfhCyX+YjwcKxcZ82UrxbRD358bpExNgrjw==
- dependencies:
- regenerator-runtime "^0.13.2"
-
-"@babel/runtime@^7.5.5", "@babel/runtime@^7.6.3", "@babel/runtime@^7.7.2":
- version "7.7.7"
- resolved "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.7.7.tgz#194769ca8d6d7790ec23605af9ee3e42a0aa79cf"
- integrity sha512-uCnC2JEVAu8AKB5do1WRIsvrdJ0flYx/A/9f/6chdacnEZ7LmavjdsDXr5ksYBegxtuTPR5Va9/+13QF/kFkCA==
- dependencies:
- regenerator-runtime "^0.13.2"
-
-"@babel/template@^7.7.0", "@babel/template@^7.7.4":
- version "7.7.4"
- resolved "https://registry.yarnpkg.com/@babel/template/-/template-7.7.4.tgz#428a7d9eecffe27deac0a98e23bf8e3675d2a77b"
- integrity sha512-qUzihgVPguAzXCK7WXw8pqs6cEwi54s3E+HrejlkuWO6ivMKx9hZl3Y2fSXp9i5HgyWmj7RKP+ulaYnKM4yYxw==
- dependencies:
- "@babel/code-frame" "^7.0.0"
- "@babel/parser" "^7.7.4"
- "@babel/types" "^7.7.4"
-
-"@babel/traverse@^7.7.2", "@babel/traverse@^7.7.4":
- version "7.7.4"
- resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.7.4.tgz#9c1e7c60fb679fe4fcfaa42500833333c2058558"
- integrity sha512-P1L58hQyupn8+ezVA2z5KBm4/Zr4lCC8dwKCMYzsa5jFMDMQAzaBNy9W5VjB+KAmBjb40U7a/H6ao+Xo+9saIw==
- dependencies:
- "@babel/code-frame" "^7.5.5"
- "@babel/generator" "^7.7.4"
- "@babel/helper-function-name" "^7.7.4"
- "@babel/helper-split-export-declaration" "^7.7.4"
- "@babel/parser" "^7.7.4"
- "@babel/types" "^7.7.4"
- debug "^4.1.0"
- globals "^11.1.0"
- lodash "^4.17.13"
-
-"@babel/types@^7.4.4", "@babel/types@^7.7.1", "@babel/types@^7.7.2", "@babel/types@^7.7.4":
- version "7.7.4"
- resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.7.4.tgz#516570d539e44ddf308c07569c258ff94fde9193"
- integrity sha512-cz5Ji23KCi4T+YIE/BolWosrJuSmoZeN1EFnRtBwF+KKLi8GG/Z2c2hOJJeCXPk4mwk4QFvTmwIodJowXgttRA==
- dependencies:
- esutils "^2.0.2"
- lodash "^4.17.13"
- to-fast-properties "^2.0.0"
-
-"@csstools/convert-colors@^1.4.0":
- version "1.4.0"
- resolved "https://registry.yarnpkg.com/@csstools/convert-colors/-/convert-colors-1.4.0.tgz#ad495dc41b12e75d588c6db8b9834f08fa131eb7"
- integrity sha512-5a6wqoJV/xEdbRNKVo6I4hO3VjyDq//8q2f9I6PBAvMesJHFauXDorcNCsr9RzvsZnaWi5NYCcfyqP1QeFHFbw==
-
-"@emotion/cache@^10.0.17":
- version "10.0.19"
- resolved "https://registry.yarnpkg.com/@emotion/cache/-/cache-10.0.19.tgz#d258d94d9c707dcadaf1558def968b86bb87ad71"
- integrity sha512-BoiLlk4vEsGBg2dAqGSJu0vJl/PgVtCYLBFJaEO8RmQzPugXewQCXZJNXTDFaRlfCs0W+quesayav4fvaif5WQ==
- dependencies:
- "@emotion/sheet" "0.9.3"
- "@emotion/stylis" "0.8.4"
- "@emotion/utils" "0.11.2"
- "@emotion/weak-memoize" "0.2.4"
-
-"@emotion/core@10.0.22":
- version "10.0.22"
- resolved "https://registry.yarnpkg.com/@emotion/core/-/core-10.0.22.tgz#2ac7bcf9b99a1979ab5b0a876fbf37ab0688b177"
- integrity sha512-7eoP6KQVUyOjAkE6y4fdlxbZRA4ILs7dqkkm6oZUJmihtHv0UBq98VgPirq9T8F9K2gKu0J/au/TpKryKMinaA==
- dependencies:
- "@babel/runtime" "^7.5.5"
- "@emotion/cache" "^10.0.17"
- "@emotion/css" "^10.0.22"
- "@emotion/serialize" "^0.11.12"
- "@emotion/sheet" "0.9.3"
- "@emotion/utils" "0.11.2"
-
-"@emotion/css@^10.0.22":
- version "10.0.22"
- resolved "https://registry.yarnpkg.com/@emotion/css/-/css-10.0.22.tgz#37b1abb6826759fe8ac0af0ac0034d27de6d1793"
- integrity sha512-8phfa5mC/OadBTmGpMpwykIVH0gFCbUoO684LUkyixPq4F1Wwri7fK5Xlm8lURNBrd2TuvTbPUGxFsGxF9UacA==
- dependencies:
- "@emotion/serialize" "^0.11.12"
- "@emotion/utils" "0.11.2"
- babel-plugin-emotion "^10.0.22"
-
-"@emotion/hash@0.7.3":
- version "0.7.3"
- resolved "https://registry.yarnpkg.com/@emotion/hash/-/hash-0.7.3.tgz#a166882c81c0c6040975dd30df24fae8549bd96f"
- integrity sha512-14ZVlsB9akwvydAdaEnVnvqu6J2P6ySv39hYyl/aoB6w/V+bXX0tay8cF6paqbgZsN2n5Xh15uF4pE+GvE+itw==
-
-"@emotion/is-prop-valid@0.8.5":
- version "0.8.5"
- resolved "https://registry.yarnpkg.com/@emotion/is-prop-valid/-/is-prop-valid-0.8.5.tgz#2dda0791f0eafa12b7a0a5b39858405cc7bde983"
- integrity sha512-6ZODuZSFofbxSbcxwsFz+6ioPjb0ISJRRPLZ+WIbjcU2IMU0Io+RGQjjaTgOvNQl007KICBm7zXQaYQEC1r6Bg==
- dependencies:
- "@emotion/memoize" "0.7.3"
-
-"@emotion/memoize@0.7.3":
- version "0.7.3"
- resolved "https://registry.yarnpkg.com/@emotion/memoize/-/memoize-0.7.3.tgz#5b6b1c11d6a6dddf1f2fc996f74cf3b219644d78"
- integrity sha512-2Md9mH6mvo+ygq1trTeVp2uzAKwE2P7In0cRpD/M9Q70aH8L+rxMLbb3JCN2JoSWsV2O+DdFjfbbXoMoLBczow==
-
-"@emotion/serialize@^0.11.12", "@emotion/serialize@^0.11.14":
- version "0.11.14"
- resolved "https://registry.yarnpkg.com/@emotion/serialize/-/serialize-0.11.14.tgz#56a6d8d04d837cc5b0126788b2134c51353c6488"
- integrity sha512-6hTsySIuQTbDbv00AnUO6O6Xafdwo5GswRlMZ5hHqiFx+4pZ7uGWXUQFW46Kc2taGhP89uXMXn/lWQkdyTosPA==
- dependencies:
- "@emotion/hash" "0.7.3"
- "@emotion/memoize" "0.7.3"
- "@emotion/unitless" "0.7.4"
- "@emotion/utils" "0.11.2"
- csstype "^2.5.7"
-
-"@emotion/sheet@0.9.3":
- version "0.9.3"
- resolved "https://registry.yarnpkg.com/@emotion/sheet/-/sheet-0.9.3.tgz#689f135ecf87d3c650ed0c4f5ddcbe579883564a"
- integrity sha512-c3Q6V7Df7jfwSq5AzQWbXHa5soeE4F5cbqi40xn0CzXxWW9/6Mxq48WJEtqfWzbZtW9odZdnRAkwCQwN12ob4A==
-
-"@emotion/styled-base@^10.0.23":
- version "10.0.24"
- resolved "https://registry.yarnpkg.com/@emotion/styled-base/-/styled-base-10.0.24.tgz#9497efd8902dfeddee89d24b0eeb26b0665bfe8b"
- integrity sha512-AnBImerf0h4dGAJVo0p0VE8KoAns71F28ErGFK474zbNAHX6yqSWQUasb+1jvg/VPwZjCp19+tAr6oOB0pwmLQ==
- dependencies:
- "@babel/runtime" "^7.5.5"
- "@emotion/is-prop-valid" "0.8.5"
- "@emotion/serialize" "^0.11.14"
- "@emotion/utils" "0.11.2"
-
-"@emotion/styled@10.0.23":
- version "10.0.23"
- resolved "https://registry.yarnpkg.com/@emotion/styled/-/styled-10.0.23.tgz#2f8279bd59b99d82deade76d1046249ddfab7c1b"
- integrity sha512-gNr04eqBQ2iYUx8wFLZDfm3N8/QUOODu/ReDXa693uyQGy2OqA+IhPJk+kA7id8aOfwAsMuvZ0pJImEXXKtaVQ==
- dependencies:
- "@emotion/styled-base" "^10.0.23"
- babel-plugin-emotion "^10.0.23"
-
-"@emotion/stylis@0.8.4":
- version "0.8.4"
- resolved "https://registry.yarnpkg.com/@emotion/stylis/-/stylis-0.8.4.tgz#6c51afdf1dd0d73666ba09d2eb6c25c220d6fe4c"
- integrity sha512-TLmkCVm8f8gH0oLv+HWKiu7e8xmBIaokhxcEKPh1m8pXiV/akCiq50FvYgOwY42rjejck8nsdQxZlXZ7pmyBUQ==
-
-"@emotion/unitless@0.7.4":
- version "0.7.4"
- resolved "https://registry.yarnpkg.com/@emotion/unitless/-/unitless-0.7.4.tgz#a87b4b04e5ae14a88d48ebef15015f6b7d1f5677"
- integrity sha512-kBa+cDHOR9jpRJ+kcGMsysrls0leukrm68DmFQoMIWQcXdr2cZvyvypWuGYT7U+9kAExUE7+T7r6G3C3A6L8MQ==
-
-"@emotion/utils@0.11.2":
- version "0.11.2"
- resolved "https://registry.yarnpkg.com/@emotion/utils/-/utils-0.11.2.tgz#713056bfdffb396b0a14f1c8f18e7b4d0d200183"
- integrity sha512-UHX2XklLl3sIaP6oiMmlVzT0J+2ATTVpf0dHQVyPJHTkOITvXfaSqnRk6mdDhV9pR8T/tHc3cex78IKXssmzrA==
-
-"@emotion/weak-memoize@0.2.4":
- version "0.2.4"
- resolved "https://registry.yarnpkg.com/@emotion/weak-memoize/-/weak-memoize-0.2.4.tgz#622a72bebd1e3f48d921563b4b60a762295a81fc"
- integrity sha512-6PYY5DVdAY1ifaQW6XYTnOMihmBVT27elqSjEoodchsGjzYlEsTQMcEhSud99kVawatyTZRTiVkJ/c6lwbQ7nA==
-
-"@types/parse-json@^4.0.0":
- version "4.0.0"
- resolved "https://registry.yarnpkg.com/@types/parse-json/-/parse-json-4.0.0.tgz#2f8bb441434d163b35fb8ffdccd7138927ffb8c0"
- integrity sha512-//oorEZjL6sbPcKUaCdIGlIUeH26mgzimjBB77G6XRgnDl/L5wOnpyBGRe/Mmf5CVW3PwEBE1NjiMZ/ssFh4wA==
-
-"@webassemblyjs/ast@1.8.5":
- version "1.8.5"
- resolved "https://registry.yarnpkg.com/@webassemblyjs/ast/-/ast-1.8.5.tgz#51b1c5fe6576a34953bf4b253df9f0d490d9e359"
- integrity sha512-aJMfngIZ65+t71C3y2nBBg5FFG0Okt9m0XEgWZ7Ywgn1oMAT8cNwx00Uv1cQyHtidq0Xn94R4TAywO+LCQ+ZAQ==
- dependencies:
- "@webassemblyjs/helper-module-context" "1.8.5"
- "@webassemblyjs/helper-wasm-bytecode" "1.8.5"
- "@webassemblyjs/wast-parser" "1.8.5"
-
-"@webassemblyjs/floating-point-hex-parser@1.8.5":
- version "1.8.5"
- resolved "https://registry.yarnpkg.com/@webassemblyjs/floating-point-hex-parser/-/floating-point-hex-parser-1.8.5.tgz#1ba926a2923613edce496fd5b02e8ce8a5f49721"
- integrity sha512-9p+79WHru1oqBh9ewP9zW95E3XAo+90oth7S5Re3eQnECGq59ly1Ri5tsIipKGpiStHsUYmY3zMLqtk3gTcOtQ==
-
-"@webassemblyjs/helper-api-error@1.8.5":
- version "1.8.5"
- resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-api-error/-/helper-api-error-1.8.5.tgz#c49dad22f645227c5edb610bdb9697f1aab721f7"
- integrity sha512-Za/tnzsvnqdaSPOUXHyKJ2XI7PDX64kWtURyGiJJZKVEdFOsdKUCPTNEVFZq3zJ2R0G5wc2PZ5gvdTRFgm81zA==
-
-"@webassemblyjs/helper-buffer@1.8.5":
- version "1.8.5"
- resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-buffer/-/helper-buffer-1.8.5.tgz#fea93e429863dd5e4338555f42292385a653f204"
- integrity sha512-Ri2R8nOS0U6G49Q86goFIPNgjyl6+oE1abW1pS84BuhP1Qcr5JqMwRFT3Ah3ADDDYGEgGs1iyb1DGX+kAi/c/Q==
-
-"@webassemblyjs/helper-code-frame@1.8.5":
- version "1.8.5"
- resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-code-frame/-/helper-code-frame-1.8.5.tgz#9a740ff48e3faa3022b1dff54423df9aa293c25e"
- integrity sha512-VQAadSubZIhNpH46IR3yWO4kZZjMxN1opDrzePLdVKAZ+DFjkGD/rf4v1jap744uPVU6yjL/smZbRIIJTOUnKQ==
- dependencies:
- "@webassemblyjs/wast-printer" "1.8.5"
-
-"@webassemblyjs/helper-fsm@1.8.5":
- version "1.8.5"
- resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-fsm/-/helper-fsm-1.8.5.tgz#ba0b7d3b3f7e4733da6059c9332275d860702452"
- integrity sha512-kRuX/saORcg8se/ft6Q2UbRpZwP4y7YrWsLXPbbmtepKr22i8Z4O3V5QE9DbZK908dh5Xya4Un57SDIKwB9eow==
-
-"@webassemblyjs/helper-module-context@1.8.5":
- version "1.8.5"
- resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-module-context/-/helper-module-context-1.8.5.tgz#def4b9927b0101dc8cbbd8d1edb5b7b9c82eb245"
- integrity sha512-/O1B236mN7UNEU4t9X7Pj38i4VoU8CcMHyy3l2cV/kIF4U5KoHXDVqcDuOs1ltkac90IM4vZdHc52t1x8Yfs3g==
- dependencies:
- "@webassemblyjs/ast" "1.8.5"
- mamacro "^0.0.3"
-
-"@webassemblyjs/helper-wasm-bytecode@1.8.5":
- version "1.8.5"
- resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-wasm-bytecode/-/helper-wasm-bytecode-1.8.5.tgz#537a750eddf5c1e932f3744206551c91c1b93e61"
- integrity sha512-Cu4YMYG3Ddl72CbmpjU/wbP6SACcOPVbHN1dI4VJNJVgFwaKf1ppeFJrwydOG3NDHxVGuCfPlLZNyEdIYlQ6QQ==
-
-"@webassemblyjs/helper-wasm-section@1.8.5":
- version "1.8.5"
- resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-wasm-section/-/helper-wasm-section-1.8.5.tgz#74ca6a6bcbe19e50a3b6b462847e69503e6bfcbf"
- integrity sha512-VV083zwR+VTrIWWtgIUpqfvVdK4ff38loRmrdDBgBT8ADXYsEZ5mPQ4Nde90N3UYatHdYoDIFb7oHzMncI02tA==
- dependencies:
- "@webassemblyjs/ast" "1.8.5"
- "@webassemblyjs/helper-buffer" "1.8.5"
- "@webassemblyjs/helper-wasm-bytecode" "1.8.5"
- "@webassemblyjs/wasm-gen" "1.8.5"
-
-"@webassemblyjs/ieee754@1.8.5":
- version "1.8.5"
- resolved "https://registry.yarnpkg.com/@webassemblyjs/ieee754/-/ieee754-1.8.5.tgz#712329dbef240f36bf57bd2f7b8fb9bf4154421e"
- integrity sha512-aaCvQYrvKbY/n6wKHb/ylAJr27GglahUO89CcGXMItrOBqRarUMxWLJgxm9PJNuKULwN5n1csT9bYoMeZOGF3g==
- dependencies:
- "@xtuc/ieee754" "^1.2.0"
-
-"@webassemblyjs/leb128@1.8.5":
- version "1.8.5"
- resolved "https://registry.yarnpkg.com/@webassemblyjs/leb128/-/leb128-1.8.5.tgz#044edeb34ea679f3e04cd4fd9824d5e35767ae10"
- integrity sha512-plYUuUwleLIziknvlP8VpTgO4kqNaH57Y3JnNa6DLpu/sGcP6hbVdfdX5aHAV716pQBKrfuU26BJK29qY37J7A==
- dependencies:
- "@xtuc/long" "4.2.2"
-
-"@webassemblyjs/utf8@1.8.5":
- version "1.8.5"
- resolved "https://registry.yarnpkg.com/@webassemblyjs/utf8/-/utf8-1.8.5.tgz#a8bf3b5d8ffe986c7c1e373ccbdc2a0915f0cedc"
- integrity sha512-U7zgftmQriw37tfD934UNInokz6yTmn29inT2cAetAsaU9YeVCveWEwhKL1Mg4yS7q//NGdzy79nlXh3bT8Kjw==
-
-"@webassemblyjs/wasm-edit@1.8.5":
- version "1.8.5"
- resolved "https://registry.yarnpkg.com/@webassemblyjs/wasm-edit/-/wasm-edit-1.8.5.tgz#962da12aa5acc1c131c81c4232991c82ce56e01a"
- integrity sha512-A41EMy8MWw5yvqj7MQzkDjU29K7UJq1VrX2vWLzfpRHt3ISftOXqrtojn7nlPsZ9Ijhp5NwuODuycSvfAO/26Q==
- dependencies:
- "@webassemblyjs/ast" "1.8.5"
- "@webassemblyjs/helper-buffer" "1.8.5"
- "@webassemblyjs/helper-wasm-bytecode" "1.8.5"
- "@webassemblyjs/helper-wasm-section" "1.8.5"
- "@webassemblyjs/wasm-gen" "1.8.5"
- "@webassemblyjs/wasm-opt" "1.8.5"
- "@webassemblyjs/wasm-parser" "1.8.5"
- "@webassemblyjs/wast-printer" "1.8.5"
-
-"@webassemblyjs/wasm-gen@1.8.5":
- version "1.8.5"
- resolved "https://registry.yarnpkg.com/@webassemblyjs/wasm-gen/-/wasm-gen-1.8.5.tgz#54840766c2c1002eb64ed1abe720aded714f98bc"
- integrity sha512-BCZBT0LURC0CXDzj5FXSc2FPTsxwp3nWcqXQdOZE4U7h7i8FqtFK5Egia6f9raQLpEKT1VL7zr4r3+QX6zArWg==
- dependencies:
- "@webassemblyjs/ast" "1.8.5"
- "@webassemblyjs/helper-wasm-bytecode" "1.8.5"
- "@webassemblyjs/ieee754" "1.8.5"
- "@webassemblyjs/leb128" "1.8.5"
- "@webassemblyjs/utf8" "1.8.5"
-
-"@webassemblyjs/wasm-opt@1.8.5":
- version "1.8.5"
- resolved "https://registry.yarnpkg.com/@webassemblyjs/wasm-opt/-/wasm-opt-1.8.5.tgz#b24d9f6ba50394af1349f510afa8ffcb8a63d264"
- integrity sha512-HKo2mO/Uh9A6ojzu7cjslGaHaUU14LdLbGEKqTR7PBKwT6LdPtLLh9fPY33rmr5wcOMrsWDbbdCHq4hQUdd37Q==
- dependencies:
- "@webassemblyjs/ast" "1.8.5"
- "@webassemblyjs/helper-buffer" "1.8.5"
- "@webassemblyjs/wasm-gen" "1.8.5"
- "@webassemblyjs/wasm-parser" "1.8.5"
-
-"@webassemblyjs/wasm-parser@1.8.5":
- version "1.8.5"
- resolved "https://registry.yarnpkg.com/@webassemblyjs/wasm-parser/-/wasm-parser-1.8.5.tgz#21576f0ec88b91427357b8536383668ef7c66b8d"
- integrity sha512-pi0SYE9T6tfcMkthwcgCpL0cM9nRYr6/6fjgDtL6q/ZqKHdMWvxitRi5JcZ7RI4SNJJYnYNaWy5UUrHQy998lw==
- dependencies:
- "@webassemblyjs/ast" "1.8.5"
- "@webassemblyjs/helper-api-error" "1.8.5"
- "@webassemblyjs/helper-wasm-bytecode" "1.8.5"
- "@webassemblyjs/ieee754" "1.8.5"
- "@webassemblyjs/leb128" "1.8.5"
- "@webassemblyjs/utf8" "1.8.5"
-
-"@webassemblyjs/wast-parser@1.8.5":
- version "1.8.5"
- resolved "https://registry.yarnpkg.com/@webassemblyjs/wast-parser/-/wast-parser-1.8.5.tgz#e10eecd542d0e7bd394f6827c49f3df6d4eefb8c"
- integrity sha512-daXC1FyKWHF1i11obK086QRlsMsY4+tIOKgBqI1lxAnkp9xe9YMcgOxm9kLe+ttjs5aWV2KKE1TWJCN57/Btsg==
- dependencies:
- "@webassemblyjs/ast" "1.8.5"
- "@webassemblyjs/floating-point-hex-parser" "1.8.5"
- "@webassemblyjs/helper-api-error" "1.8.5"
- "@webassemblyjs/helper-code-frame" "1.8.5"
- "@webassemblyjs/helper-fsm" "1.8.5"
- "@xtuc/long" "4.2.2"
-
-"@webassemblyjs/wast-printer@1.8.5":
- version "1.8.5"
- resolved "https://registry.yarnpkg.com/@webassemblyjs/wast-printer/-/wast-printer-1.8.5.tgz#114bbc481fd10ca0e23b3560fa812748b0bae5bc"
- integrity sha512-w0U0pD4EhlnvRyeJzBqaVSJAo9w/ce7/WPogeXLzGkO6hzhr4GnQIZ4W4uUt5b9ooAaXPtnXlj0gzsXEOUNYMg==
- dependencies:
- "@webassemblyjs/ast" "1.8.5"
- "@webassemblyjs/wast-parser" "1.8.5"
- "@xtuc/long" "4.2.2"
-
-"@xtuc/ieee754@^1.2.0":
- version "1.2.0"
- resolved "https://registry.yarnpkg.com/@xtuc/ieee754/-/ieee754-1.2.0.tgz#eef014a3145ae477a1cbc00cd1e552336dceb790"
- integrity sha512-DX8nKgqcGwsc0eJSqYt5lwP4DH5FlHnmuWWBRy7X0NcaGR0ZtuyeESgMwTYVEtxmsNGY+qit4QYT/MIYTOTPeA==
-
-"@xtuc/long@4.2.2":
- version "4.2.2"
- resolved "https://registry.yarnpkg.com/@xtuc/long/-/long-4.2.2.tgz#d291c6a4e97989b5c61d9acf396ae4fe133a718d"
- integrity sha512-NuHqBY1PB/D8xU6s/thBgOAiAP7HOYDQ32+BFZILJ8ivkUkAHQnWfn6WhL79Owj1qmUnoN/YPhktdIoucipkAQ==
-
-"@zeit/schemas@2.6.0":
- version "2.6.0"
- resolved "https://registry.yarnpkg.com/@zeit/schemas/-/schemas-2.6.0.tgz#004e8e553b4cd53d538bd38eac7bcbf58a867fe3"
- integrity sha512-uUrgZ8AxS+Lio0fZKAipJjAh415JyrOZowliZAzmnJSsf7piVL5w+G0+gFJ0KSu3QRhvui/7zuvpLz03YjXAhg==
-
-abbrev@1:
- version "1.1.1"
- resolved "https://registry.yarnpkg.com/abbrev/-/abbrev-1.1.1.tgz#f8f2c887ad10bf67f634f005b6987fed3179aac8"
- integrity sha512-nne9/IiQ/hzIhY6pdDnbBtz7DjPTKrY00P/zvPSm5pOFkl6xuGrGnXn/VtTNNfNtAfZ9/1RtehkszU9qcTii0Q==
-
-accepts@~1.3.5:
- version "1.3.7"
- resolved "https://registry.yarnpkg.com/accepts/-/accepts-1.3.7.tgz#531bc726517a3b2b41f850021c6cc15eaab507cd"
- integrity sha512-Il80Qs2WjYlJIBNzNkK6KYqlVMTbZLXgHx2oT0pU/fjRHyEp+PEfEPY0R3WCwAGVOtauxh1hOxNgIf5bv7dQpA==
- dependencies:
- mime-types "~2.1.24"
- negotiator "0.6.2"
-
-acorn@^6.2.1:
- version "6.4.0"
- resolved "https://registry.yarnpkg.com/acorn/-/acorn-6.4.0.tgz#b659d2ffbafa24baf5db1cdbb2c94a983ecd2784"
- integrity sha512-gac8OEcQ2Li1dxIEWGZzsp2BitJxwkwcOm0zHAJLcPJaVvm58FRnk6RkuLRpU1EujipU2ZFODv2P9DLMfnV8mw==
-
-ajv-errors@^1.0.0:
- version "1.0.1"
- resolved "https://registry.yarnpkg.com/ajv-errors/-/ajv-errors-1.0.1.tgz#f35986aceb91afadec4102fbd85014950cefa64d"
- integrity sha512-DCRfO/4nQ+89p/RK43i8Ezd41EqdGIU4ld7nGF8OQ14oc/we5rEntLCUa7+jrn3nn83BosfwZA0wb4pon2o8iQ==
-
-ajv-keywords@^3.1.0, ajv-keywords@^3.4.1:
- version "3.4.1"
- resolved "https://registry.yarnpkg.com/ajv-keywords/-/ajv-keywords-3.4.1.tgz#ef916e271c64ac12171fd8384eaae6b2345854da"
- integrity sha512-RO1ibKvd27e6FEShVFfPALuHI3WjSVNeK5FIsmme/LYRNxjKuNj+Dt7bucLa6NdSv3JcVTyMlm9kGR84z1XpaQ==
-
-ajv@6.5.3:
- version "6.5.3"
- resolved "https://registry.yarnpkg.com/ajv/-/ajv-6.5.3.tgz#71a569d189ecf4f4f321224fecb166f071dd90f9"
- integrity sha512-LqZ9wY+fx3UMiiPd741yB2pj3hhil+hQc8taf4o2QGRFpWgZ2V5C8HA165DY9sS3fJwsk7uT7ZlFEyC3Ig3lLg==
- dependencies:
- fast-deep-equal "^2.0.1"
- fast-json-stable-stringify "^2.0.0"
- json-schema-traverse "^0.4.1"
- uri-js "^4.2.2"
-
-ajv@^6.1.0, ajv@^6.10.0, ajv@^6.10.2:
- version "6.10.2"
- resolved "https://registry.yarnpkg.com/ajv/-/ajv-6.10.2.tgz#d3cea04d6b017b2894ad69040fec8b623eb4bd52"
- integrity sha512-TXtUUEYHuaTEbLZWIKUr5pmBuhDLy+8KYtPYdcV8qC+pOZL+NKqYwvWSRrVXHn+ZmRRAu8vJTAznH7Oag6RVRw==
- dependencies:
- fast-deep-equal "^2.0.1"
- fast-json-stable-stringify "^2.0.0"
- json-schema-traverse "^0.4.1"
- uri-js "^4.2.2"
-
-amphtml-validator@1.0.23:
- version "1.0.23"
- resolved "https://registry.yarnpkg.com/amphtml-validator/-/amphtml-validator-1.0.23.tgz#dba0c3854289563c0adaac292cd4d6096ee4d7c8"
- integrity sha1-26DDhUKJVjwK2qwpLNTWCW7k18g=
- dependencies:
- colors "1.1.2"
- commander "2.9.0"
- promise "7.1.1"
-
-ansi-align@^2.0.0:
- version "2.0.0"
- resolved "https://registry.yarnpkg.com/ansi-align/-/ansi-align-2.0.0.tgz#c36aeccba563b89ceb556f3690f0b1d9e3547f7f"
- integrity sha1-w2rsy6VjuJzrVW82kPCx2eNUf38=
- dependencies:
- string-width "^2.0.0"
-
-ansi-colors@^3.0.0:
- version "3.2.4"
- resolved "https://registry.yarnpkg.com/ansi-colors/-/ansi-colors-3.2.4.tgz#e3a3da4bfbae6c86a9c285625de124a234026fbf"
- integrity sha512-hHUXGagefjN2iRrID63xckIvotOXOojhQKWIPUZ4mNUZ9nLZW+7FMNoE1lOkEhNWYsx/7ysGIuJYCiMAA9FnrA==
-
-ansi-html@0.0.7:
- version "0.0.7"
- resolved "https://registry.yarnpkg.com/ansi-html/-/ansi-html-0.0.7.tgz#813584021962a9e9e6fd039f940d12f56ca7859e"
- integrity sha1-gTWEAhliqenm/QOflA0S9WynhZ4=
-
-ansi-regex@^2.0.0:
- version "2.1.1"
- resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-2.1.1.tgz#c3b33ab5ee360d86e0e628f0468ae7ef27d654df"
- integrity sha1-w7M6te42DYbg5ijwRorn7yfWVN8=
-
-ansi-regex@^3.0.0:
- version "3.0.0"
- resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-3.0.0.tgz#ed0317c322064f79466c02966bddb605ab37d998"
- integrity sha1-7QMXwyIGT3lGbAKWa922Bas32Zg=
-
-ansi-regex@^4.1.0:
- version "4.1.0"
- resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-4.1.0.tgz#8b9f8f08cf1acb843756a839ca8c7e3168c51997"
- integrity sha512-1apePfXM1UOSqw0o9IiFAovVz9M5S1Dg+4TrDwfMewQ6p/rmMueb7tWZjQ1rx4Loy1ArBggoqGpfqqdI4rondg==
-
-ansi-styles@^2.2.1:
- version "2.2.1"
- resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-2.2.1.tgz#b432dd3358b634cf75e1e4664368240533c1ddbe"
- integrity sha1-tDLdM1i2NM914eRmQ2gkBTPB3b4=
-
-ansi-styles@^3.2.1:
- version "3.2.1"
- resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-3.2.1.tgz#41fbb20243e50b12be0f04b8dedbf07520ce841d"
- integrity sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==
- dependencies:
- color-convert "^1.9.0"
-
-anymatch@^2.0.0:
- version "2.0.0"
- resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-2.0.0.tgz#bcb24b4f37934d9aa7ac17b4adaf89e7c76ef2eb"
- integrity sha512-5teOsQWABXHHBFP9y3skS5P3d/WfWXpv3FUpy+LorMrNYaT9pI4oLMQX7jzQ2KklNpGpWHzdCXTDT2Y3XGlZBw==
- dependencies:
- micromatch "^3.1.4"
- normalize-path "^2.1.1"
-
-anymatch@~3.1.1:
- version "3.1.1"
- resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-3.1.1.tgz#c55ecf02185e2469259399310c173ce31233b142"
- integrity sha512-mM8522psRCqzV+6LhomX5wgp25YVibjh8Wj23I5RPkPppSVSjyKD2A2mBJmWGa+KN7f2D6LNh9jkBCeyLktzjg==
- dependencies:
- normalize-path "^3.0.0"
- picomatch "^2.0.4"
-
-aproba@^1.0.3, aproba@^1.1.1:
- version "1.2.0"
- resolved "https://registry.yarnpkg.com/aproba/-/aproba-1.2.0.tgz#6802e6264efd18c790a1b0d517f0f2627bf2c94a"
- integrity sha512-Y9J6ZjXtoYh8RnXVCMOU/ttDmk1aBjunq9vO0ta5x85WDQiQfUF9sIPBITdbiiIVcBo03Hi3jMxigBtsddlXRw==
-
-arch@^2.1.0:
- version "2.1.1"
- resolved "https://registry.yarnpkg.com/arch/-/arch-2.1.1.tgz#8f5c2731aa35a30929221bb0640eed65175ec84e"
- integrity sha512-BLM56aPo9vLLFVa8+/+pJLnrZ7QGGTVHWsCwieAWT9o9K8UeGaQbzZbGoabWLOo2ksBCztoXdqBZBplqLDDCSg==
-
-are-we-there-yet@~1.1.2:
- version "1.1.5"
- resolved "https://registry.yarnpkg.com/are-we-there-yet/-/are-we-there-yet-1.1.5.tgz#4b35c2944f062a8bfcda66410760350fe9ddfc21"
- integrity sha512-5hYdAkZlcG8tOLujVDTgCT+uPX0VnpAH28gWsLfzpXYm7wP6mp5Q/gYyR7YQ0cKVJcXJnl3j2kpBan13PtQf6w==
- dependencies:
- delegates "^1.0.0"
- readable-stream "^2.0.6"
-
-arg@2.0.0:
- version "2.0.0"
- resolved "https://registry.yarnpkg.com/arg/-/arg-2.0.0.tgz#c06e7ff69ab05b3a4a03ebe0407fac4cba657545"
- integrity sha512-XxNTUzKnz1ctK3ZIcI2XUPlD96wbHP2nGqkPKpvk/HNRlPveYrXIVSTk9m3LcqOgDPg3B1nMvdV/K8wZd7PG4w==
-
-argparse@^1.0.7:
- version "1.0.10"
- resolved "https://registry.yarnpkg.com/argparse/-/argparse-1.0.10.tgz#bcd6791ea5ae09725e17e5ad988134cd40b3d911"
- integrity sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==
- dependencies:
- sprintf-js "~1.0.2"
-
-arr-diff@^4.0.0:
- version "4.0.0"
- resolved "https://registry.yarnpkg.com/arr-diff/-/arr-diff-4.0.0.tgz#d6461074febfec71e7e15235761a329a5dc7c520"
- integrity sha1-1kYQdP6/7HHn4VI1dhoyml3HxSA=
-
-arr-flatten@^1.1.0:
- version "1.1.0"
- resolved "https://registry.yarnpkg.com/arr-flatten/-/arr-flatten-1.1.0.tgz#36048bbff4e7b47e136644316c99669ea5ae91f1"
- integrity sha512-L3hKV5R/p5o81R7O02IGnwpDmkp6E982XhtbuwSe3O4qOtMMMtodicASA1Cny2U+aCXcNpml+m4dPsvsJ3jatg==
-
-arr-union@^3.1.0:
- version "3.1.0"
- resolved "https://registry.yarnpkg.com/arr-union/-/arr-union-3.1.0.tgz#e39b09aea9def866a8f206e288af63919bae39c4"
- integrity sha1-45sJrqne+Gao8gbiiK9jkZuuOcQ=
-
-array-union@^1.0.1:
- version "1.0.2"
- resolved "https://registry.yarnpkg.com/array-union/-/array-union-1.0.2.tgz#9a34410e4f4e3da23dea375be5be70f24778ec39"
- integrity sha1-mjRBDk9OPaI96jdb5b5w8kd47Dk=
- dependencies:
- array-uniq "^1.0.1"
-
-array-uniq@^1.0.1:
- version "1.0.3"
- resolved "https://registry.yarnpkg.com/array-uniq/-/array-uniq-1.0.3.tgz#af6ac877a25cc7f74e058894753858dfdb24fdb6"
- integrity sha1-r2rId6Jcx/dOBYiUdThY39sk/bY=
-
-array-unique@^0.3.2:
- version "0.3.2"
- resolved "https://registry.yarnpkg.com/array-unique/-/array-unique-0.3.2.tgz#a894b75d4bc4f6cd679ef3244a9fd8f46ae2d428"
- integrity sha1-qJS3XUvE9s1nnvMkSp/Y9Gri1Cg=
-
-asap@~2.0.3:
- version "2.0.6"
- resolved "https://registry.yarnpkg.com/asap/-/asap-2.0.6.tgz#e50347611d7e690943208bbdafebcbc2fb866d46"
- integrity sha1-5QNHYR1+aQlDIIu9r+vLwvuGbUY=
-
-asn1.js@^4.0.0:
- version "4.10.1"
- resolved "https://registry.yarnpkg.com/asn1.js/-/asn1.js-4.10.1.tgz#b9c2bf5805f1e64aadeed6df3a2bfafb5a73f5a0"
- integrity sha512-p32cOF5q0Zqs9uBiONKYLm6BClCoBCM5O9JfeUSlnQLBTxYdTK+pW+nXflm8UkKd2UYlEbYz5qEi0JuZR9ckSw==
- dependencies:
- bn.js "^4.0.0"
- inherits "^2.0.1"
- minimalistic-assert "^1.0.0"
-
-assert@^1.1.1:
- version "1.5.0"
- resolved "https://registry.yarnpkg.com/assert/-/assert-1.5.0.tgz#55c109aaf6e0aefdb3dc4b71240c70bf574b18eb"
- integrity sha512-EDsgawzwoun2CZkCgtxJbv392v4nbk9XDD06zI+kQYoBM/3RBWLlEyJARDOmhAAosBjWACEkKL6S+lIZtcAubA==
- dependencies:
- object-assign "^4.1.1"
- util "0.10.3"
-
-assign-symbols@^1.0.0:
- version "1.0.0"
- resolved "https://registry.yarnpkg.com/assign-symbols/-/assign-symbols-1.0.0.tgz#59667f41fadd4f20ccbc2bb96b8d4f7f78ec0367"
- integrity sha1-WWZ/QfrdTyDMvCu5a41Pf3jsA2c=
-
-async-each@^1.0.1:
- version "1.0.3"
- resolved "https://registry.yarnpkg.com/async-each/-/async-each-1.0.3.tgz#b727dbf87d7651602f06f4d4ac387f47d91b0cbf"
- integrity sha512-z/WhQ5FPySLdvREByI2vZiTWwCnF0moMJ1hK9YQwDTHKh6I7/uSckMetoRGb5UBZPC1z0jlw+n/XCgjeH7y1AQ==
-
-async-retry@1.2.3:
- version "1.2.3"
- resolved "https://registry.yarnpkg.com/async-retry/-/async-retry-1.2.3.tgz#a6521f338358d322b1a0012b79030c6f411d1ce0"
- integrity sha512-tfDb02Th6CE6pJUF2gjW5ZVjsgwlucVXOEQMvEX9JgSJMs9gAX+Nz3xRuJBKuUYjTSYORqvDBORdAQ3LU59g7Q==
- dependencies:
- retry "0.12.0"
-
-async-sema@3.0.0:
- version "3.0.0"
- resolved "https://registry.yarnpkg.com/async-sema/-/async-sema-3.0.0.tgz#9e22d6783f0ab66a1cf330e21a905e39b3b3a975"
- integrity sha512-zyCMBDl4m71feawrxYcVbHxv/UUkqm4nKJiLu3+l9lfiQha6jQ/9dxhrXLnzzBXVFqCTDwiUkZOz9XFbdEGQsg==
-
-atob@^2.1.1:
- version "2.1.2"
- resolved "https://registry.yarnpkg.com/atob/-/atob-2.1.2.tgz#6d9517eb9e030d2436666651e86bd9f6f13533c9"
- integrity sha512-Wm6ukoaOGJi/73p/cl2GvLjTI5JM1k/O14isD73YML8StrH/7/lRFgmg8nICZgD3bZZvjwCGxtMOD3wWNAu8cg==
-
-autodll-webpack-plugin@0.4.2:
- version "0.4.2"
- resolved "https://registry.yarnpkg.com/autodll-webpack-plugin/-/autodll-webpack-plugin-0.4.2.tgz#36e98fbaf30c235d1d5d076330464ac80901415c"
- integrity sha512-JLrV3ErBNKVkmhi0celM6PJkgYEtztFnXwsNBApjinpVHtIP3g/m2ZZSOvsAe7FoByfJzDhpOXBKFbH3k2UNjw==
- dependencies:
- bluebird "^3.5.0"
- del "^3.0.0"
- find-cache-dir "^1.0.0"
- lodash "^4.17.4"
- make-dir "^1.0.0"
- memory-fs "^0.4.1"
- read-pkg "^2.0.0"
- tapable "^1.0.0"
- webpack-merge "^4.1.0"
- webpack-sources "^1.0.1"
-
-autoprefixer@^9.6.1:
- version "9.7.3"
- resolved "https://registry.yarnpkg.com/autoprefixer/-/autoprefixer-9.7.3.tgz#fd42ed03f53de9beb4ca0d61fb4f7268a9bb50b4"
- integrity sha512-8T5Y1C5Iyj6PgkPSFd0ODvK9DIleuPKUPYniNxybS47g2k2wFgLZ46lGQHlBuGKIAEV8fbCDfKCCRS1tvOgc3Q==
- dependencies:
- browserslist "^4.8.0"
- caniuse-lite "^1.0.30001012"
- chalk "^2.4.2"
- normalize-range "^0.1.2"
- num2fraction "^1.2.2"
- postcss "^7.0.23"
- postcss-value-parser "^4.0.2"
-
-babel-code-frame@^6.22.0:
- version "6.26.0"
- resolved "https://registry.yarnpkg.com/babel-code-frame/-/babel-code-frame-6.26.0.tgz#63fd43f7dc1e3bb7ce35947db8fe369a3f58c74b"
- integrity sha1-Y/1D99weO7fONZR9uP42mj9Yx0s=
- dependencies:
- chalk "^1.1.3"
- esutils "^2.0.2"
- js-tokens "^3.0.2"
-
-babel-core@7.0.0-bridge.0:
- version "7.0.0-bridge.0"
- resolved "https://registry.yarnpkg.com/babel-core/-/babel-core-7.0.0-bridge.0.tgz#95a492ddd90f9b4e9a4a1da14eb335b87b634ece"
- integrity sha512-poPX9mZH/5CSanm50Q+1toVci6pv5KSRv/5TWCwtzQS5XEwn40BcCrgIeMFWP9CKKIniKXNxoIOnOq4VVlGXhg==
-
-babel-loader@8.0.6:
- version "8.0.6"
- resolved "https://registry.yarnpkg.com/babel-loader/-/babel-loader-8.0.6.tgz#e33bdb6f362b03f4bb141a0c21ab87c501b70dfb"
- integrity sha512-4BmWKtBOBm13uoUwd08UwjZlaw3O9GWf456R9j+5YykFZ6LUIjIKLc0zEZf+hauxPOJs96C8k6FvYD09vWzhYw==
- dependencies:
- find-cache-dir "^2.0.0"
- loader-utils "^1.0.2"
- mkdirp "^0.5.1"
- pify "^4.0.1"
-
-babel-plugin-dynamic-import-node@^2.3.0:
- version "2.3.0"
- resolved "https://registry.yarnpkg.com/babel-plugin-dynamic-import-node/-/babel-plugin-dynamic-import-node-2.3.0.tgz#f00f507bdaa3c3e3ff6e7e5e98d90a7acab96f7f"
- integrity sha512-o6qFkpeQEBxcqt0XYlWzAVxNCSCZdUgcR8IRlhD/8DylxjjO4foPcvTW0GGKa/cVt3rvxZ7o5ippJ+/0nvLhlQ==
- dependencies:
- object.assign "^4.1.0"
-
-babel-plugin-emotion@10.0.23, babel-plugin-emotion@^10.0.22, babel-plugin-emotion@^10.0.23:
- version "10.0.23"
- resolved "https://registry.yarnpkg.com/babel-plugin-emotion/-/babel-plugin-emotion-10.0.23.tgz#040d40bf61dcab6d31dd6043d10e180240b8515b"
- integrity sha512-1JiCyXU0t5S2xCbItejCduLGGcKmF3POT0Ujbexog2MI4IlRcIn/kWjkYwCUZlxpON0O5FC635yPl/3slr7cKQ==
- dependencies:
- "@babel/helper-module-imports" "^7.0.0"
- "@emotion/hash" "0.7.3"
- "@emotion/memoize" "0.7.3"
- "@emotion/serialize" "^0.11.14"
- babel-plugin-macros "^2.0.0"
- babel-plugin-syntax-jsx "^6.18.0"
- convert-source-map "^1.5.0"
- escape-string-regexp "^1.0.5"
- find-root "^1.1.0"
- source-map "^0.5.7"
-
-babel-plugin-macros@^2.0.0:
- version "2.8.0"
- resolved "https://registry.yarnpkg.com/babel-plugin-macros/-/babel-plugin-macros-2.8.0.tgz#0f958a7cc6556b1e65344465d99111a1e5e10138"
- integrity sha512-SEP5kJpfGYqYKpBrj5XU3ahw5p5GOHJ0U5ssOSQ/WBVdwkD2Dzlce95exQTs3jOVWPPKLBN2rlEWkCK7dSmLvg==
- dependencies:
- "@babel/runtime" "^7.7.2"
- cosmiconfig "^6.0.0"
- resolve "^1.12.0"
-
-babel-plugin-syntax-jsx@6.18.0, babel-plugin-syntax-jsx@^6.18.0:
- version "6.18.0"
- resolved "https://registry.yarnpkg.com/babel-plugin-syntax-jsx/-/babel-plugin-syntax-jsx-6.18.0.tgz#0af32a9a6e13ca7a3fd5069e62d7b0f58d0d8946"
- integrity sha1-CvMqmm4Tyno/1QaeYtew9Y0NiUY=
-
-babel-plugin-transform-define@2.0.0:
- version "2.0.0"
- resolved "https://registry.yarnpkg.com/babel-plugin-transform-define/-/babel-plugin-transform-define-2.0.0.tgz#79c3536635f899aabaf830b194b25519465675a4"
- integrity sha512-0dv5RNRUlUKxGYIIErl01lpvi8b7W2R04Qcl1mCj70ahwZcgiklfXnFlh4FGnRh6aayCfSZKdhiMryVzcq5Dmg==
- dependencies:
- lodash "^4.17.11"
- traverse "0.6.6"
-
-babel-plugin-transform-react-remove-prop-types@0.4.24:
- version "0.4.24"
- resolved "https://registry.yarnpkg.com/babel-plugin-transform-react-remove-prop-types/-/babel-plugin-transform-react-remove-prop-types-0.4.24.tgz#f2edaf9b4c6a5fbe5c1d678bfb531078c1555f3a"
- integrity sha512-eqj0hVcJUR57/Ug2zE1Yswsw4LhuqqHhD+8v120T1cl3kjg76QwtyBrdIk4WVwK+lAhBJVYCd/v+4nc4y+8JsA==
-
-babel-runtime@^6.26.0:
- version "6.26.0"
- resolved "https://registry.yarnpkg.com/babel-runtime/-/babel-runtime-6.26.0.tgz#965c7058668e82b55d7bfe04ff2337bc8b5647fe"
- integrity sha1-llxwWGaOgrVde/4E/yM3vItWR/4=
- dependencies:
- core-js "^2.4.0"
- regenerator-runtime "^0.11.0"
-
-babel-types@6.26.0:
- version "6.26.0"
- resolved "https://registry.yarnpkg.com/babel-types/-/babel-types-6.26.0.tgz#a3b073f94ab49eb6fa55cd65227a334380632497"
- integrity sha1-o7Bz+Uq0nrb6Vc1lInozQ4BjJJc=
- dependencies:
- babel-runtime "^6.26.0"
- esutils "^2.0.2"
- lodash "^4.17.4"
- to-fast-properties "^1.0.3"
-
-balanced-match@^1.0.0:
- version "1.0.0"
- resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.0.tgz#89b4d199ab2bee49de164ea02b89ce462d71b767"
- integrity sha1-ibTRmasr7kneFk6gK4nORi1xt2c=
-
-base64-js@^1.0.2:
- version "1.3.1"
- resolved "https://registry.yarnpkg.com/base64-js/-/base64-js-1.3.1.tgz#58ece8cb75dd07e71ed08c736abc5fac4dbf8df1"
- integrity sha512-mLQ4i2QO1ytvGWFWmcngKO//JXAQueZvwEKtjgQFM4jIK0kU+ytMfplL8j+n5mspOfjHwoAg+9yhb7BwAHm36g==
-
-base@^0.11.1:
- version "0.11.2"
- resolved "https://registry.yarnpkg.com/base/-/base-0.11.2.tgz#7bde5ced145b6d551a90db87f83c558b4eb48a8f"
- integrity sha512-5T6P4xPgpp0YDFvSWwEZ4NoE3aM4QBQXDzmVbraCkFj8zHM+mba8SyqB5DbZWyR7mYHo6Y7BdQo3MoA4m0TeQg==
- dependencies:
- cache-base "^1.0.1"
- class-utils "^0.3.5"
- component-emitter "^1.2.1"
- define-property "^1.0.0"
- isobject "^3.0.1"
- mixin-deep "^1.2.0"
- pascalcase "^0.1.1"
-
-big.js@^5.2.2:
- version "5.2.2"
- resolved "https://registry.yarnpkg.com/big.js/-/big.js-5.2.2.tgz#65f0af382f578bcdc742bd9c281e9cb2d7768328"
- integrity sha512-vyL2OymJxmarO8gxMr0mhChsO9QGwhynfuu4+MHTAW6czfq9humCB7rKpUjDd9YUiDPU4mzpyupFSvOClAwbmQ==
-
-binary-extensions@^1.0.0:
- version "1.13.1"
- resolved "https://registry.yarnpkg.com/binary-extensions/-/binary-extensions-1.13.1.tgz#598afe54755b2868a5330d2aff9d4ebb53209b65"
- integrity sha512-Un7MIEDdUC5gNpcGDV97op1Ywk748MpHcFTHoYs6qnj1Z3j7I53VG3nwZhKzoBZmbdRNnb6WRdFlwl7tSDuZGw==
-
-binary-extensions@^2.0.0:
- version "2.0.0"
- resolved "https://registry.yarnpkg.com/binary-extensions/-/binary-extensions-2.0.0.tgz#23c0df14f6a88077f5f986c0d167ec03c3d5537c"
- integrity sha512-Phlt0plgpIIBOGTT/ehfFnbNlfsDEiqmzE2KRXoX1bLIlir4X/MR+zSyBEkL05ffWgnRSf/DXv+WrUAVr93/ow==
-
-bindings@^1.5.0:
- version "1.5.0"
- resolved "https://registry.yarnpkg.com/bindings/-/bindings-1.5.0.tgz#10353c9e945334bc0511a6d90b38fbc7c9c504df"
- integrity sha512-p2q/t/mhvuOj/UeLlV6566GD/guowlr0hHxClI0W9m7MWYkL1F0hLo+0Aexs9HSPCtR1SXQ0TD3MMKrXZajbiQ==
- dependencies:
- file-uri-to-path "1.0.0"
-
-bluebird@^3.5.0, bluebird@^3.5.5:
- version "3.7.2"
- resolved "https://registry.yarnpkg.com/bluebird/-/bluebird-3.7.2.tgz#9f229c15be272454ffa973ace0dbee79a1b0c36f"
- integrity sha512-XpNj6GDQzdfW+r2Wnn7xiSAd7TM3jzkxGXBGTtWKuSXv1xUV+azxAm8jdWZN06QTQk+2N2XB9jRDkvbmQmcRtg==
-
-bn.js@^4.0.0, bn.js@^4.1.0, bn.js@^4.1.1, bn.js@^4.4.0:
- version "4.11.8"
- resolved "https://registry.yarnpkg.com/bn.js/-/bn.js-4.11.8.tgz#2cde09eb5ee341f484746bb0309b3253b1b1442f"
- integrity sha512-ItfYfPLkWHUjckQCk8xC+LwxgK8NYcXywGigJgSwOP8Y2iyWT4f2vsZnoOXTTbo+o5yXmIUJ4gn5538SO5S3gA==
-
-boxen@1.3.0:
- version "1.3.0"
- resolved "https://registry.yarnpkg.com/boxen/-/boxen-1.3.0.tgz#55c6c39a8ba58d9c61ad22cd877532deb665a20b"
- integrity sha512-TNPjfTr432qx7yOjQyaXm3dSR0MH9vXp7eT1BFSl/C51g+EFnOR9hTg1IreahGBmDNCehscshe45f+C1TBZbLw==
- dependencies:
- ansi-align "^2.0.0"
- camelcase "^4.0.0"
- chalk "^2.0.1"
- cli-boxes "^1.0.0"
- string-width "^2.0.0"
- term-size "^1.2.0"
- widest-line "^2.0.0"
-
-brace-expansion@^1.1.7:
- version "1.1.11"
- resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.11.tgz#3c7fcbf529d87226f3d2f52b966ff5271eb441dd"
- integrity sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==
- dependencies:
- balanced-match "^1.0.0"
- concat-map "0.0.1"
-
-braces@^2.3.1, braces@^2.3.2:
- version "2.3.2"
- resolved "https://registry.yarnpkg.com/braces/-/braces-2.3.2.tgz#5979fd3f14cd531565e5fa2df1abfff1dfaee729"
- integrity sha512-aNdbnj9P8PjdXU4ybaWLK2IF3jc/EoDYbC7AazW6to3TRsfXxscC9UXOB5iDiEQrkyIbWp2SLQda4+QAa7nc3w==
- dependencies:
- arr-flatten "^1.1.0"
- array-unique "^0.3.2"
- extend-shallow "^2.0.1"
- fill-range "^4.0.0"
- isobject "^3.0.1"
- repeat-element "^1.1.2"
- snapdragon "^0.8.1"
- snapdragon-node "^2.0.1"
- split-string "^3.0.2"
- to-regex "^3.0.1"
-
-braces@~3.0.2:
- version "3.0.2"
- resolved "https://registry.yarnpkg.com/braces/-/braces-3.0.2.tgz#3454e1a462ee8d599e236df336cd9ea4f8afe107"
- integrity sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==
- dependencies:
- fill-range "^7.0.1"
-
-brorand@^1.0.1:
- version "1.1.0"
- resolved "https://registry.yarnpkg.com/brorand/-/brorand-1.1.0.tgz#12c25efe40a45e3c323eb8675a0a0ce57b22371f"
- integrity sha1-EsJe/kCkXjwyPrhnWgoM5XsiNx8=
-
-browserify-aes@^1.0.0, browserify-aes@^1.0.4:
- version "1.2.0"
- resolved "https://registry.yarnpkg.com/browserify-aes/-/browserify-aes-1.2.0.tgz#326734642f403dabc3003209853bb70ad428ef48"
- integrity sha512-+7CHXqGuspUn/Sl5aO7Ea0xWGAtETPXNSAjHo48JfLdPWcMng33Xe4znFvQweqc/uzk5zSOI3H52CYnjCfb5hA==
- dependencies:
- buffer-xor "^1.0.3"
- cipher-base "^1.0.0"
- create-hash "^1.1.0"
- evp_bytestokey "^1.0.3"
- inherits "^2.0.1"
- safe-buffer "^5.0.1"
-
-browserify-cipher@^1.0.0:
- version "1.0.1"
- resolved "https://registry.yarnpkg.com/browserify-cipher/-/browserify-cipher-1.0.1.tgz#8d6474c1b870bfdabcd3bcfcc1934a10e94f15f0"
- integrity sha512-sPhkz0ARKbf4rRQt2hTpAHqn47X3llLkUGn+xEJzLjwY8LRs2p0v7ljvI5EyoRO/mexrNunNECisZs+gw2zz1w==
- dependencies:
- browserify-aes "^1.0.4"
- browserify-des "^1.0.0"
- evp_bytestokey "^1.0.0"
-
-browserify-des@^1.0.0:
- version "1.0.2"
- resolved "https://registry.yarnpkg.com/browserify-des/-/browserify-des-1.0.2.tgz#3af4f1f59839403572f1c66204375f7a7f703e9c"
- integrity sha512-BioO1xf3hFwz4kc6iBhI3ieDFompMhrMlnDFC4/0/vd5MokpuAc3R+LYbwTA9A5Yc9pq9UYPqffKpW2ObuwX5A==
- dependencies:
- cipher-base "^1.0.1"
- des.js "^1.0.0"
- inherits "^2.0.1"
- safe-buffer "^5.1.2"
-
-browserify-rsa@^4.0.0:
- version "4.0.1"
- resolved "https://registry.yarnpkg.com/browserify-rsa/-/browserify-rsa-4.0.1.tgz#21e0abfaf6f2029cf2fafb133567a701d4135524"
- integrity sha1-IeCr+vbyApzy+vsTNWenAdQTVSQ=
- dependencies:
- bn.js "^4.1.0"
- randombytes "^2.0.1"
-
-browserify-sign@^4.0.0:
- version "4.0.4"
- resolved "https://registry.yarnpkg.com/browserify-sign/-/browserify-sign-4.0.4.tgz#aa4eb68e5d7b658baa6bf6a57e630cbd7a93d298"
- integrity sha1-qk62jl17ZYuqa/alfmMMvXqT0pg=
- dependencies:
- bn.js "^4.1.1"
- browserify-rsa "^4.0.0"
- create-hash "^1.1.0"
- create-hmac "^1.1.2"
- elliptic "^6.0.0"
- inherits "^2.0.1"
- parse-asn1 "^5.0.0"
-
-browserify-zlib@^0.2.0:
- version "0.2.0"
- resolved "https://registry.yarnpkg.com/browserify-zlib/-/browserify-zlib-0.2.0.tgz#2869459d9aa3be245fe8fe2ca1f46e2e7f54d73f"
- integrity sha512-Z942RysHXmJrhqk88FmKBVq/v5tqmSkDz7p54G/MGyjMnCFFnC79XWNbg+Vta8W6Wb2qtSZTSxIGkJrRpCFEiA==
- dependencies:
- pako "~1.0.5"
-
-browserslist@^4.6.0, browserslist@^4.6.4, browserslist@^4.8.0, browserslist@^4.8.2:
- version "4.8.2"
- resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-4.8.2.tgz#b45720ad5fbc8713b7253c20766f701c9a694289"
- integrity sha512-+M4oeaTplPm/f1pXDw84YohEv7B1i/2Aisei8s4s6k3QsoSHa7i5sz8u/cGQkkatCPxMASKxPualR4wwYgVboA==
- dependencies:
- caniuse-lite "^1.0.30001015"
- electron-to-chromium "^1.3.322"
- node-releases "^1.1.42"
-
-buffer-from@^1.0.0:
- version "1.1.1"
- resolved "https://registry.yarnpkg.com/buffer-from/-/buffer-from-1.1.1.tgz#32713bc028f75c02fdb710d7c7bcec1f2c6070ef"
- integrity sha512-MQcXEUbCKtEo7bhqEs6560Hyd4XaovZlO/k9V3hjVUF/zwW7KBVdSK4gIt/bzwS9MbR5qob+F5jusZsb0YQK2A==
-
-buffer-xor@^1.0.3:
- version "1.0.3"
- resolved "https://registry.yarnpkg.com/buffer-xor/-/buffer-xor-1.0.3.tgz#26e61ed1422fb70dd42e6e36729ed51d855fe8d9"
- integrity sha1-JuYe0UIvtw3ULm42cp7VHYVf6Nk=
-
-buffer@^4.3.0:
- version "4.9.2"
- resolved "https://registry.yarnpkg.com/buffer/-/buffer-4.9.2.tgz#230ead344002988644841ab0244af8c44bbe3ef8"
- integrity sha512-xq+q3SRMOxGivLhBNaUdC64hDTQwejJ+H0T/NB1XMtTVEwNTrfFF3gAxiyW0Bu/xWEGhjVKgUcMhCrUy2+uCWg==
- dependencies:
- base64-js "^1.0.2"
- ieee754 "^1.1.4"
- isarray "^1.0.0"
-
-builtin-status-codes@^3.0.0:
- version "3.0.0"
- resolved "https://registry.yarnpkg.com/builtin-status-codes/-/builtin-status-codes-3.0.0.tgz#85982878e21b98e1c66425e03d0174788f569ee8"
- integrity sha1-hZgoeOIbmOHGZCXgPQF0eI9Wnug=
-
-bytes@3.0.0:
- version "3.0.0"
- resolved "https://registry.yarnpkg.com/bytes/-/bytes-3.0.0.tgz#d32815404d689699f85a4ea4fa8755dd13a96048"
- integrity sha1-0ygVQE1olpn4Wk6k+odV3ROpYEg=
-
-bytes@3.1.0:
- version "3.1.0"
- resolved "https://registry.yarnpkg.com/bytes/-/bytes-3.1.0.tgz#f6cf7933a360e0588fa9fde85651cdc7f805d1f6"
- integrity sha512-zauLjrfCG+xvoyaqLoV8bLVXXNGC4JqlxFCutSDWA6fJrTo2ZuvLYTqZ7aHBLZSMOopbzwv8f+wZcVzfVTI2Dg==
-
-cacache@^12.0.2:
- version "12.0.3"
- resolved "https://registry.yarnpkg.com/cacache/-/cacache-12.0.3.tgz#be99abba4e1bf5df461cd5a2c1071fc432573390"
- integrity sha512-kqdmfXEGFepesTuROHMs3MpFLWrPkSSpRqOw80RCflZXy/khxaArvFrQ7uJxSUduzAufc6G0g1VUCOZXxWavPw==
- dependencies:
- bluebird "^3.5.5"
- chownr "^1.1.1"
- figgy-pudding "^3.5.1"
- glob "^7.1.4"
- graceful-fs "^4.1.15"
- infer-owner "^1.0.3"
- lru-cache "^5.1.1"
- mississippi "^3.0.0"
- mkdirp "^0.5.1"
- move-concurrently "^1.0.1"
- promise-inflight "^1.0.1"
- rimraf "^2.6.3"
- ssri "^6.0.1"
- unique-filename "^1.1.1"
- y18n "^4.0.0"
-
-cache-base@^1.0.1:
- version "1.0.1"
- resolved "https://registry.yarnpkg.com/cache-base/-/cache-base-1.0.1.tgz#0a7f46416831c8b662ee36fe4e7c59d76f666ab2"
- integrity sha512-AKcdTnFSWATd5/GCPRxr2ChwIJ85CeyrEyjRHlKxQ56d4XJMGym0uAiKn0xbLOGOl3+yRpOTi484dVCEc5AUzQ==
- dependencies:
- collection-visit "^1.0.0"
- component-emitter "^1.2.1"
- get-value "^2.0.6"
- has-value "^1.0.0"
- isobject "^3.0.1"
- set-value "^2.0.0"
- to-object-path "^0.3.0"
- union-value "^1.0.0"
- unset-value "^1.0.0"
-
-caller-callsite@^2.0.0:
- version "2.0.0"
- resolved "https://registry.yarnpkg.com/caller-callsite/-/caller-callsite-2.0.0.tgz#847e0fce0a223750a9a027c54b33731ad3154134"
- integrity sha1-hH4PzgoiN1CpoCfFSzNzGtMVQTQ=
- dependencies:
- callsites "^2.0.0"
-
-caller-path@^2.0.0:
- version "2.0.0"
- resolved "https://registry.yarnpkg.com/caller-path/-/caller-path-2.0.0.tgz#468f83044e369ab2010fac5f06ceee15bb2cb1f4"
- integrity sha1-Ro+DBE42mrIBD6xfBs7uFbsssfQ=
- dependencies:
- caller-callsite "^2.0.0"
-
-callsites@^2.0.0:
- version "2.0.0"
- resolved "https://registry.yarnpkg.com/callsites/-/callsites-2.0.0.tgz#06eb84f00eea413da86affefacbffb36093b3c50"
- integrity sha1-BuuE8A7qQT2oav/vrL/7Ngk7PFA=
-
-callsites@^3.0.0:
- version "3.1.0"
- resolved "https://registry.yarnpkg.com/callsites/-/callsites-3.1.0.tgz#b3630abd8943432f54b3f0519238e33cd7df2f73"
- integrity sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==
-
-camelcase@^4.0.0:
- version "4.1.0"
- resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-4.1.0.tgz#d545635be1e33c542649c69173e5de6acfae34dd"
- integrity sha1-1UVjW+HjPFQmScaRc+Xeas+uNN0=
-
-camelcase@^5.3.1:
- version "5.3.1"
- resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-5.3.1.tgz#e3c9b31569e106811df242f715725a1f4c494320"
- integrity sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==
-
-caniuse-lite@^1.0.30000981, caniuse-lite@^1.0.30001012, caniuse-lite@^1.0.30001015:
- version "1.0.30001016"
- resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001016.tgz#16ea48d7d6e8caf3cad3295c2d746fe38c4e7f66"
- integrity sha512-yYQ2QfotceRiH4U+h1Us86WJXtVHDmy3nEKIdYPsZCYnOV5/tMgGbmoIlrMzmh2VXlproqYtVaKeGDBkMZifFA==
-
-chalk@2.4.1:
- version "2.4.1"
- resolved "https://registry.yarnpkg.com/chalk/-/chalk-2.4.1.tgz#18c49ab16a037b6eb0152cc83e3471338215b66e"
- integrity sha512-ObN6h1v2fTJSmUXoS3nMQ92LbDK9be4TV+6G+omQlGJFdcUX5heKi1LZ1YnRMIgwTLEj3E24bT6tYni50rlCfQ==
- 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.3.0, chalk@^2.4.1, chalk@^2.4.2:
- version "2.4.2"
- resolved "https://registry.yarnpkg.com/chalk/-/chalk-2.4.2.tgz#cd42541677a54333cf541a49108c1432b44c9424"
- integrity sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==
- dependencies:
- ansi-styles "^3.2.1"
- escape-string-regexp "^1.0.5"
- supports-color "^5.3.0"
-
-chalk@^1.1.3:
- version "1.1.3"
- resolved "https://registry.yarnpkg.com/chalk/-/chalk-1.1.3.tgz#a8115c55e4a702fe4d150abd3872822a7e09fc98"
- integrity sha1-qBFcVeSnAv5NFQq9OHKCKn4J/Jg=
- dependencies:
- ansi-styles "^2.2.1"
- escape-string-regexp "^1.0.2"
- has-ansi "^2.0.0"
- strip-ansi "^3.0.0"
- supports-color "^2.0.0"
-
-chokidar@^2.0.2:
- version "2.1.8"
- resolved "https://registry.yarnpkg.com/chokidar/-/chokidar-2.1.8.tgz#804b3a7b6a99358c3c5c61e71d8728f041cff917"
- integrity sha512-ZmZUazfOzf0Nve7duiCKD23PFSCs4JPoYyccjUFF3aQkQadqBhfzhjkwBH2mNOG9cTBwhamM37EIsIkZw3nRgg==
- dependencies:
- anymatch "^2.0.0"
- async-each "^1.0.1"
- braces "^2.3.2"
- glob-parent "^3.1.0"
- inherits "^2.0.3"
- is-binary-path "^1.0.0"
- is-glob "^4.0.0"
- normalize-path "^3.0.0"
- path-is-absolute "^1.0.0"
- readdirp "^2.2.1"
- upath "^1.1.1"
- optionalDependencies:
- fsevents "^1.2.7"
-
-chokidar@^3.3.0:
- version "3.3.1"
- resolved "https://registry.yarnpkg.com/chokidar/-/chokidar-3.3.1.tgz#c84e5b3d18d9a4d77558fef466b1bf16bbeb3450"
- integrity sha512-4QYCEWOcK3OJrxwvyyAOxFuhpvOVCYkr33LPfFNBjAD/w3sEzWsp2BUOkI4l9bHvWioAd0rc6NlHUOEaWkTeqg==
- dependencies:
- anymatch "~3.1.1"
- braces "~3.0.2"
- glob-parent "~5.1.0"
- is-binary-path "~2.1.0"
- is-glob "~4.0.1"
- normalize-path "~3.0.0"
- readdirp "~3.3.0"
- optionalDependencies:
- fsevents "~2.1.2"
-
-chownr@^1.1.1:
- version "1.1.3"
- resolved "https://registry.yarnpkg.com/chownr/-/chownr-1.1.3.tgz#42d837d5239688d55f303003a508230fa6727142"
- integrity sha512-i70fVHhmV3DtTl6nqvZOnIjbY0Pe4kAUjwHj8z0zAdgBtYrJyYwLKCCuRBQ5ppkyL0AkN7HKRnETdmdp1zqNXw==
-
-chrome-trace-event@^1.0.2:
- version "1.0.2"
- resolved "https://registry.yarnpkg.com/chrome-trace-event/-/chrome-trace-event-1.0.2.tgz#234090ee97c7d4ad1a2c4beae27505deffc608a4"
- integrity sha512-9e/zx1jw7B4CO+c/RXoCsfg/x1AfUBioy4owYH0bJprEYAx5hRFLRhWBqHAG57D0ZM4H7vxbP7bPe0VwhQRYDQ==
- dependencies:
- tslib "^1.9.0"
-
-ci-info@2.0.0:
- version "2.0.0"
- resolved "https://registry.yarnpkg.com/ci-info/-/ci-info-2.0.0.tgz#67a9e964be31a51e15e5010d58e6f12834002f46"
- integrity sha512-5tK7EtrZ0N+OLFMthtqOj4fI2Jeb88C4CAZPu25LDVUgXJ0A3Js4PMGqrn0JU1W0Mh1/Z8wZzYPxqUrXeBboCQ==
-
-cipher-base@^1.0.0, cipher-base@^1.0.1, cipher-base@^1.0.3:
- version "1.0.4"
- resolved "https://registry.yarnpkg.com/cipher-base/-/cipher-base-1.0.4.tgz#8760e4ecc272f4c363532f926d874aae2c1397de"
- integrity sha512-Kkht5ye6ZGmwv40uUDZztayT2ThLQGfnj/T71N/XzeZeo3nf8foyW7zGTsPYkEya3m5f3cAypH+qe7YOrM1U2Q==
- dependencies:
- inherits "^2.0.1"
- safe-buffer "^5.0.1"
-
-class-utils@^0.3.5:
- version "0.3.6"
- resolved "https://registry.yarnpkg.com/class-utils/-/class-utils-0.3.6.tgz#f93369ae8b9a7ce02fd41faad0ca83033190c463"
- integrity sha512-qOhPa/Fj7s6TY8H8esGu5QNpMMQxz79h+urzrNYN6mn+9BnxlDGf5QZ+XeCDsxSjPqsSR56XOZOJmpeurnLMeg==
- dependencies:
- arr-union "^3.1.0"
- define-property "^0.2.5"
- isobject "^3.0.0"
- static-extend "^0.1.1"
-
-cli-boxes@^1.0.0:
- version "1.0.0"
- resolved "https://registry.yarnpkg.com/cli-boxes/-/cli-boxes-1.0.0.tgz#4fa917c3e59c94a004cd61f8ee509da651687143"
- integrity sha1-T6kXw+WclKAEzWH47lCdplFocUM=
-
-cli-cursor@^2.1.0:
- version "2.1.0"
- resolved "https://registry.yarnpkg.com/cli-cursor/-/cli-cursor-2.1.0.tgz#b35dac376479facc3e94747d41d0d0f5238ffcb5"
- integrity sha1-s12sN2R5+sw+lHR9QdDQ9SOP/LU=
- dependencies:
- restore-cursor "^2.0.0"
-
-cli-spinners@^2.0.0:
- version "2.2.0"
- resolved "https://registry.yarnpkg.com/cli-spinners/-/cli-spinners-2.2.0.tgz#e8b988d9206c692302d8ee834e7a85c0144d8f77"
- integrity sha512-tgU3fKwzYjiLEQgPMD9Jt+JjHVL9kW93FiIMX/l7rivvOD4/LL0Mf7gda3+4U2KJBloybwgj5KEoQgGRioMiKQ==
-
-clipboardy@1.2.3:
- version "1.2.3"
- resolved "https://registry.yarnpkg.com/clipboardy/-/clipboardy-1.2.3.tgz#0526361bf78724c1f20be248d428e365433c07ef"
- integrity sha512-2WNImOvCRe6r63Gk9pShfkwXsVtKCroMAevIbiae021mS850UkWPbevxsBz3tnvjZIEGvlwaqCPsw+4ulzNgJA==
- dependencies:
- arch "^2.1.0"
- execa "^0.8.0"
-
-clone@^1.0.2:
- version "1.0.4"
- resolved "https://registry.yarnpkg.com/clone/-/clone-1.0.4.tgz#da309cc263df15994c688ca902179ca3c7cd7c7e"
- integrity sha1-2jCcwmPfFZlMaIypAheco8fNfH4=
-
-code-point-at@^1.0.0:
- version "1.1.0"
- resolved "https://registry.yarnpkg.com/code-point-at/-/code-point-at-1.1.0.tgz#0d070b4d043a5bea33a2f1a40e2edb3d9a4ccf77"
- integrity sha1-DQcLTQQ6W+ozovGkDi7bPZpMz3c=
-
-"cogo-toast@link:..":
- version "0.0.0"
- uid ""
-
-collection-visit@^1.0.0:
- version "1.0.0"
- resolved "https://registry.yarnpkg.com/collection-visit/-/collection-visit-1.0.0.tgz#4bc0373c164bc3291b4d368c829cf1a80a59dca0"
- integrity sha1-S8A3PBZLwykbTTaMgpzxqApZ3KA=
- dependencies:
- map-visit "^1.0.0"
- object-visit "^1.0.0"
-
-color-convert@^1.9.0:
- version "1.9.3"
- resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-1.9.3.tgz#bb71850690e1f136567de629d2d5471deda4c1e8"
- integrity sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==
- dependencies:
- color-name "1.1.3"
-
-color-name@1.1.3:
- version "1.1.3"
- resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.3.tgz#a7d0558bd89c42f795dd42328f740831ca53bc25"
- integrity sha1-p9BVi9icQveV3UIyj3QIMcpTvCU=
-
-colors@1.1.2:
- version "1.1.2"
- resolved "https://registry.yarnpkg.com/colors/-/colors-1.1.2.tgz#168a4701756b6a7f51a12ce0c97bfa28c084ed63"
- integrity sha1-FopHAXVran9RoSzgyXv6KMCE7WM=
-
-commander@2.9.0:
- version "2.9.0"
- resolved "https://registry.yarnpkg.com/commander/-/commander-2.9.0.tgz#9c99094176e12240cb22d6c5146098400fe0f7d4"
- integrity sha1-nJkJQXbhIkDLItbFFGCYQA/g99Q=
- dependencies:
- graceful-readlink ">= 1.0.0"
-
-commander@^2.20.0:
- version "2.20.3"
- resolved "https://registry.yarnpkg.com/commander/-/commander-2.20.3.tgz#fd485e84c03eb4881c20722ba48035e8531aeb33"
- integrity sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==
-
-commondir@^1.0.1:
- version "1.0.1"
- resolved "https://registry.yarnpkg.com/commondir/-/commondir-1.0.1.tgz#ddd800da0c66127393cca5950ea968a3aaf1253b"
- integrity sha1-3dgA2gxmEnOTzKWVDqloo6rxJTs=
-
-component-emitter@^1.2.1:
- version "1.3.0"
- resolved "https://registry.yarnpkg.com/component-emitter/-/component-emitter-1.3.0.tgz#16e4070fba8ae29b679f2215853ee181ab2eabc0"
- integrity sha512-Rd3se6QB+sO1TwqZjscQrurpEPIfO0/yYnSin6Q/rD3mOutHvUrCAhJub3r90uNb+SESBuE0QYoB90YdfatsRg==
-
-compressible@~2.0.14, compressible@~2.0.16:
- version "2.0.17"
- resolved "https://registry.yarnpkg.com/compressible/-/compressible-2.0.17.tgz#6e8c108a16ad58384a977f3a482ca20bff2f38c1"
- integrity sha512-BGHeLCK1GV7j1bSmQQAi26X+GgWcTjLr/0tzSvMCl3LH1w1IJ4PFSPoV5316b30cneTziC+B1a+3OjoSUcQYmw==
- dependencies:
- mime-db ">= 1.40.0 < 2"
-
-compression@1.7.3:
- version "1.7.3"
- resolved "https://registry.yarnpkg.com/compression/-/compression-1.7.3.tgz#27e0e176aaf260f7f2c2813c3e440adb9f1993db"
- integrity sha512-HSjyBG5N1Nnz7tF2+O7A9XUhyjru71/fwgNb7oIsEVHR0WShfs2tIS/EySLgiTe98aOK18YDlMXpzjCXY/n9mg==
- dependencies:
- accepts "~1.3.5"
- bytes "3.0.0"
- compressible "~2.0.14"
- debug "2.6.9"
- on-headers "~1.0.1"
- safe-buffer "5.1.2"
- vary "~1.1.2"
-
-compression@1.7.4:
- version "1.7.4"
- resolved "https://registry.yarnpkg.com/compression/-/compression-1.7.4.tgz#95523eff170ca57c29a0ca41e6fe131f41e5bb8f"
- integrity sha512-jaSIDzP9pZVS4ZfQ+TzvtiWhdpFhE2RDHz8QJkpX9SIpLq88VueF5jJw6t+6CUQcAoA6t+x89MLrWAqpfDE8iQ==
- dependencies:
- accepts "~1.3.5"
- bytes "3.0.0"
- compressible "~2.0.16"
- debug "2.6.9"
- on-headers "~1.0.2"
- safe-buffer "5.1.2"
- vary "~1.1.2"
-
-concat-map@0.0.1:
- version "0.0.1"
- resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b"
- integrity sha1-2Klr13/Wjfd5OnMDajug1UBdR3s=
-
-concat-stream@^1.5.0:
- version "1.6.2"
- resolved "https://registry.yarnpkg.com/concat-stream/-/concat-stream-1.6.2.tgz#904bdf194cd3122fc675c77fc4ac3d4ff0fd1a34"
- integrity sha512-27HBghJxjiZtIk3Ycvn/4kbJk/1uZuJFfuPEns6LaEvpvG1f0hTea8lilrouyo9mVc2GWdcEZ8OLoGmSADlrCw==
- dependencies:
- buffer-from "^1.0.0"
- inherits "^2.0.3"
- readable-stream "^2.2.2"
- typedarray "^0.0.6"
-
-conf@5.0.0:
- version "5.0.0"
- resolved "https://registry.yarnpkg.com/conf/-/conf-5.0.0.tgz#6530308a36041bf010ab96b05a0f4aff5101c65d"
- integrity sha512-lRNyt+iRD4plYaOSVTxu1zPWpaH0EOxgFIR1l3mpC/DGZ7XzhoGFMKmbl54LAgXcSu6knqWgOwdINkqm58N85A==
- dependencies:
- ajv "^6.10.0"
- dot-prop "^5.0.0"
- env-paths "^2.2.0"
- json-schema-typed "^7.0.0"
- make-dir "^3.0.0"
- pkg-up "^3.0.1"
- write-file-atomic "^3.0.0"
-
-console-browserify@^1.1.0:
- version "1.2.0"
- resolved "https://registry.yarnpkg.com/console-browserify/-/console-browserify-1.2.0.tgz#67063cef57ceb6cf4993a2ab3a55840ae8c49336"
- integrity sha512-ZMkYO/LkF17QvCPqM0gxw8yUzigAOZOSWSHg91FH6orS7vcEj5dVZTidN2fQ14yBSdg97RqhSNwLUXInd52OTA==
-
-console-control-strings@^1.0.0, console-control-strings@~1.1.0:
- version "1.1.0"
- resolved "https://registry.yarnpkg.com/console-control-strings/-/console-control-strings-1.1.0.tgz#3d7cf4464db6446ea644bf4b39507f9851008e8e"
- integrity sha1-PXz0Rk22RG6mRL9LOVB/mFEAjo4=
-
-constants-browserify@^1.0.0:
- version "1.0.0"
- resolved "https://registry.yarnpkg.com/constants-browserify/-/constants-browserify-1.0.0.tgz#c20b96d8c617748aaf1c16021760cd27fcb8cb75"
- integrity sha1-wguW2MYXdIqvHBYCF2DNJ/y4y3U=
-
-content-disposition@0.5.2:
- version "0.5.2"
- resolved "https://registry.yarnpkg.com/content-disposition/-/content-disposition-0.5.2.tgz#0cf68bb9ddf5f2be7961c3a85178cb85dba78cb4"
- integrity sha1-DPaLud318r55YcOoUXjLhdunjLQ=
-
-content-type@1.0.4:
- version "1.0.4"
- resolved "https://registry.yarnpkg.com/content-type/-/content-type-1.0.4.tgz#e138cc75e040c727b1966fe5e5f8c9aee256fe3b"
- integrity sha512-hIP3EEPs8tB9AT1L+NUqtwOAps4mk2Zob89MWXMHjHWg9milF/j4osnnQLXBCBFBk/tvIG/tUc9mOUJiPBhPXA==
-
-convert-source-map@1.7.0, convert-source-map@^1.5.0, convert-source-map@^1.7.0:
- version "1.7.0"
- resolved "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-1.7.0.tgz#17a2cb882d7f77d3490585e2ce6c524424a3a442"
- integrity sha512-4FJkXzKXEDB1snCFZlLP4gpC3JILicCpGbzG9f9G7tGqGCzETQ2hWPrcinA9oU4wtf2biUaEH5065UnMeR33oA==
- dependencies:
- safe-buffer "~5.1.1"
-
-cookie@0.4.0:
- version "0.4.0"
- resolved "https://registry.yarnpkg.com/cookie/-/cookie-0.4.0.tgz#beb437e7022b3b6d49019d088665303ebe9c14ba"
- integrity sha512-+Hp8fLp57wnUSt0tY0tHEXh4voZRDnoIrZPqlo3DPiI4y9lwg/jqx+1Om94/W6ZaPDOUbnjOt/99w66zk+l1Xg==
-
-copy-concurrently@^1.0.0:
- version "1.0.5"
- resolved "https://registry.yarnpkg.com/copy-concurrently/-/copy-concurrently-1.0.5.tgz#92297398cae34937fcafd6ec8139c18051f0b5e0"
- integrity sha512-f2domd9fsVDFtaFcbaRZuYXwtdmnzqbADSwhSWYxYB/Q8zsdUUFMXVRwXGDMWmbEzAn1kdRrtI1T/KTFOL4X2A==
- dependencies:
- aproba "^1.1.1"
- fs-write-stream-atomic "^1.0.8"
- iferr "^0.1.5"
- mkdirp "^0.5.1"
- rimraf "^2.5.4"
- run-queue "^1.0.0"
-
-copy-descriptor@^0.1.0:
- version "0.1.1"
- resolved "https://registry.yarnpkg.com/copy-descriptor/-/copy-descriptor-0.1.1.tgz#676f6eb3c39997c2ee1ac3a924fd6124748f578d"
- integrity sha1-Z29us8OZl8LuGsOpJP1hJHSPV40=
-
-core-js-compat@^3.1.1:
- version "3.6.0"
- resolved "https://registry.yarnpkg.com/core-js-compat/-/core-js-compat-3.6.0.tgz#4eb6cb69d03d99159ed7c860cd5fcf7d23a62ea9"
- integrity sha512-Z3eCNjGgoYluH89Jt4wVkfYsc/VdLrA2/woX5lm0isO/pCT+P+Y+o65bOuEnjDJLthdwTBxbCVzptTXtc18fJg==
- dependencies:
- browserslist "^4.8.2"
- semver "7.0.0"
-
-core-js@^2.4.0, core-js@^2.6.5:
- version "2.6.11"
- resolved "https://registry.yarnpkg.com/core-js/-/core-js-2.6.11.tgz#38831469f9922bded8ee21c9dc46985e0399308c"
- integrity sha512-5wjnpaT/3dV+XB4borEsnAYQchn00XSgTAWKDkEqv+K8KevjbzmofK6hfJ9TZIlpj2N0xQpazy7PiRQiWHqzWg==
-
-core-util-is@~1.0.0:
- version "1.0.2"
- resolved "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.2.tgz#b5fd54220aa2bc5ab57aab7140c940754503c1a7"
- integrity sha1-tf1UIgqivFq1eqtxQMlAdUUDwac=
-
-cosmiconfig@^5.0.0:
- version "5.2.1"
- resolved "https://registry.yarnpkg.com/cosmiconfig/-/cosmiconfig-5.2.1.tgz#040f726809c591e77a17c0a3626ca45b4f168b1a"
- integrity sha512-H65gsXo1SKjf8zmrJ67eJk8aIRKV5ff2D4uKZIBZShbhGSpEmsQOPW/SKMKYhSTrqR7ufy6RP69rPogdaPh/kA==
- dependencies:
- import-fresh "^2.0.0"
- is-directory "^0.3.1"
- js-yaml "^3.13.1"
- parse-json "^4.0.0"
-
-cosmiconfig@^6.0.0:
- version "6.0.0"
- resolved "https://registry.yarnpkg.com/cosmiconfig/-/cosmiconfig-6.0.0.tgz#da4fee853c52f6b1e6935f41c1a2fc50bd4a9982"
- integrity sha512-xb3ZL6+L8b9JLLCx3ZdoZy4+2ECphCMo2PwqgP1tlfVq6M6YReyzBJtvWWtbDSpNr9hn96pkCiZqUcFEc+54Qg==
- dependencies:
- "@types/parse-json" "^4.0.0"
- import-fresh "^3.1.0"
- parse-json "^5.0.0"
- path-type "^4.0.0"
- yaml "^1.7.2"
-
-create-ecdh@^4.0.0:
- version "4.0.3"
- resolved "https://registry.yarnpkg.com/create-ecdh/-/create-ecdh-4.0.3.tgz#c9111b6f33045c4697f144787f9254cdc77c45ff"
- integrity sha512-GbEHQPMOswGpKXM9kCWVrremUcBmjteUaQ01T9rkKCPDXfUHX0IoP9LpHYo2NPFampa4e+/pFDc3jQdxrxQLaw==
- dependencies:
- bn.js "^4.1.0"
- elliptic "^6.0.0"
-
-create-hash@^1.1.0, create-hash@^1.1.2:
- version "1.2.0"
- resolved "https://registry.yarnpkg.com/create-hash/-/create-hash-1.2.0.tgz#889078af11a63756bcfb59bd221996be3a9ef196"
- integrity sha512-z00bCGNHDG8mHAkP7CtT1qVu+bFQUPjYq/4Iv3C3kWjTFV10zIjfSoeqXo9Asws8gwSHDGj/hl2u4OGIjapeCg==
- dependencies:
- cipher-base "^1.0.1"
- inherits "^2.0.1"
- md5.js "^1.3.4"
- ripemd160 "^2.0.1"
- sha.js "^2.4.0"
-
-create-hmac@^1.1.0, create-hmac@^1.1.2, create-hmac@^1.1.4:
- version "1.1.7"
- resolved "https://registry.yarnpkg.com/create-hmac/-/create-hmac-1.1.7.tgz#69170c78b3ab957147b2b8b04572e47ead2243ff"
- integrity sha512-MJG9liiZ+ogc4TzUwuvbER1JRdgvUFSB5+VR/g5h82fGaIRWMWddtKBHi7/sVhfjQZ6SehlyhvQYrcYkaUIpLg==
- dependencies:
- cipher-base "^1.0.3"
- create-hash "^1.1.0"
- inherits "^2.0.1"
- ripemd160 "^2.0.0"
- safe-buffer "^5.0.1"
- sha.js "^2.4.8"
-
-cross-spawn@^5.0.1:
- version "5.1.0"
- resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-5.1.0.tgz#e8bd0efee58fcff6f8f94510a0a554bbfa235449"
- integrity sha1-6L0O/uWPz/b4+UUQoKVUu/ojVEk=
- dependencies:
- lru-cache "^4.0.1"
- shebang-command "^1.2.0"
- which "^1.2.9"
-
-crypto-browserify@^3.11.0:
- version "3.12.0"
- resolved "https://registry.yarnpkg.com/crypto-browserify/-/crypto-browserify-3.12.0.tgz#396cf9f3137f03e4b8e532c58f698254e00f80ec"
- integrity sha512-fz4spIh+znjO2VjL+IdhEpRJ3YN6sMzITSBijk6FK2UvTqruSQW+/cCZTSNsMiZNvUeq0CqurF+dAbyiGOY6Wg==
- dependencies:
- browserify-cipher "^1.0.0"
- browserify-sign "^4.0.0"
- create-ecdh "^4.0.0"
- create-hash "^1.1.0"
- create-hmac "^1.1.0"
- diffie-hellman "^5.0.0"
- inherits "^2.0.1"
- pbkdf2 "^3.0.3"
- public-encrypt "^4.0.0"
- randombytes "^2.0.0"
- randomfill "^1.0.3"
-
-css-blank-pseudo@^0.1.4:
- version "0.1.4"
- resolved "https://registry.yarnpkg.com/css-blank-pseudo/-/css-blank-pseudo-0.1.4.tgz#dfdefd3254bf8a82027993674ccf35483bfcb3c5"
- integrity sha512-LHz35Hr83dnFeipc7oqFDmsjHdljj3TQtxGGiNWSOsTLIAubSm4TEz8qCaKFpk7idaQ1GfWscF4E6mgpBysA1w==
- dependencies:
- postcss "^7.0.5"
-
-css-has-pseudo@^0.10.0:
- version "0.10.0"
- resolved "https://registry.yarnpkg.com/css-has-pseudo/-/css-has-pseudo-0.10.0.tgz#3c642ab34ca242c59c41a125df9105841f6966ee"
- integrity sha512-Z8hnfsZu4o/kt+AuFzeGpLVhFOGO9mluyHBaA2bA8aCGTwah5sT3WV/fTHH8UNZUytOIImuGPrl/prlb4oX4qQ==
- dependencies:
- postcss "^7.0.6"
- postcss-selector-parser "^5.0.0-rc.4"
-
-css-loader@3.3.0:
- version "3.3.0"
- resolved "https://registry.yarnpkg.com/css-loader/-/css-loader-3.3.0.tgz#65f889807baec3197313965d6cda9899f936734d"
- integrity sha512-x9Y1vvHe5RR+4tzwFdWExPueK00uqFTCw7mZy+9aE/X1SKWOArm5luaOrtJ4d05IpOwJ6S86b/tVcIdhw1Bu4A==
- dependencies:
- camelcase "^5.3.1"
- cssesc "^3.0.0"
- icss-utils "^4.1.1"
- loader-utils "^1.2.3"
- normalize-path "^3.0.0"
- postcss "^7.0.23"
- postcss-modules-extract-imports "^2.0.0"
- postcss-modules-local-by-default "^3.0.2"
- postcss-modules-scope "^2.1.1"
- postcss-modules-values "^3.0.0"
- postcss-value-parser "^4.0.2"
- schema-utils "^2.6.0"
-
-css-prefers-color-scheme@^3.1.1:
- version "3.1.1"
- resolved "https://registry.yarnpkg.com/css-prefers-color-scheme/-/css-prefers-color-scheme-3.1.1.tgz#6f830a2714199d4f0d0d0bb8a27916ed65cff1f4"
- integrity sha512-MTu6+tMs9S3EUqzmqLXEcgNRbNkkD/TGFvowpeoWJn5Vfq7FMgsmRQs9X5NXAURiOBmOxm/lLjsDNXDE6k9bhg==
- dependencies:
- postcss "^7.0.5"
-
-css@2.2.4:
- version "2.2.4"
- resolved "https://registry.yarnpkg.com/css/-/css-2.2.4.tgz#c646755c73971f2bba6a601e2cf2fd71b1298929"
- integrity sha512-oUnjmWpy0niI3x/mPL8dVEI1l7MnG3+HHyRPHf+YFSbK+svOhXpmSOcDURUh2aOCgl2grzrOPt1nHLuCVFULLw==
- dependencies:
- inherits "^2.0.3"
- source-map "^0.6.1"
- source-map-resolve "^0.5.2"
- urix "^0.1.0"
-
-cssdb@^4.4.0:
- version "4.4.0"
- resolved "https://registry.yarnpkg.com/cssdb/-/cssdb-4.4.0.tgz#3bf2f2a68c10f5c6a08abd92378331ee803cddb0"
- integrity sha512-LsTAR1JPEM9TpGhl/0p3nQecC2LJ0kD8X5YARu1hk/9I1gril5vDtMZyNxcEpxxDj34YNck/ucjuoUd66K03oQ==
-
-cssesc@^2.0.0:
- version "2.0.0"
- resolved "https://registry.yarnpkg.com/cssesc/-/cssesc-2.0.0.tgz#3b13bd1bb1cb36e1bcb5a4dcd27f54c5dcb35703"
- integrity sha512-MsCAG1z9lPdoO/IUMLSBWBSVxVtJ1395VGIQ+Fc2gNdkQ1hNDnQdw3YhA71WJCBW1vdwA0cAnk/DnW6bqoEUYg==
-
-cssesc@^3.0.0:
- version "3.0.0"
- resolved "https://registry.yarnpkg.com/cssesc/-/cssesc-3.0.0.tgz#37741919903b868565e1c09ea747445cd18983ee"
- integrity sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==
-
-cssnano-preset-simple@^1.0.0:
- version "1.0.1"
- resolved "https://registry.yarnpkg.com/cssnano-preset-simple/-/cssnano-preset-simple-1.0.1.tgz#a53b3c7b67faf49e0a1d79c4a9b7af9dd3d6c812"
- integrity sha512-i5MsRDS0EAfefQ2Q70EZ2h3bapKz2fCUdo/I5AmeRaF5atZ6BDLryyvVmBs8ZCrZdaxQdmyK6MRlqJnrg7TICQ==
- dependencies:
- postcss "^7.0.18"
-
-cssnano-simple@1.0.0:
- version "1.0.0"
- resolved "https://registry.yarnpkg.com/cssnano-simple/-/cssnano-simple-1.0.0.tgz#a9322f7f4c192fad29c6d48afcb7927a9c5c597b"
- integrity sha512-B7u9vvtXEqeU2rzdt+Kfw5O9Nd46R7KNjJoP7Y5lGQs6c7n1Et5Ilofh2W9OjBV/ZiJV5+7j9ShWgiYNtH/57A==
- dependencies:
- cssnano-preset-simple "^1.0.0"
- postcss "^7.0.18"
-
-csstype@^2.5.7:
- version "2.6.8"
- resolved "https://registry.yarnpkg.com/csstype/-/csstype-2.6.8.tgz#0fb6fc2417ffd2816a418c9336da74d7f07db431"
- integrity sha512-msVS9qTuMT5zwAGCVm4mxfrZ18BNc6Csd0oJAtiFMZ1FAx1CCvy2+5MDmYoix63LM/6NDbNtodCiGYGmFgO0dA==
-
-cyclist@^1.0.1:
- version "1.0.1"
- resolved "https://registry.yarnpkg.com/cyclist/-/cyclist-1.0.1.tgz#596e9698fd0c80e12038c2b82d6eb1b35b6224d9"
- integrity sha1-WW6WmP0MgOEgOMK4LW6xs1tiJNk=
-
-debug@2.6.9, debug@^2.2.0, debug@^2.3.3:
- version "2.6.9"
- resolved "https://registry.yarnpkg.com/debug/-/debug-2.6.9.tgz#5d128515df134ff327e90a4c93f4e077a536341f"
- integrity sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==
- dependencies:
- ms "2.0.0"
-
-debug@^3.2.6:
- version "3.2.6"
- resolved "https://registry.yarnpkg.com/debug/-/debug-3.2.6.tgz#e83d17de16d8a7efb7717edbe5fb10135eee629b"
- integrity sha512-mel+jf7nrtEl5Pn1Qx46zARXKDpBbvzezse7p7LqINmdoIk8PYP5SySaxEmYv6TZ0JyEKA1hsCId6DIhgITtWQ==
- dependencies:
- ms "^2.1.1"
-
-debug@^4.1.0:
- version "4.1.1"
- resolved "https://registry.yarnpkg.com/debug/-/debug-4.1.1.tgz#3b72260255109c6b589cee050f1d516139664791"
- integrity sha512-pYAIzeRo8J6KPEaJ0VWOh5Pzkbw/RetuzehGM7QRRX5he4fPHx2rdKMB256ehJCkX+XRQm16eZLqLNS8RSZXZw==
- dependencies:
- ms "^2.1.1"
-
-decode-uri-component@^0.2.0:
- version "0.2.0"
- resolved "https://registry.yarnpkg.com/decode-uri-component/-/decode-uri-component-0.2.0.tgz#eb3913333458775cb84cd1a1fae062106bb87545"
- integrity sha1-6zkTMzRYd1y4TNGh+uBiEGu4dUU=
-
-deep-extend@^0.6.0:
- version "0.6.0"
- resolved "https://registry.yarnpkg.com/deep-extend/-/deep-extend-0.6.0.tgz#c4fa7c95404a17a9c3e8ca7e1537312b736330ac"
- integrity sha512-LOHxIOaPYdHlJRtCQfDIVZtfw/ufM8+rVj649RIHzcm/vGwQRXFt6OPqIFWsm2XEMrNIEtWR64sY1LEKD2vAOA==
-
-defaults@^1.0.3:
- version "1.0.3"
- resolved "https://registry.yarnpkg.com/defaults/-/defaults-1.0.3.tgz#c656051e9817d9ff08ed881477f3fe4019f3ef7d"
- integrity sha1-xlYFHpgX2f8I7YgUd/P+QBnz730=
- dependencies:
- clone "^1.0.2"
-
-define-properties@^1.1.2:
- version "1.1.3"
- resolved "https://registry.yarnpkg.com/define-properties/-/define-properties-1.1.3.tgz#cf88da6cbee26fe6db7094f61d870cbd84cee9f1"
- integrity sha512-3MqfYKj2lLzdMSf8ZIZE/V+Zuy+BgD6f164e8K2w7dgnpKArBDerGYpM46IYYcjnkdPNMjPk9A6VFB8+3SKlXQ==
- dependencies:
- object-keys "^1.0.12"
-
-define-property@^0.2.5:
- version "0.2.5"
- resolved "https://registry.yarnpkg.com/define-property/-/define-property-0.2.5.tgz#c35b1ef918ec3c990f9a5bc57be04aacec5c8116"
- integrity sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY=
- dependencies:
- is-descriptor "^0.1.0"
-
-define-property@^1.0.0:
- version "1.0.0"
- resolved "https://registry.yarnpkg.com/define-property/-/define-property-1.0.0.tgz#769ebaaf3f4a63aad3af9e8d304c9bbe79bfb0e6"
- integrity sha1-dp66rz9KY6rTr56NMEybvnm/sOY=
- dependencies:
- is-descriptor "^1.0.0"
-
-define-property@^2.0.2:
- version "2.0.2"
- resolved "https://registry.yarnpkg.com/define-property/-/define-property-2.0.2.tgz#d459689e8d654ba77e02a817f8710d702cb16e9d"
- integrity sha512-jwK2UV4cnPpbcG7+VRARKTZPUWowwXA8bzH5NP6ud0oeAxyYPuGZUAC7hMugpCdz4BeSZl2Dl9k66CHJ/46ZYQ==
- dependencies:
- is-descriptor "^1.0.2"
- isobject "^3.0.1"
-
-del@^3.0.0:
- version "3.0.0"
- resolved "https://registry.yarnpkg.com/del/-/del-3.0.0.tgz#53ecf699ffcbcb39637691ab13baf160819766e5"
- integrity sha1-U+z2mf/LyzljdpGrE7rxYIGXZuU=
- dependencies:
- globby "^6.1.0"
- is-path-cwd "^1.0.0"
- is-path-in-cwd "^1.0.0"
- p-map "^1.1.1"
- pify "^3.0.0"
- rimraf "^2.2.8"
-
-delegates@^1.0.0:
- version "1.0.0"
- resolved "https://registry.yarnpkg.com/delegates/-/delegates-1.0.0.tgz#84c6e159b81904fdca59a0ef44cd870d31250f9a"
- integrity sha1-hMbhWbgZBP3KWaDvRM2HDTElD5o=
-
-depd@~1.1.2:
- version "1.1.2"
- resolved "https://registry.yarnpkg.com/depd/-/depd-1.1.2.tgz#9bcd52e14c097763e749b274c4346ed2e560b5a9"
- integrity sha1-m81S4UwJd2PnSbJ0xDRu0uVgtak=
-
-des.js@^1.0.0:
- version "1.0.1"
- resolved "https://registry.yarnpkg.com/des.js/-/des.js-1.0.1.tgz#5382142e1bdc53f85d86d53e5f4aa7deb91e0843"
- integrity sha512-Q0I4pfFrv2VPd34/vfLrFOoRmlYj3OV50i7fskps1jZWK1kApMWWT9G6RRUeYedLcBDIhnSDaUvJMb3AhUlaEA==
- dependencies:
- inherits "^2.0.1"
- minimalistic-assert "^1.0.0"
-
-destroy@~1.0.4:
- version "1.0.4"
- resolved "https://registry.yarnpkg.com/destroy/-/destroy-1.0.4.tgz#978857442c44749e4206613e37946205826abd80"
- integrity sha1-l4hXRCxEdJ5CBmE+N5RiBYJqvYA=
-
-detect-libc@^1.0.2:
- version "1.0.3"
- resolved "https://registry.yarnpkg.com/detect-libc/-/detect-libc-1.0.3.tgz#fa137c4bd698edf55cd5cd02ac559f91a4c4ba9b"
- integrity sha1-+hN8S9aY7fVc1c0CrFWfkaTEups=
-
-devalue@2.0.1:
- version "2.0.1"
- resolved "https://registry.yarnpkg.com/devalue/-/devalue-2.0.1.tgz#5d368f9adc0928e47b77eea53ca60d2f346f9762"
- integrity sha512-I2TiqT5iWBEyB8GRfTDP0hiLZ0YeDJZ+upDxjBfOC2lebO5LezQMv7QvIUTzdb64jQyAKLf1AHADtGN+jw6v8Q==
-
-diffie-hellman@^5.0.0:
- version "5.0.3"
- resolved "https://registry.yarnpkg.com/diffie-hellman/-/diffie-hellman-5.0.3.tgz#40e8ee98f55a2149607146921c63e1ae5f3d2875"
- integrity sha512-kqag/Nl+f3GwyK25fhUMYj81BUOrZ9IuJsjIcDE5icNM9FJHAVm3VcUDxdLPoQtTuUylWm6ZIknYJwwaPxsUzg==
- dependencies:
- bn.js "^4.1.0"
- miller-rabin "^4.0.0"
- randombytes "^2.0.0"
-
-domain-browser@^1.1.1:
- version "1.2.0"
- resolved "https://registry.yarnpkg.com/domain-browser/-/domain-browser-1.2.0.tgz#3d31f50191a6749dd1375a7f522e823d42e54eda"
- integrity sha512-jnjyiM6eRyZl2H+W8Q/zLMA481hzi0eszAaBUzIVnmYVDBbnLxVNnfu1HgEBvCbL+71FrxMl3E6lpKH7Ge3OXA==
-
-dot-prop@^5.0.0:
- version "5.2.0"
- resolved "https://registry.yarnpkg.com/dot-prop/-/dot-prop-5.2.0.tgz#c34ecc29556dc45f1f4c22697b6f4904e0cc4fcb"
- integrity sha512-uEUyaDKoSQ1M4Oq8l45hSE26SnTxL6snNnqvK/VWx5wJhmff5z0FUVJDKDanor/6w3kzE3i7XZOk+7wC0EXr1A==
- dependencies:
- is-obj "^2.0.0"
-
-duplexer@^0.1.1:
- version "0.1.1"
- resolved "https://registry.yarnpkg.com/duplexer/-/duplexer-0.1.1.tgz#ace6ff808c1ce66b57d1ebf97977acb02334cfc1"
- integrity sha1-rOb/gIwc5mtX0ev5eXessCM0z8E=
-
-duplexify@^3.4.2, duplexify@^3.6.0:
- version "3.7.1"
- resolved "https://registry.yarnpkg.com/duplexify/-/duplexify-3.7.1.tgz#2a4df5317f6ccfd91f86d6fd25d8d8a103b88309"
- integrity sha512-07z8uv2wMyS51kKhD1KsdXJg5WQ6t93RneqRxUHnskXVtlYYkLqM0gqStQZ3pj073g687jPCHrqNfCzawLYh5g==
- dependencies:
- end-of-stream "^1.0.0"
- inherits "^2.0.1"
- readable-stream "^2.0.0"
- stream-shift "^1.0.0"
-
-ee-first@1.1.1:
- version "1.1.1"
- resolved "https://registry.yarnpkg.com/ee-first/-/ee-first-1.1.1.tgz#590c61156b0ae2f4f0255732a158b266bc56b21d"
- integrity sha1-WQxhFWsK4vTwJVcyoViyZrxWsh0=
-
-electron-to-chromium@^1.3.322:
- version "1.3.322"
- resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.3.322.tgz#a6f7e1c79025c2b05838e8e344f6e89eb83213a8"
- integrity sha512-Tc8JQEfGQ1MzfSzI/bTlSr7btJv/FFO7Yh6tanqVmIWOuNCu6/D1MilIEgLtmWqIrsv+o4IjpLAhgMBr/ncNAA==
-
-elliptic@^6.0.0:
- version "6.5.2"
- resolved "https://registry.yarnpkg.com/elliptic/-/elliptic-6.5.2.tgz#05c5678d7173c049d8ca433552224a495d0e3762"
- integrity sha512-f4x70okzZbIQl/NSRLkI/+tteV/9WqL98zx+SQ69KbXxmVrmjwsNUPn/gYJJ0sHvEak24cZgHIPegRePAtA/xw==
- dependencies:
- bn.js "^4.4.0"
- brorand "^1.0.1"
- hash.js "^1.0.0"
- hmac-drbg "^1.0.0"
- inherits "^2.0.1"
- minimalistic-assert "^1.0.0"
- minimalistic-crypto-utils "^1.0.0"
-
-emojis-list@^2.0.0:
- version "2.1.0"
- resolved "https://registry.yarnpkg.com/emojis-list/-/emojis-list-2.1.0.tgz#4daa4d9db00f9819880c79fa457ae5b09a1fd389"
- integrity sha1-TapNnbAPmBmIDHn6RXrlsJof04k=
-
-encodeurl@~1.0.2:
- version "1.0.2"
- resolved "https://registry.yarnpkg.com/encodeurl/-/encodeurl-1.0.2.tgz#ad3ff4c86ec2d029322f5a02c3a9a606c95b3f59"
- integrity sha1-rT/0yG7C0CkyL1oCw6mmBslbP1k=
-
-end-of-stream@^1.0.0, end-of-stream@^1.1.0:
- version "1.4.4"
- resolved "https://registry.yarnpkg.com/end-of-stream/-/end-of-stream-1.4.4.tgz#5ae64a5f45057baf3626ec14da0ca5e4b2431eb0"
- integrity sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q==
- dependencies:
- once "^1.4.0"
-
-enhanced-resolve@^4.1.0:
- version "4.1.1"
- resolved "https://registry.yarnpkg.com/enhanced-resolve/-/enhanced-resolve-4.1.1.tgz#2937e2b8066cd0fe7ce0990a98f0d71a35189f66"
- integrity sha512-98p2zE+rL7/g/DzMHMTF4zZlCgeVdJ7yr6xzEpJRYwFYrGi9ANdn5DnJURg6RpBkyk60XYDnWIv51VfIhfNGuA==
- dependencies:
- graceful-fs "^4.1.2"
- memory-fs "^0.5.0"
- tapable "^1.0.0"
-
-env-paths@^2.2.0:
- version "2.2.0"
- resolved "https://registry.yarnpkg.com/env-paths/-/env-paths-2.2.0.tgz#cdca557dc009152917d6166e2febe1f039685e43"
- integrity sha512-6u0VYSCo/OW6IoD5WCLLy9JUGARbamfSavcNXry/eu8aHVFei6CD3Sw+VGX5alea1i9pgPHW0mbu6Xj0uBh7gA==
-
-errno@^0.1.3, errno@~0.1.7:
- version "0.1.7"
- resolved "https://registry.yarnpkg.com/errno/-/errno-0.1.7.tgz#4684d71779ad39af177e3f007996f7c67c852618"
- integrity sha512-MfrRBDWzIWifgq6tJj60gkAwtLNb6sQPlcFrSOflcP1aFmmruKQ2wRnze/8V6kgyz7H3FF8Npzv78mZ7XLLflg==
- dependencies:
- prr "~1.0.1"
-
-error-ex@^1.2.0, error-ex@^1.3.1:
- version "1.3.2"
- resolved "https://registry.yarnpkg.com/error-ex/-/error-ex-1.3.2.tgz#b4ac40648107fdcdcfae242f428bea8a14d4f1bf"
- integrity sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==
- dependencies:
- is-arrayish "^0.2.1"
-
-escape-html@~1.0.3:
- version "1.0.3"
- resolved "https://registry.yarnpkg.com/escape-html/-/escape-html-1.0.3.tgz#0258eae4d3d0c0974de1c169188ef0051d1d1988"
- integrity sha1-Aljq5NPQwJdN4cFpGI7wBR0dGYg=
-
-escape-string-regexp@^1.0.2, escape-string-regexp@^1.0.5:
- version "1.0.5"
- resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4"
- integrity sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ=
-
-eslint-scope@^4.0.3:
- version "4.0.3"
- resolved "https://registry.yarnpkg.com/eslint-scope/-/eslint-scope-4.0.3.tgz#ca03833310f6889a3264781aa82e63eb9cfe7848"
- integrity sha512-p7VutNr1O/QrxysMo3E45FjYDTeXBy0iTltPFNSqKAIfjDSXC+4dj+qfyuD8bfAXrW/y6lW3O76VaYNPKfpKrg==
- dependencies:
- esrecurse "^4.1.0"
- estraverse "^4.1.1"
-
-esprima@^4.0.0:
- version "4.0.1"
- resolved "https://registry.yarnpkg.com/esprima/-/esprima-4.0.1.tgz#13b04cdb3e6c5d19df91ab6987a8695619b0aa71"
- integrity sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==
-
-esrecurse@^4.1.0:
- version "4.2.1"
- resolved "https://registry.yarnpkg.com/esrecurse/-/esrecurse-4.2.1.tgz#007a3b9fdbc2b3bb87e4879ea19c92fdbd3942cf"
- integrity sha512-64RBB++fIOAXPw3P9cy89qfMlvZEXZkqqJkjqqXIvzP5ezRZjW+lPWjw35UX/3EhUPFYbg5ER4JYgDw4007/DQ==
- dependencies:
- estraverse "^4.1.0"
-
-estraverse@^4.1.0, estraverse@^4.1.1:
- version "4.3.0"
- resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-4.3.0.tgz#398ad3f3c5a24948be7725e83d11a7de28cdbd1d"
- integrity sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==
-
-esutils@^2.0.0, esutils@^2.0.2:
- version "2.0.3"
- resolved "https://registry.yarnpkg.com/esutils/-/esutils-2.0.3.tgz#74d2eb4de0b8da1293711910d50775b9b710ef64"
- integrity sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==
-
-etag@1.8.1, etag@~1.8.1:
- version "1.8.1"
- resolved "https://registry.yarnpkg.com/etag/-/etag-1.8.1.tgz#41ae2eeb65efa62268aebfea83ac7d79299b0887"
- integrity sha1-Qa4u62XvpiJorr/qg6x9eSmbCIc=
-
-events@^3.0.0:
- version "3.0.0"
- resolved "https://registry.yarnpkg.com/events/-/events-3.0.0.tgz#9a0a0dfaf62893d92b875b8f2698ca4114973e88"
- integrity sha512-Dc381HFWJzEOhQ+d8pkNon++bk9h6cdAoAj4iE6Q4y6xgTzySWXlKn05/TVNpjnfRqi/X0EpJEJohPjNI3zpVA==
-
-evp_bytestokey@^1.0.0, evp_bytestokey@^1.0.3:
- version "1.0.3"
- resolved "https://registry.yarnpkg.com/evp_bytestokey/-/evp_bytestokey-1.0.3.tgz#7fcbdb198dc71959432efe13842684e0525acb02"
- integrity sha512-/f2Go4TognH/KvCISP7OUsHn85hT9nUkxxA9BEWxFn+Oj9o8ZNLm/40hdlgSLyuOimsrTKLUMEorQexp/aPQeA==
- dependencies:
- md5.js "^1.3.4"
- safe-buffer "^5.1.1"
-
-execa@^0.7.0:
- version "0.7.0"
- resolved "https://registry.yarnpkg.com/execa/-/execa-0.7.0.tgz#944becd34cc41ee32a63a9faf27ad5a65fc59777"
- integrity sha1-lEvs00zEHuMqY6n68nrVpl/Fl3c=
- dependencies:
- cross-spawn "^5.0.1"
- get-stream "^3.0.0"
- is-stream "^1.1.0"
- npm-run-path "^2.0.0"
- p-finally "^1.0.0"
- signal-exit "^3.0.0"
- strip-eof "^1.0.0"
-
-execa@^0.8.0:
- version "0.8.0"
- resolved "https://registry.yarnpkg.com/execa/-/execa-0.8.0.tgz#d8d76bbc1b55217ed190fd6dd49d3c774ecfc8da"
- integrity sha1-2NdrvBtVIX7RkP1t1J08d07PyNo=
- dependencies:
- cross-spawn "^5.0.1"
- get-stream "^3.0.0"
- is-stream "^1.1.0"
- npm-run-path "^2.0.0"
- p-finally "^1.0.0"
- signal-exit "^3.0.0"
- strip-eof "^1.0.0"
-
-expand-brackets@^2.1.4:
- version "2.1.4"
- resolved "https://registry.yarnpkg.com/expand-brackets/-/expand-brackets-2.1.4.tgz#b77735e315ce30f6b6eff0f83b04151a22449622"
- integrity sha1-t3c14xXOMPa27/D4OwQVGiJEliI=
- dependencies:
- debug "^2.3.3"
- define-property "^0.2.5"
- extend-shallow "^2.0.1"
- posix-character-classes "^0.1.0"
- regex-not "^1.0.0"
- snapdragon "^0.8.1"
- to-regex "^3.0.1"
-
-extend-shallow@^2.0.1:
- version "2.0.1"
- resolved "https://registry.yarnpkg.com/extend-shallow/-/extend-shallow-2.0.1.tgz#51af7d614ad9a9f610ea1bafbb989d6b1c56890f"
- integrity sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=
- dependencies:
- is-extendable "^0.1.0"
-
-extend-shallow@^3.0.0, extend-shallow@^3.0.2:
- version "3.0.2"
- resolved "https://registry.yarnpkg.com/extend-shallow/-/extend-shallow-3.0.2.tgz#26a71aaf073b39fb2127172746131c2704028db8"
- integrity sha1-Jqcarwc7OfshJxcnRhMcJwQCjbg=
- dependencies:
- assign-symbols "^1.0.0"
- is-extendable "^1.0.1"
-
-extglob@^2.0.4:
- version "2.0.4"
- resolved "https://registry.yarnpkg.com/extglob/-/extglob-2.0.4.tgz#ad00fe4dc612a9232e8718711dc5cb5ab0285543"
- integrity sha512-Nmb6QXkELsuBr24CJSkilo6UHHgbekK5UiZgfE6UHD3Eb27YC6oD+bhcT+tJ6cl8dmsgdQxnWlcry8ksBIBLpw==
- dependencies:
- array-unique "^0.3.2"
- define-property "^1.0.0"
- expand-brackets "^2.1.4"
- extend-shallow "^2.0.1"
- fragment-cache "^0.2.1"
- regex-not "^1.0.0"
- snapdragon "^0.8.1"
- to-regex "^3.0.1"
-
-fast-deep-equal@^2.0.1:
- version "2.0.1"
- resolved "https://registry.yarnpkg.com/fast-deep-equal/-/fast-deep-equal-2.0.1.tgz#7b05218ddf9667bf7f370bf7fdb2cb15fdd0aa49"
- integrity sha1-ewUhjd+WZ79/Nwv3/bLLFf3Qqkk=
-
-fast-json-stable-stringify@^2.0.0:
- version "2.1.0"
- resolved "https://registry.yarnpkg.com/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz#874bf69c6f404c2b5d99c481341399fd55892633"
- integrity sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==
-
-fast-url-parser@1.1.3:
- version "1.1.3"
- resolved "https://registry.yarnpkg.com/fast-url-parser/-/fast-url-parser-1.1.3.tgz#f4af3ea9f34d8a271cf58ad2b3759f431f0b318d"
- integrity sha1-9K8+qfNNiicc9YrSs3WfQx8LMY0=
- dependencies:
- punycode "^1.3.2"
-
-figgy-pudding@^3.5.1:
- version "3.5.1"
- resolved "https://registry.yarnpkg.com/figgy-pudding/-/figgy-pudding-3.5.1.tgz#862470112901c727a0e495a80744bd5baa1d6790"
- integrity sha512-vNKxJHTEKNThjfrdJwHc7brvM6eVevuO5nTj6ez8ZQ1qbXTvGthucRF7S4vf2cr71QVnT70V34v0S1DyQsti0w==
-
-file-loader@4.2.0:
- version "4.2.0"
- resolved "https://registry.yarnpkg.com/file-loader/-/file-loader-4.2.0.tgz#5fb124d2369d7075d70a9a5abecd12e60a95215e"
- integrity sha512-+xZnaK5R8kBJrHK0/6HRlrKNamvVS5rjyuju+rnyxRGuwUJwpAMsVzUl5dz6rK8brkzjV6JpcFNjp6NqV0g1OQ==
- dependencies:
- loader-utils "^1.2.3"
- schema-utils "^2.0.0"
-
-file-uri-to-path@1.0.0:
- version "1.0.0"
- resolved "https://registry.yarnpkg.com/file-uri-to-path/-/file-uri-to-path-1.0.0.tgz#553a7b8446ff6f684359c445f1e37a05dacc33dd"
- integrity sha512-0Zt+s3L7Vf1biwWZ29aARiVYLx7iMGnEUl9x33fbB/j3jR81u/O2LbqK+Bm1CDSNDKVtJ/YjwY7TUd5SkeLQLw==
-
-fill-range@^4.0.0:
- version "4.0.0"
- resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-4.0.0.tgz#d544811d428f98eb06a63dc402d2403c328c38f7"
- integrity sha1-1USBHUKPmOsGpj3EAtJAPDKMOPc=
- dependencies:
- extend-shallow "^2.0.1"
- is-number "^3.0.0"
- repeat-string "^1.6.1"
- to-regex-range "^2.1.0"
-
-fill-range@^7.0.1:
- version "7.0.1"
- resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-7.0.1.tgz#1919a6a7c75fe38b2c7c77e5198535da9acdda40"
- integrity sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==
- dependencies:
- to-regex-range "^5.0.1"
-
-find-cache-dir@^1.0.0:
- version "1.0.0"
- resolved "https://registry.yarnpkg.com/find-cache-dir/-/find-cache-dir-1.0.0.tgz#9288e3e9e3cc3748717d39eade17cf71fc30ee6f"
- integrity sha1-kojj6ePMN0hxfTnq3hfPcfww7m8=
- dependencies:
- commondir "^1.0.1"
- make-dir "^1.0.0"
- pkg-dir "^2.0.0"
-
-find-cache-dir@^2.0.0, find-cache-dir@^2.1.0:
- version "2.1.0"
- resolved "https://registry.yarnpkg.com/find-cache-dir/-/find-cache-dir-2.1.0.tgz#8d0f94cd13fe43c6c7c261a0d86115ca918c05f7"
- integrity sha512-Tq6PixE0w/VMFfCgbONnkiQIVol/JJL7nRMi20fqzA4NRs9AfeqMGeRdPi3wIhYkxjeBaWh2rxwapn5Tu3IqOQ==
- dependencies:
- commondir "^1.0.1"
- make-dir "^2.0.0"
- pkg-dir "^3.0.0"
-
-find-root@^1.1.0:
- version "1.1.0"
- resolved "https://registry.yarnpkg.com/find-root/-/find-root-1.1.0.tgz#abcfc8ba76f708c42a97b3d685b7e9450bfb9ce4"
- integrity sha512-NKfW6bec6GfKc0SGx1e07QZY9PE99u0Bft/0rzSD5k3sO/vwkVUpDUKVm5Gpp5Ue3YfShPFTX2070tDs5kB9Ng==
-
-find-up@4.0.0:
- version "4.0.0"
- resolved "https://registry.yarnpkg.com/find-up/-/find-up-4.0.0.tgz#c367f8024de92efb75f2d4906536d24682065c3a"
- integrity sha512-zoH7ZWPkRdgwYCDVoQTzqjG8JSPANhtvLhh4KVUHyKnaUJJrNeFmWIkTcNuJmR3GLMEmGYEf2S2bjgx26JTF+Q==
- dependencies:
- locate-path "^5.0.0"
-
-find-up@^2.1.0:
- version "2.1.0"
- resolved "https://registry.yarnpkg.com/find-up/-/find-up-2.1.0.tgz#45d1b7e506c717ddd482775a2b77920a3c0c57a7"
- integrity sha1-RdG35QbHF93UgndaK3eSCjwMV6c=
- dependencies:
- locate-path "^2.0.0"
-
-find-up@^3.0.0:
- version "3.0.0"
- resolved "https://registry.yarnpkg.com/find-up/-/find-up-3.0.0.tgz#49169f1d7993430646da61ecc5ae355c21c97b73"
- integrity sha512-1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg==
- dependencies:
- locate-path "^3.0.0"
-
-flatten@^1.0.2:
- version "1.0.3"
- resolved "https://registry.yarnpkg.com/flatten/-/flatten-1.0.3.tgz#c1283ac9f27b368abc1e36d1ff7b04501a30356b"
- integrity sha512-dVsPA/UwQ8+2uoFe5GHtiBMu48dWLTdsuEd7CKGlZlD78r1TTWBvDuFaFGKCo/ZfEr95Uk56vZoX86OsHkUeIg==
-
-flush-write-stream@^1.0.0:
- version "1.1.1"
- resolved "https://registry.yarnpkg.com/flush-write-stream/-/flush-write-stream-1.1.1.tgz#8dd7d873a1babc207d94ead0c2e0e44276ebf2e8"
- integrity sha512-3Z4XhFZ3992uIq0XOqb9AreonueSYphE6oYbpt5+3u06JWklbsPkNv3ZKkP9Bz/r+1MWCaMoSQ28P85+1Yc77w==
- dependencies:
- inherits "^2.0.3"
- readable-stream "^2.3.6"
-
-for-in@^1.0.2:
- version "1.0.2"
- resolved "https://registry.yarnpkg.com/for-in/-/for-in-1.0.2.tgz#81068d295a8142ec0ac726c6e2200c30fb6d5e80"
- integrity sha1-gQaNKVqBQuwKxybG4iAMMPttXoA=
-
-fork-ts-checker-webpack-plugin@3.1.1:
- version "3.1.1"
- resolved "https://registry.yarnpkg.com/fork-ts-checker-webpack-plugin/-/fork-ts-checker-webpack-plugin-3.1.1.tgz#a1642c0d3e65f50c2cc1742e9c0a80f441f86b19"
- integrity sha512-DuVkPNrM12jR41KM2e+N+styka0EgLkTnXmNcXdgOM37vtGeY+oCBK/Jx0hzSeEU6memFCtWb4htrHPMDfwwUQ==
- dependencies:
- babel-code-frame "^6.22.0"
- chalk "^2.4.1"
- chokidar "^3.3.0"
- micromatch "^3.1.10"
- minimatch "^3.0.4"
- semver "^5.6.0"
- tapable "^1.0.0"
- worker-rpc "^0.1.0"
-
-fragment-cache@^0.2.1:
- version "0.2.1"
- resolved "https://registry.yarnpkg.com/fragment-cache/-/fragment-cache-0.2.1.tgz#4290fad27f13e89be7f33799c6bc5a0abfff0d19"
- integrity sha1-QpD60n8T6Jvn8zeZxrxaCr//DRk=
- dependencies:
- map-cache "^0.2.2"
-
-fresh@0.5.2:
- version "0.5.2"
- resolved "https://registry.yarnpkg.com/fresh/-/fresh-0.5.2.tgz#3d8cadd90d976569fa835ab1f8e4b23a105605a7"
- integrity sha1-PYyt2Q2XZWn6g1qx+OSyOhBWBac=
-
-from2@^2.1.0:
- version "2.3.0"
- resolved "https://registry.yarnpkg.com/from2/-/from2-2.3.0.tgz#8bfb5502bde4a4d36cfdeea007fcca21d7e382af"
- integrity sha1-i/tVAr3kpNNs/e6gB/zKIdfjgq8=
- dependencies:
- inherits "^2.0.1"
- readable-stream "^2.0.0"
-
-fs-minipass@^1.2.5:
- version "1.2.7"
- resolved "https://registry.yarnpkg.com/fs-minipass/-/fs-minipass-1.2.7.tgz#ccff8570841e7fe4265693da88936c55aed7f7c7"
- integrity sha512-GWSSJGFy4e9GUeCcbIkED+bgAoFyj7XF1mV8rma3QW4NIqX9Kyx79N/PF61H5udOV3aY1IaMLs6pGbH71nlCTA==
- dependencies:
- minipass "^2.6.0"
-
-fs-write-stream-atomic@^1.0.8:
- version "1.0.10"
- resolved "https://registry.yarnpkg.com/fs-write-stream-atomic/-/fs-write-stream-atomic-1.0.10.tgz#b47df53493ef911df75731e70a9ded0189db40c9"
- integrity sha1-tH31NJPvkR33VzHnCp3tAYnbQMk=
- dependencies:
- graceful-fs "^4.1.2"
- iferr "^0.1.5"
- imurmurhash "^0.1.4"
- readable-stream "1 || 2"
-
-fs.realpath@^1.0.0:
- version "1.0.0"
- resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f"
- integrity sha1-FQStJSMVjKpA20onh8sBQRmU6k8=
-
-fsevents@^1.2.7:
- version "1.2.11"
- resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-1.2.11.tgz#67bf57f4758f02ede88fb2a1712fef4d15358be3"
- integrity sha512-+ux3lx6peh0BpvY0JebGyZoiR4D+oYzdPZMKJwkZ+sFkNJzpL7tXc/wehS49gUAxg3tmMHPHZkA8JU2rhhgDHw==
- dependencies:
- bindings "^1.5.0"
- nan "^2.12.1"
-
-fsevents@~2.1.2:
- version "2.1.2"
- resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-2.1.2.tgz#4c0a1fb34bc68e543b4b82a9ec392bfbda840805"
- integrity sha512-R4wDiBwZ0KzpgOWetKDug1FZcYhqYnUYKtfZYt4mD5SBz76q0KR4Q9o7GIPamsVPGmW3EYPPJ0dOOjvx32ldZA==
-
-function-bind@^1.1.1:
- version "1.1.1"
- resolved "https://registry.yarnpkg.com/function-bind/-/function-bind-1.1.1.tgz#a56899d3ea3c9bab874bb9773b7c5ede92f4895d"
- integrity sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==
-
-gauge@~2.7.3:
- version "2.7.4"
- resolved "https://registry.yarnpkg.com/gauge/-/gauge-2.7.4.tgz#2c03405c7538c39d7eb37b317022e325fb018bf7"
- integrity sha1-LANAXHU4w51+s3sxcCLjJfsBi/c=
- dependencies:
- aproba "^1.0.3"
- console-control-strings "^1.0.0"
- has-unicode "^2.0.0"
- object-assign "^4.1.0"
- signal-exit "^3.0.0"
- string-width "^1.0.1"
- strip-ansi "^3.0.1"
- wide-align "^1.1.0"
-
-get-stream@^3.0.0:
- version "3.0.0"
- resolved "https://registry.yarnpkg.com/get-stream/-/get-stream-3.0.0.tgz#8e943d1358dc37555054ecbe2edb05aa174ede14"
- integrity sha1-jpQ9E1jcN1VQVOy+LtsFqhdO3hQ=
-
-get-value@^2.0.3, get-value@^2.0.6:
- version "2.0.6"
- resolved "https://registry.yarnpkg.com/get-value/-/get-value-2.0.6.tgz#dc15ca1c672387ca76bd37ac0a395ba2042a2c28"
- integrity sha1-3BXKHGcjh8p2vTesCjlbogQqLCg=
-
-glob-parent@^3.1.0:
- version "3.1.0"
- resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-3.1.0.tgz#9e6af6299d8d3bd2bd40430832bd113df906c5ae"
- integrity sha1-nmr2KZ2NO9K9QEMIMr0RPfkGxa4=
- dependencies:
- is-glob "^3.1.0"
- path-dirname "^1.0.0"
-
-glob-parent@~5.1.0:
- version "5.1.0"
- resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-5.1.0.tgz#5f4c1d1e748d30cd73ad2944b3577a81b081e8c2"
- integrity sha512-qjtRgnIVmOfnKUE3NJAQEdk+lKrxfw8t5ke7SXtfMTHcjsBfOfWXCQfdb30zfDoZQ2IRSIiidmjtbHZPZ++Ihw==
- dependencies:
- is-glob "^4.0.1"
-
-glob-to-regexp@^0.4.1:
- version "0.4.1"
- resolved "https://registry.yarnpkg.com/glob-to-regexp/-/glob-to-regexp-0.4.1.tgz#c75297087c851b9a578bd217dd59a92f59fe546e"
- integrity sha512-lkX1HJXwyMcprw/5YUZc2s7DrpAiHB21/V+E1rHUrVNokkvB6bqMzT0VfV6/86ZNabt1k14YOIaT7nDvOX3Iiw==
-
-glob@^7.0.3, glob@^7.1.3, glob@^7.1.4:
- version "7.1.6"
- resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.6.tgz#141f33b81a7c2492e125594307480c46679278a6"
- integrity sha512-LwaxwyZ72Lk7vZINtNNrywX0ZuLyStrdDtabefZKAY5ZGJhVtgdznluResxNmPitE0SAO+O26sWTHeKSI2wMBA==
- dependencies:
- fs.realpath "^1.0.0"
- inflight "^1.0.4"
- inherits "2"
- minimatch "^3.0.4"
- once "^1.3.0"
- path-is-absolute "^1.0.0"
-
-globals@^11.1.0:
- version "11.12.0"
- resolved "https://registry.yarnpkg.com/globals/-/globals-11.12.0.tgz#ab8795338868a0babd8525758018c2a7eb95c42e"
- integrity sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==
-
-globby@^6.1.0:
- version "6.1.0"
- resolved "https://registry.yarnpkg.com/globby/-/globby-6.1.0.tgz#f5a6d70e8395e21c858fb0489d64df02424d506c"
- integrity sha1-9abXDoOV4hyFj7BInWTfAkJNUGw=
- dependencies:
- array-union "^1.0.1"
- glob "^7.0.3"
- object-assign "^4.0.1"
- pify "^2.0.0"
- pinkie-promise "^2.0.0"
-
-graceful-fs@^4.1.11, graceful-fs@^4.1.15, graceful-fs@^4.1.2:
- version "4.2.3"
- resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.2.3.tgz#4a12ff1b60376ef09862c2093edd908328be8423"
- integrity sha512-a30VEBm4PEdx1dRB7MFK7BejejvCvBronbLjht+sHuGYj8PHs7M/5Z+rt5lw551vZ7yfTCj4Vuyy3mSJytDWRQ==
-
-"graceful-readlink@>= 1.0.0":
- version "1.0.1"
- resolved "https://registry.yarnpkg.com/graceful-readlink/-/graceful-readlink-1.0.1.tgz#4cafad76bc62f02fa039b2f94e9a3dd3a391a725"
- integrity sha1-TK+tdrxi8C+gObL5Tpo906ORpyU=
-
-gzip-size@5.1.1:
- version "5.1.1"
- resolved "https://registry.yarnpkg.com/gzip-size/-/gzip-size-5.1.1.tgz#cb9bee692f87c0612b232840a873904e4c135274"
- integrity sha512-FNHi6mmoHvs1mxZAds4PpdCS6QG8B4C1krxJsMutgxl5t3+GlRTzzI3NEkifXx2pVsOvJdOGSmIgDhQ55FwdPA==
- dependencies:
- duplexer "^0.1.1"
- pify "^4.0.1"
-
-has-ansi@^2.0.0:
- version "2.0.0"
- resolved "https://registry.yarnpkg.com/has-ansi/-/has-ansi-2.0.0.tgz#34f5049ce1ecdf2b0649af3ef24e45ed35416d91"
- integrity sha1-NPUEnOHs3ysGSa8+8k5F7TVBbZE=
- dependencies:
- ansi-regex "^2.0.0"
-
-has-flag@^3.0.0:
- version "3.0.0"
- resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-3.0.0.tgz#b5d454dc2199ae225699f3467e5a07f3b955bafd"
- integrity sha1-tdRU3CGZriJWmfNGfloH87lVuv0=
-
-has-symbols@^1.0.0:
- version "1.0.1"
- resolved "https://registry.yarnpkg.com/has-symbols/-/has-symbols-1.0.1.tgz#9f5214758a44196c406d9bd76cebf81ec2dd31e8"
- integrity sha512-PLcsoqu++dmEIZB+6totNFKq/7Do+Z0u4oT0zKOJNl3lYK6vGwwu2hjHs+68OEZbTjiUE9bgOABXbP/GvrS0Kg==
-
-has-unicode@^2.0.0:
- version "2.0.1"
- resolved "https://registry.yarnpkg.com/has-unicode/-/has-unicode-2.0.1.tgz#e0e6fe6a28cf51138855e086d1691e771de2a8b9"
- integrity sha1-4Ob+aijPUROIVeCG0Wkedx3iqLk=
-
-has-value@^0.3.1:
- version "0.3.1"
- resolved "https://registry.yarnpkg.com/has-value/-/has-value-0.3.1.tgz#7b1f58bada62ca827ec0a2078025654845995e1f"
- integrity sha1-ex9YutpiyoJ+wKIHgCVlSEWZXh8=
- dependencies:
- get-value "^2.0.3"
- has-values "^0.1.4"
- isobject "^2.0.0"
-
-has-value@^1.0.0:
- version "1.0.0"
- resolved "https://registry.yarnpkg.com/has-value/-/has-value-1.0.0.tgz#18b281da585b1c5c51def24c930ed29a0be6b177"
- integrity sha1-GLKB2lhbHFxR3vJMkw7SmgvmsXc=
- dependencies:
- get-value "^2.0.6"
- has-values "^1.0.0"
- isobject "^3.0.0"
-
-has-values@^0.1.4:
- version "0.1.4"
- resolved "https://registry.yarnpkg.com/has-values/-/has-values-0.1.4.tgz#6d61de95d91dfca9b9a02089ad384bff8f62b771"
- integrity sha1-bWHeldkd/Km5oCCJrThL/49it3E=
-
-has-values@^1.0.0:
- version "1.0.0"
- resolved "https://registry.yarnpkg.com/has-values/-/has-values-1.0.0.tgz#95b0b63fec2146619a6fe57fe75628d5a39efe4f"
- integrity sha1-lbC2P+whRmGab+V/51Yo1aOe/k8=
- dependencies:
- is-number "^3.0.0"
- kind-of "^4.0.0"
-
-has@^1.0.3:
- version "1.0.3"
- resolved "https://registry.yarnpkg.com/has/-/has-1.0.3.tgz#722d7cbfc1f6aa8241f16dd814e011e1f41e8796"
- integrity sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==
- dependencies:
- function-bind "^1.1.1"
-
-hash-base@^3.0.0:
- version "3.0.4"
- resolved "https://registry.yarnpkg.com/hash-base/-/hash-base-3.0.4.tgz#5fc8686847ecd73499403319a6b0a3f3f6ae4918"
- integrity sha1-X8hoaEfs1zSZQDMZprCj8/auSRg=
- dependencies:
- inherits "^2.0.1"
- safe-buffer "^5.0.1"
-
-hash.js@^1.0.0, hash.js@^1.0.3:
- version "1.1.7"
- resolved "https://registry.yarnpkg.com/hash.js/-/hash.js-1.1.7.tgz#0babca538e8d4ee4a0f8988d68866537a003cf42"
- integrity sha512-taOaskGt4z4SOANNseOviYDvjEJinIkRgmp7LbKP2YTTmVxWBl87s/uzK9r+44BclBSp2X7K1hqeNfz9JbBeXA==
- dependencies:
- inherits "^2.0.3"
- minimalistic-assert "^1.0.1"
-
-hmac-drbg@^1.0.0:
- version "1.0.1"
- resolved "https://registry.yarnpkg.com/hmac-drbg/-/hmac-drbg-1.0.1.tgz#d2745701025a6c775a6c545793ed502fc0c649a1"
- integrity sha1-0nRXAQJabHdabFRXk+1QL8DGSaE=
- dependencies:
- hash.js "^1.0.3"
- minimalistic-assert "^1.0.0"
- minimalistic-crypto-utils "^1.0.1"
-
-hosted-git-info@^2.1.4:
- version "2.8.5"
- resolved "https://registry.yarnpkg.com/hosted-git-info/-/hosted-git-info-2.8.5.tgz#759cfcf2c4d156ade59b0b2dfabddc42a6b9c70c"
- integrity sha512-kssjab8CvdXfcXMXVcvsXum4Hwdq9XGtRD3TteMEvEbq0LXyiNQr6AprqKqfeaDXze7SxWvRxdpwE6ku7ikLkg==
-
-html-entities@^1.2.0:
- version "1.2.1"
- resolved "https://registry.yarnpkg.com/html-entities/-/html-entities-1.2.1.tgz#0df29351f0721163515dfb9e5543e5f6eed5162f"
- integrity sha1-DfKTUfByEWNRXfueVUPl9u7VFi8=
-
-http-errors@1.7.2:
- version "1.7.2"
- resolved "https://registry.yarnpkg.com/http-errors/-/http-errors-1.7.2.tgz#4f5029cf13239f31036e5b2e55292bcfbcc85c8f"
- integrity sha512-uUQBt3H/cSIVfch6i1EuPNy/YsRSOUBXTVfZ+yR7Zjez3qjBz6i9+i4zjNaoqcoFVI4lQJ5plg63TvGfRSDCRg==
- dependencies:
- depd "~1.1.2"
- inherits "2.0.3"
- setprototypeof "1.1.1"
- statuses ">= 1.5.0 < 2"
- toidentifier "1.0.0"
-
-http-errors@~1.7.2:
- version "1.7.3"
- resolved "https://registry.yarnpkg.com/http-errors/-/http-errors-1.7.3.tgz#6c619e4f9c60308c38519498c14fbb10aacebb06"
- integrity sha512-ZTTX0MWrsQ2ZAhA1cejAwDLycFsd7I7nVtnkT3Ol0aqodaKW+0CTZDQ1uBv5whptCnc8e8HeRRJxRs0kmm/Qfw==
- dependencies:
- depd "~1.1.2"
- inherits "2.0.4"
- setprototypeof "1.1.1"
- statuses ">= 1.5.0 < 2"
- toidentifier "1.0.0"
-
-https-browserify@^1.0.0:
- version "1.0.0"
- resolved "https://registry.yarnpkg.com/https-browserify/-/https-browserify-1.0.0.tgz#ec06c10e0a34c0f2faf199f7fd7fc78fffd03c73"
- integrity sha1-7AbBDgo0wPL68Zn3/X/Hj//QPHM=
-
-iconv-lite@0.4.24, iconv-lite@^0.4.4:
- version "0.4.24"
- resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.4.24.tgz#2022b4b25fbddc21d2f524974a474aafe733908b"
- integrity sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==
- dependencies:
- safer-buffer ">= 2.1.2 < 3"
-
-icss-utils@^4.0.0, icss-utils@^4.1.1:
- version "4.1.1"
- resolved "https://registry.yarnpkg.com/icss-utils/-/icss-utils-4.1.1.tgz#21170b53789ee27447c2f47dd683081403f9a467"
- integrity sha512-4aFq7wvWyMHKgxsH8QQtGpvbASCf+eM3wPRLI6R+MgAnTCZ6STYsRvttLvRWK0Nfif5piF394St3HeJDaljGPA==
- dependencies:
- postcss "^7.0.14"
-
-ieee754@^1.1.4:
- version "1.1.13"
- resolved "https://registry.yarnpkg.com/ieee754/-/ieee754-1.1.13.tgz#ec168558e95aa181fd87d37f55c32bbcb6708b84"
- integrity sha512-4vf7I2LYV/HaWerSo3XmlMkp5eZ83i+/CDluXi/IGTs/O1sejBNhTtnxzmRZfvOUqj7lZjqHkeTvpgSFDlWZTg==
-
-iferr@^0.1.5:
- version "0.1.5"
- resolved "https://registry.yarnpkg.com/iferr/-/iferr-0.1.5.tgz#c60eed69e6d8fdb6b3104a1fcbca1c192dc5b501"
- integrity sha1-xg7taebY/bazEEofy8ocGS3FtQE=
-
-ignore-loader@0.1.2:
- version "0.1.2"
- resolved "https://registry.yarnpkg.com/ignore-loader/-/ignore-loader-0.1.2.tgz#d81f240376d0ba4f0d778972c3ad25874117a463"
- integrity sha1-2B8kA3bQuk8Nd4lyw60lh0EXpGM=
-
-ignore-walk@^3.0.1:
- version "3.0.3"
- resolved "https://registry.yarnpkg.com/ignore-walk/-/ignore-walk-3.0.3.tgz#017e2447184bfeade7c238e4aefdd1e8f95b1e37"
- integrity sha512-m7o6xuOaT1aqheYHKf8W6J5pYH85ZI9w077erOzLje3JsB1gkafkAhHHY19dqjulgIZHFm32Cp5uNZgcQqdJKw==
- dependencies:
- minimatch "^3.0.4"
-
-import-cwd@^2.0.0:
- version "2.1.0"
- resolved "https://registry.yarnpkg.com/import-cwd/-/import-cwd-2.1.0.tgz#aa6cf36e722761285cb371ec6519f53e2435b0a9"
- integrity sha1-qmzzbnInYShcs3HsZRn1PiQ1sKk=
- dependencies:
- import-from "^2.1.0"
-
-import-fresh@^2.0.0:
- version "2.0.0"
- resolved "https://registry.yarnpkg.com/import-fresh/-/import-fresh-2.0.0.tgz#d81355c15612d386c61f9ddd3922d4304822a546"
- integrity sha1-2BNVwVYS04bGH53dOSLUMEgipUY=
- dependencies:
- caller-path "^2.0.0"
- resolve-from "^3.0.0"
-
-import-fresh@^3.1.0:
- version "3.2.1"
- resolved "https://registry.yarnpkg.com/import-fresh/-/import-fresh-3.2.1.tgz#633ff618506e793af5ac91bf48b72677e15cbe66"
- integrity sha512-6e1q1cnWP2RXD9/keSkxHScg508CdXqXWgWBaETNhyuBFz+kUZlKboh+ISK+bU++DmbHimVBrOz/zzPe0sZ3sQ==
- dependencies:
- parent-module "^1.0.0"
- resolve-from "^4.0.0"
-
-import-from@^2.1.0:
- version "2.1.0"
- resolved "https://registry.yarnpkg.com/import-from/-/import-from-2.1.0.tgz#335db7f2a7affd53aaa471d4b8021dee36b7f3b1"
- integrity sha1-M1238qev/VOqpHHUuAId7ja387E=
- dependencies:
- resolve-from "^3.0.0"
-
-imurmurhash@^0.1.4:
- version "0.1.4"
- resolved "https://registry.yarnpkg.com/imurmurhash/-/imurmurhash-0.1.4.tgz#9218b9b2b928a238b13dc4fb6b6d576f231453ea"
- integrity sha1-khi5srkoojixPcT7a21XbyMUU+o=
-
-indexes-of@^1.0.1:
- version "1.0.1"
- resolved "https://registry.yarnpkg.com/indexes-of/-/indexes-of-1.0.1.tgz#f30f716c8e2bd346c7b67d3df3915566a7c05607"
- integrity sha1-8w9xbI4r00bHtn0985FVZqfAVgc=
-
-infer-owner@^1.0.3:
- version "1.0.4"
- resolved "https://registry.yarnpkg.com/infer-owner/-/infer-owner-1.0.4.tgz#c4cefcaa8e51051c2a40ba2ce8a3d27295af9467"
- integrity sha512-IClj+Xz94+d7irH5qRyfJonOdfTzuDaifE6ZPWfx0N0+/ATZCbuTPq2prFl526urkQd90WyUKIh1DfBQ2hMz9A==
-
-inflight@^1.0.4:
- version "1.0.6"
- resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9"
- integrity sha1-Sb1jMdfQLQwJvJEKEHW6gWW1bfk=
- dependencies:
- once "^1.3.0"
- wrappy "1"
-
-inherits@2, inherits@2.0.4, inherits@^2.0.1, inherits@^2.0.3, inherits@~2.0.1, inherits@~2.0.3:
- version "2.0.4"
- resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.4.tgz#0fa2c64f932917c3433a0ded55363aae37416b7c"
- integrity sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==
-
-inherits@2.0.1:
- version "2.0.1"
- resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.1.tgz#b17d08d326b4423e568eff719f91b0b1cbdf69f1"
- integrity sha1-sX0I0ya0Qj5Wjv9xn5GwscvfafE=
-
-inherits@2.0.3:
- version "2.0.3"
- resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.3.tgz#633c2c83e3da42a502f52466022480f4208261de"
- integrity sha1-Yzwsg+PaQqUC9SRmAiSA9CCCYd4=
-
-ini@~1.3.0:
- version "1.3.5"
- resolved "https://registry.yarnpkg.com/ini/-/ini-1.3.5.tgz#eee25f56db1c9ec6085e0c22778083f596abf927"
- integrity sha512-RZY5huIKCMRWDUqZlEi72f/lmXKMvuszcMBduliQ3nnWbx9X/ZBQO7DijMEYS9EhHBb2qacRUMtC7svLwe0lcw==
-
-invariant@^2.2.2:
- version "2.2.4"
- resolved "https://registry.yarnpkg.com/invariant/-/invariant-2.2.4.tgz#610f3c92c9359ce1db616e538008d23ff35158e6"
- integrity sha512-phJfQVBuaJM5raOpJjSfkiD6BpbCE4Ns//LaXl6wGYtUBY83nWS6Rf9tXm2e8VaK60JEjYldbPif/A2B1C2gNA==
- dependencies:
- loose-envify "^1.0.0"
-
-is-accessor-descriptor@^0.1.6:
- version "0.1.6"
- resolved "https://registry.yarnpkg.com/is-accessor-descriptor/-/is-accessor-descriptor-0.1.6.tgz#a9e12cb3ae8d876727eeef3843f8a0897b5c98d6"
- integrity sha1-qeEss66Nh2cn7u84Q/igiXtcmNY=
- dependencies:
- kind-of "^3.0.2"
-
-is-accessor-descriptor@^1.0.0:
- version "1.0.0"
- resolved "https://registry.yarnpkg.com/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz#169c2f6d3df1f992618072365c9b0ea1f6878656"
- integrity sha512-m5hnHTkcVsPfqx3AKlyttIPb7J+XykHvJP2B9bZDjlhLIoEq4XoK64Vg7boZlVWYK6LUY94dYPEE7Lh0ZkZKcQ==
- dependencies:
- kind-of "^6.0.0"
-
-is-arrayish@^0.2.1:
- version "0.2.1"
- resolved "https://registry.yarnpkg.com/is-arrayish/-/is-arrayish-0.2.1.tgz#77c99840527aa8ecb1a8ba697b80645a7a926a9d"
- integrity sha1-d8mYQFJ6qOyxqLppe4BkWnqSap0=
-
-is-binary-path@^1.0.0:
- version "1.0.1"
- resolved "https://registry.yarnpkg.com/is-binary-path/-/is-binary-path-1.0.1.tgz#75f16642b480f187a711c814161fd3a4a7655898"
- integrity sha1-dfFmQrSA8YenEcgUFh/TpKdlWJg=
- dependencies:
- binary-extensions "^1.0.0"
-
-is-binary-path@~2.1.0:
- version "2.1.0"
- resolved "https://registry.yarnpkg.com/is-binary-path/-/is-binary-path-2.1.0.tgz#ea1f7f3b80f064236e83470f86c09c254fb45b09"
- integrity sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==
- dependencies:
- binary-extensions "^2.0.0"
-
-is-buffer@^1.1.5:
- version "1.1.6"
- resolved "https://registry.yarnpkg.com/is-buffer/-/is-buffer-1.1.6.tgz#efaa2ea9daa0d7ab2ea13a97b2b8ad51fefbe8be"
- integrity sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w==
-
-is-data-descriptor@^0.1.4:
- version "0.1.4"
- resolved "https://registry.yarnpkg.com/is-data-descriptor/-/is-data-descriptor-0.1.4.tgz#0b5ee648388e2c860282e793f1856fec3f301b56"
- integrity sha1-C17mSDiOLIYCgueT8YVv7D8wG1Y=
- dependencies:
- kind-of "^3.0.2"
-
-is-data-descriptor@^1.0.0:
- version "1.0.0"
- resolved "https://registry.yarnpkg.com/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz#d84876321d0e7add03990406abbbbd36ba9268c7"
- integrity sha512-jbRXy1FmtAoCjQkVmIVYwuuqDFUbaOeDjmed1tOGPrsMhtJA4rD9tkgA0F1qJ3gRFRXcHYVkdeaP50Q5rE/jLQ==
- dependencies:
- kind-of "^6.0.0"
-
-is-descriptor@^0.1.0:
- version "0.1.6"
- resolved "https://registry.yarnpkg.com/is-descriptor/-/is-descriptor-0.1.6.tgz#366d8240dde487ca51823b1ab9f07a10a78251ca"
- integrity sha512-avDYr0SB3DwO9zsMov0gKCESFYqCnE4hq/4z3TdUlukEy5t9C0YRq7HLrsN52NAcqXKaepeCD0n+B0arnVG3Hg==
- dependencies:
- is-accessor-descriptor "^0.1.6"
- is-data-descriptor "^0.1.4"
- kind-of "^5.0.0"
-
-is-descriptor@^1.0.0, is-descriptor@^1.0.2:
- version "1.0.2"
- resolved "https://registry.yarnpkg.com/is-descriptor/-/is-descriptor-1.0.2.tgz#3b159746a66604b04f8c81524ba365c5f14d86ec"
- integrity sha512-2eis5WqQGV7peooDyLmNEPUrps9+SXX5c9pL3xEB+4e9HnGuDa7mB7kHxHw4CbqS9k1T2hOH3miL8n8WtiYVtg==
- dependencies:
- is-accessor-descriptor "^1.0.0"
- is-data-descriptor "^1.0.0"
- kind-of "^6.0.2"
-
-is-directory@^0.3.1:
- version "0.3.1"
- resolved "https://registry.yarnpkg.com/is-directory/-/is-directory-0.3.1.tgz#61339b6f2475fc772fd9c9d83f5c8575dc154ae1"
- integrity sha1-YTObbyR1/Hcv2cnYP1yFddwVSuE=
-
-is-docker@2.0.0:
- version "2.0.0"
- resolved "https://registry.yarnpkg.com/is-docker/-/is-docker-2.0.0.tgz#2cb0df0e75e2d064fe1864c37cdeacb7b2dcf25b"
- integrity sha512-pJEdRugimx4fBMra5z2/5iRdZ63OhYV0vr0Dwm5+xtW4D1FvRkB8hamMIhnWfyJeDdyr/aa7BDyNbtG38VxgoQ==
-
-is-extendable@^0.1.0, is-extendable@^0.1.1:
- version "0.1.1"
- resolved "https://registry.yarnpkg.com/is-extendable/-/is-extendable-0.1.1.tgz#62b110e289a471418e3ec36a617d472e301dfc89"
- integrity sha1-YrEQ4omkcUGOPsNqYX1HLjAd/Ik=
-
-is-extendable@^1.0.1:
- version "1.0.1"
- resolved "https://registry.yarnpkg.com/is-extendable/-/is-extendable-1.0.1.tgz#a7470f9e426733d81bd81e1155264e3a3507cab4"
- integrity sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==
- dependencies:
- is-plain-object "^2.0.4"
-
-is-extglob@^2.1.0, is-extglob@^2.1.1:
- version "2.1.1"
- resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-2.1.1.tgz#a88c02535791f02ed37c76a1b9ea9773c833f8c2"
- integrity sha1-qIwCU1eR8C7TfHahueqXc8gz+MI=
-
-is-fullwidth-code-point@^1.0.0:
- version "1.0.0"
- resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz#ef9e31386f031a7f0d643af82fde50c457ef00cb"
- integrity sha1-754xOG8DGn8NZDr4L95QxFfvAMs=
- dependencies:
- number-is-nan "^1.0.0"
-
-is-fullwidth-code-point@^2.0.0:
- version "2.0.0"
- resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz#a3b30a5c4f199183167aaab93beefae3ddfb654f"
- integrity sha1-o7MKXE8ZkYMWeqq5O+764937ZU8=
-
-is-glob@^3.1.0:
- version "3.1.0"
- resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-3.1.0.tgz#7ba5ae24217804ac70707b96922567486cc3e84a"
- integrity sha1-e6WuJCF4BKxwcHuWkiVnSGzD6Eo=
- dependencies:
- is-extglob "^2.1.0"
-
-is-glob@^4.0.0, is-glob@^4.0.1, is-glob@~4.0.1:
- version "4.0.1"
- resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-4.0.1.tgz#7567dbe9f2f5e2467bc77ab83c4a29482407a5dc"
- integrity sha512-5G0tKtBTFImOqDnLB2hG6Bp2qcKEFduo4tZu9MT/H6NQv/ghhy30o55ufafxJ/LdH79LLs2Kfrn85TLKyA7BUg==
- dependencies:
- is-extglob "^2.1.1"
-
-is-number@^3.0.0:
- version "3.0.0"
- resolved "https://registry.yarnpkg.com/is-number/-/is-number-3.0.0.tgz#24fd6201a4782cf50561c810276afc7d12d71195"
- integrity sha1-JP1iAaR4LPUFYcgQJ2r8fRLXEZU=
- dependencies:
- kind-of "^3.0.2"
-
-is-number@^7.0.0:
- version "7.0.0"
- resolved "https://registry.yarnpkg.com/is-number/-/is-number-7.0.0.tgz#7535345b896734d5f80c4d06c50955527a14f12b"
- integrity sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==
-
-is-obj@^2.0.0:
- version "2.0.0"
- resolved "https://registry.yarnpkg.com/is-obj/-/is-obj-2.0.0.tgz#473fb05d973705e3fd9620545018ca8e22ef4982"
- integrity sha512-drqDG3cbczxxEJRoOXcOjtdp1J/lyp1mNn0xaznRs8+muBhgQcrnbspox5X5fOw0HnMnbfDzvnEMEtqDEJEo8w==
-
-is-path-cwd@^1.0.0:
- version "1.0.0"
- resolved "https://registry.yarnpkg.com/is-path-cwd/-/is-path-cwd-1.0.0.tgz#d225ec23132e89edd38fda767472e62e65f1106d"
- integrity sha1-0iXsIxMuie3Tj9p2dHLmLmXxEG0=
-
-is-path-in-cwd@^1.0.0:
- version "1.0.1"
- resolved "https://registry.yarnpkg.com/is-path-in-cwd/-/is-path-in-cwd-1.0.1.tgz#5ac48b345ef675339bd6c7a48a912110b241cf52"
- integrity sha512-FjV1RTW48E7CWM7eE/J2NJvAEEVektecDBVBE5Hh3nM1Jd0kvhHtX68Pr3xsDf857xt3Y4AkwVULK1Vku62aaQ==
- dependencies:
- is-path-inside "^1.0.0"
-
-is-path-inside@^1.0.0:
- version "1.0.1"
- resolved "https://registry.yarnpkg.com/is-path-inside/-/is-path-inside-1.0.1.tgz#8ef5b7de50437a3fdca6b4e865ef7aa55cb48036"
- integrity sha1-jvW33lBDej/cprToZe96pVy0gDY=
- dependencies:
- path-is-inside "^1.0.1"
-
-is-plain-obj@^1.0.0:
- version "1.1.0"
- resolved "https://registry.yarnpkg.com/is-plain-obj/-/is-plain-obj-1.1.0.tgz#71a50c8429dfca773c92a390a4a03b39fcd51d3e"
- integrity sha1-caUMhCnfync8kqOQpKA7OfzVHT4=
-
-is-plain-object@^2.0.3, is-plain-object@^2.0.4:
- version "2.0.4"
- resolved "https://registry.yarnpkg.com/is-plain-object/-/is-plain-object-2.0.4.tgz#2c163b3fafb1b606d9d17928f05c2a1c38e07677"
- integrity sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==
- dependencies:
- isobject "^3.0.1"
-
-is-stream@^1.1.0:
- version "1.1.0"
- resolved "https://registry.yarnpkg.com/is-stream/-/is-stream-1.1.0.tgz#12d4a3dd4e68e0b79ceb8dbc84173ae80d91ca44"
- integrity sha1-EtSj3U5o4Lec6428hBc66A2RykQ=
-
-is-typedarray@^1.0.0:
- version "1.0.0"
- resolved "https://registry.yarnpkg.com/is-typedarray/-/is-typedarray-1.0.0.tgz#e479c80858df0c1b11ddda6940f96011fcda4a9a"
- integrity sha1-5HnICFjfDBsR3dppQPlgEfzaSpo=
-
-is-windows@^1.0.2:
- version "1.0.2"
- resolved "https://registry.yarnpkg.com/is-windows/-/is-windows-1.0.2.tgz#d1850eb9791ecd18e6182ce12a30f396634bb19d"
- integrity sha512-eXK1UInq2bPmjyX6e3VHIzMLobc4J94i4AWn+Hpq3OU5KkrRC96OAcR3PRJ/pGu6m8TRnBHP9dkXQVsT/COVIA==
-
-is-wsl@2.1.1:
- version "2.1.1"
- resolved "https://registry.yarnpkg.com/is-wsl/-/is-wsl-2.1.1.tgz#4a1c152d429df3d441669498e2486d3596ebaf1d"
- integrity sha512-umZHcSrwlDHo2TGMXv0DZ8dIUGunZ2Iv68YZnrmCiBPkZ4aaOhtv7pXJKeki9k3qJ3RJr0cDyitcl5wEH3AYog==
-
-is-wsl@^1.1.0:
- version "1.1.0"
- resolved "https://registry.yarnpkg.com/is-wsl/-/is-wsl-1.1.0.tgz#1f16e4aa22b04d1336b66188a66af3c600c3a66d"
- integrity sha1-HxbkqiKwTRM2tmGIpmrzxgDDpm0=
-
-isarray@1.0.0, isarray@^1.0.0, isarray@~1.0.0:
- version "1.0.0"
- resolved "https://registry.yarnpkg.com/isarray/-/isarray-1.0.0.tgz#bb935d48582cba168c06834957a54a3e07124f11"
- integrity sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE=
-
-isexe@^2.0.0:
- version "2.0.0"
- resolved "https://registry.yarnpkg.com/isexe/-/isexe-2.0.0.tgz#e8fbf374dc556ff8947a10dcb0572d633f2cfa10"
- integrity sha1-6PvzdNxVb/iUehDcsFctYz8s+hA=
-
-isobject@^2.0.0:
- version "2.1.0"
- resolved "https://registry.yarnpkg.com/isobject/-/isobject-2.1.0.tgz#f065561096a3f1da2ef46272f815c840d87e0c89"
- integrity sha1-8GVWEJaj8dou9GJy+BXIQNh+DIk=
- dependencies:
- isarray "1.0.0"
-
-isobject@^3.0.0, isobject@^3.0.1:
- version "3.0.1"
- resolved "https://registry.yarnpkg.com/isobject/-/isobject-3.0.1.tgz#4e431e92b11a9731636aa1f9c8d1ccbcfdab78df"
- integrity sha1-TkMekrEalzFjaqH5yNHMvP2reN8=
-
-jest-worker@24.9.0:
- version "24.9.0"
- resolved "https://registry.yarnpkg.com/jest-worker/-/jest-worker-24.9.0.tgz#5dbfdb5b2d322e98567898238a9697bcce67b3e5"
- integrity sha512-51PE4haMSXcHohnSMdM42anbvZANYTqMrr52tVKPqqsPJMzoP6FYYDVqahX/HrAoKEKz3uUPzSvKs9A3qR4iVw==
- dependencies:
- merge-stream "^2.0.0"
- supports-color "^6.1.0"
-
-js-levenshtein@^1.1.3:
- version "1.1.6"
- resolved "https://registry.yarnpkg.com/js-levenshtein/-/js-levenshtein-1.1.6.tgz#c6cee58eb3550372df8deb85fad5ce66ce01d59d"
- integrity sha512-X2BB11YZtrRqY4EnQcLX5Rh373zbK4alC1FW7D7MBhL2gtcC17cTnr6DmfHZeS0s2rTHjUTMMHfG7gO8SSdw+g==
-
-"js-tokens@^3.0.0 || ^4.0.0", js-tokens@^4.0.0:
- version "4.0.0"
- resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-4.0.0.tgz#19203fb59991df98e3a287050d4647cdeaf32499"
- integrity sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==
-
-js-tokens@^3.0.2:
- version "3.0.2"
- resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-3.0.2.tgz#9866df395102130e38f7f996bceb65443209c25b"
- integrity sha1-mGbfOVECEw449/mWvOtlRDIJwls=
-
-js-yaml@^3.13.1:
- version "3.13.1"
- resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-3.13.1.tgz#aff151b30bfdfa8e49e05da22e7415e9dfa37847"
- integrity sha512-YfbcO7jXDdyj0DGxYVSlSeQNHbD7XPWvrVWeVUujrQEoZzWJIRrCPoyk6kL6IAjAG2IolMK4T0hNUe0HOUs5Jw==
- dependencies:
- argparse "^1.0.7"
- esprima "^4.0.0"
-
-jsesc@^2.5.1:
- version "2.5.2"
- resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-2.5.2.tgz#80564d2e483dacf6e8ef209650a67df3f0c283a4"
- integrity sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA==
-
-jsesc@~0.5.0:
- version "0.5.0"
- resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-0.5.0.tgz#e7dee66e35d6fc16f710fe91d5cf69f70f08911d"
- integrity sha1-597mbjXW/Bb3EP6R1c9p9w8IkR0=
-
-json-parse-better-errors@^1.0.1, json-parse-better-errors@^1.0.2:
- version "1.0.2"
- resolved "https://registry.yarnpkg.com/json-parse-better-errors/-/json-parse-better-errors-1.0.2.tgz#bb867cfb3450e69107c131d1c514bab3dc8bcaa9"
- integrity sha512-mrqyZKfX5EhL7hvqcV6WG1yYjnjeuYDzDhhcAAUrq8Po85NBQBJP+ZDUT75qZQ98IkUoBqdkExkukOU7Ts2wrw==
-
-json-schema-traverse@^0.4.1:
- version "0.4.1"
- resolved "https://registry.yarnpkg.com/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz#69f6a87d9513ab8bb8fe63bdb0979c448e684660"
- integrity sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==
-
-json-schema-typed@^7.0.0:
- version "7.0.3"
- resolved "https://registry.yarnpkg.com/json-schema-typed/-/json-schema-typed-7.0.3.tgz#23ff481b8b4eebcd2ca123b4fa0409e66469a2d9"
- integrity sha512-7DE8mpG+/fVw+dTpjbxnx47TaMnDfOI1jwft9g1VybltZCduyRQPJPvc+zzKY9WPHxhPWczyFuYa6I8Mw4iU5A==
-
-json5@2.1.1, json5@^2.1.0:
- version "2.1.1"
- resolved "https://registry.yarnpkg.com/json5/-/json5-2.1.1.tgz#81b6cb04e9ba496f1c7005d07b4368a2638f90b6"
- integrity sha512-l+3HXD0GEI3huGq1njuqtzYK8OYJyXMkOLtQ53pjWh89tvWS2h6l+1zMkYWqlb57+SiQodKZyvMEFb2X+KrFhQ==
- dependencies:
- minimist "^1.2.0"
-
-json5@^1.0.1:
- version "1.0.1"
- resolved "https://registry.yarnpkg.com/json5/-/json5-1.0.1.tgz#779fb0018604fa854eacbf6252180d83543e3dbe"
- integrity sha512-aKS4WQjPenRxiQsC93MNfjx+nbF4PAdYzmd/1JIj8HYzqfbu86beTuNgXDzPknWk0n0uARlyewZo4s++ES36Ow==
- dependencies:
- minimist "^1.2.0"
-
-kind-of@^3.0.2, kind-of@^3.0.3, kind-of@^3.2.0:
- version "3.2.2"
- resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-3.2.2.tgz#31ea21a734bab9bbb0f32466d893aea51e4a3c64"
- integrity sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=
- dependencies:
- is-buffer "^1.1.5"
-
-kind-of@^4.0.0:
- version "4.0.0"
- resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-4.0.0.tgz#20813df3d712928b207378691a45066fae72dd57"
- integrity sha1-IIE989cSkosgc3hpGkUGb65y3Vc=
- dependencies:
- is-buffer "^1.1.5"
-
-kind-of@^5.0.0:
- version "5.1.0"
- resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-5.1.0.tgz#729c91e2d857b7a419a1f9aa65685c4c33f5845d"
- integrity sha512-NGEErnH6F2vUuXDh+OlbcKW7/wOcfdRHaZ7VWtqCztfHri/++YKmP51OdWeGPuqCOba6kk2OTe5d02VmTB80Pw==
-
-kind-of@^6.0.0, kind-of@^6.0.2:
- version "6.0.2"
- resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-6.0.2.tgz#01146b36a6218e64e58f3a8d66de5d7fc6f6d051"
- integrity sha512-s5kLOcnH0XqDO+FvuaLX8DDjZ18CGFk7VygH40QoKPUQhW4e2rvM0rwUq0t8IQDOwYSeLK01U90OjzBTme2QqA==
-
-launch-editor@2.2.1:
- version "2.2.1"
- resolved "https://registry.yarnpkg.com/launch-editor/-/launch-editor-2.2.1.tgz#871b5a3ee39d6680fcc26d37930b6eeda89db0ca"
- integrity sha512-On+V7K2uZK6wK7x691ycSUbLD/FyKKelArkbaAMSSJU8JmqmhwN2+mnJDNINuJWSrh2L0kDk+ZQtbC/gOWUwLw==
- dependencies:
- chalk "^2.3.0"
- shell-quote "^1.6.1"
-
-lines-and-columns@^1.1.6:
- version "1.1.6"
- resolved "https://registry.yarnpkg.com/lines-and-columns/-/lines-and-columns-1.1.6.tgz#1c00c743b433cd0a4e80758f7b64a57440d9ff00"
- integrity sha1-HADHQ7QzzQpOgHWPe2SldEDZ/wA=
-
-load-json-file@^2.0.0:
- version "2.0.0"
- resolved "https://registry.yarnpkg.com/load-json-file/-/load-json-file-2.0.0.tgz#7947e42149af80d696cbf797bcaabcfe1fe29ca8"
- integrity sha1-eUfkIUmvgNaWy/eXvKq8/h/inKg=
- dependencies:
- graceful-fs "^4.1.2"
- parse-json "^2.2.0"
- pify "^2.0.0"
- strip-bom "^3.0.0"
-
-loader-runner@^2.4.0:
- version "2.4.0"
- resolved "https://registry.yarnpkg.com/loader-runner/-/loader-runner-2.4.0.tgz#ed47066bfe534d7e84c4c7b9998c2a75607d9357"
- integrity sha512-Jsmr89RcXGIwivFY21FcRrisYZfvLMTWx5kOLc+JTxtpBOG6xML0vzbc6SEQG2FO9/4Fc3wW4LVcB5DmGflaRw==
-
-loader-utils@1.2.3, loader-utils@^1.0.2, loader-utils@^1.1.0, loader-utils@^1.2.3:
- version "1.2.3"
- resolved "https://registry.yarnpkg.com/loader-utils/-/loader-utils-1.2.3.tgz#1ff5dc6911c9f0a062531a4c04b609406108c2c7"
- integrity sha512-fkpz8ejdnEMG3s37wGL07iSBDg99O9D5yflE9RGNH3hRdx9SOwYfnGYdZOUIZitN8E+E2vkq3MUMYMvPYl5ZZA==
- dependencies:
- big.js "^5.2.2"
- emojis-list "^2.0.0"
- json5 "^1.0.1"
-
-locate-path@^2.0.0:
- version "2.0.0"
- resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-2.0.0.tgz#2b568b265eec944c6d9c0de9c3dbbbca0354cd8e"
- integrity sha1-K1aLJl7slExtnA3pw9u7ygNUzY4=
- dependencies:
- p-locate "^2.0.0"
- path-exists "^3.0.0"
-
-locate-path@^3.0.0:
- version "3.0.0"
- resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-3.0.0.tgz#dbec3b3ab759758071b58fe59fc41871af21400e"
- integrity sha512-7AO748wWnIhNqAuaty2ZWHkQHRSNfPVIsPIfwEOWO22AmaoVrWavlOcMR5nzTLNYvp36X220/maaRsrec1G65A==
- dependencies:
- p-locate "^3.0.0"
- path-exists "^3.0.0"
-
-locate-path@^5.0.0:
- version "5.0.0"
- resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-5.0.0.tgz#1afba396afd676a6d42504d0a67a3a7eb9f62aa0"
- integrity sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==
- dependencies:
- p-locate "^4.1.0"
-
-lodash._reinterpolate@^3.0.0:
- version "3.0.0"
- resolved "https://registry.yarnpkg.com/lodash._reinterpolate/-/lodash._reinterpolate-3.0.0.tgz#0ccf2d89166af03b3663c796538b75ac6e114d9d"
- integrity sha1-DM8tiRZq8Ds2Y8eWU4t1rG4RTZ0=
-
-lodash.curry@4.1.1:
- version "4.1.1"
- resolved "https://registry.yarnpkg.com/lodash.curry/-/lodash.curry-4.1.1.tgz#248e36072ede906501d75966200a86dab8b23170"
- integrity sha1-JI42By7ekGUB11lmIAqG2riyMXA=
-
-lodash.template@^4.5.0:
- version "4.5.0"
- resolved "https://registry.yarnpkg.com/lodash.template/-/lodash.template-4.5.0.tgz#f976195cf3f347d0d5f52483569fe8031ccce8ab"
- integrity sha512-84vYFxIkmidUiFxidA/KjjH9pAycqW+h980j7Fuz5qxRtO9pgB7MDFTdys1N7A5mcucRiDyEq4fusljItR1T/A==
- dependencies:
- lodash._reinterpolate "^3.0.0"
- lodash.templatesettings "^4.0.0"
-
-lodash.templatesettings@^4.0.0:
- version "4.2.0"
- resolved "https://registry.yarnpkg.com/lodash.templatesettings/-/lodash.templatesettings-4.2.0.tgz#e481310f049d3cf6d47e912ad09313b154f0fb33"
- integrity sha512-stgLz+i3Aa9mZgnjr/O+v9ruKZsPsndy7qPZOchbqk2cnTU1ZaldKK+v7m54WoKIyxiuMZTKT2H81F8BeAc3ZQ==
- dependencies:
- lodash._reinterpolate "^3.0.0"
-
-lodash@^4.17.11, lodash@^4.17.13, lodash@^4.17.15, lodash@^4.17.4:
- version "4.17.15"
- resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.15.tgz#b447f6670a0455bbfeedd11392eff330ea097548"
- integrity sha512-8xOcRHvCjnocdS5cpwXQXVzmmh5e5+saE2QGoeQmbKmRS6J3VQppPOIt0MnmE+4xlZoumy0GPG0D0MVIQbNA1A==
-
-log-symbols@^2.2.0:
- version "2.2.0"
- resolved "https://registry.yarnpkg.com/log-symbols/-/log-symbols-2.2.0.tgz#5740e1c5d6f0dfda4ad9323b5332107ef6b4c40a"
- integrity sha512-VeIAFslyIerEJLXHziedo2basKbMKtTw3vfn5IzG0XTjhAVEJyNHnL2p7vc+wBDSdQuUpNw3M2u6xb9QsAY5Eg==
- dependencies:
- chalk "^2.0.1"
-
-loose-envify@^1.0.0, loose-envify@^1.1.0, loose-envify@^1.4.0:
- version "1.4.0"
- resolved "https://registry.yarnpkg.com/loose-envify/-/loose-envify-1.4.0.tgz#71ee51fa7be4caec1a63839f7e682d8132d30caf"
- integrity sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==
- dependencies:
- js-tokens "^3.0.0 || ^4.0.0"
-
-lru-cache@5.1.1, lru-cache@^5.1.1:
- version "5.1.1"
- resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-5.1.1.tgz#1da27e6710271947695daf6848e847f01d84b920"
- integrity sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==
- dependencies:
- yallist "^3.0.2"
-
-lru-cache@^4.0.1:
- version "4.1.5"
- resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-4.1.5.tgz#8bbe50ea85bed59bc9e33dcab8235ee9bcf443cd"
- integrity sha512-sWZlbEP2OsHNkXrMl5GYk/jKk70MBng6UU4YI/qGDYbgf6YbP4EvmqISbXCoJiRKs+1bSpFHVgQxvJ17F2li5g==
- dependencies:
- pseudomap "^1.0.2"
- yallist "^2.1.2"
-
-make-dir@^1.0.0:
- version "1.3.0"
- resolved "https://registry.yarnpkg.com/make-dir/-/make-dir-1.3.0.tgz#79c1033b80515bd6d24ec9933e860ca75ee27f0c"
- integrity sha512-2w31R7SJtieJJnQtGc7RVL2StM2vGYVfqUOvUDxH6bC6aJTxPxTF0GnIgCyu7tjockiUWAYQRbxa7vKn34s5sQ==
- dependencies:
- pify "^3.0.0"
-
-make-dir@^2.0.0:
- version "2.1.0"
- resolved "https://registry.yarnpkg.com/make-dir/-/make-dir-2.1.0.tgz#5f0310e18b8be898cc07009295a30ae41e91e6f5"
- integrity sha512-LS9X+dc8KLxXCb8dni79fLIIUA5VyZoyjSMCwTluaXA0o27cCK0bhXkpgw+sTXVpPy/lSO57ilRixqk0vDmtRA==
- dependencies:
- pify "^4.0.1"
- semver "^5.6.0"
-
-make-dir@^3.0.0:
- version "3.0.0"
- resolved "https://registry.yarnpkg.com/make-dir/-/make-dir-3.0.0.tgz#1b5f39f6b9270ed33f9f054c5c0f84304989f801"
- integrity sha512-grNJDhb8b1Jm1qeqW5R/O63wUo4UXo2v2HMic6YT9i/HBlF93S8jkMgH7yugvY9ABDShH4VZMn8I+U8+fCNegw==
- dependencies:
- semver "^6.0.0"
-
-mamacro@^0.0.3:
- version "0.0.3"
- resolved "https://registry.yarnpkg.com/mamacro/-/mamacro-0.0.3.tgz#ad2c9576197c9f1abf308d0787865bd975a3f3e4"
- integrity sha512-qMEwh+UujcQ+kbz3T6V+wAmO2U8veoq2w+3wY8MquqwVA3jChfwY+Tk52GZKDfACEPjuZ7r2oJLejwpt8jtwTA==
-
-map-cache@^0.2.2:
- version "0.2.2"
- resolved "https://registry.yarnpkg.com/map-cache/-/map-cache-0.2.2.tgz#c32abd0bd6525d9b051645bb4f26ac5dc98a0dbf"
- integrity sha1-wyq9C9ZSXZsFFkW7TyasXcmKDb8=
-
-map-visit@^1.0.0:
- version "1.0.0"
- resolved "https://registry.yarnpkg.com/map-visit/-/map-visit-1.0.0.tgz#ecdca8f13144e660f1b5bd41f12f3479d98dfb8f"
- integrity sha1-7Nyo8TFE5mDxtb1B8S80edmN+48=
- dependencies:
- object-visit "^1.0.0"
-
-md5.js@^1.3.4:
- version "1.3.5"
- resolved "https://registry.yarnpkg.com/md5.js/-/md5.js-1.3.5.tgz#b5d07b8e3216e3e27cd728d72f70d1e6a342005f"
- integrity sha512-xitP+WxNPcTTOgnTJcrhM0xvdPepipPSf3I8EIpGKeFLjt3PlJLIDG3u8EX53ZIubkb+5U2+3rELYpEhHhzdkg==
- dependencies:
- hash-base "^3.0.0"
- inherits "^2.0.1"
- safe-buffer "^5.1.2"
-
-memory-fs@^0.4.1:
- version "0.4.1"
- resolved "https://registry.yarnpkg.com/memory-fs/-/memory-fs-0.4.1.tgz#3a9a20b8462523e447cfbc7e8bb80ed667bfc552"
- integrity sha1-OpoguEYlI+RHz7x+i7gO1me/xVI=
- dependencies:
- errno "^0.1.3"
- readable-stream "^2.0.1"
-
-memory-fs@^0.5.0:
- version "0.5.0"
- resolved "https://registry.yarnpkg.com/memory-fs/-/memory-fs-0.5.0.tgz#324c01288b88652966d161db77838720845a8e3c"
- integrity sha512-jA0rdU5KoQMC0e6ppoNRtpp6vjFq6+NY7r8hywnC7V+1Xj/MtHwGIbB1QaK/dunyjWteJzmkpd7ooeWg10T7GA==
- dependencies:
- errno "^0.1.3"
- readable-stream "^2.0.1"
-
-merge-stream@^2.0.0:
- version "2.0.0"
- resolved "https://registry.yarnpkg.com/merge-stream/-/merge-stream-2.0.0.tgz#52823629a14dd00c9770fb6ad47dc6310f2c1f60"
- integrity sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==
-
-microevent.ts@~0.1.1:
- version "0.1.1"
- resolved "https://registry.yarnpkg.com/microevent.ts/-/microevent.ts-0.1.1.tgz#70b09b83f43df5172d0205a63025bce0f7357fa0"
- integrity sha512-jo1OfR4TaEwd5HOrt5+tAZ9mqT4jmpNAusXtyfNzqVm9uiSYFZlKM1wYL4oU7azZW/PxQW53wM0S6OR1JHNa2g==
-
-micromatch@^3.1.10, micromatch@^3.1.4:
- version "3.1.10"
- resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-3.1.10.tgz#70859bc95c9840952f359a068a3fc49f9ecfac23"
- integrity sha512-MWikgl9n9M3w+bpsY3He8L+w9eF9338xRl8IAO5viDizwSzziFEyUzo2xrrloB64ADbTf8uA8vRqqttDTOmccg==
- dependencies:
- arr-diff "^4.0.0"
- array-unique "^0.3.2"
- braces "^2.3.1"
- define-property "^2.0.2"
- extend-shallow "^3.0.2"
- extglob "^2.0.4"
- fragment-cache "^0.2.1"
- kind-of "^6.0.2"
- nanomatch "^1.2.9"
- object.pick "^1.3.0"
- regex-not "^1.0.0"
- snapdragon "^0.8.1"
- to-regex "^3.0.2"
-
-miller-rabin@^4.0.0:
- version "4.0.1"
- resolved "https://registry.yarnpkg.com/miller-rabin/-/miller-rabin-4.0.1.tgz#f080351c865b0dc562a8462966daa53543c78a4d"
- integrity sha512-115fLhvZVqWwHPbClyntxEVfVDfl9DLLTuJvq3g2O/Oxi8AiNouAHvDSzHS0viUJc+V5vm3eq91Xwqn9dp4jRA==
- dependencies:
- bn.js "^4.0.0"
- brorand "^1.0.1"
-
-mime-db@1.42.0, "mime-db@>= 1.40.0 < 2":
- version "1.42.0"
- resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.42.0.tgz#3e252907b4c7adb906597b4b65636272cf9e7bac"
- integrity sha512-UbfJCR4UAVRNgMpfImz05smAXK7+c+ZntjaA26ANtkXLlOe947Aag5zdIcKQULAiF9Cq4WxBi9jUs5zkA84bYQ==
-
-mime-db@~1.33.0:
- version "1.33.0"
- resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.33.0.tgz#a3492050a5cb9b63450541e39d9788d2272783db"
- integrity sha512-BHJ/EKruNIqJf/QahvxwQZXKygOQ256myeN/Ew+THcAa5q+PjyTTMMeNQC4DZw5AwfvelsUrA6B67NKMqXDbzQ==
-
-mime-types@2.1.18:
- version "2.1.18"
- resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.18.tgz#6f323f60a83d11146f831ff11fd66e2fe5503bb8"
- integrity sha512-lc/aahn+t4/SWV/qcmumYjymLsWfN3ELhpmVuUFjgsORruuZPVSwAQryq+HHGvO/SI2KVX26bx+En+zhM8g8hQ==
- dependencies:
- mime-db "~1.33.0"
-
-mime-types@~2.1.24:
- version "2.1.25"
- resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.25.tgz#39772d46621f93e2a80a856c53b86a62156a6437"
- integrity sha512-5KhStqB5xpTAeGqKBAMgwaYMnQik7teQN4IAzC7npDv6kzeU6prfkR67bc87J1kWMPGkoaZSq1npmexMgkmEVg==
- dependencies:
- mime-db "1.42.0"
-
-mime@1.6.0:
- version "1.6.0"
- resolved "https://registry.yarnpkg.com/mime/-/mime-1.6.0.tgz#32cd9e5c64553bd58d19a568af452acff04981b1"
- integrity sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==
-
-mime@^2.4.2:
- version "2.4.4"
- resolved "https://registry.yarnpkg.com/mime/-/mime-2.4.4.tgz#bd7b91135fc6b01cde3e9bae33d659b63d8857e5"
- integrity sha512-LRxmNwziLPT828z+4YkNzloCFC2YM4wrB99k+AV5ZbEyfGNWfG8SO1FUXLmLDBSo89NrJZ4DIWeLjy1CHGhMGA==
-
-mimic-fn@^1.0.0:
- version "1.2.0"
- resolved "https://registry.yarnpkg.com/mimic-fn/-/mimic-fn-1.2.0.tgz#820c86a39334640e99516928bd03fca88057d022"
- integrity sha512-jf84uxzwiuiIVKiOLpfYk7N46TSy8ubTonmneY9vrpHNAnp0QBt2BxWV9dO3/j+BoVAb+a5G6YDPW3M5HOdMWQ==
-
-mini-css-extract-plugin@0.8.0:
- version "0.8.0"
- resolved "https://registry.yarnpkg.com/mini-css-extract-plugin/-/mini-css-extract-plugin-0.8.0.tgz#81d41ec4fe58c713a96ad7c723cdb2d0bd4d70e1"
- integrity sha512-MNpRGbNA52q6U92i0qbVpQNsgk7LExy41MdAlG84FeytfDOtRIf/mCHdEgG8rpTKOaNKiqUnZdlptF469hxqOw==
- dependencies:
- loader-utils "^1.1.0"
- normalize-url "1.9.1"
- schema-utils "^1.0.0"
- webpack-sources "^1.1.0"
-
-minimalistic-assert@^1.0.0, minimalistic-assert@^1.0.1:
- version "1.0.1"
- resolved "https://registry.yarnpkg.com/minimalistic-assert/-/minimalistic-assert-1.0.1.tgz#2e194de044626d4a10e7f7fbc00ce73e83e4d5c7"
- integrity sha512-UtJcAD4yEaGtjPezWuO9wC4nwUnVH/8/Im3yEHQP4b67cXlD/Qr9hdITCU1xDbSEXg2XKNaP8jsReV7vQd00/A==
-
-minimalistic-crypto-utils@^1.0.0, minimalistic-crypto-utils@^1.0.1:
- version "1.0.1"
- resolved "https://registry.yarnpkg.com/minimalistic-crypto-utils/-/minimalistic-crypto-utils-1.0.1.tgz#f6c00c1c0b082246e5c4d99dfb8c7c083b2b582a"
- integrity sha1-9sAMHAsIIkblxNmd+4x8CDsrWCo=
-
-minimatch@3.0.4, minimatch@^3.0.4:
- version "3.0.4"
- resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.0.4.tgz#5166e286457f03306064be5497e8dbb0c3d32083"
- integrity sha512-yJHVQEhyqPLUTgt9B83PXu6W3rx4MvvHvSUvToogpwoGDOUQ+yDrR0HRot+yOCdCO7u4hX3pWft6kWBBcqh0UA==
- dependencies:
- brace-expansion "^1.1.7"
-
-minimist@0.0.8:
- version "0.0.8"
- resolved "https://registry.yarnpkg.com/minimist/-/minimist-0.0.8.tgz#857fcabfc3397d2625b8228262e86aa7a011b05d"
- integrity sha1-hX/Kv8M5fSYluCKCYuhqp6ARsF0=
-
-minimist@^1.2.0:
- version "1.2.0"
- resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.0.tgz#a35008b20f41383eec1fb914f4cd5df79a264284"
- integrity sha1-o1AIsg9BOD7sH7kU9M1d95omQoQ=
-
-minipass@^2.6.0, minipass@^2.8.6, minipass@^2.9.0:
- version "2.9.0"
- resolved "https://registry.yarnpkg.com/minipass/-/minipass-2.9.0.tgz#e713762e7d3e32fed803115cf93e04bca9fcc9a6"
- integrity sha512-wxfUjg9WebH+CUDX/CdbRlh5SmfZiy/hpkxaRI16Y9W56Pa75sWgd/rvFilSgrauD9NyFymP/+JFV3KwzIsJeg==
- dependencies:
- safe-buffer "^5.1.2"
- yallist "^3.0.0"
-
-minizlib@^1.2.1:
- version "1.3.3"
- resolved "https://registry.yarnpkg.com/minizlib/-/minizlib-1.3.3.tgz#2290de96818a34c29551c8a8d301216bd65a861d"
- integrity sha512-6ZYMOEnmVsdCeTJVE0W9ZD+pVnE8h9Hma/iOwwRDsdQoePpoX56/8B6z3P9VNwppJuBKNRuFDRNRqRWexT9G9Q==
- dependencies:
- minipass "^2.9.0"
-
-mississippi@^3.0.0:
- version "3.0.0"
- resolved "https://registry.yarnpkg.com/mississippi/-/mississippi-3.0.0.tgz#ea0a3291f97e0b5e8776b363d5f0a12d94c67022"
- integrity sha512-x471SsVjUtBRtcvd4BzKE9kFC+/2TeWgKCgw0bZcw1b9l2X3QX5vCWgF+KaZaYm87Ss//rHnWryupDrgLvmSkA==
- dependencies:
- concat-stream "^1.5.0"
- duplexify "^3.4.2"
- end-of-stream "^1.1.0"
- flush-write-stream "^1.0.0"
- from2 "^2.1.0"
- parallel-transform "^1.1.0"
- pump "^3.0.0"
- pumpify "^1.3.3"
- stream-each "^1.1.0"
- through2 "^2.0.0"
-
-mixin-deep@^1.2.0:
- version "1.3.2"
- resolved "https://registry.yarnpkg.com/mixin-deep/-/mixin-deep-1.3.2.tgz#1120b43dc359a785dce65b55b82e257ccf479566"
- integrity sha512-WRoDn//mXBiJ1H40rqa3vH0toePwSsGb45iInWlTySa+Uu4k3tYUSxa2v1KqAiLtvlrSzaExqS1gtk96A9zvEA==
- dependencies:
- for-in "^1.0.2"
- is-extendable "^1.0.1"
-
-mkdirp@0.5.1, mkdirp@^0.5.0, mkdirp@^0.5.1:
- version "0.5.1"
- resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.5.1.tgz#30057438eac6cf7f8c4767f38648d6697d75c903"
- integrity sha1-MAV0OOrGz3+MR2fzhkjWaX11yQM=
- dependencies:
- minimist "0.0.8"
-
-move-concurrently@^1.0.1:
- version "1.0.1"
- resolved "https://registry.yarnpkg.com/move-concurrently/-/move-concurrently-1.0.1.tgz#be2c005fda32e0b29af1f05d7c4b33214c701f92"
- integrity sha1-viwAX9oy4LKa8fBdfEszIUxwH5I=
- dependencies:
- aproba "^1.1.1"
- copy-concurrently "^1.0.0"
- fs-write-stream-atomic "^1.0.8"
- mkdirp "^0.5.1"
- rimraf "^2.5.4"
- run-queue "^1.0.3"
-
-ms@2.0.0:
- version "2.0.0"
- resolved "https://registry.yarnpkg.com/ms/-/ms-2.0.0.tgz#5608aeadfc00be6c2901df5f9861788de0d597c8"
- integrity sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=
-
-ms@2.1.1:
- version "2.1.1"
- resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.1.tgz#30a5864eb3ebb0a66f2ebe6d727af06a09d86e0a"
- integrity sha512-tgp+dl5cGk28utYktBsrFqA7HKgrhgPsg6Z/EfhWI4gl1Hwq8B/GmY/0oXZ6nF8hDVesS/FpnYaD/kOWhYQvyg==
-
-ms@^2.1.1:
- version "2.1.2"
- resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.2.tgz#d09d1f357b443f493382a8eb3ccd183872ae6009"
- integrity sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==
-
-nan@^2.12.1:
- version "2.14.0"
- resolved "https://registry.yarnpkg.com/nan/-/nan-2.14.0.tgz#7818f722027b2459a86f0295d434d1fc2336c52c"
- integrity sha512-INOFj37C7k3AfaNTtX8RhsTw7qRy7eLET14cROi9+5HAVbbHuIWUHEauBv5qT4Av2tWasiTY1Jw6puUNqRJXQg==
-
-nanomatch@^1.2.9:
- version "1.2.13"
- resolved "https://registry.yarnpkg.com/nanomatch/-/nanomatch-1.2.13.tgz#b87a8aa4fc0de8fe6be88895b38983ff265bd119"
- integrity sha512-fpoe2T0RbHwBTBUOftAfBPaDEi06ufaUai0mE6Yn1kacc3SnTErfb/h+X94VXzI64rKFHYImXSvdwGGCmwOqCA==
- dependencies:
- arr-diff "^4.0.0"
- array-unique "^0.3.2"
- define-property "^2.0.2"
- extend-shallow "^3.0.2"
- fragment-cache "^0.2.1"
- is-windows "^1.0.2"
- kind-of "^6.0.2"
- object.pick "^1.3.0"
- regex-not "^1.0.0"
- snapdragon "^0.8.1"
- to-regex "^3.0.1"
-
-native-url@0.2.3:
- version "0.2.3"
- resolved "https://registry.yarnpkg.com/native-url/-/native-url-0.2.3.tgz#29dfc0d7b2b396af493872ccc4b7d974e72ecb9a"
- integrity sha512-AeSn0qFkS9EVPExWw/mN8le1HUj09LXovYPBTT9rnr9300OTvz+MZoEzIM1F7iPROsT2UNMzM+UsJCTPDqaL1g==
- dependencies:
- querystring "^0.2.0"
-
-needle@^2.2.1:
- version "2.4.0"
- resolved "https://registry.yarnpkg.com/needle/-/needle-2.4.0.tgz#6833e74975c444642590e15a750288c5f939b57c"
- integrity sha512-4Hnwzr3mi5L97hMYeNl8wRW/Onhy4nUKR/lVemJ8gJedxxUyBLm9kkrDColJvoSfwi0jCNhD+xCdOtiGDQiRZg==
- dependencies:
- debug "^3.2.6"
- iconv-lite "^0.4.4"
- sax "^1.2.4"
-
-negotiator@0.6.2:
- version "0.6.2"
- resolved "https://registry.yarnpkg.com/negotiator/-/negotiator-0.6.2.tgz#feacf7ccf525a77ae9634436a64883ffeca346fb"
- integrity sha512-hZXc7K2e+PgeI1eDBe/10Ard4ekbfrrqG8Ep+8Jmf4JID2bNg7NvCPOZN+kfF574pFQI7mum2AUqDidoKqcTOw==
-
-neo-async@^2.5.0, neo-async@^2.6.1:
- version "2.6.1"
- resolved "https://registry.yarnpkg.com/neo-async/-/neo-async-2.6.1.tgz#ac27ada66167fa8849a6addd837f6b189ad2081c"
- integrity sha512-iyam8fBuCUpWeKPGpaNMetEocMt364qkCsfL9JuhjXX6dRnguRVOfk2GZaDpPjcOKiiXCPINZC1GczQ7iTq3Zw==
-
-next@^9.1.6:
- version "9.1.6"
- resolved "https://registry.yarnpkg.com/next/-/next-9.1.6.tgz#b3ede59d9069214807d9bde7d05b42e7fabcae51"
- integrity sha512-sqvEZBEirXQhDPOsHTLka0swKjp8KB3PmNnX9iWn5nPdOFw0/CIlfa0hFl6aAQY0bP6ucKRQqtwGY4D8mKtM2g==
- dependencies:
- "@ampproject/toolbox-optimizer" "1.1.1"
- "@babel/core" "7.7.2"
- "@babel/plugin-proposal-class-properties" "7.7.0"
- "@babel/plugin-proposal-nullish-coalescing-operator" "7.7.4"
- "@babel/plugin-proposal-object-rest-spread" "7.6.2"
- "@babel/plugin-proposal-optional-chaining" "7.7.4"
- "@babel/plugin-syntax-dynamic-import" "7.2.0"
- "@babel/plugin-transform-modules-commonjs" "7.7.0"
- "@babel/plugin-transform-runtime" "7.6.2"
- "@babel/preset-env" "7.7.1"
- "@babel/preset-modules" "0.1.1"
- "@babel/preset-react" "7.7.0"
- "@babel/preset-typescript" "7.7.2"
- "@babel/runtime" "7.7.2"
- "@babel/runtime-corejs2" "7.7.2"
- amphtml-validator "1.0.23"
- async-retry "1.2.3"
- async-sema "3.0.0"
- autodll-webpack-plugin "0.4.2"
- babel-core "7.0.0-bridge.0"
- babel-loader "8.0.6"
- babel-plugin-syntax-jsx "6.18.0"
- babel-plugin-transform-define "2.0.0"
- babel-plugin-transform-react-remove-prop-types "0.4.24"
- chalk "2.4.2"
- ci-info "2.0.0"
- compression "1.7.4"
- conf "5.0.0"
- content-type "1.0.4"
- cookie "0.4.0"
- css-loader "3.3.0"
- cssnano-simple "1.0.0"
- devalue "2.0.1"
- etag "1.8.1"
- file-loader "4.2.0"
- find-up "4.0.0"
- fork-ts-checker-webpack-plugin "3.1.1"
- fresh "0.5.2"
- gzip-size "5.1.1"
- ignore-loader "0.1.2"
- is-docker "2.0.0"
- is-wsl "2.1.1"
- jest-worker "24.9.0"
- json5 "2.1.1"
- launch-editor "2.2.1"
- loader-utils "1.2.3"
- lodash.curry "4.1.1"
- lru-cache "5.1.1"
- mini-css-extract-plugin "0.8.0"
- mkdirp "0.5.1"
- native-url "0.2.3"
- node-fetch "2.6.0"
- object-assign "4.1.1"
- ora "3.4.0"
- path-to-regexp "6.1.0"
- pnp-webpack-plugin "1.5.0"
- postcss-flexbugs-fixes "4.1.0"
- postcss-loader "3.0.0"
- postcss-preset-env "6.7.0"
- prop-types "15.7.2"
- prop-types-exact "1.2.0"
- raw-body "2.4.0"
- react-error-overlay "5.1.6"
- react-is "16.8.6"
- send "0.17.1"
- source-map "0.6.1"
- string-hash "1.1.3"
- strip-ansi "5.2.0"
- style-loader "1.0.0"
- styled-jsx "3.2.4"
- terser "4.4.2"
- unfetch "4.1.0"
- url "0.11.0"
- url-polyfill "1.1.7"
- use-subscription "1.1.1"
- watchpack "2.0.0-beta.5"
- webpack "4.41.2"
- webpack-dev-middleware "3.7.0"
- webpack-hot-middleware "2.25.0"
- webpack-sources "1.4.3"
- whatwg-fetch "3.0.0"
-
-node-fetch@2.6.0:
- version "2.6.0"
- resolved "https://registry.yarnpkg.com/node-fetch/-/node-fetch-2.6.0.tgz#e633456386d4aa55863f676a7ab0daa8fdecb0fd"
- integrity sha512-8dG4H5ujfvFiqDmVu9fQ5bOHUC15JMjMY/Zumv26oOvvVJjM67KF8koCWIabKQ1GJIa9r2mMZscBq/TbdOcmNA==
-
-node-libs-browser@^2.2.1:
- version "2.2.1"
- resolved "https://registry.yarnpkg.com/node-libs-browser/-/node-libs-browser-2.2.1.tgz#b64f513d18338625f90346d27b0d235e631f6425"
- integrity sha512-h/zcD8H9kaDZ9ALUWwlBUDo6TKF8a7qBSCSEGfjTVIYeqsioSKaAX+BN7NgiMGp6iSIXZ3PxgCu8KS3b71YK5Q==
- dependencies:
- assert "^1.1.1"
- browserify-zlib "^0.2.0"
- buffer "^4.3.0"
- console-browserify "^1.1.0"
- constants-browserify "^1.0.0"
- crypto-browserify "^3.11.0"
- domain-browser "^1.1.1"
- events "^3.0.0"
- https-browserify "^1.0.0"
- os-browserify "^0.3.0"
- path-browserify "0.0.1"
- process "^0.11.10"
- punycode "^1.2.4"
- querystring-es3 "^0.2.0"
- readable-stream "^2.3.3"
- stream-browserify "^2.0.1"
- stream-http "^2.7.2"
- string_decoder "^1.0.0"
- timers-browserify "^2.0.4"
- tty-browserify "0.0.0"
- url "^0.11.0"
- util "^0.11.0"
- vm-browserify "^1.0.1"
-
-node-pre-gyp@*:
- version "0.14.0"
- resolved "https://registry.yarnpkg.com/node-pre-gyp/-/node-pre-gyp-0.14.0.tgz#9a0596533b877289bcad4e143982ca3d904ddc83"
- integrity sha512-+CvDC7ZttU/sSt9rFjix/P05iS43qHCOOGzcr3Ry99bXG7VX953+vFyEuph/tfqoYu8dttBkE86JSKBO2OzcxA==
- dependencies:
- detect-libc "^1.0.2"
- mkdirp "^0.5.1"
- needle "^2.2.1"
- nopt "^4.0.1"
- npm-packlist "^1.1.6"
- npmlog "^4.0.2"
- rc "^1.2.7"
- rimraf "^2.6.1"
- semver "^5.3.0"
- tar "^4.4.2"
-
-node-releases@^1.1.42:
- version "1.1.43"
- resolved "https://registry.yarnpkg.com/node-releases/-/node-releases-1.1.43.tgz#2c6ca237f88ce11d49631f11190bb01f8d0549f2"
- integrity sha512-Rmfnj52WNhvr83MvuAWHEqXVoZXCcDQssSOffU4n4XOL9sPrP61mSZ88g25NqmABDvH7PiAlFCzoSCSdzA293w==
- dependencies:
- semver "^6.3.0"
-
-nopt@^4.0.1:
- version "4.0.1"
- resolved "https://registry.yarnpkg.com/nopt/-/nopt-4.0.1.tgz#d0d4685afd5415193c8c7505602d0d17cd64474d"
- integrity sha1-0NRoWv1UFRk8jHUFYC0NF81kR00=
- dependencies:
- abbrev "1"
- osenv "^0.1.4"
-
-normalize-package-data@^2.3.2:
- version "2.5.0"
- resolved "https://registry.yarnpkg.com/normalize-package-data/-/normalize-package-data-2.5.0.tgz#e66db1838b200c1dfc233225d12cb36520e234a8"
- integrity sha512-/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA==
- dependencies:
- hosted-git-info "^2.1.4"
- resolve "^1.10.0"
- semver "2 || 3 || 4 || 5"
- validate-npm-package-license "^3.0.1"
-
-normalize-path@^2.1.1:
- version "2.1.1"
- resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-2.1.1.tgz#1ab28b556e198363a8c1a6f7e6fa20137fe6aed9"
- integrity sha1-GrKLVW4Zg2Oowab35vogE3/mrtk=
- dependencies:
- remove-trailing-separator "^1.0.1"
-
-normalize-path@^3.0.0, normalize-path@~3.0.0:
- version "3.0.0"
- resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-3.0.0.tgz#0dcd69ff23a1c9b11fd0978316644a0388216a65"
- integrity sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==
-
-normalize-range@^0.1.2:
- version "0.1.2"
- resolved "https://registry.yarnpkg.com/normalize-range/-/normalize-range-0.1.2.tgz#2d10c06bdfd312ea9777695a4d28439456b75942"
- integrity sha1-LRDAa9/TEuqXd2laTShDlFa3WUI=
-
-normalize-url@1.9.1:
- version "1.9.1"
- resolved "https://registry.yarnpkg.com/normalize-url/-/normalize-url-1.9.1.tgz#2cc0d66b31ea23036458436e3620d85954c66c3c"
- integrity sha1-LMDWazHqIwNkWENuNiDYWVTGbDw=
- dependencies:
- object-assign "^4.0.1"
- prepend-http "^1.0.0"
- query-string "^4.1.0"
- sort-keys "^1.0.0"
-
-npm-bundled@^1.0.1:
- version "1.1.1"
- resolved "https://registry.yarnpkg.com/npm-bundled/-/npm-bundled-1.1.1.tgz#1edd570865a94cdb1bc8220775e29466c9fb234b"
- integrity sha512-gqkfgGePhTpAEgUsGEgcq1rqPXA+tv/aVBlgEzfXwA1yiUJF7xtEt3CtVwOjNYQOVknDk0F20w58Fnm3EtG0fA==
- dependencies:
- npm-normalize-package-bin "^1.0.1"
-
-npm-normalize-package-bin@^1.0.1:
- version "1.0.1"
- resolved "https://registry.yarnpkg.com/npm-normalize-package-bin/-/npm-normalize-package-bin-1.0.1.tgz#6e79a41f23fd235c0623218228da7d9c23b8f6e2"
- integrity sha512-EPfafl6JL5/rU+ot6P3gRSCpPDW5VmIzX959Ob1+ySFUuuYHWHekXpwdUZcKP5C+DS4GEtdJluwBjnsNDl+fSA==
-
-npm-packlist@^1.1.6:
- version "1.4.7"
- resolved "https://registry.yarnpkg.com/npm-packlist/-/npm-packlist-1.4.7.tgz#9e954365a06b80b18111ea900945af4f88ed4848"
- integrity sha512-vAj7dIkp5NhieaGZxBJB8fF4R0078rqsmhJcAfXZ6O7JJhjhPK96n5Ry1oZcfLXgfun0GWTZPOxaEyqv8GBykQ==
- dependencies:
- ignore-walk "^3.0.1"
- npm-bundled "^1.0.1"
-
-npm-run-path@^2.0.0:
- version "2.0.2"
- resolved "https://registry.yarnpkg.com/npm-run-path/-/npm-run-path-2.0.2.tgz#35a9232dfa35d7067b4cb2ddf2357b1871536c5f"
- integrity sha1-NakjLfo11wZ7TLLd8jV7GHFTbF8=
- dependencies:
- path-key "^2.0.0"
-
-npmlog@^4.0.2:
- version "4.1.2"
- resolved "https://registry.yarnpkg.com/npmlog/-/npmlog-4.1.2.tgz#08a7f2a8bf734604779a9efa4ad5cc717abb954b"
- integrity sha512-2uUqazuKlTaSI/dC8AzicUck7+IrEaOnN/e0jd3Xtt1KcGpwx30v50mL7oPyr/h9bL3E4aZccVwpwP+5W9Vjkg==
- dependencies:
- are-we-there-yet "~1.1.2"
- console-control-strings "~1.1.0"
- gauge "~2.7.3"
- set-blocking "~2.0.0"
-
-num2fraction@^1.2.2:
- version "1.2.2"
- resolved "https://registry.yarnpkg.com/num2fraction/-/num2fraction-1.2.2.tgz#6f682b6a027a4e9ddfa4564cd2589d1d4e669ede"
- integrity sha1-b2gragJ6Tp3fpFZM0lidHU5mnt4=
-
-number-is-nan@^1.0.0:
- version "1.0.1"
- resolved "https://registry.yarnpkg.com/number-is-nan/-/number-is-nan-1.0.1.tgz#097b602b53422a522c1afb8790318336941a011d"
- integrity sha1-CXtgK1NCKlIsGvuHkDGDNpQaAR0=
-
-object-assign@4.1.1, object-assign@^4.0.1, object-assign@^4.1.0, object-assign@^4.1.1:
- version "4.1.1"
- resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863"
- integrity sha1-IQmtx5ZYh8/AXLvUQsrIv7s2CGM=
-
-object-copy@^0.1.0:
- version "0.1.0"
- resolved "https://registry.yarnpkg.com/object-copy/-/object-copy-0.1.0.tgz#7e7d858b781bd7c991a41ba975ed3812754e998c"
- integrity sha1-fn2Fi3gb18mRpBupde04EnVOmYw=
- dependencies:
- copy-descriptor "^0.1.0"
- define-property "^0.2.5"
- kind-of "^3.0.3"
-
-object-keys@^1.0.11, object-keys@^1.0.12:
- version "1.1.1"
- resolved "https://registry.yarnpkg.com/object-keys/-/object-keys-1.1.1.tgz#1c47f272df277f3b1daf061677d9c82e2322c60e"
- integrity sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==
-
-object-visit@^1.0.0:
- version "1.0.1"
- resolved "https://registry.yarnpkg.com/object-visit/-/object-visit-1.0.1.tgz#f79c4493af0c5377b59fe39d395e41042dd045bb"
- integrity sha1-95xEk68MU3e1n+OdOV5BBC3QRbs=
- dependencies:
- isobject "^3.0.0"
-
-object.assign@^4.1.0:
- version "4.1.0"
- resolved "https://registry.yarnpkg.com/object.assign/-/object.assign-4.1.0.tgz#968bf1100d7956bb3ca086f006f846b3bc4008da"
- integrity sha512-exHJeq6kBKj58mqGyTQ9DFvrZC/eR6OwxzoM9YRoGBqrXYonaFyGiFMuc9VZrXf7DarreEwMpurG3dd+CNyW5w==
- dependencies:
- define-properties "^1.1.2"
- function-bind "^1.1.1"
- has-symbols "^1.0.0"
- object-keys "^1.0.11"
-
-object.pick@^1.3.0:
- version "1.3.0"
- resolved "https://registry.yarnpkg.com/object.pick/-/object.pick-1.3.0.tgz#87a10ac4c1694bd2e1cbf53591a66141fb5dd747"
- integrity sha1-h6EKxMFpS9Lhy/U1kaZhQftd10c=
- dependencies:
- isobject "^3.0.1"
-
-on-finished@~2.3.0:
- version "2.3.0"
- resolved "https://registry.yarnpkg.com/on-finished/-/on-finished-2.3.0.tgz#20f1336481b083cd75337992a16971aa2d906947"
- integrity sha1-IPEzZIGwg811M3mSoWlxqi2QaUc=
- dependencies:
- ee-first "1.1.1"
-
-on-headers@~1.0.1, on-headers@~1.0.2:
- version "1.0.2"
- resolved "https://registry.yarnpkg.com/on-headers/-/on-headers-1.0.2.tgz#772b0ae6aaa525c399e489adfad90c403eb3c28f"
- integrity sha512-pZAE+FJLoyITytdqK0U5s+FIpjN0JP3OzFi/u8Rx+EV5/W+JTWGXG8xFzevE7AjBfDqHv/8vL8qQsIhHnqRkrA==
-
-once@^1.3.0, once@^1.3.1, once@^1.4.0:
- version "1.4.0"
- resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1"
- integrity sha1-WDsap3WWHUsROsF9nFC6753Xa9E=
- dependencies:
- wrappy "1"
-
-onetime@^2.0.0:
- version "2.0.1"
- resolved "https://registry.yarnpkg.com/onetime/-/onetime-2.0.1.tgz#067428230fd67443b2794b22bba528b6867962d4"
- integrity sha1-BnQoIw/WdEOyeUsiu6UotoZ5YtQ=
- dependencies:
- mimic-fn "^1.0.0"
-
-ora@3.4.0:
- version "3.4.0"
- resolved "https://registry.yarnpkg.com/ora/-/ora-3.4.0.tgz#bf0752491059a3ef3ed4c85097531de9fdbcd318"
- integrity sha512-eNwHudNbO1folBP3JsZ19v9azXWtQZjICdr3Q0TDPIaeBQ3mXLrh54wM+er0+hSp+dWKf+Z8KM58CYzEyIYxYg==
- dependencies:
- chalk "^2.4.2"
- cli-cursor "^2.1.0"
- cli-spinners "^2.0.0"
- log-symbols "^2.2.0"
- strip-ansi "^5.2.0"
- wcwidth "^1.0.1"
-
-os-browserify@^0.3.0:
- version "0.3.0"
- resolved "https://registry.yarnpkg.com/os-browserify/-/os-browserify-0.3.0.tgz#854373c7f5c2315914fc9bfc6bd8238fdda1ec27"
- integrity sha1-hUNzx/XCMVkU/Jv8a9gjj92h7Cc=
-
-os-homedir@^1.0.0:
- version "1.0.2"
- resolved "https://registry.yarnpkg.com/os-homedir/-/os-homedir-1.0.2.tgz#ffbc4988336e0e833de0c168c7ef152121aa7fb3"
- integrity sha1-/7xJiDNuDoM94MFox+8VISGqf7M=
-
-os-tmpdir@^1.0.0:
- version "1.0.2"
- resolved "https://registry.yarnpkg.com/os-tmpdir/-/os-tmpdir-1.0.2.tgz#bbe67406c79aa85c5cfec766fe5734555dfa1274"
- integrity sha1-u+Z0BseaqFxc/sdm/lc0VV36EnQ=
-
-osenv@^0.1.4:
- version "0.1.5"
- resolved "https://registry.yarnpkg.com/osenv/-/osenv-0.1.5.tgz#85cdfafaeb28e8677f416e287592b5f3f49ea410"
- integrity sha512-0CWcCECdMVc2Rw3U5w9ZjqX6ga6ubk1xDVKxtBQPK7wis/0F2r9T6k4ydGYhecl7YUBxBVxhL5oisPsNxAPe2g==
- dependencies:
- os-homedir "^1.0.0"
- os-tmpdir "^1.0.0"
-
-p-finally@^1.0.0:
- version "1.0.0"
- resolved "https://registry.yarnpkg.com/p-finally/-/p-finally-1.0.0.tgz#3fbcfb15b899a44123b34b6dcc18b724336a2cae"
- integrity sha1-P7z7FbiZpEEjs0ttzBi3JDNqLK4=
-
-p-limit@^1.1.0:
- version "1.3.0"
- resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-1.3.0.tgz#b86bd5f0c25690911c7590fcbfc2010d54b3ccb8"
- integrity sha512-vvcXsLAJ9Dr5rQOPk7toZQZJApBl2K4J6dANSsEuh6QI41JYcsS/qhTGa9ErIUUgK3WNQoJYvylxvjqmiqEA9Q==
- dependencies:
- p-try "^1.0.0"
-
-p-limit@^2.0.0, p-limit@^2.2.0:
- version "2.2.1"
- resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-2.2.1.tgz#aa07a788cc3151c939b5131f63570f0dd2009537"
- integrity sha512-85Tk+90UCVWvbDavCLKPOLC9vvY8OwEX/RtKF+/1OADJMVlFfEHOiMTPVyxg7mk/dKa+ipdHm0OUkTvCpMTuwg==
- dependencies:
- p-try "^2.0.0"
-
-p-locate@^2.0.0:
- version "2.0.0"
- resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-2.0.0.tgz#20a0103b222a70c8fd39cc2e580680f3dde5ec43"
- integrity sha1-IKAQOyIqcMj9OcwuWAaA893l7EM=
- dependencies:
- p-limit "^1.1.0"
-
-p-locate@^3.0.0:
- version "3.0.0"
- resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-3.0.0.tgz#322d69a05c0264b25997d9f40cd8a891ab0064a4"
- integrity sha512-x+12w/To+4GFfgJhBEpiDcLozRJGegY+Ei7/z0tSLkMmxGZNybVMSfWj9aJn8Z5Fc7dBUNJOOVgPv2H7IwulSQ==
- dependencies:
- p-limit "^2.0.0"
-
-p-locate@^4.1.0:
- version "4.1.0"
- resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-4.1.0.tgz#a3428bb7088b3a60292f66919278b7c297ad4f07"
- integrity sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==
- dependencies:
- p-limit "^2.2.0"
-
-p-map@^1.1.1:
- version "1.2.0"
- resolved "https://registry.yarnpkg.com/p-map/-/p-map-1.2.0.tgz#e4e94f311eabbc8633a1e79908165fca26241b6b"
- integrity sha512-r6zKACMNhjPJMTl8KcFH4li//gkrXWfbD6feV8l6doRHlzljFWGJ2AP6iKaCJXyZmAUMOPtvbW7EXkbWO/pLEA==
-
-p-try@^1.0.0:
- version "1.0.0"
- resolved "https://registry.yarnpkg.com/p-try/-/p-try-1.0.0.tgz#cbc79cdbaf8fd4228e13f621f2b1a237c1b207b3"
- integrity sha1-y8ec26+P1CKOE/Yh8rGiN8GyB7M=
-
-p-try@^2.0.0:
- version "2.2.0"
- resolved "https://registry.yarnpkg.com/p-try/-/p-try-2.2.0.tgz#cb2868540e313d61de58fafbe35ce9004d5540e6"
- integrity sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==
-
-pako@~1.0.5:
- version "1.0.10"
- resolved "https://registry.yarnpkg.com/pako/-/pako-1.0.10.tgz#4328badb5086a426aa90f541977d4955da5c9732"
- integrity sha512-0DTvPVU3ed8+HNXOu5Bs+o//Mbdj9VNQMUOe9oKCwh8l0GNwpTDMKCWbRjgtD291AWnkAgkqA/LOnQS8AmS1tw==
-
-parallel-transform@^1.1.0:
- version "1.2.0"
- resolved "https://registry.yarnpkg.com/parallel-transform/-/parallel-transform-1.2.0.tgz#9049ca37d6cb2182c3b1d2c720be94d14a5814fc"
- integrity sha512-P2vSmIu38uIlvdcU7fDkyrxj33gTUy/ABO5ZUbGowxNCopBq/OoD42bP4UmMrJoPyk4Uqf0mu3mtWBhHCZD8yg==
- dependencies:
- cyclist "^1.0.1"
- inherits "^2.0.3"
- readable-stream "^2.1.5"
-
-parent-module@^1.0.0:
- version "1.0.1"
- resolved "https://registry.yarnpkg.com/parent-module/-/parent-module-1.0.1.tgz#691d2709e78c79fae3a156622452d00762caaaa2"
- integrity sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==
- dependencies:
- callsites "^3.0.0"
-
-parse-asn1@^5.0.0:
- version "5.1.5"
- resolved "https://registry.yarnpkg.com/parse-asn1/-/parse-asn1-5.1.5.tgz#003271343da58dc94cace494faef3d2147ecea0e"
- integrity sha512-jkMYn1dcJqF6d5CpU689bq7w/b5ALS9ROVSpQDPrZsqqesUJii9qutvoT5ltGedNXMO2e16YUWIghG9KxaViTQ==
- dependencies:
- asn1.js "^4.0.0"
- browserify-aes "^1.0.0"
- create-hash "^1.1.0"
- evp_bytestokey "^1.0.0"
- pbkdf2 "^3.0.3"
- safe-buffer "^5.1.1"
-
-parse-json@^2.2.0:
- version "2.2.0"
- resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-2.2.0.tgz#f480f40434ef80741f8469099f8dea18f55a4dc9"
- integrity sha1-9ID0BDTvgHQfhGkJn43qGPVaTck=
- dependencies:
- error-ex "^1.2.0"
-
-parse-json@^4.0.0:
- version "4.0.0"
- resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-4.0.0.tgz#be35f5425be1f7f6c747184f98a788cb99477ee0"
- integrity sha1-vjX1Qlvh9/bHRxhPmKeIy5lHfuA=
- dependencies:
- error-ex "^1.3.1"
- json-parse-better-errors "^1.0.1"
-
-parse-json@^5.0.0:
- version "5.0.0"
- resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-5.0.0.tgz#73e5114c986d143efa3712d4ea24db9a4266f60f"
- integrity sha512-OOY5b7PAEFV0E2Fir1KOkxchnZNCdowAJgQ5NuxjpBKTRP3pQhwkrkxqQjeoKJ+fO7bCpmIZaogI4eZGDMEGOw==
- dependencies:
- "@babel/code-frame" "^7.0.0"
- error-ex "^1.3.1"
- json-parse-better-errors "^1.0.1"
- lines-and-columns "^1.1.6"
-
-parse5-htmlparser2-tree-adapter@5.1.0:
- version "5.1.0"
- resolved "https://registry.yarnpkg.com/parse5-htmlparser2-tree-adapter/-/parse5-htmlparser2-tree-adapter-5.1.0.tgz#a8244ee12bbd6b8937ad2a16ea43fe348aebcc86"
- integrity sha512-OrI4DNmghGcwDB3XN8FKKN7g5vBmau91uqj+VYuwuj/r6GhFBMBNymsM+Z9z+Z1p4HHgI0UuQirQRgh3W5d88g==
- dependencies:
- parse5 "^5.1.0"
-
-parse5@5.1.0:
- version "5.1.0"
- resolved "https://registry.yarnpkg.com/parse5/-/parse5-5.1.0.tgz#c59341c9723f414c452975564c7c00a68d58acd2"
- integrity sha512-fxNG2sQjHvlVAYmzBZS9YlDp6PTSSDwa98vkD4QgVDDCAo84z5X1t5XyJQ62ImdLXx5NdIIfihey6xpum9/gRQ==
-
-parse5@^5.1.0:
- version "5.1.1"
- resolved "https://registry.yarnpkg.com/parse5/-/parse5-5.1.1.tgz#f68e4e5ba1852ac2cadc00f4555fff6c2abb6178"
- integrity sha512-ugq4DFI0Ptb+WWjAdOK16+u/nHfiIrcE+sh8kZMaM0WllQKLI9rOUq6c2b7cwPkXdzfQESqvoqK6ug7U/Yyzug==
-
-pascalcase@^0.1.1:
- version "0.1.1"
- resolved "https://registry.yarnpkg.com/pascalcase/-/pascalcase-0.1.1.tgz#b363e55e8006ca6fe21784d2db22bd15d7917f14"
- integrity sha1-s2PlXoAGym/iF4TS2yK9FdeRfxQ=
-
-path-browserify@0.0.1:
- version "0.0.1"
- resolved "https://registry.yarnpkg.com/path-browserify/-/path-browserify-0.0.1.tgz#e6c4ddd7ed3aa27c68a20cc4e50e1a4ee83bbc4a"
- integrity sha512-BapA40NHICOS+USX9SN4tyhq+A2RrN/Ws5F0Z5aMHDp98Fl86lX8Oti8B7uN93L4Ifv4fHOEA+pQw87gmMO/lQ==
-
-path-dirname@^1.0.0:
- version "1.0.2"
- resolved "https://registry.yarnpkg.com/path-dirname/-/path-dirname-1.0.2.tgz#cc33d24d525e099a5388c0336c6e32b9160609e0"
- integrity sha1-zDPSTVJeCZpTiMAzbG4yuRYGCeA=
-
-path-exists@^3.0.0:
- version "3.0.0"
- resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-3.0.0.tgz#ce0ebeaa5f78cb18925ea7d810d7b59b010fd515"
- integrity sha1-zg6+ql94yxiSXqfYENe1mwEP1RU=
-
-path-is-absolute@^1.0.0:
- version "1.0.1"
- resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f"
- integrity sha1-F0uSaHNVNP+8es5r9TpanhtcX18=
-
-path-is-inside@1.0.2, path-is-inside@^1.0.1:
- version "1.0.2"
- resolved "https://registry.yarnpkg.com/path-is-inside/-/path-is-inside-1.0.2.tgz#365417dede44430d1c11af61027facf074bdfc53"
- integrity sha1-NlQX3t5EQw0cEa9hAn+s8HS9/FM=
-
-path-key@^2.0.0:
- version "2.0.1"
- resolved "https://registry.yarnpkg.com/path-key/-/path-key-2.0.1.tgz#411cadb574c5a140d3a4b1910d40d80cc9f40b40"
- integrity sha1-QRyttXTFoUDTpLGRDUDYDMn0C0A=
-
-path-parse@^1.0.6:
- version "1.0.6"
- resolved "https://registry.yarnpkg.com/path-parse/-/path-parse-1.0.6.tgz#d62dbb5679405d72c4737ec58600e9ddcf06d24c"
- integrity sha512-GSmOT2EbHrINBf9SR7CDELwlJ8AENk3Qn7OikK4nFYAu3Ote2+JYNVvkpAEQm3/TLNEJFD/xZJjzyxg3KBWOzw==
-
-path-to-regexp@2.2.1:
- version "2.2.1"
- resolved "https://registry.yarnpkg.com/path-to-regexp/-/path-to-regexp-2.2.1.tgz#90b617025a16381a879bc82a38d4e8bdeb2bcf45"
- integrity sha512-gu9bD6Ta5bwGrrU8muHzVOBFFREpp2iRkVfhBJahwJ6p6Xw20SjT0MxLnwkjOibQmGSYhiUnf2FLe7k+jcFmGQ==
-
-path-to-regexp@6.1.0:
- version "6.1.0"
- resolved "https://registry.yarnpkg.com/path-to-regexp/-/path-to-regexp-6.1.0.tgz#0b18f88b7a0ce0bfae6a25990c909ab86f512427"
- integrity sha512-h9DqehX3zZZDCEm+xbfU0ZmwCGFCAAraPJWMXJ4+v32NjZJilVg3k1TcKsRgIb8IQ/izZSaydDc1OhJCZvs2Dw==
-
-path-type@^2.0.0:
- version "2.0.0"
- resolved "https://registry.yarnpkg.com/path-type/-/path-type-2.0.0.tgz#f012ccb8415b7096fc2daa1054c3d72389594c73"
- integrity sha1-8BLMuEFbcJb8LaoQVMPXI4lZTHM=
- dependencies:
- pify "^2.0.0"
-
-path-type@^4.0.0:
- version "4.0.0"
- resolved "https://registry.yarnpkg.com/path-type/-/path-type-4.0.0.tgz#84ed01c0a7ba380afe09d90a8c180dcd9d03043b"
- integrity sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==
-
-pbkdf2@^3.0.3:
- version "3.0.17"
- resolved "https://registry.yarnpkg.com/pbkdf2/-/pbkdf2-3.0.17.tgz#976c206530617b14ebb32114239f7b09336e93a6"
- integrity sha512-U/il5MsrZp7mGg3mSQfn742na2T+1/vHDCG5/iTI3X9MKUuYUZVLQhyRsg06mCgDBTd57TxzgZt7P+fYfjRLtA==
- dependencies:
- create-hash "^1.1.2"
- create-hmac "^1.1.4"
- ripemd160 "^2.0.1"
- safe-buffer "^5.0.1"
- sha.js "^2.4.8"
-
-picomatch@^2.0.4, picomatch@^2.0.7:
- version "2.1.1"
- resolved "https://registry.yarnpkg.com/picomatch/-/picomatch-2.1.1.tgz#ecdfbea7704adb5fe6fb47f9866c4c0e15e905c5"
- integrity sha512-OYMyqkKzK7blWO/+XZYP6w8hH0LDvkBvdvKukti+7kqYFCiEAk+gI3DWnryapc0Dau05ugGTy0foQ6mqn4AHYA==
-
-pify@^2.0.0:
- version "2.3.0"
- resolved "https://registry.yarnpkg.com/pify/-/pify-2.3.0.tgz#ed141a6ac043a849ea588498e7dca8b15330e90c"
- integrity sha1-7RQaasBDqEnqWISY59yosVMw6Qw=
-
-pify@^3.0.0:
- version "3.0.0"
- resolved "https://registry.yarnpkg.com/pify/-/pify-3.0.0.tgz#e5a4acd2c101fdf3d9a4d07f0dbc4db49dd28176"
- integrity sha1-5aSs0sEB/fPZpNB/DbxNtJ3SgXY=
-
-pify@^4.0.1:
- version "4.0.1"
- resolved "https://registry.yarnpkg.com/pify/-/pify-4.0.1.tgz#4b2cd25c50d598735c50292224fd8c6df41e3231"
- integrity sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g==
-
-pinkie-promise@^2.0.0:
- version "2.0.1"
- resolved "https://registry.yarnpkg.com/pinkie-promise/-/pinkie-promise-2.0.1.tgz#2135d6dfa7a358c069ac9b178776288228450ffa"
- integrity sha1-ITXW36ejWMBprJsXh3YogihFD/o=
- dependencies:
- pinkie "^2.0.0"
-
-pinkie@^2.0.0:
- version "2.0.4"
- resolved "https://registry.yarnpkg.com/pinkie/-/pinkie-2.0.4.tgz#72556b80cfa0d48a974e80e77248e80ed4f7f870"
- integrity sha1-clVrgM+g1IqXToDnckjoDtT3+HA=
-
-pkg-dir@^2.0.0:
- version "2.0.0"
- resolved "https://registry.yarnpkg.com/pkg-dir/-/pkg-dir-2.0.0.tgz#f6d5d1109e19d63edf428e0bd57e12777615334b"
- integrity sha1-9tXREJ4Z1j7fQo4L1X4Sd3YVM0s=
- dependencies:
- find-up "^2.1.0"
-
-pkg-dir@^3.0.0:
- version "3.0.0"
- resolved "https://registry.yarnpkg.com/pkg-dir/-/pkg-dir-3.0.0.tgz#2749020f239ed990881b1f71210d51eb6523bea3"
- integrity sha512-/E57AYkoeQ25qkxMj5PBOVgF8Kiu/h7cYS30Z5+R7WaiCCBfLq58ZI/dSeaEKb9WVJV5n/03QwrN3IeWIFllvw==
- dependencies:
- find-up "^3.0.0"
-
-pkg-up@^3.0.1:
- version "3.1.0"
- resolved "https://registry.yarnpkg.com/pkg-up/-/pkg-up-3.1.0.tgz#100ec235cc150e4fd42519412596a28512a0def5"
- integrity sha512-nDywThFk1i4BQK4twPQ6TA4RT8bDY96yeuCVBWL3ePARCiEKDRSrNGbFIgUJpLp+XeIR65v8ra7WuJOFUBtkMA==
- dependencies:
- find-up "^3.0.0"
-
-pnp-webpack-plugin@1.5.0:
- version "1.5.0"
- resolved "https://registry.yarnpkg.com/pnp-webpack-plugin/-/pnp-webpack-plugin-1.5.0.tgz#62a1cd3068f46d564bb33c56eb250e4d586676eb"
- integrity sha512-jd9olUr9D7do+RN8Wspzhpxhgp1n6Vd0NtQ4SFkmIACZoEL1nkyAdW9Ygrinjec0vgDcWjscFQQ1gDW8rsfKTg==
- dependencies:
- ts-pnp "^1.1.2"
-
-posix-character-classes@^0.1.0:
- version "0.1.1"
- resolved "https://registry.yarnpkg.com/posix-character-classes/-/posix-character-classes-0.1.1.tgz#01eac0fe3b5af71a2a6c02feabb8c1fef7e00eab"
- integrity sha1-AerA/jta9xoqbAL+q7jB/vfgDqs=
-
-postcss-attribute-case-insensitive@^4.0.1:
- version "4.0.1"
- resolved "https://registry.yarnpkg.com/postcss-attribute-case-insensitive/-/postcss-attribute-case-insensitive-4.0.1.tgz#b2a721a0d279c2f9103a36331c88981526428cc7"
- integrity sha512-L2YKB3vF4PetdTIthQVeT+7YiSzMoNMLLYxPXXppOOP7NoazEAy45sh2LvJ8leCQjfBcfkYQs8TtCcQjeZTp8A==
- dependencies:
- postcss "^7.0.2"
- postcss-selector-parser "^5.0.0"
-
-postcss-color-functional-notation@^2.0.1:
- version "2.0.1"
- resolved "https://registry.yarnpkg.com/postcss-color-functional-notation/-/postcss-color-functional-notation-2.0.1.tgz#5efd37a88fbabeb00a2966d1e53d98ced93f74e0"
- integrity sha512-ZBARCypjEDofW4P6IdPVTLhDNXPRn8T2s1zHbZidW6rPaaZvcnCS2soYFIQJrMZSxiePJ2XIYTlcb2ztr/eT2g==
- dependencies:
- postcss "^7.0.2"
- postcss-values-parser "^2.0.0"
-
-postcss-color-gray@^5.0.0:
- version "5.0.0"
- resolved "https://registry.yarnpkg.com/postcss-color-gray/-/postcss-color-gray-5.0.0.tgz#532a31eb909f8da898ceffe296fdc1f864be8547"
- integrity sha512-q6BuRnAGKM/ZRpfDascZlIZPjvwsRye7UDNalqVz3s7GDxMtqPY6+Q871liNxsonUw8oC61OG+PSaysYpl1bnw==
- dependencies:
- "@csstools/convert-colors" "^1.4.0"
- postcss "^7.0.5"
- postcss-values-parser "^2.0.0"
-
-postcss-color-hex-alpha@^5.0.3:
- version "5.0.3"
- resolved "https://registry.yarnpkg.com/postcss-color-hex-alpha/-/postcss-color-hex-alpha-5.0.3.tgz#a8d9ca4c39d497c9661e374b9c51899ef0f87388"
- integrity sha512-PF4GDel8q3kkreVXKLAGNpHKilXsZ6xuu+mOQMHWHLPNyjiUBOr75sp5ZKJfmv1MCus5/DWUGcK9hm6qHEnXYw==
- dependencies:
- postcss "^7.0.14"
- postcss-values-parser "^2.0.1"
-
-postcss-color-mod-function@^3.0.3:
- version "3.0.3"
- resolved "https://registry.yarnpkg.com/postcss-color-mod-function/-/postcss-color-mod-function-3.0.3.tgz#816ba145ac11cc3cb6baa905a75a49f903e4d31d"
- integrity sha512-YP4VG+xufxaVtzV6ZmhEtc+/aTXH3d0JLpnYfxqTvwZPbJhWqp8bSY3nfNzNRFLgB4XSaBA82OE4VjOOKpCdVQ==
- dependencies:
- "@csstools/convert-colors" "^1.4.0"
- postcss "^7.0.2"
- postcss-values-parser "^2.0.0"
-
-postcss-color-rebeccapurple@^4.0.1:
- version "4.0.1"
- resolved "https://registry.yarnpkg.com/postcss-color-rebeccapurple/-/postcss-color-rebeccapurple-4.0.1.tgz#c7a89be872bb74e45b1e3022bfe5748823e6de77"
- integrity sha512-aAe3OhkS6qJXBbqzvZth2Au4V3KieR5sRQ4ptb2b2O8wgvB3SJBsdG+jsn2BZbbwekDG8nTfcCNKcSfe/lEy8g==
- dependencies:
- postcss "^7.0.2"
- postcss-values-parser "^2.0.0"
-
-postcss-custom-media@^7.0.8:
- version "7.0.8"
- resolved "https://registry.yarnpkg.com/postcss-custom-media/-/postcss-custom-media-7.0.8.tgz#fffd13ffeffad73621be5f387076a28b00294e0c"
- integrity sha512-c9s5iX0Ge15o00HKbuRuTqNndsJUbaXdiNsksnVH8H4gdc+zbLzr/UasOwNG6CTDpLFekVY4672eWdiiWu2GUg==
- dependencies:
- postcss "^7.0.14"
-
-postcss-custom-properties@^8.0.11:
- version "8.0.11"
- resolved "https://registry.yarnpkg.com/postcss-custom-properties/-/postcss-custom-properties-8.0.11.tgz#2d61772d6e92f22f5e0d52602df8fae46fa30d97"
- integrity sha512-nm+o0eLdYqdnJ5abAJeXp4CEU1c1k+eB2yMCvhgzsds/e0umabFrN6HoTy/8Q4K5ilxERdl/JD1LO5ANoYBeMA==
- dependencies:
- postcss "^7.0.17"
- postcss-values-parser "^2.0.1"
-
-postcss-custom-selectors@^5.1.2:
- version "5.1.2"
- resolved "https://registry.yarnpkg.com/postcss-custom-selectors/-/postcss-custom-selectors-5.1.2.tgz#64858c6eb2ecff2fb41d0b28c9dd7b3db4de7fba"
- integrity sha512-DSGDhqinCqXqlS4R7KGxL1OSycd1lydugJ1ky4iRXPHdBRiozyMHrdu0H3o7qNOCiZwySZTUI5MV0T8QhCLu+w==
- dependencies:
- postcss "^7.0.2"
- postcss-selector-parser "^5.0.0-rc.3"
-
-postcss-dir-pseudo-class@^5.0.0:
- version "5.0.0"
- resolved "https://registry.yarnpkg.com/postcss-dir-pseudo-class/-/postcss-dir-pseudo-class-5.0.0.tgz#6e3a4177d0edb3abcc85fdb6fbb1c26dabaeaba2"
- integrity sha512-3pm4oq8HYWMZePJY+5ANriPs3P07q+LW6FAdTlkFH2XqDdP4HeeJYMOzn0HYLhRSjBO3fhiqSwwU9xEULSrPgw==
- dependencies:
- postcss "^7.0.2"
- postcss-selector-parser "^5.0.0-rc.3"
-
-postcss-double-position-gradients@^1.0.0:
- version "1.0.0"
- resolved "https://registry.yarnpkg.com/postcss-double-position-gradients/-/postcss-double-position-gradients-1.0.0.tgz#fc927d52fddc896cb3a2812ebc5df147e110522e"
- integrity sha512-G+nV8EnQq25fOI8CH/B6krEohGWnF5+3A6H/+JEpOncu5dCnkS1QQ6+ct3Jkaepw1NGVqqOZH6lqrm244mCftA==
- dependencies:
- postcss "^7.0.5"
- postcss-values-parser "^2.0.0"
-
-postcss-env-function@^2.0.2:
- version "2.0.2"
- resolved "https://registry.yarnpkg.com/postcss-env-function/-/postcss-env-function-2.0.2.tgz#0f3e3d3c57f094a92c2baf4b6241f0b0da5365d7"
- integrity sha512-rwac4BuZlITeUbiBq60h/xbLzXY43qOsIErngWa4l7Mt+RaSkT7QBjXVGTcBHupykkblHMDrBFh30zchYPaOUw==
- dependencies:
- postcss "^7.0.2"
- postcss-values-parser "^2.0.0"
-
-postcss-flexbugs-fixes@4.1.0:
- version "4.1.0"
- resolved "https://registry.yarnpkg.com/postcss-flexbugs-fixes/-/postcss-flexbugs-fixes-4.1.0.tgz#e094a9df1783e2200b7b19f875dcad3b3aff8b20"
- integrity sha512-jr1LHxQvStNNAHlgco6PzY308zvLklh7SJVYuWUwyUQncofaAlD2l+P/gxKHOdqWKe7xJSkVLFF/2Tp+JqMSZA==
- dependencies:
- postcss "^7.0.0"
-
-postcss-focus-visible@^4.0.0:
- version "4.0.0"
- resolved "https://registry.yarnpkg.com/postcss-focus-visible/-/postcss-focus-visible-4.0.0.tgz#477d107113ade6024b14128317ade2bd1e17046e"
- integrity sha512-Z5CkWBw0+idJHSV6+Bgf2peDOFf/x4o+vX/pwcNYrWpXFrSfTkQ3JQ1ojrq9yS+upnAlNRHeg8uEwFTgorjI8g==
- dependencies:
- postcss "^7.0.2"
-
-postcss-focus-within@^3.0.0:
- version "3.0.0"
- resolved "https://registry.yarnpkg.com/postcss-focus-within/-/postcss-focus-within-3.0.0.tgz#763b8788596cee9b874c999201cdde80659ef680"
- integrity sha512-W0APui8jQeBKbCGZudW37EeMCjDeVxKgiYfIIEo8Bdh5SpB9sxds/Iq8SEuzS0Q4YFOlG7EPFulbbxujpkrV2w==
- dependencies:
- postcss "^7.0.2"
-
-postcss-font-variant@^4.0.0:
- version "4.0.0"
- resolved "https://registry.yarnpkg.com/postcss-font-variant/-/postcss-font-variant-4.0.0.tgz#71dd3c6c10a0d846c5eda07803439617bbbabacc"
- integrity sha512-M8BFYKOvCrI2aITzDad7kWuXXTm0YhGdP9Q8HanmN4EF1Hmcgs1KK5rSHylt/lUJe8yLxiSwWAHdScoEiIxztg==
- dependencies:
- postcss "^7.0.2"
-
-postcss-gap-properties@^2.0.0:
- version "2.0.0"
- resolved "https://registry.yarnpkg.com/postcss-gap-properties/-/postcss-gap-properties-2.0.0.tgz#431c192ab3ed96a3c3d09f2ff615960f902c1715"
- integrity sha512-QZSqDaMgXCHuHTEzMsS2KfVDOq7ZFiknSpkrPJY6jmxbugUPTuSzs/vuE5I3zv0WAS+3vhrlqhijiprnuQfzmg==
- dependencies:
- postcss "^7.0.2"
-
-postcss-image-set-function@^3.0.1:
- version "3.0.1"
- resolved "https://registry.yarnpkg.com/postcss-image-set-function/-/postcss-image-set-function-3.0.1.tgz#28920a2f29945bed4c3198d7df6496d410d3f288"
- integrity sha512-oPTcFFip5LZy8Y/whto91L9xdRHCWEMs3e1MdJxhgt4jy2WYXfhkng59fH5qLXSCPN8k4n94p1Czrfe5IOkKUw==
- dependencies:
- postcss "^7.0.2"
- postcss-values-parser "^2.0.0"
-
-postcss-initial@^3.0.0:
- version "3.0.2"
- resolved "https://registry.yarnpkg.com/postcss-initial/-/postcss-initial-3.0.2.tgz#f018563694b3c16ae8eaabe3c585ac6319637b2d"
- integrity sha512-ugA2wKonC0xeNHgirR4D3VWHs2JcU08WAi1KFLVcnb7IN89phID6Qtg2RIctWbnvp1TM2BOmDtX8GGLCKdR8YA==
- dependencies:
- lodash.template "^4.5.0"
- postcss "^7.0.2"
-
-postcss-lab-function@^2.0.1:
- version "2.0.1"
- resolved "https://registry.yarnpkg.com/postcss-lab-function/-/postcss-lab-function-2.0.1.tgz#bb51a6856cd12289ab4ae20db1e3821ef13d7d2e"
- integrity sha512-whLy1IeZKY+3fYdqQFuDBf8Auw+qFuVnChWjmxm/UhHWqNHZx+B99EwxTvGYmUBqe3Fjxs4L1BoZTJmPu6usVg==
- dependencies:
- "@csstools/convert-colors" "^1.4.0"
- postcss "^7.0.2"
- postcss-values-parser "^2.0.0"
-
-postcss-load-config@^2.0.0:
- version "2.1.0"
- resolved "https://registry.yarnpkg.com/postcss-load-config/-/postcss-load-config-2.1.0.tgz#c84d692b7bb7b41ddced94ee62e8ab31b417b003"
- integrity sha512-4pV3JJVPLd5+RueiVVB+gFOAa7GWc25XQcMp86Zexzke69mKf6Nx9LRcQywdz7yZI9n1udOxmLuAwTBypypF8Q==
- dependencies:
- cosmiconfig "^5.0.0"
- import-cwd "^2.0.0"
-
-postcss-loader@3.0.0:
- version "3.0.0"
- resolved "https://registry.yarnpkg.com/postcss-loader/-/postcss-loader-3.0.0.tgz#6b97943e47c72d845fa9e03f273773d4e8dd6c2d"
- integrity sha512-cLWoDEY5OwHcAjDnkyRQzAXfs2jrKjXpO/HQFcc5b5u/r7aa471wdmChmwfnv7x2u840iat/wi0lQ5nbRgSkUA==
- dependencies:
- loader-utils "^1.1.0"
- postcss "^7.0.0"
- postcss-load-config "^2.0.0"
- schema-utils "^1.0.0"
-
-postcss-logical@^3.0.0:
- version "3.0.0"
- resolved "https://registry.yarnpkg.com/postcss-logical/-/postcss-logical-3.0.0.tgz#2495d0f8b82e9f262725f75f9401b34e7b45d5b5"
- integrity sha512-1SUKdJc2vuMOmeItqGuNaC+N8MzBWFWEkAnRnLpFYj1tGGa7NqyVBujfRtgNa2gXR+6RkGUiB2O5Vmh7E2RmiA==
- dependencies:
- postcss "^7.0.2"
-
-postcss-media-minmax@^4.0.0:
- version "4.0.0"
- resolved "https://registry.yarnpkg.com/postcss-media-minmax/-/postcss-media-minmax-4.0.0.tgz#b75bb6cbc217c8ac49433e12f22048814a4f5ed5"
- integrity sha512-fo9moya6qyxsjbFAYl97qKO9gyre3qvbMnkOZeZwlsW6XYFsvs2DMGDlchVLfAd8LHPZDxivu/+qW2SMQeTHBw==
- dependencies:
- postcss "^7.0.2"
-
-postcss-modules-extract-imports@^2.0.0:
- version "2.0.0"
- resolved "https://registry.yarnpkg.com/postcss-modules-extract-imports/-/postcss-modules-extract-imports-2.0.0.tgz#818719a1ae1da325f9832446b01136eeb493cd7e"
- integrity sha512-LaYLDNS4SG8Q5WAWqIJgdHPJrDDr/Lv775rMBFUbgjTz6j34lUznACHcdRWroPvXANP2Vj7yNK57vp9eFqzLWQ==
- dependencies:
- postcss "^7.0.5"
-
-postcss-modules-local-by-default@^3.0.2:
- version "3.0.2"
- resolved "https://registry.yarnpkg.com/postcss-modules-local-by-default/-/postcss-modules-local-by-default-3.0.2.tgz#e8a6561be914aaf3c052876377524ca90dbb7915"
- integrity sha512-jM/V8eqM4oJ/22j0gx4jrp63GSvDH6v86OqyTHHUvk4/k1vceipZsaymiZ5PvocqZOl5SFHiFJqjs3la0wnfIQ==
- dependencies:
- icss-utils "^4.1.1"
- postcss "^7.0.16"
- postcss-selector-parser "^6.0.2"
- postcss-value-parser "^4.0.0"
-
-postcss-modules-scope@^2.1.1:
- version "2.1.1"
- resolved "https://registry.yarnpkg.com/postcss-modules-scope/-/postcss-modules-scope-2.1.1.tgz#33d4fc946602eb5e9355c4165d68a10727689dba"
- integrity sha512-OXRUPecnHCg8b9xWvldG/jUpRIGPNRka0r4D4j0ESUU2/5IOnpsjfPPmDprM3Ih8CgZ8FXjWqaniK5v4rWt3oQ==
- dependencies:
- postcss "^7.0.6"
- postcss-selector-parser "^6.0.0"
-
-postcss-modules-values@^3.0.0:
- version "3.0.0"
- resolved "https://registry.yarnpkg.com/postcss-modules-values/-/postcss-modules-values-3.0.0.tgz#5b5000d6ebae29b4255301b4a3a54574423e7f10"
- integrity sha512-1//E5jCBrZ9DmRX+zCtmQtRSV6PV42Ix7Bzj9GbwJceduuf7IqP8MgeTXuRDHOWj2m0VzZD5+roFWDuU8RQjcg==
- dependencies:
- icss-utils "^4.0.0"
- postcss "^7.0.6"
-
-postcss-nesting@^7.0.0:
- version "7.0.1"
- resolved "https://registry.yarnpkg.com/postcss-nesting/-/postcss-nesting-7.0.1.tgz#b50ad7b7f0173e5b5e3880c3501344703e04c052"
- integrity sha512-FrorPb0H3nuVq0Sff7W2rnc3SmIcruVC6YwpcS+k687VxyxO33iE1amna7wHuRVzM8vfiYofXSBHNAZ3QhLvYg==
- dependencies:
- postcss "^7.0.2"
-
-postcss-overflow-shorthand@^2.0.0:
- version "2.0.0"
- resolved "https://registry.yarnpkg.com/postcss-overflow-shorthand/-/postcss-overflow-shorthand-2.0.0.tgz#31ecf350e9c6f6ddc250a78f0c3e111f32dd4c30"
- integrity sha512-aK0fHc9CBNx8jbzMYhshZcEv8LtYnBIRYQD5i7w/K/wS9c2+0NSR6B3OVMu5y0hBHYLcMGjfU+dmWYNKH0I85g==
- dependencies:
- postcss "^7.0.2"
-
-postcss-page-break@^2.0.0:
- version "2.0.0"
- resolved "https://registry.yarnpkg.com/postcss-page-break/-/postcss-page-break-2.0.0.tgz#add52d0e0a528cabe6afee8b46e2abb277df46bf"
- integrity sha512-tkpTSrLpfLfD9HvgOlJuigLuk39wVTbbd8RKcy8/ugV2bNBUW3xU+AIqyxhDrQr1VUj1RmyJrBn1YWrqUm9zAQ==
- dependencies:
- postcss "^7.0.2"
-
-postcss-place@^4.0.1:
- version "4.0.1"
- resolved "https://registry.yarnpkg.com/postcss-place/-/postcss-place-4.0.1.tgz#e9f39d33d2dc584e46ee1db45adb77ca9d1dcc62"
- integrity sha512-Zb6byCSLkgRKLODj/5mQugyuj9bvAAw9LqJJjgwz5cYryGeXfFZfSXoP1UfveccFmeq0b/2xxwcTEVScnqGxBg==
- dependencies:
- postcss "^7.0.2"
- postcss-values-parser "^2.0.0"
-
-postcss-preset-env@6.7.0:
- version "6.7.0"
- resolved "https://registry.yarnpkg.com/postcss-preset-env/-/postcss-preset-env-6.7.0.tgz#c34ddacf8f902383b35ad1e030f178f4cdf118a5"
- integrity sha512-eU4/K5xzSFwUFJ8hTdTQzo2RBLbDVt83QZrAvI07TULOkmyQlnYlpwep+2yIK+K+0KlZO4BvFcleOCCcUtwchg==
- dependencies:
- autoprefixer "^9.6.1"
- browserslist "^4.6.4"
- caniuse-lite "^1.0.30000981"
- css-blank-pseudo "^0.1.4"
- css-has-pseudo "^0.10.0"
- css-prefers-color-scheme "^3.1.1"
- cssdb "^4.4.0"
- postcss "^7.0.17"
- postcss-attribute-case-insensitive "^4.0.1"
- postcss-color-functional-notation "^2.0.1"
- postcss-color-gray "^5.0.0"
- postcss-color-hex-alpha "^5.0.3"
- postcss-color-mod-function "^3.0.3"
- postcss-color-rebeccapurple "^4.0.1"
- postcss-custom-media "^7.0.8"
- postcss-custom-properties "^8.0.11"
- postcss-custom-selectors "^5.1.2"
- postcss-dir-pseudo-class "^5.0.0"
- postcss-double-position-gradients "^1.0.0"
- postcss-env-function "^2.0.2"
- postcss-focus-visible "^4.0.0"
- postcss-focus-within "^3.0.0"
- postcss-font-variant "^4.0.0"
- postcss-gap-properties "^2.0.0"
- postcss-image-set-function "^3.0.1"
- postcss-initial "^3.0.0"
- postcss-lab-function "^2.0.1"
- postcss-logical "^3.0.0"
- postcss-media-minmax "^4.0.0"
- postcss-nesting "^7.0.0"
- postcss-overflow-shorthand "^2.0.0"
- postcss-page-break "^2.0.0"
- postcss-place "^4.0.1"
- postcss-pseudo-class-any-link "^6.0.0"
- postcss-replace-overflow-wrap "^3.0.0"
- postcss-selector-matches "^4.0.0"
- postcss-selector-not "^4.0.0"
-
-postcss-pseudo-class-any-link@^6.0.0:
- version "6.0.0"
- resolved "https://registry.yarnpkg.com/postcss-pseudo-class-any-link/-/postcss-pseudo-class-any-link-6.0.0.tgz#2ed3eed393b3702879dec4a87032b210daeb04d1"
- integrity sha512-lgXW9sYJdLqtmw23otOzrtbDXofUdfYzNm4PIpNE322/swES3VU9XlXHeJS46zT2onFO7V1QFdD4Q9LiZj8mew==
- dependencies:
- postcss "^7.0.2"
- postcss-selector-parser "^5.0.0-rc.3"
-
-postcss-replace-overflow-wrap@^3.0.0:
- version "3.0.0"
- resolved "https://registry.yarnpkg.com/postcss-replace-overflow-wrap/-/postcss-replace-overflow-wrap-3.0.0.tgz#61b360ffdaedca84c7c918d2b0f0d0ea559ab01c"
- integrity sha512-2T5hcEHArDT6X9+9dVSPQdo7QHzG4XKclFT8rU5TzJPDN7RIRTbO9c4drUISOVemLj03aezStHCR2AIcr8XLpw==
- dependencies:
- postcss "^7.0.2"
-
-postcss-selector-matches@^4.0.0:
- version "4.0.0"
- resolved "https://registry.yarnpkg.com/postcss-selector-matches/-/postcss-selector-matches-4.0.0.tgz#71c8248f917ba2cc93037c9637ee09c64436fcff"
- integrity sha512-LgsHwQR/EsRYSqlwdGzeaPKVT0Ml7LAT6E75T8W8xLJY62CE4S/l03BWIt3jT8Taq22kXP08s2SfTSzaraoPww==
- dependencies:
- balanced-match "^1.0.0"
- postcss "^7.0.2"
-
-postcss-selector-not@^4.0.0:
- version "4.0.0"
- resolved "https://registry.yarnpkg.com/postcss-selector-not/-/postcss-selector-not-4.0.0.tgz#c68ff7ba96527499e832724a2674d65603b645c0"
- integrity sha512-W+bkBZRhqJaYN8XAnbbZPLWMvZD1wKTu0UxtFKdhtGjWYmxhkUneoeOhRJKdAE5V7ZTlnbHfCR+6bNwK9e1dTQ==
- dependencies:
- balanced-match "^1.0.0"
- postcss "^7.0.2"
-
-postcss-selector-parser@^5.0.0, postcss-selector-parser@^5.0.0-rc.3, postcss-selector-parser@^5.0.0-rc.4:
- version "5.0.0"
- resolved "https://registry.yarnpkg.com/postcss-selector-parser/-/postcss-selector-parser-5.0.0.tgz#249044356697b33b64f1a8f7c80922dddee7195c"
- integrity sha512-w+zLE5Jhg6Liz8+rQOWEAwtwkyqpfnmsinXjXg6cY7YIONZZtgvE0v2O0uhQBs0peNomOJwWRKt6JBfTdTd3OQ==
- dependencies:
- cssesc "^2.0.0"
- indexes-of "^1.0.1"
- uniq "^1.0.1"
-
-postcss-selector-parser@^6.0.0, postcss-selector-parser@^6.0.2:
- version "6.0.2"
- resolved "https://registry.yarnpkg.com/postcss-selector-parser/-/postcss-selector-parser-6.0.2.tgz#934cf799d016c83411859e09dcecade01286ec5c"
- integrity sha512-36P2QR59jDTOAiIkqEprfJDsoNrvwFei3eCqKd1Y0tUsBimsq39BLp7RD+JWny3WgB1zGhJX8XVePwm9k4wdBg==
- dependencies:
- cssesc "^3.0.0"
- indexes-of "^1.0.1"
- uniq "^1.0.1"
-
-postcss-value-parser@^4.0.0, postcss-value-parser@^4.0.2:
- version "4.0.2"
- resolved "https://registry.yarnpkg.com/postcss-value-parser/-/postcss-value-parser-4.0.2.tgz#482282c09a42706d1fc9a069b73f44ec08391dc9"
- integrity sha512-LmeoohTpp/K4UiyQCwuGWlONxXamGzCMtFxLq4W1nZVGIQLYvMCJx3yAF9qyyuFpflABI9yVdtJAqbihOsCsJQ==
-
-postcss-values-parser@^2.0.0, postcss-values-parser@^2.0.1:
- version "2.0.1"
- resolved "https://registry.yarnpkg.com/postcss-values-parser/-/postcss-values-parser-2.0.1.tgz#da8b472d901da1e205b47bdc98637b9e9e550e5f"
- integrity sha512-2tLuBsA6P4rYTNKCXYG/71C7j1pU6pK503suYOmn4xYrQIzW+opD+7FAFNuGSdZC/3Qfy334QbeMu7MEb8gOxg==
- dependencies:
- flatten "^1.0.2"
- indexes-of "^1.0.1"
- uniq "^1.0.1"
-
-postcss@^7.0.0, postcss@^7.0.14, postcss@^7.0.16, postcss@^7.0.17, postcss@^7.0.18, postcss@^7.0.2, postcss@^7.0.23, postcss@^7.0.5, postcss@^7.0.6:
- version "7.0.25"
- resolved "https://registry.yarnpkg.com/postcss/-/postcss-7.0.25.tgz#dd2a2a753d50b13bed7a2009b4a18ac14d9db21e"
- integrity sha512-NXXVvWq9icrm/TgQC0O6YVFi4StfJz46M1iNd/h6B26Nvh/HKI+q4YZtFN/EjcInZliEscO/WL10BXnc1E5nwg==
- dependencies:
- chalk "^2.4.2"
- source-map "^0.6.1"
- supports-color "^6.1.0"
-
-prepend-http@^1.0.0:
- version "1.0.4"
- resolved "https://registry.yarnpkg.com/prepend-http/-/prepend-http-1.0.4.tgz#d4f4562b0ce3696e41ac52d0e002e57a635dc6dc"
- integrity sha1-1PRWKwzjaW5BrFLQ4ALlemNdxtw=
-
-prism-react-renderer@^1.0.2:
- version "1.0.2"
- resolved "https://registry.yarnpkg.com/prism-react-renderer/-/prism-react-renderer-1.0.2.tgz#3bb9a6a42f76fc049b03266298c7068fdd4b7ea9"
- integrity sha512-0++pJyRfu4v2OxI/Us/5RLui9ESDkTiLkVCtKuPZYdpB8UQWJpnJQhPrWab053XtsKW3oM0sD69uJ6N9exm1Ag==
-
-private@^0.1.6:
- version "0.1.8"
- resolved "https://registry.yarnpkg.com/private/-/private-0.1.8.tgz#2381edb3689f7a53d653190060fcf822d2f368ff"
- integrity sha512-VvivMrbvd2nKkiG38qjULzlc+4Vx4wm/whI9pQD35YrARNnhxeiRktSOhSukRLFNlzg6Br/cJPet5J/u19r/mg==
-
-process-nextick-args@~2.0.0:
- version "2.0.1"
- resolved "https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-2.0.1.tgz#7820d9b16120cc55ca9ae7792680ae7dba6d7fe2"
- integrity sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==
-
-process@^0.11.10:
- version "0.11.10"
- resolved "https://registry.yarnpkg.com/process/-/process-0.11.10.tgz#7332300e840161bda3e69a1d1d91a7d4bc16f182"
- integrity sha1-czIwDoQBYb2j5podHZGn1LwW8YI=
-
-promise-inflight@^1.0.1:
- version "1.0.1"
- resolved "https://registry.yarnpkg.com/promise-inflight/-/promise-inflight-1.0.1.tgz#98472870bf228132fcbdd868129bad12c3c029e3"
- integrity sha1-mEcocL8igTL8vdhoEputEsPAKeM=
-
-promise@7.1.1:
- version "7.1.1"
- resolved "https://registry.yarnpkg.com/promise/-/promise-7.1.1.tgz#489654c692616b8aa55b0724fa809bb7db49c5bf"
- integrity sha1-SJZUxpJha4qlWwck+oCbt9tJxb8=
- dependencies:
- asap "~2.0.3"
-
-prop-types-exact@1.2.0:
- version "1.2.0"
- resolved "https://registry.yarnpkg.com/prop-types-exact/-/prop-types-exact-1.2.0.tgz#825d6be46094663848237e3925a98c6e944e9869"
- integrity sha512-K+Tk3Kd9V0odiXFP9fwDHUYRyvK3Nun3GVyPapSIs5OBkITAm15W0CPFD/YKTkMUAbc0b9CUwRQp2ybiBIq+eA==
- dependencies:
- has "^1.0.3"
- object.assign "^4.1.0"
- reflect.ownkeys "^0.2.0"
-
-prop-types@15.7.2, prop-types@^15.6.2:
- version "15.7.2"
- resolved "https://registry.yarnpkg.com/prop-types/-/prop-types-15.7.2.tgz#52c41e75b8c87e72b9d9360e0206b99dcbffa6c5"
- integrity sha512-8QQikdH7//R2vurIJSutZ1smHYTcLpRWEOlHnzcWHmBYrOGUysKwSsrC89BCiFj3CbrfJ/nXFdJepOVrY1GCHQ==
- dependencies:
- loose-envify "^1.4.0"
- object-assign "^4.1.1"
- react-is "^16.8.1"
-
-prr@~1.0.1:
- version "1.0.1"
- resolved "https://registry.yarnpkg.com/prr/-/prr-1.0.1.tgz#d3fc114ba06995a45ec6893f484ceb1d78f5f476"
- integrity sha1-0/wRS6BplaRexok/SEzrHXj19HY=
-
-pseudomap@^1.0.2:
- version "1.0.2"
- resolved "https://registry.yarnpkg.com/pseudomap/-/pseudomap-1.0.2.tgz#f052a28da70e618917ef0a8ac34c1ae5a68286b3"
- integrity sha1-8FKijacOYYkX7wqKw0wa5aaChrM=
-
-public-encrypt@^4.0.0:
- version "4.0.3"
- resolved "https://registry.yarnpkg.com/public-encrypt/-/public-encrypt-4.0.3.tgz#4fcc9d77a07e48ba7527e7cbe0de33d0701331e0"
- integrity sha512-zVpa8oKZSz5bTMTFClc1fQOnyyEzpl5ozpi1B5YcvBrdohMjH2rfsBtyXcuNuwjsDIXmBYlF2N5FlJYhR29t8Q==
- dependencies:
- bn.js "^4.1.0"
- browserify-rsa "^4.0.0"
- create-hash "^1.1.0"
- parse-asn1 "^5.0.0"
- randombytes "^2.0.1"
- safe-buffer "^5.1.2"
-
-pump@^2.0.0:
- version "2.0.1"
- resolved "https://registry.yarnpkg.com/pump/-/pump-2.0.1.tgz#12399add6e4cf7526d973cbc8b5ce2e2908b3909"
- integrity sha512-ruPMNRkN3MHP1cWJc9OWr+T/xDP0jhXYCLfJcBuX54hhfIBnaQmAUMfDcG4DM5UMWByBbJY69QSphm3jtDKIkA==
- dependencies:
- end-of-stream "^1.1.0"
- once "^1.3.1"
-
-pump@^3.0.0:
- version "3.0.0"
- resolved "https://registry.yarnpkg.com/pump/-/pump-3.0.0.tgz#b4a2116815bde2f4e1ea602354e8c75565107a64"
- integrity sha512-LwZy+p3SFs1Pytd/jYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww==
- dependencies:
- end-of-stream "^1.1.0"
- once "^1.3.1"
-
-pumpify@^1.3.3:
- version "1.5.1"
- resolved "https://registry.yarnpkg.com/pumpify/-/pumpify-1.5.1.tgz#36513be246ab27570b1a374a5ce278bfd74370ce"
- integrity sha512-oClZI37HvuUJJxSKKrC17bZ9Cu0ZYhEAGPsPUy9KlMUmv9dKX2o77RUmq7f3XjIxbwyGwYzbzQ1L2Ks8sIradQ==
- dependencies:
- duplexify "^3.6.0"
- inherits "^2.0.3"
- pump "^2.0.0"
-
-punycode@1.3.2:
- version "1.3.2"
- resolved "https://registry.yarnpkg.com/punycode/-/punycode-1.3.2.tgz#9653a036fb7c1ee42342f2325cceefea3926c48d"
- integrity sha1-llOgNvt8HuQjQvIyXM7v6jkmxI0=
-
-punycode@^1.2.4, punycode@^1.3.2:
- version "1.4.1"
- resolved "https://registry.yarnpkg.com/punycode/-/punycode-1.4.1.tgz#c0d5a63b2718800ad8e1eb0fa5269c84dd41845e"
- integrity sha1-wNWmOycYgArY4esPpSachN1BhF4=
-
-punycode@^2.1.0:
- version "2.1.1"
- resolved "https://registry.yarnpkg.com/punycode/-/punycode-2.1.1.tgz#b58b010ac40c22c5657616c8d2c2c02c7bf479ec"
- integrity sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A==
-
-query-string@^4.1.0:
- version "4.3.4"
- resolved "https://registry.yarnpkg.com/query-string/-/query-string-4.3.4.tgz#bbb693b9ca915c232515b228b1a02b609043dbeb"
- integrity sha1-u7aTucqRXCMlFbIosaArYJBD2+s=
- dependencies:
- object-assign "^4.1.0"
- strict-uri-encode "^1.0.0"
-
-querystring-es3@^0.2.0:
- version "0.2.1"
- resolved "https://registry.yarnpkg.com/querystring-es3/-/querystring-es3-0.2.1.tgz#9ec61f79049875707d69414596fd907a4d711e73"
- integrity sha1-nsYfeQSYdXB9aUFFlv2Qek1xHnM=
-
-querystring@0.2.0, querystring@^0.2.0:
- version "0.2.0"
- resolved "https://registry.yarnpkg.com/querystring/-/querystring-0.2.0.tgz#b209849203bb25df820da756e747005878521620"
- integrity sha1-sgmEkgO7Jd+CDadW50cAWHhSFiA=
-
-randombytes@^2.0.0, randombytes@^2.0.1, randombytes@^2.0.5:
- version "2.1.0"
- resolved "https://registry.yarnpkg.com/randombytes/-/randombytes-2.1.0.tgz#df6f84372f0270dc65cdf6291349ab7a473d4f2a"
- integrity sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ==
- dependencies:
- safe-buffer "^5.1.0"
-
-randomfill@^1.0.3:
- version "1.0.4"
- resolved "https://registry.yarnpkg.com/randomfill/-/randomfill-1.0.4.tgz#c92196fc86ab42be983f1bf31778224931d61458"
- integrity sha512-87lcbR8+MhcWcUiQ+9e+Rwx8MyR2P7qnt15ynUlbm3TU/fjbgz4GsvfSUDTemtCCtVCqb4ZcEFlyPNTh9bBTLw==
- dependencies:
- randombytes "^2.0.5"
- safe-buffer "^5.1.0"
-
-range-parser@1.2.0:
- version "1.2.0"
- resolved "https://registry.yarnpkg.com/range-parser/-/range-parser-1.2.0.tgz#f49be6b487894ddc40dcc94a322f611092e00d5e"
- integrity sha1-9JvmtIeJTdxA3MlKMi9hEJLgDV4=
-
-range-parser@^1.2.1, range-parser@~1.2.1:
- version "1.2.1"
- resolved "https://registry.yarnpkg.com/range-parser/-/range-parser-1.2.1.tgz#3cf37023d199e1c24d1a55b84800c2f3e6468031"
- integrity sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg==
-
-raw-body@2.4.0:
- version "2.4.0"
- resolved "https://registry.yarnpkg.com/raw-body/-/raw-body-2.4.0.tgz#a1ce6fb9c9bc356ca52e89256ab59059e13d0332"
- integrity sha512-4Oz8DUIwdvoa5qMJelxipzi/iJIi40O5cGV1wNYp5hvZP8ZN0T+jiNkL0QepXs+EsQ9XJ8ipEDoiH70ySUJP3Q==
- dependencies:
- bytes "3.1.0"
- http-errors "1.7.2"
- iconv-lite "0.4.24"
- unpipe "1.0.0"
-
-rc@^1.0.1, rc@^1.1.6, rc@^1.2.7:
- version "1.2.8"
- resolved "https://registry.yarnpkg.com/rc/-/rc-1.2.8.tgz#cd924bf5200a075b83c188cd6b9e211b7fc0d3ed"
- integrity sha512-y3bGgqKj3QBdxLbLkomlohkvsA8gdAiUQlSBJnBhfn+BPxg4bc62d8TcBW15wavDfgexCgccckhcZvywyQYPOw==
- dependencies:
- deep-extend "^0.6.0"
- ini "~1.3.0"
- minimist "^1.2.0"
- strip-json-comments "~2.0.1"
-
-react-dom@^16.12.0:
- version "16.12.0"
- resolved "https://registry.yarnpkg.com/react-dom/-/react-dom-16.12.0.tgz#0da4b714b8d13c2038c9396b54a92baea633fe11"
- integrity sha512-LMxFfAGrcS3kETtQaCkTKjMiifahaMySFDn71fZUNpPHZQEzmk/GiAeIT8JSOrHB23fnuCOMruL2a8NYlw+8Gw==
- dependencies:
- loose-envify "^1.1.0"
- object-assign "^4.1.1"
- prop-types "^15.6.2"
- scheduler "^0.18.0"
-
-react-error-overlay@5.1.6:
- version "5.1.6"
- resolved "https://registry.yarnpkg.com/react-error-overlay/-/react-error-overlay-5.1.6.tgz#0cd73407c5d141f9638ae1e0c63e7b2bf7e9929d"
- integrity sha512-X1Y+0jR47ImDVr54Ab6V9eGk0Hnu7fVWGeHQSOXHf/C2pF9c6uy3gef8QUeuUiWlNb0i08InPSE5a/KJzNzw1Q==
-
-react-is@16.8.6:
- version "16.8.6"
- resolved "https://registry.yarnpkg.com/react-is/-/react-is-16.8.6.tgz#5bbc1e2d29141c9fbdfed456343fe2bc430a6a16"
- integrity sha512-aUk3bHfZ2bRSVFFbbeVS4i+lNPZr3/WM5jT2J5omUVV1zzcs1nAaf3l51ctA5FFvCRbhrH0bdAsRRQddFJZPtA==
-
-react-is@^16.8.1:
- version "16.12.0"
- resolved "https://registry.yarnpkg.com/react-is/-/react-is-16.12.0.tgz#2cc0fe0fba742d97fd527c42a13bec4eeb06241c"
- integrity sha512-rPCkf/mWBtKc97aLL9/txD8DZdemK0vkA3JMLShjlJB3Pj3s+lpf1KaBzMfQrAmhMQB0n1cU/SUGgKKBCe837Q==
-
-react@^16.12.0:
- version "16.12.0"
- resolved "https://registry.yarnpkg.com/react/-/react-16.12.0.tgz#0c0a9c6a142429e3614834d5a778e18aa78a0b83"
- integrity sha512-fglqy3k5E+81pA8s+7K0/T3DBCF0ZDOher1elBFzF7O6arXJgzyu/FW+COxFvAWXJoJN9KIZbT2LXlukwphYTA==
- dependencies:
- loose-envify "^1.1.0"
- object-assign "^4.1.1"
- prop-types "^15.6.2"
-
-read-pkg@^2.0.0:
- version "2.0.0"
- resolved "https://registry.yarnpkg.com/read-pkg/-/read-pkg-2.0.0.tgz#8ef1c0623c6a6db0dc6713c4bfac46332b2368f8"
- integrity sha1-jvHAYjxqbbDcZxPEv6xGMysjaPg=
- dependencies:
- load-json-file "^2.0.0"
- normalize-package-data "^2.3.2"
- path-type "^2.0.0"
-
-"readable-stream@1 || 2", readable-stream@^2.0.0, readable-stream@^2.0.1, readable-stream@^2.0.2, readable-stream@^2.0.6, readable-stream@^2.1.5, readable-stream@^2.2.2, readable-stream@^2.3.3, readable-stream@^2.3.6, readable-stream@~2.3.6:
- version "2.3.6"
- resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.3.6.tgz#b11c27d88b8ff1fbe070643cf94b0c79ae1b0aaf"
- integrity sha512-tQtKA9WIAhBF3+VLAseyMqZeBjW0AHJoxOtYqSUZNJxauErmLbVm2FW1y+J/YA9dUrAC39ITejlZWhVIwawkKw==
- dependencies:
- core-util-is "~1.0.0"
- inherits "~2.0.3"
- isarray "~1.0.0"
- process-nextick-args "~2.0.0"
- safe-buffer "~5.1.1"
- string_decoder "~1.1.1"
- util-deprecate "~1.0.1"
-
-readdirp@^2.2.1:
- version "2.2.1"
- resolved "https://registry.yarnpkg.com/readdirp/-/readdirp-2.2.1.tgz#0e87622a3325aa33e892285caf8b4e846529a525"
- integrity sha512-1JU/8q+VgFZyxwrJ+SVIOsh+KywWGpds3NTqikiKpDMZWScmAYyKIgqkO+ARvNWJfXeXR1zxz7aHF4u4CyH6vQ==
- dependencies:
- graceful-fs "^4.1.11"
- micromatch "^3.1.10"
- readable-stream "^2.0.2"
-
-readdirp@~3.3.0:
- version "3.3.0"
- resolved "https://registry.yarnpkg.com/readdirp/-/readdirp-3.3.0.tgz#984458d13a1e42e2e9f5841b129e162f369aff17"
- integrity sha512-zz0pAkSPOXXm1viEwygWIPSPkcBYjW1xU5j/JBh5t9bGCJwa6f9+BJa6VaB2g+b55yVrmXzqkyLf4xaWYM0IkQ==
- dependencies:
- picomatch "^2.0.7"
-
-reflect.ownkeys@^0.2.0:
- version "0.2.0"
- resolved "https://registry.yarnpkg.com/reflect.ownkeys/-/reflect.ownkeys-0.2.0.tgz#749aceec7f3fdf8b63f927a04809e90c5c0b3460"
- integrity sha1-dJrO7H8/34tj+SegSAnpDFwLNGA=
-
-regenerate-unicode-properties@^8.1.0:
- version "8.1.0"
- resolved "https://registry.yarnpkg.com/regenerate-unicode-properties/-/regenerate-unicode-properties-8.1.0.tgz#ef51e0f0ea4ad424b77bf7cb41f3e015c70a3f0e"
- integrity sha512-LGZzkgtLY79GeXLm8Dp0BVLdQlWICzBnJz/ipWUgo59qBaZ+BHtq51P2q1uVZlppMuUAT37SDk39qUbjTWB7bA==
- dependencies:
- regenerate "^1.4.0"
-
-regenerate@^1.4.0:
- version "1.4.0"
- resolved "https://registry.yarnpkg.com/regenerate/-/regenerate-1.4.0.tgz#4a856ec4b56e4077c557589cae85e7a4c8869a11"
- integrity sha512-1G6jJVDWrt0rK99kBjvEtziZNCICAuvIPkSiUFIQxVP06RCVpq3dmDo2oi6ABpYaDYaTRr67BEhL8r1wgEZZKg==
-
-regenerator-runtime@^0.11.0:
- version "0.11.1"
- resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.11.1.tgz#be05ad7f9bf7d22e056f9726cee5017fbf19e2e9"
- integrity sha512-MguG95oij0fC3QV3URf4V2SDYGJhJnJGqvIIgdECeODCT98wSWDAJ94SSuVpYQUoTcGUIL6L4yNB7j1DFFHSBg==
-
-regenerator-runtime@^0.13.2:
- version "0.13.3"
- resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.13.3.tgz#7cf6a77d8f5c6f60eb73c5fc1955b2ceb01e6bf5"
- integrity sha512-naKIZz2GQ8JWh///G7L3X6LaQUAMp2lvb1rvwwsURe/VXwD6VMfr+/1NuNw3ag8v2kY1aQ/go5SNn79O9JU7yw==
-
-regenerator-transform@^0.14.0:
- version "0.14.1"
- resolved "https://registry.yarnpkg.com/regenerator-transform/-/regenerator-transform-0.14.1.tgz#3b2fce4e1ab7732c08f665dfdb314749c7ddd2fb"
- integrity sha512-flVuee02C3FKRISbxhXl9mGzdbWUVHubl1SMaknjxkFB1/iqpJhArQUvRxOOPEc/9tAiX0BaQ28FJH10E4isSQ==
- dependencies:
- private "^0.1.6"
-
-regex-not@^1.0.0, regex-not@^1.0.2:
- version "1.0.2"
- resolved "https://registry.yarnpkg.com/regex-not/-/regex-not-1.0.2.tgz#1f4ece27e00b0b65e0247a6810e6a85d83a5752c"
- integrity sha512-J6SDjUgDxQj5NusnOtdFxDwN/+HWykR8GELwctJ7mdqhcyy1xEc4SRFHUXvxTp661YaVKAjfRLZ9cCqS6tn32A==
- dependencies:
- extend-shallow "^3.0.2"
- safe-regex "^1.1.0"
-
-regexpu-core@^4.6.0:
- version "4.6.0"
- resolved "https://registry.yarnpkg.com/regexpu-core/-/regexpu-core-4.6.0.tgz#2037c18b327cfce8a6fea2a4ec441f2432afb8b6"
- integrity sha512-YlVaefl8P5BnFYOITTNzDvan1ulLOiXJzCNZxduTIosN17b87h3bvG9yHMoHaRuo88H4mQ06Aodj5VtYGGGiTg==
- dependencies:
- regenerate "^1.4.0"
- regenerate-unicode-properties "^8.1.0"
- regjsgen "^0.5.0"
- regjsparser "^0.6.0"
- unicode-match-property-ecmascript "^1.0.4"
- unicode-match-property-value-ecmascript "^1.1.0"
-
-registry-auth-token@3.3.2:
- version "3.3.2"
- resolved "https://registry.yarnpkg.com/registry-auth-token/-/registry-auth-token-3.3.2.tgz#851fd49038eecb586911115af845260eec983f20"
- integrity sha512-JL39c60XlzCVgNrO+qq68FoNb56w/m7JYvGR2jT5iR1xBrUA3Mfx5Twk5rqTThPmQKMWydGmq8oFtDlxfrmxnQ==
- dependencies:
- rc "^1.1.6"
- safe-buffer "^5.0.1"
-
-registry-url@3.1.0:
- version "3.1.0"
- resolved "https://registry.yarnpkg.com/registry-url/-/registry-url-3.1.0.tgz#3d4ef870f73dde1d77f0cf9a381432444e174942"
- integrity sha1-PU74cPc93h138M+aOBQyRE4XSUI=
- dependencies:
- rc "^1.0.1"
-
-regjsgen@^0.5.0:
- version "0.5.1"
- resolved "https://registry.yarnpkg.com/regjsgen/-/regjsgen-0.5.1.tgz#48f0bf1a5ea205196929c0d9798b42d1ed98443c"
- integrity sha512-5qxzGZjDs9w4tzT3TPhCJqWdCc3RLYwy9J2NB0nm5Lz+S273lvWcpjaTGHsT1dc6Hhfq41uSEOw8wBmxrKOuyg==
-
-regjsparser@^0.6.0:
- version "0.6.1"
- resolved "https://registry.yarnpkg.com/regjsparser/-/regjsparser-0.6.1.tgz#5b6b28c418f312ef42898dc6865ae2d4b9f0f7a2"
- integrity sha512-7LutE94sz/NKSYegK+/4E77+8DipxF+Qn2Tmu362AcmsF2NYq/wx3+ObvU90TKEhjf7hQoFXo23ajjrXP7eUgg==
- dependencies:
- jsesc "~0.5.0"
-
-remove-trailing-separator@^1.0.1:
- version "1.1.0"
- resolved "https://registry.yarnpkg.com/remove-trailing-separator/-/remove-trailing-separator-1.1.0.tgz#c24bce2a283adad5bc3f58e0d48249b92379d8ef"
- integrity sha1-wkvOKig62tW8P1jg1IJJuSN52O8=
-
-repeat-element@^1.1.2:
- version "1.1.3"
- resolved "https://registry.yarnpkg.com/repeat-element/-/repeat-element-1.1.3.tgz#782e0d825c0c5a3bb39731f84efee6b742e6b1ce"
- integrity sha512-ahGq0ZnV5m5XtZLMb+vP76kcAM5nkLqk0lpqAuojSKGgQtn4eRi4ZZGm2olo2zKFH+sMsWaqOCW1dqAnOru72g==
-
-repeat-string@^1.6.1:
- version "1.6.1"
- resolved "https://registry.yarnpkg.com/repeat-string/-/repeat-string-1.6.1.tgz#8dcae470e1c88abc2d600fff4a776286da75e637"
- integrity sha1-jcrkcOHIirwtYA//Sndihtp15jc=
-
-resolve-from@^3.0.0:
- version "3.0.0"
- resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-3.0.0.tgz#b22c7af7d9d6881bc8b6e653335eebcb0a188748"
- integrity sha1-six699nWiBvItuZTM17rywoYh0g=
-
-resolve-from@^4.0.0:
- version "4.0.0"
- resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-4.0.0.tgz#4abcd852ad32dd7baabfe9b40e00a36db5f392e6"
- integrity sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==
-
-resolve-url@^0.2.1:
- version "0.2.1"
- resolved "https://registry.yarnpkg.com/resolve-url/-/resolve-url-0.2.1.tgz#2c637fe77c893afd2a663fe21aa9080068e2052a"
- integrity sha1-LGN/53yJOv0qZj/iGqkIAGjiBSo=
-
-resolve@^1.10.0, resolve@^1.12.0, resolve@^1.3.2, resolve@^1.8.1:
- version "1.14.1"
- resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.14.1.tgz#9e018c540fcf0c427d678b9931cbf45e984bcaff"
- integrity sha512-fn5Wobh4cxbLzuHaE+nphztHy43/b++4M6SsGFC2gB8uYwf0C8LcarfCz1un7UTW8OFQg9iNjZ4xpcFVGebDPg==
- dependencies:
- path-parse "^1.0.6"
-
-restore-cursor@^2.0.0:
- version "2.0.0"
- resolved "https://registry.yarnpkg.com/restore-cursor/-/restore-cursor-2.0.0.tgz#9f7ee287f82fd326d4fd162923d62129eee0dfaf"
- integrity sha1-n37ih/gv0ybU/RYpI9YhKe7g368=
- dependencies:
- onetime "^2.0.0"
- signal-exit "^3.0.2"
-
-ret@~0.1.10:
- version "0.1.15"
- resolved "https://registry.yarnpkg.com/ret/-/ret-0.1.15.tgz#b8a4825d5bdb1fc3f6f53c2bc33f81388681c7bc"
- integrity sha512-TTlYpa+OL+vMMNG24xSlQGEJ3B/RzEfUlLct7b5G/ytav+wPrplCpVMFuwzXbkecJrb6IYo1iFb0S9v37754mg==
-
-retry@0.12.0:
- version "0.12.0"
- resolved "https://registry.yarnpkg.com/retry/-/retry-0.12.0.tgz#1b42a6266a21f07421d1b0b54b7dc167b01c013b"
- integrity sha1-G0KmJmoh8HQh0bC1S33BZ7AcATs=
-
-rimraf@^2.2.8, rimraf@^2.5.4, rimraf@^2.6.1, rimraf@^2.6.3:
- version "2.7.1"
- resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.7.1.tgz#35797f13a7fdadc566142c29d4f07ccad483e3ec"
- integrity sha512-uWjbaKIK3T1OSVptzX7Nl6PvQ3qAGtKEtVRjRuazjfL3Bx5eI409VZSqgND+4UNnmzLVdPj9FqFJNPqBZFve4w==
- dependencies:
- glob "^7.1.3"
-
-ripemd160@^2.0.0, ripemd160@^2.0.1:
- version "2.0.2"
- resolved "https://registry.yarnpkg.com/ripemd160/-/ripemd160-2.0.2.tgz#a1c1a6f624751577ba5d07914cbc92850585890c"
- integrity sha512-ii4iagi25WusVoiC4B4lq7pbXfAp3D9v5CwfkY33vffw2+pkDjY1D8GaN7spsxvCSx8dkPqOZCEZyfxcmJG2IA==
- dependencies:
- hash-base "^3.0.0"
- inherits "^2.0.1"
-
-run-queue@^1.0.0, run-queue@^1.0.3:
- version "1.0.3"
- resolved "https://registry.yarnpkg.com/run-queue/-/run-queue-1.0.3.tgz#e848396f057d223f24386924618e25694161ec47"
- integrity sha1-6Eg5bwV9Ij8kOGkkYY4laUFh7Ec=
- dependencies:
- aproba "^1.1.1"
-
-safe-buffer@5.1.2, safe-buffer@~5.1.0, safe-buffer@~5.1.1:
- version "5.1.2"
- resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.1.2.tgz#991ec69d296e0313747d59bdfd2b745c35f8828d"
- integrity sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==
-
-safe-buffer@^5.0.1, safe-buffer@^5.1.0, safe-buffer@^5.1.1, safe-buffer@^5.1.2, safe-buffer@~5.2.0:
- version "5.2.0"
- resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.2.0.tgz#b74daec49b1148f88c64b68d49b1e815c1f2f519"
- integrity sha512-fZEwUGbVl7kouZs1jCdMLdt95hdIv0ZeHg6L7qPeciMZhZ+/gdesW4wgTARkrFWEpspjEATAzUGPG8N2jJiwbg==
-
-safe-regex@^1.1.0:
- version "1.1.0"
- resolved "https://registry.yarnpkg.com/safe-regex/-/safe-regex-1.1.0.tgz#40a3669f3b077d1e943d44629e157dd48023bf2e"
- integrity sha1-QKNmnzsHfR6UPURinhV91IAjvy4=
- dependencies:
- ret "~0.1.10"
-
-"safer-buffer@>= 2.1.2 < 3":
- version "2.1.2"
- resolved "https://registry.yarnpkg.com/safer-buffer/-/safer-buffer-2.1.2.tgz#44fa161b0187b9549dd84bb91802f9bd8385cd6a"
- integrity sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==
-
-sax@^1.2.4:
- version "1.2.4"
- resolved "https://registry.yarnpkg.com/sax/-/sax-1.2.4.tgz#2816234e2378bddc4e5354fab5caa895df7100d9"
- integrity sha512-NqVDv9TpANUjFm0N8uM5GxL36UgKi9/atZw+x7YFnQ8ckwFGKrl4xX4yWtrey3UJm5nP1kUbnYgLopqWNSRhWw==
-
-scheduler@^0.18.0:
- version "0.18.0"
- resolved "https://registry.yarnpkg.com/scheduler/-/scheduler-0.18.0.tgz#5901ad6659bc1d8f3fdaf36eb7a67b0d6746b1c4"
- integrity sha512-agTSHR1Nbfi6ulI0kYNK0203joW2Y5W4po4l+v03tOoiJKpTBbxpNhWDvqc/4IcOw+KLmSiQLTasZ4cab2/UWQ==
- dependencies:
- loose-envify "^1.1.0"
- object-assign "^4.1.1"
-
-schema-utils@^1.0.0:
- version "1.0.0"
- resolved "https://registry.yarnpkg.com/schema-utils/-/schema-utils-1.0.0.tgz#0b79a93204d7b600d4b2850d1f66c2a34951c770"
- integrity sha512-i27Mic4KovM/lnGsy8whRCHhc7VicJajAjTrYg11K9zfZXnYIt4k5F+kZkwjnrhKzLic/HLU4j11mjsz2G/75g==
- dependencies:
- ajv "^6.1.0"
- ajv-errors "^1.0.0"
- ajv-keywords "^3.1.0"
-
-schema-utils@^2.0.0, schema-utils@^2.0.1, schema-utils@^2.6.0:
- version "2.6.1"
- resolved "https://registry.yarnpkg.com/schema-utils/-/schema-utils-2.6.1.tgz#eb78f0b945c7bcfa2082b3565e8db3548011dc4f"
- integrity sha512-0WXHDs1VDJyo+Zqs9TKLKyD/h7yDpHUhEFsM2CzkICFdoX1av+GBq/J2xRTFfsQO5kBfhZzANf2VcIm84jqDbg==
- dependencies:
- ajv "^6.10.2"
- ajv-keywords "^3.4.1"
-
-"semver@2 || 3 || 4 || 5", semver@^5.3.0, semver@^5.4.1, semver@^5.5.0, semver@^5.5.1, semver@^5.6.0:
- version "5.7.1"
- resolved "https://registry.yarnpkg.com/semver/-/semver-5.7.1.tgz#a954f931aeba508d307bbf069eff0c01c96116f7"
- integrity sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==
-
-semver@7.0.0:
- version "7.0.0"
- resolved "https://registry.yarnpkg.com/semver/-/semver-7.0.0.tgz#5f3ca35761e47e05b206c6daff2cf814f0316b8e"
- integrity sha512-+GB6zVA9LWh6zovYQLALHwv5rb2PHGlJi3lfiqIHxR0uuwCgefcOJc59v9fv1w8GbStwxuuqqAjI9NMAOOgq1A==
-
-semver@^6.0.0, semver@^6.3.0:
- version "6.3.0"
- resolved "https://registry.yarnpkg.com/semver/-/semver-6.3.0.tgz#ee0a64c8af5e8ceea67687b133761e1becbd1d3d"
- integrity sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==
-
-send@0.17.1:
- version "0.17.1"
- resolved "https://registry.yarnpkg.com/send/-/send-0.17.1.tgz#c1d8b059f7900f7466dd4938bdc44e11ddb376c8"
- integrity sha512-BsVKsiGcQMFwT8UxypobUKyv7irCNRHk1T0G680vk88yf6LBByGcZJOTJCrTP2xVN6yI+XjPJcNuE3V4fT9sAg==
- dependencies:
- debug "2.6.9"
- depd "~1.1.2"
- destroy "~1.0.4"
- encodeurl "~1.0.2"
- escape-html "~1.0.3"
- etag "~1.8.1"
- fresh "0.5.2"
- http-errors "~1.7.2"
- mime "1.6.0"
- ms "2.1.1"
- on-finished "~2.3.0"
- range-parser "~1.2.1"
- statuses "~1.5.0"
-
-serialize-javascript@^2.1.2:
- version "2.1.2"
- resolved "https://registry.yarnpkg.com/serialize-javascript/-/serialize-javascript-2.1.2.tgz#ecec53b0e0317bdc95ef76ab7074b7384785fa61"
- integrity sha512-rs9OggEUF0V4jUSecXazOYsLfu7OGK2qIn3c7IPBiffz32XniEp/TX9Xmc9LQfK2nQ2QKHvZ2oygKUGU0lG4jQ==
-
-serve-handler@6.1.2:
- version "6.1.2"
- resolved "https://registry.yarnpkg.com/serve-handler/-/serve-handler-6.1.2.tgz#f05b0421a313fff2d257838cba00cbcc512cd2b6"
- integrity sha512-RFh49wX7zJmmOVDcIjiDSJnMH+ItQEvyuYLYuDBVoA/xmQSCuj+uRmk1cmBB5QQlI3qOiWKp6p4DUGY+Z5AB2A==
- dependencies:
- bytes "3.0.0"
- content-disposition "0.5.2"
- fast-url-parser "1.1.3"
- mime-types "2.1.18"
- minimatch "3.0.4"
- path-is-inside "1.0.2"
- path-to-regexp "2.2.1"
- range-parser "1.2.0"
-
-serve@11.2.0:
- version "11.2.0"
- resolved "https://registry.yarnpkg.com/serve/-/serve-11.2.0.tgz#0405ce95c4e4a6abd9cd3d3a04ebaa7d94638627"
- integrity sha512-THZcLzDGk3vJqjhAbLkLag43tiE3V0B7wVe98Xtl+1KyAsr+4iShg+9hke4pLZmrCJu0pUg0TrbhJmdqn/MKoA==
- dependencies:
- "@zeit/schemas" "2.6.0"
- ajv "6.5.3"
- arg "2.0.0"
- boxen "1.3.0"
- chalk "2.4.1"
- clipboardy "1.2.3"
- compression "1.7.3"
- serve-handler "6.1.2"
- update-check "1.5.2"
-
-set-blocking@~2.0.0:
- version "2.0.0"
- resolved "https://registry.yarnpkg.com/set-blocking/-/set-blocking-2.0.0.tgz#045f9782d011ae9a6803ddd382b24392b3d890f7"
- integrity sha1-BF+XgtARrppoA93TgrJDkrPYkPc=
-
-set-value@^2.0.0, set-value@^2.0.1:
- version "2.0.1"
- resolved "https://registry.yarnpkg.com/set-value/-/set-value-2.0.1.tgz#a18d40530e6f07de4228c7defe4227af8cad005b"
- integrity sha512-JxHc1weCN68wRY0fhCoXpyK55m/XPHafOmK4UWD7m2CI14GMcFypt4w/0+NV5f/ZMby2F6S2wwA7fgynh9gWSw==
- dependencies:
- extend-shallow "^2.0.1"
- is-extendable "^0.1.1"
- is-plain-object "^2.0.3"
- split-string "^3.0.1"
-
-setimmediate@^1.0.4:
- version "1.0.5"
- resolved "https://registry.yarnpkg.com/setimmediate/-/setimmediate-1.0.5.tgz#290cbb232e306942d7d7ea9b83732ab7856f8285"
- integrity sha1-KQy7Iy4waULX1+qbg3Mqt4VvgoU=
-
-setprototypeof@1.1.1:
- version "1.1.1"
- resolved "https://registry.yarnpkg.com/setprototypeof/-/setprototypeof-1.1.1.tgz#7e95acb24aa92f5885e0abef5ba131330d4ae683"
- integrity sha512-JvdAWfbXeIGaZ9cILp38HntZSFSo3mWg6xGcJJsd+d4aRMOqauag1C63dJfDw7OaMYwEbHMOxEZ1lqVRYP2OAw==
-
-sha.js@^2.4.0, sha.js@^2.4.8:
- version "2.4.11"
- resolved "https://registry.yarnpkg.com/sha.js/-/sha.js-2.4.11.tgz#37a5cf0b81ecbc6943de109ba2960d1b26584ae7"
- integrity sha512-QMEp5B7cftE7APOjk5Y6xgrbWu+WkLVQwk8JNjZ8nKRciZaByEW6MubieAiToS7+dwvrjGhH8jRXz3MVd0AYqQ==
- dependencies:
- inherits "^2.0.1"
- safe-buffer "^5.0.1"
-
-shebang-command@^1.2.0:
- version "1.2.0"
- resolved "https://registry.yarnpkg.com/shebang-command/-/shebang-command-1.2.0.tgz#44aac65b695b03398968c39f363fee5deafdf1ea"
- integrity sha1-RKrGW2lbAzmJaMOfNj/uXer98eo=
- dependencies:
- shebang-regex "^1.0.0"
-
-shebang-regex@^1.0.0:
- version "1.0.0"
- resolved "https://registry.yarnpkg.com/shebang-regex/-/shebang-regex-1.0.0.tgz#da42f49740c0b42db2ca9728571cb190c98efea3"
- integrity sha1-2kL0l0DAtC2yypcoVxyxkMmO/qM=
-
-shell-quote@^1.6.1:
- version "1.7.2"
- resolved "https://registry.yarnpkg.com/shell-quote/-/shell-quote-1.7.2.tgz#67a7d02c76c9da24f99d20808fcaded0e0e04be2"
- integrity sha512-mRz/m/JVscCrkMyPqHc/bczi3OQHkLTqXHEFu0zDhK/qfv3UcOA4SVmRCLmos4bhjr9ekVQubj/R7waKapmiQg==
-
-signal-exit@^3.0.0, signal-exit@^3.0.2:
- version "3.0.2"
- resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.2.tgz#b5fdc08f1287ea1178628e415e25132b73646c6d"
- integrity sha1-tf3AjxKH6hF4Yo5BXiUTK3NkbG0=
-
-snapdragon-node@^2.0.1:
- version "2.1.1"
- resolved "https://registry.yarnpkg.com/snapdragon-node/-/snapdragon-node-2.1.1.tgz#6c175f86ff14bdb0724563e8f3c1b021a286853b"
- integrity sha512-O27l4xaMYt/RSQ5TR3vpWCAB5Kb/czIcqUFOM/C4fYcLnbZUc1PkjTAMjof2pBWaSTwOUd6qUHcFGVGj7aIwnw==
- dependencies:
- define-property "^1.0.0"
- isobject "^3.0.0"
- snapdragon-util "^3.0.1"
-
-snapdragon-util@^3.0.1:
- version "3.0.1"
- resolved "https://registry.yarnpkg.com/snapdragon-util/-/snapdragon-util-3.0.1.tgz#f956479486f2acd79700693f6f7b805e45ab56e2"
- integrity sha512-mbKkMdQKsjX4BAL4bRYTj21edOf8cN7XHdYUJEe+Zn99hVEYcMvKPct1IqNe7+AZPirn8BCDOQBHQZknqmKlZQ==
- dependencies:
- kind-of "^3.2.0"
-
-snapdragon@^0.8.1:
- version "0.8.2"
- resolved "https://registry.yarnpkg.com/snapdragon/-/snapdragon-0.8.2.tgz#64922e7c565b0e14204ba1aa7d6964278d25182d"
- integrity sha512-FtyOnWN/wCHTVXOMwvSv26d+ko5vWlIDD6zoUJ7LW8vh+ZBC8QdljveRP+crNrtBwioEUWy/4dMtbBjA4ioNlg==
- dependencies:
- base "^0.11.1"
- debug "^2.2.0"
- define-property "^0.2.5"
- extend-shallow "^2.0.1"
- map-cache "^0.2.2"
- source-map "^0.5.6"
- source-map-resolve "^0.5.0"
- use "^3.1.0"
-
-sort-keys@^1.0.0:
- version "1.1.2"
- resolved "https://registry.yarnpkg.com/sort-keys/-/sort-keys-1.1.2.tgz#441b6d4d346798f1b4e49e8920adfba0e543f9ad"
- integrity sha1-RBttTTRnmPG05J6JIK37oOVD+a0=
- dependencies:
- is-plain-obj "^1.0.0"
-
-source-list-map@^2.0.0:
- version "2.0.1"
- resolved "https://registry.yarnpkg.com/source-list-map/-/source-list-map-2.0.1.tgz#3993bd873bfc48479cca9ea3a547835c7c154b34"
- integrity sha512-qnQ7gVMxGNxsiL4lEuJwe/To8UnK7fAnmbGEEH8RpLouuKbeEm0lhbQVFIrNSuB+G7tVrAlVsZgETT5nljf+Iw==
-
-source-map-resolve@^0.5.0, source-map-resolve@^0.5.2:
- version "0.5.2"
- resolved "https://registry.yarnpkg.com/source-map-resolve/-/source-map-resolve-0.5.2.tgz#72e2cc34095543e43b2c62b2c4c10d4a9054f259"
- integrity sha512-MjqsvNwyz1s0k81Goz/9vRBe9SZdB09Bdw+/zYyO+3CuPk6fouTaxscHkgtE8jKvf01kVfl8riHzERQ/kefaSA==
- dependencies:
- atob "^2.1.1"
- decode-uri-component "^0.2.0"
- resolve-url "^0.2.1"
- source-map-url "^0.4.0"
- urix "^0.1.0"
-
-source-map-support@~0.5.12:
- version "0.5.16"
- resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.5.16.tgz#0ae069e7fe3ba7538c64c98515e35339eac5a042"
- integrity sha512-efyLRJDr68D9hBBNIPWFjhpFzURh+KJykQwvMyW5UiZzYwoF6l4YMMDIJJEyFWxWCqfyxLzz6tSfUFR+kXXsVQ==
- dependencies:
- buffer-from "^1.0.0"
- source-map "^0.6.0"
-
-source-map-url@^0.4.0:
- version "0.4.0"
- resolved "https://registry.yarnpkg.com/source-map-url/-/source-map-url-0.4.0.tgz#3e935d7ddd73631b97659956d55128e87b5084a3"
- integrity sha1-PpNdfd1zYxuXZZlW1VEo6HtQhKM=
-
-source-map@0.6.1, source-map@^0.6.0, source-map@^0.6.1, source-map@~0.6.1:
- version "0.6.1"
- resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.6.1.tgz#74722af32e9614e9c287a8d0bbde48b5e2f1a263"
- integrity sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==
-
-source-map@0.7.3:
- version "0.7.3"
- resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.7.3.tgz#5302f8169031735226544092e64981f751750383"
- integrity sha512-CkCj6giN3S+n9qrYiBTX5gystlENnRW5jZeNLHpe6aue+SrHcG5VYwujhW9s4dY31mEGsxBDrHR6oI69fTXsaQ==
-
-source-map@^0.5.0, source-map@^0.5.6, source-map@^0.5.7:
- version "0.5.7"
- resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.5.7.tgz#8a039d2d1021d22d1ea14c80d8ea468ba2ef3fcc"
- integrity sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w=
-
-spdx-correct@^3.0.0:
- version "3.1.0"
- resolved "https://registry.yarnpkg.com/spdx-correct/-/spdx-correct-3.1.0.tgz#fb83e504445268f154b074e218c87c003cd31df4"
- integrity sha512-lr2EZCctC2BNR7j7WzJ2FpDznxky1sjfxvvYEyzxNyb6lZXHODmEoJeFu4JupYlkfha1KZpJyoqiJ7pgA1qq8Q==
- dependencies:
- spdx-expression-parse "^3.0.0"
- spdx-license-ids "^3.0.0"
-
-spdx-exceptions@^2.1.0:
- version "2.2.0"
- resolved "https://registry.yarnpkg.com/spdx-exceptions/-/spdx-exceptions-2.2.0.tgz#2ea450aee74f2a89bfb94519c07fcd6f41322977"
- integrity sha512-2XQACfElKi9SlVb1CYadKDXvoajPgBVPn/gOQLrTvHdElaVhr7ZEbqJaRnJLVNeaI4cMEAgVCeBMKF6MWRDCRA==
-
-spdx-expression-parse@^3.0.0:
- version "3.0.0"
- resolved "https://registry.yarnpkg.com/spdx-expression-parse/-/spdx-expression-parse-3.0.0.tgz#99e119b7a5da00e05491c9fa338b7904823b41d0"
- integrity sha512-Yg6D3XpRD4kkOmTpdgbUiEJFKghJH03fiC1OPll5h/0sO6neh2jqRDVHOQ4o/LMea0tgCkbMgea5ip/e+MkWyg==
- dependencies:
- spdx-exceptions "^2.1.0"
- spdx-license-ids "^3.0.0"
-
-spdx-license-ids@^3.0.0:
- version "3.0.5"
- resolved "https://registry.yarnpkg.com/spdx-license-ids/-/spdx-license-ids-3.0.5.tgz#3694b5804567a458d3c8045842a6358632f62654"
- integrity sha512-J+FWzZoynJEXGphVIS+XEh3kFSjZX/1i9gFBaWQcB+/tmpe2qUsSBABpcxqxnAxFdiUFEgAX1bjYGQvIZmoz9Q==
-
-split-string@^3.0.1, split-string@^3.0.2:
- version "3.1.0"
- resolved "https://registry.yarnpkg.com/split-string/-/split-string-3.1.0.tgz#7cb09dda3a86585705c64b39a6466038682e8fe2"
- integrity sha512-NzNVhJDYpwceVVii8/Hu6DKfD2G+NrQHlS/V/qgv763EYudVwEcMQNxd2lh+0VrUByXN/oJkl5grOhYWvQUYiw==
- dependencies:
- extend-shallow "^3.0.0"
-
-sprintf-js@~1.0.2:
- version "1.0.3"
- resolved "https://registry.yarnpkg.com/sprintf-js/-/sprintf-js-1.0.3.tgz#04e6926f662895354f3dd015203633b857297e2c"
- integrity sha1-BOaSb2YolTVPPdAVIDYzuFcpfiw=
-
-ssri@^6.0.1:
- version "6.0.1"
- resolved "https://registry.yarnpkg.com/ssri/-/ssri-6.0.1.tgz#2a3c41b28dd45b62b63676ecb74001265ae9edd8"
- integrity sha512-3Wge10hNcT1Kur4PDFwEieXSCMCJs/7WvSACcrMYrNp+b8kDL1/0wJch5Ni2WrtwEa2IO8OsVfeKIciKCDx/QA==
- dependencies:
- figgy-pudding "^3.5.1"
-
-static-extend@^0.1.1:
- version "0.1.2"
- resolved "https://registry.yarnpkg.com/static-extend/-/static-extend-0.1.2.tgz#60809c39cbff55337226fd5e0b520f341f1fb5c6"
- integrity sha1-YICcOcv/VTNyJv1eC1IPNB8ftcY=
- dependencies:
- define-property "^0.2.5"
- object-copy "^0.1.0"
-
-"statuses@>= 1.5.0 < 2", statuses@~1.5.0:
- version "1.5.0"
- resolved "https://registry.yarnpkg.com/statuses/-/statuses-1.5.0.tgz#161c7dac177659fd9811f43771fa99381478628c"
- integrity sha1-Fhx9rBd2Wf2YEfQ3cfqZOBR4Yow=
-
-stream-browserify@^2.0.1:
- version "2.0.2"
- resolved "https://registry.yarnpkg.com/stream-browserify/-/stream-browserify-2.0.2.tgz#87521d38a44aa7ee91ce1cd2a47df0cb49dd660b"
- integrity sha512-nX6hmklHs/gr2FuxYDltq8fJA1GDlxKQCz8O/IM4atRqBH8OORmBNgfvW5gG10GT/qQ9u0CzIvr2X5Pkt6ntqg==
- dependencies:
- inherits "~2.0.1"
- readable-stream "^2.0.2"
-
-stream-each@^1.1.0:
- version "1.2.3"
- resolved "https://registry.yarnpkg.com/stream-each/-/stream-each-1.2.3.tgz#ebe27a0c389b04fbcc233642952e10731afa9bae"
- integrity sha512-vlMC2f8I2u/bZGqkdfLQW/13Zihpej/7PmSiMQsbYddxuTsJp8vRe2x2FvVExZg7FaOds43ROAuFJwPR4MTZLw==
- dependencies:
- end-of-stream "^1.1.0"
- stream-shift "^1.0.0"
-
-stream-http@^2.7.2:
- version "2.8.3"
- resolved "https://registry.yarnpkg.com/stream-http/-/stream-http-2.8.3.tgz#b2d242469288a5a27ec4fe8933acf623de6514fc"
- integrity sha512-+TSkfINHDo4J+ZobQLWiMouQYB+UVYFttRA94FpEzzJ7ZdqcL4uUUQ7WkdkI4DSozGmgBUE/a47L+38PenXhUw==
- dependencies:
- builtin-status-codes "^3.0.0"
- inherits "^2.0.1"
- readable-stream "^2.3.6"
- to-arraybuffer "^1.0.0"
- xtend "^4.0.0"
-
-stream-shift@^1.0.0:
- version "1.0.1"
- resolved "https://registry.yarnpkg.com/stream-shift/-/stream-shift-1.0.1.tgz#d7088281559ab2778424279b0877da3c392d5a3d"
- integrity sha512-AiisoFqQ0vbGcZgQPY1cdP2I76glaVA/RauYR4G4thNFgkTqr90yXTo4LYX60Jl+sIlPNHHdGSwo01AvbKUSVQ==
-
-strict-uri-encode@^1.0.0:
- version "1.1.0"
- resolved "https://registry.yarnpkg.com/strict-uri-encode/-/strict-uri-encode-1.1.0.tgz#279b225df1d582b1f54e65addd4352e18faa0713"
- integrity sha1-J5siXfHVgrH1TmWt3UNS4Y+qBxM=
-
-string-hash@1.1.3:
- version "1.1.3"
- resolved "https://registry.yarnpkg.com/string-hash/-/string-hash-1.1.3.tgz#e8aafc0ac1855b4666929ed7dd1275df5d6c811b"
- integrity sha1-6Kr8CsGFW0Zmkp7X3RJ1311sgRs=
-
-string-width@^1.0.1:
- version "1.0.2"
- resolved "https://registry.yarnpkg.com/string-width/-/string-width-1.0.2.tgz#118bdf5b8cdc51a2a7e70d211e07e2b0b9b107d3"
- integrity sha1-EYvfW4zcUaKn5w0hHgfisLmxB9M=
- dependencies:
- code-point-at "^1.0.0"
- is-fullwidth-code-point "^1.0.0"
- strip-ansi "^3.0.0"
-
-"string-width@^1.0.2 || 2", string-width@^2.0.0, string-width@^2.1.1:
- version "2.1.1"
- resolved "https://registry.yarnpkg.com/string-width/-/string-width-2.1.1.tgz#ab93f27a8dc13d28cac815c462143a6d9012ae9e"
- integrity sha512-nOqH59deCq9SRHlxq1Aw85Jnt4w6KvLKqWVik6oA9ZklXLNIOlqg4F2yrT1MVaTjAqvVwdfeZ7w7aCvJD7ugkw==
- dependencies:
- is-fullwidth-code-point "^2.0.0"
- strip-ansi "^4.0.0"
-
-string_decoder@^1.0.0:
- version "1.3.0"
- resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.3.0.tgz#42f114594a46cf1a8e30b0a84f56c78c3edac21e"
- integrity sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==
- dependencies:
- safe-buffer "~5.2.0"
-
-string_decoder@~1.1.1:
- version "1.1.1"
- resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.1.1.tgz#9cf1611ba62685d7030ae9e4ba34149c3af03fc8"
- integrity sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==
- dependencies:
- safe-buffer "~5.1.0"
-
-strip-ansi@5.2.0, strip-ansi@^5.2.0:
- version "5.2.0"
- resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-5.2.0.tgz#8c9a536feb6afc962bdfa5b104a5091c1ad9c0ae"
- integrity sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA==
- dependencies:
- ansi-regex "^4.1.0"
-
-strip-ansi@^3.0.0, strip-ansi@^3.0.1:
- version "3.0.1"
- resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-3.0.1.tgz#6a385fb8853d952d5ff05d0e8aaf94278dc63dcf"
- integrity sha1-ajhfuIU9lS1f8F0Oiq+UJ43GPc8=
- dependencies:
- ansi-regex "^2.0.0"
-
-strip-ansi@^4.0.0:
- version "4.0.0"
- resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-4.0.0.tgz#a8479022eb1ac368a871389b635262c505ee368f"
- integrity sha1-qEeQIusaw2iocTibY1JixQXuNo8=
- dependencies:
- ansi-regex "^3.0.0"
-
-strip-bom@^3.0.0:
- version "3.0.0"
- resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-3.0.0.tgz#2334c18e9c759f7bdd56fdef7e9ae3d588e68ed3"
- integrity sha1-IzTBjpx1n3vdVv3vfprj1YjmjtM=
-
-strip-eof@^1.0.0:
- version "1.0.0"
- resolved "https://registry.yarnpkg.com/strip-eof/-/strip-eof-1.0.0.tgz#bb43ff5598a6eb05d89b59fcd129c983313606bf"
- integrity sha1-u0P/VZim6wXYm1n80SnJgzE2Br8=
-
-strip-json-comments@~2.0.1:
- version "2.0.1"
- resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-2.0.1.tgz#3c531942e908c2697c0ec344858c286c7ca0a60a"
- integrity sha1-PFMZQukIwml8DsNEhYwobHygpgo=
-
-style-loader@1.0.0:
- version "1.0.0"
- resolved "https://registry.yarnpkg.com/style-loader/-/style-loader-1.0.0.tgz#1d5296f9165e8e2c85d24eee0b7caf9ec8ca1f82"
- integrity sha512-B0dOCFwv7/eY31a5PCieNwMgMhVGFe9w+rh7s/Bx8kfFkrth9zfTZquoYvdw8URgiqxObQKcpW51Ugz1HjfdZw==
- dependencies:
- loader-utils "^1.2.3"
- schema-utils "^2.0.1"
-
-styled-jsx@3.2.4:
- version "3.2.4"
- resolved "https://registry.yarnpkg.com/styled-jsx/-/styled-jsx-3.2.4.tgz#cbcdedcfb81d717fd355c4a0d8443f8e74527b60"
- integrity sha512-UMclQzI1lss38RhyjTf7SmtXJEMbB6Q9slDz8adGtzHjirYb1PPgeWLSP8SlZc8c9f3LF6axmtv+6K/553ANdg==
- dependencies:
- babel-plugin-syntax-jsx "6.18.0"
- babel-types "6.26.0"
- convert-source-map "1.7.0"
- loader-utils "1.2.3"
- source-map "0.7.3"
- string-hash "1.1.3"
- stylis "3.5.4"
- stylis-rule-sheet "0.0.10"
-
-stylis-rule-sheet@0.0.10:
- version "0.0.10"
- resolved "https://registry.yarnpkg.com/stylis-rule-sheet/-/stylis-rule-sheet-0.0.10.tgz#44e64a2b076643f4b52e5ff71efc04d8c3c4a430"
- integrity sha512-nTbZoaqoBnmK+ptANthb10ZRZOGC+EmTLLUxeYIuHNkEKcmKgXX1XWKkUBT2Ac4es3NybooPe0SmvKdhKJZAuw==
-
-stylis@3.5.4:
- version "3.5.4"
- resolved "https://registry.yarnpkg.com/stylis/-/stylis-3.5.4.tgz#f665f25f5e299cf3d64654ab949a57c768b73fbe"
- integrity sha512-8/3pSmthWM7lsPBKv7NXkzn2Uc9W7NotcwGNpJaa3k7WMM1XDCA4MgT5k/8BIexd5ydZdboXtU90XH9Ec4Bv/Q==
-
-supports-color@^2.0.0:
- version "2.0.0"
- resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-2.0.0.tgz#535d045ce6b6363fa40117084629995e9df324c7"
- integrity sha1-U10EXOa2Nj+kARcIRimZXp3zJMc=
-
-supports-color@^5.3.0:
- version "5.5.0"
- resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-5.5.0.tgz#e2e69a44ac8772f78a1ec0b35b689df6530efc8f"
- integrity sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==
- dependencies:
- has-flag "^3.0.0"
-
-supports-color@^6.1.0:
- version "6.1.0"
- resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-6.1.0.tgz#0764abc69c63d5ac842dd4867e8d025e880df8f3"
- integrity sha512-qe1jfm1Mg7Nq/NSh6XE24gPXROEVsWHxC1LIx//XNlD9iw7YZQGjZNjYN7xGaEG6iKdA8EtNFW6R0gjnVXp+wQ==
- dependencies:
- has-flag "^3.0.0"
-
-tapable@^1.0.0, tapable@^1.1.3:
- version "1.1.3"
- resolved "https://registry.yarnpkg.com/tapable/-/tapable-1.1.3.tgz#a1fccc06b58db61fd7a45da2da44f5f3a3e67ba2"
- integrity sha512-4WK/bYZmj8xLr+HUCODHGF1ZFzsYffasLUgEiMBY4fgtltdO6B4WJtlSbPaDTLpYTcGVwM2qLnFTICEcNxs3kA==
-
-tar@^4.4.2:
- version "4.4.13"
- resolved "https://registry.yarnpkg.com/tar/-/tar-4.4.13.tgz#43b364bc52888d555298637b10d60790254ab525"
- integrity sha512-w2VwSrBoHa5BsSyH+KxEqeQBAllHhccyMFVHtGtdMpF4W7IRWfZjFiQceJPChOeTsSDVUpER2T8FA93pr0L+QA==
- dependencies:
- chownr "^1.1.1"
- fs-minipass "^1.2.5"
- minipass "^2.8.6"
- minizlib "^1.2.1"
- mkdirp "^0.5.0"
- safe-buffer "^5.1.2"
- yallist "^3.0.3"
-
-term-size@^1.2.0:
- version "1.2.0"
- resolved "https://registry.yarnpkg.com/term-size/-/term-size-1.2.0.tgz#458b83887f288fc56d6fffbfad262e26638efa69"
- integrity sha1-RYuDiH8oj8Vtb/+/rSYuJmOO+mk=
- dependencies:
- execa "^0.7.0"
-
-terser-webpack-plugin@^1.4.1:
- version "1.4.3"
- resolved "https://registry.yarnpkg.com/terser-webpack-plugin/-/terser-webpack-plugin-1.4.3.tgz#5ecaf2dbdc5fb99745fd06791f46fc9ddb1c9a7c"
- integrity sha512-QMxecFz/gHQwteWwSo5nTc6UaICqN1bMedC5sMtUc7y3Ha3Q8y6ZO0iCR8pq4RJC8Hjf0FEPEHZqcMB/+DFCrA==
- dependencies:
- cacache "^12.0.2"
- find-cache-dir "^2.1.0"
- is-wsl "^1.1.0"
- schema-utils "^1.0.0"
- serialize-javascript "^2.1.2"
- source-map "^0.6.1"
- terser "^4.1.2"
- webpack-sources "^1.4.0"
- worker-farm "^1.7.0"
-
-terser@4.4.2:
- version "4.4.2"
- resolved "https://registry.yarnpkg.com/terser/-/terser-4.4.2.tgz#448fffad0245f4c8a277ce89788b458bfd7706e8"
- integrity sha512-Uufrsvhj9O1ikwgITGsZ5EZS6qPokUOkCegS7fYOdGTv+OA90vndUbU6PEjr5ePqHfNUbGyMO7xyIZv2MhsALQ==
- dependencies:
- commander "^2.20.0"
- source-map "~0.6.1"
- source-map-support "~0.5.12"
-
-terser@^4.1.2:
- version "4.4.3"
- resolved "https://registry.yarnpkg.com/terser/-/terser-4.4.3.tgz#401abc52b88869cf904412503b1eb7da093ae2f0"
- integrity sha512-0ikKraVtRDKGzHrzkCv5rUNDzqlhmhowOBqC0XqUHFpW+vJ45+20/IFBcebwKfiS2Z9fJin6Eo+F1zLZsxi8RA==
- dependencies:
- commander "^2.20.0"
- source-map "~0.6.1"
- source-map-support "~0.5.12"
-
-through2@^2.0.0:
- version "2.0.5"
- resolved "https://registry.yarnpkg.com/through2/-/through2-2.0.5.tgz#01c1e39eb31d07cb7d03a96a70823260b23132cd"
- integrity sha512-/mrRod8xqpA+IHSLyGCQ2s8SPHiCDEeQJSep1jqLYeEUClOFG2Qsh+4FU6G9VeqpZnGW/Su8LQGc4YKni5rYSQ==
- dependencies:
- readable-stream "~2.3.6"
- xtend "~4.0.1"
-
-timers-browserify@^2.0.4:
- version "2.0.11"
- resolved "https://registry.yarnpkg.com/timers-browserify/-/timers-browserify-2.0.11.tgz#800b1f3eee272e5bc53ee465a04d0e804c31211f"
- integrity sha512-60aV6sgJ5YEbzUdn9c8kYGIqOubPoUdqQCul3SBAsRCZ40s6Y5cMcrW4dt3/k/EsbLVJNl9n6Vz3fTc+k2GeKQ==
- dependencies:
- setimmediate "^1.0.4"
-
-to-arraybuffer@^1.0.0:
- version "1.0.1"
- resolved "https://registry.yarnpkg.com/to-arraybuffer/-/to-arraybuffer-1.0.1.tgz#7d229b1fcc637e466ca081180836a7aabff83f43"
- integrity sha1-fSKbH8xjfkZsoIEYCDanqr/4P0M=
-
-to-fast-properties@^1.0.3:
- version "1.0.3"
- resolved "https://registry.yarnpkg.com/to-fast-properties/-/to-fast-properties-1.0.3.tgz#b83571fa4d8c25b82e231b06e3a3055de4ca1a47"
- integrity sha1-uDVx+k2MJbguIxsG46MFXeTKGkc=
-
-to-fast-properties@^2.0.0:
- version "2.0.0"
- resolved "https://registry.yarnpkg.com/to-fast-properties/-/to-fast-properties-2.0.0.tgz#dc5e698cbd079265bc73e0377681a4e4e83f616e"
- integrity sha1-3F5pjL0HkmW8c+A3doGk5Og/YW4=
-
-to-object-path@^0.3.0:
- version "0.3.0"
- resolved "https://registry.yarnpkg.com/to-object-path/-/to-object-path-0.3.0.tgz#297588b7b0e7e0ac08e04e672f85c1f4999e17af"
- integrity sha1-KXWIt7Dn4KwI4E5nL4XB9JmeF68=
- dependencies:
- kind-of "^3.0.2"
-
-to-regex-range@^2.1.0:
- version "2.1.1"
- resolved "https://registry.yarnpkg.com/to-regex-range/-/to-regex-range-2.1.1.tgz#7c80c17b9dfebe599e27367e0d4dd5590141db38"
- integrity sha1-fIDBe53+vlmeJzZ+DU3VWQFB2zg=
- dependencies:
- is-number "^3.0.0"
- repeat-string "^1.6.1"
-
-to-regex-range@^5.0.1:
- version "5.0.1"
- resolved "https://registry.yarnpkg.com/to-regex-range/-/to-regex-range-5.0.1.tgz#1648c44aae7c8d988a326018ed72f5b4dd0392e4"
- integrity sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==
- dependencies:
- is-number "^7.0.0"
-
-to-regex@^3.0.1, to-regex@^3.0.2:
- version "3.0.2"
- resolved "https://registry.yarnpkg.com/to-regex/-/to-regex-3.0.2.tgz#13cfdd9b336552f30b51f33a8ae1b42a7a7599ce"
- integrity sha512-FWtleNAtZ/Ki2qtqej2CXTOayOH9bHDQF+Q48VpWyDXjbYxA4Yz8iDB31zXOBUlOHHKidDbqGVrTUvQMPmBGBw==
- dependencies:
- define-property "^2.0.2"
- extend-shallow "^3.0.2"
- regex-not "^1.0.2"
- safe-regex "^1.1.0"
-
-toidentifier@1.0.0:
- version "1.0.0"
- resolved "https://registry.yarnpkg.com/toidentifier/-/toidentifier-1.0.0.tgz#7e1be3470f1e77948bc43d94a3c8f4d7752ba553"
- integrity sha512-yaOH/Pk/VEhBWWTlhI+qXxDFXlejDGcQipMlyxda9nthulaxLZUNcUqFxokp0vcYnvteJln5FNQDRrxj3YcbVw==
-
-traverse@0.6.6:
- version "0.6.6"
- resolved "https://registry.yarnpkg.com/traverse/-/traverse-0.6.6.tgz#cbdf560fd7b9af632502fed40f918c157ea97137"
- integrity sha1-y99WD9e5r2MlAv7UD5GMFX6pcTc=
-
-ts-pnp@^1.1.2:
- version "1.1.5"
- resolved "https://registry.yarnpkg.com/ts-pnp/-/ts-pnp-1.1.5.tgz#840e0739c89fce5f3abd9037bb091dbff16d9dec"
- integrity sha512-ti7OGMOUOzo66wLF3liskw6YQIaSsBgc4GOAlWRnIEj8htCxJUxskanMUoJOD6MDCRAXo36goXJZch+nOS0VMA==
-
-tslib@^1.9.0:
- version "1.10.0"
- resolved "https://registry.yarnpkg.com/tslib/-/tslib-1.10.0.tgz#c3c19f95973fb0a62973fb09d90d961ee43e5c8a"
- integrity sha512-qOebF53frne81cf0S9B41ByenJ3/IuH8yJKngAX35CmiZySA0khhkovshKK+jGCaMnVomla7gVlIcc3EvKPbTQ==
-
-tty-browserify@0.0.0:
- version "0.0.0"
- resolved "https://registry.yarnpkg.com/tty-browserify/-/tty-browserify-0.0.0.tgz#a157ba402da24e9bf957f9aa69d524eed42901a6"
- integrity sha1-oVe6QC2iTpv5V/mqadUk7tQpAaY=
-
-typedarray-to-buffer@^3.1.5:
- version "3.1.5"
- resolved "https://registry.yarnpkg.com/typedarray-to-buffer/-/typedarray-to-buffer-3.1.5.tgz#a97ee7a9ff42691b9f783ff1bc5112fe3fca9080"
- integrity sha512-zdu8XMNEDepKKR+XYOXAVPtWui0ly0NtohUscw+UmaHiAWT8hrV1rr//H6V+0DvJ3OQ19S979M0laLfX8rm82Q==
- dependencies:
- is-typedarray "^1.0.0"
-
-typedarray@^0.0.6:
- version "0.0.6"
- resolved "https://registry.yarnpkg.com/typedarray/-/typedarray-0.0.6.tgz#867ac74e3864187b1d3d47d996a78ec5c8830777"
- integrity sha1-hnrHTjhkGHsdPUfZlqeOxciDB3c=
-
-unfetch@4.1.0:
- version "4.1.0"
- resolved "https://registry.yarnpkg.com/unfetch/-/unfetch-4.1.0.tgz#6ec2dd0de887e58a4dee83a050ded80ffc4137db"
- integrity sha512-crP/n3eAPUJxZXM9T80/yv0YhkTEx2K1D3h7D1AJM6fzsWZrxdyRuLN0JH/dkZh1LNH8LxCnBzoPFCPbb2iGpg==
-
-unicode-canonical-property-names-ecmascript@^1.0.4:
- version "1.0.4"
- resolved "https://registry.yarnpkg.com/unicode-canonical-property-names-ecmascript/-/unicode-canonical-property-names-ecmascript-1.0.4.tgz#2619800c4c825800efdd8343af7dd9933cbe2818"
- integrity sha512-jDrNnXWHd4oHiTZnx/ZG7gtUTVp+gCcTTKr8L0HjlwphROEW3+Him+IpvC+xcJEFegapiMZyZe02CyuOnRmbnQ==
-
-unicode-match-property-ecmascript@^1.0.4:
- version "1.0.4"
- resolved "https://registry.yarnpkg.com/unicode-match-property-ecmascript/-/unicode-match-property-ecmascript-1.0.4.tgz#8ed2a32569961bce9227d09cd3ffbb8fed5f020c"
- integrity sha512-L4Qoh15vTfntsn4P1zqnHulG0LdXgjSO035fEpdtp6YxXhMT51Q6vgM5lYdG/5X3MjS+k/Y9Xw4SFCY9IkR0rg==
- dependencies:
- unicode-canonical-property-names-ecmascript "^1.0.4"
- unicode-property-aliases-ecmascript "^1.0.4"
-
-unicode-match-property-value-ecmascript@^1.1.0:
- version "1.1.0"
- resolved "https://registry.yarnpkg.com/unicode-match-property-value-ecmascript/-/unicode-match-property-value-ecmascript-1.1.0.tgz#5b4b426e08d13a80365e0d657ac7a6c1ec46a277"
- integrity sha512-hDTHvaBk3RmFzvSl0UVrUmC3PuW9wKVnpoUDYH0JDkSIovzw+J5viQmeYHxVSBptubnr7PbH2e0fnpDRQnQl5g==
-
-unicode-property-aliases-ecmascript@^1.0.4:
- version "1.0.5"
- resolved "https://registry.yarnpkg.com/unicode-property-aliases-ecmascript/-/unicode-property-aliases-ecmascript-1.0.5.tgz#a9cc6cc7ce63a0a3023fc99e341b94431d405a57"
- integrity sha512-L5RAqCfXqAwR3RriF8pM0lU0w4Ryf/GgzONwi6KnL1taJQa7x1TCxdJnILX59WIGOwR57IVxn7Nej0fz1Ny6fw==
-
-union-value@^1.0.0:
- version "1.0.1"
- resolved "https://registry.yarnpkg.com/union-value/-/union-value-1.0.1.tgz#0b6fe7b835aecda61c6ea4d4f02c14221e109847"
- integrity sha512-tJfXmxMeWYnczCVs7XAEvIV7ieppALdyepWMkHkwciRpZraG/xwT+s2JN8+pr1+8jCRf80FFzvr+MpQeeoF4Xg==
- dependencies:
- arr-union "^3.1.0"
- get-value "^2.0.6"
- is-extendable "^0.1.1"
- set-value "^2.0.1"
-
-uniq@^1.0.1:
- version "1.0.1"
- resolved "https://registry.yarnpkg.com/uniq/-/uniq-1.0.1.tgz#b31c5ae8254844a3a8281541ce2b04b865a734ff"
- integrity sha1-sxxa6CVIRKOoKBVBzisEuGWnNP8=
-
-unique-filename@^1.1.1:
- version "1.1.1"
- resolved "https://registry.yarnpkg.com/unique-filename/-/unique-filename-1.1.1.tgz#1d69769369ada0583103a1e6ae87681b56573230"
- integrity sha512-Vmp0jIp2ln35UTXuryvjzkjGdRyf9b2lTXuSYUiPmzRcl3FDtYqAwOnTJkAngD9SWhnoJzDbTKwaOrZ+STtxNQ==
- dependencies:
- unique-slug "^2.0.0"
-
-unique-slug@^2.0.0:
- version "2.0.2"
- resolved "https://registry.yarnpkg.com/unique-slug/-/unique-slug-2.0.2.tgz#baabce91083fc64e945b0f3ad613e264f7cd4e6c"
- integrity sha512-zoWr9ObaxALD3DOPfjPSqxt4fnZiWblxHIgeWqW8x7UqDzEtHEQLzji2cuJYQFCU6KmoJikOYAZlrTHHebjx2w==
- dependencies:
- imurmurhash "^0.1.4"
-
-unpipe@1.0.0:
- version "1.0.0"
- resolved "https://registry.yarnpkg.com/unpipe/-/unpipe-1.0.0.tgz#b2bf4ee8514aae6165b4817829d21b2ef49904ec"
- integrity sha1-sr9O6FFKrmFltIF4KdIbLvSZBOw=
-
-unset-value@^1.0.0:
- version "1.0.0"
- resolved "https://registry.yarnpkg.com/unset-value/-/unset-value-1.0.0.tgz#8376873f7d2335179ffb1e6fc3a8ed0dfc8ab559"
- integrity sha1-g3aHP30jNRef+x5vw6jtDfyKtVk=
- dependencies:
- has-value "^0.3.1"
- isobject "^3.0.0"
-
-upath@^1.1.1:
- version "1.2.0"
- resolved "https://registry.yarnpkg.com/upath/-/upath-1.2.0.tgz#8f66dbcd55a883acdae4408af8b035a5044c1894"
- integrity sha512-aZwGpamFO61g3OlfT7OQCHqhGnW43ieH9WZeP7QxN/G/jS4jfqUkZxoryvJgVPEcrl5NL/ggHsSmLMHuH64Lhg==
-
-update-check@1.5.2:
- version "1.5.2"
- resolved "https://registry.yarnpkg.com/update-check/-/update-check-1.5.2.tgz#2fe09f725c543440b3d7dabe8971f2d5caaedc28"
- integrity sha512-1TrmYLuLj/5ZovwUS7fFd1jMH3NnFDN1y1A8dboedIDt7zs/zJMo6TwwlhYKkSeEwzleeiSBV5/3c9ufAQWDaQ==
- dependencies:
- registry-auth-token "3.3.2"
- registry-url "3.1.0"
-
-uri-js@^4.2.2:
- version "4.2.2"
- resolved "https://registry.yarnpkg.com/uri-js/-/uri-js-4.2.2.tgz#94c540e1ff772956e2299507c010aea6c8838eb0"
- integrity sha512-KY9Frmirql91X2Qgjry0Wd4Y+YTdrdZheS8TFwvkbLWf/G5KNJDCh6pKL5OZctEW4+0Baa5idK2ZQuELRwPznQ==
- dependencies:
- punycode "^2.1.0"
-
-urix@^0.1.0:
- version "0.1.0"
- resolved "https://registry.yarnpkg.com/urix/-/urix-0.1.0.tgz#da937f7a62e21fec1fd18d49b35c2935067a6c72"
- integrity sha1-2pN/emLiH+wf0Y1Js1wpNQZ6bHI=
-
-url-polyfill@1.1.7:
- version "1.1.7"
- resolved "https://registry.yarnpkg.com/url-polyfill/-/url-polyfill-1.1.7.tgz#402ee84360eb549bbeb585f4c7971e79a31de9e3"
- integrity sha512-ZrAxYWCREjmMtL8gSbSiKKLZZticgihCvVBtrFbUVpyoETt8GQJeG2okMWA8XryDAaHMjJfhnc+rnhXRbI4DXA==
-
-url@0.11.0, url@^0.11.0:
- version "0.11.0"
- resolved "https://registry.yarnpkg.com/url/-/url-0.11.0.tgz#3838e97cfc60521eb73c525a8e55bfdd9e2e28f1"
- integrity sha1-ODjpfPxgUh63PFJajlW/3Z4uKPE=
- dependencies:
- punycode "1.3.2"
- querystring "0.2.0"
-
-use-subscription@1.1.1:
- version "1.1.1"
- resolved "https://registry.yarnpkg.com/use-subscription/-/use-subscription-1.1.1.tgz#5509363e9bb152c4fb334151d4dceb943beaa7bb"
- integrity sha512-gk4fPTYvNhs6Ia7u8/+K7bM7sZ7O7AMfWtS+zPO8luH+zWuiGgGcrW0hL4MRWZSzXo+4ofNorf87wZwBKz2YdQ==
-
-use@^3.1.0:
- version "3.1.1"
- resolved "https://registry.yarnpkg.com/use/-/use-3.1.1.tgz#d50c8cac79a19fbc20f2911f56eb973f4e10070f"
- integrity sha512-cwESVXlO3url9YWlFW/TA9cshCEhtu7IKJ/p5soJ/gGpj7vbvFrAY/eIioQ6Dw23KjZhYgiIo8HOs1nQ2vr/oQ==
-
-util-deprecate@~1.0.1:
- version "1.0.2"
- resolved "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf"
- integrity sha1-RQ1Nyfpw3nMnYvvS1KKJgUGaDM8=
-
-util@0.10.3:
- version "0.10.3"
- resolved "https://registry.yarnpkg.com/util/-/util-0.10.3.tgz#7afb1afe50805246489e3db7fe0ed379336ac0f9"
- integrity sha1-evsa/lCAUkZInj23/g7TeTNqwPk=
- dependencies:
- inherits "2.0.1"
-
-util@^0.11.0:
- version "0.11.1"
- resolved "https://registry.yarnpkg.com/util/-/util-0.11.1.tgz#3236733720ec64bb27f6e26f421aaa2e1b588d61"
- integrity sha512-HShAsny+zS2TZfaXxD9tYj4HQGlBezXZMZuM/S5PKLLoZkShZiGk9o5CzukI1LVHZvjdvZ2Sj1aW/Ndn2NB/HQ==
- dependencies:
- inherits "2.0.3"
-
-uuid@^3.3.2:
- version "3.3.3"
- resolved "https://registry.yarnpkg.com/uuid/-/uuid-3.3.3.tgz#4568f0216e78760ee1dbf3a4d2cf53e224112866"
- integrity sha512-pW0No1RGHgzlpHJO1nsVrHKpOEIxkGg1xB+v0ZmdNH5OAeAwzAVrCnI2/6Mtx+Uys6iaylxa+D3g4j63IKKjSQ==
-
-validate-npm-package-license@^3.0.1:
- version "3.0.4"
- resolved "https://registry.yarnpkg.com/validate-npm-package-license/-/validate-npm-package-license-3.0.4.tgz#fc91f6b9c7ba15c857f4cb2c5defeec39d4f410a"
- integrity sha512-DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew==
- dependencies:
- spdx-correct "^3.0.0"
- spdx-expression-parse "^3.0.0"
-
-vary@~1.1.2:
- version "1.1.2"
- resolved "https://registry.yarnpkg.com/vary/-/vary-1.1.2.tgz#2299f02c6ded30d4a5961b0b9f74524a18f634fc"
- integrity sha1-IpnwLG3tMNSllhsLn3RSShj2NPw=
-
-vm-browserify@^1.0.1:
- version "1.1.2"
- resolved "https://registry.yarnpkg.com/vm-browserify/-/vm-browserify-1.1.2.tgz#78641c488b8e6ca91a75f511e7a3b32a86e5dda0"
- integrity sha512-2ham8XPWTONajOR0ohOKOHXkm3+gaBmGut3SRuu75xLd/RRaY6vqgh8NBYYk7+RW3u5AtzPQZG8F10LHkl0lAQ==
-
-watchpack@2.0.0-beta.5:
- version "2.0.0-beta.5"
- resolved "https://registry.yarnpkg.com/watchpack/-/watchpack-2.0.0-beta.5.tgz#c005db39570d81d9d34334870abc0f548901b880"
- integrity sha512-HGqh9e9QZFhow8JYX+1+E+kIYK0uTTsk6rCOkI0ff0f9kMO0wX783yW8saQC9WDx7qHpVGPXsRnld9nY7iwzQA==
- dependencies:
- glob-to-regexp "^0.4.1"
- graceful-fs "^4.1.2"
- neo-async "^2.5.0"
-
-watchpack@^1.6.0:
- version "1.6.0"
- resolved "https://registry.yarnpkg.com/watchpack/-/watchpack-1.6.0.tgz#4bc12c2ebe8aa277a71f1d3f14d685c7b446cd00"
- integrity sha512-i6dHe3EyLjMmDlU1/bGQpEw25XSjkJULPuAVKCbNRefQVq48yXKUpwg538F7AZTf9kyr57zj++pQFltUa5H7yA==
- dependencies:
- chokidar "^2.0.2"
- graceful-fs "^4.1.2"
- neo-async "^2.5.0"
-
-wcwidth@^1.0.1:
- version "1.0.1"
- resolved "https://registry.yarnpkg.com/wcwidth/-/wcwidth-1.0.1.tgz#f0b0dcf915bc5ff1528afadb2c0e17b532da2fe8"
- integrity sha1-8LDc+RW8X/FSivrbLA4XtTLaL+g=
- dependencies:
- defaults "^1.0.3"
-
-webpack-dev-middleware@3.7.0:
- version "3.7.0"
- resolved "https://registry.yarnpkg.com/webpack-dev-middleware/-/webpack-dev-middleware-3.7.0.tgz#ef751d25f4e9a5c8a35da600c5fda3582b5c6cff"
- integrity sha512-qvDesR1QZRIAZHOE3iQ4CXLZZSQ1lAUsSpnQmlB1PBfoN/xdRjmge3Dok0W4IdaVLJOGJy3sGI4sZHwjRU0PCA==
- dependencies:
- memory-fs "^0.4.1"
- mime "^2.4.2"
- range-parser "^1.2.1"
- webpack-log "^2.0.0"
-
-webpack-hot-middleware@2.25.0:
- version "2.25.0"
- resolved "https://registry.yarnpkg.com/webpack-hot-middleware/-/webpack-hot-middleware-2.25.0.tgz#4528a0a63ec37f8f8ef565cf9e534d57d09fe706"
- integrity sha512-xs5dPOrGPCzuRXNi8F6rwhawWvQQkeli5Ro48PRuQh8pYPCPmNnltP9itiUPT4xI8oW+y0m59lyyeQk54s5VgA==
- dependencies:
- ansi-html "0.0.7"
- html-entities "^1.2.0"
- querystring "^0.2.0"
- strip-ansi "^3.0.0"
-
-webpack-log@^2.0.0:
- version "2.0.0"
- resolved "https://registry.yarnpkg.com/webpack-log/-/webpack-log-2.0.0.tgz#5b7928e0637593f119d32f6227c1e0ac31e1b47f"
- integrity sha512-cX8G2vR/85UYG59FgkoMamwHUIkSSlV3bBMRsbxVXVUk2j6NleCKjQ/WE9eYg9WY4w25O9w8wKP4rzNZFmUcUg==
- dependencies:
- ansi-colors "^3.0.0"
- uuid "^3.3.2"
-
-webpack-merge@^4.1.0:
- version "4.2.2"
- resolved "https://registry.yarnpkg.com/webpack-merge/-/webpack-merge-4.2.2.tgz#a27c52ea783d1398afd2087f547d7b9d2f43634d"
- integrity sha512-TUE1UGoTX2Cd42j3krGYqObZbOD+xF7u28WB7tfUordytSjbWTIjK/8V0amkBfTYN4/pB/GIDlJZZ657BGG19g==
- dependencies:
- lodash "^4.17.15"
-
-webpack-sources@1.4.3, webpack-sources@^1.0.1, webpack-sources@^1.1.0, webpack-sources@^1.4.0, webpack-sources@^1.4.1:
- version "1.4.3"
- resolved "https://registry.yarnpkg.com/webpack-sources/-/webpack-sources-1.4.3.tgz#eedd8ec0b928fbf1cbfe994e22d2d890f330a933"
- integrity sha512-lgTS3Xhv1lCOKo7SA5TjKXMjpSM4sBjNV5+q2bqesbSPs5FjGmU6jjtBSkX9b4qW87vDIsCIlUPOEhbZrMdjeQ==
- dependencies:
- source-list-map "^2.0.0"
- source-map "~0.6.1"
-
-webpack@4.41.2:
- version "4.41.2"
- resolved "https://registry.yarnpkg.com/webpack/-/webpack-4.41.2.tgz#c34ec76daa3a8468c9b61a50336d8e3303dce74e"
- integrity sha512-Zhw69edTGfbz9/8JJoyRQ/pq8FYUoY0diOXqW0T6yhgdhCv6wr0hra5DwwWexNRns2Z2+gsnrNcbe9hbGBgk/A==
- dependencies:
- "@webassemblyjs/ast" "1.8.5"
- "@webassemblyjs/helper-module-context" "1.8.5"
- "@webassemblyjs/wasm-edit" "1.8.5"
- "@webassemblyjs/wasm-parser" "1.8.5"
- acorn "^6.2.1"
- ajv "^6.10.2"
- ajv-keywords "^3.4.1"
- chrome-trace-event "^1.0.2"
- enhanced-resolve "^4.1.0"
- eslint-scope "^4.0.3"
- json-parse-better-errors "^1.0.2"
- loader-runner "^2.4.0"
- loader-utils "^1.2.3"
- memory-fs "^0.4.1"
- micromatch "^3.1.10"
- mkdirp "^0.5.1"
- neo-async "^2.6.1"
- node-libs-browser "^2.2.1"
- schema-utils "^1.0.0"
- tapable "^1.1.3"
- terser-webpack-plugin "^1.4.1"
- watchpack "^1.6.0"
- webpack-sources "^1.4.1"
-
-whatwg-fetch@3.0.0:
- version "3.0.0"
- resolved "https://registry.yarnpkg.com/whatwg-fetch/-/whatwg-fetch-3.0.0.tgz#fc804e458cc460009b1a2b966bc8817d2578aefb"
- integrity sha512-9GSJUgz1D4MfyKU7KRqwOjXCXTqWdFNvEr7eUBYchQiVc744mqK/MzXPNR2WsPkmkOa4ywfg8C2n8h+13Bey1Q==
-
-which@^1.2.9:
- version "1.3.1"
- resolved "https://registry.yarnpkg.com/which/-/which-1.3.1.tgz#a45043d54f5805316da8d62f9f50918d3da70b0a"
- integrity sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==
- dependencies:
- isexe "^2.0.0"
-
-wide-align@^1.1.0:
- version "1.1.3"
- resolved "https://registry.yarnpkg.com/wide-align/-/wide-align-1.1.3.tgz#ae074e6bdc0c14a431e804e624549c633b000457"
- integrity sha512-QGkOQc8XL6Bt5PwnsExKBPuMKBxnGxWWW3fU55Xt4feHozMUhdUMaBCk290qpm/wG5u/RSKzwdAC4i51YigihA==
- dependencies:
- string-width "^1.0.2 || 2"
-
-widest-line@^2.0.0:
- version "2.0.1"
- resolved "https://registry.yarnpkg.com/widest-line/-/widest-line-2.0.1.tgz#7438764730ec7ef4381ce4df82fb98a53142a3fc"
- integrity sha512-Ba5m9/Fa4Xt9eb2ELXt77JxVDV8w7qQrH0zS/TWSJdLyAwQjWoOzpzj5lwVftDz6n/EOu3tNACS84v509qwnJA==
- dependencies:
- string-width "^2.1.1"
-
-worker-farm@^1.7.0:
- version "1.7.0"
- resolved "https://registry.yarnpkg.com/worker-farm/-/worker-farm-1.7.0.tgz#26a94c5391bbca926152002f69b84a4bf772e5a8"
- integrity sha512-rvw3QTZc8lAxyVrqcSGVm5yP/IJ2UcB3U0graE3LCFoZ0Yn2x4EoVSqJKdB/T5M+FLcRPjz4TDacRf3OCfNUzw==
- dependencies:
- errno "~0.1.7"
-
-worker-rpc@^0.1.0:
- version "0.1.1"
- resolved "https://registry.yarnpkg.com/worker-rpc/-/worker-rpc-0.1.1.tgz#cb565bd6d7071a8f16660686051e969ad32f54d5"
- integrity sha512-P1WjMrUB3qgJNI9jfmpZ/htmBEjFh//6l/5y8SD9hg1Ef5zTTVVoRjTrTEzPrNBQvmhMxkoTsjOXN10GWU7aCg==
- dependencies:
- microevent.ts "~0.1.1"
-
-wrappy@1:
- version "1.0.2"
- resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f"
- integrity sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8=
-
-write-file-atomic@^3.0.0:
- version "3.0.1"
- resolved "https://registry.yarnpkg.com/write-file-atomic/-/write-file-atomic-3.0.1.tgz#558328352e673b5bb192cf86500d60b230667d4b"
- integrity sha512-JPStrIyyVJ6oCSz/691fAjFtefZ6q+fP6tm+OS4Qw6o+TGQxNp1ziY2PgS+X/m0V8OWhZiO/m4xSj+Pr4RrZvw==
- dependencies:
- imurmurhash "^0.1.4"
- is-typedarray "^1.0.0"
- signal-exit "^3.0.2"
- typedarray-to-buffer "^3.1.5"
-
-xtend@^4.0.0, xtend@~4.0.1:
- version "4.0.2"
- resolved "https://registry.yarnpkg.com/xtend/-/xtend-4.0.2.tgz#bb72779f5fa465186b1f438f674fa347fdb5db54"
- integrity sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ==
-
-y18n@^4.0.0:
- version "4.0.0"
- resolved "https://registry.yarnpkg.com/y18n/-/y18n-4.0.0.tgz#95ef94f85ecc81d007c264e190a120f0a3c8566b"
- integrity sha512-r9S/ZyXu/Xu9q1tYlpsLIsa3EeLXXk0VwlxqTcFRfg9EhMW+17kbt9G0NrgCmhGb5vT2hyhJZLfDGx+7+5Uj/w==
-
-yallist@^2.1.2:
- version "2.1.2"
- resolved "https://registry.yarnpkg.com/yallist/-/yallist-2.1.2.tgz#1c11f9218f076089a47dd512f93c6699a6a81d52"
- integrity sha1-HBH5IY8HYImkfdUS+TxmmaaoHVI=
-
-yallist@^3.0.0, yallist@^3.0.2, yallist@^3.0.3:
- version "3.1.1"
- resolved "https://registry.yarnpkg.com/yallist/-/yallist-3.1.1.tgz#dbb7daf9bfd8bac9ab45ebf602b8cbad0d5d08fd"
- integrity sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==
-
-yaml@^1.7.2:
- version "1.7.2"
- resolved "https://registry.yarnpkg.com/yaml/-/yaml-1.7.2.tgz#f26aabf738590ab61efaca502358e48dc9f348b2"
- integrity sha512-qXROVp90sb83XtAoqE8bP9RwAkTTZbugRUTm5YeFCBfNRPEp2YzTeqWiz7m5OORHzEvrA/qcGS8hp/E+MMROYw==
- dependencies:
- "@babel/runtime" "^7.6.3"
diff --git a/index.d.ts b/index.d.ts
index a6cee7f..54d9c58 100644
--- a/index.d.ts
+++ b/index.d.ts
@@ -1,6 +1,6 @@
-import { ReactNode, MouseEventHandler } from 'react';
+import { MouseEventHandler } from 'react';
-export type Options = Partial<{
+export type CTOptions = Partial<{
hideAfter: number;
position:
| 'top-left'
@@ -23,17 +23,24 @@ export type Options = Partial<{
export type HideToastFunction = () => void;
-export type Method = (
- message: string,
- options?: Options,
-) => Promise & { hide: HideToastFunction };
+export type CTReturn = Promise & { hide?: HideToastFunction };
+
+export type CTMethod = (message: string, options?: CTOptions) => CTReturn;
+
+export type CTMainMethod = (message: string, options?: CTOptions & { type: string }) => CTReturn;
+
+export type CToast = CTMainMethod & {
+ success: CTMethod;
+ warn: CTMethod;
+ info: CTMethod;
+ error: CTMethod;
+ loading: CTMethod;
+};
declare namespace cogoToast {
- export const success: Method;
- export const info: Method;
- export const loading: Method;
- export const warn: Method;
- export const error: Method;
+ const success: CTMethod;
+ const info: CTMethod;
+ const loading: CTMethod;
+ const warn: CTMethod;
+ const error: CTMethod;
}
-
-export default cogoToast;
diff --git a/package.json b/package.json
index 242c17d..897de97 100644
--- a/package.json
+++ b/package.json
@@ -1,24 +1,24 @@
{
"name": "cogo-toast",
"description": "Beautiful, Zero Configuration, Toast Messages - Built with React",
- "version": "4.1.3",
+ "version": "4.2.0-beta.0",
"license": "MIT",
"scripts": {
- "setup": "yarn install && cd docs && yarn install",
+ "setup": "pnpm install && cd docs && pnpm install",
"add-contributor": "all-contributors add",
"dev-npm": "rollup -c -w",
- "dev-docs": "cd docs && $npm_execpath run dev",
- "dev": "concurrently --kill-others-on-fail \"$npm_execpath run dev-npm\" \"$npm_execpath run dev-docs\"",
+ "dev-docs": "cd docs && pnpm run dev",
+ "dev": "concurrently --kill-others-on-fail \"pnpm run dev-npm\" \"pnpm run dev-docs\"",
"build": "rollup -c",
"minify-cjs": "uglifyjs --compress --mangle -o dist/index.js -- dist/index.js",
- "minify-es": "terser --compress --mangle -o dist/index.es.js -- dist/index.es.js",
- "minify": "concurrently --kill-others-on-fail \"$npm_execpath run minify-cjs\" \"$npm_execpath run minify-es\"",
- "postbuild": "yarn minify",
- "predeploy": "cd docs && $npm_execpath install && $npm_execpath run deploy",
+ "minify-es": "terser --compress --mangle --comments /$^/ -o dist/index.es.js -- dist/index.es.js",
+ "minify": "concurrently --kill-others-on-fail \"pnpm run minify-cjs\" \"pnpm run minify-es\"",
+ "postbuild": "pnpm run minify",
+ "predeploy": "cd docs && pnpm install && pnpm run deploy",
"deploy": "gh-pages -t -d docs/out"
},
"peerDependencies": {
- "prop-types": "^15.7.2",
+ "prop-types": "^15.6.2",
"react": "^16.8.0",
"react-dom": "^16.8.0"
},
@@ -26,31 +26,45 @@
"@babel/core": "7.7.7",
"@babel/preset-env": "7.7.7",
"@babel/preset-react": "7.7.4",
- "@svgr/rollup": "4.3.3",
- "all-contributors-cli": "^6.11.2",
+ "@rollup/plugin-commonjs": "^11.0.1",
+ "@rollup/plugin-node-resolve": "^7.0.0",
+ "@rollup/plugin-typescript": "^2.1.0",
+ "@rollup/plugin-url": "^4.0.1",
+ "@types/jest": "^24.0.25",
+ "@types/prop-types": "^15.7.3",
+ "@types/react": "^16.9.17",
+ "@types/react-dom": "^16.9.4",
+ "@typescript-eslint/eslint-plugin": "^2.15.0",
+ "@typescript-eslint/parser": "^2.15.0",
+ "@svgr/rollup": "5.0.1",
+ "all-contributors-cli": "^6.12.0",
"babel-eslint": "10.0.3",
"concurrently": "5.0.2",
"cross-env": "6.0.3",
- "eslint": "6.7.2",
- "eslint-config-airbnb": "18.0.1",
- "eslint-plugin-import": "2.19.1",
- "eslint-plugin-jsx-a11y": "6.2.3",
- "eslint-plugin-react": "7.17.0",
- "eslint-plugin-react-hooks": "2.3.0",
- "gh-pages": "2.1.1",
- "prettier": "1.19.1",
- "prettier-eslint-cli": "5.0.0",
+ "eslint": "^6.8.0",
+ "eslint-config-airbnb": "^18.0.1",
+ "eslint-config-prettier": "^6.9.0",
+ "eslint-config-react-app": "^5.1.0",
+ "eslint-plugin-import": "^2.19.1",
+ "eslint-plugin-jest": "^23.3.0",
+ "eslint-plugin-jsx-a11y": "^6.2.3",
+ "eslint-plugin-prettier": "^3.1.2",
+ "eslint-plugin-react": "^7.17.0",
+ "eslint-plugin-react-hooks": "^2.3.0",
+ "gh-pages": "2.2.0",
+ "prettier": "^1.19.1",
+ "prettier-eslint-cli": "^5.0.0",
+ "prop-types": "^15.7.2",
"react": "16.12.0",
"react-dom": "16.12.0",
"react-scripts": "3.3.0",
- "rollup": "1.27.13",
- "rollup-plugin-babel": "4.3.3",
- "rollup-plugin-commonjs": "10.1.0",
- "rollup-plugin-node-resolve": "5.2.0",
- "rollup-plugin-peer-deps-external": "2.2.0",
+ "rollup": "^1.28.0",
+ "rollup-plugin-peer-deps-external": "^2.2.0",
"rollup-plugin-postcss": "2.0.3",
- "rollup-plugin-url": "3.0.1",
- "terser": "4.4.3"
+ "terser": "4.6.1",
+ "typescript": "^3.7.4",
+ "tslib": "^1.10.0",
+ "uglify-js": "^3.7.4"
},
"main": "dist/index.js",
"module": "dist/index.es.js",
diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml
new file mode 100644
index 0000000..c63777f
--- /dev/null
+++ b/pnpm-lock.yaml
@@ -0,0 +1,12817 @@
+devDependencies:
+ '@babel/core': 7.7.7
+ '@babel/preset-env': 7.7.7_@babel+core@7.7.7
+ '@babel/preset-react': 7.7.4_@babel+core@7.7.7
+ '@rollup/plugin-commonjs': 11.0.1_rollup@1.28.0
+ '@rollup/plugin-node-resolve': 7.0.0_rollup@1.28.0
+ '@rollup/plugin-typescript': 2.1.0_ca691995134bf487bfab5c2028cfaede
+ '@rollup/plugin-url': 4.0.1_rollup@1.28.0
+ '@svgr/rollup': 5.0.1
+ '@types/jest': 24.0.25
+ '@types/prop-types': 15.7.3
+ '@types/react': 16.9.17
+ '@types/react-dom': 16.9.4
+ '@typescript-eslint/eslint-plugin': 2.15.0_17206d85cb7d94075d48587653b09c73
+ '@typescript-eslint/parser': 2.15.0_eslint@6.8.0+typescript@3.7.4
+ all-contributors-cli: 6.12.0
+ babel-eslint: 10.0.3_eslint@6.8.0
+ concurrently: 5.0.2
+ cross-env: 6.0.3
+ eslint: 6.8.0
+ eslint-config-airbnb: 18.0.1_05eda38148720206d7c9280ea5caa448
+ eslint-config-prettier: 6.9.0_eslint@6.8.0
+ eslint-config-react-app: 5.1.0_03a734dfb8531efb376efac7b66af4ae
+ eslint-plugin-import: 2.19.1_eslint@6.8.0
+ eslint-plugin-jest: 23.3.0_eslint@6.8.0+typescript@3.7.4
+ eslint-plugin-jsx-a11y: 6.2.3_eslint@6.8.0
+ eslint-plugin-prettier: 3.1.2_eslint@6.8.0+prettier@1.19.1
+ eslint-plugin-react: 7.17.0_eslint@6.8.0
+ eslint-plugin-react-hooks: 2.3.0_eslint@6.8.0
+ gh-pages: 2.2.0
+ prettier: 1.19.1
+ prettier-eslint-cli: 5.0.0
+ prop-types: 15.7.2
+ react: 16.12.0
+ react-dom: 16.12.0_react@16.12.0
+ react-scripts: 3.3.0_typescript@3.7.4
+ rollup: 1.28.0
+ rollup-plugin-peer-deps-external: 2.2.0_rollup@1.28.0
+ rollup-plugin-postcss: 2.0.3
+ terser: 4.6.1
+ tslib: 1.10.0
+ typescript: 3.7.4
+ uglify-js: 3.7.4
+lockfileVersion: 5.1
+packages:
+ /@babel/code-frame/7.5.5:
+ dependencies:
+ '@babel/highlight': 7.5.0
+ dev: true
+ resolution:
+ integrity: sha512-27d4lZoomVyo51VegxI20xZPuSHusqbQag/ztrBC7wegWoQ1nLREPVSKSW8byhTlzTKyNE4ifaTA6lCp7JjpFw==
+ /@babel/core/7.7.4:
+ dependencies:
+ '@babel/code-frame': 7.5.5
+ '@babel/generator': 7.7.7
+ '@babel/helpers': 7.7.4
+ '@babel/parser': 7.7.7
+ '@babel/template': 7.7.4
+ '@babel/traverse': 7.7.4
+ '@babel/types': 7.7.4
+ convert-source-map: 1.7.0
+ debug: 4.1.1
+ json5: 2.1.1
+ lodash: 4.17.15
+ resolve: 1.12.2
+ semver: 5.7.1
+ source-map: 0.5.7
+ dev: true
+ engines:
+ node: '>=6.9.0'
+ resolution:
+ integrity: sha512-+bYbx56j4nYBmpsWtnPUsKW3NdnYxbqyfrP2w9wILBuHzdfIKz9prieZK0DFPyIzkjYVUe4QkusGL07r5pXznQ==
+ /@babel/core/7.7.7:
+ dependencies:
+ '@babel/code-frame': 7.5.5
+ '@babel/generator': 7.7.7
+ '@babel/helpers': 7.7.4
+ '@babel/parser': 7.7.7
+ '@babel/template': 7.7.4
+ '@babel/traverse': 7.7.4
+ '@babel/types': 7.7.4
+ convert-source-map: 1.7.0
+ debug: 4.1.1
+ json5: 2.1.1
+ lodash: 4.17.15
+ resolve: 1.14.2
+ semver: 5.7.1
+ source-map: 0.5.7
+ dev: true
+ engines:
+ node: '>=6.9.0'
+ resolution:
+ integrity: sha512-jlSjuj/7z138NLZALxVgrx13AOtqip42ATZP7+kYl53GvDV6+4dCek1mVUo8z8c8Xnw/mx2q3d9HWh3griuesQ==
+ /@babel/generator/7.7.7:
+ dependencies:
+ '@babel/types': 7.7.4
+ jsesc: 2.5.2
+ lodash: 4.17.15
+ source-map: 0.5.7
+ dev: true
+ resolution:
+ integrity: sha512-/AOIBpHh/JU1l0ZFS4kiRCBnLi6OTHzh0RPk3h9isBxkkqELtQNFi1Vr/tiG9p1yfoUdKVwISuXWQR+hwwM4VQ==
+ /@babel/helper-annotate-as-pure/7.7.4:
+ dependencies:
+ '@babel/types': 7.7.4
+ dev: true
+ resolution:
+ integrity: sha512-2BQmQgECKzYKFPpiycoF9tlb5HA4lrVyAmLLVK177EcQAqjVLciUb2/R+n1boQ9y5ENV3uz2ZqiNw7QMBBw1Og==
+ /@babel/helper-builder-binary-assignment-operator-visitor/7.7.4:
+ dependencies:
+ '@babel/helper-explode-assignable-expression': 7.7.4
+ '@babel/types': 7.7.4
+ dev: true
+ resolution:
+ integrity: sha512-Biq/d/WtvfftWZ9Uf39hbPBYDUo986m5Bb4zhkeYDGUllF43D+nUe5M6Vuo6/8JDK/0YX/uBdeoQpyaNhNugZQ==
+ /@babel/helper-builder-react-jsx/7.7.4:
+ dependencies:
+ '@babel/types': 7.7.4
+ esutils: 2.0.3
+ dev: true
+ resolution:
+ integrity: sha512-kvbfHJNN9dg4rkEM4xn1s8d1/h6TYNvajy9L1wx4qLn9HFg0IkTsQi4rfBe92nxrPUFcMsHoMV+8rU7MJb3fCA==
+ /@babel/helper-call-delegate/7.7.4:
+ dependencies:
+ '@babel/helper-hoist-variables': 7.7.4
+ '@babel/traverse': 7.7.4
+ '@babel/types': 7.7.4
+ dev: true
+ resolution:
+ integrity: sha512-8JH9/B7J7tCYJ2PpWVpw9JhPuEVHztagNVuQAFBVFYluRMlpG7F1CgKEgGeL6KFqcsIa92ZYVj6DSc0XwmN1ZA==
+ /@babel/helper-create-class-features-plugin/7.7.4_@babel+core@7.7.4:
+ dependencies:
+ '@babel/core': 7.7.4
+ '@babel/helper-function-name': 7.7.4
+ '@babel/helper-member-expression-to-functions': 7.7.4
+ '@babel/helper-optimise-call-expression': 7.7.4
+ '@babel/helper-plugin-utils': 7.0.0
+ '@babel/helper-replace-supers': 7.7.4
+ '@babel/helper-split-export-declaration': 7.7.4
+ dev: true
+ peerDependencies:
+ '@babel/core': ^7.0.0
+ resolution:
+ integrity: sha512-l+OnKACG4uiDHQ/aJT8dwpR+LhCJALxL0mJ6nzjB25e5IPwqV1VOsY7ah6UB1DG+VOXAIMtuC54rFJGiHkxjgA==
+ /@babel/helper-create-regexp-features-plugin/7.7.4_@babel+core@7.7.4:
+ dependencies:
+ '@babel/core': 7.7.4
+ '@babel/helper-regex': 7.5.5
+ regexpu-core: 4.6.0
+ dev: true
+ peerDependencies:
+ '@babel/core': ^7.0.0
+ resolution:
+ integrity: sha512-Mt+jBKaxL0zfOIWrfQpnfYCN7/rS6GKx6CCCfuoqVVd+17R8zNDlzVYmIi9qyb2wOk002NsmSTDymkIygDUH7A==
+ /@babel/helper-create-regexp-features-plugin/7.7.4_@babel+core@7.7.7:
+ dependencies:
+ '@babel/core': 7.7.7
+ '@babel/helper-regex': 7.5.5
+ regexpu-core: 4.6.0
+ dev: true
+ peerDependencies:
+ '@babel/core': ^7.0.0
+ resolution:
+ integrity: sha512-Mt+jBKaxL0zfOIWrfQpnfYCN7/rS6GKx6CCCfuoqVVd+17R8zNDlzVYmIi9qyb2wOk002NsmSTDymkIygDUH7A==
+ /@babel/helper-define-map/7.7.4:
+ dependencies:
+ '@babel/helper-function-name': 7.7.4
+ '@babel/types': 7.7.4
+ lodash: 4.17.15
+ dev: true
+ resolution:
+ integrity: sha512-v5LorqOa0nVQUvAUTUF3KPastvUt/HzByXNamKQ6RdJRTV7j8rLL+WB5C/MzzWAwOomxDhYFb1wLLxHqox86lg==
+ /@babel/helper-explode-assignable-expression/7.7.4:
+ dependencies:
+ '@babel/traverse': 7.7.4
+ '@babel/types': 7.7.4
+ dev: true
+ resolution:
+ integrity: sha512-2/SicuFrNSXsZNBxe5UGdLr+HZg+raWBLE9vC98bdYOKX/U6PY0mdGlYUJdtTDPSU0Lw0PNbKKDpwYHJLn2jLg==
+ /@babel/helper-function-name/7.7.4:
+ dependencies:
+ '@babel/helper-get-function-arity': 7.7.4
+ '@babel/template': 7.7.4
+ '@babel/types': 7.7.4
+ dev: true
+ resolution:
+ integrity: sha512-AnkGIdiBhEuiwdoMnKm7jfPfqItZhgRaZfMg1XX3bS25INOnLPjPG1Ppnajh8eqgt5kPJnfqrRHqFqmjKDZLzQ==
+ /@babel/helper-get-function-arity/7.7.4:
+ dependencies:
+ '@babel/types': 7.7.4
+ dev: true
+ resolution:
+ integrity: sha512-QTGKEdCkjgzgfJ3bAyRwF4yyT3pg+vDgan8DSivq1eS0gwi+KGKE5x8kRcbeFTb/673mkO5SN1IZfmCfA5o+EA==
+ /@babel/helper-hoist-variables/7.7.4:
+ dependencies:
+ '@babel/types': 7.7.4
+ dev: true
+ resolution:
+ integrity: sha512-wQC4xyvc1Jo/FnLirL6CEgPgPCa8M74tOdjWpRhQYapz5JC7u3NYU1zCVoVAGCE3EaIP9T1A3iW0WLJ+reZlpQ==
+ /@babel/helper-member-expression-to-functions/7.7.4:
+ dependencies:
+ '@babel/types': 7.7.4
+ dev: true
+ resolution:
+ integrity: sha512-9KcA1X2E3OjXl/ykfMMInBK+uVdfIVakVe7W7Lg3wfXUNyS3Q1HWLFRwZIjhqiCGbslummPDnmb7vIekS0C1vw==
+ /@babel/helper-module-imports/7.7.4:
+ dependencies:
+ '@babel/types': 7.7.4
+ dev: true
+ resolution:
+ integrity: sha512-dGcrX6K9l8258WFjyDLJwuVKxR4XZfU0/vTUgOQYWEnRD8mgr+p4d6fCUMq/ys0h4CCt/S5JhbvtyErjWouAUQ==
+ /@babel/helper-module-transforms/7.7.5:
+ dependencies:
+ '@babel/helper-module-imports': 7.7.4
+ '@babel/helper-simple-access': 7.7.4
+ '@babel/helper-split-export-declaration': 7.7.4
+ '@babel/template': 7.7.4
+ '@babel/types': 7.7.4
+ lodash: 4.17.15
+ dev: true
+ resolution:
+ integrity: sha512-A7pSxyJf1gN5qXVcidwLWydjftUN878VkalhXX5iQDuGyiGK3sOrrKKHF4/A4fwHtnsotv/NipwAeLzY4KQPvw==
+ /@babel/helper-optimise-call-expression/7.7.4:
+ dependencies:
+ '@babel/types': 7.7.4
+ dev: true
+ resolution:
+ integrity: sha512-VB7gWZ2fDkSuqW6b1AKXkJWO5NyNI3bFL/kK79/30moK57blr6NbH8xcl2XcKCwOmJosftWunZqfO84IGq3ZZg==
+ /@babel/helper-plugin-utils/7.0.0:
+ dev: true
+ resolution:
+ integrity: sha512-CYAOUCARwExnEixLdB6sDm2dIJ/YgEAKDM1MOeMeZu9Ld/bDgVo8aiWrXwcY7OBh+1Ea2uUcVRcxKk0GJvW7QA==
+ /@babel/helper-regex/7.5.5:
+ dependencies:
+ lodash: 4.17.15
+ dev: true
+ resolution:
+ integrity: sha512-CkCYQLkfkiugbRDO8eZn6lRuR8kzZoGXCg3149iTk5se7g6qykSpy3+hELSwquhu+TgHn8nkLiBwHvNX8Hofcw==
+ /@babel/helper-remap-async-to-generator/7.7.4:
+ dependencies:
+ '@babel/helper-annotate-as-pure': 7.7.4
+ '@babel/helper-wrap-function': 7.7.4
+ '@babel/template': 7.7.4
+ '@babel/traverse': 7.7.4
+ '@babel/types': 7.7.4
+ dev: true
+ resolution:
+ integrity: sha512-Sk4xmtVdM9sA/jCI80f+KS+Md+ZHIpjuqmYPk1M7F/upHou5e4ReYmExAiu6PVe65BhJPZA2CY9x9k4BqE5klw==
+ /@babel/helper-replace-supers/7.7.4:
+ dependencies:
+ '@babel/helper-member-expression-to-functions': 7.7.4
+ '@babel/helper-optimise-call-expression': 7.7.4
+ '@babel/traverse': 7.7.4
+ '@babel/types': 7.7.4
+ dev: true
+ resolution:
+ integrity: sha512-pP0tfgg9hsZWo5ZboYGuBn/bbYT/hdLPVSS4NMmiRJdwWhP0IznPwN9AE1JwyGsjSPLC364I0Qh5p+EPkGPNpg==
+ /@babel/helper-simple-access/7.7.4:
+ dependencies:
+ '@babel/template': 7.7.4
+ '@babel/types': 7.7.4
+ dev: true
+ resolution:
+ integrity: sha512-zK7THeEXfan7UlWsG2A6CI/L9jVnI5+xxKZOdej39Y0YtDYKx9raHk5F2EtK9K8DHRTihYwg20ADt9S36GR78A==
+ /@babel/helper-split-export-declaration/7.7.4:
+ dependencies:
+ '@babel/types': 7.7.4
+ dev: true
+ resolution:
+ integrity: sha512-guAg1SXFcVr04Guk9eq0S4/rWS++sbmyqosJzVs8+1fH5NI+ZcmkaSkc7dmtAFbHFva6yRJnjW3yAcGxjueDug==
+ /@babel/helper-wrap-function/7.7.4:
+ dependencies:
+ '@babel/helper-function-name': 7.7.4
+ '@babel/template': 7.7.4
+ '@babel/traverse': 7.7.4
+ '@babel/types': 7.7.4
+ dev: true
+ resolution:
+ integrity: sha512-VsfzZt6wmsocOaVU0OokwrIytHND55yvyT4BPB9AIIgwr8+x7617hetdJTsuGwygN5RC6mxA9EJztTjuwm2ofg==
+ /@babel/helpers/7.7.4:
+ dependencies:
+ '@babel/template': 7.7.4
+ '@babel/traverse': 7.7.4
+ '@babel/types': 7.7.4
+ dev: true
+ resolution:
+ integrity: sha512-ak5NGZGJ6LV85Q1Zc9gn2n+ayXOizryhjSUBTdu5ih1tlVCJeuQENzc4ItyCVhINVXvIT/ZQ4mheGIsfBkpskg==
+ /@babel/highlight/7.5.0:
+ dependencies:
+ chalk: 2.4.2
+ esutils: 2.0.3
+ js-tokens: 4.0.0
+ dev: true
+ resolution:
+ integrity: sha512-7dV4eu9gBxoM0dAnj/BCFDW9LFU0zvTrkq0ugM7pnHEgguOEeOz1so2ZghEdzviYzQEED0r4EAgpsBChKy1TRQ==
+ /@babel/parser/7.7.7:
+ dev: true
+ engines:
+ node: '>=6.0.0'
+ hasBin: true
+ resolution:
+ integrity: sha512-WtTZMZAZLbeymhkd/sEaPD8IQyGAhmuTuvTzLiCFM7iXiVdY0gc0IaI+cW0fh1BnSMbJSzXX6/fHllgHKwHhXw==
+ /@babel/plugin-proposal-async-generator-functions/7.7.4_@babel+core@7.7.4:
+ dependencies:
+ '@babel/core': 7.7.4
+ '@babel/helper-plugin-utils': 7.0.0
+ '@babel/helper-remap-async-to-generator': 7.7.4
+ '@babel/plugin-syntax-async-generators': 7.7.4_@babel+core@7.7.4
+ dev: true
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ resolution:
+ integrity: sha512-1ypyZvGRXriY/QP668+s8sFr2mqinhkRDMPSQLNghCQE+GAkFtp+wkHVvg2+Hdki8gwP+NFzJBJ/N1BfzCCDEw==
+ /@babel/plugin-proposal-async-generator-functions/7.7.4_@babel+core@7.7.7:
+ dependencies:
+ '@babel/core': 7.7.7
+ '@babel/helper-plugin-utils': 7.0.0
+ '@babel/helper-remap-async-to-generator': 7.7.4
+ '@babel/plugin-syntax-async-generators': 7.7.4_@babel+core@7.7.7
+ dev: true
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ resolution:
+ integrity: sha512-1ypyZvGRXriY/QP668+s8sFr2mqinhkRDMPSQLNghCQE+GAkFtp+wkHVvg2+Hdki8gwP+NFzJBJ/N1BfzCCDEw==
+ /@babel/plugin-proposal-class-properties/7.7.4_@babel+core@7.7.4:
+ dependencies:
+ '@babel/core': 7.7.4
+ '@babel/helper-create-class-features-plugin': 7.7.4_@babel+core@7.7.4
+ '@babel/helper-plugin-utils': 7.0.0
+ dev: true
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ resolution:
+ integrity: sha512-EcuXeV4Hv1X3+Q1TsuOmyyxeTRiSqurGJ26+I/FW1WbymmRRapVORm6x1Zl3iDIHyRxEs+VXWp6qnlcfcJSbbw==
+ /@babel/plugin-proposal-decorators/7.7.4_@babel+core@7.7.4:
+ dependencies:
+ '@babel/core': 7.7.4
+ '@babel/helper-create-class-features-plugin': 7.7.4_@babel+core@7.7.4
+ '@babel/helper-plugin-utils': 7.0.0
+ '@babel/plugin-syntax-decorators': 7.7.4_@babel+core@7.7.4
+ dev: true
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ resolution:
+ integrity: sha512-GftcVDcLCwVdzKmwOBDjATd548+IE+mBo7ttgatqNDR7VG7GqIuZPtRWlMLHbhTXhcnFZiGER8iIYl1n/imtsg==
+ /@babel/plugin-proposal-dynamic-import/7.7.4_@babel+core@7.7.4:
+ dependencies:
+ '@babel/core': 7.7.4
+ '@babel/helper-plugin-utils': 7.0.0
+ '@babel/plugin-syntax-dynamic-import': 7.7.4_@babel+core@7.7.4
+ dev: true
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ resolution:
+ integrity: sha512-StH+nGAdO6qDB1l8sZ5UBV8AC3F2VW2I8Vfld73TMKyptMU9DY5YsJAS8U81+vEtxcH3Y/La0wG0btDrhpnhjQ==
+ /@babel/plugin-proposal-dynamic-import/7.7.4_@babel+core@7.7.7:
+ dependencies:
+ '@babel/core': 7.7.7
+ '@babel/helper-plugin-utils': 7.0.0
+ '@babel/plugin-syntax-dynamic-import': 7.7.4_@babel+core@7.7.7
+ dev: true
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ resolution:
+ integrity: sha512-StH+nGAdO6qDB1l8sZ5UBV8AC3F2VW2I8Vfld73TMKyptMU9DY5YsJAS8U81+vEtxcH3Y/La0wG0btDrhpnhjQ==
+ /@babel/plugin-proposal-json-strings/7.7.4_@babel+core@7.7.4:
+ dependencies:
+ '@babel/core': 7.7.4
+ '@babel/helper-plugin-utils': 7.0.0
+ '@babel/plugin-syntax-json-strings': 7.7.4_@babel+core@7.7.4
+ dev: true
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ resolution:
+ integrity: sha512-wQvt3akcBTfLU/wYoqm/ws7YOAQKu8EVJEvHip/mzkNtjaclQoCCIqKXFP5/eyfnfbQCDV3OLRIK3mIVyXuZlw==
+ /@babel/plugin-proposal-json-strings/7.7.4_@babel+core@7.7.7:
+ dependencies:
+ '@babel/core': 7.7.7
+ '@babel/helper-plugin-utils': 7.0.0
+ '@babel/plugin-syntax-json-strings': 7.7.4_@babel+core@7.7.7
+ dev: true
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ resolution:
+ integrity: sha512-wQvt3akcBTfLU/wYoqm/ws7YOAQKu8EVJEvHip/mzkNtjaclQoCCIqKXFP5/eyfnfbQCDV3OLRIK3mIVyXuZlw==
+ /@babel/plugin-proposal-nullish-coalescing-operator/7.7.4_@babel+core@7.7.4:
+ dependencies:
+ '@babel/core': 7.7.4
+ '@babel/helper-plugin-utils': 7.0.0
+ '@babel/plugin-syntax-nullish-coalescing-operator': 7.7.4_@babel+core@7.7.4
+ dev: true
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ resolution:
+ integrity: sha512-TbYHmr1Gl1UC7Vo2HVuj/Naci5BEGNZ0AJhzqD2Vpr6QPFWpUmBRLrIDjedzx7/CShq0bRDS2gI4FIs77VHLVQ==
+ /@babel/plugin-proposal-numeric-separator/7.7.4_@babel+core@7.7.4:
+ dependencies:
+ '@babel/core': 7.7.4
+ '@babel/helper-plugin-utils': 7.0.0
+ '@babel/plugin-syntax-numeric-separator': 7.7.4_@babel+core@7.7.4
+ dev: true
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ resolution:
+ integrity: sha512-CG605v7lLpVgVldSY6kxsN9ui1DxFOyepBfuX2AzU2TNriMAYApoU55mrGw9Jr4TlrTzPCG10CL8YXyi+E/iPw==
+ /@babel/plugin-proposal-object-rest-spread/7.7.4_@babel+core@7.7.4:
+ dependencies:
+ '@babel/core': 7.7.4
+ '@babel/helper-plugin-utils': 7.0.0
+ '@babel/plugin-syntax-object-rest-spread': 7.7.4_@babel+core@7.7.4
+ dev: true
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ resolution:
+ integrity: sha512-rnpnZR3/iWKmiQyJ3LKJpSwLDcX/nSXhdLk4Aq/tXOApIvyu7qoabrige0ylsAJffaUC51WiBu209Q0U+86OWQ==
+ /@babel/plugin-proposal-object-rest-spread/7.7.7_@babel+core@7.7.7:
+ dependencies:
+ '@babel/core': 7.7.7
+ '@babel/helper-plugin-utils': 7.0.0
+ '@babel/plugin-syntax-object-rest-spread': 7.7.4_@babel+core@7.7.7
+ dev: true
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ resolution:
+ integrity: sha512-3qp9I8lelgzNedI3hrhkvhaEYree6+WHnyA/q4Dza9z7iEIs1eyhWyJnetk3jJ69RT0AT4G0UhEGwyGFJ7GUuQ==
+ /@babel/plugin-proposal-optional-catch-binding/7.7.4_@babel+core@7.7.4:
+ dependencies:
+ '@babel/core': 7.7.4
+ '@babel/helper-plugin-utils': 7.0.0
+ '@babel/plugin-syntax-optional-catch-binding': 7.7.4_@babel+core@7.7.4
+ dev: true
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ resolution:
+ integrity: sha512-DyM7U2bnsQerCQ+sejcTNZh8KQEUuC3ufzdnVnSiUv/qoGJp2Z3hanKL18KDhsBT5Wj6a7CMT5mdyCNJsEaA9w==
+ /@babel/plugin-proposal-optional-catch-binding/7.7.4_@babel+core@7.7.7:
+ dependencies:
+ '@babel/core': 7.7.7
+ '@babel/helper-plugin-utils': 7.0.0
+ '@babel/plugin-syntax-optional-catch-binding': 7.7.4_@babel+core@7.7.7
+ dev: true
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ resolution:
+ integrity: sha512-DyM7U2bnsQerCQ+sejcTNZh8KQEUuC3ufzdnVnSiUv/qoGJp2Z3hanKL18KDhsBT5Wj6a7CMT5mdyCNJsEaA9w==
+ /@babel/plugin-proposal-optional-chaining/7.7.4_@babel+core@7.7.4:
+ dependencies:
+ '@babel/core': 7.7.4
+ '@babel/helper-plugin-utils': 7.0.0
+ '@babel/plugin-syntax-optional-chaining': 7.7.4_@babel+core@7.7.4
+ dev: true
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ resolution:
+ integrity: sha512-JmgaS+ygAWDR/STPe3/7y0lNlHgS+19qZ9aC06nYLwQ/XB7c0q5Xs+ksFU3EDnp9EiEsO0dnRAOKeyLHTZuW3A==
+ /@babel/plugin-proposal-unicode-property-regex/7.7.7_@babel+core@7.7.4:
+ dependencies:
+ '@babel/core': 7.7.4
+ '@babel/helper-create-regexp-features-plugin': 7.7.4_@babel+core@7.7.4
+ '@babel/helper-plugin-utils': 7.0.0
+ dev: true
+ engines:
+ node: '>=4'
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ resolution:
+ integrity: sha512-80PbkKyORBUVm1fbTLrHpYdJxMThzM1UqFGh0ALEhO9TYbG86Ah9zQYAB/84axz2vcxefDLdZwWwZNlYARlu9w==
+ /@babel/plugin-proposal-unicode-property-regex/7.7.7_@babel+core@7.7.7:
+ dependencies:
+ '@babel/core': 7.7.7
+ '@babel/helper-create-regexp-features-plugin': 7.7.4_@babel+core@7.7.7
+ '@babel/helper-plugin-utils': 7.0.0
+ dev: true
+ engines:
+ node: '>=4'
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ resolution:
+ integrity: sha512-80PbkKyORBUVm1fbTLrHpYdJxMThzM1UqFGh0ALEhO9TYbG86Ah9zQYAB/84axz2vcxefDLdZwWwZNlYARlu9w==
+ /@babel/plugin-syntax-async-generators/7.7.4_@babel+core@7.7.4:
+ dependencies:
+ '@babel/core': 7.7.4
+ '@babel/helper-plugin-utils': 7.0.0
+ dev: true
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ resolution:
+ integrity: sha512-Li4+EjSpBgxcsmeEF8IFcfV/+yJGxHXDirDkEoyFjumuwbmfCVHUt0HuowD/iGM7OhIRyXJH9YXxqiH6N815+g==
+ /@babel/plugin-syntax-async-generators/7.7.4_@babel+core@7.7.7:
+ dependencies:
+ '@babel/core': 7.7.7
+ '@babel/helper-plugin-utils': 7.0.0
+ dev: true
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ resolution:
+ integrity: sha512-Li4+EjSpBgxcsmeEF8IFcfV/+yJGxHXDirDkEoyFjumuwbmfCVHUt0HuowD/iGM7OhIRyXJH9YXxqiH6N815+g==
+ /@babel/plugin-syntax-decorators/7.7.4_@babel+core@7.7.4:
+ dependencies:
+ '@babel/core': 7.7.4
+ '@babel/helper-plugin-utils': 7.0.0
+ dev: true
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ resolution:
+ integrity: sha512-0oNLWNH4k5ZbBVfAwiTU53rKFWIeTh6ZlaWOXWJc4ywxs0tjz5fc3uZ6jKAnZSxN98eXVgg7bJIuzjX+3SXY+A==
+ /@babel/plugin-syntax-dynamic-import/7.7.4_@babel+core@7.7.4:
+ dependencies:
+ '@babel/core': 7.7.4
+ '@babel/helper-plugin-utils': 7.0.0
+ dev: true
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ resolution:
+ integrity: sha512-jHQW0vbRGvwQNgyVxwDh4yuXu4bH1f5/EICJLAhl1SblLs2CDhrsmCk+v5XLdE9wxtAFRyxx+P//Iw+a5L/tTg==
+ /@babel/plugin-syntax-dynamic-import/7.7.4_@babel+core@7.7.7:
+ dependencies:
+ '@babel/core': 7.7.7
+ '@babel/helper-plugin-utils': 7.0.0
+ dev: true
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ resolution:
+ integrity: sha512-jHQW0vbRGvwQNgyVxwDh4yuXu4bH1f5/EICJLAhl1SblLs2CDhrsmCk+v5XLdE9wxtAFRyxx+P//Iw+a5L/tTg==
+ /@babel/plugin-syntax-flow/7.7.4_@babel+core@7.7.4:
+ dependencies:
+ '@babel/core': 7.7.4
+ '@babel/helper-plugin-utils': 7.0.0
+ dev: true
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ resolution:
+ integrity: sha512-2AMAWl5PsmM5KPkB22cvOkUyWk6MjUaqhHNU5nSPUl/ns3j5qLfw2SuYP5RbVZ0tfLvePr4zUScbICtDP2CUNw==
+ /@babel/plugin-syntax-json-strings/7.7.4_@babel+core@7.7.4:
+ dependencies:
+ '@babel/core': 7.7.4
+ '@babel/helper-plugin-utils': 7.0.0
+ dev: true
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ resolution:
+ integrity: sha512-QpGupahTQW1mHRXddMG5srgpHWqRLwJnJZKXTigB9RPFCCGbDGCgBeM/iC82ICXp414WeYx/tD54w7M2qRqTMg==
+ /@babel/plugin-syntax-json-strings/7.7.4_@babel+core@7.7.7:
+ dependencies:
+ '@babel/core': 7.7.7
+ '@babel/helper-plugin-utils': 7.0.0
+ dev: true
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ resolution:
+ integrity: sha512-QpGupahTQW1mHRXddMG5srgpHWqRLwJnJZKXTigB9RPFCCGbDGCgBeM/iC82ICXp414WeYx/tD54w7M2qRqTMg==
+ /@babel/plugin-syntax-jsx/7.7.4_@babel+core@7.7.4:
+ dependencies:
+ '@babel/core': 7.7.4
+ '@babel/helper-plugin-utils': 7.0.0
+ dev: true
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ resolution:
+ integrity: sha512-wuy6fiMe9y7HeZBWXYCGt2RGxZOj0BImZ9EyXJVnVGBKO/Br592rbR3rtIQn0eQhAk9vqaKP5n8tVqEFBQMfLg==
+ /@babel/plugin-syntax-jsx/7.7.4_@babel+core@7.7.7:
+ dependencies:
+ '@babel/core': 7.7.7
+ '@babel/helper-plugin-utils': 7.0.0
+ dev: true
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ resolution:
+ integrity: sha512-wuy6fiMe9y7HeZBWXYCGt2RGxZOj0BImZ9EyXJVnVGBKO/Br592rbR3rtIQn0eQhAk9vqaKP5n8tVqEFBQMfLg==
+ /@babel/plugin-syntax-nullish-coalescing-operator/7.7.4_@babel+core@7.7.4:
+ dependencies:
+ '@babel/core': 7.7.4
+ '@babel/helper-plugin-utils': 7.0.0
+ dev: true
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ resolution:
+ integrity: sha512-XKh/yIRPiQTOeBg0QJjEus5qiSKucKAiApNtO1psqG7D17xmE+X2i5ZqBEuSvo0HRuyPaKaSN/Gy+Ha9KFQolw==
+ /@babel/plugin-syntax-numeric-separator/7.7.4_@babel+core@7.7.4:
+ dependencies:
+ '@babel/core': 7.7.4
+ '@babel/helper-plugin-utils': 7.0.0
+ dev: true
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ resolution:
+ integrity: sha512-vmlUUBlLuFnbpaR+1kKIdo62xQEN+THWbtAHSEilo+0rHl2dKKCn6GLUVKpI848wL/T0ZPQgAy8asRJ9yYEjog==
+ /@babel/plugin-syntax-object-rest-spread/7.7.4_@babel+core@7.7.4:
+ dependencies:
+ '@babel/core': 7.7.4
+ '@babel/helper-plugin-utils': 7.0.0
+ dev: true
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ resolution:
+ integrity: sha512-mObR+r+KZq0XhRVS2BrBKBpr5jqrqzlPvS9C9vuOf5ilSwzloAl7RPWLrgKdWS6IreaVrjHxTjtyqFiOisaCwg==
+ /@babel/plugin-syntax-object-rest-spread/7.7.4_@babel+core@7.7.7:
+ dependencies:
+ '@babel/core': 7.7.7
+ '@babel/helper-plugin-utils': 7.0.0
+ dev: true
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ resolution:
+ integrity: sha512-mObR+r+KZq0XhRVS2BrBKBpr5jqrqzlPvS9C9vuOf5ilSwzloAl7RPWLrgKdWS6IreaVrjHxTjtyqFiOisaCwg==
+ /@babel/plugin-syntax-optional-catch-binding/7.7.4_@babel+core@7.7.4:
+ dependencies:
+ '@babel/core': 7.7.4
+ '@babel/helper-plugin-utils': 7.0.0
+ dev: true
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ resolution:
+ integrity: sha512-4ZSuzWgFxqHRE31Glu+fEr/MirNZOMYmD/0BhBWyLyOOQz/gTAl7QmWm2hX1QxEIXsr2vkdlwxIzTyiYRC4xcQ==
+ /@babel/plugin-syntax-optional-catch-binding/7.7.4_@babel+core@7.7.7:
+ dependencies:
+ '@babel/core': 7.7.7
+ '@babel/helper-plugin-utils': 7.0.0
+ dev: true
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ resolution:
+ integrity: sha512-4ZSuzWgFxqHRE31Glu+fEr/MirNZOMYmD/0BhBWyLyOOQz/gTAl7QmWm2hX1QxEIXsr2vkdlwxIzTyiYRC4xcQ==
+ /@babel/plugin-syntax-optional-chaining/7.7.4_@babel+core@7.7.4:
+ dependencies:
+ '@babel/core': 7.7.4
+ '@babel/helper-plugin-utils': 7.0.0
+ dev: true
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ resolution:
+ integrity: sha512-2MqYD5WjZSbJdUagnJvIdSfkb/ucOC9/1fRJxm7GAxY6YQLWlUvkfxoNbUPcPLHJyetKUDQ4+yyuUyAoc0HriA==
+ /@babel/plugin-syntax-top-level-await/7.7.4_@babel+core@7.7.4:
+ dependencies:
+ '@babel/core': 7.7.4
+ '@babel/helper-plugin-utils': 7.0.0
+ dev: true
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ resolution:
+ integrity: sha512-wdsOw0MvkL1UIgiQ/IFr3ETcfv1xb8RMM0H9wbiDyLaJFyiDg5oZvDLCXosIXmFeIlweML5iOBXAkqddkYNizg==
+ /@babel/plugin-syntax-top-level-await/7.7.4_@babel+core@7.7.7:
+ dependencies:
+ '@babel/core': 7.7.7
+ '@babel/helper-plugin-utils': 7.0.0
+ dev: true
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ resolution:
+ integrity: sha512-wdsOw0MvkL1UIgiQ/IFr3ETcfv1xb8RMM0H9wbiDyLaJFyiDg5oZvDLCXosIXmFeIlweML5iOBXAkqddkYNizg==
+ /@babel/plugin-syntax-typescript/7.7.4_@babel+core@7.7.4:
+ dependencies:
+ '@babel/core': 7.7.4
+ '@babel/helper-plugin-utils': 7.0.0
+ dev: true
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ resolution:
+ integrity: sha512-77blgY18Hud4NM1ggTA8xVT/dBENQf17OpiToSa2jSmEY3fWXD2jwrdVlO4kq5yzUTeF15WSQ6b4fByNvJcjpQ==
+ /@babel/plugin-transform-arrow-functions/7.7.4_@babel+core@7.7.4:
+ dependencies:
+ '@babel/core': 7.7.4
+ '@babel/helper-plugin-utils': 7.0.0
+ dev: true
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ resolution:
+ integrity: sha512-zUXy3e8jBNPiffmqkHRNDdZM2r8DWhCB7HhcoyZjiK1TxYEluLHAvQuYnTT+ARqRpabWqy/NHkO6e3MsYB5YfA==
+ /@babel/plugin-transform-arrow-functions/7.7.4_@babel+core@7.7.7:
+ dependencies:
+ '@babel/core': 7.7.7
+ '@babel/helper-plugin-utils': 7.0.0
+ dev: true
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ resolution:
+ integrity: sha512-zUXy3e8jBNPiffmqkHRNDdZM2r8DWhCB7HhcoyZjiK1TxYEluLHAvQuYnTT+ARqRpabWqy/NHkO6e3MsYB5YfA==
+ /@babel/plugin-transform-async-to-generator/7.7.4_@babel+core@7.7.4:
+ dependencies:
+ '@babel/core': 7.7.4
+ '@babel/helper-module-imports': 7.7.4
+ '@babel/helper-plugin-utils': 7.0.0
+ '@babel/helper-remap-async-to-generator': 7.7.4
+ dev: true
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ resolution:
+ integrity: sha512-zpUTZphp5nHokuy8yLlyafxCJ0rSlFoSHypTUWgpdwoDXWQcseaect7cJ8Ppk6nunOM6+5rPMkod4OYKPR5MUg==
+ /@babel/plugin-transform-async-to-generator/7.7.4_@babel+core@7.7.7:
+ dependencies:
+ '@babel/core': 7.7.7
+ '@babel/helper-module-imports': 7.7.4
+ '@babel/helper-plugin-utils': 7.0.0
+ '@babel/helper-remap-async-to-generator': 7.7.4
+ dev: true
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ resolution:
+ integrity: sha512-zpUTZphp5nHokuy8yLlyafxCJ0rSlFoSHypTUWgpdwoDXWQcseaect7cJ8Ppk6nunOM6+5rPMkod4OYKPR5MUg==
+ /@babel/plugin-transform-block-scoped-functions/7.7.4_@babel+core@7.7.4:
+ dependencies:
+ '@babel/core': 7.7.4
+ '@babel/helper-plugin-utils': 7.0.0
+ dev: true
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ resolution:
+ integrity: sha512-kqtQzwtKcpPclHYjLK//3lH8OFsCDuDJBaFhVwf8kqdnF6MN4l618UDlcA7TfRs3FayrHj+svYnSX8MC9zmUyQ==
+ /@babel/plugin-transform-block-scoped-functions/7.7.4_@babel+core@7.7.7:
+ dependencies:
+ '@babel/core': 7.7.7
+ '@babel/helper-plugin-utils': 7.0.0
+ dev: true
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ resolution:
+ integrity: sha512-kqtQzwtKcpPclHYjLK//3lH8OFsCDuDJBaFhVwf8kqdnF6MN4l618UDlcA7TfRs3FayrHj+svYnSX8MC9zmUyQ==
+ /@babel/plugin-transform-block-scoping/7.7.4_@babel+core@7.7.4:
+ dependencies:
+ '@babel/core': 7.7.4
+ '@babel/helper-plugin-utils': 7.0.0
+ lodash: 4.17.15
+ dev: true
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ resolution:
+ integrity: sha512-2VBe9u0G+fDt9B5OV5DQH4KBf5DoiNkwFKOz0TCvBWvdAN2rOykCTkrL+jTLxfCAm76l9Qo5OqL7HBOx2dWggg==
+ /@babel/plugin-transform-block-scoping/7.7.4_@babel+core@7.7.7:
+ dependencies:
+ '@babel/core': 7.7.7
+ '@babel/helper-plugin-utils': 7.0.0
+ lodash: 4.17.15
+ dev: true
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ resolution:
+ integrity: sha512-2VBe9u0G+fDt9B5OV5DQH4KBf5DoiNkwFKOz0TCvBWvdAN2rOykCTkrL+jTLxfCAm76l9Qo5OqL7HBOx2dWggg==
+ /@babel/plugin-transform-classes/7.7.4_@babel+core@7.7.4:
+ dependencies:
+ '@babel/core': 7.7.4
+ '@babel/helper-annotate-as-pure': 7.7.4
+ '@babel/helper-define-map': 7.7.4
+ '@babel/helper-function-name': 7.7.4
+ '@babel/helper-optimise-call-expression': 7.7.4
+ '@babel/helper-plugin-utils': 7.0.0
+ '@babel/helper-replace-supers': 7.7.4
+ '@babel/helper-split-export-declaration': 7.7.4
+ globals: 11.12.0
+ dev: true
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ resolution:
+ integrity: sha512-sK1mjWat7K+buWRuImEzjNf68qrKcrddtpQo3swi9j7dUcG6y6R6+Di039QN2bD1dykeswlagupEmpOatFHHUg==
+ /@babel/plugin-transform-classes/7.7.4_@babel+core@7.7.7:
+ dependencies:
+ '@babel/core': 7.7.7
+ '@babel/helper-annotate-as-pure': 7.7.4
+ '@babel/helper-define-map': 7.7.4
+ '@babel/helper-function-name': 7.7.4
+ '@babel/helper-optimise-call-expression': 7.7.4
+ '@babel/helper-plugin-utils': 7.0.0
+ '@babel/helper-replace-supers': 7.7.4
+ '@babel/helper-split-export-declaration': 7.7.4
+ globals: 11.12.0
+ dev: true
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ resolution:
+ integrity: sha512-sK1mjWat7K+buWRuImEzjNf68qrKcrddtpQo3swi9j7dUcG6y6R6+Di039QN2bD1dykeswlagupEmpOatFHHUg==
+ /@babel/plugin-transform-computed-properties/7.7.4_@babel+core@7.7.4:
+ dependencies:
+ '@babel/core': 7.7.4
+ '@babel/helper-plugin-utils': 7.0.0
+ dev: true
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ resolution:
+ integrity: sha512-bSNsOsZnlpLLyQew35rl4Fma3yKWqK3ImWMSC/Nc+6nGjC9s5NFWAer1YQ899/6s9HxO2zQC1WoFNfkOqRkqRQ==
+ /@babel/plugin-transform-computed-properties/7.7.4_@babel+core@7.7.7:
+ dependencies:
+ '@babel/core': 7.7.7
+ '@babel/helper-plugin-utils': 7.0.0
+ dev: true
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ resolution:
+ integrity: sha512-bSNsOsZnlpLLyQew35rl4Fma3yKWqK3ImWMSC/Nc+6nGjC9s5NFWAer1YQ899/6s9HxO2zQC1WoFNfkOqRkqRQ==
+ /@babel/plugin-transform-destructuring/7.7.4_@babel+core@7.7.4:
+ dependencies:
+ '@babel/core': 7.7.4
+ '@babel/helper-plugin-utils': 7.0.0
+ dev: true
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ resolution:
+ integrity: sha512-4jFMXI1Cu2aXbcXXl8Lr6YubCn6Oc7k9lLsu8v61TZh+1jny2BWmdtvY9zSUlLdGUvcy9DMAWyZEOqjsbeg/wA==
+ /@babel/plugin-transform-destructuring/7.7.4_@babel+core@7.7.7:
+ dependencies:
+ '@babel/core': 7.7.7
+ '@babel/helper-plugin-utils': 7.0.0
+ dev: true
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ resolution:
+ integrity: sha512-4jFMXI1Cu2aXbcXXl8Lr6YubCn6Oc7k9lLsu8v61TZh+1jny2BWmdtvY9zSUlLdGUvcy9DMAWyZEOqjsbeg/wA==
+ /@babel/plugin-transform-dotall-regex/7.7.7_@babel+core@7.7.4:
+ dependencies:
+ '@babel/core': 7.7.4
+ '@babel/helper-create-regexp-features-plugin': 7.7.4_@babel+core@7.7.4
+ '@babel/helper-plugin-utils': 7.0.0
+ dev: true
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ resolution:
+ integrity: sha512-b4in+YlTeE/QmTgrllnb3bHA0HntYvjz8O3Mcbx75UBPJA2xhb5A8nle498VhxSXJHQefjtQxpnLPehDJ4TRlg==
+ /@babel/plugin-transform-dotall-regex/7.7.7_@babel+core@7.7.7:
+ dependencies:
+ '@babel/core': 7.7.7
+ '@babel/helper-create-regexp-features-plugin': 7.7.4_@babel+core@7.7.7
+ '@babel/helper-plugin-utils': 7.0.0
+ dev: true
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ resolution:
+ integrity: sha512-b4in+YlTeE/QmTgrllnb3bHA0HntYvjz8O3Mcbx75UBPJA2xhb5A8nle498VhxSXJHQefjtQxpnLPehDJ4TRlg==
+ /@babel/plugin-transform-duplicate-keys/7.7.4_@babel+core@7.7.4:
+ dependencies:
+ '@babel/core': 7.7.4
+ '@babel/helper-plugin-utils': 7.0.0
+ dev: true
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ resolution:
+ integrity: sha512-g1y4/G6xGWMD85Tlft5XedGaZBCIVN+/P0bs6eabmcPP9egFleMAo65OOjlhcz1njpwagyY3t0nsQC9oTFegJA==
+ /@babel/plugin-transform-duplicate-keys/7.7.4_@babel+core@7.7.7:
+ dependencies:
+ '@babel/core': 7.7.7
+ '@babel/helper-plugin-utils': 7.0.0
+ dev: true
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ resolution:
+ integrity: sha512-g1y4/G6xGWMD85Tlft5XedGaZBCIVN+/P0bs6eabmcPP9egFleMAo65OOjlhcz1njpwagyY3t0nsQC9oTFegJA==
+ /@babel/plugin-transform-exponentiation-operator/7.7.4_@babel+core@7.7.4:
+ dependencies:
+ '@babel/core': 7.7.4
+ '@babel/helper-builder-binary-assignment-operator-visitor': 7.7.4
+ '@babel/helper-plugin-utils': 7.0.0
+ dev: true
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ resolution:
+ integrity: sha512-MCqiLfCKm6KEA1dglf6Uqq1ElDIZwFuzz1WH5mTf8k2uQSxEJMbOIEh7IZv7uichr7PMfi5YVSrr1vz+ipp7AQ==
+ /@babel/plugin-transform-exponentiation-operator/7.7.4_@babel+core@7.7.7:
+ dependencies:
+ '@babel/core': 7.7.7
+ '@babel/helper-builder-binary-assignment-operator-visitor': 7.7.4
+ '@babel/helper-plugin-utils': 7.0.0
+ dev: true
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ resolution:
+ integrity: sha512-MCqiLfCKm6KEA1dglf6Uqq1ElDIZwFuzz1WH5mTf8k2uQSxEJMbOIEh7IZv7uichr7PMfi5YVSrr1vz+ipp7AQ==
+ /@babel/plugin-transform-flow-strip-types/7.7.4_@babel+core@7.7.4:
+ dependencies:
+ '@babel/core': 7.7.4
+ '@babel/helper-plugin-utils': 7.0.0
+ '@babel/plugin-syntax-flow': 7.7.4_@babel+core@7.7.4
+ dev: true
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ resolution:
+ integrity: sha512-w9dRNlHY5ElNimyMYy0oQowvQpwt/PRHI0QS98ZJCTZU2bvSnKXo5zEiD5u76FBPigTm8TkqzmnUTg16T7qbkA==
+ /@babel/plugin-transform-for-of/7.7.4_@babel+core@7.7.4:
+ dependencies:
+ '@babel/core': 7.7.4
+ '@babel/helper-plugin-utils': 7.0.0
+ dev: true
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ resolution:
+ integrity: sha512-zZ1fD1B8keYtEcKF+M1TROfeHTKnijcVQm0yO/Yu1f7qoDoxEIc/+GX6Go430Bg84eM/xwPFp0+h4EbZg7epAA==
+ /@babel/plugin-transform-for-of/7.7.4_@babel+core@7.7.7:
+ dependencies:
+ '@babel/core': 7.7.7
+ '@babel/helper-plugin-utils': 7.0.0
+ dev: true
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ resolution:
+ integrity: sha512-zZ1fD1B8keYtEcKF+M1TROfeHTKnijcVQm0yO/Yu1f7qoDoxEIc/+GX6Go430Bg84eM/xwPFp0+h4EbZg7epAA==
+ /@babel/plugin-transform-function-name/7.7.4_@babel+core@7.7.4:
+ dependencies:
+ '@babel/core': 7.7.4
+ '@babel/helper-function-name': 7.7.4
+ '@babel/helper-plugin-utils': 7.0.0
+ dev: true
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ resolution:
+ integrity: sha512-E/x09TvjHNhsULs2IusN+aJNRV5zKwxu1cpirZyRPw+FyyIKEHPXTsadj48bVpc1R5Qq1B5ZkzumuFLytnbT6g==
+ /@babel/plugin-transform-function-name/7.7.4_@babel+core@7.7.7:
+ dependencies:
+ '@babel/core': 7.7.7
+ '@babel/helper-function-name': 7.7.4
+ '@babel/helper-plugin-utils': 7.0.0
+ dev: true
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ resolution:
+ integrity: sha512-E/x09TvjHNhsULs2IusN+aJNRV5zKwxu1cpirZyRPw+FyyIKEHPXTsadj48bVpc1R5Qq1B5ZkzumuFLytnbT6g==
+ /@babel/plugin-transform-literals/7.7.4_@babel+core@7.7.4:
+ dependencies:
+ '@babel/core': 7.7.4
+ '@babel/helper-plugin-utils': 7.0.0
+ dev: true
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ resolution:
+ integrity: sha512-X2MSV7LfJFm4aZfxd0yLVFrEXAgPqYoDG53Br/tCKiKYfX0MjVjQeWPIhPHHsCqzwQANq+FLN786fF5rgLS+gw==
+ /@babel/plugin-transform-literals/7.7.4_@babel+core@7.7.7:
+ dependencies:
+ '@babel/core': 7.7.7
+ '@babel/helper-plugin-utils': 7.0.0
+ dev: true
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ resolution:
+ integrity: sha512-X2MSV7LfJFm4aZfxd0yLVFrEXAgPqYoDG53Br/tCKiKYfX0MjVjQeWPIhPHHsCqzwQANq+FLN786fF5rgLS+gw==
+ /@babel/plugin-transform-member-expression-literals/7.7.4_@babel+core@7.7.4:
+ dependencies:
+ '@babel/core': 7.7.4
+ '@babel/helper-plugin-utils': 7.0.0
+ dev: true
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ resolution:
+ integrity: sha512-9VMwMO7i69LHTesL0RdGy93JU6a+qOPuvB4F4d0kR0zyVjJRVJRaoaGjhtki6SzQUu8yen/vxPKN6CWnCUw6bA==
+ /@babel/plugin-transform-member-expression-literals/7.7.4_@babel+core@7.7.7:
+ dependencies:
+ '@babel/core': 7.7.7
+ '@babel/helper-plugin-utils': 7.0.0
+ dev: true
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ resolution:
+ integrity: sha512-9VMwMO7i69LHTesL0RdGy93JU6a+qOPuvB4F4d0kR0zyVjJRVJRaoaGjhtki6SzQUu8yen/vxPKN6CWnCUw6bA==
+ /@babel/plugin-transform-modules-amd/7.7.5_@babel+core@7.7.4:
+ dependencies:
+ '@babel/core': 7.7.4
+ '@babel/helper-module-transforms': 7.7.5
+ '@babel/helper-plugin-utils': 7.0.0
+ babel-plugin-dynamic-import-node: 2.3.0
+ dev: true
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ resolution:
+ integrity: sha512-CT57FG4A2ZUNU1v+HdvDSDrjNWBrtCmSH6YbbgN3Lrf0Di/q/lWRxZrE72p3+HCCz9UjfZOEBdphgC0nzOS6DQ==
+ /@babel/plugin-transform-modules-amd/7.7.5_@babel+core@7.7.7:
+ dependencies:
+ '@babel/core': 7.7.7
+ '@babel/helper-module-transforms': 7.7.5
+ '@babel/helper-plugin-utils': 7.0.0
+ babel-plugin-dynamic-import-node: 2.3.0
+ dev: true
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ resolution:
+ integrity: sha512-CT57FG4A2ZUNU1v+HdvDSDrjNWBrtCmSH6YbbgN3Lrf0Di/q/lWRxZrE72p3+HCCz9UjfZOEBdphgC0nzOS6DQ==
+ /@babel/plugin-transform-modules-commonjs/7.7.5_@babel+core@7.7.4:
+ dependencies:
+ '@babel/core': 7.7.4
+ '@babel/helper-module-transforms': 7.7.5
+ '@babel/helper-plugin-utils': 7.0.0
+ '@babel/helper-simple-access': 7.7.4
+ babel-plugin-dynamic-import-node: 2.3.0
+ dev: true
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ resolution:
+ integrity: sha512-9Cq4zTFExwFhQI6MT1aFxgqhIsMWQWDVwOgLzl7PTWJHsNaqFvklAU+Oz6AQLAS0dJKTwZSOCo20INwktxpi3Q==
+ /@babel/plugin-transform-modules-commonjs/7.7.5_@babel+core@7.7.7:
+ dependencies:
+ '@babel/core': 7.7.7
+ '@babel/helper-module-transforms': 7.7.5
+ '@babel/helper-plugin-utils': 7.0.0
+ '@babel/helper-simple-access': 7.7.4
+ babel-plugin-dynamic-import-node: 2.3.0
+ dev: true
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ resolution:
+ integrity: sha512-9Cq4zTFExwFhQI6MT1aFxgqhIsMWQWDVwOgLzl7PTWJHsNaqFvklAU+Oz6AQLAS0dJKTwZSOCo20INwktxpi3Q==
+ /@babel/plugin-transform-modules-systemjs/7.7.4_@babel+core@7.7.4:
+ dependencies:
+ '@babel/core': 7.7.4
+ '@babel/helper-hoist-variables': 7.7.4
+ '@babel/helper-plugin-utils': 7.0.0
+ babel-plugin-dynamic-import-node: 2.3.0
+ dev: true
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ resolution:
+ integrity: sha512-y2c96hmcsUi6LrMqvmNDPBBiGCiQu0aYqpHatVVu6kD4mFEXKjyNxd/drc18XXAf9dv7UXjrZwBVmTTGaGP8iw==
+ /@babel/plugin-transform-modules-systemjs/7.7.4_@babel+core@7.7.7:
+ dependencies:
+ '@babel/core': 7.7.7
+ '@babel/helper-hoist-variables': 7.7.4
+ '@babel/helper-plugin-utils': 7.0.0
+ babel-plugin-dynamic-import-node: 2.3.0
+ dev: true
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ resolution:
+ integrity: sha512-y2c96hmcsUi6LrMqvmNDPBBiGCiQu0aYqpHatVVu6kD4mFEXKjyNxd/drc18XXAf9dv7UXjrZwBVmTTGaGP8iw==
+ /@babel/plugin-transform-modules-umd/7.7.4_@babel+core@7.7.4:
+ dependencies:
+ '@babel/core': 7.7.4
+ '@babel/helper-module-transforms': 7.7.5
+ '@babel/helper-plugin-utils': 7.0.0
+ dev: true
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ resolution:
+ integrity: sha512-u2B8TIi0qZI4j8q4C51ktfO7E3cQ0qnaXFI1/OXITordD40tt17g/sXqgNNCcMTcBFKrUPcGDx+TBJuZxLx7tw==
+ /@babel/plugin-transform-modules-umd/7.7.4_@babel+core@7.7.7:
+ dependencies:
+ '@babel/core': 7.7.7
+ '@babel/helper-module-transforms': 7.7.5
+ '@babel/helper-plugin-utils': 7.0.0
+ dev: true
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ resolution:
+ integrity: sha512-u2B8TIi0qZI4j8q4C51ktfO7E3cQ0qnaXFI1/OXITordD40tt17g/sXqgNNCcMTcBFKrUPcGDx+TBJuZxLx7tw==
+ /@babel/plugin-transform-named-capturing-groups-regex/7.7.4_@babel+core@7.7.4:
+ dependencies:
+ '@babel/core': 7.7.4
+ '@babel/helper-create-regexp-features-plugin': 7.7.4_@babel+core@7.7.4
+ dev: true
+ peerDependencies:
+ '@babel/core': ^7.0.0
+ resolution:
+ integrity: sha512-jBUkiqLKvUWpv9GLSuHUFYdmHg0ujC1JEYoZUfeOOfNydZXp1sXObgyPatpcwjWgsdBGsagWW0cdJpX/DO2jMw==
+ /@babel/plugin-transform-named-capturing-groups-regex/7.7.4_@babel+core@7.7.7:
+ dependencies:
+ '@babel/core': 7.7.7
+ '@babel/helper-create-regexp-features-plugin': 7.7.4_@babel+core@7.7.7
+ dev: true
+ peerDependencies:
+ '@babel/core': ^7.0.0
+ resolution:
+ integrity: sha512-jBUkiqLKvUWpv9GLSuHUFYdmHg0ujC1JEYoZUfeOOfNydZXp1sXObgyPatpcwjWgsdBGsagWW0cdJpX/DO2jMw==
+ /@babel/plugin-transform-new-target/7.7.4_@babel+core@7.7.4:
+ dependencies:
+ '@babel/core': 7.7.4
+ '@babel/helper-plugin-utils': 7.0.0
+ dev: true
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ resolution:
+ integrity: sha512-CnPRiNtOG1vRodnsyGX37bHQleHE14B9dnnlgSeEs3ek3fHN1A1SScglTCg1sfbe7sRQ2BUcpgpTpWSfMKz3gg==
+ /@babel/plugin-transform-new-target/7.7.4_@babel+core@7.7.7:
+ dependencies:
+ '@babel/core': 7.7.7
+ '@babel/helper-plugin-utils': 7.0.0
+ dev: true
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ resolution:
+ integrity: sha512-CnPRiNtOG1vRodnsyGX37bHQleHE14B9dnnlgSeEs3ek3fHN1A1SScglTCg1sfbe7sRQ2BUcpgpTpWSfMKz3gg==
+ /@babel/plugin-transform-object-super/7.7.4_@babel+core@7.7.4:
+ dependencies:
+ '@babel/core': 7.7.4
+ '@babel/helper-plugin-utils': 7.0.0
+ '@babel/helper-replace-supers': 7.7.4
+ dev: true
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ resolution:
+ integrity: sha512-ho+dAEhC2aRnff2JCA0SAK7V2R62zJd/7dmtoe7MHcso4C2mS+vZjn1Pb1pCVZvJs1mgsvv5+7sT+m3Bysb6eg==
+ /@babel/plugin-transform-object-super/7.7.4_@babel+core@7.7.7:
+ dependencies:
+ '@babel/core': 7.7.7
+ '@babel/helper-plugin-utils': 7.0.0
+ '@babel/helper-replace-supers': 7.7.4
+ dev: true
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ resolution:
+ integrity: sha512-ho+dAEhC2aRnff2JCA0SAK7V2R62zJd/7dmtoe7MHcso4C2mS+vZjn1Pb1pCVZvJs1mgsvv5+7sT+m3Bysb6eg==
+ /@babel/plugin-transform-parameters/7.7.7_@babel+core@7.7.4:
+ dependencies:
+ '@babel/core': 7.7.4
+ '@babel/helper-call-delegate': 7.7.4
+ '@babel/helper-get-function-arity': 7.7.4
+ '@babel/helper-plugin-utils': 7.0.0
+ dev: true
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ resolution:
+ integrity: sha512-OhGSrf9ZBrr1fw84oFXj5hgi8Nmg+E2w5L7NhnG0lPvpDtqd7dbyilM2/vR8CKbJ907RyxPh2kj6sBCSSfI9Ew==
+ /@babel/plugin-transform-parameters/7.7.7_@babel+core@7.7.7:
+ dependencies:
+ '@babel/core': 7.7.7
+ '@babel/helper-call-delegate': 7.7.4
+ '@babel/helper-get-function-arity': 7.7.4
+ '@babel/helper-plugin-utils': 7.0.0
+ dev: true
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ resolution:
+ integrity: sha512-OhGSrf9ZBrr1fw84oFXj5hgi8Nmg+E2w5L7NhnG0lPvpDtqd7dbyilM2/vR8CKbJ907RyxPh2kj6sBCSSfI9Ew==
+ /@babel/plugin-transform-property-literals/7.7.4_@babel+core@7.7.4:
+ dependencies:
+ '@babel/core': 7.7.4
+ '@babel/helper-plugin-utils': 7.0.0
+ dev: true
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ resolution:
+ integrity: sha512-MatJhlC4iHsIskWYyawl53KuHrt+kALSADLQQ/HkhTjX954fkxIEh4q5slL4oRAnsm/eDoZ4q0CIZpcqBuxhJQ==
+ /@babel/plugin-transform-property-literals/7.7.4_@babel+core@7.7.7:
+ dependencies:
+ '@babel/core': 7.7.7
+ '@babel/helper-plugin-utils': 7.0.0
+ dev: true
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ resolution:
+ integrity: sha512-MatJhlC4iHsIskWYyawl53KuHrt+kALSADLQQ/HkhTjX954fkxIEh4q5slL4oRAnsm/eDoZ4q0CIZpcqBuxhJQ==
+ /@babel/plugin-transform-react-constant-elements/7.7.4_@babel+core@7.7.7:
+ dependencies:
+ '@babel/core': 7.7.7
+ '@babel/helper-annotate-as-pure': 7.7.4
+ '@babel/helper-plugin-utils': 7.0.0
+ dev: true
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ resolution:
+ integrity: sha512-U6XkHZ8RnmeEb8jBUOpeo6oFka5RhLgxAVvK4/fBbwoYlsHQYLb8I37ymTPDVsrWjqb94+hueuWQA/1OAA4rAQ==
+ /@babel/plugin-transform-react-display-name/7.7.4_@babel+core@7.7.4:
+ dependencies:
+ '@babel/core': 7.7.4
+ '@babel/helper-plugin-utils': 7.0.0
+ dev: true
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ resolution:
+ integrity: sha512-sBbIvqYkthai0X0vkD2xsAwluBp+LtNHH+/V4a5ydifmTtb8KOVOlrMIk/MYmIc4uTYDnjZUHQildYNo36SRJw==
+ /@babel/plugin-transform-react-display-name/7.7.4_@babel+core@7.7.7:
+ dependencies:
+ '@babel/core': 7.7.7
+ '@babel/helper-plugin-utils': 7.0.0
+ dev: true
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ resolution:
+ integrity: sha512-sBbIvqYkthai0X0vkD2xsAwluBp+LtNHH+/V4a5ydifmTtb8KOVOlrMIk/MYmIc4uTYDnjZUHQildYNo36SRJw==
+ /@babel/plugin-transform-react-jsx-self/7.7.4_@babel+core@7.7.4:
+ dependencies:
+ '@babel/core': 7.7.4
+ '@babel/helper-plugin-utils': 7.0.0
+ '@babel/plugin-syntax-jsx': 7.7.4_@babel+core@7.7.4
+ dev: true
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ resolution:
+ integrity: sha512-PWYjSfqrO273mc1pKCRTIJXyqfc9vWYBax88yIhQb+bpw3XChVC7VWS4VwRVs63wFHKxizvGSd00XEr+YB9Q2A==
+ /@babel/plugin-transform-react-jsx-self/7.7.4_@babel+core@7.7.7:
+ dependencies:
+ '@babel/core': 7.7.7
+ '@babel/helper-plugin-utils': 7.0.0
+ '@babel/plugin-syntax-jsx': 7.7.4_@babel+core@7.7.7
+ dev: true
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ resolution:
+ integrity: sha512-PWYjSfqrO273mc1pKCRTIJXyqfc9vWYBax88yIhQb+bpw3XChVC7VWS4VwRVs63wFHKxizvGSd00XEr+YB9Q2A==
+ /@babel/plugin-transform-react-jsx-source/7.7.4_@babel+core@7.7.4:
+ dependencies:
+ '@babel/core': 7.7.4
+ '@babel/helper-plugin-utils': 7.0.0
+ '@babel/plugin-syntax-jsx': 7.7.4_@babel+core@7.7.4
+ dev: true
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ resolution:
+ integrity: sha512-5ZU9FnPhqtHsOXxutRtXZAzoEJwDaP32QcobbMP1/qt7NYcsCNK8XgzJcJfoEr/ZnzVvUNInNjIW22Z6I8p9mg==
+ /@babel/plugin-transform-react-jsx-source/7.7.4_@babel+core@7.7.7:
+ dependencies:
+ '@babel/core': 7.7.7
+ '@babel/helper-plugin-utils': 7.0.0
+ '@babel/plugin-syntax-jsx': 7.7.4_@babel+core@7.7.7
+ dev: true
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ resolution:
+ integrity: sha512-5ZU9FnPhqtHsOXxutRtXZAzoEJwDaP32QcobbMP1/qt7NYcsCNK8XgzJcJfoEr/ZnzVvUNInNjIW22Z6I8p9mg==
+ /@babel/plugin-transform-react-jsx/7.7.7_@babel+core@7.7.4:
+ dependencies:
+ '@babel/core': 7.7.4
+ '@babel/helper-builder-react-jsx': 7.7.4
+ '@babel/helper-plugin-utils': 7.0.0
+ '@babel/plugin-syntax-jsx': 7.7.4_@babel+core@7.7.4
+ dev: true
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ resolution:
+ integrity: sha512-SlPjWPbva2+7/ZJbGcoqjl4LsQaLpKEzxW9hcxU7675s24JmdotJOSJ4cgAbV82W3FcZpHIGmRZIlUL8ayMvjw==
+ /@babel/plugin-transform-react-jsx/7.7.7_@babel+core@7.7.7:
+ dependencies:
+ '@babel/core': 7.7.7
+ '@babel/helper-builder-react-jsx': 7.7.4
+ '@babel/helper-plugin-utils': 7.0.0
+ '@babel/plugin-syntax-jsx': 7.7.4_@babel+core@7.7.7
+ dev: true
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ resolution:
+ integrity: sha512-SlPjWPbva2+7/ZJbGcoqjl4LsQaLpKEzxW9hcxU7675s24JmdotJOSJ4cgAbV82W3FcZpHIGmRZIlUL8ayMvjw==
+ /@babel/plugin-transform-regenerator/7.7.5_@babel+core@7.7.4:
+ dependencies:
+ '@babel/core': 7.7.4
+ regenerator-transform: 0.14.1
+ dev: true
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ resolution:
+ integrity: sha512-/8I8tPvX2FkuEyWbjRCt4qTAgZK0DVy8QRguhA524UH48RfGJy94On2ri+dCuwOpcerPRl9O4ebQkRcVzIaGBw==
+ /@babel/plugin-transform-regenerator/7.7.5_@babel+core@7.7.7:
+ dependencies:
+ '@babel/core': 7.7.7
+ regenerator-transform: 0.14.1
+ dev: true
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ resolution:
+ integrity: sha512-/8I8tPvX2FkuEyWbjRCt4qTAgZK0DVy8QRguhA524UH48RfGJy94On2ri+dCuwOpcerPRl9O4ebQkRcVzIaGBw==
+ /@babel/plugin-transform-reserved-words/7.7.4_@babel+core@7.7.4:
+ dependencies:
+ '@babel/core': 7.7.4
+ '@babel/helper-plugin-utils': 7.0.0
+ dev: true
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ resolution:
+ integrity: sha512-OrPiUB5s5XvkCO1lS7D8ZtHcswIC57j62acAnJZKqGGnHP+TIc/ljQSrgdX/QyOTdEK5COAhuc820Hi1q2UgLQ==
+ /@babel/plugin-transform-reserved-words/7.7.4_@babel+core@7.7.7:
+ dependencies:
+ '@babel/core': 7.7.7
+ '@babel/helper-plugin-utils': 7.0.0
+ dev: true
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ resolution:
+ integrity: sha512-OrPiUB5s5XvkCO1lS7D8ZtHcswIC57j62acAnJZKqGGnHP+TIc/ljQSrgdX/QyOTdEK5COAhuc820Hi1q2UgLQ==
+ /@babel/plugin-transform-runtime/7.7.4_@babel+core@7.7.4:
+ dependencies:
+ '@babel/core': 7.7.4
+ '@babel/helper-module-imports': 7.7.4
+ '@babel/helper-plugin-utils': 7.0.0
+ resolve: 1.14.2
+ semver: 5.7.1
+ dev: true
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ resolution:
+ integrity: sha512-O8kSkS5fP74Ad/8pfsCMGa8sBRdLxYoSReaARRNSz3FbFQj3z/QUvoUmJ28gn9BO93YfnXc3j+Xyaqe8cKDNBQ==
+ /@babel/plugin-transform-shorthand-properties/7.7.4_@babel+core@7.7.4:
+ dependencies:
+ '@babel/core': 7.7.4
+ '@babel/helper-plugin-utils': 7.0.0
+ dev: true
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ resolution:
+ integrity: sha512-q+suddWRfIcnyG5YiDP58sT65AJDZSUhXQDZE3r04AuqD6d/XLaQPPXSBzP2zGerkgBivqtQm9XKGLuHqBID6Q==
+ /@babel/plugin-transform-shorthand-properties/7.7.4_@babel+core@7.7.7:
+ dependencies:
+ '@babel/core': 7.7.7
+ '@babel/helper-plugin-utils': 7.0.0
+ dev: true
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ resolution:
+ integrity: sha512-q+suddWRfIcnyG5YiDP58sT65AJDZSUhXQDZE3r04AuqD6d/XLaQPPXSBzP2zGerkgBivqtQm9XKGLuHqBID6Q==
+ /@babel/plugin-transform-spread/7.7.4_@babel+core@7.7.4:
+ dependencies:
+ '@babel/core': 7.7.4
+ '@babel/helper-plugin-utils': 7.0.0
+ dev: true
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ resolution:
+ integrity: sha512-8OSs0FLe5/80cndziPlg4R0K6HcWSM0zyNhHhLsmw/Nc5MaA49cAsnoJ/t/YZf8qkG7fD+UjTRaApVDB526d7Q==
+ /@babel/plugin-transform-spread/7.7.4_@babel+core@7.7.7:
+ dependencies:
+ '@babel/core': 7.7.7
+ '@babel/helper-plugin-utils': 7.0.0
+ dev: true
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ resolution:
+ integrity: sha512-8OSs0FLe5/80cndziPlg4R0K6HcWSM0zyNhHhLsmw/Nc5MaA49cAsnoJ/t/YZf8qkG7fD+UjTRaApVDB526d7Q==
+ /@babel/plugin-transform-sticky-regex/7.7.4_@babel+core@7.7.4:
+ dependencies:
+ '@babel/core': 7.7.4
+ '@babel/helper-plugin-utils': 7.0.0
+ '@babel/helper-regex': 7.5.5
+ dev: true
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ resolution:
+ integrity: sha512-Ls2NASyL6qtVe1H1hXts9yuEeONV2TJZmplLONkMPUG158CtmnrzW5Q5teibM5UVOFjG0D3IC5mzXR6pPpUY7A==
+ /@babel/plugin-transform-sticky-regex/7.7.4_@babel+core@7.7.7:
+ dependencies:
+ '@babel/core': 7.7.7
+ '@babel/helper-plugin-utils': 7.0.0
+ '@babel/helper-regex': 7.5.5
+ dev: true
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ resolution:
+ integrity: sha512-Ls2NASyL6qtVe1H1hXts9yuEeONV2TJZmplLONkMPUG158CtmnrzW5Q5teibM5UVOFjG0D3IC5mzXR6pPpUY7A==
+ /@babel/plugin-transform-template-literals/7.7.4_@babel+core@7.7.4:
+ dependencies:
+ '@babel/core': 7.7.4
+ '@babel/helper-annotate-as-pure': 7.7.4
+ '@babel/helper-plugin-utils': 7.0.0
+ dev: true
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ resolution:
+ integrity: sha512-sA+KxLwF3QwGj5abMHkHgshp9+rRz+oY9uoRil4CyLtgEuE/88dpkeWgNk5qKVsJE9iSfly3nvHapdRiIS2wnQ==
+ /@babel/plugin-transform-template-literals/7.7.4_@babel+core@7.7.7:
+ dependencies:
+ '@babel/core': 7.7.7
+ '@babel/helper-annotate-as-pure': 7.7.4
+ '@babel/helper-plugin-utils': 7.0.0
+ dev: true
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ resolution:
+ integrity: sha512-sA+KxLwF3QwGj5abMHkHgshp9+rRz+oY9uoRil4CyLtgEuE/88dpkeWgNk5qKVsJE9iSfly3nvHapdRiIS2wnQ==
+ /@babel/plugin-transform-typeof-symbol/7.7.4_@babel+core@7.7.4:
+ dependencies:
+ '@babel/core': 7.7.4
+ '@babel/helper-plugin-utils': 7.0.0
+ dev: true
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ resolution:
+ integrity: sha512-KQPUQ/7mqe2m0B8VecdyaW5XcQYaePyl9R7IsKd+irzj6jvbhoGnRE+M0aNkyAzI07VfUQ9266L5xMARitV3wg==
+ /@babel/plugin-transform-typeof-symbol/7.7.4_@babel+core@7.7.7:
+ dependencies:
+ '@babel/core': 7.7.7
+ '@babel/helper-plugin-utils': 7.0.0
+ dev: true
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ resolution:
+ integrity: sha512-KQPUQ/7mqe2m0B8VecdyaW5XcQYaePyl9R7IsKd+irzj6jvbhoGnRE+M0aNkyAzI07VfUQ9266L5xMARitV3wg==
+ /@babel/plugin-transform-typescript/7.7.4_@babel+core@7.7.4:
+ dependencies:
+ '@babel/core': 7.7.4
+ '@babel/helper-create-class-features-plugin': 7.7.4_@babel+core@7.7.4
+ '@babel/helper-plugin-utils': 7.0.0
+ '@babel/plugin-syntax-typescript': 7.7.4_@babel+core@7.7.4
+ dev: true
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ resolution:
+ integrity: sha512-X8e3tcPEKnwwPVG+vP/vSqEShkwODOEeyQGod82qrIuidwIrfnsGn11qPM1jBLF4MqguTXXYzm58d0dY+/wdpg==
+ /@babel/plugin-transform-unicode-regex/7.7.4_@babel+core@7.7.4:
+ dependencies:
+ '@babel/core': 7.7.4
+ '@babel/helper-create-regexp-features-plugin': 7.7.4_@babel+core@7.7.4
+ '@babel/helper-plugin-utils': 7.0.0
+ dev: true
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ resolution:
+ integrity: sha512-N77UUIV+WCvE+5yHw+oks3m18/umd7y392Zv7mYTpFqHtkpcc+QUz+gLJNTWVlWROIWeLqY0f3OjZxV5TcXnRw==
+ /@babel/plugin-transform-unicode-regex/7.7.4_@babel+core@7.7.7:
+ dependencies:
+ '@babel/core': 7.7.7
+ '@babel/helper-create-regexp-features-plugin': 7.7.4_@babel+core@7.7.7
+ '@babel/helper-plugin-utils': 7.0.0
+ dev: true
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ resolution:
+ integrity: sha512-N77UUIV+WCvE+5yHw+oks3m18/umd7y392Zv7mYTpFqHtkpcc+QUz+gLJNTWVlWROIWeLqY0f3OjZxV5TcXnRw==
+ /@babel/preset-env/7.7.4_@babel+core@7.7.4:
+ dependencies:
+ '@babel/core': 7.7.4
+ '@babel/helper-module-imports': 7.7.4
+ '@babel/helper-plugin-utils': 7.0.0
+ '@babel/plugin-proposal-async-generator-functions': 7.7.4_@babel+core@7.7.4
+ '@babel/plugin-proposal-dynamic-import': 7.7.4_@babel+core@7.7.4
+ '@babel/plugin-proposal-json-strings': 7.7.4_@babel+core@7.7.4
+ '@babel/plugin-proposal-object-rest-spread': 7.7.4_@babel+core@7.7.4
+ '@babel/plugin-proposal-optional-catch-binding': 7.7.4_@babel+core@7.7.4
+ '@babel/plugin-proposal-unicode-property-regex': 7.7.7_@babel+core@7.7.4
+ '@babel/plugin-syntax-async-generators': 7.7.4_@babel+core@7.7.4
+ '@babel/plugin-syntax-dynamic-import': 7.7.4_@babel+core@7.7.4
+ '@babel/plugin-syntax-json-strings': 7.7.4_@babel+core@7.7.4
+ '@babel/plugin-syntax-object-rest-spread': 7.7.4_@babel+core@7.7.4
+ '@babel/plugin-syntax-optional-catch-binding': 7.7.4_@babel+core@7.7.4
+ '@babel/plugin-syntax-top-level-await': 7.7.4_@babel+core@7.7.4
+ '@babel/plugin-transform-arrow-functions': 7.7.4_@babel+core@7.7.4
+ '@babel/plugin-transform-async-to-generator': 7.7.4_@babel+core@7.7.4
+ '@babel/plugin-transform-block-scoped-functions': 7.7.4_@babel+core@7.7.4
+ '@babel/plugin-transform-block-scoping': 7.7.4_@babel+core@7.7.4
+ '@babel/plugin-transform-classes': 7.7.4_@babel+core@7.7.4
+ '@babel/plugin-transform-computed-properties': 7.7.4_@babel+core@7.7.4
+ '@babel/plugin-transform-destructuring': 7.7.4_@babel+core@7.7.4
+ '@babel/plugin-transform-dotall-regex': 7.7.7_@babel+core@7.7.4
+ '@babel/plugin-transform-duplicate-keys': 7.7.4_@babel+core@7.7.4
+ '@babel/plugin-transform-exponentiation-operator': 7.7.4_@babel+core@7.7.4
+ '@babel/plugin-transform-for-of': 7.7.4_@babel+core@7.7.4
+ '@babel/plugin-transform-function-name': 7.7.4_@babel+core@7.7.4
+ '@babel/plugin-transform-literals': 7.7.4_@babel+core@7.7.4
+ '@babel/plugin-transform-member-expression-literals': 7.7.4_@babel+core@7.7.4
+ '@babel/plugin-transform-modules-amd': 7.7.5_@babel+core@7.7.4
+ '@babel/plugin-transform-modules-commonjs': 7.7.5_@babel+core@7.7.4
+ '@babel/plugin-transform-modules-systemjs': 7.7.4_@babel+core@7.7.4
+ '@babel/plugin-transform-modules-umd': 7.7.4_@babel+core@7.7.4
+ '@babel/plugin-transform-named-capturing-groups-regex': 7.7.4_@babel+core@7.7.4
+ '@babel/plugin-transform-new-target': 7.7.4_@babel+core@7.7.4
+ '@babel/plugin-transform-object-super': 7.7.4_@babel+core@7.7.4
+ '@babel/plugin-transform-parameters': 7.7.7_@babel+core@7.7.4
+ '@babel/plugin-transform-property-literals': 7.7.4_@babel+core@7.7.4
+ '@babel/plugin-transform-regenerator': 7.7.5_@babel+core@7.7.4
+ '@babel/plugin-transform-reserved-words': 7.7.4_@babel+core@7.7.4
+ '@babel/plugin-transform-shorthand-properties': 7.7.4_@babel+core@7.7.4
+ '@babel/plugin-transform-spread': 7.7.4_@babel+core@7.7.4
+ '@babel/plugin-transform-sticky-regex': 7.7.4_@babel+core@7.7.4
+ '@babel/plugin-transform-template-literals': 7.7.4_@babel+core@7.7.4
+ '@babel/plugin-transform-typeof-symbol': 7.7.4_@babel+core@7.7.4
+ '@babel/plugin-transform-unicode-regex': 7.7.4_@babel+core@7.7.4
+ '@babel/types': 7.7.4
+ browserslist: 4.8.3
+ core-js-compat: 3.6.2
+ invariant: 2.2.4
+ js-levenshtein: 1.1.6
+ semver: 5.7.1
+ dev: true
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ resolution:
+ integrity: sha512-Dg+ciGJjwvC1NIe/DGblMbcGq1HOtKbw8RLl4nIjlfcILKEOkWT/vRqPpumswABEBVudii6dnVwrBtzD7ibm4g==
+ /@babel/preset-env/7.7.7_@babel+core@7.7.7:
+ dependencies:
+ '@babel/core': 7.7.7
+ '@babel/helper-module-imports': 7.7.4
+ '@babel/helper-plugin-utils': 7.0.0
+ '@babel/plugin-proposal-async-generator-functions': 7.7.4_@babel+core@7.7.7
+ '@babel/plugin-proposal-dynamic-import': 7.7.4_@babel+core@7.7.7
+ '@babel/plugin-proposal-json-strings': 7.7.4_@babel+core@7.7.7
+ '@babel/plugin-proposal-object-rest-spread': 7.7.7_@babel+core@7.7.7
+ '@babel/plugin-proposal-optional-catch-binding': 7.7.4_@babel+core@7.7.7
+ '@babel/plugin-proposal-unicode-property-regex': 7.7.7_@babel+core@7.7.7
+ '@babel/plugin-syntax-async-generators': 7.7.4_@babel+core@7.7.7
+ '@babel/plugin-syntax-dynamic-import': 7.7.4_@babel+core@7.7.7
+ '@babel/plugin-syntax-json-strings': 7.7.4_@babel+core@7.7.7
+ '@babel/plugin-syntax-object-rest-spread': 7.7.4_@babel+core@7.7.7
+ '@babel/plugin-syntax-optional-catch-binding': 7.7.4_@babel+core@7.7.7
+ '@babel/plugin-syntax-top-level-await': 7.7.4_@babel+core@7.7.7
+ '@babel/plugin-transform-arrow-functions': 7.7.4_@babel+core@7.7.7
+ '@babel/plugin-transform-async-to-generator': 7.7.4_@babel+core@7.7.7
+ '@babel/plugin-transform-block-scoped-functions': 7.7.4_@babel+core@7.7.7
+ '@babel/plugin-transform-block-scoping': 7.7.4_@babel+core@7.7.7
+ '@babel/plugin-transform-classes': 7.7.4_@babel+core@7.7.7
+ '@babel/plugin-transform-computed-properties': 7.7.4_@babel+core@7.7.7
+ '@babel/plugin-transform-destructuring': 7.7.4_@babel+core@7.7.7
+ '@babel/plugin-transform-dotall-regex': 7.7.7_@babel+core@7.7.7
+ '@babel/plugin-transform-duplicate-keys': 7.7.4_@babel+core@7.7.7
+ '@babel/plugin-transform-exponentiation-operator': 7.7.4_@babel+core@7.7.7
+ '@babel/plugin-transform-for-of': 7.7.4_@babel+core@7.7.7
+ '@babel/plugin-transform-function-name': 7.7.4_@babel+core@7.7.7
+ '@babel/plugin-transform-literals': 7.7.4_@babel+core@7.7.7
+ '@babel/plugin-transform-member-expression-literals': 7.7.4_@babel+core@7.7.7
+ '@babel/plugin-transform-modules-amd': 7.7.5_@babel+core@7.7.7
+ '@babel/plugin-transform-modules-commonjs': 7.7.5_@babel+core@7.7.7
+ '@babel/plugin-transform-modules-systemjs': 7.7.4_@babel+core@7.7.7
+ '@babel/plugin-transform-modules-umd': 7.7.4_@babel+core@7.7.7
+ '@babel/plugin-transform-named-capturing-groups-regex': 7.7.4_@babel+core@7.7.7
+ '@babel/plugin-transform-new-target': 7.7.4_@babel+core@7.7.7
+ '@babel/plugin-transform-object-super': 7.7.4_@babel+core@7.7.7
+ '@babel/plugin-transform-parameters': 7.7.7_@babel+core@7.7.7
+ '@babel/plugin-transform-property-literals': 7.7.4_@babel+core@7.7.7
+ '@babel/plugin-transform-regenerator': 7.7.5_@babel+core@7.7.7
+ '@babel/plugin-transform-reserved-words': 7.7.4_@babel+core@7.7.7
+ '@babel/plugin-transform-shorthand-properties': 7.7.4_@babel+core@7.7.7
+ '@babel/plugin-transform-spread': 7.7.4_@babel+core@7.7.7
+ '@babel/plugin-transform-sticky-regex': 7.7.4_@babel+core@7.7.7
+ '@babel/plugin-transform-template-literals': 7.7.4_@babel+core@7.7.7
+ '@babel/plugin-transform-typeof-symbol': 7.7.4_@babel+core@7.7.7
+ '@babel/plugin-transform-unicode-regex': 7.7.4_@babel+core@7.7.7
+ '@babel/types': 7.7.4
+ browserslist: 4.8.3
+ core-js-compat: 3.6.2
+ invariant: 2.2.4
+ js-levenshtein: 1.1.6
+ semver: 5.7.1
+ dev: true
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ resolution:
+ integrity: sha512-pCu0hrSSDVI7kCVUOdcMNQEbOPJ52E+LrQ14sN8uL2ALfSqePZQlKrOy+tM4uhEdYlCHi4imr8Zz2cZe9oSdIg==
+ /@babel/preset-react/7.7.4_@babel+core@7.7.4:
+ dependencies:
+ '@babel/core': 7.7.4
+ '@babel/helper-plugin-utils': 7.0.0
+ '@babel/plugin-transform-react-display-name': 7.7.4_@babel+core@7.7.4
+ '@babel/plugin-transform-react-jsx': 7.7.7_@babel+core@7.7.4
+ '@babel/plugin-transform-react-jsx-self': 7.7.4_@babel+core@7.7.4
+ '@babel/plugin-transform-react-jsx-source': 7.7.4_@babel+core@7.7.4
+ dev: true
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ resolution:
+ integrity: sha512-j+vZtg0/8pQr1H8wKoaJyGL2IEk3rG/GIvua7Sec7meXVIvGycihlGMx5xcU00kqCJbwzHs18xTu3YfREOqQ+g==
+ /@babel/preset-react/7.7.4_@babel+core@7.7.7:
+ dependencies:
+ '@babel/core': 7.7.7
+ '@babel/helper-plugin-utils': 7.0.0
+ '@babel/plugin-transform-react-display-name': 7.7.4_@babel+core@7.7.7
+ '@babel/plugin-transform-react-jsx': 7.7.7_@babel+core@7.7.7
+ '@babel/plugin-transform-react-jsx-self': 7.7.4_@babel+core@7.7.7
+ '@babel/plugin-transform-react-jsx-source': 7.7.4_@babel+core@7.7.7
+ dev: true
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ resolution:
+ integrity: sha512-j+vZtg0/8pQr1H8wKoaJyGL2IEk3rG/GIvua7Sec7meXVIvGycihlGMx5xcU00kqCJbwzHs18xTu3YfREOqQ+g==
+ /@babel/preset-typescript/7.7.4_@babel+core@7.7.4:
+ dependencies:
+ '@babel/core': 7.7.4
+ '@babel/helper-plugin-utils': 7.0.0
+ '@babel/plugin-transform-typescript': 7.7.4_@babel+core@7.7.4
+ dev: true
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ resolution:
+ integrity: sha512-rqrjxfdiHPsnuPur0jKrIIGQCIgoTWMTjlbWE69G4QJ6TIOVnnRnIJhUxNTL/VwDmEAVX08Tq3B1nirer5341w==
+ /@babel/runtime-corejs3/7.7.7:
+ dependencies:
+ core-js-pure: 3.6.2
+ regenerator-runtime: 0.13.3
+ dev: true
+ resolution:
+ integrity: sha512-kr3W3Fw8mB/CTru2M5zIRQZZgC/9zOxNSoJ/tVCzjPt3H1/p5uuGbz6WwmaQy/TLQcW31rUhUUWKY28sXFRelA==
+ /@babel/runtime/7.7.4:
+ dependencies:
+ regenerator-runtime: 0.13.3
+ dev: true
+ resolution:
+ integrity: sha512-r24eVUUr0QqNZa+qrImUk8fn5SPhHq+IfYvIoIMg0do3GdK9sMdiLKP3GYVVaxpPKORgm8KRKaNTEhAjgIpLMw==
+ /@babel/runtime/7.7.7:
+ dependencies:
+ regenerator-runtime: 0.13.3
+ dev: true
+ resolution:
+ integrity: sha512-uCnC2JEVAu8AKB5do1WRIsvrdJ0flYx/A/9f/6chdacnEZ7LmavjdsDXr5ksYBegxtuTPR5Va9/+13QF/kFkCA==
+ /@babel/template/7.7.4:
+ dependencies:
+ '@babel/code-frame': 7.5.5
+ '@babel/parser': 7.7.7
+ '@babel/types': 7.7.4
+ dev: true
+ resolution:
+ integrity: sha512-qUzihgVPguAzXCK7WXw8pqs6cEwi54s3E+HrejlkuWO6ivMKx9hZl3Y2fSXp9i5HgyWmj7RKP+ulaYnKM4yYxw==
+ /@babel/traverse/7.7.4:
+ dependencies:
+ '@babel/code-frame': 7.5.5
+ '@babel/generator': 7.7.7
+ '@babel/helper-function-name': 7.7.4
+ '@babel/helper-split-export-declaration': 7.7.4
+ '@babel/parser': 7.7.7
+ '@babel/types': 7.7.4
+ debug: 4.1.1
+ globals: 11.12.0
+ lodash: 4.17.15
+ dev: true
+ resolution:
+ integrity: sha512-P1L58hQyupn8+ezVA2z5KBm4/Zr4lCC8dwKCMYzsa5jFMDMQAzaBNy9W5VjB+KAmBjb40U7a/H6ao+Xo+9saIw==
+ /@babel/types/7.7.4:
+ dependencies:
+ esutils: 2.0.3
+ lodash: 4.17.15
+ to-fast-properties: 2.0.0
+ dev: true
+ resolution:
+ integrity: sha512-cz5Ji23KCi4T+YIE/BolWosrJuSmoZeN1EFnRtBwF+KKLi8GG/Z2c2hOJJeCXPk4mwk4QFvTmwIodJowXgttRA==
+ /@cnakazawa/watch/1.0.3:
+ dependencies:
+ exec-sh: 0.3.4
+ minimist: 1.2.0
+ dev: true
+ engines:
+ node: '>=0.1.95'
+ hasBin: true
+ resolution:
+ integrity: sha512-r5160ogAvGyHsal38Kux7YYtodEKOj89RGb28ht1jh3SJb08VwRwAKKJL0bGb04Zd/3r9FL3BFIc3bBidYffCA==
+ /@csstools/convert-colors/1.4.0:
+ dev: true
+ engines:
+ node: '>=4.0.0'
+ resolution:
+ integrity: sha512-5a6wqoJV/xEdbRNKVo6I4hO3VjyDq//8q2f9I6PBAvMesJHFauXDorcNCsr9RzvsZnaWi5NYCcfyqP1QeFHFbw==
+ /@csstools/normalize.css/10.1.0:
+ dev: true
+ resolution:
+ integrity: sha512-ij4wRiunFfaJxjB0BdrYHIH8FxBJpOwNPhhAcunlmPdXudL1WQV1qoP9un6JsEBAgQH+7UXyyjh0g7jTxXK6tg==
+ /@hapi/address/2.1.4:
+ dev: true
+ resolution:
+ integrity: sha512-QD1PhQk+s31P1ixsX0H0Suoupp3VMXzIVMSwobR3F3MSUO2YCV0B7xqLcUw/Bh8yuvd3LhpyqLQWTNcRmp6IdQ==
+ /@hapi/bourne/1.3.2:
+ dev: true
+ resolution:
+ integrity: sha512-1dVNHT76Uu5N3eJNTYcvxee+jzX4Z9lfciqRRHCU27ihbUcYi+iSc2iml5Ke1LXe1SyJCLA0+14Jh4tXJgOppA==
+ /@hapi/hoek/8.5.0:
+ dev: true
+ resolution:
+ integrity: sha512-7XYT10CZfPsH7j9F1Jmg1+d0ezOux2oM2GfArAzLwWe4mE2Dr3hVjsAL6+TFY49RRJlCdJDMw3nJsLFroTc8Kw==
+ /@hapi/joi/15.1.1:
+ dependencies:
+ '@hapi/address': 2.1.4
+ '@hapi/bourne': 1.3.2
+ '@hapi/hoek': 8.5.0
+ '@hapi/topo': 3.1.6
+ dev: true
+ resolution:
+ integrity: sha512-entf8ZMOK8sc+8YfeOlM8pCfg3b5+WZIKBfUaaJT8UsjAAPjartzxIYm3TIbjvA4u+u++KbcXD38k682nVHDAQ==
+ /@hapi/topo/3.1.6:
+ dependencies:
+ '@hapi/hoek': 8.5.0
+ dev: true
+ resolution:
+ integrity: sha512-tAag0jEcjwH+P2quUfipd7liWCNX2F8NvYjQp2wtInsZxnMlypdw0FtAOLxtvvkO+GSRRbmNi8m/5y42PQJYCQ==
+ /@jest/console/24.9.0:
+ dependencies:
+ '@jest/source-map': 24.9.0
+ chalk: 2.4.2
+ slash: 2.0.0
+ dev: true
+ engines:
+ node: '>= 6'
+ resolution:
+ integrity: sha512-Zuj6b8TnKXi3q4ymac8EQfc3ea/uhLeCGThFqXeC8H9/raaH8ARPUTdId+XyGd03Z4In0/VjD2OYFcBF09fNLQ==
+ /@jest/core/24.9.0:
+ dependencies:
+ '@jest/console': 24.9.0
+ '@jest/reporters': 24.9.0
+ '@jest/test-result': 24.9.0
+ '@jest/transform': 24.9.0
+ '@jest/types': 24.9.0
+ ansi-escapes: 3.2.0
+ chalk: 2.4.2
+ exit: 0.1.2
+ graceful-fs: 4.2.3
+ jest-changed-files: 24.9.0
+ jest-config: 24.9.0
+ jest-haste-map: 24.9.0
+ jest-message-util: 24.9.0
+ jest-regex-util: 24.9.0
+ jest-resolve: 24.9.0_jest-resolve@24.9.0
+ jest-resolve-dependencies: 24.9.0
+ jest-runner: 24.9.0
+ jest-runtime: 24.9.0
+ jest-snapshot: 24.9.0
+ jest-util: 24.9.0
+ jest-validate: 24.9.0
+ jest-watcher: 24.9.0
+ micromatch: 3.1.10
+ p-each-series: 1.0.0
+ realpath-native: 1.1.0
+ rimraf: 2.7.1
+ slash: 2.0.0
+ strip-ansi: 5.2.0
+ dev: true
+ engines:
+ node: '>= 6'
+ resolution:
+ integrity: sha512-Fogg3s4wlAr1VX7q+rhV9RVnUv5tD7VuWfYy1+whMiWUrvl7U3QJSJyWcDio9Lq2prqYsZaeTv2Rz24pWGkJ2A==
+ /@jest/environment/24.9.0:
+ dependencies:
+ '@jest/fake-timers': 24.9.0
+ '@jest/transform': 24.9.0
+ '@jest/types': 24.9.0
+ jest-mock: 24.9.0
+ dev: true
+ engines:
+ node: '>= 6'
+ resolution:
+ integrity: sha512-5A1QluTPhvdIPFYnO3sZC3smkNeXPVELz7ikPbhUj0bQjB07EoE9qtLrem14ZUYWdVayYbsjVwIiL4WBIMV4aQ==
+ /@jest/fake-timers/24.9.0:
+ dependencies:
+ '@jest/types': 24.9.0
+ jest-message-util: 24.9.0
+ jest-mock: 24.9.0
+ dev: true
+ engines:
+ node: '>= 6'
+ resolution:
+ integrity: sha512-eWQcNa2YSwzXWIMC5KufBh3oWRIijrQFROsIqt6v/NS9Io/gknw1jsAC9c+ih/RQX4A3O7SeWAhQeN0goKhT9A==
+ /@jest/reporters/24.9.0:
+ dependencies:
+ '@jest/environment': 24.9.0
+ '@jest/test-result': 24.9.0
+ '@jest/transform': 24.9.0
+ '@jest/types': 24.9.0
+ chalk: 2.4.2
+ exit: 0.1.2
+ glob: 7.1.6
+ istanbul-lib-coverage: 2.0.5
+ istanbul-lib-instrument: 3.3.0
+ istanbul-lib-report: 2.0.8
+ istanbul-lib-source-maps: 3.0.6
+ istanbul-reports: 2.2.6
+ jest-haste-map: 24.9.0
+ jest-resolve: 24.9.0_jest-resolve@24.9.0
+ jest-runtime: 24.9.0
+ jest-util: 24.9.0
+ jest-worker: 24.9.0
+ node-notifier: 5.4.3
+ slash: 2.0.0
+ source-map: 0.6.1
+ string-length: 2.0.0
+ dev: true
+ engines:
+ node: '>= 6'
+ resolution:
+ integrity: sha512-mu4X0yjaHrffOsWmVLzitKmmmWSQ3GGuefgNscUSWNiUNcEOSEQk9k3pERKEQVBb0Cnn88+UESIsZEMH3o88Gw==
+ /@jest/source-map/24.9.0:
+ dependencies:
+ callsites: 3.1.0
+ graceful-fs: 4.2.3
+ source-map: 0.6.1
+ dev: true
+ engines:
+ node: '>= 6'
+ resolution:
+ integrity: sha512-/Xw7xGlsZb4MJzNDgB7PW5crou5JqWiBQaz6xyPd3ArOg2nfn/PunV8+olXbbEZzNl591o5rWKE9BRDaFAuIBg==
+ /@jest/test-result/24.9.0:
+ dependencies:
+ '@jest/console': 24.9.0
+ '@jest/types': 24.9.0
+ '@types/istanbul-lib-coverage': 2.0.1
+ dev: true
+ engines:
+ node: '>= 6'
+ resolution:
+ integrity: sha512-XEFrHbBonBJ8dGp2JmF8kP/nQI/ImPpygKHwQ/SY+es59Z3L5PI4Qb9TQQMAEeYsThG1xF0k6tmG0tIKATNiiA==
+ /@jest/test-sequencer/24.9.0:
+ dependencies:
+ '@jest/test-result': 24.9.0
+ jest-haste-map: 24.9.0
+ jest-runner: 24.9.0
+ jest-runtime: 24.9.0
+ dev: true
+ engines:
+ node: '>= 6'
+ resolution:
+ integrity: sha512-6qqsU4o0kW1dvA95qfNog8v8gkRN9ph6Lz7r96IvZpHdNipP2cBcb07J1Z45mz/VIS01OHJ3pY8T5fUY38tg4A==
+ /@jest/transform/24.9.0:
+ dependencies:
+ '@babel/core': 7.7.7
+ '@jest/types': 24.9.0
+ babel-plugin-istanbul: 5.2.0
+ chalk: 2.4.2
+ convert-source-map: 1.7.0
+ fast-json-stable-stringify: 2.1.0
+ graceful-fs: 4.2.3
+ jest-haste-map: 24.9.0
+ jest-regex-util: 24.9.0
+ jest-util: 24.9.0
+ micromatch: 3.1.10
+ pirates: 4.0.1
+ realpath-native: 1.1.0
+ slash: 2.0.0
+ source-map: 0.6.1
+ write-file-atomic: 2.4.1
+ dev: true
+ engines:
+ node: '>= 6'
+ resolution:
+ integrity: sha512-TcQUmyNRxV94S0QpMOnZl0++6RMiqpbH/ZMccFB/amku6Uwvyb1cjYX7xkp5nGNkbX4QPH/FcB6q1HBTHynLmQ==
+ /@jest/types/24.9.0:
+ dependencies:
+ '@types/istanbul-lib-coverage': 2.0.1
+ '@types/istanbul-reports': 1.1.1
+ '@types/yargs': 13.0.4
+ dev: true
+ engines:
+ node: '>= 6'
+ resolution:
+ integrity: sha512-XKK7ze1apu5JWQ5eZjHITP66AX+QsLlbaJRBGYr8pNzwcAE2JVkwnf0yqjHTsDRcjR0mujy/NmZMXw5kl+kGBw==
+ /@mrmlnc/readdir-enhanced/2.2.1:
+ dependencies:
+ call-me-maybe: 1.0.1
+ glob-to-regexp: 0.3.0
+ dev: true
+ engines:
+ node: '>=4'
+ resolution:
+ integrity: sha512-bPHp6Ji8b41szTOcaP63VlnbbO5Ny6dwAATtY6JTjh5N2OLrb5Qk/Th5cRkRQhkWCt+EJsYrNB0MiL+Gpn6e3g==
+ /@nodelib/fs.stat/1.1.3:
+ dev: true
+ engines:
+ node: '>= 6'
+ resolution:
+ integrity: sha512-shAmDyaQC4H92APFoIaVDHCx5bStIocgvbwQyxPRrbUY20V1EYTbSDchWbuwlMG3V17cprZhA6+78JfB+3DTPw==
+ /@rollup/plugin-commonjs/11.0.1_rollup@1.28.0:
+ dependencies:
+ '@rollup/pluginutils': 3.0.3_rollup@1.28.0
+ estree-walker: 0.6.1
+ is-reference: 1.1.4
+ magic-string: 0.25.5
+ resolve: 1.14.2
+ rollup: 1.28.0
+ dev: true
+ engines:
+ node: '>= 8.0.0'
+ peerDependencies:
+ rollup: ^1.20.0
+ resolution:
+ integrity: sha512-SaVUoaLDg3KnIXC5IBNIspr1APTYDzk05VaYcI6qz+0XX3ZlSCwAkfAhNSOxfd5GAdcm/63Noi4TowOY9MpcDg==
+ /@rollup/plugin-node-resolve/7.0.0_rollup@1.28.0:
+ dependencies:
+ '@rollup/pluginutils': 3.0.3_rollup@1.28.0
+ '@types/resolve': 0.0.8
+ builtin-modules: 3.1.0
+ is-module: 1.0.0
+ resolve: 1.14.2
+ rollup: 1.28.0
+ dev: true
+ engines:
+ node: '>= 8.0.0'
+ peerDependencies:
+ rollup: ^1.20.0
+ resolution:
+ integrity: sha512-+vOx2+WMBMFotYKM3yYeDGZxIvcQ7yO4g+SuKDFsjKaq8Lw3EPgfB6qNlp8Z/3ceDCEhHvC9/b+PgBGwDQGbzQ==
+ /@rollup/plugin-typescript/2.1.0_ca691995134bf487bfab5c2028cfaede:
+ dependencies:
+ '@rollup/pluginutils': 3.0.3_rollup@1.28.0
+ resolve: 1.14.2
+ rollup: 1.28.0
+ tslib: 1.10.0
+ typescript: 3.7.4
+ dev: true
+ engines:
+ node: '>=8.0.0'
+ peerDependencies:
+ rollup: ^1.20.0
+ tslib: '*'
+ typescript: '>=2.1.0'
+ resolution:
+ integrity: sha512-7lXKGY06aofrceVez/YnN2axttFdHSqlUBpCJ6ebzDfxwLDKMgSV5lD4ykBcdgE7aK3egxuLkD/HKyRB5L8Log==
+ /@rollup/plugin-url/4.0.1_rollup@1.28.0:
+ dependencies:
+ make-dir: 3.0.0
+ mime: 2.4.4
+ rollup: 1.28.0
+ rollup-pluginutils: 2.8.2
+ dev: true
+ engines:
+ node: '>=8.0.0'
+ peerDependencies:
+ rollup: ^1.20.0
+ resolution:
+ integrity: sha512-YnG65fkm+O7W2X4wsoCn6daxWlBuHjWhDB8yZbErceVEUUgyRU++JK3RatwmvGyOaKzw41gUMLQLz7k6+W5/ww==
+ /@rollup/pluginutils/3.0.3_rollup@1.28.0:
+ dependencies:
+ estree-walker: 0.6.1
+ rollup: 1.28.0
+ dev: true
+ engines:
+ node: '>= 8.0.0'
+ peerDependencies:
+ rollup: ^1.20.0
+ resolution:
+ integrity: sha512-lxys3KlfYU8LOGu7+UL2upa3kM9q8ISo4EK+vSqqJCLk6N74HsUZbUFiElolh4BUsv0jeMGtYDzpNrtrShE6Gg==
+ /@svgr/babel-plugin-add-jsx-attribute/4.2.0:
+ dev: true
+ engines:
+ node: '>=8'
+ resolution:
+ integrity: sha512-j7KnilGyZzYr/jhcrSYS3FGWMZVaqyCG0vzMCwzvei0coIkczuYMcniK07nI0aHJINciujjH11T72ICW5eL5Ig==
+ /@svgr/babel-plugin-add-jsx-attribute/5.0.1:
+ dev: true
+ engines:
+ node: '>=10'
+ resolution:
+ integrity: sha512-av76JbSudaN2CUOGuKQp5BVqLFidtojg4ApRTg1PBOVsskXK2ORwKnBYhIu0JLA6ynmuNDprlHNCD6IwLiYidw==
+ /@svgr/babel-plugin-remove-jsx-attribute/4.2.0:
+ dev: true
+ engines:
+ node: '>=8'
+ resolution:
+ integrity: sha512-3XHLtJ+HbRCH4n28S7y/yZoEQnRpl0tvTZQsHqvaeNXPra+6vE5tbRliH3ox1yZYPCxrlqaJT/Mg+75GpDKlvQ==
+ /@svgr/babel-plugin-remove-jsx-attribute/5.0.1:
+ dev: true
+ engines:
+ node: '>=10'
+ resolution:
+ integrity: sha512-oXyByaDQEK4Ut/eC75698MDKnaadbWmp/LS2w22cZAaoObCkkiwYYgZTZ+bvb3moo//AxvKkBtNrlz6+xBb9ZQ==
+ /@svgr/babel-plugin-remove-jsx-empty-expression/4.2.0:
+ dev: true
+ engines:
+ node: '>=8'
+ resolution:
+ integrity: sha512-yTr2iLdf6oEuUE9MsRdvt0NmdpMBAkgK8Bjhl6epb+eQWk6abBaX3d65UZ3E3FWaOwePyUgNyNCMVG61gGCQ7w==
+ /@svgr/babel-plugin-remove-jsx-empty-expression/5.0.1:
+ dev: true
+ engines:
+ node: '>=10'
+ resolution:
+ integrity: sha512-LA72+88A11ND/yFIMzyuLRSMJ+tRKeYKeQ+mR3DcAZ5I4h5CPWN9AHyUzJbWSYp/u2u0xhmgOe0+E41+GjEueA==
+ /@svgr/babel-plugin-replace-jsx-attribute-value/4.2.0:
+ dev: true
+ engines:
+ node: '>=8'
+ resolution:
+ integrity: sha512-U9m870Kqm0ko8beHawRXLGLvSi/ZMrl89gJ5BNcT452fAjtF2p4uRzXkdzvGJJJYBgx7BmqlDjBN/eCp5AAX2w==
+ /@svgr/babel-plugin-replace-jsx-attribute-value/5.0.1:
+ dev: true
+ engines:
+ node: '>=10'
+ resolution:
+ integrity: sha512-PoiE6ZD2Eiy5mK+fjHqwGOS+IXX0wq/YDtNyIgOrc6ejFnxN4b13pRpiIPbtPwHEc+NT2KCjteAcq33/F1Y9KQ==
+ /@svgr/babel-plugin-svg-dynamic-title/4.3.3:
+ dev: true
+ engines:
+ node: '>=8'
+ resolution:
+ integrity: sha512-w3Be6xUNdwgParsvxkkeZb545VhXEwjGMwExMVBIdPQJeyMQHqm9Msnb2a1teHBqUYL66qtwfhNkbj1iarCG7w==
+ /@svgr/babel-plugin-svg-dynamic-title/5.0.1:
+ dev: true
+ engines:
+ node: '>=10'
+ resolution:
+ integrity: sha512-IbFiDBvq5WpANPndjEom1Y9k1pHCNfJs87jCN1Lt8NEA7yrNVPSoAjBVmmfi0aVBERfp8IT/lgjn2a/S85lXGg==
+ /@svgr/babel-plugin-svg-em-dimensions/4.2.0:
+ dev: true
+ engines:
+ node: '>=8'
+ resolution:
+ integrity: sha512-C0Uy+BHolCHGOZ8Dnr1zXy/KgpBOkEUYY9kI/HseHVPeMbluaX3CijJr7D4C5uR8zrc1T64nnq/k63ydQuGt4w==
+ /@svgr/babel-plugin-svg-em-dimensions/5.0.1:
+ dev: true
+ engines:
+ node: '>=10'
+ resolution:
+ integrity: sha512-7kL9LtqCm1ca+zAbBsrD4ME3EQeVcRxkdrf2GsbKPgkzWJ+399vS4VqCP462+WvFRbG13jSwpNCrvhekdyvXsA==
+ /@svgr/babel-plugin-transform-react-native-svg/4.2.0:
+ dev: true
+ engines:
+ node: '>=8'
+ resolution:
+ integrity: sha512-7YvynOpZDpCOUoIVlaaOUU87J4Z6RdD6spYN4eUb5tfPoKGSF9OG2NuhgYnq4jSkAxcpMaXWPf1cePkzmqTPNw==
+ /@svgr/babel-plugin-transform-react-native-svg/5.0.1:
+ dev: true
+ engines:
+ node: '>=10'
+ resolution:
+ integrity: sha512-ITG1jJ0zHQ4yft6ISQqlMW4fHIzsrSB/FmrMxAcJtkTjh9M2/9M8wfKxQya9NnTfZ5WMSlQjXMQNZmGQsuxRrw==
+ /@svgr/babel-plugin-transform-svg-component/4.2.0:
+ dev: true
+ engines:
+ node: '>=8'
+ resolution:
+ integrity: sha512-hYfYuZhQPCBVotABsXKSCfel2slf/yvJY8heTVX1PCTaq/IgASq1IyxPPKJ0chWREEKewIU/JMSsIGBtK1KKxw==
+ /@svgr/babel-plugin-transform-svg-component/5.0.1:
+ dev: true
+ engines:
+ node: '>=10'
+ resolution:
+ integrity: sha512-TYJ5L0QJgWqeMnuc8GEVy2jorwj/jp7y/mGLPwJhNrvrtAuVN7wEvc/Dzi1o1krsKKN7h6WpW/w3AQ6Na7qYEw==
+ /@svgr/babel-preset/4.3.3:
+ dependencies:
+ '@svgr/babel-plugin-add-jsx-attribute': 4.2.0
+ '@svgr/babel-plugin-remove-jsx-attribute': 4.2.0
+ '@svgr/babel-plugin-remove-jsx-empty-expression': 4.2.0
+ '@svgr/babel-plugin-replace-jsx-attribute-value': 4.2.0
+ '@svgr/babel-plugin-svg-dynamic-title': 4.3.3
+ '@svgr/babel-plugin-svg-em-dimensions': 4.2.0
+ '@svgr/babel-plugin-transform-react-native-svg': 4.2.0
+ '@svgr/babel-plugin-transform-svg-component': 4.2.0
+ dev: true
+ engines:
+ node: '>=8'
+ resolution:
+ integrity: sha512-6PG80tdz4eAlYUN3g5GZiUjg2FMcp+Wn6rtnz5WJG9ITGEF1pmFdzq02597Hn0OmnQuCVaBYQE1OVFAnwOl+0A==
+ /@svgr/babel-preset/5.0.1:
+ dependencies:
+ '@svgr/babel-plugin-add-jsx-attribute': 5.0.1
+ '@svgr/babel-plugin-remove-jsx-attribute': 5.0.1
+ '@svgr/babel-plugin-remove-jsx-empty-expression': 5.0.1
+ '@svgr/babel-plugin-replace-jsx-attribute-value': 5.0.1
+ '@svgr/babel-plugin-svg-dynamic-title': 5.0.1
+ '@svgr/babel-plugin-svg-em-dimensions': 5.0.1
+ '@svgr/babel-plugin-transform-react-native-svg': 5.0.1
+ '@svgr/babel-plugin-transform-svg-component': 5.0.1
+ dev: true
+ engines:
+ node: '>=10'
+ resolution:
+ integrity: sha512-V2u6rAHLD//0xu+p/Il6laOLfuU5ySpaU1t2HBBXsRp6G9GTTNpAjxUw0iRulfd56AoWcr2j+Fap/J1yz/cx0w==
+ /@svgr/core/4.3.3:
+ dependencies:
+ '@svgr/plugin-jsx': 4.3.3
+ camelcase: 5.3.1
+ cosmiconfig: 5.2.1
+ dev: true
+ engines:
+ node: '>=8'
+ resolution:
+ integrity: sha512-qNuGF1QON1626UCaZamWt5yedpgOytvLj5BQZe2j1k1B8DUG4OyugZyfEwBeXozCUwhLEpsrgPrE+eCu4fY17w==
+ /@svgr/core/5.0.1:
+ dependencies:
+ '@svgr/plugin-jsx': 5.0.1
+ camelcase: 5.3.1
+ cosmiconfig: 6.0.0
+ dev: true
+ engines:
+ node: '>=10'
+ resolution:
+ integrity: sha512-F/HXJpKbN6Cab31ngiSFiUXYV9y+yiJaDaOZuc7Yqzc19+ncIrM+wSKoytjwcwc+Haj8gvEHsPqRX9L4yM1ftA==
+ /@svgr/hast-util-to-babel-ast/4.3.2:
+ dependencies:
+ '@babel/types': 7.7.4
+ dev: true
+ engines:
+ node: '>=8'
+ resolution:
+ integrity: sha512-JioXclZGhFIDL3ddn4Kiq8qEqYM2PyDKV0aYno8+IXTLuYt6TOgHUbUAAFvqtb0Xn37NwP0BTHglejFoYr8RZg==
+ /@svgr/hast-util-to-babel-ast/5.0.1:
+ dependencies:
+ '@babel/types': 7.7.4
+ dev: true
+ engines:
+ node: '>=10'
+ resolution:
+ integrity: sha512-G7UHNPNhLyDK5p6RJvSh4TRpHszTxG8jPp5lAxC6Ez6O6rj1plEAjrCDdYj50mvilUuT9IKjqn87F8+agpKaSw==
+ /@svgr/plugin-jsx/4.3.3:
+ dependencies:
+ '@babel/core': 7.7.7
+ '@svgr/babel-preset': 4.3.3
+ '@svgr/hast-util-to-babel-ast': 4.3.2
+ svg-parser: 2.0.2
+ dev: true
+ engines:
+ node: '>=8'
+ resolution:
+ integrity: sha512-cLOCSpNWQnDB1/v+SUENHH7a0XY09bfuMKdq9+gYvtuwzC2rU4I0wKGFEp1i24holdQdwodCtDQdFtJiTCWc+w==
+ /@svgr/plugin-jsx/5.0.1:
+ dependencies:
+ '@babel/core': 7.7.7
+ '@svgr/babel-preset': 5.0.1
+ '@svgr/hast-util-to-babel-ast': 5.0.1
+ svg-parser: 2.0.2
+ dev: true
+ engines:
+ node: '>=10'
+ resolution:
+ integrity: sha512-9mEinzosJshc/VdLqVkoBZQgs2d+ASbL61sX/2XCxcJ+/81KXdZcxmxSycJN37BvlM7F5fuj2ZF7IZwZ7ZOKaQ==
+ /@svgr/plugin-svgo/4.3.1:
+ dependencies:
+ cosmiconfig: 5.2.1
+ merge-deep: 3.0.2
+ svgo: 1.3.2
+ dev: true
+ engines:
+ node: '>=8'
+ resolution:
+ integrity: sha512-PrMtEDUWjX3Ea65JsVCwTIXuSqa3CG9px+DluF1/eo9mlDrgrtFE7NE/DjdhjJgSM9wenlVBzkzneSIUgfUI/w==
+ /@svgr/plugin-svgo/5.0.1:
+ dependencies:
+ cosmiconfig: 6.0.0
+ merge-deep: 3.0.2
+ svgo: 1.3.2
+ dev: true
+ engines:
+ node: '>=10'
+ resolution:
+ integrity: sha512-h/V30j1swWANLV1mB0w+1YYZ0U0CnWm721xyUKVHJrvMe4wl5XronZdvVAD2hhQf9+JgaQARrRJ0Vg1Dxi+SFg==
+ /@svgr/rollup/5.0.1:
+ dependencies:
+ '@babel/core': 7.7.7
+ '@babel/plugin-transform-react-constant-elements': 7.7.4_@babel+core@7.7.7
+ '@babel/preset-env': 7.7.7_@babel+core@7.7.7
+ '@babel/preset-react': 7.7.4_@babel+core@7.7.7
+ '@svgr/core': 5.0.1
+ '@svgr/plugin-jsx': 5.0.1
+ '@svgr/plugin-svgo': 5.0.1
+ rollup-pluginutils: 2.8.2
+ dev: true
+ engines:
+ node: '>=10'
+ resolution:
+ integrity: sha512-rCrbJNjsvNUWRjWxRiTD/nrWu6URp0a/HImou0cklJLhAhqSG0vD6HPhcfRsvkXxNAp/O7SDpu/1E0dhzuJGxg==
+ /@svgr/webpack/4.3.3:
+ dependencies:
+ '@babel/core': 7.7.7
+ '@babel/plugin-transform-react-constant-elements': 7.7.4_@babel+core@7.7.7
+ '@babel/preset-env': 7.7.7_@babel+core@7.7.7
+ '@babel/preset-react': 7.7.4_@babel+core@7.7.7
+ '@svgr/core': 4.3.3
+ '@svgr/plugin-jsx': 4.3.3
+ '@svgr/plugin-svgo': 4.3.1
+ loader-utils: 1.2.3
+ dev: true
+ engines:
+ node: '>=8'
+ resolution:
+ integrity: sha512-bjnWolZ6KVsHhgyCoYRFmbd26p8XVbulCzSG53BDQqAr+JOAderYK7CuYrB3bDjHJuF6LJ7Wrr42+goLRV9qIg==
+ /@types/babel__core/7.1.3:
+ dependencies:
+ '@babel/parser': 7.7.7
+ '@babel/types': 7.7.4
+ '@types/babel__generator': 7.6.1
+ '@types/babel__template': 7.0.2
+ '@types/babel__traverse': 7.0.8
+ dev: true
+ resolution:
+ integrity: sha512-8fBo0UR2CcwWxeX7WIIgJ7lXjasFxoYgRnFHUj+hRvKkpiBJbxhdAPTCY6/ZKM0uxANFVzt4yObSLuTiTnazDA==
+ /@types/babel__generator/7.6.1:
+ dependencies:
+ '@babel/types': 7.7.4
+ dev: true
+ resolution:
+ integrity: sha512-bBKm+2VPJcMRVwNhxKu8W+5/zT7pwNEqeokFOmbvVSqGzFneNxYcEBro9Ac7/N9tlsaPYnZLK8J1LWKkMsLAew==
+ /@types/babel__template/7.0.2:
+ dependencies:
+ '@babel/parser': 7.7.7
+ '@babel/types': 7.7.4
+ dev: true
+ resolution:
+ integrity: sha512-/K6zCpeW7Imzgab2bLkLEbz0+1JlFSrUMdw7KoIIu+IUdu51GWaBZpd3y1VXGVXzynvGa4DaIaxNZHiON3GXUg==
+ /@types/babel__traverse/7.0.8:
+ dependencies:
+ '@babel/types': 7.7.4
+ dev: true
+ resolution:
+ integrity: sha512-yGeB2dHEdvxjP0y4UbRtQaSkXJ9649fYCmIdRoul5kfAoGCwxuCbMhag0k3RPfnuh9kPGm8x89btcfDEXdVWGw==
+ /@types/color-name/1.1.1:
+ dev: true
+ resolution:
+ integrity: sha512-rr+OQyAjxze7GgWrSaJwydHStIhHq2lvY3BOC2Mj7KnzI7XK0Uw1TOOdI9lDoajEbSWLiYgoo4f1R51erQfhPQ==
+ /@types/eslint-visitor-keys/1.0.0:
+ dev: true
+ resolution:
+ integrity: sha512-OCutwjDZ4aFS6PB1UZ988C4YgwlBHJd6wCeQqaLdmadZ/7e+w79+hbMUFC1QXDNCmdyoRfAFdm0RypzwR+Qpag==
+ /@types/estree/0.0.39:
+ dev: true
+ resolution:
+ integrity: sha512-EYNwp3bU+98cpU4lAWYYL7Zz+2gryWH1qbdDTidVd6hkiR6weksdbMadyXKXNPEkQFhXM+hVO9ZygomHXp+AIw==
+ /@types/estree/0.0.41:
+ dev: true
+ resolution:
+ integrity: sha512-rIAmXyJlqw4KEBO7+u9gxZZSQHaCNnIzYrnNmYVpgfJhxTqO0brCX0SYpqUTkVI5mwwUwzmtspLBGBKroMeynA==
+ /@types/events/3.0.0:
+ dev: true
+ resolution:
+ integrity: sha512-EaObqwIvayI5a8dCzhFrjKzVwKLxjoG9T6Ppd5CEo07LRKfQ8Yokw54r5+Wq7FaBQ+yXRvQAYPrHwya1/UFt9g==
+ /@types/glob/7.1.1:
+ dependencies:
+ '@types/events': 3.0.0
+ '@types/minimatch': 3.0.3
+ '@types/node': 13.1.4
+ dev: true
+ resolution:
+ integrity: sha512-1Bh06cbWJUHMC97acuD6UMG29nMt0Aqz1vF3guLfG+kHHJhy3AyohZFFxYk2f7Q1SQIrNwvncxAE0N/9s70F2w==
+ /@types/istanbul-lib-coverage/2.0.1:
+ dev: true
+ resolution:
+ integrity: sha512-hRJD2ahnnpLgsj6KWMYSrmXkM3rm2Dl1qkx6IOFD5FnuNPXJIG5L0dhgKXCYTRMGzU4n0wImQ/xfmRc4POUFlg==
+ /@types/istanbul-lib-report/1.1.1:
+ dependencies:
+ '@types/istanbul-lib-coverage': 2.0.1
+ dev: true
+ resolution:
+ integrity: sha512-3BUTyMzbZa2DtDI2BkERNC6jJw2Mr2Y0oGI7mRxYNBPxppbtEK1F66u3bKwU2g+wxwWI7PAoRpJnOY1grJqzHg==
+ /@types/istanbul-reports/1.1.1:
+ dependencies:
+ '@types/istanbul-lib-coverage': 2.0.1
+ '@types/istanbul-lib-report': 1.1.1
+ dev: true
+ resolution:
+ integrity: sha512-UpYjBi8xefVChsCoBpKShdxTllC9pwISirfoZsUa2AAdQg/Jd2KQGtSbw+ya7GPo7x/wAPlH6JBhKhAsXUEZNA==
+ /@types/jest/24.0.25:
+ dependencies:
+ jest-diff: 24.9.0
+ dev: true
+ resolution:
+ integrity: sha512-hnP1WpjN4KbGEK4dLayul6lgtys6FPz0UfxMeMQCv0M+sTnzN3ConfiO72jHgLxl119guHgI8gLqDOrRLsyp2g==
+ /@types/json-schema/7.0.4:
+ dev: true
+ resolution:
+ integrity: sha512-8+KAKzEvSUdeo+kmqnKrqgeE+LcA0tjYWFY7RPProVYwnqDjukzO+3b6dLD56rYX5TdWejnEOLJYOIeh4CXKuA==
+ /@types/minimatch/3.0.3:
+ dev: true
+ resolution:
+ integrity: sha512-tHq6qdbT9U1IRSGf14CL0pUlULksvY9OZ+5eEgl1N7t+OA3tGvNpxJCzuKQlsNgCVwbAs670L1vcVQi8j9HjnA==
+ /@types/node/13.1.4:
+ dev: true
+ resolution:
+ integrity: sha512-Lue/mlp2egZJoHXZr4LndxDAd7i/7SQYhV0EjWfb/a4/OZ6tuVwMCVPiwkU5nsEipxEf7hmkSU7Em5VQ8P5NGA==
+ /@types/parse-json/4.0.0:
+ dev: true
+ resolution:
+ integrity: sha512-//oorEZjL6sbPcKUaCdIGlIUeH26mgzimjBB77G6XRgnDl/L5wOnpyBGRe/Mmf5CVW3PwEBE1NjiMZ/ssFh4wA==
+ /@types/prop-types/15.7.3:
+ dev: true
+ resolution:
+ integrity: sha512-KfRL3PuHmqQLOG+2tGpRO26Ctg+Cq1E01D2DMriKEATHgWLfeNDmq9e29Q9WIky0dQ3NPkd1mzYH8Lm936Z9qw==
+ /@types/q/1.5.2:
+ dev: true
+ resolution:
+ integrity: sha512-ce5d3q03Ex0sy4R14722Rmt6MT07Ua+k4FwDfdcToYJcMKNtRVQvJ6JCAPdAmAnbRb6CsX6aYb9m96NGod9uTw==
+ /@types/react-dom/16.9.4:
+ dependencies:
+ '@types/react': 16.9.17
+ dev: true
+ resolution:
+ integrity: sha512-fya9xteU/n90tda0s+FtN5Ym4tbgxpq/hb/Af24dvs6uYnYn+fspaxw5USlw0R8apDNwxsqumdRoCoKitckQqw==
+ /@types/react/16.9.17:
+ dependencies:
+ '@types/prop-types': 15.7.3
+ csstype: 2.6.8
+ dev: true
+ resolution:
+ integrity: sha512-UP27In4fp4sWF5JgyV6pwVPAQM83Fj76JOcg02X5BZcpSu5Wx+fP9RMqc2v0ssBoQIFvD5JdKY41gjJJKmw6Bg==
+ /@types/resolve/0.0.8:
+ dependencies:
+ '@types/node': 13.1.4
+ dev: true
+ resolution:
+ integrity: sha512-auApPaJf3NPfe18hSoJkp8EbZzer2ISk7o8mCC3M9he/a04+gbMF97NkpD2S8riMGvm4BMRI59/SZQSaLTKpsQ==
+ /@types/stack-utils/1.0.1:
+ dev: true
+ resolution:
+ integrity: sha512-l42BggppR6zLmpfU6fq9HEa2oGPEI8yrSPL3GITjfRInppYFahObbIQOQK3UGxEnyQpltZLaPe75046NOZQikw==
+ /@types/yargs-parser/13.1.0:
+ dev: true
+ resolution:
+ integrity: sha512-gCubfBUZ6KxzoibJ+SCUc/57Ms1jz5NjHe4+dI2krNmU5zCPAphyLJYyTOg06ueIyfj+SaCUqmzun7ImlxDcKg==
+ /@types/yargs/13.0.4:
+ dependencies:
+ '@types/yargs-parser': 13.1.0
+ dev: true
+ resolution:
+ integrity: sha512-Ke1WmBbIkVM8bpvsNEcGgQM70XcEh/nbpxQhW7FhrsbCsXSY9BmLB1+LHtD7r9zrsOcFlLiF+a/UeJsdfw3C5A==
+ /@typescript-eslint/eslint-plugin/2.15.0_17206d85cb7d94075d48587653b09c73:
+ dependencies:
+ '@typescript-eslint/experimental-utils': 2.15.0_eslint@6.8.0+typescript@3.7.4
+ '@typescript-eslint/parser': 2.15.0_eslint@6.8.0+typescript@3.7.4
+ eslint: 6.8.0
+ eslint-utils: 1.4.3
+ functional-red-black-tree: 1.0.1
+ regexpp: 3.0.0
+ tsutils: 3.17.1_typescript@3.7.4
+ typescript: 3.7.4
+ dev: true
+ engines:
+ node: ^8.10.0 || ^10.13.0 || >=11.10.1
+ peerDependencies:
+ '@typescript-eslint/parser': ^2.0.0
+ eslint: ^5.0.0 || ^6.0.0
+ typescript: '*'
+ peerDependenciesMeta:
+ typescript:
+ optional: true
+ resolution:
+ integrity: sha512-XRJFznI5v4K1WvIrWmjFjBAdQWaUTz4xJEdqR7+wAFsv6Q9dP3mOlE6BMNT3pdlp9eF1+bC5m5LZTmLMqffCVw==
+ /@typescript-eslint/experimental-utils/1.13.0_eslint@5.16.0:
+ dependencies:
+ '@types/json-schema': 7.0.4
+ '@typescript-eslint/typescript-estree': 1.13.0
+ eslint: 5.16.0
+ eslint-scope: 4.0.3
+ dev: true
+ engines:
+ node: ^6.14.0 || ^8.10.0 || >=9.10.0
+ peerDependencies:
+ eslint: '*'
+ resolution:
+ integrity: sha512-zmpS6SyqG4ZF64ffaJ6uah6tWWWgZ8m+c54XXgwFtUv0jNz8aJAVx8chMCvnk7yl6xwn8d+d96+tWp7fXzTuDg==
+ /@typescript-eslint/experimental-utils/2.15.0_eslint@6.8.0+typescript@3.7.4:
+ dependencies:
+ '@types/json-schema': 7.0.4
+ '@typescript-eslint/typescript-estree': 2.15.0_typescript@3.7.4
+ eslint: 6.8.0
+ eslint-scope: 5.0.0
+ dev: true
+ engines:
+ node: ^8.10.0 || ^10.13.0 || >=11.10.1
+ peerDependencies:
+ eslint: '*'
+ typescript: '*'
+ resolution:
+ integrity: sha512-Qkxu5zndY5hqlcQkmA88gfLvqQulMpX/TN91XC7OuXsRf4XG5xLGie0sbpX97o/oeccjeZYRMipIsjKk/tjDHA==
+ /@typescript-eslint/parser/1.13.0_eslint@5.16.0:
+ dependencies:
+ '@types/eslint-visitor-keys': 1.0.0
+ '@typescript-eslint/experimental-utils': 1.13.0_eslint@5.16.0
+ '@typescript-eslint/typescript-estree': 1.13.0
+ eslint: 5.16.0
+ eslint-visitor-keys: 1.1.0
+ dev: true
+ engines:
+ node: ^6.14.0 || ^8.10.0 || >=9.10.0
+ peerDependencies:
+ eslint: ^5.0.0
+ resolution:
+ integrity: sha512-ITMBs52PCPgLb2nGPoeT4iU3HdQZHcPaZVw+7CsFagRJHUhyeTgorEwHXhFf3e7Evzi8oujKNpHc8TONth8AdQ==
+ /@typescript-eslint/parser/2.15.0_eslint@6.8.0+typescript@3.7.4:
+ dependencies:
+ '@types/eslint-visitor-keys': 1.0.0
+ '@typescript-eslint/experimental-utils': 2.15.0_eslint@6.8.0+typescript@3.7.4
+ '@typescript-eslint/typescript-estree': 2.15.0_typescript@3.7.4
+ eslint: 6.8.0
+ eslint-visitor-keys: 1.1.0
+ typescript: 3.7.4
+ dev: true
+ engines:
+ node: ^8.10.0 || ^10.13.0 || >=11.10.1
+ peerDependencies:
+ eslint: ^5.0.0 || ^6.0.0
+ typescript: '*'
+ peerDependenciesMeta:
+ typescript:
+ optional: true
+ resolution:
+ integrity: sha512-6iSgQsqAYTaHw59t0tdjzZJluRAjswdGltzKEdLtcJOxR2UVTPHYvZRqkAVGCkaMVb6Fpa60NnuozNCvsSpA9g==
+ /@typescript-eslint/typescript-estree/1.13.0:
+ dependencies:
+ lodash.unescape: 4.0.1
+ semver: 5.5.0
+ dev: true
+ engines:
+ node: '>=6.14.0'
+ resolution:
+ integrity: sha512-b5rCmd2e6DCC6tCTN9GSUAuxdYwCM/k/2wdjHGrIRGPSJotWMCe/dGpi66u42bhuh8q3QBzqM4TMA1GUUCJvdw==
+ /@typescript-eslint/typescript-estree/2.15.0_typescript@3.7.4:
+ dependencies:
+ debug: 4.1.1
+ eslint-visitor-keys: 1.1.0
+ glob: 7.1.6
+ is-glob: 4.0.1
+ lodash.unescape: 4.0.1
+ semver: 6.3.0
+ tsutils: 3.17.1_typescript@3.7.4
+ typescript: 3.7.4
+ dev: true
+ engines:
+ node: ^8.10.0 || ^10.13.0 || >=11.10.1
+ peerDependencies:
+ typescript: '*'
+ peerDependenciesMeta:
+ typescript:
+ optional: true
+ resolution:
+ integrity: sha512-L6Pog+w3VZzXkAdyqA0VlwybF8WcwZX+mufso86CMxSdWmcizJ38lgBdpqTbc9bo92iyi0rOvmATKiwl+amjxg==
+ /@webassemblyjs/ast/1.8.5:
+ dependencies:
+ '@webassemblyjs/helper-module-context': 1.8.5
+ '@webassemblyjs/helper-wasm-bytecode': 1.8.5
+ '@webassemblyjs/wast-parser': 1.8.5
+ dev: true
+ resolution:
+ integrity: sha512-aJMfngIZ65+t71C3y2nBBg5FFG0Okt9m0XEgWZ7Ywgn1oMAT8cNwx00Uv1cQyHtidq0Xn94R4TAywO+LCQ+ZAQ==
+ /@webassemblyjs/floating-point-hex-parser/1.8.5:
+ dev: true
+ resolution:
+ integrity: sha512-9p+79WHru1oqBh9ewP9zW95E3XAo+90oth7S5Re3eQnECGq59ly1Ri5tsIipKGpiStHsUYmY3zMLqtk3gTcOtQ==
+ /@webassemblyjs/helper-api-error/1.8.5:
+ dev: true
+ resolution:
+ integrity: sha512-Za/tnzsvnqdaSPOUXHyKJ2XI7PDX64kWtURyGiJJZKVEdFOsdKUCPTNEVFZq3zJ2R0G5wc2PZ5gvdTRFgm81zA==
+ /@webassemblyjs/helper-buffer/1.8.5:
+ dev: true
+ resolution:
+ integrity: sha512-Ri2R8nOS0U6G49Q86goFIPNgjyl6+oE1abW1pS84BuhP1Qcr5JqMwRFT3Ah3ADDDYGEgGs1iyb1DGX+kAi/c/Q==
+ /@webassemblyjs/helper-code-frame/1.8.5:
+ dependencies:
+ '@webassemblyjs/wast-printer': 1.8.5
+ dev: true
+ resolution:
+ integrity: sha512-VQAadSubZIhNpH46IR3yWO4kZZjMxN1opDrzePLdVKAZ+DFjkGD/rf4v1jap744uPVU6yjL/smZbRIIJTOUnKQ==
+ /@webassemblyjs/helper-fsm/1.8.5:
+ dev: true
+ resolution:
+ integrity: sha512-kRuX/saORcg8se/ft6Q2UbRpZwP4y7YrWsLXPbbmtepKr22i8Z4O3V5QE9DbZK908dh5Xya4Un57SDIKwB9eow==
+ /@webassemblyjs/helper-module-context/1.8.5:
+ dependencies:
+ '@webassemblyjs/ast': 1.8.5
+ mamacro: 0.0.3
+ dev: true
+ resolution:
+ integrity: sha512-/O1B236mN7UNEU4t9X7Pj38i4VoU8CcMHyy3l2cV/kIF4U5KoHXDVqcDuOs1ltkac90IM4vZdHc52t1x8Yfs3g==
+ /@webassemblyjs/helper-wasm-bytecode/1.8.5:
+ dev: true
+ resolution:
+ integrity: sha512-Cu4YMYG3Ddl72CbmpjU/wbP6SACcOPVbHN1dI4VJNJVgFwaKf1ppeFJrwydOG3NDHxVGuCfPlLZNyEdIYlQ6QQ==
+ /@webassemblyjs/helper-wasm-section/1.8.5:
+ dependencies:
+ '@webassemblyjs/ast': 1.8.5
+ '@webassemblyjs/helper-buffer': 1.8.5
+ '@webassemblyjs/helper-wasm-bytecode': 1.8.5
+ '@webassemblyjs/wasm-gen': 1.8.5
+ dev: true
+ resolution:
+ integrity: sha512-VV083zwR+VTrIWWtgIUpqfvVdK4ff38loRmrdDBgBT8ADXYsEZ5mPQ4Nde90N3UYatHdYoDIFb7oHzMncI02tA==
+ /@webassemblyjs/ieee754/1.8.5:
+ dependencies:
+ '@xtuc/ieee754': 1.2.0
+ dev: true
+ resolution:
+ integrity: sha512-aaCvQYrvKbY/n6wKHb/ylAJr27GglahUO89CcGXMItrOBqRarUMxWLJgxm9PJNuKULwN5n1csT9bYoMeZOGF3g==
+ /@webassemblyjs/leb128/1.8.5:
+ dependencies:
+ '@xtuc/long': 4.2.2
+ dev: true
+ resolution:
+ integrity: sha512-plYUuUwleLIziknvlP8VpTgO4kqNaH57Y3JnNa6DLpu/sGcP6hbVdfdX5aHAV716pQBKrfuU26BJK29qY37J7A==
+ /@webassemblyjs/utf8/1.8.5:
+ dev: true
+ resolution:
+ integrity: sha512-U7zgftmQriw37tfD934UNInokz6yTmn29inT2cAetAsaU9YeVCveWEwhKL1Mg4yS7q//NGdzy79nlXh3bT8Kjw==
+ /@webassemblyjs/wasm-edit/1.8.5:
+ dependencies:
+ '@webassemblyjs/ast': 1.8.5
+ '@webassemblyjs/helper-buffer': 1.8.5
+ '@webassemblyjs/helper-wasm-bytecode': 1.8.5
+ '@webassemblyjs/helper-wasm-section': 1.8.5
+ '@webassemblyjs/wasm-gen': 1.8.5
+ '@webassemblyjs/wasm-opt': 1.8.5
+ '@webassemblyjs/wasm-parser': 1.8.5
+ '@webassemblyjs/wast-printer': 1.8.5
+ dev: true
+ resolution:
+ integrity: sha512-A41EMy8MWw5yvqj7MQzkDjU29K7UJq1VrX2vWLzfpRHt3ISftOXqrtojn7nlPsZ9Ijhp5NwuODuycSvfAO/26Q==
+ /@webassemblyjs/wasm-gen/1.8.5:
+ dependencies:
+ '@webassemblyjs/ast': 1.8.5
+ '@webassemblyjs/helper-wasm-bytecode': 1.8.5
+ '@webassemblyjs/ieee754': 1.8.5
+ '@webassemblyjs/leb128': 1.8.5
+ '@webassemblyjs/utf8': 1.8.5
+ dev: true
+ resolution:
+ integrity: sha512-BCZBT0LURC0CXDzj5FXSc2FPTsxwp3nWcqXQdOZE4U7h7i8FqtFK5Egia6f9raQLpEKT1VL7zr4r3+QX6zArWg==
+ /@webassemblyjs/wasm-opt/1.8.5:
+ dependencies:
+ '@webassemblyjs/ast': 1.8.5
+ '@webassemblyjs/helper-buffer': 1.8.5
+ '@webassemblyjs/wasm-gen': 1.8.5
+ '@webassemblyjs/wasm-parser': 1.8.5
+ dev: true
+ resolution:
+ integrity: sha512-HKo2mO/Uh9A6ojzu7cjslGaHaUU14LdLbGEKqTR7PBKwT6LdPtLLh9fPY33rmr5wcOMrsWDbbdCHq4hQUdd37Q==
+ /@webassemblyjs/wasm-parser/1.8.5:
+ dependencies:
+ '@webassemblyjs/ast': 1.8.5
+ '@webassemblyjs/helper-api-error': 1.8.5
+ '@webassemblyjs/helper-wasm-bytecode': 1.8.5
+ '@webassemblyjs/ieee754': 1.8.5
+ '@webassemblyjs/leb128': 1.8.5
+ '@webassemblyjs/utf8': 1.8.5
+ dev: true
+ resolution:
+ integrity: sha512-pi0SYE9T6tfcMkthwcgCpL0cM9nRYr6/6fjgDtL6q/ZqKHdMWvxitRi5JcZ7RI4SNJJYnYNaWy5UUrHQy998lw==
+ /@webassemblyjs/wast-parser/1.8.5:
+ dependencies:
+ '@webassemblyjs/ast': 1.8.5
+ '@webassemblyjs/floating-point-hex-parser': 1.8.5
+ '@webassemblyjs/helper-api-error': 1.8.5
+ '@webassemblyjs/helper-code-frame': 1.8.5
+ '@webassemblyjs/helper-fsm': 1.8.5
+ '@xtuc/long': 4.2.2
+ dev: true
+ resolution:
+ integrity: sha512-daXC1FyKWHF1i11obK086QRlsMsY4+tIOKgBqI1lxAnkp9xe9YMcgOxm9kLe+ttjs5aWV2KKE1TWJCN57/Btsg==
+ /@webassemblyjs/wast-printer/1.8.5:
+ dependencies:
+ '@webassemblyjs/ast': 1.8.5
+ '@webassemblyjs/wast-parser': 1.8.5
+ '@xtuc/long': 4.2.2
+ dev: true
+ resolution:
+ integrity: sha512-w0U0pD4EhlnvRyeJzBqaVSJAo9w/ce7/WPogeXLzGkO6hzhr4GnQIZ4W4uUt5b9ooAaXPtnXlj0gzsXEOUNYMg==
+ /@xtuc/ieee754/1.2.0:
+ dev: true
+ resolution:
+ integrity: sha512-DX8nKgqcGwsc0eJSqYt5lwP4DH5FlHnmuWWBRy7X0NcaGR0ZtuyeESgMwTYVEtxmsNGY+qit4QYT/MIYTOTPeA==
+ /@xtuc/long/4.2.2:
+ dev: true
+ resolution:
+ integrity: sha512-NuHqBY1PB/D8xU6s/thBgOAiAP7HOYDQ32+BFZILJ8ivkUkAHQnWfn6WhL79Owj1qmUnoN/YPhktdIoucipkAQ==
+ /abab/2.0.3:
+ dev: true
+ resolution:
+ integrity: sha512-tsFzPpcttalNjFBCFMqsKYQcWxxen1pgJR56by//QwvJc4/OUS3kPOOttx2tSIfjsylB0pYu7f5D3K1RCxUnUg==
+ /accepts/1.3.7:
+ dependencies:
+ mime-types: 2.1.26
+ negotiator: 0.6.2
+ dev: true
+ engines:
+ node: '>= 0.6'
+ resolution:
+ integrity: sha512-Il80Qs2WjYlJIBNzNkK6KYqlVMTbZLXgHx2oT0pU/fjRHyEp+PEfEPY0R3WCwAGVOtauxh1hOxNgIf5bv7dQpA==
+ /acorn-globals/4.3.4:
+ dependencies:
+ acorn: 6.4.0
+ acorn-walk: 6.2.0
+ dev: true
+ resolution:
+ integrity: sha512-clfQEh21R+D0leSbUdWf3OcfqyaCSAQ8Ryq00bofSekfr9W8u1jyYZo6ir0xu9Gtcf7BjcHJpnbZH7JOCpP60A==
+ /acorn-jsx/3.0.1:
+ dependencies:
+ acorn: 3.3.0
+ dev: true
+ resolution:
+ integrity: sha1-r9+UiPsezvyDSPb7IvRk4ypYs2s=
+ /acorn-jsx/5.1.0_acorn@6.4.0:
+ dependencies:
+ acorn: 6.4.0
+ dev: true
+ peerDependencies:
+ acorn: ^6.0.0 || ^7.0.0
+ resolution:
+ integrity: sha512-tMUqwBWfLFbJbizRmEcWSLw6HnFzfdJs2sOJEOwwtVPMoH/0Ay+E703oZz78VSXZiiDcZrQ5XKjPIUQixhmgVw==
+ /acorn-jsx/5.1.0_acorn@7.1.0:
+ dependencies:
+ acorn: 7.1.0
+ dev: true
+ peerDependencies:
+ acorn: ^6.0.0 || ^7.0.0
+ resolution:
+ integrity: sha512-tMUqwBWfLFbJbizRmEcWSLw6HnFzfdJs2sOJEOwwtVPMoH/0Ay+E703oZz78VSXZiiDcZrQ5XKjPIUQixhmgVw==
+ /acorn-walk/6.2.0:
+ dev: true
+ engines:
+ node: '>=0.4.0'
+ resolution:
+ integrity: sha512-7evsyfH1cLOCdAzZAd43Cic04yKydNx0cF+7tiA19p1XnLLPU4dpCQOqpjqwokFe//vS0QqfqqjCS2JkiIs0cA==
+ /acorn/3.3.0:
+ dev: true
+ engines:
+ node: '>=0.4.0'
+ hasBin: true
+ resolution:
+ integrity: sha1-ReN/s56No/JbruP/U2niu18iAXo=
+ /acorn/5.7.3:
+ dev: true
+ engines:
+ node: '>=0.4.0'
+ hasBin: true
+ resolution:
+ integrity: sha512-T/zvzYRfbVojPWahDsE5evJdHb3oJoQfFbsrKM7w5Zcs++Tr257tia3BmMP8XYVjp1S9RZXQMh7gao96BlqZOw==
+ /acorn/6.4.0:
+ dev: true
+ engines:
+ node: '>=0.4.0'
+ hasBin: true
+ resolution:
+ integrity: sha512-gac8OEcQ2Li1dxIEWGZzsp2BitJxwkwcOm0zHAJLcPJaVvm58FRnk6RkuLRpU1EujipU2ZFODv2P9DLMfnV8mw==
+ /acorn/7.1.0:
+ dev: true
+ engines:
+ node: '>=0.4.0'
+ hasBin: true
+ resolution:
+ integrity: sha512-kL5CuoXA/dgxlBbVrflsflzQ3PAas7RYZB52NOm/6839iVYJgKMJ3cQJD+t2i5+qFa8h3MDpEOJiS64E8JLnSQ==
+ /address/1.1.2:
+ dev: true
+ engines:
+ node: '>= 0.12.0'
+ resolution:
+ integrity: sha512-aT6camzM4xEA54YVJYSqxz1kv4IHnQZRtThJJHhUMRExaU5spC7jX5ugSwTaTgJliIgs4VhZOk7htClvQ/LmRA==
+ /adjust-sourcemap-loader/2.0.0:
+ dependencies:
+ assert: 1.4.1
+ camelcase: 5.0.0
+ loader-utils: 1.2.3
+ object-path: 0.11.4
+ regex-parser: 2.2.10
+ dev: true
+ resolution:
+ integrity: sha512-4hFsTsn58+YjrU9qKzML2JSSDqKvN8mUGQ0nNIrfPi8hmIONT4L3uUaT6MKdMsZ9AjsU6D2xDkZxCkbQPxChrA==
+ /aggregate-error/3.0.1:
+ dependencies:
+ clean-stack: 2.2.0
+ indent-string: 4.0.0
+ dev: true
+ engines:
+ node: '>=8'
+ resolution:
+ integrity: sha512-quoaXsZ9/BLNae5yiNoUz+Nhkwz83GhWwtYFglcjEQB2NDHCIpApbqXxIFnm4Pq/Nvhrsq5sYJFyohrrxnTGAA==
+ /ajv-errors/1.0.1_ajv@6.10.2:
+ dependencies:
+ ajv: 6.10.2
+ dev: true
+ peerDependencies:
+ ajv: '>=5.0.0'
+ resolution:
+ integrity: sha512-DCRfO/4nQ+89p/RK43i8Ezd41EqdGIU4ld7nGF8OQ14oc/we5rEntLCUa7+jrn3nn83BosfwZA0wb4pon2o8iQ==
+ /ajv-keywords/3.4.1_ajv@6.10.2:
+ dependencies:
+ ajv: 6.10.2
+ dev: true
+ peerDependencies:
+ ajv: ^6.9.1
+ resolution:
+ integrity: sha512-RO1ibKvd27e6FEShVFfPALuHI3WjSVNeK5FIsmme/LYRNxjKuNj+Dt7bucLa6NdSv3JcVTyMlm9kGR84z1XpaQ==
+ /ajv/6.10.2:
+ dependencies:
+ fast-deep-equal: 2.0.1
+ fast-json-stable-stringify: 2.1.0
+ json-schema-traverse: 0.4.1
+ uri-js: 4.2.2
+ dev: true
+ resolution:
+ integrity: sha512-TXtUUEYHuaTEbLZWIKUr5pmBuhDLy+8KYtPYdcV8qC+pOZL+NKqYwvWSRrVXHn+ZmRRAu8vJTAznH7Oag6RVRw==
+ /all-contributors-cli/6.12.0:
+ dependencies:
+ '@babel/runtime': 7.7.7
+ async: 3.1.0
+ chalk: 3.0.0
+ didyoumean: 1.2.1
+ inquirer: 6.5.2
+ json-fixer: 1.4.0
+ lodash: 4.17.15
+ pify: 4.0.1
+ request: 2.88.0
+ yargs: 15.1.0
+ dev: true
+ engines:
+ node: '>=4'
+ hasBin: true
+ resolution:
+ integrity: sha512-ENkZIWmJgU4v/gGpuJTGtYypX4qXd8oLXkeCtfDd6+yjrOIGzxyvB/iFCPAkZTltb4O5tgBw3p1ikNNBR3RUeA==
+ /alphanum-sort/1.0.2:
+ dev: true
+ resolution:
+ integrity: sha1-l6ERlkmyEa0zaR2fn0hqjsn74KM=
+ /ansi-colors/3.2.4:
+ dev: true
+ engines:
+ node: '>=6'
+ resolution:
+ integrity: sha512-hHUXGagefjN2iRrID63xckIvotOXOojhQKWIPUZ4mNUZ9nLZW+7FMNoE1lOkEhNWYsx/7ysGIuJYCiMAA9FnrA==
+ /ansi-escapes/3.2.0:
+ dev: true
+ engines:
+ node: '>=4'
+ resolution:
+ integrity: sha512-cBhpre4ma+U0T1oM5fXg7Dy1Jw7zzwv7lt/GoCpr+hDQJoYnKVPLL4dCvSEFMmQurOQvSrwT7SL/DAlhBI97RQ==
+ /ansi-escapes/4.3.0:
+ dependencies:
+ type-fest: 0.8.1
+ dev: true
+ engines:
+ node: '>=8'
+ resolution:
+ integrity: sha512-EiYhwo0v255HUL6eDyuLrXEkTi7WwVCLAw+SeOQ7M7qdun1z1pum4DEm/nuqIVbPvi9RPPc9k9LbyBv6H0DwVg==
+ /ansi-html/0.0.7:
+ dev: true
+ engines:
+ '0': node >= 0.8.0
+ hasBin: true
+ resolution:
+ integrity: sha1-gTWEAhliqenm/QOflA0S9WynhZ4=
+ /ansi-regex/2.1.1:
+ dev: true
+ engines:
+ node: '>=0.10.0'
+ resolution:
+ integrity: sha1-w7M6te42DYbg5ijwRorn7yfWVN8=
+ /ansi-regex/3.0.0:
+ dev: true
+ engines:
+ node: '>=4'
+ resolution:
+ integrity: sha1-7QMXwyIGT3lGbAKWa922Bas32Zg=
+ /ansi-regex/4.1.0:
+ dev: true
+ engines:
+ node: '>=6'
+ resolution:
+ integrity: sha512-1apePfXM1UOSqw0o9IiFAovVz9M5S1Dg+4TrDwfMewQ6p/rmMueb7tWZjQ1rx4Loy1ArBggoqGpfqqdI4rondg==
+ /ansi-regex/5.0.0:
+ dev: true
+ engines:
+ node: '>=8'
+ resolution:
+ integrity: sha512-bY6fj56OUQ0hU1KjFNDQuJFezqKdrAyFdIevADiqrWHwSlbmBNMHp5ak2f40Pm8JTFyM2mqxkG6ngkHO11f/lg==
+ /ansi-styles/2.2.1:
+ dev: true
+ engines:
+ node: '>=0.10.0'
+ resolution:
+ integrity: sha1-tDLdM1i2NM914eRmQ2gkBTPB3b4=
+ /ansi-styles/3.2.1:
+ dependencies:
+ color-convert: 1.9.3
+ dev: true
+ engines:
+ node: '>=4'
+ resolution:
+ integrity: sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==
+ /ansi-styles/4.2.1:
+ dependencies:
+ '@types/color-name': 1.1.1
+ color-convert: 2.0.1
+ dev: true
+ engines:
+ node: '>=8'
+ resolution:
+ integrity: sha512-9VGjrMsG1vePxcSweQsN20KY/c4zN0h9fLjqAbwbPfahM3t+NL+M9HC8xeXG2I8pX5NoamTGNuomEUFI7fcUjA==
+ /anymatch/2.0.0:
+ dependencies:
+ micromatch: 3.1.10
+ normalize-path: 2.1.1
+ dev: true
+ resolution:
+ integrity: sha512-5teOsQWABXHHBFP9y3skS5P3d/WfWXpv3FUpy+LorMrNYaT9pI4oLMQX7jzQ2KklNpGpWHzdCXTDT2Y3XGlZBw==
+ /aproba/1.2.0:
+ dev: true
+ resolution:
+ integrity: sha512-Y9J6ZjXtoYh8RnXVCMOU/ttDmk1aBjunq9vO0ta5x85WDQiQfUF9sIPBITdbiiIVcBo03Hi3jMxigBtsddlXRw==
+ /argparse/1.0.10:
+ dependencies:
+ sprintf-js: 1.0.3
+ dev: true
+ resolution:
+ integrity: sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==
+ /aria-query/3.0.0:
+ dependencies:
+ ast-types-flow: 0.0.7
+ commander: 2.20.3
+ dev: true
+ resolution:
+ integrity: sha1-ZbP8wcoRVajJrmTW7uKX8V1RM8w=
+ /arity-n/1.0.4:
+ dev: true
+ resolution:
+ integrity: sha1-2edrEXM+CFacCEeuezmyhgswt0U=
+ /arr-diff/4.0.0:
+ dev: true
+ engines:
+ node: '>=0.10.0'
+ resolution:
+ integrity: sha1-1kYQdP6/7HHn4VI1dhoyml3HxSA=
+ /arr-flatten/1.1.0:
+ dev: true
+ engines:
+ node: '>=0.10.0'
+ resolution:
+ integrity: sha512-L3hKV5R/p5o81R7O02IGnwpDmkp6E982XhtbuwSe3O4qOtMMMtodicASA1Cny2U+aCXcNpml+m4dPsvsJ3jatg==
+ /arr-union/3.1.0:
+ dev: true
+ engines:
+ node: '>=0.10.0'
+ resolution:
+ integrity: sha1-45sJrqne+Gao8gbiiK9jkZuuOcQ=
+ /array-equal/1.0.0:
+ dev: true
+ resolution:
+ integrity: sha1-jCpe8kcv2ep0KwTHenUJO6J1fJM=
+ /array-flatten/1.1.1:
+ dev: true
+ resolution:
+ integrity: sha1-ml9pkFGx5wczKPKgCJaLZOopVdI=
+ /array-flatten/2.1.2:
+ dev: true
+ resolution:
+ integrity: sha512-hNfzcOV8W4NdualtqBFPyVO+54DSJuZGY9qT4pRroB6S9e3iiido2ISIC5h9R2sPJ8H3FHCIiEnsv1lPXO3KtQ==
+ /array-includes/3.1.1:
+ dependencies:
+ define-properties: 1.1.3
+ es-abstract: 1.17.0
+ is-string: 1.0.5
+ dev: true
+ engines:
+ node: '>= 0.4'
+ resolution:
+ integrity: sha512-c2VXaCHl7zPsvpkFsw4nxvFie4fh1ur9bpcgsVkIjqn0H/Xwdg+7fv3n2r/isyS8EBj5b06M9kHyZuIr4El6WQ==
+ /array-union/1.0.2:
+ dependencies:
+ array-uniq: 1.0.3
+ dev: true
+ engines:
+ node: '>=0.10.0'
+ resolution:
+ integrity: sha1-mjRBDk9OPaI96jdb5b5w8kd47Dk=
+ /array-uniq/1.0.3:
+ dev: true
+ engines:
+ node: '>=0.10.0'
+ resolution:
+ integrity: sha1-r2rId6Jcx/dOBYiUdThY39sk/bY=
+ /array-unique/0.3.2:
+ dev: true
+ engines:
+ node: '>=0.10.0'
+ resolution:
+ integrity: sha1-qJS3XUvE9s1nnvMkSp/Y9Gri1Cg=
+ /array.prototype.flat/1.2.3:
+ dependencies:
+ define-properties: 1.1.3
+ es-abstract: 1.17.0
+ dev: true
+ engines:
+ node: '>= 0.4'
+ resolution:
+ integrity: sha512-gBlRZV0VSmfPIeWfuuy56XZMvbVfbEUnOXUvt3F/eUUUSyzlgLxhEX4YAEpxNAogRGehPSnfXyPtYyKAhkzQhQ==
+ /arrify/1.0.1:
+ dev: true
+ engines:
+ node: '>=0.10.0'
+ resolution:
+ integrity: sha1-iYUI2iIm84DfkEcoRWhJwVAaSw0=
+ /arrify/2.0.1:
+ dev: true
+ engines:
+ node: '>=8'
+ resolution:
+ integrity: sha512-3duEwti880xqi4eAMN8AyR4a0ByT90zoYdLlevfrvU43vb0YZwZVfxOgxWrLXXXpyugL0hNZc9G6BiB5B3nUug==
+ /asap/2.0.6:
+ dev: true
+ resolution:
+ integrity: sha1-5QNHYR1+aQlDIIu9r+vLwvuGbUY=
+ /asn1.js/4.10.1:
+ dependencies:
+ bn.js: 4.11.8
+ inherits: 2.0.4
+ minimalistic-assert: 1.0.1
+ dev: true
+ resolution:
+ integrity: sha512-p32cOF5q0Zqs9uBiONKYLm6BClCoBCM5O9JfeUSlnQLBTxYdTK+pW+nXflm8UkKd2UYlEbYz5qEi0JuZR9ckSw==
+ /asn1/0.2.4:
+ dependencies:
+ safer-buffer: 2.1.2
+ dev: true
+ resolution:
+ integrity: sha512-jxwzQpLQjSmWXgwaCZE9Nz+glAG01yF1QnWgbhGwHI5A6FRIEY6IVqtHhIepHqI7/kyEyQEagBC5mBEFlIYvdg==
+ /assert-plus/1.0.0:
+ dev: true
+ engines:
+ node: '>=0.8'
+ resolution:
+ integrity: sha1-8S4PPF13sLHN2RRpQuTpbB5N1SU=
+ /assert/1.4.1:
+ dependencies:
+ util: 0.10.3
+ dev: true
+ resolution:
+ integrity: sha1-mZEtWRg2tab1s0XA8H7vwI/GXZE=
+ /assert/1.5.0:
+ dependencies:
+ object-assign: 4.1.1
+ util: 0.10.3
+ dev: true
+ resolution:
+ integrity: sha512-EDsgawzwoun2CZkCgtxJbv392v4nbk9XDD06zI+kQYoBM/3RBWLlEyJARDOmhAAosBjWACEkKL6S+lIZtcAubA==
+ /assign-symbols/1.0.0:
+ dev: true
+ engines:
+ node: '>=0.10.0'
+ resolution:
+ integrity: sha1-WWZ/QfrdTyDMvCu5a41Pf3jsA2c=
+ /ast-types-flow/0.0.7:
+ dev: true
+ resolution:
+ integrity: sha1-9wtzXGvKGlycItmCw+Oef+ujva0=
+ /astral-regex/1.0.0:
+ dev: true
+ engines:
+ node: '>=4'
+ resolution:
+ integrity: sha512-+Ryf6g3BKoRc7jfp7ad8tM4TtMiaWvbF/1/sQcZPkkS7ag3D5nMBCe2UfOTONtAkaG0tO0ij3C5Lwmf1EiyjHg==
+ /async-each/1.0.3:
+ dev: true
+ resolution:
+ integrity: sha512-z/WhQ5FPySLdvREByI2vZiTWwCnF0moMJ1hK9YQwDTHKh6I7/uSckMetoRGb5UBZPC1z0jlw+n/XCgjeH7y1AQ==
+ /async-limiter/1.0.1:
+ dev: true
+ resolution:
+ integrity: sha512-csOlWGAcRFJaI6m+F2WKdnMKr4HhdhFVBk0H/QbJFMCr+uO2kwohwXQPxw/9OCxp05r5ghVBFSyioixx3gfkNQ==
+ /async/2.6.3:
+ dependencies:
+ lodash: 4.17.15
+ dev: true
+ resolution:
+ integrity: sha512-zflvls11DCy+dQWzTW2dzuilv8Z5X/pjfmZOWba6TNIVDm+2UDaJmXSOXlasHKfNBs8oo3M0aT50fDEWfKZjXg==
+ /async/3.1.0:
+ dev: true
+ resolution:
+ integrity: sha512-4vx/aaY6j/j3Lw3fbCHNWP0pPaTCew3F6F3hYyl/tHs/ndmV1q7NW9T5yuJ2XAGwdQrP+6Wu20x06U4APo/iQQ==
+ /asynckit/0.4.0:
+ dev: true
+ resolution:
+ integrity: sha1-x57Zf380y48robyXkLzDZkdLS3k=
+ /atob/2.1.2:
+ dev: true
+ engines:
+ node: '>= 4.5.0'
+ hasBin: true
+ resolution:
+ integrity: sha512-Wm6ukoaOGJi/73p/cl2GvLjTI5JM1k/O14isD73YML8StrH/7/lRFgmg8nICZgD3bZZvjwCGxtMOD3wWNAu8cg==
+ /autoprefixer/9.7.3:
+ dependencies:
+ browserslist: 4.8.3
+ caniuse-lite: 1.0.30001019
+ chalk: 2.4.2
+ normalize-range: 0.1.2
+ num2fraction: 1.2.2
+ postcss: 7.0.26
+ postcss-value-parser: 4.0.2
+ dev: true
+ engines:
+ node: '>=6.0.0'
+ hasBin: true
+ resolution:
+ integrity: sha512-8T5Y1C5Iyj6PgkPSFd0ODvK9DIleuPKUPYniNxybS47g2k2wFgLZ46lGQHlBuGKIAEV8fbCDfKCCRS1tvOgc3Q==
+ /aws-sign2/0.7.0:
+ dev: true
+ resolution:
+ integrity: sha1-tG6JCTSpWR8tL2+G1+ap8bP+dqg=
+ /aws4/1.9.0:
+ dev: true
+ resolution:
+ integrity: sha512-Uvq6hVe90D0B2WEnUqtdgY1bATGz3mw33nH9Y+dmA+w5DHvUmBgkr5rM/KCHpCsiFNRUfokW/szpPPgMK2hm4A==
+ /axobject-query/2.1.1_eslint@6.8.0:
+ dependencies:
+ '@babel/runtime': 7.7.7
+ '@babel/runtime-corejs3': 7.7.7
+ eslint: 6.8.0
+ dev: true
+ peerDependencies:
+ eslint: ^5 || ^6
+ resolution:
+ integrity: sha512-lF98xa/yvy6j3fBHAgQXIYl+J4eZadOSqsPojemUqClzNbBV38wWGpUbQbVEyf4eUF5yF7eHmGgGA2JiHyjeqw==
+ /babel-code-frame/6.26.0:
+ dependencies:
+ chalk: 1.1.3
+ esutils: 2.0.3
+ js-tokens: 3.0.2
+ dev: true
+ resolution:
+ integrity: sha1-Y/1D99weO7fONZR9uP42mj9Yx0s=
+ /babel-eslint/10.0.3_eslint@6.8.0:
+ dependencies:
+ '@babel/code-frame': 7.5.5
+ '@babel/parser': 7.7.7
+ '@babel/traverse': 7.7.4
+ '@babel/types': 7.7.4
+ eslint: 6.8.0
+ eslint-visitor-keys: 1.1.0
+ resolve: 1.14.2
+ dev: true
+ engines:
+ node: '>=6'
+ peerDependencies:
+ eslint: '>= 4.12.1'
+ resolution:
+ integrity: sha512-z3U7eMY6r/3f3/JB9mTsLjyxrv0Yb1zb8PCWCLpguxfCzBIZUwy23R1t/XKewP+8mEN2Ck8Dtr4q20z6ce6SoA==
+ /babel-extract-comments/1.0.0:
+ dependencies:
+ babylon: 6.18.0
+ dev: true
+ engines:
+ node: '>=4'
+ resolution:
+ integrity: sha512-qWWzi4TlddohA91bFwgt6zO/J0X+io7Qp184Fw0m2JYRSTZnJbFR8+07KmzudHCZgOiKRCrjhylwv9Xd8gfhVQ==
+ /babel-jest/24.9.0_@babel+core@7.7.4:
+ dependencies:
+ '@babel/core': 7.7.4
+ '@jest/transform': 24.9.0
+ '@jest/types': 24.9.0
+ '@types/babel__core': 7.1.3
+ babel-plugin-istanbul: 5.2.0
+ babel-preset-jest: 24.9.0_@babel+core@7.7.4
+ chalk: 2.4.2
+ slash: 2.0.0
+ dev: true
+ engines:
+ node: '>= 6'
+ peerDependencies:
+ '@babel/core': ^7.0.0
+ resolution:
+ integrity: sha512-ntuddfyiN+EhMw58PTNL1ph4C9rECiQXjI4nMMBKBaNjXvqLdkXpPRcMSr4iyBrJg/+wz9brFUD6RhOAT6r4Iw==
+ /babel-jest/24.9.0_@babel+core@7.7.7:
+ dependencies:
+ '@babel/core': 7.7.7
+ '@jest/transform': 24.9.0
+ '@jest/types': 24.9.0
+ '@types/babel__core': 7.1.3
+ babel-plugin-istanbul: 5.2.0
+ babel-preset-jest: 24.9.0_@babel+core@7.7.7
+ chalk: 2.4.2
+ slash: 2.0.0
+ dev: true
+ engines:
+ node: '>= 6'
+ peerDependencies:
+ '@babel/core': ^7.0.0
+ resolution:
+ integrity: sha512-ntuddfyiN+EhMw58PTNL1ph4C9rECiQXjI4nMMBKBaNjXvqLdkXpPRcMSr4iyBrJg/+wz9brFUD6RhOAT6r4Iw==
+ /babel-loader/8.0.6_@babel+core@7.7.4+webpack@4.41.2:
+ dependencies:
+ '@babel/core': 7.7.4
+ find-cache-dir: 2.1.0
+ loader-utils: 1.2.3
+ mkdirp: 0.5.1
+ pify: 4.0.1
+ webpack: 4.41.2_webpack@4.41.2
+ dev: true
+ engines:
+ node: '>= 6.9'
+ peerDependencies:
+ '@babel/core': ^7.0.0
+ webpack: '>=2'
+ resolution:
+ integrity: sha512-4BmWKtBOBm13uoUwd08UwjZlaw3O9GWf456R9j+5YykFZ6LUIjIKLc0zEZf+hauxPOJs96C8k6FvYD09vWzhYw==
+ /babel-plugin-dynamic-import-node/2.3.0:
+ dependencies:
+ object.assign: 4.1.0
+ dev: true
+ resolution:
+ integrity: sha512-o6qFkpeQEBxcqt0XYlWzAVxNCSCZdUgcR8IRlhD/8DylxjjO4foPcvTW0GGKa/cVt3rvxZ7o5ippJ+/0nvLhlQ==
+ /babel-plugin-istanbul/5.2.0:
+ dependencies:
+ '@babel/helper-plugin-utils': 7.0.0
+ find-up: 3.0.0
+ istanbul-lib-instrument: 3.3.0
+ test-exclude: 5.2.3
+ dev: true
+ engines:
+ node: '>=6'
+ resolution:
+ integrity: sha512-5LphC0USA8t4i1zCtjbbNb6jJj/9+X6P37Qfirc/70EQ34xKlMW+a1RHGwxGI+SwWpNwZ27HqvzAobeqaXwiZw==
+ /babel-plugin-jest-hoist/24.9.0:
+ dependencies:
+ '@types/babel__traverse': 7.0.8
+ dev: true
+ engines:
+ node: '>= 6'
+ resolution:
+ integrity: sha512-2EMA2P8Vp7lG0RAzr4HXqtYwacfMErOuv1U3wrvxHX6rD1sV6xS3WXG3r8TRQ2r6w8OhvSdWt+z41hQNwNm3Xw==
+ /babel-plugin-macros/2.7.1:
+ dependencies:
+ '@babel/runtime': 7.7.4
+ cosmiconfig: 6.0.0
+ resolve: 1.14.2
+ dev: true
+ resolution:
+ integrity: sha512-HNM284amlKSQ6FddI4jLXD+XTqF0cTYOe5uemOIZxHJHnamC+OhFQ57rMF9sgnYhkJQptVl9U1SKVZsV9/GLQQ==
+ /babel-plugin-named-asset-import/0.3.5_@babel+core@7.7.4:
+ dependencies:
+ '@babel/core': 7.7.4
+ dev: true
+ peerDependencies:
+ '@babel/core': ^7.1.0
+ resolution:
+ integrity: sha512-sGhfINU+AuMw9oFAdIn/nD5sem3pn/WgxAfDZ//Q3CnF+5uaho7C7shh2rKLk6sKE/XkfmyibghocwKdVjLIKg==
+ /babel-plugin-syntax-object-rest-spread/6.13.0:
+ dev: true
+ resolution:
+ integrity: sha1-/WU28rzhODb/o6VFjEkDpZe7O/U=
+ /babel-plugin-transform-object-rest-spread/6.26.0:
+ dependencies:
+ babel-plugin-syntax-object-rest-spread: 6.13.0
+ babel-runtime: 6.26.0
+ dev: true
+ resolution:
+ integrity: sha1-DzZpLVD+9rfi1LOsFHgTepY7ewY=
+ /babel-plugin-transform-react-remove-prop-types/0.4.24:
+ dev: true
+ resolution:
+ integrity: sha512-eqj0hVcJUR57/Ug2zE1Yswsw4LhuqqHhD+8v120T1cl3kjg76QwtyBrdIk4WVwK+lAhBJVYCd/v+4nc4y+8JsA==
+ /babel-preset-jest/24.9.0_@babel+core@7.7.4:
+ dependencies:
+ '@babel/core': 7.7.4
+ '@babel/plugin-syntax-object-rest-spread': 7.7.4_@babel+core@7.7.4
+ babel-plugin-jest-hoist: 24.9.0
+ dev: true
+ engines:
+ node: '>= 6'
+ peerDependencies:
+ '@babel/core': ^7.0.0
+ resolution:
+ integrity: sha512-izTUuhE4TMfTRPF92fFwD2QfdXaZW08qvWTFCI51V8rW5x00UuPgc3ajRoWofXOuxjfcOM5zzSYsQS3H8KGCAg==
+ /babel-preset-jest/24.9.0_@babel+core@7.7.7:
+ dependencies:
+ '@babel/core': 7.7.7
+ '@babel/plugin-syntax-object-rest-spread': 7.7.4_@babel+core@7.7.7
+ babel-plugin-jest-hoist: 24.9.0
+ dev: true
+ engines:
+ node: '>= 6'
+ peerDependencies:
+ '@babel/core': ^7.0.0
+ resolution:
+ integrity: sha512-izTUuhE4TMfTRPF92fFwD2QfdXaZW08qvWTFCI51V8rW5x00UuPgc3ajRoWofXOuxjfcOM5zzSYsQS3H8KGCAg==
+ /babel-preset-react-app/9.1.0:
+ dependencies:
+ '@babel/core': 7.7.4
+ '@babel/plugin-proposal-class-properties': 7.7.4_@babel+core@7.7.4
+ '@babel/plugin-proposal-decorators': 7.7.4_@babel+core@7.7.4
+ '@babel/plugin-proposal-nullish-coalescing-operator': 7.7.4_@babel+core@7.7.4
+ '@babel/plugin-proposal-numeric-separator': 7.7.4_@babel+core@7.7.4
+ '@babel/plugin-proposal-object-rest-spread': 7.7.4_@babel+core@7.7.4
+ '@babel/plugin-proposal-optional-chaining': 7.7.4_@babel+core@7.7.4
+ '@babel/plugin-syntax-dynamic-import': 7.7.4_@babel+core@7.7.4
+ '@babel/plugin-transform-destructuring': 7.7.4_@babel+core@7.7.4
+ '@babel/plugin-transform-flow-strip-types': 7.7.4_@babel+core@7.7.4
+ '@babel/plugin-transform-react-display-name': 7.7.4_@babel+core@7.7.4
+ '@babel/plugin-transform-runtime': 7.7.4_@babel+core@7.7.4
+ '@babel/preset-env': 7.7.4_@babel+core@7.7.4
+ '@babel/preset-react': 7.7.4_@babel+core@7.7.4
+ '@babel/preset-typescript': 7.7.4_@babel+core@7.7.4
+ '@babel/runtime': 7.7.4
+ babel-plugin-dynamic-import-node: 2.3.0
+ babel-plugin-macros: 2.7.1
+ babel-plugin-transform-react-remove-prop-types: 0.4.24
+ dev: true
+ resolution:
+ integrity: sha512-0qMOv/pCcCQWxX1eNyKD9GlzZTdzZIK/Pq3O6TGe65tZSJTSplw1pFlaPujm0GjBj4g3GeCQbP08vvzlH7OGHg==
+ /babel-runtime/6.26.0:
+ dependencies:
+ core-js: 2.6.11
+ regenerator-runtime: 0.11.1
+ dev: true
+ resolution:
+ integrity: sha1-llxwWGaOgrVde/4E/yM3vItWR/4=
+ /babylon/6.18.0:
+ dev: true
+ hasBin: true
+ resolution:
+ integrity: sha512-q/UEjfGJ2Cm3oKV71DJz9d25TPnq5rhBVL2Q4fA5wcC3jcrdn7+SssEybFIxwAvvP+YCsCYNKughoF33GxgycQ==
+ /balanced-match/1.0.0:
+ dev: true
+ resolution:
+ integrity: sha1-ibTRmasr7kneFk6gK4nORi1xt2c=
+ /base/0.11.2:
+ dependencies:
+ cache-base: 1.0.1
+ class-utils: 0.3.6
+ component-emitter: 1.3.0
+ define-property: 1.0.0
+ isobject: 3.0.1
+ mixin-deep: 1.3.2
+ pascalcase: 0.1.1
+ dev: true
+ engines:
+ node: '>=0.10.0'
+ resolution:
+ integrity: sha512-5T6P4xPgpp0YDFvSWwEZ4NoE3aM4QBQXDzmVbraCkFj8zHM+mba8SyqB5DbZWyR7mYHo6Y7BdQo3MoA4m0TeQg==
+ /base64-js/1.3.1:
+ dev: true
+ resolution:
+ integrity: sha512-mLQ4i2QO1ytvGWFWmcngKO//JXAQueZvwEKtjgQFM4jIK0kU+ytMfplL8j+n5mspOfjHwoAg+9yhb7BwAHm36g==
+ /batch/0.6.1:
+ dev: true
+ resolution:
+ integrity: sha1-3DQxT05nkxgJP8dgJyUl+UvyXBY=
+ /bcrypt-pbkdf/1.0.2:
+ dependencies:
+ tweetnacl: 0.14.5
+ dev: true
+ resolution:
+ integrity: sha1-pDAdOJtqQ/m2f/PKEaP2Y342Dp4=
+ /big.js/3.2.0:
+ dev: true
+ resolution:
+ integrity: sha512-+hN/Zh2D08Mx65pZ/4g5bsmNiZUuChDiQfTUQ7qJr4/kuopCr88xZsAXv6mBoZEsUI4OuGHlX59qE94K2mMW8Q==
+ /big.js/5.2.2:
+ dev: true
+ resolution:
+ integrity: sha512-vyL2OymJxmarO8gxMr0mhChsO9QGwhynfuu4+MHTAW6czfq9humCB7rKpUjDd9YUiDPU4mzpyupFSvOClAwbmQ==
+ /binary-extensions/1.13.1:
+ dev: true
+ engines:
+ node: '>=0.10.0'
+ resolution:
+ integrity: sha512-Un7MIEDdUC5gNpcGDV97op1Ywk748MpHcFTHoYs6qnj1Z3j7I53VG3nwZhKzoBZmbdRNnb6WRdFlwl7tSDuZGw==
+ /bindings/1.5.0:
+ dependencies:
+ file-uri-to-path: 1.0.0
+ dev: true
+ optional: true
+ resolution:
+ integrity: sha512-p2q/t/mhvuOj/UeLlV6566GD/guowlr0hHxClI0W9m7MWYkL1F0hLo+0Aexs9HSPCtR1SXQ0TD3MMKrXZajbiQ==
+ /bluebird/3.7.2:
+ dev: true
+ resolution:
+ integrity: sha512-XpNj6GDQzdfW+r2Wnn7xiSAd7TM3jzkxGXBGTtWKuSXv1xUV+azxAm8jdWZN06QTQk+2N2XB9jRDkvbmQmcRtg==
+ /bn.js/4.11.8:
+ dev: true
+ resolution:
+ integrity: sha512-ItfYfPLkWHUjckQCk8xC+LwxgK8NYcXywGigJgSwOP8Y2iyWT4f2vsZnoOXTTbo+o5yXmIUJ4gn5538SO5S3gA==
+ /body-parser/1.19.0:
+ dependencies:
+ bytes: 3.1.0
+ content-type: 1.0.4
+ debug: 2.6.9
+ depd: 1.1.2
+ http-errors: 1.7.2
+ iconv-lite: 0.4.24
+ on-finished: 2.3.0
+ qs: 6.7.0
+ raw-body: 2.4.0
+ type-is: 1.6.18
+ dev: true
+ engines:
+ node: '>= 0.8'
+ resolution:
+ integrity: sha512-dhEPs72UPbDnAQJ9ZKMNTP6ptJaionhP5cBb541nXPlW60Jepo9RV/a4fX4XWW9CuFNK22krhrj1+rgzifNCsw==
+ /bonjour/3.5.0:
+ dependencies:
+ array-flatten: 2.1.2
+ deep-equal: 1.1.1
+ dns-equal: 1.0.0
+ dns-txt: 2.0.2
+ multicast-dns: 6.2.3
+ multicast-dns-service-types: 1.1.0
+ dev: true
+ resolution:
+ integrity: sha1-jokKGD2O6aI5OzhExpGkK897yfU=
+ /boolbase/1.0.0:
+ dev: true
+ resolution:
+ integrity: sha1-aN/1++YMUes3cl6p4+0xDcwed24=
+ /boolify/1.0.1:
+ dev: true
+ resolution:
+ integrity: sha1-tcCeF8rNET0Rt7s+04TMASmU2Gs=
+ /brace-expansion/1.1.11:
+ dependencies:
+ balanced-match: 1.0.0
+ concat-map: 0.0.1
+ dev: true
+ resolution:
+ integrity: sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==
+ /braces/2.3.2:
+ dependencies:
+ arr-flatten: 1.1.0
+ array-unique: 0.3.2
+ extend-shallow: 2.0.1
+ fill-range: 4.0.0
+ isobject: 3.0.1
+ repeat-element: 1.1.3
+ snapdragon: 0.8.2
+ snapdragon-node: 2.1.1
+ split-string: 3.1.0
+ to-regex: 3.0.2
+ dev: true
+ engines:
+ node: '>=0.10.0'
+ resolution:
+ integrity: sha512-aNdbnj9P8PjdXU4ybaWLK2IF3jc/EoDYbC7AazW6to3TRsfXxscC9UXOB5iDiEQrkyIbWp2SLQda4+QAa7nc3w==
+ /brorand/1.1.0:
+ dev: true
+ resolution:
+ integrity: sha1-EsJe/kCkXjwyPrhnWgoM5XsiNx8=
+ /browser-process-hrtime/0.1.3:
+ dev: true
+ resolution:
+ integrity: sha512-bRFnI4NnjO6cnyLmOV/7PVoDEMJChlcfN0z4s1YMBY989/SvlfMI1lgCnkFUs53e9gQF+w7qu7XdllSTiSl8Aw==
+ /browser-resolve/1.11.3:
+ dependencies:
+ resolve: 1.1.7
+ dev: true
+ resolution:
+ integrity: sha512-exDi1BYWB/6raKHmDTCicQfTkqwN5fioMFV4j8BsfMU4R2DK/QfZfK7kOVkmWCNANf0snkBzqGqAJBao9gZMdQ==
+ /browserify-aes/1.2.0:
+ dependencies:
+ buffer-xor: 1.0.3
+ cipher-base: 1.0.4
+ create-hash: 1.2.0
+ evp_bytestokey: 1.0.3
+ inherits: 2.0.4
+ safe-buffer: 5.2.0
+ dev: true
+ resolution:
+ integrity: sha512-+7CHXqGuspUn/Sl5aO7Ea0xWGAtETPXNSAjHo48JfLdPWcMng33Xe4znFvQweqc/uzk5zSOI3H52CYnjCfb5hA==
+ /browserify-cipher/1.0.1:
+ dependencies:
+ browserify-aes: 1.2.0
+ browserify-des: 1.0.2
+ evp_bytestokey: 1.0.3
+ dev: true
+ resolution:
+ integrity: sha512-sPhkz0ARKbf4rRQt2hTpAHqn47X3llLkUGn+xEJzLjwY8LRs2p0v7ljvI5EyoRO/mexrNunNECisZs+gw2zz1w==
+ /browserify-des/1.0.2:
+ dependencies:
+ cipher-base: 1.0.4
+ des.js: 1.0.1
+ inherits: 2.0.4
+ safe-buffer: 5.2.0
+ dev: true
+ resolution:
+ integrity: sha512-BioO1xf3hFwz4kc6iBhI3ieDFompMhrMlnDFC4/0/vd5MokpuAc3R+LYbwTA9A5Yc9pq9UYPqffKpW2ObuwX5A==
+ /browserify-rsa/4.0.1:
+ dependencies:
+ bn.js: 4.11.8
+ randombytes: 2.1.0
+ dev: true
+ resolution:
+ integrity: sha1-IeCr+vbyApzy+vsTNWenAdQTVSQ=
+ /browserify-sign/4.0.4:
+ dependencies:
+ bn.js: 4.11.8
+ browserify-rsa: 4.0.1
+ create-hash: 1.2.0
+ create-hmac: 1.1.7
+ elliptic: 6.5.2
+ inherits: 2.0.4
+ parse-asn1: 5.1.5
+ dev: true
+ resolution:
+ integrity: sha1-qk62jl17ZYuqa/alfmMMvXqT0pg=
+ /browserify-zlib/0.2.0:
+ dependencies:
+ pako: 1.0.10
+ dev: true
+ resolution:
+ integrity: sha512-Z942RysHXmJrhqk88FmKBVq/v5tqmSkDz7p54G/MGyjMnCFFnC79XWNbg+Vta8W6Wb2qtSZTSxIGkJrRpCFEiA==
+ /browserslist/4.7.3:
+ dependencies:
+ caniuse-lite: 1.0.30001019
+ electron-to-chromium: 1.3.328
+ node-releases: 1.1.44
+ dev: true
+ hasBin: true
+ resolution:
+ integrity: sha512-jWvmhqYpx+9EZm/FxcZSbUZyDEvDTLDi3nSAKbzEkyWvtI0mNSmUosey+5awDW1RUlrgXbQb5A6qY1xQH9U6MQ==
+ /browserslist/4.8.3:
+ dependencies:
+ caniuse-lite: 1.0.30001019
+ electron-to-chromium: 1.3.328
+ node-releases: 1.1.44
+ dev: true
+ hasBin: true
+ resolution:
+ integrity: sha512-iU43cMMknxG1ClEZ2MDKeonKE1CCrFVkQK2AqO2YWFmvIrx4JWrvQ4w4hQez6EpVI8rHTtqh/ruHHDHSOKxvUg==
+ /bser/2.1.1:
+ dependencies:
+ node-int64: 0.4.0
+ dev: true
+ resolution:
+ integrity: sha512-gQxTNE/GAfIIrmHLUE3oJyp5FO6HRBfhjnw4/wMmA63ZGDJnWBmgY/lyQBpnDUkGmAhbSe39tx2d/iTOAfglwQ==
+ /buffer-from/1.1.1:
+ dev: true
+ resolution:
+ integrity: sha512-MQcXEUbCKtEo7bhqEs6560Hyd4XaovZlO/k9V3hjVUF/zwW7KBVdSK4gIt/bzwS9MbR5qob+F5jusZsb0YQK2A==
+ /buffer-indexof/1.1.1:
+ dev: true
+ resolution:
+ integrity: sha512-4/rOEg86jivtPTeOUUT61jJO1Ya1TrR/OkqCSZDyq84WJh3LuuiphBYJN+fm5xufIk4XAFcEwte/8WzC8If/1g==
+ /buffer-xor/1.0.3:
+ dev: true
+ resolution:
+ integrity: sha1-JuYe0UIvtw3ULm42cp7VHYVf6Nk=
+ /buffer/4.9.2:
+ dependencies:
+ base64-js: 1.3.1
+ ieee754: 1.1.13
+ isarray: 1.0.0
+ dev: true
+ resolution:
+ integrity: sha512-xq+q3SRMOxGivLhBNaUdC64hDTQwejJ+H0T/NB1XMtTVEwNTrfFF3gAxiyW0Bu/xWEGhjVKgUcMhCrUy2+uCWg==
+ /builtin-modules/3.1.0:
+ dev: true
+ engines:
+ node: '>=6'
+ resolution:
+ integrity: sha512-k0KL0aWZuBt2lrxrcASWDfwOLMnodeQjodT/1SxEQAXsHANgo6ZC/VEaSEHCXt7aSTZ4/4H5LKa+tBXmW7Vtvw==
+ /builtin-status-codes/3.0.0:
+ dev: true
+ resolution:
+ integrity: sha1-hZgoeOIbmOHGZCXgPQF0eI9Wnug=
+ /bytes/3.0.0:
+ dev: true
+ engines:
+ node: '>= 0.8'
+ resolution:
+ integrity: sha1-0ygVQE1olpn4Wk6k+odV3ROpYEg=
+ /bytes/3.1.0:
+ dev: true
+ engines:
+ node: '>= 0.8'
+ resolution:
+ integrity: sha512-zauLjrfCG+xvoyaqLoV8bLVXXNGC4JqlxFCutSDWA6fJrTo2ZuvLYTqZ7aHBLZSMOopbzwv8f+wZcVzfVTI2Dg==
+ /cacache/12.0.3:
+ dependencies:
+ bluebird: 3.7.2
+ chownr: 1.1.3
+ figgy-pudding: 3.5.1
+ glob: 7.1.6
+ graceful-fs: 4.2.3
+ infer-owner: 1.0.4
+ lru-cache: 5.1.1
+ mississippi: 3.0.0
+ mkdirp: 0.5.1
+ move-concurrently: 1.0.1
+ promise-inflight: 1.0.1
+ rimraf: 2.7.1
+ ssri: 6.0.1
+ unique-filename: 1.1.1
+ y18n: 4.0.0
+ dev: true
+ resolution:
+ integrity: sha512-kqdmfXEGFepesTuROHMs3MpFLWrPkSSpRqOw80RCflZXy/khxaArvFrQ7uJxSUduzAufc6G0g1VUCOZXxWavPw==
+ /cacache/13.0.1:
+ dependencies:
+ chownr: 1.1.3
+ figgy-pudding: 3.5.1
+ fs-minipass: 2.0.0
+ glob: 7.1.6
+ graceful-fs: 4.2.3
+ infer-owner: 1.0.4
+ lru-cache: 5.1.1
+ minipass: 3.1.1
+ minipass-collect: 1.0.2
+ minipass-flush: 1.0.5
+ minipass-pipeline: 1.2.2
+ mkdirp: 0.5.1
+ move-concurrently: 1.0.1
+ p-map: 3.0.0
+ promise-inflight: 1.0.1
+ rimraf: 2.7.1
+ ssri: 7.1.0
+ unique-filename: 1.1.1
+ dev: true
+ engines:
+ node: '>= 8'
+ resolution:
+ integrity: sha512-5ZvAxd05HDDU+y9BVvcqYu2LLXmPnQ0hW62h32g4xBTgL/MppR4/04NHfj/ycM2y6lmTnbw6HVi+1eN0Psba6w==
+ /cache-base/1.0.1:
+ dependencies:
+ collection-visit: 1.0.0
+ component-emitter: 1.3.0
+ get-value: 2.0.6
+ has-value: 1.0.0
+ isobject: 3.0.1
+ set-value: 2.0.1
+ to-object-path: 0.3.0
+ union-value: 1.0.1
+ unset-value: 1.0.0
+ dev: true
+ engines:
+ node: '>=0.10.0'
+ resolution:
+ integrity: sha512-AKcdTnFSWATd5/GCPRxr2ChwIJ85CeyrEyjRHlKxQ56d4XJMGym0uAiKn0xbLOGOl3+yRpOTi484dVCEc5AUzQ==
+ /call-me-maybe/1.0.1:
+ dev: true
+ resolution:
+ integrity: sha1-JtII6onje1y95gJQoV8DHBak1ms=
+ /caller-callsite/2.0.0:
+ dependencies:
+ callsites: 2.0.0
+ dev: true
+ engines:
+ node: '>=4'
+ resolution:
+ integrity: sha1-hH4PzgoiN1CpoCfFSzNzGtMVQTQ=
+ /caller-path/2.0.0:
+ dependencies:
+ caller-callsite: 2.0.0
+ dev: true
+ engines:
+ node: '>=4'
+ resolution:
+ integrity: sha1-Ro+DBE42mrIBD6xfBs7uFbsssfQ=
+ /callsites/2.0.0:
+ dev: true
+ engines:
+ node: '>=4'
+ resolution:
+ integrity: sha1-BuuE8A7qQT2oav/vrL/7Ngk7PFA=
+ /callsites/3.1.0:
+ dev: true
+ engines:
+ node: '>=6'
+ resolution:
+ integrity: sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==
+ /camel-case/3.0.0:
+ dependencies:
+ no-case: 2.3.2
+ upper-case: 1.1.3
+ dev: true
+ resolution:
+ integrity: sha1-yjw2iKTpzzpM2nd9xNy8cTJJz3M=
+ /camelcase-keys/6.1.1:
+ dependencies:
+ camelcase: 5.3.1
+ map-obj: 4.1.0
+ quick-lru: 4.0.1
+ dev: true
+ engines:
+ node: '>=8'
+ resolution:
+ integrity: sha512-kEPCddRFChEzO0d6w61yh0WbBiSv9gBnfZWGfXRYPlGqIdIGef6HMR6pgqVSEWCYkrp8B0AtEpEXNY+Jx0xk1A==
+ /camelcase/5.0.0:
+ dev: true
+ engines:
+ node: '>=6'
+ resolution:
+ integrity: sha512-faqwZqnWxbxn+F1d399ygeamQNy3lPp/H9H6rNrqYh4FSVCtcY+3cub1MxA8o9mDd55mM8Aghuu/kuyYA6VTsA==
+ /camelcase/5.3.1:
+ dev: true
+ engines:
+ node: '>=6'
+ resolution:
+ integrity: sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==
+ /caniuse-api/3.0.0:
+ dependencies:
+ browserslist: 4.8.3
+ caniuse-lite: 1.0.30001019
+ lodash.memoize: 4.1.2
+ lodash.uniq: 4.5.0
+ dev: true
+ resolution:
+ integrity: sha512-bsTwuIg/BZZK/vreVTYYbSWoe2F+71P7K5QGEX+pT250DZbfU1MQ5prOKpPR+LL6uWKK3KMwMCAS74QB3Um1uw==
+ /caniuse-lite/1.0.30001019:
+ dev: true
+ resolution:
+ integrity: sha512-6ljkLtF1KM5fQ+5ZN0wuyVvvebJxgJPTmScOMaFuQN2QuOzvRJnWSKfzQskQU5IOU4Gap3zasYPIinzwUjoj/g==
+ /capture-exit/2.0.0:
+ dependencies:
+ rsvp: 4.8.5
+ dev: true
+ engines:
+ node: 6.* || 8.* || >= 10.*
+ resolution:
+ integrity: sha512-PiT/hQmTonHhl/HFGN+Lx3JJUznrVYJ3+AQsnthneZbvW7x+f08Tk7yLJTLEOUvBTbduLeeBkxEaYXUOUrRq6g==
+ /case-sensitive-paths-webpack-plugin/2.2.0:
+ dev: true
+ engines:
+ node: '>=4'
+ resolution:
+ integrity: sha512-u5ElzokS8A1pm9vM3/iDgTcI3xqHxuCao94Oz8etI3cf0Tio0p8izkDYbTIn09uP3yUUr6+veaE6IkjnTYS46g==
+ /caseless/0.12.0:
+ dev: true
+ resolution:
+ integrity: sha1-G2gcIf+EAzyCZUMJBolCDRhxUdw=
+ /chalk/1.1.3:
+ dependencies:
+ ansi-styles: 2.2.1
+ escape-string-regexp: 1.0.5
+ has-ansi: 2.0.0
+ strip-ansi: 3.0.1
+ supports-color: 2.0.0
+ dev: true
+ engines:
+ node: '>=0.10.0'
+ resolution:
+ integrity: sha1-qBFcVeSnAv5NFQq9OHKCKn4J/Jg=
+ /chalk/2.4.2:
+ dependencies:
+ ansi-styles: 3.2.1
+ escape-string-regexp: 1.0.5
+ supports-color: 5.5.0
+ dev: true
+ engines:
+ node: '>=4'
+ resolution:
+ integrity: sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==
+ /chalk/3.0.0:
+ dependencies:
+ ansi-styles: 4.2.1
+ supports-color: 7.1.0
+ dev: true
+ engines:
+ node: '>=8'
+ resolution:
+ integrity: sha512-4D3B6Wf41KOYRFdszmDqMCGq5VV/uMAB273JILmO+3jAlh8X4qDtdtgCR3fxtbLEMzSx22QdhnDcJvu2u1fVwg==
+ /chardet/0.7.0:
+ dev: true
+ resolution:
+ integrity: sha512-mT8iDcrh03qDGRRmoA2hmBJnxpllMR+0/0qlzjqZES6NdiWDcZkCNAk4rPFZ9Q85r27unkiNNg8ZOiwZXBHwcA==
+ /chokidar/2.1.8:
+ dependencies:
+ anymatch: 2.0.0
+ async-each: 1.0.3
+ braces: 2.3.2
+ glob-parent: 3.1.0
+ inherits: 2.0.4
+ is-binary-path: 1.0.1
+ is-glob: 4.0.1
+ normalize-path: 3.0.0
+ path-is-absolute: 1.0.1
+ readdirp: 2.2.1
+ upath: 1.2.0
+ dev: true
+ optionalDependencies:
+ fsevents: 1.2.11
+ resolution:
+ integrity: sha512-ZmZUazfOzf0Nve7duiCKD23PFSCs4JPoYyccjUFF3aQkQadqBhfzhjkwBH2mNOG9cTBwhamM37EIsIkZw3nRgg==
+ /chownr/1.1.3:
+ dev: true
+ resolution:
+ integrity: sha512-i70fVHhmV3DtTl6nqvZOnIjbY0Pe4kAUjwHj8z0zAdgBtYrJyYwLKCCuRBQ5ppkyL0AkN7HKRnETdmdp1zqNXw==
+ /chrome-trace-event/1.0.2:
+ dependencies:
+ tslib: 1.10.0
+ dev: true
+ engines:
+ node: '>=6.0'
+ resolution:
+ integrity: sha512-9e/zx1jw7B4CO+c/RXoCsfg/x1AfUBioy4owYH0bJprEYAx5hRFLRhWBqHAG57D0ZM4H7vxbP7bPe0VwhQRYDQ==
+ /ci-info/2.0.0:
+ dev: true
+ resolution:
+ integrity: sha512-5tK7EtrZ0N+OLFMthtqOj4fI2Jeb88C4CAZPu25LDVUgXJ0A3Js4PMGqrn0JU1W0Mh1/Z8wZzYPxqUrXeBboCQ==
+ /cipher-base/1.0.4:
+ dependencies:
+ inherits: 2.0.4
+ safe-buffer: 5.2.0
+ dev: true
+ resolution:
+ integrity: sha512-Kkht5ye6ZGmwv40uUDZztayT2ThLQGfnj/T71N/XzeZeo3nf8foyW7zGTsPYkEya3m5f3cAypH+qe7YOrM1U2Q==
+ /class-utils/0.3.6:
+ dependencies:
+ arr-union: 3.1.0
+ define-property: 0.2.5
+ isobject: 3.0.1
+ static-extend: 0.1.2
+ dev: true
+ engines:
+ node: '>=0.10.0'
+ resolution:
+ integrity: sha512-qOhPa/Fj7s6TY8H8esGu5QNpMMQxz79h+urzrNYN6mn+9BnxlDGf5QZ+XeCDsxSjPqsSR56XOZOJmpeurnLMeg==
+ /clean-css/4.2.1:
+ dependencies:
+ source-map: 0.6.1
+ dev: true
+ engines:
+ node: '>= 4.0'
+ resolution:
+ integrity: sha512-4ZxI6dy4lrY6FHzfiy1aEOXgu4LIsW2MhwG0VBKdcoGoH/XLFgaHSdLTGr4O8Be6A8r3MOphEiI8Gc1n0ecf3g==
+ /clean-stack/2.2.0:
+ dev: true
+ engines:
+ node: '>=6'
+ resolution:
+ integrity: sha512-4diC9HaTE+KRAMWhDhrGOECgWZxoevMc5TlkObMqNSsVU62PYzXZ/SMTjzyGAFF1YusgxGcSWTEXBhp0CPwQ1A==
+ /cli-cursor/2.1.0:
+ dependencies:
+ restore-cursor: 2.0.0
+ dev: true
+ engines:
+ node: '>=4'
+ resolution:
+ integrity: sha1-s12sN2R5+sw+lHR9QdDQ9SOP/LU=
+ /cli-cursor/3.1.0:
+ dependencies:
+ restore-cursor: 3.1.0
+ dev: true
+ engines:
+ node: '>=8'
+ resolution:
+ integrity: sha512-I/zHAwsKf9FqGoXM4WWRACob9+SNukZTd94DWF57E4toouRulbCxcUh6RKUEOQlYTHJnzkPMySvPNaaSLNfLZw==
+ /cli-width/2.2.0:
+ dev: true
+ resolution:
+ integrity: sha1-/xnt6Kml5XkyQUewwR8PvLq+1jk=
+ /cliui/4.1.0:
+ dependencies:
+ string-width: 2.1.1
+ strip-ansi: 4.0.0
+ wrap-ansi: 2.1.0
+ dev: true
+ resolution:
+ integrity: sha512-4FG+RSG9DL7uEwRUZXZn3SS34DiDPfzP0VOiEwtUWlE+AR2EIg+hSyvrIgUUfhdgR/UkAeW2QHgeP+hWrXs7jQ==
+ /cliui/5.0.0:
+ dependencies:
+ string-width: 3.1.0
+ strip-ansi: 5.2.0
+ wrap-ansi: 5.1.0
+ dev: true
+ resolution:
+ integrity: sha512-PYeGSEmmHM6zvoef2w8TPzlrnNpXIjTipYK780YswmIP9vjxmd6Y2a3CB2Ks6/AU8NHjZugXvo8w3oWM2qnwXA==
+ /cliui/6.0.0:
+ dependencies:
+ string-width: 4.2.0
+ strip-ansi: 6.0.0
+ wrap-ansi: 6.2.0
+ dev: true
+ resolution:
+ integrity: sha512-t6wbgtoCXvAzst7QgXxJYqPt0usEfbgQdftEPbLL/cvv6HPE5VgvqCuAIDR0NgU52ds6rFwqrgakNLrHEjCbrQ==
+ /clone-deep/0.2.4:
+ dependencies:
+ for-own: 0.1.5
+ is-plain-object: 2.0.4
+ kind-of: 3.2.2
+ lazy-cache: 1.0.4
+ shallow-clone: 0.1.2
+ dev: true
+ engines:
+ node: '>=0.10.0'
+ resolution:
+ integrity: sha1-TnPdCen7lxzDhnDF3O2cGJZIHMY=
+ /clone-deep/4.0.1:
+ dependencies:
+ is-plain-object: 2.0.4
+ kind-of: 6.0.2
+ shallow-clone: 3.0.1
+ dev: true
+ engines:
+ node: '>=6'
+ resolution:
+ integrity: sha512-neHB9xuzh/wk0dIHweyAXv2aPGZIVk3pLMe+/RNzINf17fe0OG96QroktYAUm7SM1PBnzTabaLboqqxDyMU+SQ==
+ /co/4.6.0:
+ dev: true
+ engines:
+ iojs: '>= 1.0.0'
+ node: '>= 0.12.0'
+ resolution:
+ integrity: sha1-bqa989hTrlTMuOR7+gvz+QMfsYQ=
+ /coa/2.0.2:
+ dependencies:
+ '@types/q': 1.5.2
+ chalk: 2.4.2
+ q: 1.5.1
+ dev: true
+ engines:
+ node: '>= 4.0'
+ resolution:
+ integrity: sha512-q5/jG+YQnSy4nRTV4F7lPepBJZ8qBNJJDBuJdoejDyLXgmL7IEo+Le2JDZudFTFt7mrCqIRaSjws4ygRCTCAXA==
+ /code-point-at/1.1.0:
+ dev: true
+ engines:
+ node: '>=0.10.0'
+ resolution:
+ integrity: sha1-DQcLTQQ6W+ozovGkDi7bPZpMz3c=
+ /collection-visit/1.0.0:
+ dependencies:
+ map-visit: 1.0.0
+ object-visit: 1.0.1
+ dev: true
+ engines:
+ node: '>=0.10.0'
+ resolution:
+ integrity: sha1-S8A3PBZLwykbTTaMgpzxqApZ3KA=
+ /color-convert/1.9.3:
+ dependencies:
+ color-name: 1.1.3
+ dev: true
+ resolution:
+ integrity: sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==
+ /color-convert/2.0.1:
+ dependencies:
+ color-name: 1.1.4
+ dev: true
+ engines:
+ node: '>=7.0.0'
+ resolution:
+ integrity: sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==
+ /color-name/1.1.3:
+ dev: true
+ resolution:
+ integrity: sha1-p9BVi9icQveV3UIyj3QIMcpTvCU=
+ /color-name/1.1.4:
+ dev: true
+ resolution:
+ integrity: sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==
+ /color-string/1.5.3:
+ dependencies:
+ color-name: 1.1.4
+ simple-swizzle: 0.2.2
+ dev: true
+ resolution:
+ integrity: sha512-dC2C5qeWoYkxki5UAXapdjqO672AM4vZuPGRQfO8b5HKuKGBbKWpITyDYN7TOFKvRW7kOgAn3746clDBMDJyQw==
+ /color/3.1.2:
+ dependencies:
+ color-convert: 1.9.3
+ color-string: 1.5.3
+ dev: true
+ resolution:
+ integrity: sha512-vXTJhHebByxZn3lDvDJYw4lR5+uB3vuoHsuYA5AKuxRVn5wzzIfQKGLBmgdVRHKTJYeK5rvJcHnrd0Li49CFpg==
+ /combined-stream/1.0.8:
+ dependencies:
+ delayed-stream: 1.0.0
+ dev: true
+ engines:
+ node: '>= 0.8'
+ resolution:
+ integrity: sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==
+ /commander/2.17.1:
+ dev: true
+ resolution:
+ integrity: sha512-wPMUt6FnH2yzG95SA6mzjQOEKUU3aLaDEmzs1ti+1E9h+CsrZghRlqEM/EJ4KscsQVG8uNN4uVreUeT8+drlgg==
+ /commander/2.19.0:
+ dev: true
+ resolution:
+ integrity: sha512-6tvAOO+D6OENvRAh524Dh9jcfKTYDQAqvqezbCW82xj5X0pSrcpxtvRKHLG0yBY6SD7PSDrJaj+0AiOcKVd1Xg==
+ /commander/2.20.3:
+ dev: true
+ resolution:
+ integrity: sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==
+ /common-tags/1.8.0:
+ dev: true
+ engines:
+ node: '>=4.0.0'
+ resolution:
+ integrity: sha512-6P6g0uetGpW/sdyUy/iQQCbFF0kWVMSIVSyYz7Zgjcgh8mgw8PQzDNZeyZ5DQ2gM7LBoZPHmnjz8rUthkBG5tw==
+ /commondir/1.0.1:
+ dev: true
+ resolution:
+ integrity: sha1-3dgA2gxmEnOTzKWVDqloo6rxJTs=
+ /component-emitter/1.3.0:
+ dev: true
+ resolution:
+ integrity: sha512-Rd3se6QB+sO1TwqZjscQrurpEPIfO0/yYnSin6Q/rD3mOutHvUrCAhJub3r90uNb+SESBuE0QYoB90YdfatsRg==
+ /compose-function/3.0.3:
+ dependencies:
+ arity-n: 1.0.4
+ dev: true
+ resolution:
+ integrity: sha1-ntZ18TzFRQHTCVCkhv9qe6OrGF8=
+ /compressible/2.0.18:
+ dependencies:
+ mime-db: 1.43.0
+ dev: true
+ engines:
+ node: '>= 0.6'
+ resolution:
+ integrity: sha512-AF3r7P5dWxL8MxyITRMlORQNaOA2IkAFaTr4k7BUumjPtRpGDTZpl0Pb1XCO6JeDCBdp126Cgs9sMxqSjgYyRg==
+ /compression/1.7.4:
+ dependencies:
+ accepts: 1.3.7
+ bytes: 3.0.0
+ compressible: 2.0.18
+ debug: 2.6.9
+ on-headers: 1.0.2
+ safe-buffer: 5.1.2
+ vary: 1.1.2
+ dev: true
+ engines:
+ node: '>= 0.8.0'
+ resolution:
+ integrity: sha512-jaSIDzP9pZVS4ZfQ+TzvtiWhdpFhE2RDHz8QJkpX9SIpLq88VueF5jJw6t+6CUQcAoA6t+x89MLrWAqpfDE8iQ==
+ /concat-map/0.0.1:
+ dev: true
+ resolution:
+ integrity: sha1-2Klr13/Wjfd5OnMDajug1UBdR3s=
+ /concat-stream/1.6.2:
+ dependencies:
+ buffer-from: 1.1.1
+ inherits: 2.0.4
+ readable-stream: 2.3.7
+ typedarray: 0.0.6
+ dev: true
+ engines:
+ '0': node >= 0.8
+ resolution:
+ integrity: sha512-27HBghJxjiZtIk3Ycvn/4kbJk/1uZuJFfuPEns6LaEvpvG1f0hTea8lilrouyo9mVc2GWdcEZ8OLoGmSADlrCw==
+ /concat-with-sourcemaps/1.1.0:
+ dependencies:
+ source-map: 0.6.1
+ dev: true
+ resolution:
+ integrity: sha512-4gEjHJFT9e+2W/77h/DS5SGUgwDaOwprX8L/gl5+3ixnzkVJJsZWDSelmN3Oilw3LNDZjZV0yqH1hLG3k6nghg==
+ /concurrently/5.0.2:
+ dependencies:
+ chalk: 2.4.2
+ date-fns: 2.8.1
+ lodash: 4.17.15
+ read-pkg: 4.0.1
+ rxjs: 6.5.4
+ spawn-command: 0.0.2-1
+ supports-color: 6.1.0
+ tree-kill: 1.2.2
+ yargs: 13.3.0
+ dev: true
+ engines:
+ node: '>=6.0.0'
+ hasBin: true
+ resolution:
+ integrity: sha512-iUNVI6PzKO0RVXV9pHWM0khvEbELxf3XLIoChaV6hHyoIaJuxQWZiOwlNysnJX5khsfvIK66+OJqRdbYrdsR1g==
+ /confusing-browser-globals/1.0.9:
+ dev: true
+ resolution:
+ integrity: sha512-KbS1Y0jMtyPgIxjO7ZzMAuUpAKMt1SzCL9fsrKsX6b0zJPTaT0SiSPmewwVZg9UAO83HVIlEhZF84LIjZ0lmAw==
+ /connect-history-api-fallback/1.6.0:
+ dev: true
+ engines:
+ node: '>=0.8'
+ resolution:
+ integrity: sha512-e54B99q/OUoH64zYYRf3HBP5z24G38h5D3qXu23JGRoigpX5Ss4r9ZnDk3g0Z8uQC2x2lPaJ+UlWBc1ZWBWdLg==
+ /console-browserify/1.2.0:
+ dev: true
+ resolution:
+ integrity: sha512-ZMkYO/LkF17QvCPqM0gxw8yUzigAOZOSWSHg91FH6orS7vcEj5dVZTidN2fQ14yBSdg97RqhSNwLUXInd52OTA==
+ /constants-browserify/1.0.0:
+ dev: true
+ resolution:
+ integrity: sha1-wguW2MYXdIqvHBYCF2DNJ/y4y3U=
+ /contains-path/0.1.0:
+ dev: true
+ engines:
+ node: '>=0.10.0'
+ resolution:
+ integrity: sha1-/ozxhP9mcLa67wGp1IYaXL7EEgo=
+ /content-disposition/0.5.3:
+ dependencies:
+ safe-buffer: 5.1.2
+ dev: true
+ engines:
+ node: '>= 0.6'
+ resolution:
+ integrity: sha512-ExO0774ikEObIAEV9kDo50o+79VCUdEB6n6lzKgGwupcVeRlhrj3qGAfwq8G6uBJjkqLrhT0qEYFcWng8z1z0g==
+ /content-type/1.0.4:
+ dev: true
+ engines:
+ node: '>= 0.6'
+ resolution:
+ integrity: sha512-hIP3EEPs8tB9AT1L+NUqtwOAps4mk2Zob89MWXMHjHWg9milF/j4osnnQLXBCBFBk/tvIG/tUc9mOUJiPBhPXA==
+ /convert-source-map/0.3.5:
+ dev: true
+ resolution:
+ integrity: sha1-8dgClQr33SYxof6+BZZVDIarMZA=
+ /convert-source-map/1.7.0:
+ dependencies:
+ safe-buffer: 5.1.2
+ dev: true
+ resolution:
+ integrity: sha512-4FJkXzKXEDB1snCFZlLP4gpC3JILicCpGbzG9f9G7tGqGCzETQ2hWPrcinA9oU4wtf2biUaEH5065UnMeR33oA==
+ /cookie-signature/1.0.6:
+ dev: true
+ resolution:
+ integrity: sha1-4wOogrNCzD7oylE6eZmXNNqzriw=
+ /cookie/0.4.0:
+ dev: true
+ engines:
+ node: '>= 0.6'
+ resolution:
+ integrity: sha512-+Hp8fLp57wnUSt0tY0tHEXh4voZRDnoIrZPqlo3DPiI4y9lwg/jqx+1Om94/W6ZaPDOUbnjOt/99w66zk+l1Xg==
+ /copy-concurrently/1.0.5:
+ dependencies:
+ aproba: 1.2.0
+ fs-write-stream-atomic: 1.0.10
+ iferr: 0.1.5
+ mkdirp: 0.5.1
+ rimraf: 2.7.1
+ run-queue: 1.0.3
+ dev: true
+ resolution:
+ integrity: sha512-f2domd9fsVDFtaFcbaRZuYXwtdmnzqbADSwhSWYxYB/Q8zsdUUFMXVRwXGDMWmbEzAn1kdRrtI1T/KTFOL4X2A==
+ /copy-descriptor/0.1.1:
+ dev: true
+ engines:
+ node: '>=0.10.0'
+ resolution:
+ integrity: sha1-Z29us8OZl8LuGsOpJP1hJHSPV40=
+ /core-js-compat/3.6.2:
+ dependencies:
+ browserslist: 4.8.3
+ semver: 7.0.0
+ dev: true
+ resolution:
+ integrity: sha512-+G28dzfYGtAM+XGvB1C5AS1ZPKfQ47HLhcdeIQdZgQnJVdp7/D0m+W/TErwhgsX6CujRUk/LebB6dCrKrtJrvQ==
+ /core-js-pure/3.6.2:
+ dev: true
+ requiresBuild: true
+ resolution:
+ integrity: sha512-PRasaCPjjCB65au2dMBPtxuIR6LM8MVNdbIbN57KxcDV1FAYQWlF0pqje/HC2sM6nm/s9KqSTkMTU75pozaghA==
+ /core-js/2.6.11:
+ deprecated: 'core-js@<3 is no longer maintained and not recommended for usage due to the number of issues. Please, upgrade your dependencies to the actual version of core-js@3.'
+ dev: true
+ requiresBuild: true
+ resolution:
+ integrity: sha512-5wjnpaT/3dV+XB4borEsnAYQchn00XSgTAWKDkEqv+K8KevjbzmofK6hfJ9TZIlpj2N0xQpazy7PiRQiWHqzWg==
+ /core-js/3.6.2:
+ dev: true
+ requiresBuild: true
+ resolution:
+ integrity: sha512-hIE5dXkRzRvnZ5vhkRfQxUvDxQZmD9oueA08jDYRBKJHx+VIl/Pne/e0A4x9LObEEthC/TqiZybUoNM4tRgnKg==
+ /core-util-is/1.0.2:
+ dev: true
+ resolution:
+ integrity: sha1-tf1UIgqivFq1eqtxQMlAdUUDwac=
+ /cosmiconfig/5.2.1:
+ dependencies:
+ import-fresh: 2.0.0
+ is-directory: 0.3.1
+ js-yaml: 3.13.1
+ parse-json: 4.0.0
+ dev: true
+ engines:
+ node: '>=4'
+ resolution:
+ integrity: sha512-H65gsXo1SKjf8zmrJ67eJk8aIRKV5ff2D4uKZIBZShbhGSpEmsQOPW/SKMKYhSTrqR7ufy6RP69rPogdaPh/kA==
+ /cosmiconfig/6.0.0:
+ dependencies:
+ '@types/parse-json': 4.0.0
+ import-fresh: 3.2.1
+ parse-json: 5.0.0
+ path-type: 4.0.0
+ yaml: 1.7.2
+ dev: true
+ engines:
+ node: '>=8'
+ resolution:
+ integrity: sha512-xb3ZL6+L8b9JLLCx3ZdoZy4+2ECphCMo2PwqgP1tlfVq6M6YReyzBJtvWWtbDSpNr9hn96pkCiZqUcFEc+54Qg==
+ /create-ecdh/4.0.3:
+ dependencies:
+ bn.js: 4.11.8
+ elliptic: 6.5.2
+ dev: true
+ resolution:
+ integrity: sha512-GbEHQPMOswGpKXM9kCWVrremUcBmjteUaQ01T9rkKCPDXfUHX0IoP9LpHYo2NPFampa4e+/pFDc3jQdxrxQLaw==
+ /create-hash/1.2.0:
+ dependencies:
+ cipher-base: 1.0.4
+ inherits: 2.0.4
+ md5.js: 1.3.5
+ ripemd160: 2.0.2
+ sha.js: 2.4.11
+ dev: true
+ resolution:
+ integrity: sha512-z00bCGNHDG8mHAkP7CtT1qVu+bFQUPjYq/4Iv3C3kWjTFV10zIjfSoeqXo9Asws8gwSHDGj/hl2u4OGIjapeCg==
+ /create-hmac/1.1.7:
+ dependencies:
+ cipher-base: 1.0.4
+ create-hash: 1.2.0
+ inherits: 2.0.4
+ ripemd160: 2.0.2
+ safe-buffer: 5.2.0
+ sha.js: 2.4.11
+ dev: true
+ resolution:
+ integrity: sha512-MJG9liiZ+ogc4TzUwuvbER1JRdgvUFSB5+VR/g5h82fGaIRWMWddtKBHi7/sVhfjQZ6SehlyhvQYrcYkaUIpLg==
+ /cross-env/6.0.3:
+ dependencies:
+ cross-spawn: 7.0.1
+ dev: true
+ engines:
+ node: '>=8.0'
+ hasBin: true
+ resolution:
+ integrity: sha512-+KqxF6LCvfhWvADcDPqo64yVIB31gv/jQulX2NGzKS/g3GEVz6/pt4wjHFtFWsHMddebWD/sDthJemzM4MaAag==
+ /cross-spawn/6.0.5:
+ dependencies:
+ nice-try: 1.0.5
+ path-key: 2.0.1
+ semver: 5.7.1
+ shebang-command: 1.2.0
+ which: 1.3.1
+ dev: true
+ engines:
+ node: '>=4.8'
+ resolution:
+ integrity: sha512-eTVLrBSt7fjbDygz805pMnstIs2VTBNkRm0qxZd+M7A5XDdxVRWO5MxGBXZhjY4cqLYLdtrGqRf8mBPmzwSpWQ==
+ /cross-spawn/7.0.1:
+ dependencies:
+ path-key: 3.1.1
+ shebang-command: 2.0.0
+ which: 2.0.2
+ dev: true
+ engines:
+ node: '>= 8'
+ resolution:
+ integrity: sha512-u7v4o84SwFpD32Z8IIcPZ6z1/ie24O6RU3RbtL5Y316l3KuHVPx9ItBgWQ6VlfAFnRnTtMUrsQ9MUUTuEZjogg==
+ /crypto-browserify/3.12.0:
+ dependencies:
+ browserify-cipher: 1.0.1
+ browserify-sign: 4.0.4
+ create-ecdh: 4.0.3
+ create-hash: 1.2.0
+ create-hmac: 1.1.7
+ diffie-hellman: 5.0.3
+ inherits: 2.0.4
+ pbkdf2: 3.0.17
+ public-encrypt: 4.0.3
+ randombytes: 2.1.0
+ randomfill: 1.0.4
+ dev: true
+ resolution:
+ integrity: sha512-fz4spIh+znjO2VjL+IdhEpRJ3YN6sMzITSBijk6FK2UvTqruSQW+/cCZTSNsMiZNvUeq0CqurF+dAbyiGOY6Wg==
+ /css-blank-pseudo/0.1.4:
+ dependencies:
+ postcss: 7.0.26
+ dev: true
+ engines:
+ node: '>=6.0.0'
+ hasBin: true
+ resolution:
+ integrity: sha512-LHz35Hr83dnFeipc7oqFDmsjHdljj3TQtxGGiNWSOsTLIAubSm4TEz8qCaKFpk7idaQ1GfWscF4E6mgpBysA1w==
+ /css-color-names/0.0.4:
+ dev: true
+ resolution:
+ integrity: sha1-gIrcLnnPhHOAabZGyyDsJ762KeA=
+ /css-declaration-sorter/4.0.1:
+ dependencies:
+ postcss: 7.0.26
+ timsort: 0.3.0
+ dev: true
+ engines:
+ node: '>4'
+ resolution:
+ integrity: sha512-BcxQSKTSEEQUftYpBVnsH4SF05NTuBokb19/sBt6asXGKZ/6VP7PLG1CBCkFDYOnhXhPh0jMhO6xZ71oYHXHBA==
+ /css-has-pseudo/0.10.0:
+ dependencies:
+ postcss: 7.0.26
+ postcss-selector-parser: 5.0.0
+ dev: true
+ engines:
+ node: '>=6.0.0'
+ hasBin: true
+ resolution:
+ integrity: sha512-Z8hnfsZu4o/kt+AuFzeGpLVhFOGO9mluyHBaA2bA8aCGTwah5sT3WV/fTHH8UNZUytOIImuGPrl/prlb4oX4qQ==
+ /css-loader/3.2.0_webpack@4.41.2:
+ dependencies:
+ camelcase: 5.3.1
+ cssesc: 3.0.0
+ icss-utils: 4.1.1
+ loader-utils: 1.2.3
+ normalize-path: 3.0.0
+ postcss: 7.0.26
+ postcss-modules-extract-imports: 2.0.0
+ postcss-modules-local-by-default: 3.0.2
+ postcss-modules-scope: 2.1.1
+ postcss-modules-values: 3.0.0
+ postcss-value-parser: 4.0.2
+ schema-utils: 2.6.1
+ webpack: 4.41.2_webpack@4.41.2
+ dev: true
+ engines:
+ node: '>= 8.9.0'
+ peerDependencies:
+ webpack: ^4.0.0
+ resolution:
+ integrity: sha512-QTF3Ud5H7DaZotgdcJjGMvyDj5F3Pn1j/sC6VBEOVp94cbwqyIBdcs/quzj4MC1BKQSrTpQznegH/5giYbhnCQ==
+ /css-modules-loader-core/1.1.0:
+ dependencies:
+ icss-replace-symbols: 1.1.0
+ postcss: 6.0.1
+ postcss-modules-extract-imports: 1.1.0
+ postcss-modules-local-by-default: 1.2.0
+ postcss-modules-scope: 1.1.0
+ postcss-modules-values: 1.3.0
+ dev: true
+ resolution:
+ integrity: sha1-WQhmgpShvs0mGuCkziGwtVHyHRY=
+ /css-prefers-color-scheme/3.1.1:
+ dependencies:
+ postcss: 7.0.26
+ dev: true
+ engines:
+ node: '>=6.0.0'
+ hasBin: true
+ resolution:
+ integrity: sha512-MTu6+tMs9S3EUqzmqLXEcgNRbNkkD/TGFvowpeoWJn5Vfq7FMgsmRQs9X5NXAURiOBmOxm/lLjsDNXDE6k9bhg==
+ /css-select-base-adapter/0.1.1:
+ dev: true
+ resolution:
+ integrity: sha512-jQVeeRG70QI08vSTwf1jHxp74JoZsr2XSgETae8/xC8ovSnL2WF87GTLO86Sbwdt2lK4Umg4HnnwMO4YF3Ce7w==
+ /css-select/1.2.0:
+ dependencies:
+ boolbase: 1.0.0
+ css-what: 2.1.3
+ domutils: 1.5.1
+ nth-check: 1.0.2
+ dev: true
+ resolution:
+ integrity: sha1-KzoRBTnFNV8c2NMUYj6HCxIeyFg=
+ /css-select/2.1.0:
+ dependencies:
+ boolbase: 1.0.0
+ css-what: 3.2.1
+ domutils: 1.7.0
+ nth-check: 1.0.2
+ dev: true
+ resolution:
+ integrity: sha512-Dqk7LQKpwLoH3VovzZnkzegqNSuAziQyNZUcrdDM401iY+R5NkGBXGmtO05/yaXQziALuPogeG0b7UAgjnTJTQ==
+ /css-selector-tokenizer/0.7.1:
+ dependencies:
+ cssesc: 0.1.0
+ fastparse: 1.1.2
+ regexpu-core: 1.0.0
+ dev: true
+ resolution:
+ integrity: sha512-xYL0AMZJ4gFzJQsHUKa5jiWWi2vH77WVNg7JYRyewwj6oPh4yb/y6Y9ZCw9dsj/9UauMhtuxR+ogQd//EdEVNA==
+ /css-tree/1.0.0-alpha.37:
+ dependencies:
+ mdn-data: 2.0.4
+ source-map: 0.6.1
+ dev: true
+ engines:
+ node: '>=8.0.0'
+ resolution:
+ integrity: sha512-DMxWJg0rnz7UgxKT0Q1HU/L9BeJI0M6ksor0OgqOnF+aRCDWg/N2641HmVyU9KVIu0OVVWOb2IpC9A+BJRnejg==
+ /css-unit-converter/1.1.1:
+ dev: true
+ resolution:
+ integrity: sha1-2bkoGtz9jO2TW9urqDeGiX9k6ZY=
+ /css-what/2.1.3:
+ dev: true
+ resolution:
+ integrity: sha512-a+EPoD+uZiNfh+5fxw2nO9QwFa6nJe2Or35fGY6Ipw1R3R4AGz1d1TEZrCegvw2YTmZ0jXirGYlzxxpYSHwpEg==
+ /css-what/3.2.1:
+ dev: true
+ engines:
+ node: '>= 6'
+ resolution:
+ integrity: sha512-WwOrosiQTvyms+Ti5ZC5vGEK0Vod3FTt1ca+payZqvKuGJF+dq7bG63DstxtN0dpm6FxY27a/zS3Wten+gEtGw==
+ /css/2.2.4:
+ dependencies:
+ inherits: 2.0.4
+ source-map: 0.6.1
+ source-map-resolve: 0.5.3
+ urix: 0.1.0
+ dev: true
+ resolution:
+ integrity: sha512-oUnjmWpy0niI3x/mPL8dVEI1l7MnG3+HHyRPHf+YFSbK+svOhXpmSOcDURUh2aOCgl2grzrOPt1nHLuCVFULLw==
+ /cssdb/4.4.0:
+ dev: true
+ resolution:
+ integrity: sha512-LsTAR1JPEM9TpGhl/0p3nQecC2LJ0kD8X5YARu1hk/9I1gril5vDtMZyNxcEpxxDj34YNck/ucjuoUd66K03oQ==
+ /cssesc/0.1.0:
+ dev: true
+ hasBin: true
+ resolution:
+ integrity: sha1-yBSQPkViM3GgR3tAEJqq++6t27Q=
+ /cssesc/2.0.0:
+ dev: true
+ engines:
+ node: '>=4'
+ hasBin: true
+ resolution:
+ integrity: sha512-MsCAG1z9lPdoO/IUMLSBWBSVxVtJ1395VGIQ+Fc2gNdkQ1hNDnQdw3YhA71WJCBW1vdwA0cAnk/DnW6bqoEUYg==
+ /cssesc/3.0.0:
+ dev: true
+ engines:
+ node: '>=4'
+ hasBin: true
+ resolution:
+ integrity: sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==
+ /cssnano-preset-default/4.0.7:
+ dependencies:
+ css-declaration-sorter: 4.0.1
+ cssnano-util-raw-cache: 4.0.1
+ postcss: 7.0.26
+ postcss-calc: 7.0.1
+ postcss-colormin: 4.0.3
+ postcss-convert-values: 4.0.1
+ postcss-discard-comments: 4.0.2
+ postcss-discard-duplicates: 4.0.2
+ postcss-discard-empty: 4.0.1
+ postcss-discard-overridden: 4.0.1
+ postcss-merge-longhand: 4.0.11
+ postcss-merge-rules: 4.0.3
+ postcss-minify-font-values: 4.0.2
+ postcss-minify-gradients: 4.0.2
+ postcss-minify-params: 4.0.2
+ postcss-minify-selectors: 4.0.2
+ postcss-normalize-charset: 4.0.1
+ postcss-normalize-display-values: 4.0.2
+ postcss-normalize-positions: 4.0.2
+ postcss-normalize-repeat-style: 4.0.2
+ postcss-normalize-string: 4.0.2
+ postcss-normalize-timing-functions: 4.0.2
+ postcss-normalize-unicode: 4.0.1
+ postcss-normalize-url: 4.0.1
+ postcss-normalize-whitespace: 4.0.2
+ postcss-ordered-values: 4.1.2
+ postcss-reduce-initial: 4.0.3
+ postcss-reduce-transforms: 4.0.2
+ postcss-svgo: 4.0.2
+ postcss-unique-selectors: 4.0.1
+ dev: true
+ engines:
+ node: '>=6.9.0'
+ resolution:
+ integrity: sha512-x0YHHx2h6p0fCl1zY9L9roD7rnlltugGu7zXSKQx6k2rYw0Hi3IqxcoAGF7u9Q5w1nt7vK0ulxV8Lo+EvllGsA==
+ /cssnano-util-get-arguments/4.0.0:
+ dev: true
+ engines:
+ node: '>=6.9.0'
+ resolution:
+ integrity: sha1-7ToIKZ8h11dBsg87gfGU7UnMFQ8=
+ /cssnano-util-get-match/4.0.0:
+ dev: true
+ engines:
+ node: '>=6.9.0'
+ resolution:
+ integrity: sha1-wOTKB/U4a7F+xeUiULT1lhNlFW0=
+ /cssnano-util-raw-cache/4.0.1:
+ dependencies:
+ postcss: 7.0.26
+ dev: true
+ engines:
+ node: '>=6.9.0'
+ resolution:
+ integrity: sha512-qLuYtWK2b2Dy55I8ZX3ky1Z16WYsx544Q0UWViebptpwn/xDBmog2TLg4f+DBMg1rJ6JDWtn96WHbOKDWt1WQA==
+ /cssnano-util-same-parent/4.0.1:
+ dev: true
+ engines:
+ node: '>=6.9.0'
+ resolution:
+ integrity: sha512-WcKx5OY+KoSIAxBW6UBBRay1U6vkYheCdjyVNDm85zt5K9mHoGOfsOsqIszfAqrQQFIIKgjh2+FDgIj/zsl21Q==
+ /cssnano/4.1.10:
+ dependencies:
+ cosmiconfig: 5.2.1
+ cssnano-preset-default: 4.0.7
+ is-resolvable: 1.1.0
+ postcss: 7.0.26
+ dev: true
+ engines:
+ node: '>=6.9.0'
+ resolution:
+ integrity: sha512-5wny+F6H4/8RgNlaqab4ktc3e0/blKutmq8yNlBFXA//nSFFAqAngjNVRzUvCgYROULmZZUoosL/KSoZo5aUaQ==
+ /csso/4.0.2:
+ dependencies:
+ css-tree: 1.0.0-alpha.37
+ dev: true
+ engines:
+ node: '>=8.0.0'
+ resolution:
+ integrity: sha512-kS7/oeNVXkHWxby5tHVxlhjizRCSv8QdU7hB2FpdAibDU8FjTAolhNjKNTiLzXtUrKT6HwClE81yXwEk1309wg==
+ /cssom/0.3.8:
+ dev: true
+ resolution:
+ integrity: sha512-b0tGHbfegbhPJpxpiBPU2sCkigAqtM9O121le6bbOlgyV+NyGyCmVfJ6QW9eRjz8CpNfWEOYBIMIGRYkLwsIYg==
+ /cssstyle/1.4.0:
+ dependencies:
+ cssom: 0.3.8
+ dev: true
+ resolution:
+ integrity: sha512-GBrLZYZ4X4x6/QEoBnIrqb8B/f5l4+8me2dkom/j1Gtbxy0kBv6OGzKuAsGM75bkGwGAFkt56Iwg28S3XTZgSA==
+ /csstype/2.6.8:
+ dev: true
+ resolution:
+ integrity: sha512-msVS9qTuMT5zwAGCVm4mxfrZ18BNc6Csd0oJAtiFMZ1FAx1CCvy2+5MDmYoix63LM/6NDbNtodCiGYGmFgO0dA==
+ /cyclist/1.0.1:
+ dev: true
+ resolution:
+ integrity: sha1-WW6WmP0MgOEgOMK4LW6xs1tiJNk=
+ /d/1.0.1:
+ dependencies:
+ es5-ext: 0.10.53
+ type: 1.2.0
+ dev: true
+ resolution:
+ integrity: sha512-m62ShEObQ39CfralilEQRjH6oAMtNCV1xJyEx5LpRYUVN+EviphDgUc/F3hnYbADmkiNs67Y+3ylmlG7Lnu+FA==
+ /damerau-levenshtein/1.0.5:
+ dev: true
+ resolution:
+ integrity: sha512-CBCRqFnpu715iPmw1KrdOrzRqbdFwQTwAWyyyYS42+iAgHCuXZ+/TdMgQkUENPomxEz9z1BEzuQU2Xw0kUuAgA==
+ /dashdash/1.14.1:
+ dependencies:
+ assert-plus: 1.0.0
+ dev: true
+ engines:
+ node: '>=0.10'
+ resolution:
+ integrity: sha1-hTz6D3y+L+1d4gMmuN1YEDX24vA=
+ /data-urls/1.1.0:
+ dependencies:
+ abab: 2.0.3
+ whatwg-mimetype: 2.3.0
+ whatwg-url: 7.1.0
+ dev: true
+ resolution:
+ integrity: sha512-YTWYI9se1P55u58gL5GkQHW4P6VJBJ5iBT+B5a7i2Tjadhv52paJG0qHX4A0OR6/t52odI64KP2YvFpkDOi3eQ==
+ /date-fns/2.8.1:
+ dev: true
+ resolution:
+ integrity: sha512-EL/C8IHvYRwAHYgFRse4MGAPSqlJVlOrhVYZ75iQBKrnv+ZedmYsgwH3t+BCDuZDXpoo07+q9j4qgSSOa7irJg==
+ /debug/2.6.9:
+ dependencies:
+ ms: 2.0.0
+ dev: true
+ resolution:
+ integrity: sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==
+ /debug/3.2.6:
+ dependencies:
+ ms: 2.1.2
+ dev: true
+ resolution:
+ integrity: sha512-mel+jf7nrtEl5Pn1Qx46zARXKDpBbvzezse7p7LqINmdoIk8PYP5SySaxEmYv6TZ0JyEKA1hsCId6DIhgITtWQ==
+ /debug/4.1.1:
+ dependencies:
+ ms: 2.1.2
+ dev: true
+ resolution:
+ integrity: sha512-pYAIzeRo8J6KPEaJ0VWOh5Pzkbw/RetuzehGM7QRRX5he4fPHx2rdKMB256ehJCkX+XRQm16eZLqLNS8RSZXZw==
+ /decamelize/1.2.0:
+ dev: true
+ engines:
+ node: '>=0.10.0'
+ resolution:
+ integrity: sha1-9lNNFRSCabIDUue+4m9QH5oZEpA=
+ /decode-uri-component/0.2.0:
+ dev: true
+ engines:
+ node: '>=0.10'
+ resolution:
+ integrity: sha1-6zkTMzRYd1y4TNGh+uBiEGu4dUU=
+ /deep-equal/1.1.1:
+ dependencies:
+ is-arguments: 1.0.4
+ is-date-object: 1.0.2
+ is-regex: 1.0.5
+ object-is: 1.0.2
+ object-keys: 1.1.1
+ regexp.prototype.flags: 1.3.0
+ dev: true
+ resolution:
+ integrity: sha512-yd9c5AdiqVcR+JjcwUQb9DkhJc8ngNr0MahEBGvDiJw8puWab2yZlh+nkasOnZP+EGTAP6rRp2JzJhJZzvNF8g==
+ /deep-is/0.1.3:
+ dev: true
+ resolution:
+ integrity: sha1-s2nW+128E+7PUk+RsHD+7cNXzzQ=
+ /default-gateway/4.2.0:
+ dependencies:
+ execa: 1.0.0
+ ip-regex: 2.1.0
+ dev: true
+ engines:
+ node: '>=6'
+ resolution:
+ integrity: sha512-h6sMrVB1VMWVrW13mSc6ia/DwYYw5MN6+exNu1OaJeFac5aSAvwM7lZ0NVfTABuSkQelr4h5oebg3KB1XPdjgA==
+ /define-properties/1.1.3:
+ dependencies:
+ object-keys: 1.1.1
+ dev: true
+ engines:
+ node: '>= 0.4'
+ resolution:
+ integrity: sha512-3MqfYKj2lLzdMSf8ZIZE/V+Zuy+BgD6f164e8K2w7dgnpKArBDerGYpM46IYYcjnkdPNMjPk9A6VFB8+3SKlXQ==
+ /define-property/0.2.5:
+ dependencies:
+ is-descriptor: 0.1.6
+ dev: true
+ engines:
+ node: '>=0.10.0'
+ resolution:
+ integrity: sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY=
+ /define-property/1.0.0:
+ dependencies:
+ is-descriptor: 1.0.2
+ dev: true
+ engines:
+ node: '>=0.10.0'
+ resolution:
+ integrity: sha1-dp66rz9KY6rTr56NMEybvnm/sOY=
+ /define-property/2.0.2:
+ dependencies:
+ is-descriptor: 1.0.2
+ isobject: 3.0.1
+ dev: true
+ engines:
+ node: '>=0.10.0'
+ resolution:
+ integrity: sha512-jwK2UV4cnPpbcG7+VRARKTZPUWowwXA8bzH5NP6ud0oeAxyYPuGZUAC7hMugpCdz4BeSZl2Dl9k66CHJ/46ZYQ==
+ /del/4.1.1:
+ dependencies:
+ '@types/glob': 7.1.1
+ globby: 6.1.0
+ is-path-cwd: 2.2.0
+ is-path-in-cwd: 2.1.0
+ p-map: 2.1.0
+ pify: 4.0.1
+ rimraf: 2.7.1
+ dev: true
+ engines:
+ node: '>=6'
+ resolution:
+ integrity: sha512-QwGuEUouP2kVwQenAsOof5Fv8K9t3D8Ca8NxcXKrIpEHjTXK5J2nXLdP+ALI1cgv8wj7KuwBhTwBkOZSJKM5XQ==
+ /delayed-stream/1.0.0:
+ dev: true
+ engines:
+ node: '>=0.4.0'
+ resolution:
+ integrity: sha1-3zrhmayt+31ECqrgsp4icrJOxhk=
+ /depd/1.1.2:
+ dev: true
+ engines:
+ node: '>= 0.6'
+ resolution:
+ integrity: sha1-m81S4UwJd2PnSbJ0xDRu0uVgtak=
+ /des.js/1.0.1:
+ dependencies:
+ inherits: 2.0.4
+ minimalistic-assert: 1.0.1
+ dev: true
+ resolution:
+ integrity: sha512-Q0I4pfFrv2VPd34/vfLrFOoRmlYj3OV50i7fskps1jZWK1kApMWWT9G6RRUeYedLcBDIhnSDaUvJMb3AhUlaEA==
+ /destroy/1.0.4:
+ dev: true
+ resolution:
+ integrity: sha1-l4hXRCxEdJ5CBmE+N5RiBYJqvYA=
+ /detect-newline/2.1.0:
+ dev: true
+ engines:
+ node: '>=0.10.0'
+ resolution:
+ integrity: sha1-9B8cEL5LAOh7XxPaaAdZ8sW/0+I=
+ /detect-node/2.0.4:
+ dev: true
+ resolution:
+ integrity: sha512-ZIzRpLJrOj7jjP2miAtgqIfmzbxa4ZOr5jJc601zklsfEx9oTzmmj2nVpIPRpNlRTIh8lc1kyViIY7BWSGNmKw==
+ /detect-port-alt/1.1.6:
+ dependencies:
+ address: 1.1.2
+ debug: 2.6.9
+ dev: true
+ engines:
+ node: '>= 4.2.1'
+ hasBin: true
+ resolution:
+ integrity: sha512-5tQykt+LqfJFBEYaDITx7S7cR7mJ/zQmLXZ2qt5w04ainYZw6tBf9dBunMjVeVOdYVRUzUOE4HkY5J7+uttb5Q==
+ /didyoumean/1.2.1:
+ dev: true
+ resolution:
+ integrity: sha1-6S7f2tplN9SE1zwBcv0eugxJdv8=
+ /diff-sequences/24.9.0:
+ dev: true
+ engines:
+ node: '>= 6'
+ resolution:
+ integrity: sha512-Dj6Wk3tWyTE+Fo1rW8v0Xhwk80um6yFYKbuAxc9c3EZxIHFDYwbi34Uk42u1CdnIiVorvt4RmlSDjIPyzGC2ew==
+ /diffie-hellman/5.0.3:
+ dependencies:
+ bn.js: 4.11.8
+ miller-rabin: 4.0.1
+ randombytes: 2.1.0
+ dev: true
+ resolution:
+ integrity: sha512-kqag/Nl+f3GwyK25fhUMYj81BUOrZ9IuJsjIcDE5icNM9FJHAVm3VcUDxdLPoQtTuUylWm6ZIknYJwwaPxsUzg==
+ /dir-glob/2.0.0:
+ dependencies:
+ arrify: 1.0.1
+ path-type: 3.0.0
+ dev: true
+ engines:
+ node: '>=4'
+ resolution:
+ integrity: sha512-37qirFDz8cA5fimp9feo43fSuRo2gHwaIn6dXL8Ber1dGwUosDrGZeCCXq57WnIqE4aQ+u3eQZzsk1yOzhdwag==
+ /dlv/1.1.3:
+ dev: true
+ resolution:
+ integrity: sha512-+HlytyjlPKnIG8XuRG8WvmBP8xs8P71y+SKKS6ZXWoEgLuePxtDoUEiH7WkdePWrQ5JBpE6aoVqfZfJUQkjXwA==
+ /dns-equal/1.0.0:
+ dev: true
+ resolution:
+ integrity: sha1-s55/HabrCnW6nBcySzR1PEfgZU0=
+ /dns-packet/1.3.1:
+ dependencies:
+ ip: 1.1.5
+ safe-buffer: 5.2.0
+ dev: true
+ resolution:
+ integrity: sha512-0UxfQkMhYAUaZI+xrNZOz/as5KgDU0M/fQ9b6SpkyLbk3GEswDi6PADJVaYJradtRVsRIlF1zLyOodbcTCDzUg==
+ /dns-txt/2.0.2:
+ dependencies:
+ buffer-indexof: 1.1.1
+ dev: true
+ resolution:
+ integrity: sha1-uR2Ab10nGI5Ks+fRB9iBocxGQrY=
+ /doctrine/1.5.0:
+ dependencies:
+ esutils: 2.0.3
+ isarray: 1.0.0
+ dev: true
+ engines:
+ node: '>=0.10.0'
+ resolution:
+ integrity: sha1-N53Ocw9hZvds76TmcHoVmwLFpvo=
+ /doctrine/2.1.0:
+ dependencies:
+ esutils: 2.0.3
+ dev: true
+ engines:
+ node: '>=0.10.0'
+ resolution:
+ integrity: sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==
+ /doctrine/3.0.0:
+ dependencies:
+ esutils: 2.0.3
+ dev: true
+ engines:
+ node: '>=6.0.0'
+ resolution:
+ integrity: sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==
+ /dom-converter/0.2.0:
+ dependencies:
+ utila: 0.4.0
+ dev: true
+ resolution:
+ integrity: sha512-gd3ypIPfOMr9h5jIKq8E3sHOTCjeirnl0WK5ZdS1AW0Odt0b1PaWaHdJ4Qk4klv+YB9aJBS7mESXjFoDQPu6DA==
+ /dom-serializer/0.2.2:
+ dependencies:
+ domelementtype: 2.0.1
+ entities: 2.0.0
+ dev: true
+ resolution:
+ integrity: sha512-2/xPb3ORsQ42nHYiSunXkDjPLBaEj/xTwUO4B7XCZQTRk7EBtTOPaygh10YAAh2OI1Qrp6NWfpAhzswj0ydt9g==
+ /domain-browser/1.2.0:
+ dev: true
+ engines:
+ node: '>=0.4'
+ npm: '>=1.2'
+ resolution:
+ integrity: sha512-jnjyiM6eRyZl2H+W8Q/zLMA481hzi0eszAaBUzIVnmYVDBbnLxVNnfu1HgEBvCbL+71FrxMl3E6lpKH7Ge3OXA==
+ /domelementtype/1.3.1:
+ dev: true
+ resolution:
+ integrity: sha512-BSKB+TSpMpFI/HOxCNr1O8aMOTZ8hT3pM3GQ0w/mWRmkhEDSFJkkyzz4XQsBV44BChwGkrDfMyjVD0eA2aFV3w==
+ /domelementtype/2.0.1:
+ dev: true
+ resolution:
+ integrity: sha512-5HOHUDsYZWV8FGWN0Njbr/Rn7f/eWSQi1v7+HsUVwXgn8nWWlL64zKDkS0n8ZmQ3mlWOMuXOnR+7Nx/5tMO5AQ==
+ /domexception/1.0.1:
+ dependencies:
+ webidl-conversions: 4.0.2
+ dev: true
+ resolution:
+ integrity: sha512-raigMkn7CJNNo6Ihro1fzG7wr3fHuYVytzquZKX5n0yizGsTcYgzdIUwj1X9pK0VvjeihV+XiclP+DjwbsSKug==
+ /domhandler/2.4.2:
+ dependencies:
+ domelementtype: 1.3.1
+ dev: true
+ resolution:
+ integrity: sha512-JiK04h0Ht5u/80fdLMCEmV4zkNh2BcoMFBmZ/91WtYZ8qVXSKjiw7fXMgFPnHcSZgOo3XdinHvmnDUeMf5R4wA==
+ /domutils/1.5.1:
+ dependencies:
+ dom-serializer: 0.2.2
+ domelementtype: 1.3.1
+ dev: true
+ resolution:
+ integrity: sha1-3NhIiib1Y9YQeeSMn3t+Mjc2gs8=
+ /domutils/1.7.0:
+ dependencies:
+ dom-serializer: 0.2.2
+ domelementtype: 1.3.1
+ dev: true
+ resolution:
+ integrity: sha512-Lgd2XcJ/NjEw+7tFvfKxOzCYKZsdct5lczQ2ZaQY8Djz7pfAD3Gbp8ySJWtreII/vDlMVmxwa6pHmdxIYgttDg==
+ /dot-prop/4.2.0:
+ dependencies:
+ is-obj: 1.0.1
+ dev: true
+ engines:
+ node: '>=4'
+ resolution:
+ integrity: sha512-tUMXrxlExSW6U2EXiiKGSBVdYgtV8qlHL+C10TsW4PURY/ic+eaysnSkwB4kA/mBlCyy/IKDJ+Lc3wbWeaXtuQ==
+ /dotenv-expand/5.1.0:
+ dev: true
+ resolution:
+ integrity: sha512-YXQl1DSa4/PQyRfgrv6aoNjhasp/p4qs9FjJ4q4cQk+8m4r6k4ZSiEyytKG8f8W9gi8WsQtIObNmKd+tMzNTmA==
+ /dotenv/8.2.0:
+ dev: true
+ engines:
+ node: '>=8'
+ resolution:
+ integrity: sha512-8sJ78ElpbDJBHNeBzUbUVLsqKdccaa/BXF1uPTw3GrvQTBgrQrtObr2mUrE38vzYd8cEv+m/JBfDLioYcfXoaw==
+ /duplexer/0.1.1:
+ dev: true
+ resolution:
+ integrity: sha1-rOb/gIwc5mtX0ev5eXessCM0z8E=
+ /duplexify/3.7.1:
+ dependencies:
+ end-of-stream: 1.4.4
+ inherits: 2.0.4
+ readable-stream: 2.3.7
+ stream-shift: 1.0.1
+ dev: true
+ resolution:
+ integrity: sha512-07z8uv2wMyS51kKhD1KsdXJg5WQ6t93RneqRxUHnskXVtlYYkLqM0gqStQZ3pj073g687jPCHrqNfCzawLYh5g==
+ /ecc-jsbn/0.1.2:
+ dependencies:
+ jsbn: 0.1.1
+ safer-buffer: 2.1.2
+ dev: true
+ resolution:
+ integrity: sha1-OoOpBOVDUyh4dMVkt1SThoSamMk=
+ /ee-first/1.1.1:
+ dev: true
+ resolution:
+ integrity: sha1-WQxhFWsK4vTwJVcyoViyZrxWsh0=
+ /electron-to-chromium/1.3.328:
+ dev: true
+ resolution:
+ integrity: sha512-x4XefnFxDxFwaQ01d/pppJP9meWhOIJ/gtI6/4jqkpsadq79uL7NYSaX64naLmJqvzUBjSrO3IM2+1b/W9KdPg==
+ /elliptic/6.5.2:
+ dependencies:
+ bn.js: 4.11.8
+ brorand: 1.1.0
+ hash.js: 1.1.7
+ hmac-drbg: 1.0.1
+ inherits: 2.0.4
+ minimalistic-assert: 1.0.1
+ minimalistic-crypto-utils: 1.0.1
+ dev: true
+ resolution:
+ integrity: sha512-f4x70okzZbIQl/NSRLkI/+tteV/9WqL98zx+SQ69KbXxmVrmjwsNUPn/gYJJ0sHvEak24cZgHIPegRePAtA/xw==
+ /email-addresses/3.1.0:
+ dev: true
+ resolution:
+ integrity: sha512-k0/r7GrWVL32kZlGwfPNgB2Y/mMXVTq/decgLczm/j34whdaspNrZO8CnXPf1laaHxI6ptUlsnAxN+UAPw+fzg==
+ /emoji-regex/7.0.3:
+ dev: true
+ resolution:
+ integrity: sha512-CwBLREIQ7LvYFB0WyRvwhq5N5qPhc6PMjD6bYggFlI5YyDgl+0vxq5VHbMOFqLg7hfWzmu8T5Z1QofhmTIhItA==
+ /emoji-regex/8.0.0:
+ dev: true
+ resolution:
+ integrity: sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==
+ /emojis-list/2.1.0:
+ dev: true
+ engines:
+ node: '>= 0.10'
+ resolution:
+ integrity: sha1-TapNnbAPmBmIDHn6RXrlsJof04k=
+ /encodeurl/1.0.2:
+ dev: true
+ engines:
+ node: '>= 0.8'
+ resolution:
+ integrity: sha1-rT/0yG7C0CkyL1oCw6mmBslbP1k=
+ /end-of-stream/1.4.4:
+ dependencies:
+ once: 1.4.0
+ dev: true
+ resolution:
+ integrity: sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q==
+ /enhanced-resolve/4.1.1:
+ dependencies:
+ graceful-fs: 4.2.3
+ memory-fs: 0.5.0
+ tapable: 1.1.3
+ dev: true
+ engines:
+ node: '>=6.9.0'
+ resolution:
+ integrity: sha512-98p2zE+rL7/g/DzMHMTF4zZlCgeVdJ7yr6xzEpJRYwFYrGi9ANdn5DnJURg6RpBkyk60XYDnWIv51VfIhfNGuA==
+ /entities/1.1.2:
+ dev: true
+ resolution:
+ integrity: sha512-f2LZMYl1Fzu7YSBKg+RoROelpOaNrcGmE9AZubeDfrCEia483oW4MI4VyFd5VNHIgQ/7qm1I0wUHK1eJnn2y2w==
+ /entities/2.0.0:
+ dev: true
+ resolution:
+ integrity: sha512-D9f7V0JSRwIxlRI2mjMqufDrRDnx8p+eEOz7aUM9SuvF8gsBzra0/6tbjl1m8eQHrZlYj6PxqE00hZ1SAIKPLw==
+ /errno/0.1.7:
+ dependencies:
+ prr: 1.0.1
+ dev: true
+ hasBin: true
+ resolution:
+ integrity: sha512-MfrRBDWzIWifgq6tJj60gkAwtLNb6sQPlcFrSOflcP1aFmmruKQ2wRnze/8V6kgyz7H3FF8Npzv78mZ7XLLflg==
+ /error-ex/1.3.2:
+ dependencies:
+ is-arrayish: 0.2.1
+ dev: true
+ resolution:
+ integrity: sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==
+ /es-abstract/1.17.0:
+ dependencies:
+ es-to-primitive: 1.2.1
+ function-bind: 1.1.1
+ has: 1.0.3
+ has-symbols: 1.0.1
+ is-callable: 1.1.5
+ is-regex: 1.0.5
+ object-inspect: 1.7.0
+ object-keys: 1.1.1
+ object.assign: 4.1.0
+ string.prototype.trimleft: 2.1.1
+ string.prototype.trimright: 2.1.1
+ dev: true
+ engines:
+ node: '>= 0.4'
+ resolution:
+ integrity: sha512-yYkE07YF+6SIBmg1MsJ9dlub5L48Ek7X0qz+c/CPCHS9EBXfESorzng4cJQjJW5/pB6vDF41u7F8vUhLVDqIug==
+ /es-to-primitive/1.2.1:
+ dependencies:
+ is-callable: 1.1.5
+ is-date-object: 1.0.2
+ is-symbol: 1.0.3
+ dev: true
+ engines:
+ node: '>= 0.4'
+ resolution:
+ integrity: sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==
+ /es5-ext/0.10.53:
+ dependencies:
+ es6-iterator: 2.0.3
+ es6-symbol: 3.1.3
+ next-tick: 1.0.0
+ dev: true
+ resolution:
+ integrity: sha512-Xs2Stw6NiNHWypzRTY1MtaG/uJlwCk8kH81920ma8mvN8Xq1gsfhZvpkImLQArw8AHnv8MT2I45J3c0R8slE+Q==
+ /es6-iterator/2.0.3:
+ dependencies:
+ d: 1.0.1
+ es5-ext: 0.10.53
+ es6-symbol: 3.1.3
+ dev: true
+ resolution:
+ integrity: sha1-p96IkUGgWpSwhUQDstCg+/qY87c=
+ /es6-symbol/3.1.3:
+ dependencies:
+ d: 1.0.1
+ ext: 1.4.0
+ dev: true
+ resolution:
+ integrity: sha512-NJ6Yn3FuDinBaBRWl/q5X/s4koRHBrgKAu+yGI6JCBeiu3qrcbJhwT2GeR/EXVfylRk8dpQVJoLEFhK+Mu31NA==
+ /escape-html/1.0.3:
+ dev: true
+ resolution:
+ integrity: sha1-Aljq5NPQwJdN4cFpGI7wBR0dGYg=
+ /escape-string-regexp/1.0.5:
+ dev: true
+ engines:
+ node: '>=0.8.0'
+ resolution:
+ integrity: sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ=
+ /escodegen/1.12.1:
+ dependencies:
+ esprima: 3.1.3
+ estraverse: 4.3.0
+ esutils: 2.0.3
+ optionator: 0.8.3
+ dev: true
+ engines:
+ node: '>=4.0'
+ hasBin: true
+ optionalDependencies:
+ source-map: 0.6.1
+ resolution:
+ integrity: sha512-Q8t2YZ+0e0pc7NRVj3B4tSQ9rim1oi4Fh46k2xhJ2qOiEwhQfdjyEQddWdj7ZFaKmU+5104vn1qrcjEPWq+bgQ==
+ /eslint-config-airbnb-base/14.0.0_299a254f64ebbbcc1b645d4839412a08:
+ dependencies:
+ confusing-browser-globals: 1.0.9
+ eslint: 6.8.0
+ eslint-plugin-import: 2.19.1_eslint@6.8.0
+ object.assign: 4.1.0
+ object.entries: 1.1.1
+ dev: true
+ engines:
+ node: '>= 6'
+ peerDependencies:
+ eslint: ^5.16.0 || ^6.1.0
+ eslint-plugin-import: ^2.18.2
+ resolution:
+ integrity: sha512-2IDHobw97upExLmsebhtfoD3NAKhV4H0CJWP3Uprd/uk+cHuWYOczPVxQ8PxLFUAw7o3Th1RAU8u1DoUpr+cMA==
+ /eslint-config-airbnb/18.0.1_05eda38148720206d7c9280ea5caa448:
+ dependencies:
+ eslint: 6.8.0
+ eslint-config-airbnb-base: 14.0.0_299a254f64ebbbcc1b645d4839412a08
+ eslint-plugin-import: 2.19.1_eslint@6.8.0
+ eslint-plugin-jsx-a11y: 6.2.3_eslint@6.8.0
+ eslint-plugin-react: 7.17.0_eslint@6.8.0
+ eslint-plugin-react-hooks: 2.3.0_eslint@6.8.0
+ object.assign: 4.1.0
+ object.entries: 1.1.1
+ dev: true
+ engines:
+ node: '>= 6'
+ peerDependencies:
+ eslint: ^5.16.0 || ^6.1.0
+ eslint-plugin-import: ^2.18.2
+ eslint-plugin-jsx-a11y: ^6.2.3
+ eslint-plugin-react: ^7.14.3
+ eslint-plugin-react-hooks: ^1.7.0
+ resolution:
+ integrity: sha512-hLb/ccvW4grVhvd6CT83bECacc+s4Z3/AEyWQdIT2KeTsG9dR7nx1gs7Iw4tDmGKozCNHFn4yZmRm3Tgy+XxyQ==
+ /eslint-config-prettier/6.9.0_eslint@6.8.0:
+ dependencies:
+ eslint: 6.8.0
+ get-stdin: 6.0.0
+ dev: true
+ hasBin: true
+ peerDependencies:
+ eslint: '>=3.14.1'
+ resolution:
+ integrity: sha512-k4E14HBtcLv0uqThaI6I/n1LEqROp8XaPu6SO9Z32u5NlGRC07Enu1Bh2KEFw4FNHbekH8yzbIU9kUGxbiGmCA==
+ /eslint-config-react-app/5.1.0_03a734dfb8531efb376efac7b66af4ae:
+ dependencies:
+ '@typescript-eslint/eslint-plugin': 2.15.0_17206d85cb7d94075d48587653b09c73
+ '@typescript-eslint/parser': 2.15.0_eslint@6.8.0+typescript@3.7.4
+ babel-eslint: 10.0.3_eslint@6.8.0
+ confusing-browser-globals: 1.0.9
+ eslint: 6.8.0
+ eslint-plugin-import: 2.19.1_eslint@6.8.0
+ eslint-plugin-jsx-a11y: 6.2.3_eslint@6.8.0
+ eslint-plugin-react: 7.17.0_eslint@6.8.0
+ eslint-plugin-react-hooks: 2.3.0_eslint@6.8.0
+ dev: true
+ peerDependencies:
+ '@typescript-eslint/eslint-plugin': 2.x
+ '@typescript-eslint/parser': 2.x
+ babel-eslint: 10.x
+ eslint: 6.x
+ eslint-plugin-flowtype: 3.x
+ eslint-plugin-import: 2.x
+ eslint-plugin-jsx-a11y: 6.x
+ eslint-plugin-react: 7.x
+ eslint-plugin-react-hooks: 1.x
+ resolution:
+ integrity: sha512-hBaxisHC6HXRVvxX+/t1n8mOdmCVIKgkXsf2WoUkJi7upHJTwYTsdCmx01QPOjKNT34QMQQ9sL0tVBlbiMFjxA==
+ /eslint-config-react-app/5.1.0_1d29af58818294fd027620c0acce1022:
+ dependencies:
+ '@typescript-eslint/eslint-plugin': 2.15.0_17206d85cb7d94075d48587653b09c73
+ '@typescript-eslint/parser': 2.15.0_eslint@6.8.0+typescript@3.7.4
+ babel-eslint: 10.0.3_eslint@6.8.0
+ confusing-browser-globals: 1.0.9
+ eslint: 6.8.0
+ eslint-plugin-flowtype: 3.13.0_eslint@6.8.0
+ eslint-plugin-import: 2.18.2_eslint@6.8.0
+ eslint-plugin-jsx-a11y: 6.2.3_eslint@6.8.0
+ eslint-plugin-react: 7.16.0_eslint@6.8.0
+ eslint-plugin-react-hooks: 1.7.0_eslint@6.8.0
+ dev: true
+ peerDependencies:
+ '@typescript-eslint/eslint-plugin': 2.x
+ '@typescript-eslint/parser': 2.x
+ babel-eslint: 10.x
+ eslint: 6.x
+ eslint-plugin-flowtype: 3.x
+ eslint-plugin-import: 2.x
+ eslint-plugin-jsx-a11y: 6.x
+ eslint-plugin-react: 7.x
+ eslint-plugin-react-hooks: 1.x
+ resolution:
+ integrity: sha512-hBaxisHC6HXRVvxX+/t1n8mOdmCVIKgkXsf2WoUkJi7upHJTwYTsdCmx01QPOjKNT34QMQQ9sL0tVBlbiMFjxA==
+ /eslint-import-resolver-node/0.3.2:
+ dependencies:
+ debug: 2.6.9
+ resolve: 1.14.2
+ dev: true
+ resolution:
+ integrity: sha512-sfmTqJfPSizWu4aymbPr4Iidp5yKm8yDkHp+Ir3YiTHiiDfxh69mOUsmiqW6RZ9zRXFaF64GtYmN7e+8GHBv6Q==
+ /eslint-loader/3.0.2_eslint@6.8.0+webpack@4.41.2:
+ dependencies:
+ eslint: 6.8.0
+ fs-extra: 8.1.0
+ loader-fs-cache: 1.0.2
+ loader-utils: 1.2.3
+ object-hash: 1.3.1
+ schema-utils: 2.6.1
+ webpack: 4.41.2_webpack@4.41.2
+ dev: true
+ engines:
+ node: '>= 8.9.0'
+ peerDependencies:
+ eslint: ^5.0.0 || ^6.0.0
+ webpack: ^4.0.0
+ resolution:
+ integrity: sha512-S5VnD+UpVY1PyYRqeBd/4pgsmkvSokbHqTXAQMpvCyRr3XN2tvSLo9spm2nEpqQqh9dezw3os/0zWihLeOg2Rw==
+ /eslint-module-utils/2.5.0:
+ dependencies:
+ debug: 2.6.9
+ pkg-dir: 2.0.0
+ dev: true
+ engines:
+ node: '>=4'
+ resolution:
+ integrity: sha512-kCo8pZaNz2dsAW7nCUjuVoI11EBXXpIzfNxmaoLhXoRDOnqXLC4iSGVRdZPhOitfbdEfMEfKOiENaK6wDPZEGw==
+ /eslint-plugin-eslint-plugin/2.2.0_eslint@6.8.0:
+ dependencies:
+ eslint: 6.8.0
+ dev: true
+ engines:
+ node: ^6.14.0 || ^8.10.0 || >=9.10.0
+ peerDependencies:
+ eslint: '>=5.0.0'
+ resolution:
+ integrity: sha512-X5+NT9a2GuwWyb3sHJdEEe6aD/30Fhi3/9XCmYHe/OSnWKUhmKOxFTfFM1AXZfJXjAoX7811bnoLI3fZr5AX5Q==
+ /eslint-plugin-flowtype/3.13.0_eslint@6.8.0:
+ dependencies:
+ eslint: 6.8.0
+ lodash: 4.17.15
+ dev: true
+ engines:
+ node: '>=4'
+ peerDependencies:
+ eslint: '>=5.0.0'
+ resolution:
+ integrity: sha512-bhewp36P+t7cEV0b6OdmoRWJCBYRiHFlqPZAG1oS3SF+Y0LQkeDvFSM4oxoxvczD1OdONCXMlJfQFiWLcV9urw==
+ /eslint-plugin-import/2.18.2_eslint@6.8.0:
+ dependencies:
+ array-includes: 3.1.1
+ contains-path: 0.1.0
+ debug: 2.6.9
+ doctrine: 1.5.0
+ eslint: 6.8.0
+ eslint-import-resolver-node: 0.3.2
+ eslint-module-utils: 2.5.0
+ has: 1.0.3
+ minimatch: 3.0.4
+ object.values: 1.1.1
+ read-pkg-up: 2.0.0
+ resolve: 1.12.2
+ dev: true
+ engines:
+ node: '>=4'
+ peerDependencies:
+ eslint: 2.x - 6.x
+ resolution:
+ integrity: sha512-5ohpsHAiUBRNaBWAF08izwUGlbrJoJJ+W9/TBwsGoR1MnlgfwMIKrFeSjWbt6moabiXW9xNvtFz+97KHRfI4HQ==
+ /eslint-plugin-import/2.19.1_eslint@6.8.0:
+ dependencies:
+ array-includes: 3.1.1
+ array.prototype.flat: 1.2.3
+ contains-path: 0.1.0
+ debug: 2.6.9
+ doctrine: 1.5.0
+ eslint: 6.8.0
+ eslint-import-resolver-node: 0.3.2
+ eslint-module-utils: 2.5.0
+ has: 1.0.3
+ minimatch: 3.0.4
+ object.values: 1.1.1
+ read-pkg-up: 2.0.0
+ resolve: 1.14.2
+ dev: true
+ engines:
+ node: '>=4'
+ peerDependencies:
+ eslint: 2.x - 6.x
+ resolution:
+ integrity: sha512-x68131aKoCZlCae7rDXKSAQmbT5DQuManyXo2sK6fJJ0aK5CWAkv6A6HJZGgqC8IhjQxYPgo6/IY4Oz8AFsbBw==
+ /eslint-plugin-jest/23.3.0_eslint@6.8.0+typescript@3.7.4:
+ dependencies:
+ '@typescript-eslint/experimental-utils': 2.15.0_eslint@6.8.0+typescript@3.7.4
+ eslint: 6.8.0
+ dev: true
+ engines:
+ node: '>=8'
+ peerDependencies:
+ eslint: '>=5'
+ typescript: '*'
+ resolution:
+ integrity: sha512-GE6CR4ESJeu6Huw7vfZfaXHmX2R2kCFvf2X9OMcOxfP158yLKgLWz7PqLYTwRDACi84IhpmRxO8lK7GGwG05UQ==
+ /eslint-plugin-jsx-a11y/6.2.3_eslint@6.8.0:
+ dependencies:
+ '@babel/runtime': 7.7.7
+ aria-query: 3.0.0
+ array-includes: 3.1.1
+ ast-types-flow: 0.0.7
+ axobject-query: 2.1.1_eslint@6.8.0
+ damerau-levenshtein: 1.0.5
+ emoji-regex: 7.0.3
+ eslint: 6.8.0
+ has: 1.0.3
+ jsx-ast-utils: 2.2.3
+ dev: true
+ engines:
+ node: '>=4.0'
+ peerDependencies:
+ eslint: ^3 || ^4 || ^5 || ^6
+ resolution:
+ integrity: sha512-CawzfGt9w83tyuVekn0GDPU9ytYtxyxyFZ3aSWROmnRRFQFT2BiPJd7jvRdzNDi6oLWaS2asMeYSNMjWTV4eNg==
+ /eslint-plugin-prettier/3.1.2_eslint@6.8.0+prettier@1.19.1:
+ dependencies:
+ eslint: 6.8.0
+ prettier: 1.19.1
+ prettier-linter-helpers: 1.0.0
+ dev: true
+ engines:
+ node: '>=6.0.0'
+ peerDependencies:
+ eslint: '>= 5.0.0'
+ prettier: '>= 1.13.0'
+ resolution:
+ integrity: sha512-GlolCC9y3XZfv3RQfwGew7NnuFDKsfI4lbvRK+PIIo23SFH+LemGs4cKwzAaRa+Mdb+lQO/STaIayno8T5sJJA==
+ /eslint-plugin-react-hooks/1.7.0_eslint@6.8.0:
+ dependencies:
+ eslint: 6.8.0
+ dev: true
+ engines:
+ node: '>=7'
+ peerDependencies:
+ eslint: ^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0
+ resolution:
+ integrity: sha512-iXTCFcOmlWvw4+TOE8CLWj6yX1GwzT0Y6cUfHHZqWnSk144VmVIRcVGtUAzrLES7C798lmvnt02C7rxaOX1HNA==
+ /eslint-plugin-react-hooks/2.3.0_eslint@6.8.0:
+ dependencies:
+ eslint: 6.8.0
+ dev: true
+ engines:
+ node: '>=7'
+ peerDependencies:
+ eslint: ^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0
+ resolution:
+ integrity: sha512-gLKCa52G4ee7uXzdLiorca7JIQZPPXRAQDXV83J4bUEeUuc5pIEyZYAZ45Xnxe5IuupxEqHS+hUhSLIimK1EMw==
+ /eslint-plugin-react/7.16.0_eslint@6.8.0:
+ dependencies:
+ array-includes: 3.1.1
+ doctrine: 2.1.0
+ eslint: 6.8.0
+ has: 1.0.3
+ jsx-ast-utils: 2.2.3
+ object.entries: 1.1.1
+ object.fromentries: 2.0.2
+ object.values: 1.1.1
+ prop-types: 15.7.2
+ resolve: 1.12.2
+ dev: true
+ engines:
+ node: '>=4'
+ peerDependencies:
+ eslint: ^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0
+ resolution:
+ integrity: sha512-GacBAATewhhptbK3/vTP09CbFrgUJmBSaaRcWdbQLFvUZy9yVcQxigBNHGPU/KE2AyHpzj3AWXpxoMTsIDiHug==
+ /eslint-plugin-react/7.17.0_eslint@6.8.0:
+ dependencies:
+ array-includes: 3.1.1
+ doctrine: 2.1.0
+ eslint: 6.8.0
+ eslint-plugin-eslint-plugin: 2.2.0_eslint@6.8.0
+ has: 1.0.3
+ jsx-ast-utils: 2.2.3
+ object.entries: 1.1.1
+ object.fromentries: 2.0.2
+ object.values: 1.1.1
+ prop-types: 15.7.2
+ resolve: 1.14.2
+ dev: true
+ engines:
+ node: '>=4'
+ peerDependencies:
+ eslint: ^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0
+ resolution:
+ integrity: sha512-ODB7yg6lxhBVMeiH1c7E95FLD4E/TwmFjltiU+ethv7KPdCwgiFuOZg9zNRHyufStTDLl/dEFqI2Q1VPmCd78A==
+ /eslint-scope/3.7.3:
+ dependencies:
+ esrecurse: 4.2.1
+ estraverse: 4.3.0
+ dev: true
+ engines:
+ node: '>=4.0.0'
+ resolution:
+ integrity: sha512-W+B0SvF4gamyCTmUc+uITPY0989iXVfKvhwtmJocTaYoc/3khEHmEmvfY/Gn9HA9VV75jrQECsHizkNw1b68FA==
+ /eslint-scope/4.0.3:
+ dependencies:
+ esrecurse: 4.2.1
+ estraverse: 4.3.0
+ dev: true
+ engines:
+ node: '>=4.0.0'
+ resolution:
+ integrity: sha512-p7VutNr1O/QrxysMo3E45FjYDTeXBy0iTltPFNSqKAIfjDSXC+4dj+qfyuD8bfAXrW/y6lW3O76VaYNPKfpKrg==
+ /eslint-scope/5.0.0:
+ dependencies:
+ esrecurse: 4.2.1
+ estraverse: 4.3.0
+ dev: true
+ engines:
+ node: '>=8.0.0'
+ resolution:
+ integrity: sha512-oYrhJW7S0bxAFDvWqzvMPRm6pcgcnWc4QnofCAqRTRfQC0JcwenzGglTtsLyIuuWFfkqDG9vz67cnttSd53djw==
+ /eslint-utils/1.4.3:
+ dependencies:
+ eslint-visitor-keys: 1.1.0
+ dev: true
+ engines:
+ node: '>=6'
+ resolution:
+ integrity: sha512-fbBN5W2xdY45KulGXmLHZ3c3FHfVYmKg0IrAKGOkT/464PQsx2UeIzfz1RmEci+KLm1bBaAzZAh8+/E+XAeZ8Q==
+ /eslint-visitor-keys/1.1.0:
+ dev: true
+ engines:
+ node: '>=4'
+ resolution:
+ integrity: sha512-8y9YjtM1JBJU/A9Kc+SbaOV4y29sSWckBwMHa+FGtVj5gN/sbnKDf6xJUl+8g7FAij9LVaP8C24DUiH/f/2Z9A==
+ /eslint/5.16.0:
+ dependencies:
+ '@babel/code-frame': 7.5.5
+ ajv: 6.10.2
+ chalk: 2.4.2
+ cross-spawn: 6.0.5
+ debug: 4.1.1
+ doctrine: 3.0.0
+ eslint-scope: 4.0.3
+ eslint-utils: 1.4.3
+ eslint-visitor-keys: 1.1.0
+ espree: 5.0.1
+ esquery: 1.0.1
+ esutils: 2.0.3
+ file-entry-cache: 5.0.1
+ functional-red-black-tree: 1.0.1
+ glob: 7.1.6
+ globals: 11.12.0
+ ignore: 4.0.6
+ import-fresh: 3.2.1
+ imurmurhash: 0.1.4
+ inquirer: 6.5.2
+ js-yaml: 3.13.1
+ json-stable-stringify-without-jsonify: 1.0.1
+ levn: 0.3.0
+ lodash: 4.17.15
+ minimatch: 3.0.4
+ mkdirp: 0.5.1
+ natural-compare: 1.4.0
+ optionator: 0.8.3
+ path-is-inside: 1.0.2
+ progress: 2.0.3
+ regexpp: 2.0.1
+ semver: 5.7.1
+ strip-ansi: 4.0.0
+ strip-json-comments: 2.0.1
+ table: 5.4.6
+ text-table: 0.2.0
+ dev: true
+ engines:
+ node: ^6.14.0 || ^8.10.0 || >=9.10.0
+ hasBin: true
+ resolution:
+ integrity: sha512-S3Rz11i7c8AA5JPv7xAH+dOyq/Cu/VXHiHXBPOU1k/JAM5dXqQPt3qcrhpHSorXmrpu2g0gkIBVXAqCpzfoZIg==
+ /eslint/6.8.0:
+ dependencies:
+ '@babel/code-frame': 7.5.5
+ ajv: 6.10.2
+ chalk: 2.4.2
+ cross-spawn: 6.0.5
+ debug: 4.1.1
+ doctrine: 3.0.0
+ eslint-scope: 5.0.0
+ eslint-utils: 1.4.3
+ eslint-visitor-keys: 1.1.0
+ espree: 6.1.2
+ esquery: 1.0.1
+ esutils: 2.0.3
+ file-entry-cache: 5.0.1
+ functional-red-black-tree: 1.0.1
+ glob-parent: 5.1.0
+ globals: 12.3.0
+ ignore: 4.0.6
+ import-fresh: 3.2.1
+ imurmurhash: 0.1.4
+ inquirer: 7.0.3
+ is-glob: 4.0.1
+ js-yaml: 3.13.1
+ json-stable-stringify-without-jsonify: 1.0.1
+ levn: 0.3.0
+ lodash: 4.17.15
+ minimatch: 3.0.4
+ mkdirp: 0.5.1
+ natural-compare: 1.4.0
+ optionator: 0.8.3
+ progress: 2.0.3
+ regexpp: 2.0.1
+ semver: 6.3.0
+ strip-ansi: 5.2.0
+ strip-json-comments: 3.0.1
+ table: 5.4.6
+ text-table: 0.2.0
+ v8-compile-cache: 2.1.0
+ dev: true
+ engines:
+ node: ^8.10.0 || ^10.13.0 || >=11.10.1
+ hasBin: true
+ resolution:
+ integrity: sha512-K+Iayyo2LtyYhDSYwz5D5QdWw0hCacNzyq1Y821Xna2xSJj7cijoLLYmLxTQgcgZ9mC61nryMy9S7GRbYpI5Ig==
+ /espree/3.5.4:
+ dependencies:
+ acorn: 5.7.3
+ acorn-jsx: 3.0.1
+ dev: true
+ engines:
+ node: '>=0.10.0'
+ resolution:
+ integrity: sha512-yAcIQxtmMiB/jL32dzEp2enBeidsB7xWPLNiw3IIkpVds1P+h7qF9YwJq1yUNzp2OKXgAprs4F61ih66UsoD1A==
+ /espree/5.0.1:
+ dependencies:
+ acorn: 6.4.0
+ acorn-jsx: 5.1.0_acorn@6.4.0
+ eslint-visitor-keys: 1.1.0
+ dev: true
+ engines:
+ node: '>=6.0.0'
+ resolution:
+ integrity: sha512-qWAZcWh4XE/RwzLJejfcofscgMc9CamR6Tn1+XRXNzrvUSSbiAjGOI/fggztjIi7y9VLPqnICMIPiGyr8JaZ0A==
+ /espree/6.1.2:
+ dependencies:
+ acorn: 7.1.0
+ acorn-jsx: 5.1.0_acorn@7.1.0
+ eslint-visitor-keys: 1.1.0
+ dev: true
+ engines:
+ node: '>=6.0.0'
+ resolution:
+ integrity: sha512-2iUPuuPP+yW1PZaMSDM9eyVf8D5P0Hi8h83YtZ5bPc/zHYjII5khoixIUTMO794NOY8F/ThF1Bo8ncZILarUTA==
+ /esprima/3.1.3:
+ dev: true
+ engines:
+ node: '>=4'
+ hasBin: true
+ resolution:
+ integrity: sha1-/cpRzuYTOJXjyI1TXOSdv/YqRjM=
+ /esprima/4.0.1:
+ dev: true
+ engines:
+ node: '>=4'
+ hasBin: true
+ resolution:
+ integrity: sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==
+ /esquery/1.0.1:
+ dependencies:
+ estraverse: 4.3.0
+ dev: true
+ engines:
+ node: '>=0.6'
+ resolution:
+ integrity: sha512-SmiyZ5zIWH9VM+SRUReLS5Q8a7GxtRdxEBVZpm98rJM7Sb+A9DVCndXfkeFUd3byderg+EbDkfnevfCwynWaNA==
+ /esrecurse/4.2.1:
+ dependencies:
+ estraverse: 4.3.0
+ dev: true
+ engines:
+ node: '>=4.0'
+ resolution:
+ integrity: sha512-64RBB++fIOAXPw3P9cy89qfMlvZEXZkqqJkjqqXIvzP5ezRZjW+lPWjw35UX/3EhUPFYbg5ER4JYgDw4007/DQ==
+ /estraverse/4.3.0:
+ dev: true
+ engines:
+ node: '>=4.0'
+ resolution:
+ integrity: sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==
+ /estree-walker/0.6.1:
+ dev: true
+ resolution:
+ integrity: sha512-SqmZANLWS0mnatqbSfRP5g8OXZC12Fgg1IwNtLsyHDzJizORW4khDfjPqJZsemPWBB2uqykUah5YpQ6epsqC/w==
+ /esutils/2.0.3:
+ dev: true
+ engines:
+ node: '>=0.10.0'
+ resolution:
+ integrity: sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==
+ /etag/1.8.1:
+ dev: true
+ engines:
+ node: '>= 0.6'
+ resolution:
+ integrity: sha1-Qa4u62XvpiJorr/qg6x9eSmbCIc=
+ /eventemitter3/4.0.0:
+ dev: true
+ resolution:
+ integrity: sha512-qerSRB0p+UDEssxTtm6EDKcE7W4OaoisfIMl4CngyEhjpYglocpNg6UEqCvemdGhosAsg4sO2dXJOdyBifPGCg==
+ /events/3.0.0:
+ dev: true
+ engines:
+ node: '>=0.8.x'
+ resolution:
+ integrity: sha512-Dc381HFWJzEOhQ+d8pkNon++bk9h6cdAoAj4iE6Q4y6xgTzySWXlKn05/TVNpjnfRqi/X0EpJEJohPjNI3zpVA==
+ /eventsource/1.0.7:
+ dependencies:
+ original: 1.0.2
+ dev: true
+ engines:
+ node: '>=0.12.0'
+ resolution:
+ integrity: sha512-4Ln17+vVT0k8aWq+t/bF5arcS3EpT9gYtW66EPacdj/mAFevznsnyoHLPy2BA8gbIQeIHoPsvwmfBftfcG//BQ==
+ /evp_bytestokey/1.0.3:
+ dependencies:
+ md5.js: 1.3.5
+ safe-buffer: 5.2.0
+ dev: true
+ resolution:
+ integrity: sha512-/f2Go4TognH/KvCISP7OUsHn85hT9nUkxxA9BEWxFn+Oj9o8ZNLm/40hdlgSLyuOimsrTKLUMEorQexp/aPQeA==
+ /exec-sh/0.3.4:
+ dev: true
+ resolution:
+ integrity: sha512-sEFIkc61v75sWeOe72qyrqg2Qg0OuLESziUDk/O/z2qgS15y2gWVFrI6f2Qn/qw/0/NCfCEsmNA4zOjkwEZT1A==
+ /execa/1.0.0:
+ dependencies:
+ cross-spawn: 6.0.5
+ get-stream: 4.1.0
+ is-stream: 1.1.0
+ npm-run-path: 2.0.2
+ p-finally: 1.0.0
+ signal-exit: 3.0.2
+ strip-eof: 1.0.0
+ dev: true
+ engines:
+ node: '>=6'
+ resolution:
+ integrity: sha512-adbxcyWV46qiHyvSp50TKt05tB4tK3HcmF7/nxfAdhnox83seTDbwnaqKO4sXRy7roHAIFqJP/Rw/AuEbX61LA==
+ /exit/0.1.2:
+ dev: true
+ engines:
+ node: '>= 0.8.0'
+ resolution:
+ integrity: sha1-BjJjj42HfMghB9MKD/8aF8uhzQw=
+ /expand-brackets/2.1.4:
+ dependencies:
+ debug: 2.6.9
+ define-property: 0.2.5
+ extend-shallow: 2.0.1
+ posix-character-classes: 0.1.1
+ regex-not: 1.0.2
+ snapdragon: 0.8.2
+ to-regex: 3.0.2
+ dev: true
+ engines:
+ node: '>=0.10.0'
+ resolution:
+ integrity: sha1-t3c14xXOMPa27/D4OwQVGiJEliI=
+ /expect/24.9.0:
+ dependencies:
+ '@jest/types': 24.9.0
+ ansi-styles: 3.2.1
+ jest-get-type: 24.9.0
+ jest-matcher-utils: 24.9.0
+ jest-message-util: 24.9.0
+ jest-regex-util: 24.9.0
+ dev: true
+ engines:
+ node: '>= 6'
+ resolution:
+ integrity: sha512-wvVAx8XIol3Z5m9zvZXiyZOQ+sRJqNTIm6sGjdWlaZIeupQGO3WbYI+15D/AmEwZywL6wtJkbAbJtzkOfBuR0Q==
+ /express/4.17.1:
+ dependencies:
+ accepts: 1.3.7
+ array-flatten: 1.1.1
+ body-parser: 1.19.0
+ content-disposition: 0.5.3
+ content-type: 1.0.4
+ cookie: 0.4.0
+ cookie-signature: 1.0.6
+ debug: 2.6.9
+ depd: 1.1.2
+ encodeurl: 1.0.2
+ escape-html: 1.0.3
+ etag: 1.8.1
+ finalhandler: 1.1.2
+ fresh: 0.5.2
+ merge-descriptors: 1.0.1
+ methods: 1.1.2
+ on-finished: 2.3.0
+ parseurl: 1.3.3
+ path-to-regexp: 0.1.7
+ proxy-addr: 2.0.5
+ qs: 6.7.0
+ range-parser: 1.2.1
+ safe-buffer: 5.1.2
+ send: 0.17.1
+ serve-static: 1.14.1
+ setprototypeof: 1.1.1
+ statuses: 1.5.0
+ type-is: 1.6.18
+ utils-merge: 1.0.1
+ vary: 1.1.2
+ dev: true
+ engines:
+ node: '>= 0.10.0'
+ resolution:
+ integrity: sha512-mHJ9O79RqluphRrcw2X/GTh3k9tVv8YcoyY4Kkh4WDMUYKRZUq0h1o0w2rrrxBqM7VoeUVqgb27xlEMXTnYt4g==
+ /ext/1.4.0:
+ dependencies:
+ type: 2.0.0
+ dev: true
+ resolution:
+ integrity: sha512-Key5NIsUxdqKg3vIsdw9dSuXpPCQ297y6wBjL30edxwPgt2E44WcWBZey/ZvUc6sERLTxKdyCu4gZFmUbk1Q7A==
+ /extend-shallow/2.0.1:
+ dependencies:
+ is-extendable: 0.1.1
+ dev: true
+ engines:
+ node: '>=0.10.0'
+ resolution:
+ integrity: sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=
+ /extend-shallow/3.0.2:
+ dependencies:
+ assign-symbols: 1.0.0
+ is-extendable: 1.0.1
+ dev: true
+ engines:
+ node: '>=0.10.0'
+ resolution:
+ integrity: sha1-Jqcarwc7OfshJxcnRhMcJwQCjbg=
+ /extend/3.0.2:
+ dev: true
+ resolution:
+ integrity: sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==
+ /external-editor/3.1.0:
+ dependencies:
+ chardet: 0.7.0
+ iconv-lite: 0.4.24
+ tmp: 0.0.33
+ dev: true
+ engines:
+ node: '>=4'
+ resolution:
+ integrity: sha512-hMQ4CX1p1izmuLYyZqLMO/qGNw10wSv9QDCPfzXfyFrOaCSSoRfqE1Kf1s5an66J5JZC62NewG+mK49jOCtQew==
+ /extglob/2.0.4:
+ dependencies:
+ array-unique: 0.3.2
+ define-property: 1.0.0
+ expand-brackets: 2.1.4
+ extend-shallow: 2.0.1
+ fragment-cache: 0.2.1
+ regex-not: 1.0.2
+ snapdragon: 0.8.2
+ to-regex: 3.0.2
+ dev: true
+ engines:
+ node: '>=0.10.0'
+ resolution:
+ integrity: sha512-Nmb6QXkELsuBr24CJSkilo6UHHgbekK5UiZgfE6UHD3Eb27YC6oD+bhcT+tJ6cl8dmsgdQxnWlcry8ksBIBLpw==
+ /extsprintf/1.3.0:
+ dev: true
+ engines:
+ '0': node >=0.6.0
+ resolution:
+ integrity: sha1-lpGEQOMEGnpBT4xS48V06zw+HgU=
+ /fast-deep-equal/2.0.1:
+ dev: true
+ resolution:
+ integrity: sha1-ewUhjd+WZ79/Nwv3/bLLFf3Qqkk=
+ /fast-diff/1.2.0:
+ dev: true
+ resolution:
+ integrity: sha512-xJuoT5+L99XlZ8twedaRf6Ax2TgQVxvgZOYoPKqZufmJib0tL2tegPBOZb1pVNgIhlqDlA0eO0c3wBvQcmzx4w==
+ /fast-glob/2.2.7:
+ dependencies:
+ '@mrmlnc/readdir-enhanced': 2.2.1
+ '@nodelib/fs.stat': 1.1.3
+ glob-parent: 3.1.0
+ is-glob: 4.0.1
+ merge2: 1.3.0
+ micromatch: 3.1.10
+ dev: true
+ engines:
+ node: '>=4.0.0'
+ resolution:
+ integrity: sha512-g1KuQwHOZAmOZMuBtHdxDtju+T2RT8jgCC9aANsbpdiDDTSnjgfuVsIBNKbUeJI3oKMRExcfNDtJl4OhbffMsw==
+ /fast-json-stable-stringify/2.1.0:
+ dev: true
+ resolution:
+ integrity: sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==
+ /fast-levenshtein/2.0.6:
+ dev: true
+ resolution:
+ integrity: sha1-PYpcZog6FqMMqGQ+hR8Zuqd5eRc=
+ /fastparse/1.1.2:
+ dev: true
+ resolution:
+ integrity: sha512-483XLLxTVIwWK3QTrMGRqUfUpoOs/0hbQrl2oz4J0pAcm3A3bu84wxTFqGqkJzewCLdME38xJLJAxBABfQT8sQ==
+ /faye-websocket/0.10.0:
+ dependencies:
+ websocket-driver: 0.7.3
+ dev: true
+ engines:
+ node: '>=0.4.0'
+ resolution:
+ integrity: sha1-TkkvjQTftviQA1B/btvy1QHnxvQ=
+ /faye-websocket/0.11.3:
+ dependencies:
+ websocket-driver: 0.7.3
+ dev: true
+ engines:
+ node: '>=0.8.0'
+ resolution:
+ integrity: sha512-D2y4bovYpzziGgbHYtGCMjlJM36vAl/y+xUyn1C+FVx8szd1E+86KwVw6XvYSzOP8iMpm1X0I4xJD+QtUb36OA==
+ /fb-watchman/2.0.1:
+ dependencies:
+ bser: 2.1.1
+ dev: true
+ resolution:
+ integrity: sha512-DkPJKQeY6kKwmuMretBhr7G6Vodr7bFwDYTXIkfG1gjvNpaxBTQV3PbXg6bR1c1UP4jPOX0jHUbbHANL9vRjVg==
+ /figgy-pudding/3.5.1:
+ dev: true
+ resolution:
+ integrity: sha512-vNKxJHTEKNThjfrdJwHc7brvM6eVevuO5nTj6ez8ZQ1qbXTvGthucRF7S4vf2cr71QVnT70V34v0S1DyQsti0w==
+ /figures/2.0.0:
+ dependencies:
+ escape-string-regexp: 1.0.5
+ dev: true
+ engines:
+ node: '>=4'
+ resolution:
+ integrity: sha1-OrGi0qYsi/tDGgyUy3l6L84nyWI=
+ /figures/3.1.0:
+ dependencies:
+ escape-string-regexp: 1.0.5
+ dev: true
+ engines:
+ node: '>=8'
+ resolution:
+ integrity: sha512-ravh8VRXqHuMvZt/d8GblBeqDMkdJMBdv/2KntFH+ra5MXkO7nxNKpzQ3n6QD/2da1kH0aWmNISdvhM7gl2gVg==
+ /file-entry-cache/5.0.1:
+ dependencies:
+ flat-cache: 2.0.1
+ dev: true
+ engines:
+ node: '>=4'
+ resolution:
+ integrity: sha512-bCg29ictuBaKUwwArK4ouCaqDgLZcysCFLmM/Yn/FDoqndh/9vNuQfXRDvTuXKLxfD/JtZQGKFT8MGcJBK644g==
+ /file-loader/4.3.0_webpack@4.41.2:
+ dependencies:
+ loader-utils: 1.2.3
+ schema-utils: 2.6.1
+ webpack: 4.41.2_webpack@4.41.2
+ dev: true
+ engines:
+ node: '>= 8.9.0'
+ peerDependencies:
+ webpack: ^4.0.0
+ resolution:
+ integrity: sha512-aKrYPYjF1yG3oX0kWRrqrSMfgftm7oJW5M+m4owoldH5C51C0RkIwB++JbRvEW3IU6/ZG5n8UvEcdgwOt2UOWA==
+ /file-uri-to-path/1.0.0:
+ dev: true
+ optional: true
+ resolution:
+ integrity: sha512-0Zt+s3L7Vf1biwWZ29aARiVYLx7iMGnEUl9x33fbB/j3jR81u/O2LbqK+Bm1CDSNDKVtJ/YjwY7TUd5SkeLQLw==
+ /filename-reserved-regex/1.0.0:
+ dev: true
+ engines:
+ node: '>=0.10.0'
+ resolution:
+ integrity: sha1-5hz4BfDeHJhFZ9A4bcXfUO5a9+Q=
+ /filenamify-url/1.0.0:
+ dependencies:
+ filenamify: 1.2.1
+ humanize-url: 1.0.1
+ dev: true
+ engines:
+ node: '>=0.10.0'
+ resolution:
+ integrity: sha1-syvYExnvWGO3MHi+1Q9GpPeXX1A=
+ /filenamify/1.2.1:
+ dependencies:
+ filename-reserved-regex: 1.0.0
+ strip-outer: 1.0.1
+ trim-repeated: 1.0.0
+ dev: true
+ engines:
+ node: '>=0.10.0'
+ resolution:
+ integrity: sha1-qfL/0RxQO+0wABUCknI3jx8TZaU=
+ /filesize/3.6.1:
+ dev: true
+ engines:
+ node: '>= 0.4.0'
+ resolution:
+ integrity: sha512-7KjR1vv6qnicaPMi1iiTcI85CyYwRO/PSFCu6SvqL8jN2Wjt/NIYQTFtFs7fSDCYOstUkEWIQGFUg5YZQfjlcg==
+ /fill-range/4.0.0:
+ dependencies:
+ extend-shallow: 2.0.1
+ is-number: 3.0.0
+ repeat-string: 1.6.1
+ to-regex-range: 2.1.1
+ dev: true
+ engines:
+ node: '>=0.10.0'
+ resolution:
+ integrity: sha1-1USBHUKPmOsGpj3EAtJAPDKMOPc=
+ /finalhandler/1.1.2:
+ dependencies:
+ debug: 2.6.9
+ encodeurl: 1.0.2
+ escape-html: 1.0.3
+ on-finished: 2.3.0
+ parseurl: 1.3.3
+ statuses: 1.5.0
+ unpipe: 1.0.0
+ dev: true
+ engines:
+ node: '>= 0.8'
+ resolution:
+ integrity: sha512-aAWcW57uxVNrQZqFXjITpW3sIUQmHGG3qSb9mUah9MgMC4NeWhNOlNjXEYq3HjRAvL6arUviZGGJsBg6z0zsWA==
+ /find-cache-dir/0.1.1:
+ dependencies:
+ commondir: 1.0.1
+ mkdirp: 0.5.1
+ pkg-dir: 1.0.0
+ dev: true
+ engines:
+ node: '>=0.10.0'
+ resolution:
+ integrity: sha1-yN765XyKUqinhPnjHFfHQumToLk=
+ /find-cache-dir/2.1.0:
+ dependencies:
+ commondir: 1.0.1
+ make-dir: 2.1.0
+ pkg-dir: 3.0.0
+ dev: true
+ engines:
+ node: '>=6'
+ resolution:
+ integrity: sha512-Tq6PixE0w/VMFfCgbONnkiQIVol/JJL7nRMi20fqzA4NRs9AfeqMGeRdPi3wIhYkxjeBaWh2rxwapn5Tu3IqOQ==
+ /find-cache-dir/3.2.0:
+ dependencies:
+ commondir: 1.0.1
+ make-dir: 3.0.0
+ pkg-dir: 4.2.0
+ dev: true
+ engines:
+ node: '>=8'
+ resolution:
+ integrity: sha512-1JKclkYYsf1q9WIJKLZa9S9muC+08RIjzAlLrK4QcYLJMS6mk9yombQ9qf+zJ7H9LS800k0s44L4sDq9VYzqyg==
+ /find-up/1.1.2:
+ dependencies:
+ path-exists: 2.1.0
+ pinkie-promise: 2.0.1
+ dev: true
+ engines:
+ node: '>=0.10.0'
+ resolution:
+ integrity: sha1-ay6YIrGizgpgq2TWEOzK1TyyTQ8=
+ /find-up/2.1.0:
+ dependencies:
+ locate-path: 2.0.0
+ dev: true
+ engines:
+ node: '>=4'
+ resolution:
+ integrity: sha1-RdG35QbHF93UgndaK3eSCjwMV6c=
+ /find-up/3.0.0:
+ dependencies:
+ locate-path: 3.0.0
+ dev: true
+ engines:
+ node: '>=6'
+ resolution:
+ integrity: sha512-1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg==
+ /find-up/4.1.0:
+ dependencies:
+ locate-path: 5.0.0
+ path-exists: 4.0.0
+ dev: true
+ engines:
+ node: '>=8'
+ resolution:
+ integrity: sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==
+ /flat-cache/2.0.1:
+ dependencies:
+ flatted: 2.0.1
+ rimraf: 2.6.3
+ write: 1.0.3
+ dev: true
+ engines:
+ node: '>=4'
+ resolution:
+ integrity: sha512-LoQe6yDuUMDzQAEH8sgmh4Md6oZnc/7PjtwjNFSzveXqSHt6ka9fPBuso7IGf9Rz4uqnSnWiFH2B/zj24a5ReA==
+ /flatted/2.0.1:
+ dev: true
+ resolution:
+ integrity: sha512-a1hQMktqW9Nmqr5aktAux3JMNqaucxGcjtjWnZLHX7yyPCmlSV3M54nGYbqT8K+0GhF3NBgmJCc3ma+WOgX8Jg==
+ /flatten/1.0.3:
+ dev: true
+ resolution:
+ integrity: sha512-dVsPA/UwQ8+2uoFe5GHtiBMu48dWLTdsuEd7CKGlZlD78r1TTWBvDuFaFGKCo/ZfEr95Uk56vZoX86OsHkUeIg==
+ /flush-write-stream/1.1.1:
+ dependencies:
+ inherits: 2.0.4
+ readable-stream: 2.3.7
+ dev: true
+ resolution:
+ integrity: sha512-3Z4XhFZ3992uIq0XOqb9AreonueSYphE6oYbpt5+3u06JWklbsPkNv3ZKkP9Bz/r+1MWCaMoSQ28P85+1Yc77w==
+ /follow-redirects/1.9.0:
+ dependencies:
+ debug: 3.2.6
+ dev: true
+ engines:
+ node: '>=4.0'
+ resolution:
+ integrity: sha512-CRcPzsSIbXyVDl0QI01muNDu69S8trU4jArW9LpOt2WtC6LyUJetcIrmfHsRBx7/Jb6GHJUiuqyYxPooFfNt6A==
+ /for-in/0.1.8:
+ dev: true
+ engines:
+ node: '>=0.10.0'
+ resolution:
+ integrity: sha1-2Hc5COMSVhCZUrH9ubP6hn0ndeE=
+ /for-in/1.0.2:
+ dev: true
+ engines:
+ node: '>=0.10.0'
+ resolution:
+ integrity: sha1-gQaNKVqBQuwKxybG4iAMMPttXoA=
+ /for-own/0.1.5:
+ dependencies:
+ for-in: 1.0.2
+ dev: true
+ engines:
+ node: '>=0.10.0'
+ resolution:
+ integrity: sha1-UmXGgaTylNq78XyVCbZ2OqhFEM4=
+ /forever-agent/0.6.1:
+ dev: true
+ resolution:
+ integrity: sha1-+8cfDEGt6zf5bFd60e1C2P2sypE=
+ /fork-ts-checker-webpack-plugin/3.1.0:
+ dependencies:
+ babel-code-frame: 6.26.0
+ chalk: 2.4.2
+ chokidar: 2.1.8
+ micromatch: 3.1.10
+ minimatch: 3.0.4
+ semver: 5.7.1
+ tapable: 1.1.3
+ worker-rpc: 0.1.1
+ dev: true
+ engines:
+ node: '>=6.11.5'
+ yarn: '>=1.0.0'
+ resolution:
+ integrity: sha512-6OkRfjuNMNqb14f01xokcWcKV5Ekknc2FvziNpcTYru+kxIYFA2MtuuBI19MHThZnjSBhoi35Dcq+I0oUkFjmQ==
+ /form-data/2.3.3:
+ dependencies:
+ asynckit: 0.4.0
+ combined-stream: 1.0.8
+ mime-types: 2.1.26
+ dev: true
+ engines:
+ node: '>= 0.12'
+ resolution:
+ integrity: sha512-1lLKB2Mu3aGP1Q/2eCOx0fNbRMe7XdwktwOruhfqqd0rIJWwN4Dh+E3hrPSlDCXnSR7UtZ1N38rVXm+6+MEhJQ==
+ /forwarded/0.1.2:
+ dev: true
+ engines:
+ node: '>= 0.6'
+ resolution:
+ integrity: sha1-mMI9qxF1ZXuMBXPozszZGw/xjIQ=
+ /fragment-cache/0.2.1:
+ dependencies:
+ map-cache: 0.2.2
+ dev: true
+ engines:
+ node: '>=0.10.0'
+ resolution:
+ integrity: sha1-QpD60n8T6Jvn8zeZxrxaCr//DRk=
+ /fresh/0.5.2:
+ dev: true
+ engines:
+ node: '>= 0.6'
+ resolution:
+ integrity: sha1-PYyt2Q2XZWn6g1qx+OSyOhBWBac=
+ /from2/2.3.0:
+ dependencies:
+ inherits: 2.0.4
+ readable-stream: 2.3.7
+ dev: true
+ resolution:
+ integrity: sha1-i/tVAr3kpNNs/e6gB/zKIdfjgq8=
+ /fs-extra/4.0.3:
+ dependencies:
+ graceful-fs: 4.2.3
+ jsonfile: 4.0.0
+ universalify: 0.1.2
+ dev: true
+ resolution:
+ integrity: sha512-q6rbdDd1o2mAnQreO7YADIxf/Whx4AHBiRf6d+/cVT8h44ss+lHgxf1FemcqDnQt9X3ct4McHr+JMGlYSsK7Cg==
+ /fs-extra/7.0.1:
+ dependencies:
+ graceful-fs: 4.2.3
+ jsonfile: 4.0.0
+ universalify: 0.1.2
+ dev: true
+ engines:
+ node: '>=6 <7 || >=8'
+ resolution:
+ integrity: sha512-YJDaCJZEnBmcbw13fvdAM9AwNOJwOzrE4pqMqBq5nFiEqXUqHwlK4B+3pUw6JNvfSPtX05xFHtYy/1ni01eGCw==
+ /fs-extra/8.1.0:
+ dependencies:
+ graceful-fs: 4.2.3
+ jsonfile: 4.0.0
+ universalify: 0.1.2
+ dev: true
+ engines:
+ node: '>=6 <7 || >=8'
+ resolution:
+ integrity: sha512-yhlQgA6mnOJUKOsRUFsgJdQCvkKhcz8tlZG5HBQfReYZy46OwLcY+Zia0mtdHsOo9y/hP+CxMN0TU9QxoOtG4g==
+ /fs-minipass/2.0.0:
+ dependencies:
+ minipass: 3.1.1
+ dev: true
+ engines:
+ node: '>= 8'
+ resolution:
+ integrity: sha512-40Qz+LFXmd9tzYVnnBmZvFfvAADfUA14TXPK1s7IfElJTIZ97rA8w4Kin7Wt5JBrC3ShnnFJO/5vPjPEeJIq9A==
+ /fs-write-stream-atomic/1.0.10:
+ dependencies:
+ graceful-fs: 4.2.3
+ iferr: 0.1.5
+ imurmurhash: 0.1.4
+ readable-stream: 2.3.7
+ dev: true
+ resolution:
+ integrity: sha1-tH31NJPvkR33VzHnCp3tAYnbQMk=
+ /fs.realpath/1.0.0:
+ dev: true
+ resolution:
+ integrity: sha1-FQStJSMVjKpA20onh8sBQRmU6k8=
+ /fsevents/1.2.11:
+ bundledDependencies:
+ - node-pre-gyp
+ dependencies:
+ bindings: 1.5.0
+ nan: 2.14.0
+ dev: true
+ engines:
+ node: '>=4.0'
+ optional: true
+ requiresBuild: true
+ resolution:
+ integrity: sha512-+ux3lx6peh0BpvY0JebGyZoiR4D+oYzdPZMKJwkZ+sFkNJzpL7tXc/wehS49gUAxg3tmMHPHZkA8JU2rhhgDHw==
+ /fsevents/2.1.2:
+ dev: true
+ engines:
+ node: ^8.16.0 || ^10.6.0 || >=11.0.0
+ optional: true
+ resolution:
+ integrity: sha512-R4wDiBwZ0KzpgOWetKDug1FZcYhqYnUYKtfZYt4mD5SBz76q0KR4Q9o7GIPamsVPGmW3EYPPJ0dOOjvx32ldZA==
+ /function-bind/1.1.1:
+ dev: true
+ resolution:
+ integrity: sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==
+ /functional-red-black-tree/1.0.1:
+ dev: true
+ resolution:
+ integrity: sha1-GwqzvVU7Kg1jmdKcDj6gslIHgyc=
+ /generic-names/1.0.3:
+ dependencies:
+ loader-utils: 0.2.17
+ dev: true
+ resolution:
+ integrity: sha1-LXhqEhruUIh2eWk56OO/+DbCCRc=
+ /get-caller-file/1.0.3:
+ dev: true
+ resolution:
+ integrity: sha512-3t6rVToeoZfYSGd8YoLFR2DJkiQrIiUrGcjvFX2mDw3bn6k2OtwHN0TNCLbBO+w8qTvimhDkv+LSscbJY1vE6w==
+ /get-caller-file/2.0.5:
+ dev: true
+ engines:
+ node: 6.* || 8.* || >= 10.*
+ resolution:
+ integrity: sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==
+ /get-own-enumerable-property-symbols/3.0.2:
+ dev: true
+ resolution:
+ integrity: sha512-I0UBV/XOz1XkIJHEUDMZAbzCThU/H8DxmSfmdGcKPnVhu2VfFqr34jr9777IyaTYvxjedWhqVIilEDsCdP5G6g==
+ /get-stdin/6.0.0:
+ dev: true
+ engines:
+ node: '>=4'
+ resolution:
+ integrity: sha512-jp4tHawyV7+fkkSKyvjuLZswblUtz+SQKzSWnBbii16BuZksJlU1wuBYXY75r+duh/llF1ur6oNwi+2ZzjKZ7g==
+ /get-stdin/7.0.0:
+ dev: true
+ engines:
+ node: '>=8'
+ resolution:
+ integrity: sha512-zRKcywvrXlXsA0v0i9Io4KDRaAw7+a1ZpjRwl9Wox8PFlVCCHra7E9c4kqXCoCM9nR5tBkaTTZRBoCm60bFqTQ==
+ /get-stream/4.1.0:
+ dependencies:
+ pump: 3.0.0
+ dev: true
+ engines:
+ node: '>=6'
+ resolution:
+ integrity: sha512-GMat4EJ5161kIy2HevLlr4luNjBgvmj413KaQA7jt4V8B4RDsfpHk7WQ9GVqfYyyx8OS/L66Kox+rJRNklLK7w==
+ /get-value/2.0.6:
+ dev: true
+ engines:
+ node: '>=0.10.0'
+ resolution:
+ integrity: sha1-3BXKHGcjh8p2vTesCjlbogQqLCg=
+ /getpass/0.1.7:
+ dependencies:
+ assert-plus: 1.0.0
+ dev: true
+ resolution:
+ integrity: sha1-Xv+OPmhNVprkyysSgmBOi6YhSfo=
+ /gh-pages/2.2.0:
+ dependencies:
+ async: 2.6.3
+ commander: 2.20.3
+ email-addresses: 3.1.0
+ filenamify-url: 1.0.0
+ fs-extra: 8.1.0
+ globby: 6.1.0
+ dev: true
+ engines:
+ node: '>=6'
+ hasBin: true
+ resolution:
+ integrity: sha512-c+yPkNOPMFGNisYg9r4qvsMIjVYikJv7ImFOhPIVPt0+AcRUamZ7zkGRLHz7FKB0xrlZ+ddSOJsZv9XAFVXLmA==
+ /glob-parent/3.1.0:
+ dependencies:
+ is-glob: 3.1.0
+ path-dirname: 1.0.2
+ dev: true
+ resolution:
+ integrity: sha1-nmr2KZ2NO9K9QEMIMr0RPfkGxa4=
+ /glob-parent/5.1.0:
+ dependencies:
+ is-glob: 4.0.1
+ dev: true
+ engines:
+ node: '>= 6'
+ resolution:
+ integrity: sha512-qjtRgnIVmOfnKUE3NJAQEdk+lKrxfw8t5ke7SXtfMTHcjsBfOfWXCQfdb30zfDoZQ2IRSIiidmjtbHZPZ++Ihw==
+ /glob-to-regexp/0.3.0:
+ dev: true
+ resolution:
+ integrity: sha1-jFoUlNIGbFcMw7/kSWF1rMTVAqs=
+ /glob/7.1.6:
+ dependencies:
+ fs.realpath: 1.0.0
+ inflight: 1.0.6
+ inherits: 2.0.4
+ minimatch: 3.0.4
+ once: 1.4.0
+ path-is-absolute: 1.0.1
+ dev: true
+ resolution:
+ integrity: sha512-LwaxwyZ72Lk7vZINtNNrywX0ZuLyStrdDtabefZKAY5ZGJhVtgdznluResxNmPitE0SAO+O26sWTHeKSI2wMBA==
+ /global-modules/2.0.0:
+ dependencies:
+ global-prefix: 3.0.0
+ dev: true
+ engines:
+ node: '>=6'
+ resolution:
+ integrity: sha512-NGbfmJBp9x8IxyJSd1P+otYK8vonoJactOogrVfFRIAEY1ukil8RSKDz2Yo7wh1oihl51l/r6W4epkeKJHqL8A==
+ /global-prefix/3.0.0:
+ dependencies:
+ ini: 1.3.5
+ kind-of: 6.0.2
+ which: 1.3.1
+ dev: true
+ engines:
+ node: '>=6'
+ resolution:
+ integrity: sha512-awConJSVCHVGND6x3tmMaKcQvwXLhjdkmomy2W+Goaui8YPgYgXJZewhg3fWC+DlfqqQuWg8AwqjGTD2nAPVWg==
+ /globals/11.12.0:
+ dev: true
+ engines:
+ node: '>=4'
+ resolution:
+ integrity: sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==
+ /globals/12.3.0:
+ dependencies:
+ type-fest: 0.8.1
+ dev: true
+ engines:
+ node: '>=8'
+ resolution:
+ integrity: sha512-wAfjdLgFsPZsklLJvOBUBmzYE8/CwhEqSBEMRXA3qxIiNtyqvjYurAtIfDh6chlEPUfmTY3MnZh5Hfh4q0UlIw==
+ /globby/6.1.0:
+ dependencies:
+ array-union: 1.0.2
+ glob: 7.1.6
+ object-assign: 4.1.1
+ pify: 2.3.0
+ pinkie-promise: 2.0.1
+ dev: true
+ engines:
+ node: '>=0.10.0'
+ resolution:
+ integrity: sha1-9abXDoOV4hyFj7BInWTfAkJNUGw=
+ /globby/8.0.2:
+ dependencies:
+ array-union: 1.0.2
+ dir-glob: 2.0.0
+ fast-glob: 2.2.7
+ glob: 7.1.6
+ ignore: 3.3.10
+ pify: 3.0.0
+ slash: 1.0.0
+ dev: true
+ engines:
+ node: '>=4'
+ resolution:
+ integrity: sha512-yTzMmKygLp8RUpG1Ymu2VXPSJQZjNAZPD4ywgYEaG7e4tBJeUQBO8OpXrf1RCNcEs5alsoJYPAMiIHP0cmeC7w==
+ /graceful-fs/4.2.3:
+ dev: true
+ resolution:
+ integrity: sha512-a30VEBm4PEdx1dRB7MFK7BejejvCvBronbLjht+sHuGYj8PHs7M/5Z+rt5lw551vZ7yfTCj4Vuyy3mSJytDWRQ==
+ /growly/1.3.0:
+ dev: true
+ resolution:
+ integrity: sha1-8QdIy+dq+WS3yWyTxrzCivEgwIE=
+ /gzip-size/5.1.1:
+ dependencies:
+ duplexer: 0.1.1
+ pify: 4.0.1
+ dev: true
+ engines:
+ node: '>=6'
+ resolution:
+ integrity: sha512-FNHi6mmoHvs1mxZAds4PpdCS6QG8B4C1krxJsMutgxl5t3+GlRTzzI3NEkifXx2pVsOvJdOGSmIgDhQ55FwdPA==
+ /handle-thing/2.0.0:
+ dev: true
+ resolution:
+ integrity: sha512-d4sze1JNC454Wdo2fkuyzCr6aHcbL6PGGuFAz0Li/NcOm1tCHGnWDRmJP85dh9IhQErTc2svWFEX5xHIOo//kQ==
+ /handlebars/4.5.3:
+ dependencies:
+ neo-async: 2.6.1
+ optimist: 0.6.1
+ source-map: 0.6.1
+ dev: true
+ engines:
+ node: '>=0.4.7'
+ hasBin: true
+ optionalDependencies:
+ uglify-js: 3.7.4
+ resolution:
+ integrity: sha512-3yPecJoJHK/4c6aZhSvxOyG4vJKDshV36VHp0iVCDVh7o9w2vwi3NSnL2MMPj3YdduqaBcu7cGbggJQM0br9xA==
+ /har-schema/2.0.0:
+ dev: true
+ engines:
+ node: '>=4'
+ resolution:
+ integrity: sha1-qUwiJOvKwEeCoNkDVSHyRzW37JI=
+ /har-validator/5.1.3:
+ dependencies:
+ ajv: 6.10.2
+ har-schema: 2.0.0
+ dev: true
+ engines:
+ node: '>=6'
+ resolution:
+ integrity: sha512-sNvOCzEQNr/qrvJgc3UG/kD4QtlHycrzwS+6mfTrrSq97BvaYcPZZI1ZSqGSPR73Cxn4LKTD4PttRwfU7jWq5g==
+ /harmony-reflect/1.6.1:
+ dev: true
+ resolution:
+ integrity: sha512-WJTeyp0JzGtHcuMsi7rw2VwtkvLa+JyfEKJCFyfcS0+CDkjQ5lHPu7zEhFZP+PDSRrEgXa5Ah0l1MbgbE41XjA==
+ /has-ansi/2.0.0:
+ dependencies:
+ ansi-regex: 2.1.1
+ dev: true
+ engines:
+ node: '>=0.10.0'
+ resolution:
+ integrity: sha1-NPUEnOHs3ysGSa8+8k5F7TVBbZE=
+ /has-flag/1.0.0:
+ dev: true
+ engines:
+ node: '>=0.10.0'
+ resolution:
+ integrity: sha1-nZ55MWXOAXoA8AQYxD+UKnsdEfo=
+ /has-flag/3.0.0:
+ dev: true
+ engines:
+ node: '>=4'
+ resolution:
+ integrity: sha1-tdRU3CGZriJWmfNGfloH87lVuv0=
+ /has-flag/4.0.0:
+ dev: true
+ engines:
+ node: '>=8'
+ resolution:
+ integrity: sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==
+ /has-symbols/1.0.1:
+ dev: true
+ engines:
+ node: '>= 0.4'
+ resolution:
+ integrity: sha512-PLcsoqu++dmEIZB+6totNFKq/7Do+Z0u4oT0zKOJNl3lYK6vGwwu2hjHs+68OEZbTjiUE9bgOABXbP/GvrS0Kg==
+ /has-value/0.3.1:
+ dependencies:
+ get-value: 2.0.6
+ has-values: 0.1.4
+ isobject: 2.1.0
+ dev: true
+ engines:
+ node: '>=0.10.0'
+ resolution:
+ integrity: sha1-ex9YutpiyoJ+wKIHgCVlSEWZXh8=
+ /has-value/1.0.0:
+ dependencies:
+ get-value: 2.0.6
+ has-values: 1.0.0
+ isobject: 3.0.1
+ dev: true
+ engines:
+ node: '>=0.10.0'
+ resolution:
+ integrity: sha1-GLKB2lhbHFxR3vJMkw7SmgvmsXc=
+ /has-values/0.1.4:
+ dev: true
+ engines:
+ node: '>=0.10.0'
+ resolution:
+ integrity: sha1-bWHeldkd/Km5oCCJrThL/49it3E=
+ /has-values/1.0.0:
+ dependencies:
+ is-number: 3.0.0
+ kind-of: 4.0.0
+ dev: true
+ engines:
+ node: '>=0.10.0'
+ resolution:
+ integrity: sha1-lbC2P+whRmGab+V/51Yo1aOe/k8=
+ /has/1.0.3:
+ dependencies:
+ function-bind: 1.1.1
+ dev: true
+ engines:
+ node: '>= 0.4.0'
+ resolution:
+ integrity: sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==
+ /hash-base/3.0.4:
+ dependencies:
+ inherits: 2.0.4
+ safe-buffer: 5.2.0
+ dev: true
+ engines:
+ node: '>=4'
+ resolution:
+ integrity: sha1-X8hoaEfs1zSZQDMZprCj8/auSRg=
+ /hash.js/1.1.7:
+ dependencies:
+ inherits: 2.0.4
+ minimalistic-assert: 1.0.1
+ dev: true
+ resolution:
+ integrity: sha512-taOaskGt4z4SOANNseOviYDvjEJinIkRgmp7LbKP2YTTmVxWBl87s/uzK9r+44BclBSp2X7K1hqeNfz9JbBeXA==
+ /he/1.2.0:
+ dev: true
+ hasBin: true
+ resolution:
+ integrity: sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw==
+ /hex-color-regex/1.1.0:
+ dev: true
+ resolution:
+ integrity: sha512-l9sfDFsuqtOqKDsQdqrMRk0U85RZc0RtOR9yPI7mRVOa4FsR/BVnZ0shmQRM96Ji99kYZP/7hn1cedc1+ApsTQ==
+ /hmac-drbg/1.0.1:
+ dependencies:
+ hash.js: 1.1.7
+ minimalistic-assert: 1.0.1
+ minimalistic-crypto-utils: 1.0.1
+ dev: true
+ resolution:
+ integrity: sha1-0nRXAQJabHdabFRXk+1QL8DGSaE=
+ /hosted-git-info/2.8.5:
+ dev: true
+ resolution:
+ integrity: sha512-kssjab8CvdXfcXMXVcvsXum4Hwdq9XGtRD3TteMEvEbq0LXyiNQr6AprqKqfeaDXze7SxWvRxdpwE6ku7ikLkg==
+ /hpack.js/2.1.6:
+ dependencies:
+ inherits: 2.0.4
+ obuf: 1.1.2
+ readable-stream: 2.3.7
+ wbuf: 1.7.3
+ dev: true
+ resolution:
+ integrity: sha1-h3dMCUnlE/QuhFdbPEVoH63ioLI=
+ /hsl-regex/1.0.0:
+ dev: true
+ resolution:
+ integrity: sha1-1JMwx4ntgZ4nakwNJy3/owsY/m4=
+ /hsla-regex/1.0.0:
+ dev: true
+ resolution:
+ integrity: sha1-wc56MWjIxmFAM6S194d/OyJfnDg=
+ /html-comment-regex/1.1.2:
+ dev: true
+ resolution:
+ integrity: sha512-P+M65QY2JQ5Y0G9KKdlDpo0zK+/OHptU5AaBwUfAIDJZk1MYf32Frm84EcOytfJE0t5JvkAnKlmjsXDnWzCJmQ==
+ /html-encoding-sniffer/1.0.2:
+ dependencies:
+ whatwg-encoding: 1.0.5
+ dev: true
+ resolution:
+ integrity: sha512-71lZziiDnsuabfdYiUeWdCVyKuqwWi23L8YeIgV9jSSZHCtb6wB1BKWooH7L3tn4/FuZJMVWyNaIDr4RGmaSYw==
+ /html-entities/1.2.1:
+ dev: true
+ engines:
+ '0': node >= 0.4.0
+ resolution:
+ integrity: sha1-DfKTUfByEWNRXfueVUPl9u7VFi8=
+ /html-minifier/3.5.21:
+ dependencies:
+ camel-case: 3.0.0
+ clean-css: 4.2.1
+ commander: 2.17.1
+ he: 1.2.0
+ param-case: 2.1.1
+ relateurl: 0.2.7
+ uglify-js: 3.4.10
+ dev: true
+ engines:
+ node: '>=4'
+ hasBin: true
+ resolution:
+ integrity: sha512-LKUKwuJDhxNa3uf/LPR/KVjm/l3rBqtYeCOAekvG8F1vItxMUpueGd94i/asDDr8/1u7InxzFA5EeGjhhG5mMA==
+ /html-webpack-plugin/4.0.0-beta.5_webpack@4.41.2:
+ dependencies:
+ html-minifier: 3.5.21
+ loader-utils: 1.2.3
+ lodash: 4.17.15
+ pretty-error: 2.1.1
+ tapable: 1.1.3
+ util.promisify: 1.0.0
+ webpack: 4.41.2_webpack@4.41.2
+ dev: true
+ engines:
+ node: '>=6.9'
+ peerDependencies:
+ webpack: ^4.0.0
+ resolution:
+ integrity: sha512-y5l4lGxOW3pz3xBTFdfB9rnnrWRPVxlAhX6nrBYIcW+2k2zC3mSp/3DxlWVCMBfnO6UAnoF8OcFn0IMy6kaKAQ==
+ /htmlparser2/3.10.1:
+ dependencies:
+ domelementtype: 1.3.1
+ domhandler: 2.4.2
+ domutils: 1.7.0
+ entities: 1.1.2
+ inherits: 2.0.4
+ readable-stream: 3.4.0
+ dev: true
+ resolution:
+ integrity: sha512-IgieNijUMbkDovyoKObU1DUhm1iwNYE/fuifEoEHfd1oZKZDaONBSkal7Y01shxsM49R4XaMdGez3WnF9UfiCQ==
+ /http-deceiver/1.2.7:
+ dev: true
+ resolution:
+ integrity: sha1-+nFolEq5pRnTN8sL7HKE3D5yPYc=
+ /http-errors/1.6.3:
+ dependencies:
+ depd: 1.1.2
+ inherits: 2.0.3
+ setprototypeof: 1.1.0
+ statuses: 1.5.0
+ dev: true
+ engines:
+ node: '>= 0.6'
+ resolution:
+ integrity: sha1-i1VoC7S+KDoLW/TqLjhYC+HZMg0=
+ /http-errors/1.7.2:
+ dependencies:
+ depd: 1.1.2
+ inherits: 2.0.3
+ setprototypeof: 1.1.1
+ statuses: 1.5.0
+ toidentifier: 1.0.0
+ dev: true
+ engines:
+ node: '>= 0.6'
+ resolution:
+ integrity: sha512-uUQBt3H/cSIVfch6i1EuPNy/YsRSOUBXTVfZ+yR7Zjez3qjBz6i9+i4zjNaoqcoFVI4lQJ5plg63TvGfRSDCRg==
+ /http-errors/1.7.3:
+ dependencies:
+ depd: 1.1.2
+ inherits: 2.0.4
+ setprototypeof: 1.1.1
+ statuses: 1.5.0
+ toidentifier: 1.0.0
+ dev: true
+ engines:
+ node: '>= 0.6'
+ resolution:
+ integrity: sha512-ZTTX0MWrsQ2ZAhA1cejAwDLycFsd7I7nVtnkT3Ol0aqodaKW+0CTZDQ1uBv5whptCnc8e8HeRRJxRs0kmm/Qfw==
+ /http-parser-js/0.4.10:
+ dev: true
+ resolution:
+ integrity: sha1-ksnBN0w1CF912zWexWzCV8u5P6Q=
+ /http-proxy-middleware/0.19.1:
+ dependencies:
+ http-proxy: 1.18.0
+ is-glob: 4.0.1
+ lodash: 4.17.15
+ micromatch: 3.1.10
+ dev: true
+ engines:
+ node: '>=4.0.0'
+ resolution:
+ integrity: sha512-yHYTgWMQO8VvwNS22eLLloAkvungsKdKTLO8AJlftYIKNfJr3GK3zK0ZCfzDDGUBttdGc8xFy1mCitvNKQtC3Q==
+ /http-proxy/1.18.0:
+ dependencies:
+ eventemitter3: 4.0.0
+ follow-redirects: 1.9.0
+ requires-port: 1.0.0
+ dev: true
+ engines:
+ node: '>=6.0.0'
+ resolution:
+ integrity: sha512-84I2iJM/n1d4Hdgc6y2+qY5mDaz2PUVjlg9znE9byl+q0uC3DeByqBGReQu5tpLK0TAqTIXScRUV+dg7+bUPpQ==
+ /http-signature/1.2.0:
+ dependencies:
+ assert-plus: 1.0.0
+ jsprim: 1.4.1
+ sshpk: 1.16.1
+ dev: true
+ engines:
+ node: '>=0.8'
+ npm: '>=1.3.7'
+ resolution:
+ integrity: sha1-muzZJRFHcvPZW2WmCruPfBj7rOE=
+ /https-browserify/1.0.0:
+ dev: true
+ resolution:
+ integrity: sha1-7AbBDgo0wPL68Zn3/X/Hj//QPHM=
+ /humanize-url/1.0.1:
+ dependencies:
+ normalize-url: 1.9.1
+ strip-url-auth: 1.0.1
+ dev: true
+ engines:
+ node: '>=0.10.0'
+ resolution:
+ integrity: sha1-9KuZ4NKIF0yk4eUEB8VfuuRk7/8=
+ /iconv-lite/0.4.24:
+ dependencies:
+ safer-buffer: 2.1.2
+ dev: true
+ engines:
+ node: '>=0.10.0'
+ resolution:
+ integrity: sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==
+ /icss-replace-symbols/1.1.0:
+ dev: true
+ resolution:
+ integrity: sha1-Bupvg2ead0njhs/h/oEq5dsiPe0=
+ /icss-utils/4.1.1:
+ dependencies:
+ postcss: 7.0.26
+ dev: true
+ engines:
+ node: '>= 6'
+ resolution:
+ integrity: sha512-4aFq7wvWyMHKgxsH8QQtGpvbASCf+eM3wPRLI6R+MgAnTCZ6STYsRvttLvRWK0Nfif5piF394St3HeJDaljGPA==
+ /identity-obj-proxy/3.0.0:
+ dependencies:
+ harmony-reflect: 1.6.1
+ dev: true
+ engines:
+ node: '>=4'
+ resolution:
+ integrity: sha1-lNK9qWCERT7zb7xarsN+D3nx/BQ=
+ /ieee754/1.1.13:
+ dev: true
+ resolution:
+ integrity: sha512-4vf7I2LYV/HaWerSo3XmlMkp5eZ83i+/CDluXi/IGTs/O1sejBNhTtnxzmRZfvOUqj7lZjqHkeTvpgSFDlWZTg==
+ /iferr/0.1.5:
+ dev: true
+ resolution:
+ integrity: sha1-xg7taebY/bazEEofy8ocGS3FtQE=
+ /ignore/3.3.10:
+ dev: true
+ resolution:
+ integrity: sha512-Pgs951kaMm5GXP7MOvxERINe3gsaVjUWFm+UZPSq9xYriQAksyhg0csnS0KXSNRD5NmNdapXEpjxG49+AKh/ug==
+ /ignore/4.0.6:
+ dev: true
+ engines:
+ node: '>= 4'
+ resolution:
+ integrity: sha512-cyFDKrqc/YdcWFniJhzI42+AzS+gNwmUzOSFcRCQYwySuBBBy/KjuxWLZ/FHEH6Moq1NizMOBWyTcv8O4OZIMg==
+ /ignore/5.1.4:
+ dev: true
+ engines:
+ node: '>= 4'
+ resolution:
+ integrity: sha512-MzbUSahkTW1u7JpKKjY7LCARd1fU5W2rLdxlM4kdkayuCwZImjkpluF9CM1aLewYJguPDqewLam18Y6AU69A8A==
+ /immer/1.10.0:
+ dev: true
+ resolution:
+ integrity: sha512-O3sR1/opvCDGLEVcvrGTMtLac8GJ5IwZC4puPrLuRj3l7ICKvkmA0vGuU9OW8mV9WIBRnaxp5GJh9IEAaNOoYg==
+ /import-cwd/2.1.0:
+ dependencies:
+ import-from: 2.1.0
+ dev: true
+ engines:
+ node: '>=4'
+ resolution:
+ integrity: sha1-qmzzbnInYShcs3HsZRn1PiQ1sKk=
+ /import-fresh/2.0.0:
+ dependencies:
+ caller-path: 2.0.0
+ resolve-from: 3.0.0
+ dev: true
+ engines:
+ node: '>=4'
+ resolution:
+ integrity: sha1-2BNVwVYS04bGH53dOSLUMEgipUY=
+ /import-fresh/3.2.1:
+ dependencies:
+ parent-module: 1.0.1
+ resolve-from: 4.0.0
+ dev: true
+ engines:
+ node: '>=6'
+ resolution:
+ integrity: sha512-6e1q1cnWP2RXD9/keSkxHScg508CdXqXWgWBaETNhyuBFz+kUZlKboh+ISK+bU++DmbHimVBrOz/zzPe0sZ3sQ==
+ /import-from/2.1.0:
+ dependencies:
+ resolve-from: 3.0.0
+ dev: true
+ engines:
+ node: '>=4'
+ resolution:
+ integrity: sha1-M1238qev/VOqpHHUuAId7ja387E=
+ /import-local/2.0.0:
+ dependencies:
+ pkg-dir: 3.0.0
+ resolve-cwd: 2.0.0
+ dev: true
+ engines:
+ node: '>=6'
+ hasBin: true
+ resolution:
+ integrity: sha512-b6s04m3O+s3CGSbqDIyP4R6aAwAeYlVq9+WUWep6iHa8ETRf9yei1U48C5MmfJmV9AiLYYBKPMq/W+/WRpQmCQ==
+ /imurmurhash/0.1.4:
+ dev: true
+ engines:
+ node: '>=0.8.19'
+ resolution:
+ integrity: sha1-khi5srkoojixPcT7a21XbyMUU+o=
+ /indent-string/4.0.0:
+ dev: true
+ engines:
+ node: '>=8'
+ resolution:
+ integrity: sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg==
+ /indexes-of/1.0.1:
+ dev: true
+ resolution:
+ integrity: sha1-8w9xbI4r00bHtn0985FVZqfAVgc=
+ /infer-owner/1.0.4:
+ dev: true
+ resolution:
+ integrity: sha512-IClj+Xz94+d7irH5qRyfJonOdfTzuDaifE6ZPWfx0N0+/ATZCbuTPq2prFl526urkQd90WyUKIh1DfBQ2hMz9A==
+ /inflight/1.0.6:
+ dependencies:
+ once: 1.4.0
+ wrappy: 1.0.2
+ dev: true
+ resolution:
+ integrity: sha1-Sb1jMdfQLQwJvJEKEHW6gWW1bfk=
+ /inherits/2.0.1:
+ dev: true
+ resolution:
+ integrity: sha1-sX0I0ya0Qj5Wjv9xn5GwscvfafE=
+ /inherits/2.0.3:
+ dev: true
+ resolution:
+ integrity: sha1-Yzwsg+PaQqUC9SRmAiSA9CCCYd4=
+ /inherits/2.0.4:
+ dev: true
+ resolution:
+ integrity: sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==
+ /ini/1.3.5:
+ dev: true
+ resolution:
+ integrity: sha512-RZY5huIKCMRWDUqZlEi72f/lmXKMvuszcMBduliQ3nnWbx9X/ZBQO7DijMEYS9EhHBb2qacRUMtC7svLwe0lcw==
+ /inquirer/6.5.0:
+ dependencies:
+ ansi-escapes: 3.2.0
+ chalk: 2.4.2
+ cli-cursor: 2.1.0
+ cli-width: 2.2.0
+ external-editor: 3.1.0
+ figures: 2.0.0
+ lodash: 4.17.15
+ mute-stream: 0.0.7
+ run-async: 2.3.0
+ rxjs: 6.5.4
+ string-width: 2.1.1
+ strip-ansi: 5.2.0
+ through: 2.3.8
+ dev: true
+ engines:
+ node: '>=6.0.0'
+ resolution:
+ integrity: sha512-scfHejeG/lVZSpvCXpsB4j/wQNPM5JC8kiElOI0OUTwmc1RTpXr4H32/HOlQHcZiYl2z2VElwuCVDRG8vFmbnA==
+ /inquirer/6.5.2:
+ dependencies:
+ ansi-escapes: 3.2.0
+ chalk: 2.4.2
+ cli-cursor: 2.1.0
+ cli-width: 2.2.0
+ external-editor: 3.1.0
+ figures: 2.0.0
+ lodash: 4.17.15
+ mute-stream: 0.0.7
+ run-async: 2.3.0
+ rxjs: 6.5.4
+ string-width: 2.1.1
+ strip-ansi: 5.2.0
+ through: 2.3.8
+ dev: true
+ engines:
+ node: '>=6.0.0'
+ resolution:
+ integrity: sha512-cntlB5ghuB0iuO65Ovoi8ogLHiWGs/5yNrtUcKjFhSSiVeAIVpD7koaSU9RM8mpXw5YDi9RdYXGQMaOURB7ycQ==
+ /inquirer/7.0.3:
+ dependencies:
+ ansi-escapes: 4.3.0
+ chalk: 2.4.2
+ cli-cursor: 3.1.0
+ cli-width: 2.2.0
+ external-editor: 3.1.0
+ figures: 3.1.0
+ lodash: 4.17.15
+ mute-stream: 0.0.8
+ run-async: 2.3.0
+ rxjs: 6.5.4
+ string-width: 4.2.0
+ strip-ansi: 5.2.0
+ through: 2.3.8
+ dev: true
+ engines:
+ node: '>=6.0.0'
+ resolution:
+ integrity: sha512-+OiOVeVydu4hnCGLCSX+wedovR/Yzskv9BFqUNNKq9uU2qg7LCcCo3R86S2E7WLo0y/x2pnEZfZe1CoYnORUAw==
+ /internal-ip/4.3.0:
+ dependencies:
+ default-gateway: 4.2.0
+ ipaddr.js: 1.9.1
+ dev: true
+ engines:
+ node: '>=6'
+ resolution:
+ integrity: sha512-S1zBo1D6zcsyuC6PMmY5+55YMILQ9av8lotMx447Bq6SAgo/sDK6y6uUKmuYhW7eacnIhFfsPmCNYdDzsnnDCg==
+ /invariant/2.2.4:
+ dependencies:
+ loose-envify: 1.4.0
+ dev: true
+ resolution:
+ integrity: sha512-phJfQVBuaJM5raOpJjSfkiD6BpbCE4Ns//LaXl6wGYtUBY83nWS6Rf9tXm2e8VaK60JEjYldbPif/A2B1C2gNA==
+ /invert-kv/2.0.0:
+ dev: true
+ engines:
+ node: '>=4'
+ resolution:
+ integrity: sha512-wPVv/y/QQ/Uiirj/vh3oP+1Ww+AWehmi1g5fFWGPF6IpCBCDVrhgHRMvrLfdYcwDh3QJbGXDW4JAuzxElLSqKA==
+ /ip-regex/2.1.0:
+ dev: true
+ engines:
+ node: '>=4'
+ resolution:
+ integrity: sha1-+ni/XS5pE8kRzp+BnuUUa7bYROk=
+ /ip/1.1.5:
+ dev: true
+ resolution:
+ integrity: sha1-vd7XARQpCCjAoDnnLvJfWq7ENUo=
+ /ipaddr.js/1.9.0:
+ dev: true
+ engines:
+ node: '>= 0.10'
+ resolution:
+ integrity: sha512-M4Sjn6N/+O6/IXSJseKqHoFc+5FdGJ22sXqnjTpdZweHK64MzEPAyQZyEU3R/KRv2GLoa7nNtg/C2Ev6m7z+eA==
+ /ipaddr.js/1.9.1:
+ dev: true
+ engines:
+ node: '>= 0.10'
+ resolution:
+ integrity: sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g==
+ /is-absolute-url/2.1.0:
+ dev: true
+ engines:
+ node: '>=0.10.0'
+ resolution:
+ integrity: sha1-UFMN+4T8yap9vnhS6Do3uTufKqY=
+ /is-absolute-url/3.0.3:
+ dev: true
+ engines:
+ node: '>=8'
+ resolution:
+ integrity: sha512-opmNIX7uFnS96NtPmhWQgQx6/NYFgsUXYMllcfzwWKUMwfo8kku1TvE6hkNcH+Q1ts5cMVrsY7j0bxXQDciu9Q==
+ /is-accessor-descriptor/0.1.6:
+ dependencies:
+ kind-of: 3.2.2
+ dev: true
+ engines:
+ node: '>=0.10.0'
+ resolution:
+ integrity: sha1-qeEss66Nh2cn7u84Q/igiXtcmNY=
+ /is-accessor-descriptor/1.0.0:
+ dependencies:
+ kind-of: 6.0.2
+ dev: true
+ engines:
+ node: '>=0.10.0'
+ resolution:
+ integrity: sha512-m5hnHTkcVsPfqx3AKlyttIPb7J+XykHvJP2B9bZDjlhLIoEq4XoK64Vg7boZlVWYK6LUY94dYPEE7Lh0ZkZKcQ==
+ /is-arguments/1.0.4:
+ dev: true
+ engines:
+ node: '>= 0.4'
+ resolution:
+ integrity: sha512-xPh0Rmt8NE65sNzvyUmWgI1tz3mKq74lGA0mL8LYZcoIzKOzDh6HmrYm3d18k60nHerC8A9Km8kYu87zfSFnLA==
+ /is-arrayish/0.2.1:
+ dev: true
+ resolution:
+ integrity: sha1-d8mYQFJ6qOyxqLppe4BkWnqSap0=
+ /is-arrayish/0.3.2:
+ dev: true
+ resolution:
+ integrity: sha512-eVRqCvVlZbuw3GrM63ovNSNAeA1K16kaR/LRY/92w0zxQ5/1YzwblUX652i4Xs9RwAGjW9d9y6X88t8OaAJfWQ==
+ /is-binary-path/1.0.1:
+ dependencies:
+ binary-extensions: 1.13.1
+ dev: true
+ engines:
+ node: '>=0.10.0'
+ resolution:
+ integrity: sha1-dfFmQrSA8YenEcgUFh/TpKdlWJg=
+ /is-buffer/1.1.6:
+ dev: true
+ resolution:
+ integrity: sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w==
+ /is-callable/1.1.5:
+ dev: true
+ engines:
+ node: '>= 0.4'
+ resolution:
+ integrity: sha512-ESKv5sMCJB2jnHTWZ3O5itG+O128Hsus4K4Qh1h2/cgn2vbgnLSVqfV46AeJA9D5EeeLa9w81KUXMtn34zhX+Q==
+ /is-ci/2.0.0:
+ dependencies:
+ ci-info: 2.0.0
+ dev: true
+ hasBin: true
+ resolution:
+ integrity: sha512-YfJT7rkpQB0updsdHLGWrvhBJfcfzNNawYDNIyQXJz0IViGf75O8EBPKSdvw2rF+LGCsX4FZ8tcr3b19LcZq4w==
+ /is-color-stop/1.1.0:
+ dependencies:
+ css-color-names: 0.0.4
+ hex-color-regex: 1.1.0
+ hsl-regex: 1.0.0
+ hsla-regex: 1.0.0
+ rgb-regex: 1.0.1
+ rgba-regex: 1.0.0
+ dev: true
+ resolution:
+ integrity: sha1-z/9HGu5N1cnhWFmPvhKWe1za00U=
+ /is-data-descriptor/0.1.4:
+ dependencies:
+ kind-of: 3.2.2
+ dev: true
+ engines:
+ node: '>=0.10.0'
+ resolution:
+ integrity: sha1-C17mSDiOLIYCgueT8YVv7D8wG1Y=
+ /is-data-descriptor/1.0.0:
+ dependencies:
+ kind-of: 6.0.2
+ dev: true
+ engines:
+ node: '>=0.10.0'
+ resolution:
+ integrity: sha512-jbRXy1FmtAoCjQkVmIVYwuuqDFUbaOeDjmed1tOGPrsMhtJA4rD9tkgA0F1qJ3gRFRXcHYVkdeaP50Q5rE/jLQ==
+ /is-date-object/1.0.2:
+ dev: true
+ engines:
+ node: '>= 0.4'
+ resolution:
+ integrity: sha512-USlDT524woQ08aoZFzh3/Z6ch9Y/EWXEHQ/AaRN0SkKq4t2Jw2R2339tSXmwuVoY7LLlBCbOIlx2myP/L5zk0g==
+ /is-descriptor/0.1.6:
+ dependencies:
+ is-accessor-descriptor: 0.1.6
+ is-data-descriptor: 0.1.4
+ kind-of: 5.1.0
+ dev: true
+ engines:
+ node: '>=0.10.0'
+ resolution:
+ integrity: sha512-avDYr0SB3DwO9zsMov0gKCESFYqCnE4hq/4z3TdUlukEy5t9C0YRq7HLrsN52NAcqXKaepeCD0n+B0arnVG3Hg==
+ /is-descriptor/1.0.2:
+ dependencies:
+ is-accessor-descriptor: 1.0.0
+ is-data-descriptor: 1.0.0
+ kind-of: 6.0.2
+ dev: true
+ engines:
+ node: '>=0.10.0'
+ resolution:
+ integrity: sha512-2eis5WqQGV7peooDyLmNEPUrps9+SXX5c9pL3xEB+4e9HnGuDa7mB7kHxHw4CbqS9k1T2hOH3miL8n8WtiYVtg==
+ /is-directory/0.3.1:
+ dev: true
+ engines:
+ node: '>=0.10.0'
+ resolution:
+ integrity: sha1-YTObbyR1/Hcv2cnYP1yFddwVSuE=
+ /is-extendable/0.1.1:
+ dev: true
+ engines:
+ node: '>=0.10.0'
+ resolution:
+ integrity: sha1-YrEQ4omkcUGOPsNqYX1HLjAd/Ik=
+ /is-extendable/1.0.1:
+ dependencies:
+ is-plain-object: 2.0.4
+ dev: true
+ engines:
+ node: '>=0.10.0'
+ resolution:
+ integrity: sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==
+ /is-extglob/2.1.1:
+ dev: true
+ engines:
+ node: '>=0.10.0'
+ resolution:
+ integrity: sha1-qIwCU1eR8C7TfHahueqXc8gz+MI=
+ /is-fullwidth-code-point/1.0.0:
+ dependencies:
+ number-is-nan: 1.0.1
+ dev: true
+ engines:
+ node: '>=0.10.0'
+ resolution:
+ integrity: sha1-754xOG8DGn8NZDr4L95QxFfvAMs=
+ /is-fullwidth-code-point/2.0.0:
+ dev: true
+ engines:
+ node: '>=4'
+ resolution:
+ integrity: sha1-o7MKXE8ZkYMWeqq5O+764937ZU8=
+ /is-fullwidth-code-point/3.0.0:
+ dev: true
+ engines:
+ node: '>=8'
+ resolution:
+ integrity: sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==
+ /is-generator-fn/2.1.0:
+ dev: true
+ engines:
+ node: '>=6'
+ resolution:
+ integrity: sha512-cTIB4yPYL/Grw0EaSzASzg6bBy9gqCofvWN8okThAYIxKJZC+udlRAmGbM0XLeniEJSs8uEgHPGuHSe1XsOLSQ==
+ /is-glob/3.1.0:
+ dependencies:
+ is-extglob: 2.1.1
+ dev: true
+ engines:
+ node: '>=0.10.0'
+ resolution:
+ integrity: sha1-e6WuJCF4BKxwcHuWkiVnSGzD6Eo=
+ /is-glob/4.0.1:
+ dependencies:
+ is-extglob: 2.1.1
+ dev: true
+ engines:
+ node: '>=0.10.0'
+ resolution:
+ integrity: sha512-5G0tKtBTFImOqDnLB2hG6Bp2qcKEFduo4tZu9MT/H6NQv/ghhy30o55ufafxJ/LdH79LLs2Kfrn85TLKyA7BUg==
+ /is-module/1.0.0:
+ dev: true
+ resolution:
+ integrity: sha1-Mlj7afeMFNW4FdZkM2tM/7ZEFZE=
+ /is-number/3.0.0:
+ dependencies:
+ kind-of: 3.2.2
+ dev: true
+ engines:
+ node: '>=0.10.0'
+ resolution:
+ integrity: sha1-JP1iAaR4LPUFYcgQJ2r8fRLXEZU=
+ /is-obj/1.0.1:
+ dev: true
+ engines:
+ node: '>=0.10.0'
+ resolution:
+ integrity: sha1-PkcprB9f3gJc19g6iW2rn09n2w8=
+ /is-path-cwd/2.2.0:
+ dev: true
+ engines:
+ node: '>=6'
+ resolution:
+ integrity: sha512-w942bTcih8fdJPJmQHFzkS76NEP8Kzzvmw92cXsazb8intwLqPibPPdXf4ANdKV3rYMuuQYGIWtvz9JilB3NFQ==
+ /is-path-in-cwd/2.1.0:
+ dependencies:
+ is-path-inside: 2.1.0
+ dev: true
+ engines:
+ node: '>=6'
+ resolution:
+ integrity: sha512-rNocXHgipO+rvnP6dk3zI20RpOtrAM/kzbB258Uw5BWr3TpXi861yzjo16Dn4hUox07iw5AyeMLHWsujkjzvRQ==
+ /is-path-inside/2.1.0:
+ dependencies:
+ path-is-inside: 1.0.2
+ dev: true
+ engines:
+ node: '>=6'
+ resolution:
+ integrity: sha512-wiyhTzfDWsvwAW53OBWF5zuvaOGlZ6PwYxAbPVDhpm+gM09xKQGjBq/8uYN12aDvMxnAnq3dxTyoSoRNmg5YFg==
+ /is-plain-obj/1.1.0:
+ dev: true
+ engines:
+ node: '>=0.10.0'
+ resolution:
+ integrity: sha1-caUMhCnfync8kqOQpKA7OfzVHT4=
+ /is-plain-object/2.0.4:
+ dependencies:
+ isobject: 3.0.1
+ dev: true
+ engines:
+ node: '>=0.10.0'
+ resolution:
+ integrity: sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==
+ /is-promise/2.1.0:
+ dev: true
+ resolution:
+ integrity: sha1-eaKp7OfwlugPNtKy87wWwf9L8/o=
+ /is-reference/1.1.4:
+ dependencies:
+ '@types/estree': 0.0.39
+ dev: true
+ resolution:
+ integrity: sha512-uJA/CDPO3Tao3GTrxYn6AwkM4nUPJiGGYu5+cB8qbC7WGFlrKZbiRo7SFKxUAEpFUfiHofWCXBUNhvYJMh+6zw==
+ /is-regex/1.0.5:
+ dependencies:
+ has: 1.0.3
+ dev: true
+ engines:
+ node: '>= 0.4'
+ resolution:
+ integrity: sha512-vlKW17SNq44owv5AQR3Cq0bQPEb8+kF3UKZ2fiZNOWtztYE5i0CzCZxFDwO58qAOWtxdBRVO/V5Qin1wjCqFYQ==
+ /is-regexp/1.0.0:
+ dev: true
+ engines:
+ node: '>=0.10.0'
+ resolution:
+ integrity: sha1-/S2INUXEa6xaYz57mgnof6LLUGk=
+ /is-resolvable/1.1.0:
+ dev: true
+ resolution:
+ integrity: sha512-qgDYXFSR5WvEfuS5dMj6oTMEbrrSaM0CrFk2Yiq/gXnBvD9pMa2jGXxyhGLfvhZpuMZe18CJpFxAt3CRs42NMg==
+ /is-root/2.1.0:
+ dev: true
+ engines:
+ node: '>=6'
+ resolution:
+ integrity: sha512-AGOriNp96vNBd3HtU+RzFEc75FfR5ymiYv8E553I71SCeXBiMsVDUtdio1OEFvrPyLIQ9tVR5RxXIFe5PUFjMg==
+ /is-stream/1.1.0:
+ dev: true
+ engines:
+ node: '>=0.10.0'
+ resolution:
+ integrity: sha1-EtSj3U5o4Lec6428hBc66A2RykQ=
+ /is-string/1.0.5:
+ dev: true
+ engines:
+ node: '>= 0.4'
+ resolution:
+ integrity: sha512-buY6VNRjhQMiF1qWDouloZlQbRhDPCebwxSjxMjxgemYT46YMd2NR0/H+fBhEfWX4A/w9TBJ+ol+okqJKFE6vQ==
+ /is-svg/3.0.0:
+ dependencies:
+ html-comment-regex: 1.1.2
+ dev: true
+ engines:
+ node: '>=4'
+ resolution:
+ integrity: sha512-gi4iHK53LR2ujhLVVj+37Ykh9GLqYHX6JOVXbLAucaG/Cqw9xwdFOjDM2qeifLs1sF1npXXFvDu0r5HNgCMrzQ==
+ /is-symbol/1.0.3:
+ dependencies:
+ has-symbols: 1.0.1
+ dev: true
+ engines:
+ node: '>= 0.4'
+ resolution:
+ integrity: sha512-OwijhaRSgqvhm/0ZdAcXNZt9lYdKFpcRDT5ULUuYXPoT794UNOdU+gpT6Rzo7b4V2HUl/op6GqY894AZwv9faQ==
+ /is-typedarray/1.0.0:
+ dev: true
+ resolution:
+ integrity: sha1-5HnICFjfDBsR3dppQPlgEfzaSpo=
+ /is-windows/1.0.2:
+ dev: true
+ engines:
+ node: '>=0.10.0'
+ resolution:
+ integrity: sha512-eXK1UInq2bPmjyX6e3VHIzMLobc4J94i4AWn+Hpq3OU5KkrRC96OAcR3PRJ/pGu6m8TRnBHP9dkXQVsT/COVIA==
+ /is-wsl/1.1.0:
+ dev: true
+ engines:
+ node: '>=4'
+ resolution:
+ integrity: sha1-HxbkqiKwTRM2tmGIpmrzxgDDpm0=
+ /is-wsl/2.1.1:
+ dev: true
+ engines:
+ node: '>=8'
+ resolution:
+ integrity: sha512-umZHcSrwlDHo2TGMXv0DZ8dIUGunZ2Iv68YZnrmCiBPkZ4aaOhtv7pXJKeki9k3qJ3RJr0cDyitcl5wEH3AYog==
+ /isarray/1.0.0:
+ dev: true
+ resolution:
+ integrity: sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE=
+ /isexe/2.0.0:
+ dev: true
+ resolution:
+ integrity: sha1-6PvzdNxVb/iUehDcsFctYz8s+hA=
+ /isobject/2.1.0:
+ dependencies:
+ isarray: 1.0.0
+ dev: true
+ engines:
+ node: '>=0.10.0'
+ resolution:
+ integrity: sha1-8GVWEJaj8dou9GJy+BXIQNh+DIk=
+ /isobject/3.0.1:
+ dev: true
+ engines:
+ node: '>=0.10.0'
+ resolution:
+ integrity: sha1-TkMekrEalzFjaqH5yNHMvP2reN8=
+ /isstream/0.1.2:
+ dev: true
+ resolution:
+ integrity: sha1-R+Y/evVa+m+S4VAOaQ64uFKcCZo=
+ /istanbul-lib-coverage/2.0.5:
+ dev: true
+ engines:
+ node: '>=6'
+ resolution:
+ integrity: sha512-8aXznuEPCJvGnMSRft4udDRDtb1V3pkQkMMI5LI+6HuQz5oQ4J2UFn1H82raA3qJtyOLkkwVqICBQkjnGtn5mA==
+ /istanbul-lib-instrument/3.3.0:
+ dependencies:
+ '@babel/generator': 7.7.7
+ '@babel/parser': 7.7.7
+ '@babel/template': 7.7.4
+ '@babel/traverse': 7.7.4
+ '@babel/types': 7.7.4
+ istanbul-lib-coverage: 2.0.5
+ semver: 6.3.0
+ dev: true
+ engines:
+ node: '>=6'
+ resolution:
+ integrity: sha512-5nnIN4vo5xQZHdXno/YDXJ0G+I3dAm4XgzfSVTPLQpj/zAV2dV6Juy0yaf10/zrJOJeHoN3fraFe+XRq2bFVZA==
+ /istanbul-lib-report/2.0.8:
+ dependencies:
+ istanbul-lib-coverage: 2.0.5
+ make-dir: 2.1.0
+ supports-color: 6.1.0
+ dev: true
+ engines:
+ node: '>=6'
+ resolution:
+ integrity: sha512-fHBeG573EIihhAblwgxrSenp0Dby6tJMFR/HvlerBsrCTD5bkUuoNtn3gVh29ZCS824cGGBPn7Sg7cNk+2xUsQ==
+ /istanbul-lib-source-maps/3.0.6:
+ dependencies:
+ debug: 4.1.1
+ istanbul-lib-coverage: 2.0.5
+ make-dir: 2.1.0
+ rimraf: 2.7.1
+ source-map: 0.6.1
+ dev: true
+ engines:
+ node: '>=6'
+ resolution:
+ integrity: sha512-R47KzMtDJH6X4/YW9XTx+jrLnZnscW4VpNN+1PViSYTejLVPWv7oov+Duf8YQSPyVRUvueQqz1TcsC6mooZTXw==
+ /istanbul-reports/2.2.6:
+ dependencies:
+ handlebars: 4.5.3
+ dev: true
+ engines:
+ node: '>=6'
+ resolution:
+ integrity: sha512-SKi4rnMyLBKe0Jy2uUdx28h8oG7ph2PPuQPvIAh31d+Ci+lSiEu4C+h3oBPuJ9+mPKhOyW0M8gY4U5NM1WLeXA==
+ /jest-changed-files/24.9.0:
+ dependencies:
+ '@jest/types': 24.9.0
+ execa: 1.0.0
+ throat: 4.1.0
+ dev: true
+ engines:
+ node: '>= 6'
+ resolution:
+ integrity: sha512-6aTWpe2mHF0DhL28WjdkO8LyGjs3zItPET4bMSeXU6T3ub4FPMw+mcOcbdGXQOAfmLcxofD23/5Bl9Z4AkFwqg==
+ /jest-cli/24.9.0:
+ dependencies:
+ '@jest/core': 24.9.0
+ '@jest/test-result': 24.9.0
+ '@jest/types': 24.9.0
+ chalk: 2.4.2
+ exit: 0.1.2
+ import-local: 2.0.0
+ is-ci: 2.0.0
+ jest-config: 24.9.0
+ jest-util: 24.9.0
+ jest-validate: 24.9.0
+ prompts: 2.3.0
+ realpath-native: 1.1.0
+ yargs: 13.3.0
+ dev: true
+ engines:
+ node: '>= 6'
+ hasBin: true
+ resolution:
+ integrity: sha512-+VLRKyitT3BWoMeSUIHRxV/2g8y9gw91Jh5z2UmXZzkZKpbC08CSehVxgHUwTpy+HwGcns/tqafQDJW7imYvGg==
+ /jest-config/24.9.0:
+ dependencies:
+ '@babel/core': 7.7.7
+ '@jest/test-sequencer': 24.9.0
+ '@jest/types': 24.9.0
+ babel-jest: 24.9.0_@babel+core@7.7.7
+ chalk: 2.4.2
+ glob: 7.1.6
+ jest-environment-jsdom: 24.9.0
+ jest-environment-node: 24.9.0
+ jest-get-type: 24.9.0
+ jest-jasmine2: 24.9.0
+ jest-regex-util: 24.9.0
+ jest-resolve: 24.9.0_jest-resolve@24.9.0
+ jest-util: 24.9.0
+ jest-validate: 24.9.0
+ micromatch: 3.1.10
+ pretty-format: 24.9.0
+ realpath-native: 1.1.0
+ dev: true
+ engines:
+ node: '>= 6'
+ resolution:
+ integrity: sha512-RATtQJtVYQrp7fvWg6f5y3pEFj9I+H8sWw4aKxnDZ96mob5i5SD6ZEGWgMLXQ4LE8UurrjbdlLWdUeo+28QpfQ==
+ /jest-diff/24.9.0:
+ dependencies:
+ chalk: 2.4.2
+ diff-sequences: 24.9.0
+ jest-get-type: 24.9.0
+ pretty-format: 24.9.0
+ dev: true
+ engines:
+ node: '>= 6'
+ resolution:
+ integrity: sha512-qMfrTs8AdJE2iqrTp0hzh7kTd2PQWrsFyj9tORoKmu32xjPjeE4NyjVRDz8ybYwqS2ik8N4hsIpiVTyFeo2lBQ==
+ /jest-docblock/24.9.0:
+ dependencies:
+ detect-newline: 2.1.0
+ dev: true
+ engines:
+ node: '>= 6'
+ resolution:
+ integrity: sha512-F1DjdpDMJMA1cN6He0FNYNZlo3yYmOtRUnktrT9Q37njYzC5WEaDdmbynIgy0L/IvXvvgsG8OsqhLPXTpfmZAA==
+ /jest-each/24.9.0:
+ dependencies:
+ '@jest/types': 24.9.0
+ chalk: 2.4.2
+ jest-get-type: 24.9.0
+ jest-util: 24.9.0
+ pretty-format: 24.9.0
+ dev: true
+ engines:
+ node: '>= 6'
+ resolution:
+ integrity: sha512-ONi0R4BvW45cw8s2Lrx8YgbeXL1oCQ/wIDwmsM3CqM/nlblNCPmnC3IPQlMbRFZu3wKdQ2U8BqM6lh3LJ5Bsog==
+ /jest-environment-jsdom-fourteen/0.1.0:
+ dependencies:
+ jest-mock: 24.9.0
+ jest-util: 24.9.0
+ jsdom: 14.1.0
+ dev: true
+ resolution:
+ integrity: sha512-4vtoRMg7jAstitRzL4nbw83VmGH8Rs13wrND3Ud2o1fczDhMUF32iIrNKwYGgeOPUdfvZU4oy8Bbv+ni1fgVCA==
+ /jest-environment-jsdom/24.9.0:
+ dependencies:
+ '@jest/environment': 24.9.0
+ '@jest/fake-timers': 24.9.0
+ '@jest/types': 24.9.0
+ jest-mock: 24.9.0
+ jest-util: 24.9.0
+ jsdom: 11.12.0
+ dev: true
+ engines:
+ node: '>= 6'
+ resolution:
+ integrity: sha512-Zv9FV9NBRzLuALXjvRijO2351DRQeLYXtpD4xNvfoVFw21IOKNhZAEUKcbiEtjTkm2GsJ3boMVgkaR7rN8qetA==
+ /jest-environment-node/24.9.0:
+ dependencies:
+ '@jest/environment': 24.9.0
+ '@jest/fake-timers': 24.9.0
+ '@jest/types': 24.9.0
+ jest-mock: 24.9.0
+ jest-util: 24.9.0
+ dev: true
+ engines:
+ node: '>= 6'
+ resolution:
+ integrity: sha512-6d4V2f4nxzIzwendo27Tr0aFm+IXWa0XEUnaH6nU0FMaozxovt+sfRvh4J47wL1OvF83I3SSTu0XK+i4Bqe7uA==
+ /jest-get-type/24.9.0:
+ dev: true
+ engines:
+ node: '>= 6'
+ resolution:
+ integrity: sha512-lUseMzAley4LhIcpSP9Jf+fTrQ4a1yHQwLNeeVa2cEmbCGeoZAtYPOIv8JaxLD/sUpKxetKGP+gsHl8f8TSj8Q==
+ /jest-haste-map/24.9.0:
+ dependencies:
+ '@jest/types': 24.9.0
+ anymatch: 2.0.0
+ fb-watchman: 2.0.1
+ graceful-fs: 4.2.3
+ invariant: 2.2.4
+ jest-serializer: 24.9.0
+ jest-util: 24.9.0
+ jest-worker: 24.9.0
+ micromatch: 3.1.10
+ sane: 4.1.0
+ walker: 1.0.7
+ dev: true
+ engines:
+ node: '>= 6'
+ optionalDependencies:
+ fsevents: 1.2.11
+ resolution:
+ integrity: sha512-kfVFmsuWui2Sj1Rp1AJ4D9HqJwE4uwTlS/vO+eRUaMmd54BFpli2XhMQnPC2k4cHFVbB2Q2C+jtI1AGLgEnCjQ==
+ /jest-jasmine2/24.9.0:
+ dependencies:
+ '@babel/traverse': 7.7.4
+ '@jest/environment': 24.9.0
+ '@jest/test-result': 24.9.0
+ '@jest/types': 24.9.0
+ chalk: 2.4.2
+ co: 4.6.0
+ expect: 24.9.0
+ is-generator-fn: 2.1.0
+ jest-each: 24.9.0
+ jest-matcher-utils: 24.9.0
+ jest-message-util: 24.9.0
+ jest-runtime: 24.9.0
+ jest-snapshot: 24.9.0
+ jest-util: 24.9.0
+ pretty-format: 24.9.0
+ throat: 4.1.0
+ dev: true
+ engines:
+ node: '>= 6'
+ resolution:
+ integrity: sha512-Cq7vkAgaYKp+PsX+2/JbTarrk0DmNhsEtqBXNwUHkdlbrTBLtMJINADf2mf5FkowNsq8evbPc07/qFO0AdKTzw==
+ /jest-leak-detector/24.9.0:
+ dependencies:
+ jest-get-type: 24.9.0
+ pretty-format: 24.9.0
+ dev: true
+ engines:
+ node: '>= 6'
+ resolution:
+ integrity: sha512-tYkFIDsiKTGwb2FG1w8hX9V0aUb2ot8zY/2nFg087dUageonw1zrLMP4W6zsRO59dPkTSKie+D4rhMuP9nRmrA==
+ /jest-matcher-utils/24.9.0:
+ dependencies:
+ chalk: 2.4.2
+ jest-diff: 24.9.0
+ jest-get-type: 24.9.0
+ pretty-format: 24.9.0
+ dev: true
+ engines:
+ node: '>= 6'
+ resolution:
+ integrity: sha512-OZz2IXsu6eaiMAwe67c1T+5tUAtQyQx27/EMEkbFAGiw52tB9em+uGbzpcgYVpA8wl0hlxKPZxrly4CXU/GjHA==
+ /jest-message-util/24.9.0:
+ dependencies:
+ '@babel/code-frame': 7.5.5
+ '@jest/test-result': 24.9.0
+ '@jest/types': 24.9.0
+ '@types/stack-utils': 1.0.1
+ chalk: 2.4.2
+ micromatch: 3.1.10
+ slash: 2.0.0
+ stack-utils: 1.0.2
+ dev: true
+ engines:
+ node: '>= 6'
+ resolution:
+ integrity: sha512-oCj8FiZ3U0hTP4aSui87P4L4jC37BtQwUMqk+zk/b11FR19BJDeZsZAvIHutWnmtw7r85UmR3CEWZ0HWU2mAlw==
+ /jest-mock/24.9.0:
+ dependencies:
+ '@jest/types': 24.9.0
+ dev: true
+ engines:
+ node: '>= 6'
+ resolution:
+ integrity: sha512-3BEYN5WbSq9wd+SyLDES7AHnjH9A/ROBwmz7l2y+ol+NtSFO8DYiEBzoO1CeFc9a8DYy10EO4dDFVv/wN3zl1w==
+ /jest-pnp-resolver/1.2.1_jest-resolve@24.9.0:
+ dependencies:
+ jest-resolve: 24.9.0_jest-resolve@24.9.0
+ dev: true
+ engines:
+ node: '>=6'
+ peerDependencies:
+ jest-resolve: '*'
+ peerDependenciesMeta:
+ jest-resolve:
+ optional: true
+ resolution:
+ integrity: sha512-pgFw2tm54fzgYvc/OHrnysABEObZCUNFnhjoRjaVOCN8NYc032/gVjPaHD4Aq6ApkSieWtfKAFQtmDKAmhupnQ==
+ /jest-regex-util/24.9.0:
+ dev: true
+ engines:
+ node: '>= 6'
+ resolution:
+ integrity: sha512-05Cmb6CuxaA+Ys6fjr3PhvV3bGQmO+2p2La4hFbU+W5uOc479f7FdLXUWXw4pYMAhhSZIuKHwSXSu6CsSBAXQA==
+ /jest-resolve-dependencies/24.9.0:
+ dependencies:
+ '@jest/types': 24.9.0
+ jest-regex-util: 24.9.0
+ jest-snapshot: 24.9.0
+ dev: true
+ engines:
+ node: '>= 6'
+ resolution:
+ integrity: sha512-Fm7b6AlWnYhT0BXy4hXpactHIqER7erNgIsIozDXWl5dVm+k8XdGVe1oTg1JyaFnOxarMEbax3wyRJqGP2Pq+g==
+ /jest-resolve/24.9.0_jest-resolve@24.9.0:
+ dependencies:
+ '@jest/types': 24.9.0
+ browser-resolve: 1.11.3
+ chalk: 2.4.2
+ jest-pnp-resolver: 1.2.1_jest-resolve@24.9.0
+ realpath-native: 1.1.0
+ dev: true
+ engines:
+ node: '>= 6'
+ peerDependencies:
+ jest-resolve: '*'
+ resolution:
+ integrity: sha512-TaLeLVL1l08YFZAt3zaPtjiVvyy4oSA6CRe+0AFPPVX3Q/VI0giIWWoAvoS5L96vj9Dqxj4fB5p2qrHCmTU/MQ==
+ /jest-runner/24.9.0:
+ dependencies:
+ '@jest/console': 24.9.0
+ '@jest/environment': 24.9.0
+ '@jest/test-result': 24.9.0
+ '@jest/types': 24.9.0
+ chalk: 2.4.2
+ exit: 0.1.2
+ graceful-fs: 4.2.3
+ jest-config: 24.9.0
+ jest-docblock: 24.9.0
+ jest-haste-map: 24.9.0
+ jest-jasmine2: 24.9.0
+ jest-leak-detector: 24.9.0
+ jest-message-util: 24.9.0
+ jest-resolve: 24.9.0_jest-resolve@24.9.0
+ jest-runtime: 24.9.0
+ jest-util: 24.9.0
+ jest-worker: 24.9.0
+ source-map-support: 0.5.16
+ throat: 4.1.0
+ dev: true
+ engines:
+ node: '>= 6'
+ resolution:
+ integrity: sha512-KksJQyI3/0mhcfspnxxEOBueGrd5E4vV7ADQLT9ESaCzz02WnbdbKWIf5Mkaucoaj7obQckYPVX6JJhgUcoWWg==
+ /jest-runtime/24.9.0:
+ dependencies:
+ '@jest/console': 24.9.0
+ '@jest/environment': 24.9.0
+ '@jest/source-map': 24.9.0
+ '@jest/transform': 24.9.0
+ '@jest/types': 24.9.0
+ '@types/yargs': 13.0.4
+ chalk: 2.4.2
+ exit: 0.1.2
+ glob: 7.1.6
+ graceful-fs: 4.2.3
+ jest-config: 24.9.0
+ jest-haste-map: 24.9.0
+ jest-message-util: 24.9.0
+ jest-mock: 24.9.0
+ jest-regex-util: 24.9.0
+ jest-resolve: 24.9.0_jest-resolve@24.9.0
+ jest-snapshot: 24.9.0
+ jest-util: 24.9.0
+ jest-validate: 24.9.0
+ realpath-native: 1.1.0
+ slash: 2.0.0
+ strip-bom: 3.0.0
+ yargs: 13.3.0
+ dev: true
+ engines:
+ node: '>= 6'
+ hasBin: true
+ resolution:
+ integrity: sha512-8oNqgnmF3v2J6PVRM2Jfuj8oX3syKmaynlDMMKQ4iyzbQzIG6th5ub/lM2bCMTmoTKM3ykcUYI2Pw9xwNtjMnw==
+ /jest-serializer/24.9.0:
+ dev: true
+ engines:
+ node: '>= 6'
+ resolution:
+ integrity: sha512-DxYipDr8OvfrKH3Kel6NdED3OXxjvxXZ1uIY2I9OFbGg+vUkkg7AGvi65qbhbWNPvDckXmzMPbK3u3HaDO49bQ==
+ /jest-snapshot/24.9.0:
+ dependencies:
+ '@babel/types': 7.7.4
+ '@jest/types': 24.9.0
+ chalk: 2.4.2
+ expect: 24.9.0
+ jest-diff: 24.9.0
+ jest-get-type: 24.9.0
+ jest-matcher-utils: 24.9.0
+ jest-message-util: 24.9.0
+ jest-resolve: 24.9.0_jest-resolve@24.9.0
+ mkdirp: 0.5.1
+ natural-compare: 1.4.0
+ pretty-format: 24.9.0
+ semver: 6.3.0
+ dev: true
+ engines:
+ node: '>= 6'
+ resolution:
+ integrity: sha512-uI/rszGSs73xCM0l+up7O7a40o90cnrk429LOiK3aeTvfC0HHmldbd81/B7Ix81KSFe1lwkbl7GnBGG4UfuDew==
+ /jest-util/24.9.0:
+ dependencies:
+ '@jest/console': 24.9.0
+ '@jest/fake-timers': 24.9.0
+ '@jest/source-map': 24.9.0
+ '@jest/test-result': 24.9.0
+ '@jest/types': 24.9.0
+ callsites: 3.1.0
+ chalk: 2.4.2
+ graceful-fs: 4.2.3
+ is-ci: 2.0.0
+ mkdirp: 0.5.1
+ slash: 2.0.0
+ source-map: 0.6.1
+ dev: true
+ engines:
+ node: '>= 6'
+ resolution:
+ integrity: sha512-x+cZU8VRmOJxbA1K5oDBdxQmdq0OIdADarLxk0Mq+3XS4jgvhG/oKGWcIDCtPG0HgjxOYvF+ilPJQsAyXfbNOg==
+ /jest-validate/24.9.0:
+ dependencies:
+ '@jest/types': 24.9.0
+ camelcase: 5.3.1
+ chalk: 2.4.2
+ jest-get-type: 24.9.0
+ leven: 3.1.0
+ pretty-format: 24.9.0
+ dev: true
+ engines:
+ node: '>= 6'
+ resolution:
+ integrity: sha512-HPIt6C5ACwiqSiwi+OfSSHbK8sG7akG8eATl+IPKaeIjtPOeBUd/g3J7DghugzxrGjI93qS/+RPKe1H6PqvhRQ==
+ /jest-watch-typeahead/0.4.2:
+ dependencies:
+ ansi-escapes: 4.3.0
+ chalk: 2.4.2
+ jest-regex-util: 24.9.0
+ jest-watcher: 24.9.0
+ slash: 3.0.0
+ string-length: 3.1.0
+ strip-ansi: 5.2.0
+ dev: true
+ resolution:
+ integrity: sha512-f7VpLebTdaXs81rg/oj4Vg/ObZy2QtGzAmGLNsqUS5G5KtSN68tFcIsbvNODfNyQxU78g7D8x77o3bgfBTR+2Q==
+ /jest-watcher/24.9.0:
+ dependencies:
+ '@jest/test-result': 24.9.0
+ '@jest/types': 24.9.0
+ '@types/yargs': 13.0.4
+ ansi-escapes: 3.2.0
+ chalk: 2.4.2
+ jest-util: 24.9.0
+ string-length: 2.0.0
+ dev: true
+ engines:
+ node: '>= 6'
+ resolution:
+ integrity: sha512-+/fLOfKPXXYJDYlks62/4R4GoT+GU1tYZed99JSCOsmzkkF7727RqKrjNAxtfO4YpGv11wybgRvCjR73lK2GZw==
+ /jest-worker/24.9.0:
+ dependencies:
+ merge-stream: 2.0.0
+ supports-color: 6.1.0
+ dev: true
+ engines:
+ node: '>= 6'
+ resolution:
+ integrity: sha512-51PE4haMSXcHohnSMdM42anbvZANYTqMrr52tVKPqqsPJMzoP6FYYDVqahX/HrAoKEKz3uUPzSvKs9A3qR4iVw==
+ /jest/24.9.0:
+ dependencies:
+ import-local: 2.0.0
+ jest-cli: 24.9.0
+ dev: true
+ engines:
+ node: '>= 6'
+ hasBin: true
+ resolution:
+ integrity: sha512-YvkBL1Zm7d2B1+h5fHEOdyjCG+sGMz4f8D86/0HiqJ6MB4MnDc8FgP5vdWsGnemOQro7lnYo8UakZ3+5A0jxGw==
+ /js-levenshtein/1.1.6:
+ dev: true
+ engines:
+ node: '>=0.10.0'
+ resolution:
+ integrity: sha512-X2BB11YZtrRqY4EnQcLX5Rh373zbK4alC1FW7D7MBhL2gtcC17cTnr6DmfHZeS0s2rTHjUTMMHfG7gO8SSdw+g==
+ /js-tokens/3.0.2:
+ dev: true
+ resolution:
+ integrity: sha1-mGbfOVECEw449/mWvOtlRDIJwls=
+ /js-tokens/4.0.0:
+ dev: true
+ resolution:
+ integrity: sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==
+ /js-yaml/3.13.1:
+ dependencies:
+ argparse: 1.0.10
+ esprima: 4.0.1
+ dev: true
+ hasBin: true
+ resolution:
+ integrity: sha512-YfbcO7jXDdyj0DGxYVSlSeQNHbD7XPWvrVWeVUujrQEoZzWJIRrCPoyk6kL6IAjAG2IolMK4T0hNUe0HOUs5Jw==
+ /jsbn/0.1.1:
+ dev: true
+ resolution:
+ integrity: sha1-peZUwuWi3rXyAdls77yoDA7y9RM=
+ /jsdom/11.12.0:
+ dependencies:
+ abab: 2.0.3
+ acorn: 5.7.3
+ acorn-globals: 4.3.4
+ array-equal: 1.0.0
+ cssom: 0.3.8
+ cssstyle: 1.4.0
+ data-urls: 1.1.0
+ domexception: 1.0.1
+ escodegen: 1.12.1
+ html-encoding-sniffer: 1.0.2
+ left-pad: 1.3.0
+ nwsapi: 2.2.0
+ parse5: 4.0.0
+ pn: 1.1.0
+ request: 2.88.0
+ request-promise-native: 1.0.8_request@2.88.0
+ sax: 1.2.4
+ symbol-tree: 3.2.4
+ tough-cookie: 2.5.0
+ w3c-hr-time: 1.0.1
+ webidl-conversions: 4.0.2
+ whatwg-encoding: 1.0.5
+ whatwg-mimetype: 2.3.0
+ whatwg-url: 6.5.0
+ ws: 5.2.2
+ xml-name-validator: 3.0.0
+ dev: true
+ resolution:
+ integrity: sha512-y8Px43oyiBM13Zc1z780FrfNLJCXTL40EWlty/LXUtcjykRBNgLlCjWXpfSPBl2iv+N7koQN+dvqszHZgT/Fjw==
+ /jsdom/14.1.0:
+ dependencies:
+ abab: 2.0.3
+ acorn: 6.4.0
+ acorn-globals: 4.3.4
+ array-equal: 1.0.0
+ cssom: 0.3.8
+ cssstyle: 1.4.0
+ data-urls: 1.1.0
+ domexception: 1.0.1
+ escodegen: 1.12.1
+ html-encoding-sniffer: 1.0.2
+ nwsapi: 2.2.0
+ parse5: 5.1.0
+ pn: 1.1.0
+ request: 2.88.0
+ request-promise-native: 1.0.8_request@2.88.0
+ saxes: 3.1.11
+ symbol-tree: 3.2.4
+ tough-cookie: 2.5.0
+ w3c-hr-time: 1.0.1
+ w3c-xmlserializer: 1.1.2
+ webidl-conversions: 4.0.2
+ whatwg-encoding: 1.0.5
+ whatwg-mimetype: 2.3.0
+ whatwg-url: 7.1.0
+ ws: 6.2.1
+ xml-name-validator: 3.0.0
+ dev: true
+ engines:
+ node: '>=8'
+ resolution:
+ integrity: sha512-O901mfJSuTdwU2w3Sn+74T+RnDVP+FuV5fH8tcPWyqrseRAb0s5xOtPgCFiPOtLcyK7CLIJwPyD83ZqQWvA5ng==
+ /jsesc/0.5.0:
+ dev: true
+ hasBin: true
+ resolution:
+ integrity: sha1-597mbjXW/Bb3EP6R1c9p9w8IkR0=
+ /jsesc/2.5.2:
+ dev: true
+ engines:
+ node: '>=4'
+ hasBin: true
+ resolution:
+ integrity: sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA==
+ /json-fixer/1.4.0:
+ dependencies:
+ '@babel/runtime': 7.7.7
+ chalk: 2.4.2
+ pegjs: 0.10.0
+ dev: true
+ engines:
+ node: '>=6'
+ resolution:
+ integrity: sha512-9Nbl396T9eRPvrUxKnBQeiVgQjuBhvumptJfwSAdjQ+cjUqJ981O8Kts/A7ZEID3SbRr76uTOayxVTi+AbAf/A==
+ /json-parse-better-errors/1.0.2:
+ dev: true
+ resolution:
+ integrity: sha512-mrqyZKfX5EhL7hvqcV6WG1yYjnjeuYDzDhhcAAUrq8Po85NBQBJP+ZDUT75qZQ98IkUoBqdkExkukOU7Ts2wrw==
+ /json-schema-traverse/0.4.1:
+ dev: true
+ resolution:
+ integrity: sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==
+ /json-schema/0.2.3:
+ dev: true
+ resolution:
+ integrity: sha1-tIDIkuWaLwWVTOcnvT8qTogvnhM=
+ /json-stable-stringify-without-jsonify/1.0.1:
+ dev: true
+ resolution:
+ integrity: sha1-nbe1lJatPzz+8wp1FC0tkwrXJlE=
+ /json-stable-stringify/1.0.1:
+ dependencies:
+ jsonify: 0.0.0
+ dev: true
+ resolution:
+ integrity: sha1-mnWdOcXy/1A/1TAGRu1EX4jE+a8=
+ /json-stringify-safe/5.0.1:
+ dev: true
+ resolution:
+ integrity: sha1-Epai1Y/UXxmg9s4B1lcB4sc1tus=
+ /json3/3.3.3:
+ dev: true
+ resolution:
+ integrity: sha512-c7/8mbUsKigAbLkD5B010BK4D9LZm7A1pNItkEwiUZRpIN66exu/e7YQWysGun+TRKaJp8MhemM+VkfWv42aCA==
+ /json5/0.5.1:
+ dev: true
+ hasBin: true
+ resolution:
+ integrity: sha1-Hq3nrMASA0rYTiOWdn6tn6VJWCE=
+ /json5/1.0.1:
+ dependencies:
+ minimist: 1.2.0
+ dev: true
+ hasBin: true
+ resolution:
+ integrity: sha512-aKS4WQjPenRxiQsC93MNfjx+nbF4PAdYzmd/1JIj8HYzqfbu86beTuNgXDzPknWk0n0uARlyewZo4s++ES36Ow==
+ /json5/2.1.1:
+ dependencies:
+ minimist: 1.2.0
+ dev: true
+ engines:
+ node: '>=6'
+ hasBin: true
+ resolution:
+ integrity: sha512-l+3HXD0GEI3huGq1njuqtzYK8OYJyXMkOLtQ53pjWh89tvWS2h6l+1zMkYWqlb57+SiQodKZyvMEFb2X+KrFhQ==
+ /jsonfile/4.0.0:
+ dev: true
+ optionalDependencies:
+ graceful-fs: 4.2.3
+ resolution:
+ integrity: sha1-h3Gq4HmbZAdrdmQPygWPnBDjPss=
+ /jsonify/0.0.0:
+ dev: true
+ resolution:
+ integrity: sha1-LHS27kHZPKUbe1qu6PUDYx0lKnM=
+ /jsprim/1.4.1:
+ dependencies:
+ assert-plus: 1.0.0
+ extsprintf: 1.3.0
+ json-schema: 0.2.3
+ verror: 1.10.0
+ dev: true
+ engines:
+ '0': node >=0.6.0
+ resolution:
+ integrity: sha1-MT5mvB5cwG5Di8G3SZwuXFastqI=
+ /jsx-ast-utils/2.2.3:
+ dependencies:
+ array-includes: 3.1.1
+ object.assign: 4.1.0
+ dev: true
+ engines:
+ node: '>=4.0'
+ resolution:
+ integrity: sha512-EdIHFMm+1BPynpKOpdPqiOsvnIrInRGJD7bzPZdPkjitQEqpdpUuFpq4T0npZFKTiB3RhWFdGN+oqOJIdhDhQA==
+ /killable/1.0.1:
+ dev: true
+ resolution:
+ integrity: sha512-LzqtLKlUwirEUyl/nicirVmNiPvYs7l5n8wOPP7fyJVpUPkvCnW/vuiXGpylGUlnPDnB7311rARzAt3Mhswpjg==
+ /kind-of/2.0.1:
+ dependencies:
+ is-buffer: 1.1.6
+ dev: true
+ engines:
+ node: '>=0.10.0'
+ resolution:
+ integrity: sha1-AY7HpM5+OobLkUG+UZ0kyPqpgbU=
+ /kind-of/3.2.2:
+ dependencies:
+ is-buffer: 1.1.6
+ dev: true
+ engines:
+ node: '>=0.10.0'
+ resolution:
+ integrity: sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=
+ /kind-of/4.0.0:
+ dependencies:
+ is-buffer: 1.1.6
+ dev: true
+ engines:
+ node: '>=0.10.0'
+ resolution:
+ integrity: sha1-IIE989cSkosgc3hpGkUGb65y3Vc=
+ /kind-of/5.1.0:
+ dev: true
+ engines:
+ node: '>=0.10.0'
+ resolution:
+ integrity: sha512-NGEErnH6F2vUuXDh+OlbcKW7/wOcfdRHaZ7VWtqCztfHri/++YKmP51OdWeGPuqCOba6kk2OTe5d02VmTB80Pw==
+ /kind-of/6.0.2:
+ dev: true
+ engines:
+ node: '>=0.10.0'
+ resolution:
+ integrity: sha512-s5kLOcnH0XqDO+FvuaLX8DDjZ18CGFk7VygH40QoKPUQhW4e2rvM0rwUq0t8IQDOwYSeLK01U90OjzBTme2QqA==
+ /kleur/3.0.3:
+ dev: true
+ engines:
+ node: '>=6'
+ resolution:
+ integrity: sha512-eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w==
+ /last-call-webpack-plugin/3.0.0:
+ dependencies:
+ lodash: 4.17.15
+ webpack-sources: 1.4.3
+ dev: true
+ resolution:
+ integrity: sha512-7KI2l2GIZa9p2spzPIVZBYyNKkN+e/SQPpnjlTiPhdbDW3F86tdKKELxKpzJ5sgU19wQWsACULZmpTPYHeWO5w==
+ /lazy-cache/0.2.7:
+ dev: true
+ engines:
+ node: '>=0.10.0'
+ resolution:
+ integrity: sha1-f+3fLctu23fRHvHRF6tf/fCrG2U=
+ /lazy-cache/1.0.4:
+ dev: true
+ engines:
+ node: '>=0.10.0'
+ resolution:
+ integrity: sha1-odePw6UEdMuAhF07O24dpJpEbo4=
+ /lcid/2.0.0:
+ dependencies:
+ invert-kv: 2.0.0
+ dev: true
+ engines:
+ node: '>=6'
+ resolution:
+ integrity: sha512-avPEb8P8EGnwXKClwsNUgryVjllcRqtMYa49NTsbQagYuT1DcXnl1915oxWjoyGrXR6zH/Y0Zc96xWsPcoDKeA==
+ /left-pad/1.3.0:
+ deprecated: use String.prototype.padStart()
+ dev: true
+ resolution:
+ integrity: sha512-XI5MPzVNApjAyhQzphX8BkmKsKUxD4LdyK24iZeQGinBN9yTQT3bFlCBy/aVx2HrNcqQGsdot8ghrjyrvMCoEA==
+ /leven/3.1.0:
+ dev: true
+ engines:
+ node: '>=6'
+ resolution:
+ integrity: sha512-qsda+H8jTaUaN/x5vzW2rzc+8Rw4TAQ/4KjB46IwK5VH+IlVeeeje/EoZRpiXvIqjFgK84QffqPztGI3VBLG1A==
+ /levn/0.3.0:
+ dependencies:
+ prelude-ls: 1.1.2
+ type-check: 0.3.2
+ dev: true
+ engines:
+ node: '>= 0.8.0'
+ resolution:
+ integrity: sha1-OwmSTt+fCDwEkP3UwLxEIeBHZO4=
+ /lines-and-columns/1.1.6:
+ dev: true
+ resolution:
+ integrity: sha1-HADHQ7QzzQpOgHWPe2SldEDZ/wA=
+ /load-json-file/2.0.0:
+ dependencies:
+ graceful-fs: 4.2.3
+ parse-json: 2.2.0
+ pify: 2.3.0
+ strip-bom: 3.0.0
+ dev: true
+ engines:
+ node: '>=4'
+ resolution:
+ integrity: sha1-eUfkIUmvgNaWy/eXvKq8/h/inKg=
+ /load-json-file/4.0.0:
+ dependencies:
+ graceful-fs: 4.2.3
+ parse-json: 4.0.0
+ pify: 3.0.0
+ strip-bom: 3.0.0
+ dev: true
+ engines:
+ node: '>=4'
+ resolution:
+ integrity: sha1-L19Fq5HjMhYjT9U62rZo607AmTs=
+ /loader-fs-cache/1.0.2:
+ dependencies:
+ find-cache-dir: 0.1.1
+ mkdirp: 0.5.1
+ dev: true
+ resolution:
+ integrity: sha512-70IzT/0/L+M20jUlEqZhZyArTU6VKLRTYRDAYN26g4jfzpJqjipLL3/hgYpySqI9PwsVRHHFja0LfEmsx9X2Cw==
+ /loader-runner/2.4.0:
+ dev: true
+ engines:
+ node: '>=4.3.0 <5.0.0 || >=5.10'
+ resolution:
+ integrity: sha512-Jsmr89RcXGIwivFY21FcRrisYZfvLMTWx5kOLc+JTxtpBOG6xML0vzbc6SEQG2FO9/4Fc3wW4LVcB5DmGflaRw==
+ /loader-utils/0.2.17:
+ dependencies:
+ big.js: 3.2.0
+ emojis-list: 2.1.0
+ json5: 0.5.1
+ object-assign: 4.1.1
+ dev: true
+ resolution:
+ integrity: sha1-+G5jdNQyBabmxg6RlvF8Apm/s0g=
+ /loader-utils/1.2.3:
+ dependencies:
+ big.js: 5.2.2
+ emojis-list: 2.1.0
+ json5: 1.0.1
+ dev: true
+ engines:
+ node: '>=4.0.0'
+ resolution:
+ integrity: sha512-fkpz8ejdnEMG3s37wGL07iSBDg99O9D5yflE9RGNH3hRdx9SOwYfnGYdZOUIZitN8E+E2vkq3MUMYMvPYl5ZZA==
+ /locate-path/2.0.0:
+ dependencies:
+ p-locate: 2.0.0
+ path-exists: 3.0.0
+ dev: true
+ engines:
+ node: '>=4'
+ resolution:
+ integrity: sha1-K1aLJl7slExtnA3pw9u7ygNUzY4=
+ /locate-path/3.0.0:
+ dependencies:
+ p-locate: 3.0.0
+ path-exists: 3.0.0
+ dev: true
+ engines:
+ node: '>=6'
+ resolution:
+ integrity: sha512-7AO748wWnIhNqAuaty2ZWHkQHRSNfPVIsPIfwEOWO22AmaoVrWavlOcMR5nzTLNYvp36X220/maaRsrec1G65A==
+ /locate-path/5.0.0:
+ dependencies:
+ p-locate: 4.1.0
+ dev: true
+ engines:
+ node: '>=8'
+ resolution:
+ integrity: sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==
+ /lodash._reinterpolate/3.0.0:
+ dev: true
+ resolution:
+ integrity: sha1-DM8tiRZq8Ds2Y8eWU4t1rG4RTZ0=
+ /lodash.camelcase/4.3.0:
+ dev: true
+ resolution:
+ integrity: sha1-soqmKIorn8ZRA1x3EfZathkDMaY=
+ /lodash.memoize/4.1.2:
+ dev: true
+ resolution:
+ integrity: sha1-vMbEmkKihA7Zl/Mj6tpezRguC/4=
+ /lodash.merge/4.6.2:
+ dev: true
+ resolution:
+ integrity: sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==
+ /lodash.sortby/4.7.0:
+ dev: true
+ resolution:
+ integrity: sha1-7dFMgk4sycHgsKG0K7UhBRakJDg=
+ /lodash.template/4.5.0:
+ dependencies:
+ lodash._reinterpolate: 3.0.0
+ lodash.templatesettings: 4.2.0
+ dev: true
+ resolution:
+ integrity: sha512-84vYFxIkmidUiFxidA/KjjH9pAycqW+h980j7Fuz5qxRtO9pgB7MDFTdys1N7A5mcucRiDyEq4fusljItR1T/A==
+ /lodash.templatesettings/4.2.0:
+ dependencies:
+ lodash._reinterpolate: 3.0.0
+ dev: true
+ resolution:
+ integrity: sha512-stgLz+i3Aa9mZgnjr/O+v9ruKZsPsndy7qPZOchbqk2cnTU1ZaldKK+v7m54WoKIyxiuMZTKT2H81F8BeAc3ZQ==
+ /lodash.unescape/4.0.1:
+ dev: true
+ resolution:
+ integrity: sha1-vyJJiGzlFM2hEvrpIYzcBlIR/Jw=
+ /lodash.uniq/4.5.0:
+ dev: true
+ resolution:
+ integrity: sha1-0CJTc662Uq3BvILklFM5qEJ1R3M=
+ /lodash/4.17.15:
+ dev: true
+ resolution:
+ integrity: sha512-8xOcRHvCjnocdS5cpwXQXVzmmh5e5+saE2QGoeQmbKmRS6J3VQppPOIt0MnmE+4xlZoumy0GPG0D0MVIQbNA1A==
+ /loglevel-colored-level-prefix/1.0.0:
+ dependencies:
+ chalk: 1.1.3
+ loglevel: 1.6.6
+ dev: true
+ resolution:
+ integrity: sha1-akAhj9x64V/HbD0PPmdsRlOIYD4=
+ /loglevel/1.6.6:
+ dev: true
+ engines:
+ node: '>= 0.6.0'
+ resolution:
+ integrity: sha512-Sgr5lbboAUBo3eXCSPL4/KoVz3ROKquOjcctxmHIt+vol2DrqTQe3SwkKKuYhEiWB5kYa13YyopJ69deJ1irzQ==
+ /loose-envify/1.4.0:
+ dependencies:
+ js-tokens: 4.0.0
+ dev: true
+ hasBin: true
+ resolution:
+ integrity: sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==
+ /lower-case/1.1.4:
+ dev: true
+ resolution:
+ integrity: sha1-miyr0bno4K6ZOkv31YdcOcQujqw=
+ /lru-cache/5.1.1:
+ dependencies:
+ yallist: 3.1.1
+ dev: true
+ resolution:
+ integrity: sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==
+ /magic-string/0.25.5:
+ dependencies:
+ sourcemap-codec: 1.4.7
+ dev: true
+ resolution:
+ integrity: sha512-vIO/BOm9odBHBAGwv0gZPLJeO9IpwliiIc0uPeAW93rrFMJ/R3M665IAEfOU/IW3kD4S9AtEn76lfTn1Yif+9A==
+ /make-dir/2.1.0:
+ dependencies:
+ pify: 4.0.1
+ semver: 5.7.1
+ dev: true
+ engines:
+ node: '>=6'
+ resolution:
+ integrity: sha512-LS9X+dc8KLxXCb8dni79fLIIUA5VyZoyjSMCwTluaXA0o27cCK0bhXkpgw+sTXVpPy/lSO57ilRixqk0vDmtRA==
+ /make-dir/3.0.0:
+ dependencies:
+ semver: 6.3.0
+ dev: true
+ engines:
+ node: '>=8'
+ resolution:
+ integrity: sha512-grNJDhb8b1Jm1qeqW5R/O63wUo4UXo2v2HMic6YT9i/HBlF93S8jkMgH7yugvY9ABDShH4VZMn8I+U8+fCNegw==
+ /make-plural/4.3.0:
+ dev: true
+ hasBin: true
+ optionalDependencies:
+ minimist: 1.2.0
+ resolution:
+ integrity: sha512-xTYd4JVHpSCW+aqDof6w/MebaMVNTVYBZhbB/vi513xXdiPT92JMVCo0Jq8W2UZnzYRFeVbQiQ+I25l13JuKvA==
+ /makeerror/1.0.11:
+ dependencies:
+ tmpl: 1.0.4
+ dev: true
+ resolution:
+ integrity: sha1-4BpckQnyr3lmDk6LlYd5AYT1qWw=
+ /mamacro/0.0.3:
+ dev: true
+ resolution:
+ integrity: sha512-qMEwh+UujcQ+kbz3T6V+wAmO2U8veoq2w+3wY8MquqwVA3jChfwY+Tk52GZKDfACEPjuZ7r2oJLejwpt8jtwTA==
+ /map-age-cleaner/0.1.3:
+ dependencies:
+ p-defer: 1.0.0
+ dev: true
+ engines:
+ node: '>=6'
+ resolution:
+ integrity: sha512-bJzx6nMoP6PDLPBFmg7+xRKeFZvFboMrGlxmNj9ClvX53KrmvM5bXFXEWjbz4cz1AFn+jWJ9z/DJSz7hrs0w3w==
+ /map-cache/0.2.2:
+ dev: true
+ engines:
+ node: '>=0.10.0'
+ resolution:
+ integrity: sha1-wyq9C9ZSXZsFFkW7TyasXcmKDb8=
+ /map-obj/4.1.0:
+ dev: true
+ engines:
+ node: '>=8'
+ resolution:
+ integrity: sha512-glc9y00wgtwcDmp7GaE/0b0OnxpNJsVf3ael/An6Fe2Q51LLwN1er6sdomLRzz5h0+yMpiYLhWYF5R7HeqVd4g==
+ /map-visit/1.0.0:
+ dependencies:
+ object-visit: 1.0.1
+ dev: true
+ engines:
+ node: '>=0.10.0'
+ resolution:
+ integrity: sha1-7Nyo8TFE5mDxtb1B8S80edmN+48=
+ /md5.js/1.3.5:
+ dependencies:
+ hash-base: 3.0.4
+ inherits: 2.0.4
+ safe-buffer: 5.2.0
+ dev: true
+ resolution:
+ integrity: sha512-xitP+WxNPcTTOgnTJcrhM0xvdPepipPSf3I8EIpGKeFLjt3PlJLIDG3u8EX53ZIubkb+5U2+3rELYpEhHhzdkg==
+ /mdn-data/2.0.4:
+ dev: true
+ resolution:
+ integrity: sha512-iV3XNKw06j5Q7mi6h+9vbx23Tv7JkjEVgKHW4pimwyDGWm0OIQntJJ+u1C6mg6mK1EaTv42XQ7w76yuzH7M2cA==
+ /media-typer/0.3.0:
+ dev: true
+ engines:
+ node: '>= 0.6'
+ resolution:
+ integrity: sha1-hxDXrwqmJvj/+hzgAWhUUmMlV0g=
+ /mem/4.3.0:
+ dependencies:
+ map-age-cleaner: 0.1.3
+ mimic-fn: 2.1.0
+ p-is-promise: 2.1.0
+ dev: true
+ engines:
+ node: '>=6'
+ resolution:
+ integrity: sha512-qX2bG48pTqYRVmDB37rn/6PT7LcR8T7oAX3bf99u1Tt1nzxYfxkgqDwUwolPlXweM0XzBOBFzSx4kfp7KP1s/w==
+ /memory-fs/0.4.1:
+ dependencies:
+ errno: 0.1.7
+ readable-stream: 2.3.7
+ dev: true
+ resolution:
+ integrity: sha1-OpoguEYlI+RHz7x+i7gO1me/xVI=
+ /memory-fs/0.5.0:
+ dependencies:
+ errno: 0.1.7
+ readable-stream: 2.3.7
+ dev: true
+ engines:
+ node: '>=4.3.0 <5.0.0 || >=5.10'
+ resolution:
+ integrity: sha512-jA0rdU5KoQMC0e6ppoNRtpp6vjFq6+NY7r8hywnC7V+1Xj/MtHwGIbB1QaK/dunyjWteJzmkpd7ooeWg10T7GA==
+ /merge-deep/3.0.2:
+ dependencies:
+ arr-union: 3.1.0
+ clone-deep: 0.2.4
+ kind-of: 3.2.2
+ dev: true
+ engines:
+ node: '>=0.10.0'
+ resolution:
+ integrity: sha512-T7qC8kg4Zoti1cFd8Cr0M+qaZfOwjlPDEdZIIPPB2JZctjaPM4fX+i7HOId69tAti2fvO6X5ldfYUONDODsrkA==
+ /merge-descriptors/1.0.1:
+ dev: true
+ resolution:
+ integrity: sha1-sAqqVW3YtEVoFQ7J0blT8/kMu2E=
+ /merge-stream/2.0.0:
+ dev: true
+ resolution:
+ integrity: sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==
+ /merge2/1.3.0:
+ dev: true
+ engines:
+ node: '>= 6'
+ resolution:
+ integrity: sha512-2j4DAdlBOkiSZIsaXk4mTE3sRS02yBHAtfy127xRV3bQUFqXkjHCHLW6Scv7DwNRbIWNHH8zpnz9zMaKXIdvYw==
+ /messageformat-formatters/2.0.1:
+ dev: true
+ resolution:
+ integrity: sha512-E/lQRXhtHwGuiQjI7qxkLp8AHbMD5r2217XNe/SREbBlSawe0lOqsFb7rflZJmlQFSULNLIqlcjjsCPlB3m3Mg==
+ /messageformat-parser/4.1.2:
+ dev: true
+ resolution:
+ integrity: sha512-7dWuifeyldz7vhEuL96Kwq1fhZXBW+TUfbnHN4UCrCxoXQTYjHnR78eI66Gk9LaLLsAvzPNVJBaa66DRfFNaiA==
+ /messageformat/2.3.0:
+ dependencies:
+ make-plural: 4.3.0
+ messageformat-formatters: 2.0.1
+ messageformat-parser: 4.1.2
+ dev: true
+ resolution:
+ integrity: sha512-uTzvsv0lTeQxYI2y1NPa1lItL5VRI8Gb93Y2K2ue5gBPyrbJxfDi/EYWxh2PKv5yO42AJeeqblS9MJSh/IEk4w==
+ /methods/1.1.2:
+ dev: true
+ engines:
+ node: '>= 0.6'
+ resolution:
+ integrity: sha1-VSmk1nZUE07cxSZmVoNbD4Ua/O4=
+ /microevent.ts/0.1.1:
+ dev: true
+ resolution:
+ integrity: sha512-jo1OfR4TaEwd5HOrt5+tAZ9mqT4jmpNAusXtyfNzqVm9uiSYFZlKM1wYL4oU7azZW/PxQW53wM0S6OR1JHNa2g==
+ /micromatch/3.1.10:
+ dependencies:
+ arr-diff: 4.0.0
+ array-unique: 0.3.2
+ braces: 2.3.2
+ define-property: 2.0.2
+ extend-shallow: 3.0.2
+ extglob: 2.0.4
+ fragment-cache: 0.2.1
+ kind-of: 6.0.2
+ nanomatch: 1.2.13
+ object.pick: 1.3.0
+ regex-not: 1.0.2
+ snapdragon: 0.8.2
+ to-regex: 3.0.2
+ dev: true
+ engines:
+ node: '>=0.10.0'
+ resolution:
+ integrity: sha512-MWikgl9n9M3w+bpsY3He8L+w9eF9338xRl8IAO5viDizwSzziFEyUzo2xrrloB64ADbTf8uA8vRqqttDTOmccg==
+ /miller-rabin/4.0.1:
+ dependencies:
+ bn.js: 4.11.8
+ brorand: 1.1.0
+ dev: true
+ hasBin: true
+ resolution:
+ integrity: sha512-115fLhvZVqWwHPbClyntxEVfVDfl9DLLTuJvq3g2O/Oxi8AiNouAHvDSzHS0viUJc+V5vm3eq91Xwqn9dp4jRA==
+ /mime-db/1.43.0:
+ dev: true
+ engines:
+ node: '>= 0.6'
+ resolution:
+ integrity: sha512-+5dsGEEovYbT8UY9yD7eE4XTc4UwJ1jBYlgaQQF38ENsKR3wj/8q8RFZrF9WIZpB2V1ArTVFUva8sAul1NzRzQ==
+ /mime-types/2.1.26:
+ dependencies:
+ mime-db: 1.43.0
+ dev: true
+ engines:
+ node: '>= 0.6'
+ resolution:
+ integrity: sha512-01paPWYgLrkqAyrlDorC1uDwl2p3qZT7yl806vW7DvDoxwXi46jsjFbg+WdwotBIk6/MbEhO/dh5aZ5sNj/dWQ==
+ /mime/1.6.0:
+ dev: true
+ engines:
+ node: '>=4'
+ hasBin: true
+ resolution:
+ integrity: sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==
+ /mime/2.4.4:
+ dev: true
+ engines:
+ node: '>=4.0.0'
+ hasBin: true
+ resolution:
+ integrity: sha512-LRxmNwziLPT828z+4YkNzloCFC2YM4wrB99k+AV5ZbEyfGNWfG8SO1FUXLmLDBSo89NrJZ4DIWeLjy1CHGhMGA==
+ /mimic-fn/1.2.0:
+ dev: true
+ engines:
+ node: '>=4'
+ resolution:
+ integrity: sha512-jf84uxzwiuiIVKiOLpfYk7N46TSy8ubTonmneY9vrpHNAnp0QBt2BxWV9dO3/j+BoVAb+a5G6YDPW3M5HOdMWQ==
+ /mimic-fn/2.1.0:
+ dev: true
+ engines:
+ node: '>=6'
+ resolution:
+ integrity: sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==
+ /mini-css-extract-plugin/0.8.0_webpack@4.41.2:
+ dependencies:
+ loader-utils: 1.2.3
+ normalize-url: 1.9.1
+ schema-utils: 1.0.0
+ webpack: 4.41.2_webpack@4.41.2
+ webpack-sources: 1.4.3
+ dev: true
+ engines:
+ node: '>= 6.9.0'
+ peerDependencies:
+ webpack: ^4.4.0
+ resolution:
+ integrity: sha512-MNpRGbNA52q6U92i0qbVpQNsgk7LExy41MdAlG84FeytfDOtRIf/mCHdEgG8rpTKOaNKiqUnZdlptF469hxqOw==
+ /minimalistic-assert/1.0.1:
+ dev: true
+ resolution:
+ integrity: sha512-UtJcAD4yEaGtjPezWuO9wC4nwUnVH/8/Im3yEHQP4b67cXlD/Qr9hdITCU1xDbSEXg2XKNaP8jsReV7vQd00/A==
+ /minimalistic-crypto-utils/1.0.1:
+ dev: true
+ resolution:
+ integrity: sha1-9sAMHAsIIkblxNmd+4x8CDsrWCo=
+ /minimatch/3.0.4:
+ dependencies:
+ brace-expansion: 1.1.11
+ dev: true
+ resolution:
+ integrity: sha512-yJHVQEhyqPLUTgt9B83PXu6W3rx4MvvHvSUvToogpwoGDOUQ+yDrR0HRot+yOCdCO7u4hX3pWft6kWBBcqh0UA==
+ /minimist/0.0.10:
+ dev: true
+ resolution:
+ integrity: sha1-3j+YVD2/lggr5IrRoMfNqDYwHc8=
+ /minimist/0.0.8:
+ dev: true
+ resolution:
+ integrity: sha1-hX/Kv8M5fSYluCKCYuhqp6ARsF0=
+ /minimist/1.2.0:
+ dev: true
+ resolution:
+ integrity: sha1-o1AIsg9BOD7sH7kU9M1d95omQoQ=
+ /minipass-collect/1.0.2:
+ dependencies:
+ minipass: 3.1.1
+ dev: true
+ engines:
+ node: '>= 8'
+ resolution:
+ integrity: sha512-6T6lH0H8OG9kITm/Jm6tdooIbogG9e0tLgpY6mphXSm/A9u8Nq1ryBG+Qspiub9LjWlBPsPS3tWQ/Botq4FdxA==
+ /minipass-flush/1.0.5:
+ dependencies:
+ minipass: 3.1.1
+ dev: true
+ engines:
+ node: '>= 8'
+ resolution:
+ integrity: sha512-JmQSYYpPUqX5Jyn1mXaRwOda1uQ8HP5KAT/oDSLCzt1BYRhQU0/hDtsB1ufZfEEzMZ9aAVmsBw8+FWsIXlClWw==
+ /minipass-pipeline/1.2.2:
+ dependencies:
+ minipass: 3.1.1
+ dev: true
+ engines:
+ node: '>=8'
+ resolution:
+ integrity: sha512-3JS5A2DKhD2g0Gg8x3yamO0pj7YeKGwVlDS90pF++kxptwx/F+B//roxf9SqYil5tQo65bijy+dAuAFZmYOouA==
+ /minipass/3.1.1:
+ dependencies:
+ yallist: 4.0.0
+ dev: true
+ engines:
+ node: '>=8'
+ resolution:
+ integrity: sha512-UFqVihv6PQgwj8/yTGvl9kPz7xIAY+R5z6XYjRInD3Gk3qx6QGSD6zEcpeG4Dy/lQnv1J6zv8ejV90hyYIKf3w==
+ /mississippi/3.0.0:
+ dependencies:
+ concat-stream: 1.6.2
+ duplexify: 3.7.1
+ end-of-stream: 1.4.4
+ flush-write-stream: 1.1.1
+ from2: 2.3.0
+ parallel-transform: 1.2.0
+ pump: 3.0.0
+ pumpify: 1.5.1
+ stream-each: 1.2.3
+ through2: 2.0.5
+ dev: true
+ engines:
+ node: '>=4.0.0'
+ resolution:
+ integrity: sha512-x471SsVjUtBRtcvd4BzKE9kFC+/2TeWgKCgw0bZcw1b9l2X3QX5vCWgF+KaZaYm87Ss//rHnWryupDrgLvmSkA==
+ /mixin-deep/1.3.2:
+ dependencies:
+ for-in: 1.0.2
+ is-extendable: 1.0.1
+ dev: true
+ engines:
+ node: '>=0.10.0'
+ resolution:
+ integrity: sha512-WRoDn//mXBiJ1H40rqa3vH0toePwSsGb45iInWlTySa+Uu4k3tYUSxa2v1KqAiLtvlrSzaExqS1gtk96A9zvEA==
+ /mixin-object/2.0.1:
+ dependencies:
+ for-in: 0.1.8
+ is-extendable: 0.1.1
+ dev: true
+ engines:
+ node: '>=0.10.0'
+ resolution:
+ integrity: sha1-T7lJRB2rGCVA8f4DW6YOGUel5X4=
+ /mkdirp/0.5.1:
+ dependencies:
+ minimist: 0.0.8
+ dev: true
+ hasBin: true
+ resolution:
+ integrity: sha1-MAV0OOrGz3+MR2fzhkjWaX11yQM=
+ /move-concurrently/1.0.1:
+ dependencies:
+ aproba: 1.2.0
+ copy-concurrently: 1.0.5
+ fs-write-stream-atomic: 1.0.10
+ mkdirp: 0.5.1
+ rimraf: 2.7.1
+ run-queue: 1.0.3
+ dev: true
+ resolution:
+ integrity: sha1-viwAX9oy4LKa8fBdfEszIUxwH5I=
+ /ms/2.0.0:
+ dev: true
+ resolution:
+ integrity: sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=
+ /ms/2.1.1:
+ dev: true
+ resolution:
+ integrity: sha512-tgp+dl5cGk28utYktBsrFqA7HKgrhgPsg6Z/EfhWI4gl1Hwq8B/GmY/0oXZ6nF8hDVesS/FpnYaD/kOWhYQvyg==
+ /ms/2.1.2:
+ dev: true
+ resolution:
+ integrity: sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==
+ /multicast-dns-service-types/1.1.0:
+ dev: true
+ resolution:
+ integrity: sha1-iZ8R2WhuXgXLkbNdXw5jt3PPyQE=
+ /multicast-dns/6.2.3:
+ dependencies:
+ dns-packet: 1.3.1
+ thunky: 1.1.0
+ dev: true
+ hasBin: true
+ resolution:
+ integrity: sha512-ji6J5enbMyGRHIAkAOu3WdV8nggqviKCEKtXcOqfphZZtQrmHKycfynJ2V7eVPUA4NhJ6V7Wf4TmGbTwKE9B6g==
+ /mute-stream/0.0.7:
+ dev: true
+ resolution:
+ integrity: sha1-MHXOk7whuPq0PhvE2n6BFe0ee6s=
+ /mute-stream/0.0.8:
+ dev: true
+ resolution:
+ integrity: sha512-nnbWWOkoWyUsTjKrhgD0dcz22mdkSnpYqbEjIm2nhwhuxlSkpywJmBo8h0ZqJdkp73mb90SssHkN4rsRaBAfAA==
+ /nan/2.14.0:
+ dev: true
+ optional: true
+ resolution:
+ integrity: sha512-INOFj37C7k3AfaNTtX8RhsTw7qRy7eLET14cROi9+5HAVbbHuIWUHEauBv5qT4Av2tWasiTY1Jw6puUNqRJXQg==
+ /nanomatch/1.2.13:
+ dependencies:
+ arr-diff: 4.0.0
+ array-unique: 0.3.2
+ define-property: 2.0.2
+ extend-shallow: 3.0.2
+ fragment-cache: 0.2.1
+ is-windows: 1.0.2
+ kind-of: 6.0.2
+ object.pick: 1.3.0
+ regex-not: 1.0.2
+ snapdragon: 0.8.2
+ to-regex: 3.0.2
+ dev: true
+ engines:
+ node: '>=0.10.0'
+ resolution:
+ integrity: sha512-fpoe2T0RbHwBTBUOftAfBPaDEi06ufaUai0mE6Yn1kacc3SnTErfb/h+X94VXzI64rKFHYImXSvdwGGCmwOqCA==
+ /natural-compare/1.4.0:
+ dev: true
+ resolution:
+ integrity: sha1-Sr6/7tdUHywnrPspvbvRXI1bpPc=
+ /negotiator/0.6.2:
+ dev: true
+ engines:
+ node: '>= 0.6'
+ resolution:
+ integrity: sha512-hZXc7K2e+PgeI1eDBe/10Ard4ekbfrrqG8Ep+8Jmf4JID2bNg7NvCPOZN+kfF574pFQI7mum2AUqDidoKqcTOw==
+ /neo-async/2.6.1:
+ dev: true
+ resolution:
+ integrity: sha512-iyam8fBuCUpWeKPGpaNMetEocMt364qkCsfL9JuhjXX6dRnguRVOfk2GZaDpPjcOKiiXCPINZC1GczQ7iTq3Zw==
+ /next-tick/1.0.0:
+ dev: true
+ resolution:
+ integrity: sha1-yobR/ogoFpsBICCOPchCS524NCw=
+ /nice-try/1.0.5:
+ dev: true
+ resolution:
+ integrity: sha512-1nh45deeb5olNY7eX82BkPO7SSxR5SSYJiPTrTdFUVYwAl8CKMA5N9PjTYkHiRjisVcxcQ1HXdLhx2qxxJzLNQ==
+ /no-case/2.3.2:
+ dependencies:
+ lower-case: 1.1.4
+ dev: true
+ resolution:
+ integrity: sha512-rmTZ9kz+f3rCvK2TD1Ue/oZlns7OGoIWP4fc3llxxRXlOkHKoWPPWJOfFYpITabSow43QJbRIoHQXtt10VldyQ==
+ /node-forge/0.9.0:
+ dev: true
+ engines:
+ node: '>= 4.5.0'
+ resolution:
+ integrity: sha512-7ASaDa3pD+lJ3WvXFsxekJQelBKRpne+GOVbLbtHYdd7pFspyeuJHnWfLplGf3SwKGbfs/aYl5V/JCIaHVUKKQ==
+ /node-int64/0.4.0:
+ dev: true
+ resolution:
+ integrity: sha1-h6kGXNs1XTGC2PlM4RGIuCXGijs=
+ /node-libs-browser/2.2.1:
+ dependencies:
+ assert: 1.5.0
+ browserify-zlib: 0.2.0
+ buffer: 4.9.2
+ console-browserify: 1.2.0
+ constants-browserify: 1.0.0
+ crypto-browserify: 3.12.0
+ domain-browser: 1.2.0
+ events: 3.0.0
+ https-browserify: 1.0.0
+ os-browserify: 0.3.0
+ path-browserify: 0.0.1
+ process: 0.11.10
+ punycode: 1.4.1
+ querystring-es3: 0.2.1
+ readable-stream: 2.3.7
+ stream-browserify: 2.0.2
+ stream-http: 2.8.3
+ string_decoder: 1.3.0
+ timers-browserify: 2.0.11
+ tty-browserify: 0.0.0
+ url: 0.11.0
+ util: 0.11.1
+ vm-browserify: 1.1.2
+ dev: true
+ resolution:
+ integrity: sha512-h/zcD8H9kaDZ9ALUWwlBUDo6TKF8a7qBSCSEGfjTVIYeqsioSKaAX+BN7NgiMGp6iSIXZ3PxgCu8KS3b71YK5Q==
+ /node-modules-regexp/1.0.0:
+ dev: true
+ engines:
+ node: '>=0.10.0'
+ resolution:
+ integrity: sha1-jZ2+KJZKSsVxLpExZCEHxx6Q7EA=
+ /node-notifier/5.4.3:
+ dependencies:
+ growly: 1.3.0
+ is-wsl: 1.1.0
+ semver: 5.7.1
+ shellwords: 0.1.1
+ which: 1.3.1
+ dev: true
+ resolution:
+ integrity: sha512-M4UBGcs4jeOK9CjTsYwkvH6/MzuUmGCyTW+kCY7uO+1ZVr0+FHGdPdIf5CCLqAaxnRrWidyoQlNkMIIVwbKB8Q==
+ /node-releases/1.1.44:
+ dependencies:
+ semver: 6.3.0
+ dev: true
+ resolution:
+ integrity: sha512-NwbdvJyR7nrcGrXvKAvzc5raj/NkoJudkarh2yIpJ4t0NH4aqjUDz/486P+ynIW5eokKOfzGNRdYoLfBlomruw==
+ /normalize-package-data/2.5.0:
+ dependencies:
+ hosted-git-info: 2.8.5
+ resolve: 1.14.2
+ semver: 5.7.1
+ validate-npm-package-license: 3.0.4
+ dev: true
+ resolution:
+ integrity: sha512-/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA==
+ /normalize-path/2.1.1:
+ dependencies:
+ remove-trailing-separator: 1.1.0
+ dev: true
+ engines:
+ node: '>=0.10.0'
+ resolution:
+ integrity: sha1-GrKLVW4Zg2Oowab35vogE3/mrtk=
+ /normalize-path/3.0.0:
+ dev: true
+ engines:
+ node: '>=0.10.0'
+ resolution:
+ integrity: sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==
+ /normalize-range/0.1.2:
+ dev: true
+ engines:
+ node: '>=0.10.0'
+ resolution:
+ integrity: sha1-LRDAa9/TEuqXd2laTShDlFa3WUI=
+ /normalize-url/1.9.1:
+ dependencies:
+ object-assign: 4.1.1
+ prepend-http: 1.0.4
+ query-string: 4.3.4
+ sort-keys: 1.1.2
+ dev: true
+ engines:
+ node: '>=4'
+ resolution:
+ integrity: sha1-LMDWazHqIwNkWENuNiDYWVTGbDw=
+ /normalize-url/3.3.0:
+ dev: true
+ engines:
+ node: '>=6'
+ resolution:
+ integrity: sha512-U+JJi7duF1o+u2pynbp2zXDW2/PADgC30f0GsHZtRh+HOcXHnw137TrNlyxxRvWW5fjKd3bcLHPxofWuCjaeZg==
+ /npm-run-path/2.0.2:
+ dependencies:
+ path-key: 2.0.1
+ dev: true
+ engines:
+ node: '>=4'
+ resolution:
+ integrity: sha1-NakjLfo11wZ7TLLd8jV7GHFTbF8=
+ /nth-check/1.0.2:
+ dependencies:
+ boolbase: 1.0.0
+ dev: true
+ resolution:
+ integrity: sha512-WeBOdju8SnzPN5vTUJYxYUxLeXpCaVP5i5e0LF8fg7WORF2Wd7wFX/pk0tYZk7s8T+J7VLy0Da6J1+wCT0AtHg==
+ /num2fraction/1.2.2:
+ dev: true
+ resolution:
+ integrity: sha1-b2gragJ6Tp3fpFZM0lidHU5mnt4=
+ /number-is-nan/1.0.1:
+ dev: true
+ engines:
+ node: '>=0.10.0'
+ resolution:
+ integrity: sha1-CXtgK1NCKlIsGvuHkDGDNpQaAR0=
+ /nwsapi/2.2.0:
+ dev: true
+ resolution:
+ integrity: sha512-h2AatdwYH+JHiZpv7pt/gSX1XoRGb7L/qSIeuqA6GwYoF9w1vP1cw42TO0aI2pNyshRK5893hNSl+1//vHK7hQ==
+ /oauth-sign/0.9.0:
+ dev: true
+ resolution:
+ integrity: sha512-fexhUFFPTGV8ybAtSIGbV6gOkSv8UtRbDBnAyLQw4QPKkgNlsH2ByPGtMUqdWkos6YCRmAqViwgZrJc/mRDzZQ==
+ /object-assign/4.1.1:
+ dev: true
+ engines:
+ node: '>=0.10.0'
+ resolution:
+ integrity: sha1-IQmtx5ZYh8/AXLvUQsrIv7s2CGM=
+ /object-copy/0.1.0:
+ dependencies:
+ copy-descriptor: 0.1.1
+ define-property: 0.2.5
+ kind-of: 3.2.2
+ dev: true
+ engines:
+ node: '>=0.10.0'
+ resolution:
+ integrity: sha1-fn2Fi3gb18mRpBupde04EnVOmYw=
+ /object-hash/1.3.1:
+ dev: true
+ engines:
+ node: '>= 0.10.0'
+ resolution:
+ integrity: sha512-OSuu/pU4ENM9kmREg0BdNrUDIl1heYa4mBZacJc+vVWz4GtAwu7jO8s4AIt2aGRUTqxykpWzI3Oqnsm13tTMDA==
+ /object-inspect/1.7.0:
+ dev: true
+ resolution:
+ integrity: sha512-a7pEHdh1xKIAgTySUGgLMx/xwDZskN1Ud6egYYN3EdRW4ZMPNEDUTF+hwy2LUC+Bl+SyLXANnwz/jyh/qutKUw==
+ /object-is/1.0.2:
+ dev: true
+ engines:
+ node: '>= 0.4'
+ resolution:
+ integrity: sha512-Epah+btZd5wrrfjkJZq1AOB9O6OxUQto45hzFd7lXGrpHPGE0W1k+426yrZV+k6NJOzLNNW/nVsmZdIWsAqoOQ==
+ /object-keys/1.1.1:
+ dev: true
+ engines:
+ node: '>= 0.4'
+ resolution:
+ integrity: sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==
+ /object-path/0.11.4:
+ dev: true
+ engines:
+ node: '>=0.10.0'
+ resolution:
+ integrity: sha1-NwrnUvvzfePqcKhhwju6iRVpGUk=
+ /object-visit/1.0.1:
+ dependencies:
+ isobject: 3.0.1
+ dev: true
+ engines:
+ node: '>=0.10.0'
+ resolution:
+ integrity: sha1-95xEk68MU3e1n+OdOV5BBC3QRbs=
+ /object.assign/4.1.0:
+ dependencies:
+ define-properties: 1.1.3
+ function-bind: 1.1.1
+ has-symbols: 1.0.1
+ object-keys: 1.1.1
+ dev: true
+ engines:
+ node: '>= 0.4'
+ resolution:
+ integrity: sha512-exHJeq6kBKj58mqGyTQ9DFvrZC/eR6OwxzoM9YRoGBqrXYonaFyGiFMuc9VZrXf7DarreEwMpurG3dd+CNyW5w==
+ /object.entries/1.1.1:
+ dependencies:
+ define-properties: 1.1.3
+ es-abstract: 1.17.0
+ function-bind: 1.1.1
+ has: 1.0.3
+ dev: true
+ engines:
+ node: '>= 0.4'
+ resolution:
+ integrity: sha512-ilqR7BgdyZetJutmDPfXCDffGa0/Yzl2ivVNpbx/g4UeWrCdRnFDUBrKJGLhGieRHDATnyZXWBeCb29k9CJysQ==
+ /object.fromentries/2.0.2:
+ dependencies:
+ define-properties: 1.1.3
+ es-abstract: 1.17.0
+ function-bind: 1.1.1
+ has: 1.0.3
+ dev: true
+ engines:
+ node: '>= 0.4'
+ resolution:
+ integrity: sha512-r3ZiBH7MQppDJVLx6fhD618GKNG40CZYH9wgwdhKxBDDbQgjeWGGd4AtkZad84d291YxvWe7bJGuE65Anh0dxQ==
+ /object.getownpropertydescriptors/2.1.0:
+ dependencies:
+ define-properties: 1.1.3
+ es-abstract: 1.17.0
+ dev: true
+ engines:
+ node: '>= 0.8'
+ resolution:
+ integrity: sha512-Z53Oah9A3TdLoblT7VKJaTDdXdT+lQO+cNpKVnya5JDe9uLvzu1YyY1yFDFrcxrlRgWrEFH0jJtD/IbuwjcEVg==
+ /object.pick/1.3.0:
+ dependencies:
+ isobject: 3.0.1
+ dev: true
+ engines:
+ node: '>=0.10.0'
+ resolution:
+ integrity: sha1-h6EKxMFpS9Lhy/U1kaZhQftd10c=
+ /object.values/1.1.1:
+ dependencies:
+ define-properties: 1.1.3
+ es-abstract: 1.17.0
+ function-bind: 1.1.1
+ has: 1.0.3
+ dev: true
+ engines:
+ node: '>= 0.4'
+ resolution:
+ integrity: sha512-WTa54g2K8iu0kmS/us18jEmdv1a4Wi//BZ/DTVYEcH0XhLM5NYdpDHja3gt57VrZLcNAO2WGA+KpWsDBaHt6eA==
+ /obuf/1.1.2:
+ dev: true
+ resolution:
+ integrity: sha512-PX1wu0AmAdPqOL1mWhqmlOd8kOIZQwGZw6rh7uby9fTc5lhaOWFLX3I6R1hrF9k3zUY40e6igsLGkDXK92LJNg==
+ /on-finished/2.3.0:
+ dependencies:
+ ee-first: 1.1.1
+ dev: true
+ engines:
+ node: '>= 0.8'
+ resolution:
+ integrity: sha1-IPEzZIGwg811M3mSoWlxqi2QaUc=
+ /on-headers/1.0.2:
+ dev: true
+ engines:
+ node: '>= 0.8'
+ resolution:
+ integrity: sha512-pZAE+FJLoyITytdqK0U5s+FIpjN0JP3OzFi/u8Rx+EV5/W+JTWGXG8xFzevE7AjBfDqHv/8vL8qQsIhHnqRkrA==
+ /once/1.4.0:
+ dependencies:
+ wrappy: 1.0.2
+ dev: true
+ resolution:
+ integrity: sha1-WDsap3WWHUsROsF9nFC6753Xa9E=
+ /onetime/2.0.1:
+ dependencies:
+ mimic-fn: 1.2.0
+ dev: true
+ engines:
+ node: '>=4'
+ resolution:
+ integrity: sha1-BnQoIw/WdEOyeUsiu6UotoZ5YtQ=
+ /onetime/5.1.0:
+ dependencies:
+ mimic-fn: 2.1.0
+ dev: true
+ engines:
+ node: '>=6'
+ resolution:
+ integrity: sha512-5NcSkPHhwTVFIQN+TUqXoS5+dlElHXdpAWu9I0HP20YOtIi+aZ0Ct82jdlILDxjLEAWwvm+qj1m6aEtsDVmm6Q==
+ /open/7.0.0:
+ dependencies:
+ is-wsl: 2.1.1
+ dev: true
+ engines:
+ node: '>=8'
+ resolution:
+ integrity: sha512-K6EKzYqnwQzk+/dzJAQSBORub3xlBTxMz+ntpZpH/LyCa1o6KjXhuN+2npAaI9jaSmU3R1Q8NWf4KUWcyytGsQ==
+ /opn/5.5.0:
+ dependencies:
+ is-wsl: 1.1.0
+ dev: true
+ engines:
+ node: '>=4'
+ resolution:
+ integrity: sha512-PqHpggC9bLV0VeWcdKhkpxY+3JTzetLSqTCWL/z/tFIbI6G8JCjondXklT1JinczLz2Xib62sSp0T/gKT4KksA==
+ /optimist/0.6.1:
+ dependencies:
+ minimist: 0.0.10
+ wordwrap: 0.0.3
+ dev: true
+ resolution:
+ integrity: sha1-2j6nRob6IaGaERwybpDrFaAZZoY=
+ /optimize-css-assets-webpack-plugin/5.0.3_webpack@4.41.2:
+ dependencies:
+ cssnano: 4.1.10
+ last-call-webpack-plugin: 3.0.0
+ webpack: 4.41.2_webpack@4.41.2
+ dev: true
+ peerDependencies:
+ webpack: ^4.0.0
+ resolution:
+ integrity: sha512-q9fbvCRS6EYtUKKSwI87qm2IxlyJK5b4dygW1rKUBT6mMDhdG5e5bZT63v6tnJR9F9FB/H5a0HTmtw+laUBxKA==
+ /optionator/0.8.3:
+ dependencies:
+ deep-is: 0.1.3
+ fast-levenshtein: 2.0.6
+ levn: 0.3.0
+ prelude-ls: 1.1.2
+ type-check: 0.3.2
+ word-wrap: 1.2.3
+ dev: true
+ engines:
+ node: '>= 0.8.0'
+ resolution:
+ integrity: sha512-+IW9pACdk3XWmmTXG8m3upGUJst5XRGzxMRjXzAuJ1XnIFNvfhjjIuYkDvysnPQ7qzqVzLt78BCruntqRhWQbA==
+ /original/1.0.2:
+ dependencies:
+ url-parse: 1.4.7
+ dev: true
+ resolution:
+ integrity: sha512-hyBVl6iqqUOJ8FqRe+l/gS8H+kKYjrEndd5Pm1MfBtsEKA038HkkdbAl/72EAXGyonD/PFsvmVG+EvcIpliMBg==
+ /os-browserify/0.3.0:
+ dev: true
+ resolution:
+ integrity: sha1-hUNzx/XCMVkU/Jv8a9gjj92h7Cc=
+ /os-locale/3.1.0:
+ dependencies:
+ execa: 1.0.0
+ lcid: 2.0.0
+ mem: 4.3.0
+ dev: true
+ engines:
+ node: '>=6'
+ resolution:
+ integrity: sha512-Z8l3R4wYWM40/52Z+S265okfFj8Kt2cC2MKY+xNi3kFs+XGI7WXu/I309QQQYbRW4ijiZ+yxs9pqEhJh0DqW3Q==
+ /os-tmpdir/1.0.2:
+ dev: true
+ engines:
+ node: '>=0.10.0'
+ resolution:
+ integrity: sha1-u+Z0BseaqFxc/sdm/lc0VV36EnQ=
+ /p-defer/1.0.0:
+ dev: true
+ engines:
+ node: '>=4'
+ resolution:
+ integrity: sha1-n26xgvbJqozXQwBKfU+WsZaw+ww=
+ /p-each-series/1.0.0:
+ dependencies:
+ p-reduce: 1.0.0
+ dev: true
+ engines:
+ node: '>=4'
+ resolution:
+ integrity: sha1-kw89Et0fUOdDRFeiLNbwSsatf3E=
+ /p-finally/1.0.0:
+ dev: true
+ engines:
+ node: '>=4'
+ resolution:
+ integrity: sha1-P7z7FbiZpEEjs0ttzBi3JDNqLK4=
+ /p-is-promise/2.1.0:
+ dev: true
+ engines:
+ node: '>=6'
+ resolution:
+ integrity: sha512-Y3W0wlRPK8ZMRbNq97l4M5otioeA5lm1z7bkNkxCka8HSPjR0xRWmpCmc9utiaLP9Jb1eD8BgeIxTW4AIF45Pg==
+ /p-limit/1.3.0:
+ dependencies:
+ p-try: 1.0.0
+ dev: true
+ engines:
+ node: '>=4'
+ resolution:
+ integrity: sha512-vvcXsLAJ9Dr5rQOPk7toZQZJApBl2K4J6dANSsEuh6QI41JYcsS/qhTGa9ErIUUgK3WNQoJYvylxvjqmiqEA9Q==
+ /p-limit/2.2.2:
+ dependencies:
+ p-try: 2.2.0
+ dev: true
+ engines:
+ node: '>=6'
+ resolution:
+ integrity: sha512-WGR+xHecKTr7EbUEhyLSh5Dube9JtdiG78ufaeLxTgpudf/20KqyMioIUZJAezlTIi6evxuoUs9YXc11cU+yzQ==
+ /p-locate/2.0.0:
+ dependencies:
+ p-limit: 1.3.0
+ dev: true
+ engines:
+ node: '>=4'
+ resolution:
+ integrity: sha1-IKAQOyIqcMj9OcwuWAaA893l7EM=
+ /p-locate/3.0.0:
+ dependencies:
+ p-limit: 2.2.2
+ dev: true
+ engines:
+ node: '>=6'
+ resolution:
+ integrity: sha512-x+12w/To+4GFfgJhBEpiDcLozRJGegY+Ei7/z0tSLkMmxGZNybVMSfWj9aJn8Z5Fc7dBUNJOOVgPv2H7IwulSQ==
+ /p-locate/4.1.0:
+ dependencies:
+ p-limit: 2.2.2
+ dev: true
+ engines:
+ node: '>=8'
+ resolution:
+ integrity: sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==
+ /p-map/2.1.0:
+ dev: true
+ engines:
+ node: '>=6'
+ resolution:
+ integrity: sha512-y3b8Kpd8OAN444hxfBbFfj1FY/RjtTd8tzYwhUqNYXx0fXx2iX4maP4Qr6qhIKbQXI02wTLAda4fYUbDagTUFw==
+ /p-map/3.0.0:
+ dependencies:
+ aggregate-error: 3.0.1
+ dev: true
+ engines:
+ node: '>=8'
+ resolution:
+ integrity: sha512-d3qXVTF/s+W+CdJ5A29wywV2n8CQQYahlgz2bFiA+4eVNJbHJodPZ+/gXwPGh0bOqA+j8S+6+ckmvLGPk1QpxQ==
+ /p-queue/2.4.2:
+ dev: true
+ engines:
+ node: '>=4'
+ resolution:
+ integrity: sha512-n8/y+yDJwBjoLQe1GSJbbaYQLTI7QHNZI2+rpmCDbe++WLf9HC3gf6iqj5yfPAV71W4UF3ql5W1+UBPXoXTxng==
+ /p-reduce/1.0.0:
+ dev: true
+ engines:
+ node: '>=4'
+ resolution:
+ integrity: sha1-GMKw3ZNqRpClKfgjH1ig/bakffo=
+ /p-retry/3.0.1:
+ dependencies:
+ retry: 0.12.0
+ dev: true
+ engines:
+ node: '>=6'
+ resolution:
+ integrity: sha512-XE6G4+YTTkT2a0UWb2kjZe8xNwf8bIbnqpc/IS/idOBVhyves0mK5OJgeocjx7q5pvX/6m23xuzVPYT1uGM73w==
+ /p-try/1.0.0:
+ dev: true
+ engines:
+ node: '>=4'
+ resolution:
+ integrity: sha1-y8ec26+P1CKOE/Yh8rGiN8GyB7M=
+ /p-try/2.2.0:
+ dev: true
+ engines:
+ node: '>=6'
+ resolution:
+ integrity: sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==
+ /pako/1.0.10:
+ dev: true
+ resolution:
+ integrity: sha512-0DTvPVU3ed8+HNXOu5Bs+o//Mbdj9VNQMUOe9oKCwh8l0GNwpTDMKCWbRjgtD291AWnkAgkqA/LOnQS8AmS1tw==
+ /parallel-transform/1.2.0:
+ dependencies:
+ cyclist: 1.0.1
+ inherits: 2.0.4
+ readable-stream: 2.3.7
+ dev: true
+ resolution:
+ integrity: sha512-P2vSmIu38uIlvdcU7fDkyrxj33gTUy/ABO5ZUbGowxNCopBq/OoD42bP4UmMrJoPyk4Uqf0mu3mtWBhHCZD8yg==
+ /param-case/2.1.1:
+ dependencies:
+ no-case: 2.3.2
+ dev: true
+ resolution:
+ integrity: sha1-35T9jPZTHs915r75oIWPvHK+Ikc=
+ /parent-module/1.0.1:
+ dependencies:
+ callsites: 3.1.0
+ dev: true
+ engines:
+ node: '>=6'
+ resolution:
+ integrity: sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==
+ /parse-asn1/5.1.5:
+ dependencies:
+ asn1.js: 4.10.1
+ browserify-aes: 1.2.0
+ create-hash: 1.2.0
+ evp_bytestokey: 1.0.3
+ pbkdf2: 3.0.17
+ safe-buffer: 5.2.0
+ dev: true
+ resolution:
+ integrity: sha512-jkMYn1dcJqF6d5CpU689bq7w/b5ALS9ROVSpQDPrZsqqesUJii9qutvoT5ltGedNXMO2e16YUWIghG9KxaViTQ==
+ /parse-json/2.2.0:
+ dependencies:
+ error-ex: 1.3.2
+ dev: true
+ engines:
+ node: '>=0.10.0'
+ resolution:
+ integrity: sha1-9ID0BDTvgHQfhGkJn43qGPVaTck=
+ /parse-json/4.0.0:
+ dependencies:
+ error-ex: 1.3.2
+ json-parse-better-errors: 1.0.2
+ dev: true
+ engines:
+ node: '>=4'
+ resolution:
+ integrity: sha1-vjX1Qlvh9/bHRxhPmKeIy5lHfuA=
+ /parse-json/5.0.0:
+ dependencies:
+ '@babel/code-frame': 7.5.5
+ error-ex: 1.3.2
+ json-parse-better-errors: 1.0.2
+ lines-and-columns: 1.1.6
+ dev: true
+ engines:
+ node: '>=8'
+ resolution:
+ integrity: sha512-OOY5b7PAEFV0E2Fir1KOkxchnZNCdowAJgQ5NuxjpBKTRP3pQhwkrkxqQjeoKJ+fO7bCpmIZaogI4eZGDMEGOw==
+ /parse5/4.0.0:
+ dev: true
+ resolution:
+ integrity: sha512-VrZ7eOd3T1Fk4XWNXMgiGBK/z0MG48BWG2uQNU4I72fkQuKUTZpl+u9k+CxEG0twMVzSmXEEz12z5Fnw1jIQFA==
+ /parse5/5.1.0:
+ dev: true
+ resolution:
+ integrity: sha512-fxNG2sQjHvlVAYmzBZS9YlDp6PTSSDwa98vkD4QgVDDCAo84z5X1t5XyJQ62ImdLXx5NdIIfihey6xpum9/gRQ==
+ /parseurl/1.3.3:
+ dev: true
+ engines:
+ node: '>= 0.8'
+ resolution:
+ integrity: sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==
+ /pascalcase/0.1.1:
+ dev: true
+ engines:
+ node: '>=0.10.0'
+ resolution:
+ integrity: sha1-s2PlXoAGym/iF4TS2yK9FdeRfxQ=
+ /path-browserify/0.0.1:
+ dev: true
+ resolution:
+ integrity: sha512-BapA40NHICOS+USX9SN4tyhq+A2RrN/Ws5F0Z5aMHDp98Fl86lX8Oti8B7uN93L4Ifv4fHOEA+pQw87gmMO/lQ==
+ /path-dirname/1.0.2:
+ dev: true
+ resolution:
+ integrity: sha1-zDPSTVJeCZpTiMAzbG4yuRYGCeA=
+ /path-exists/2.1.0:
+ dependencies:
+ pinkie-promise: 2.0.1
+ dev: true
+ engines:
+ node: '>=0.10.0'
+ resolution:
+ integrity: sha1-D+tsZPD8UY2adU3V77YscCJ2H0s=
+ /path-exists/3.0.0:
+ dev: true
+ engines:
+ node: '>=4'
+ resolution:
+ integrity: sha1-zg6+ql94yxiSXqfYENe1mwEP1RU=
+ /path-exists/4.0.0:
+ dev: true
+ engines:
+ node: '>=8'
+ resolution:
+ integrity: sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==
+ /path-is-absolute/1.0.1:
+ dev: true
+ engines:
+ node: '>=0.10.0'
+ resolution:
+ integrity: sha1-F0uSaHNVNP+8es5r9TpanhtcX18=
+ /path-is-inside/1.0.2:
+ dev: true
+ resolution:
+ integrity: sha1-NlQX3t5EQw0cEa9hAn+s8HS9/FM=
+ /path-key/2.0.1:
+ dev: true
+ engines:
+ node: '>=4'
+ resolution:
+ integrity: sha1-QRyttXTFoUDTpLGRDUDYDMn0C0A=
+ /path-key/3.1.1:
+ dev: true
+ engines:
+ node: '>=8'
+ resolution:
+ integrity: sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==
+ /path-parse/1.0.6:
+ dev: true
+ resolution:
+ integrity: sha512-GSmOT2EbHrINBf9SR7CDELwlJ8AENk3Qn7OikK4nFYAu3Ote2+JYNVvkpAEQm3/TLNEJFD/xZJjzyxg3KBWOzw==
+ /path-to-regexp/0.1.7:
+ dev: true
+ resolution:
+ integrity: sha1-32BBeABfUi8V60SQ5yR6G/qmf4w=
+ /path-type/2.0.0:
+ dependencies:
+ pify: 2.3.0
+ dev: true
+ engines:
+ node: '>=4'
+ resolution:
+ integrity: sha1-8BLMuEFbcJb8LaoQVMPXI4lZTHM=
+ /path-type/3.0.0:
+ dependencies:
+ pify: 3.0.0
+ dev: true
+ engines:
+ node: '>=4'
+ resolution:
+ integrity: sha512-T2ZUsdZFHgA3u4e5PfPbjd7HDDpxPnQb5jN0SrDsjNSuVXHJqtwTnWqG0B1jZrgmJ/7lj1EmVIByWt1gxGkWvg==
+ /path-type/4.0.0:
+ dev: true
+ engines:
+ node: '>=8'
+ resolution:
+ integrity: sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==
+ /pbkdf2/3.0.17:
+ dependencies:
+ create-hash: 1.2.0
+ create-hmac: 1.1.7
+ ripemd160: 2.0.2
+ safe-buffer: 5.2.0
+ sha.js: 2.4.11
+ dev: true
+ engines:
+ node: '>=0.12'
+ resolution:
+ integrity: sha512-U/il5MsrZp7mGg3mSQfn742na2T+1/vHDCG5/iTI3X9MKUuYUZVLQhyRsg06mCgDBTd57TxzgZt7P+fYfjRLtA==
+ /pegjs/0.10.0:
+ dev: true
+ engines:
+ node: '>=0.10'
+ hasBin: true
+ resolution:
+ integrity: sha1-z4uvrm7d/0tafvsYUmnqr0YQ3b0=
+ /performance-now/2.1.0:
+ dev: true
+ resolution:
+ integrity: sha1-Ywn04OX6kT7BxpMHrjZLSzd8nns=
+ /pify/2.3.0:
+ dev: true
+ engines:
+ node: '>=0.10.0'
+ resolution:
+ integrity: sha1-7RQaasBDqEnqWISY59yosVMw6Qw=
+ /pify/3.0.0:
+ dev: true
+ engines:
+ node: '>=4'
+ resolution:
+ integrity: sha1-5aSs0sEB/fPZpNB/DbxNtJ3SgXY=
+ /pify/4.0.1:
+ dev: true
+ engines:
+ node: '>=6'
+ resolution:
+ integrity: sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g==
+ /pinkie-promise/2.0.1:
+ dependencies:
+ pinkie: 2.0.4
+ dev: true
+ engines:
+ node: '>=0.10.0'
+ resolution:
+ integrity: sha1-ITXW36ejWMBprJsXh3YogihFD/o=
+ /pinkie/2.0.4:
+ dev: true
+ engines:
+ node: '>=0.10.0'
+ resolution:
+ integrity: sha1-clVrgM+g1IqXToDnckjoDtT3+HA=
+ /pirates/4.0.1:
+ dependencies:
+ node-modules-regexp: 1.0.0
+ dev: true
+ engines:
+ node: '>= 6'
+ resolution:
+ integrity: sha512-WuNqLTbMI3tmfef2TKxlQmAiLHKtFhlsCZnPIpuv2Ow0RDVO8lfy1Opf4NUzlMXLjPl+Men7AuVdX6TA+s+uGA==
+ /pkg-dir/1.0.0:
+ dependencies:
+ find-up: 1.1.2
+ dev: true
+ engines:
+ node: '>=0.10.0'
+ resolution:
+ integrity: sha1-ektQio1bstYp1EcFb/TpyTFM89Q=
+ /pkg-dir/2.0.0:
+ dependencies:
+ find-up: 2.1.0
+ dev: true
+ engines:
+ node: '>=4'
+ resolution:
+ integrity: sha1-9tXREJ4Z1j7fQo4L1X4Sd3YVM0s=
+ /pkg-dir/3.0.0:
+ dependencies:
+ find-up: 3.0.0
+ dev: true
+ engines:
+ node: '>=6'
+ resolution:
+ integrity: sha512-/E57AYkoeQ25qkxMj5PBOVgF8Kiu/h7cYS30Z5+R7WaiCCBfLq58ZI/dSeaEKb9WVJV5n/03QwrN3IeWIFllvw==
+ /pkg-dir/4.2.0:
+ dependencies:
+ find-up: 4.1.0
+ dev: true
+ engines:
+ node: '>=8'
+ resolution:
+ integrity: sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ==
+ /pkg-up/2.0.0:
+ dependencies:
+ find-up: 2.1.0
+ dev: true
+ engines:
+ node: '>=4'
+ resolution:
+ integrity: sha1-yBmscoBZpGHKscOImivjxJoATX8=
+ /pn/1.1.0:
+ dev: true
+ resolution:
+ integrity: sha512-2qHaIQr2VLRFoxe2nASzsV6ef4yOOH+Fi9FBOVH6cqeSgUnoyySPZkxzLuzd+RYOQTRpROA0ztTMqxROKSb/nA==
+ /pnp-webpack-plugin/1.5.0_typescript@3.7.4:
+ dependencies:
+ ts-pnp: 1.1.5_typescript@3.7.4
+ dev: true
+ engines:
+ node: '>=6'
+ peerDependencies:
+ typescript: '*'
+ resolution:
+ integrity: sha512-jd9olUr9D7do+RN8Wspzhpxhgp1n6Vd0NtQ4SFkmIACZoEL1nkyAdW9Ygrinjec0vgDcWjscFQQ1gDW8rsfKTg==
+ /portfinder/1.0.25:
+ dependencies:
+ async: 2.6.3
+ debug: 3.2.6
+ mkdirp: 0.5.1
+ dev: true
+ engines:
+ node: '>= 0.12.0'
+ resolution:
+ integrity: sha512-6ElJnHBbxVA1XSLgBp7G1FiCkQdlqGzuF7DswL5tcea+E8UpuvPU7beVAjjRwCioTS9ZluNbu+ZyRvgTsmqEBg==
+ /posix-character-classes/0.1.1:
+ dev: true
+ engines:
+ node: '>=0.10.0'
+ resolution:
+ integrity: sha1-AerA/jta9xoqbAL+q7jB/vfgDqs=
+ /postcss-attribute-case-insensitive/4.0.1:
+ dependencies:
+ postcss: 7.0.26
+ postcss-selector-parser: 5.0.0
+ dev: true
+ resolution:
+ integrity: sha512-L2YKB3vF4PetdTIthQVeT+7YiSzMoNMLLYxPXXppOOP7NoazEAy45sh2LvJ8leCQjfBcfkYQs8TtCcQjeZTp8A==
+ /postcss-browser-comments/3.0.0_browserslist@4.8.3:
+ dependencies:
+ browserslist: 4.8.3
+ postcss: 7.0.26
+ dev: true
+ engines:
+ node: '>=8.0.0'
+ peerDependencies:
+ browserslist: ^4
+ resolution:
+ integrity: sha512-qfVjLfq7HFd2e0HW4s1dvU8X080OZdG46fFbIBFjW7US7YPDcWfRvdElvwMJr2LI6hMmD+7LnH2HcmXTs+uOig==
+ /postcss-calc/7.0.1:
+ dependencies:
+ css-unit-converter: 1.1.1
+ postcss: 7.0.26
+ postcss-selector-parser: 5.0.0
+ postcss-value-parser: 3.3.1
+ dev: true
+ resolution:
+ integrity: sha512-oXqx0m6tb4N3JGdmeMSc/i91KppbYsFZKdH0xMOqK8V1rJlzrKlTdokz8ozUXLVejydRN6u2IddxpcijRj2FqQ==
+ /postcss-color-functional-notation/2.0.1:
+ dependencies:
+ postcss: 7.0.26
+ postcss-values-parser: 2.0.1
+ dev: true
+ engines:
+ node: '>=6.0.0'
+ resolution:
+ integrity: sha512-ZBARCypjEDofW4P6IdPVTLhDNXPRn8T2s1zHbZidW6rPaaZvcnCS2soYFIQJrMZSxiePJ2XIYTlcb2ztr/eT2g==
+ /postcss-color-gray/5.0.0:
+ dependencies:
+ '@csstools/convert-colors': 1.4.0
+ postcss: 7.0.26
+ postcss-values-parser: 2.0.1
+ dev: true
+ engines:
+ node: '>=6.0.0'
+ resolution:
+ integrity: sha512-q6BuRnAGKM/ZRpfDascZlIZPjvwsRye7UDNalqVz3s7GDxMtqPY6+Q871liNxsonUw8oC61OG+PSaysYpl1bnw==
+ /postcss-color-hex-alpha/5.0.3:
+ dependencies:
+ postcss: 7.0.26
+ postcss-values-parser: 2.0.1
+ dev: true
+ engines:
+ node: '>=6.0.0'
+ resolution:
+ integrity: sha512-PF4GDel8q3kkreVXKLAGNpHKilXsZ6xuu+mOQMHWHLPNyjiUBOr75sp5ZKJfmv1MCus5/DWUGcK9hm6qHEnXYw==
+ /postcss-color-mod-function/3.0.3:
+ dependencies:
+ '@csstools/convert-colors': 1.4.0
+ postcss: 7.0.26
+ postcss-values-parser: 2.0.1
+ dev: true
+ engines:
+ node: '>=6.0.0'
+ resolution:
+ integrity: sha512-YP4VG+xufxaVtzV6ZmhEtc+/aTXH3d0JLpnYfxqTvwZPbJhWqp8bSY3nfNzNRFLgB4XSaBA82OE4VjOOKpCdVQ==
+ /postcss-color-rebeccapurple/4.0.1:
+ dependencies:
+ postcss: 7.0.26
+ postcss-values-parser: 2.0.1
+ dev: true
+ engines:
+ node: '>=6.0.0'
+ resolution:
+ integrity: sha512-aAe3OhkS6qJXBbqzvZth2Au4V3KieR5sRQ4ptb2b2O8wgvB3SJBsdG+jsn2BZbbwekDG8nTfcCNKcSfe/lEy8g==
+ /postcss-colormin/4.0.3:
+ dependencies:
+ browserslist: 4.8.3
+ color: 3.1.2
+ has: 1.0.3
+ postcss: 7.0.26
+ postcss-value-parser: 3.3.1
+ dev: true
+ engines:
+ node: '>=6.9.0'
+ resolution:
+ integrity: sha512-WyQFAdDZpExQh32j0U0feWisZ0dmOtPl44qYmJKkq9xFWY3p+4qnRzCHeNrkeRhwPHz9bQ3mo0/yVkaply0MNw==
+ /postcss-convert-values/4.0.1:
+ dependencies:
+ postcss: 7.0.26
+ postcss-value-parser: 3.3.1
+ dev: true
+ engines:
+ node: '>=6.9.0'
+ resolution:
+ integrity: sha512-Kisdo1y77KUC0Jmn0OXU/COOJbzM8cImvw1ZFsBgBgMgb1iL23Zs/LXRe3r+EZqM3vGYKdQ2YJVQ5VkJI+zEJQ==
+ /postcss-custom-media/7.0.8:
+ dependencies:
+ postcss: 7.0.26
+ dev: true
+ engines:
+ node: '>=6.0.0'
+ resolution:
+ integrity: sha512-c9s5iX0Ge15o00HKbuRuTqNndsJUbaXdiNsksnVH8H4gdc+zbLzr/UasOwNG6CTDpLFekVY4672eWdiiWu2GUg==
+ /postcss-custom-properties/8.0.11:
+ dependencies:
+ postcss: 7.0.26
+ postcss-values-parser: 2.0.1
+ dev: true
+ engines:
+ node: '>=6.0.0'
+ resolution:
+ integrity: sha512-nm+o0eLdYqdnJ5abAJeXp4CEU1c1k+eB2yMCvhgzsds/e0umabFrN6HoTy/8Q4K5ilxERdl/JD1LO5ANoYBeMA==
+ /postcss-custom-selectors/5.1.2:
+ dependencies:
+ postcss: 7.0.26
+ postcss-selector-parser: 5.0.0
+ dev: true
+ engines:
+ node: '>=6.0.0'
+ resolution:
+ integrity: sha512-DSGDhqinCqXqlS4R7KGxL1OSycd1lydugJ1ky4iRXPHdBRiozyMHrdu0H3o7qNOCiZwySZTUI5MV0T8QhCLu+w==
+ /postcss-dir-pseudo-class/5.0.0:
+ dependencies:
+ postcss: 7.0.26
+ postcss-selector-parser: 5.0.0
+ dev: true
+ engines:
+ node: '>=4.0.0'
+ resolution:
+ integrity: sha512-3pm4oq8HYWMZePJY+5ANriPs3P07q+LW6FAdTlkFH2XqDdP4HeeJYMOzn0HYLhRSjBO3fhiqSwwU9xEULSrPgw==
+ /postcss-discard-comments/4.0.2:
+ dependencies:
+ postcss: 7.0.26
+ dev: true
+ engines:
+ node: '>=6.9.0'
+ resolution:
+ integrity: sha512-RJutN259iuRf3IW7GZyLM5Sw4GLTOH8FmsXBnv8Ab/Tc2k4SR4qbV4DNbyyY4+Sjo362SyDmW2DQ7lBSChrpkg==
+ /postcss-discard-duplicates/4.0.2:
+ dependencies:
+ postcss: 7.0.26
+ dev: true
+ engines:
+ node: '>=6.9.0'
+ resolution:
+ integrity: sha512-ZNQfR1gPNAiXZhgENFfEglF93pciw0WxMkJeVmw8eF+JZBbMD7jp6C67GqJAXVZP2BWbOztKfbsdmMp/k8c6oQ==
+ /postcss-discard-empty/4.0.1:
+ dependencies:
+ postcss: 7.0.26
+ dev: true
+ engines:
+ node: '>=6.9.0'
+ resolution:
+ integrity: sha512-B9miTzbznhDjTfjvipfHoqbWKwd0Mj+/fL5s1QOz06wufguil+Xheo4XpOnc4NqKYBCNqqEzgPv2aPBIJLox0w==
+ /postcss-discard-overridden/4.0.1:
+ dependencies:
+ postcss: 7.0.26
+ dev: true
+ engines:
+ node: '>=6.9.0'
+ resolution:
+ integrity: sha512-IYY2bEDD7g1XM1IDEsUT4//iEYCxAmP5oDSFMVU/JVvT7gh+l4fmjciLqGgwjdWpQIdb0Che2VX00QObS5+cTg==
+ /postcss-double-position-gradients/1.0.0:
+ dependencies:
+ postcss: 7.0.26
+ postcss-values-parser: 2.0.1
+ dev: true
+ engines:
+ node: '>=6.0.0'
+ resolution:
+ integrity: sha512-G+nV8EnQq25fOI8CH/B6krEohGWnF5+3A6H/+JEpOncu5dCnkS1QQ6+ct3Jkaepw1NGVqqOZH6lqrm244mCftA==
+ /postcss-env-function/2.0.2:
+ dependencies:
+ postcss: 7.0.26
+ postcss-values-parser: 2.0.1
+ dev: true
+ engines:
+ node: '>=6.0.0'
+ resolution:
+ integrity: sha512-rwac4BuZlITeUbiBq60h/xbLzXY43qOsIErngWa4l7Mt+RaSkT7QBjXVGTcBHupykkblHMDrBFh30zchYPaOUw==
+ /postcss-flexbugs-fixes/4.1.0:
+ dependencies:
+ postcss: 7.0.26
+ dev: true
+ resolution:
+ integrity: sha512-jr1LHxQvStNNAHlgco6PzY308zvLklh7SJVYuWUwyUQncofaAlD2l+P/gxKHOdqWKe7xJSkVLFF/2Tp+JqMSZA==
+ /postcss-focus-visible/4.0.0:
+ dependencies:
+ postcss: 7.0.26
+ dev: true
+ engines:
+ node: '>=6.0.0'
+ resolution:
+ integrity: sha512-Z5CkWBw0+idJHSV6+Bgf2peDOFf/x4o+vX/pwcNYrWpXFrSfTkQ3JQ1ojrq9yS+upnAlNRHeg8uEwFTgorjI8g==
+ /postcss-focus-within/3.0.0:
+ dependencies:
+ postcss: 7.0.26
+ dev: true
+ engines:
+ node: '>=6.0.0'
+ resolution:
+ integrity: sha512-W0APui8jQeBKbCGZudW37EeMCjDeVxKgiYfIIEo8Bdh5SpB9sxds/Iq8SEuzS0Q4YFOlG7EPFulbbxujpkrV2w==
+ /postcss-font-variant/4.0.0:
+ dependencies:
+ postcss: 7.0.26
+ dev: true
+ resolution:
+ integrity: sha512-M8BFYKOvCrI2aITzDad7kWuXXTm0YhGdP9Q8HanmN4EF1Hmcgs1KK5rSHylt/lUJe8yLxiSwWAHdScoEiIxztg==
+ /postcss-gap-properties/2.0.0:
+ dependencies:
+ postcss: 7.0.26
+ dev: true
+ engines:
+ node: '>=6.0.0'
+ resolution:
+ integrity: sha512-QZSqDaMgXCHuHTEzMsS2KfVDOq7ZFiknSpkrPJY6jmxbugUPTuSzs/vuE5I3zv0WAS+3vhrlqhijiprnuQfzmg==
+ /postcss-image-set-function/3.0.1:
+ dependencies:
+ postcss: 7.0.26
+ postcss-values-parser: 2.0.1
+ dev: true
+ engines:
+ node: '>=6.0.0'
+ resolution:
+ integrity: sha512-oPTcFFip5LZy8Y/whto91L9xdRHCWEMs3e1MdJxhgt4jy2WYXfhkng59fH5qLXSCPN8k4n94p1Czrfe5IOkKUw==
+ /postcss-initial/3.0.2:
+ dependencies:
+ lodash.template: 4.5.0
+ postcss: 7.0.26
+ dev: true
+ resolution:
+ integrity: sha512-ugA2wKonC0xeNHgirR4D3VWHs2JcU08WAi1KFLVcnb7IN89phID6Qtg2RIctWbnvp1TM2BOmDtX8GGLCKdR8YA==
+ /postcss-lab-function/2.0.1:
+ dependencies:
+ '@csstools/convert-colors': 1.4.0
+ postcss: 7.0.26
+ postcss-values-parser: 2.0.1
+ dev: true
+ engines:
+ node: '>=6.0.0'
+ resolution:
+ integrity: sha512-whLy1IeZKY+3fYdqQFuDBf8Auw+qFuVnChWjmxm/UhHWqNHZx+B99EwxTvGYmUBqe3Fjxs4L1BoZTJmPu6usVg==
+ /postcss-load-config/2.1.0:
+ dependencies:
+ cosmiconfig: 5.2.1
+ import-cwd: 2.1.0
+ dev: true
+ engines:
+ node: '>= 4'
+ resolution:
+ integrity: sha512-4pV3JJVPLd5+RueiVVB+gFOAa7GWc25XQcMp86Zexzke69mKf6Nx9LRcQywdz7yZI9n1udOxmLuAwTBypypF8Q==
+ /postcss-loader/3.0.0:
+ dependencies:
+ loader-utils: 1.2.3
+ postcss: 7.0.26
+ postcss-load-config: 2.1.0
+ schema-utils: 1.0.0
+ dev: true
+ engines:
+ node: '>= 6'
+ resolution:
+ integrity: sha512-cLWoDEY5OwHcAjDnkyRQzAXfs2jrKjXpO/HQFcc5b5u/r7aa471wdmChmwfnv7x2u840iat/wi0lQ5nbRgSkUA==
+ /postcss-logical/3.0.0:
+ dependencies:
+ postcss: 7.0.26
+ dev: true
+ engines:
+ node: '>=6.0.0'
+ resolution:
+ integrity: sha512-1SUKdJc2vuMOmeItqGuNaC+N8MzBWFWEkAnRnLpFYj1tGGa7NqyVBujfRtgNa2gXR+6RkGUiB2O5Vmh7E2RmiA==
+ /postcss-media-minmax/4.0.0:
+ dependencies:
+ postcss: 7.0.26
+ dev: true
+ engines:
+ node: '>=6.0.0'
+ resolution:
+ integrity: sha512-fo9moya6qyxsjbFAYl97qKO9gyre3qvbMnkOZeZwlsW6XYFsvs2DMGDlchVLfAd8LHPZDxivu/+qW2SMQeTHBw==
+ /postcss-merge-longhand/4.0.11:
+ dependencies:
+ css-color-names: 0.0.4
+ postcss: 7.0.26
+ postcss-value-parser: 3.3.1
+ stylehacks: 4.0.3
+ dev: true
+ engines:
+ node: '>=6.9.0'
+ resolution:
+ integrity: sha512-alx/zmoeXvJjp7L4mxEMjh8lxVlDFX1gqWHzaaQewwMZiVhLo42TEClKaeHbRf6J7j82ZOdTJ808RtN0ZOZwvw==
+ /postcss-merge-rules/4.0.3:
+ dependencies:
+ browserslist: 4.8.3
+ caniuse-api: 3.0.0
+ cssnano-util-same-parent: 4.0.1
+ postcss: 7.0.26
+ postcss-selector-parser: 3.1.1
+ vendors: 1.0.3
+ dev: true
+ engines:
+ node: '>=6.9.0'
+ resolution:
+ integrity: sha512-U7e3r1SbvYzO0Jr3UT/zKBVgYYyhAz0aitvGIYOYK5CPmkNih+WDSsS5tvPrJ8YMQYlEMvsZIiqmn7HdFUaeEQ==
+ /postcss-minify-font-values/4.0.2:
+ dependencies:
+ postcss: 7.0.26
+ postcss-value-parser: 3.3.1
+ dev: true
+ engines:
+ node: '>=6.9.0'
+ resolution:
+ integrity: sha512-j85oO6OnRU9zPf04+PZv1LYIYOprWm6IA6zkXkrJXyRveDEuQggG6tvoy8ir8ZwjLxLuGfNkCZEQG7zan+Hbtg==
+ /postcss-minify-gradients/4.0.2:
+ dependencies:
+ cssnano-util-get-arguments: 4.0.0
+ is-color-stop: 1.1.0
+ postcss: 7.0.26
+ postcss-value-parser: 3.3.1
+ dev: true
+ engines:
+ node: '>=6.9.0'
+ resolution:
+ integrity: sha512-qKPfwlONdcf/AndP1U8SJ/uzIJtowHlMaSioKzebAXSG4iJthlWC9iSWznQcX4f66gIWX44RSA841HTHj3wK+Q==
+ /postcss-minify-params/4.0.2:
+ dependencies:
+ alphanum-sort: 1.0.2
+ browserslist: 4.8.3
+ cssnano-util-get-arguments: 4.0.0
+ postcss: 7.0.26
+ postcss-value-parser: 3.3.1
+ uniqs: 2.0.0
+ dev: true
+ engines:
+ node: '>=6.9.0'
+ resolution:
+ integrity: sha512-G7eWyzEx0xL4/wiBBJxJOz48zAKV2WG3iZOqVhPet/9geefm/Px5uo1fzlHu+DOjT+m0Mmiz3jkQzVHe6wxAWg==
+ /postcss-minify-selectors/4.0.2:
+ dependencies:
+ alphanum-sort: 1.0.2
+ has: 1.0.3
+ postcss: 7.0.26
+ postcss-selector-parser: 3.1.1
+ dev: true
+ engines:
+ node: '>=6.9.0'
+ resolution:
+ integrity: sha512-D5S1iViljXBj9kflQo4YutWnJmwm8VvIsU1GeXJGiG9j8CIg9zs4voPMdQDUmIxetUOh60VilsNzCiAFTOqu3g==
+ /postcss-modules-extract-imports/1.1.0:
+ dependencies:
+ postcss: 6.0.1
+ dev: true
+ resolution:
+ integrity: sha1-thTJcgvmgW6u41+zpfqh26agXds=
+ /postcss-modules-extract-imports/2.0.0:
+ dependencies:
+ postcss: 7.0.26
+ dev: true
+ engines:
+ node: '>= 6'
+ resolution:
+ integrity: sha512-LaYLDNS4SG8Q5WAWqIJgdHPJrDDr/Lv775rMBFUbgjTz6j34lUznACHcdRWroPvXANP2Vj7yNK57vp9eFqzLWQ==
+ /postcss-modules-local-by-default/1.2.0:
+ dependencies:
+ css-selector-tokenizer: 0.7.1
+ postcss: 6.0.1
+ dev: true
+ resolution:
+ integrity: sha1-99gMOYxaOT+nlkRmvRlQCn1hwGk=
+ /postcss-modules-local-by-default/3.0.2:
+ dependencies:
+ icss-utils: 4.1.1
+ postcss: 7.0.26
+ postcss-selector-parser: 6.0.2
+ postcss-value-parser: 4.0.2
+ dev: true
+ engines:
+ node: '>= 6'
+ resolution:
+ integrity: sha512-jM/V8eqM4oJ/22j0gx4jrp63GSvDH6v86OqyTHHUvk4/k1vceipZsaymiZ5PvocqZOl5SFHiFJqjs3la0wnfIQ==
+ /postcss-modules-scope/1.1.0:
+ dependencies:
+ css-selector-tokenizer: 0.7.1
+ postcss: 6.0.1
+ dev: true
+ resolution:
+ integrity: sha1-1upkmUx5+XtipytCb75gVqGUu5A=
+ /postcss-modules-scope/2.1.1:
+ dependencies:
+ postcss: 7.0.26
+ postcss-selector-parser: 6.0.2
+ dev: true
+ engines:
+ node: '>= 6'
+ resolution:
+ integrity: sha512-OXRUPecnHCg8b9xWvldG/jUpRIGPNRka0r4D4j0ESUU2/5IOnpsjfPPmDprM3Ih8CgZ8FXjWqaniK5v4rWt3oQ==
+ /postcss-modules-values/1.3.0:
+ dependencies:
+ icss-replace-symbols: 1.1.0
+ postcss: 6.0.1
+ dev: true
+ resolution:
+ integrity: sha1-7P+p1+GSUYOJ9CrQ6D9yrsRW6iA=
+ /postcss-modules-values/3.0.0:
+ dependencies:
+ icss-utils: 4.1.1
+ postcss: 7.0.26
+ dev: true
+ resolution:
+ integrity: sha512-1//E5jCBrZ9DmRX+zCtmQtRSV6PV42Ix7Bzj9GbwJceduuf7IqP8MgeTXuRDHOWj2m0VzZD5+roFWDuU8RQjcg==
+ /postcss-modules/1.4.1:
+ dependencies:
+ css-modules-loader-core: 1.1.0
+ generic-names: 1.0.3
+ lodash.camelcase: 4.3.0
+ postcss: 7.0.26
+ string-hash: 1.1.3
+ dev: true
+ resolution:
+ integrity: sha512-btTrbK+Xc3NBuYF8TPBjCMRSp5h6NoQ1iVZ6WiDQENIze6KIYCSf0+UFQuV3yJ7gRHA+4AAtF8i2jRvUpbBMMg==
+ /postcss-nesting/7.0.1:
+ dependencies:
+ postcss: 7.0.26
+ dev: true
+ engines:
+ node: '>=6.0.0'
+ resolution:
+ integrity: sha512-FrorPb0H3nuVq0Sff7W2rnc3SmIcruVC6YwpcS+k687VxyxO33iE1amna7wHuRVzM8vfiYofXSBHNAZ3QhLvYg==
+ /postcss-normalize-charset/4.0.1:
+ dependencies:
+ postcss: 7.0.26
+ dev: true
+ engines:
+ node: '>=6.9.0'
+ resolution:
+ integrity: sha512-gMXCrrlWh6G27U0hF3vNvR3w8I1s2wOBILvA87iNXaPvSNo5uZAMYsZG7XjCUf1eVxuPfyL4TJ7++SGZLc9A3g==
+ /postcss-normalize-display-values/4.0.2:
+ dependencies:
+ cssnano-util-get-match: 4.0.0
+ postcss: 7.0.26
+ postcss-value-parser: 3.3.1
+ dev: true
+ engines:
+ node: '>=6.9.0'
+ resolution:
+ integrity: sha512-3F2jcsaMW7+VtRMAqf/3m4cPFhPD3EFRgNs18u+k3lTJJlVe7d0YPO+bnwqo2xg8YiRpDXJI2u8A0wqJxMsQuQ==
+ /postcss-normalize-positions/4.0.2:
+ dependencies:
+ cssnano-util-get-arguments: 4.0.0
+ has: 1.0.3
+ postcss: 7.0.26
+ postcss-value-parser: 3.3.1
+ dev: true
+ engines:
+ node: '>=6.9.0'
+ resolution:
+ integrity: sha512-Dlf3/9AxpxE+NF1fJxYDeggi5WwV35MXGFnnoccP/9qDtFrTArZ0D0R+iKcg5WsUd8nUYMIl8yXDCtcrT8JrdA==
+ /postcss-normalize-repeat-style/4.0.2:
+ dependencies:
+ cssnano-util-get-arguments: 4.0.0
+ cssnano-util-get-match: 4.0.0
+ postcss: 7.0.26
+ postcss-value-parser: 3.3.1
+ dev: true
+ engines:
+ node: '>=6.9.0'
+ resolution:
+ integrity: sha512-qvigdYYMpSuoFs3Is/f5nHdRLJN/ITA7huIoCyqqENJe9PvPmLhNLMu7QTjPdtnVf6OcYYO5SHonx4+fbJE1+Q==
+ /postcss-normalize-string/4.0.2:
+ dependencies:
+ has: 1.0.3
+ postcss: 7.0.26
+ postcss-value-parser: 3.3.1
+ dev: true
+ engines:
+ node: '>=6.9.0'
+ resolution:
+ integrity: sha512-RrERod97Dnwqq49WNz8qo66ps0swYZDSb6rM57kN2J+aoyEAJfZ6bMx0sx/F9TIEX0xthPGCmeyiam/jXif0eA==
+ /postcss-normalize-timing-functions/4.0.2:
+ dependencies:
+ cssnano-util-get-match: 4.0.0
+ postcss: 7.0.26
+ postcss-value-parser: 3.3.1
+ dev: true
+ engines:
+ node: '>=6.9.0'
+ resolution:
+ integrity: sha512-acwJY95edP762e++00Ehq9L4sZCEcOPyaHwoaFOhIwWCDfik6YvqsYNxckee65JHLKzuNSSmAdxwD2Cud1Z54A==
+ /postcss-normalize-unicode/4.0.1:
+ dependencies:
+ browserslist: 4.8.3
+ postcss: 7.0.26
+ postcss-value-parser: 3.3.1
+ dev: true
+ engines:
+ node: '>=6.9.0'
+ resolution:
+ integrity: sha512-od18Uq2wCYn+vZ/qCOeutvHjB5jm57ToxRaMeNuf0nWVHaP9Hua56QyMF6fs/4FSUnVIw0CBPsU0K4LnBPwYwg==
+ /postcss-normalize-url/4.0.1:
+ dependencies:
+ is-absolute-url: 2.1.0
+ normalize-url: 3.3.0
+ postcss: 7.0.26
+ postcss-value-parser: 3.3.1
+ dev: true
+ engines:
+ node: '>=6.9.0'
+ resolution:
+ integrity: sha512-p5oVaF4+IHwu7VpMan/SSpmpYxcJMtkGppYf0VbdH5B6hN8YNmVyJLuY9FmLQTzY3fag5ESUUHDqM+heid0UVA==
+ /postcss-normalize-whitespace/4.0.2:
+ dependencies:
+ postcss: 7.0.26
+ postcss-value-parser: 3.3.1
+ dev: true
+ engines:
+ node: '>=6.9.0'
+ resolution:
+ integrity: sha512-tO8QIgrsI3p95r8fyqKV+ufKlSHh9hMJqACqbv2XknufqEDhDvbguXGBBqxw9nsQoXWf0qOqppziKJKHMD4GtA==
+ /postcss-normalize/8.0.1:
+ dependencies:
+ '@csstools/normalize.css': 10.1.0
+ browserslist: 4.8.3
+ postcss: 7.0.26
+ postcss-browser-comments: 3.0.0_browserslist@4.8.3
+ sanitize.css: 10.0.0
+ dev: true
+ engines:
+ node: '>=8.0.0'
+ resolution:
+ integrity: sha512-rt9JMS/m9FHIRroDDBGSMsyW1c0fkvOJPy62ggxSHUldJO7B195TqFMqIf+lY5ezpDcYOV4j86aUp3/XbxzCCQ==
+ /postcss-ordered-values/4.1.2:
+ dependencies:
+ cssnano-util-get-arguments: 4.0.0
+ postcss: 7.0.26
+ postcss-value-parser: 3.3.1
+ dev: true
+ engines:
+ node: '>=6.9.0'
+ resolution:
+ integrity: sha512-2fCObh5UanxvSxeXrtLtlwVThBvHn6MQcu4ksNT2tsaV2Fg76R2CV98W7wNSlX+5/pFwEyaDwKLLoEV7uRybAw==
+ /postcss-overflow-shorthand/2.0.0:
+ dependencies:
+ postcss: 7.0.26
+ dev: true
+ engines:
+ node: '>=6.0.0'
+ resolution:
+ integrity: sha512-aK0fHc9CBNx8jbzMYhshZcEv8LtYnBIRYQD5i7w/K/wS9c2+0NSR6B3OVMu5y0hBHYLcMGjfU+dmWYNKH0I85g==
+ /postcss-page-break/2.0.0:
+ dependencies:
+ postcss: 7.0.26
+ dev: true
+ resolution:
+ integrity: sha512-tkpTSrLpfLfD9HvgOlJuigLuk39wVTbbd8RKcy8/ugV2bNBUW3xU+AIqyxhDrQr1VUj1RmyJrBn1YWrqUm9zAQ==
+ /postcss-place/4.0.1:
+ dependencies:
+ postcss: 7.0.26
+ postcss-values-parser: 2.0.1
+ dev: true
+ engines:
+ node: '>=6.0.0'
+ resolution:
+ integrity: sha512-Zb6byCSLkgRKLODj/5mQugyuj9bvAAw9LqJJjgwz5cYryGeXfFZfSXoP1UfveccFmeq0b/2xxwcTEVScnqGxBg==
+ /postcss-preset-env/6.7.0:
+ dependencies:
+ autoprefixer: 9.7.3
+ browserslist: 4.8.3
+ caniuse-lite: 1.0.30001019
+ css-blank-pseudo: 0.1.4
+ css-has-pseudo: 0.10.0
+ css-prefers-color-scheme: 3.1.1
+ cssdb: 4.4.0
+ postcss: 7.0.26
+ postcss-attribute-case-insensitive: 4.0.1
+ postcss-color-functional-notation: 2.0.1
+ postcss-color-gray: 5.0.0
+ postcss-color-hex-alpha: 5.0.3
+ postcss-color-mod-function: 3.0.3
+ postcss-color-rebeccapurple: 4.0.1
+ postcss-custom-media: 7.0.8
+ postcss-custom-properties: 8.0.11
+ postcss-custom-selectors: 5.1.2
+ postcss-dir-pseudo-class: 5.0.0
+ postcss-double-position-gradients: 1.0.0
+ postcss-env-function: 2.0.2
+ postcss-focus-visible: 4.0.0
+ postcss-focus-within: 3.0.0
+ postcss-font-variant: 4.0.0
+ postcss-gap-properties: 2.0.0
+ postcss-image-set-function: 3.0.1
+ postcss-initial: 3.0.2
+ postcss-lab-function: 2.0.1
+ postcss-logical: 3.0.0
+ postcss-media-minmax: 4.0.0
+ postcss-nesting: 7.0.1
+ postcss-overflow-shorthand: 2.0.0
+ postcss-page-break: 2.0.0
+ postcss-place: 4.0.1
+ postcss-pseudo-class-any-link: 6.0.0
+ postcss-replace-overflow-wrap: 3.0.0
+ postcss-selector-matches: 4.0.0
+ postcss-selector-not: 4.0.0
+ dev: true
+ engines:
+ node: '>=6.0.0'
+ resolution:
+ integrity: sha512-eU4/K5xzSFwUFJ8hTdTQzo2RBLbDVt83QZrAvI07TULOkmyQlnYlpwep+2yIK+K+0KlZO4BvFcleOCCcUtwchg==
+ /postcss-pseudo-class-any-link/6.0.0:
+ dependencies:
+ postcss: 7.0.26
+ postcss-selector-parser: 5.0.0
+ dev: true
+ engines:
+ node: '>=6.0.0'
+ resolution:
+ integrity: sha512-lgXW9sYJdLqtmw23otOzrtbDXofUdfYzNm4PIpNE322/swES3VU9XlXHeJS46zT2onFO7V1QFdD4Q9LiZj8mew==
+ /postcss-reduce-initial/4.0.3:
+ dependencies:
+ browserslist: 4.8.3
+ caniuse-api: 3.0.0
+ has: 1.0.3
+ postcss: 7.0.26
+ dev: true
+ engines:
+ node: '>=6.9.0'
+ resolution:
+ integrity: sha512-gKWmR5aUulSjbzOfD9AlJiHCGH6AEVLaM0AV+aSioxUDd16qXP1PCh8d1/BGVvpdWn8k/HiK7n6TjeoXN1F7DA==
+ /postcss-reduce-transforms/4.0.2:
+ dependencies:
+ cssnano-util-get-match: 4.0.0
+ has: 1.0.3
+ postcss: 7.0.26
+ postcss-value-parser: 3.3.1
+ dev: true
+ engines:
+ node: '>=6.9.0'
+ resolution:
+ integrity: sha512-EEVig1Q2QJ4ELpJXMZR8Vt5DQx8/mo+dGWSR7vWXqcob2gQLyQGsionYcGKATXvQzMPn6DSN1vTN7yFximdIAg==
+ /postcss-replace-overflow-wrap/3.0.0:
+ dependencies:
+ postcss: 7.0.26
+ dev: true
+ resolution:
+ integrity: sha512-2T5hcEHArDT6X9+9dVSPQdo7QHzG4XKclFT8rU5TzJPDN7RIRTbO9c4drUISOVemLj03aezStHCR2AIcr8XLpw==
+ /postcss-safe-parser/4.0.1:
+ dependencies:
+ postcss: 7.0.26
+ dev: true
+ engines:
+ node: '>=6.0.0'
+ resolution:
+ integrity: sha512-xZsFA3uX8MO3yAda03QrG3/Eg1LN3EPfjjf07vke/46HERLZyHrTsQ9E1r1w1W//fWEhtYNndo2hQplN2cVpCQ==
+ /postcss-selector-matches/4.0.0:
+ dependencies:
+ balanced-match: 1.0.0
+ postcss: 7.0.26
+ dev: true
+ resolution:
+ integrity: sha512-LgsHwQR/EsRYSqlwdGzeaPKVT0Ml7LAT6E75T8W8xLJY62CE4S/l03BWIt3jT8Taq22kXP08s2SfTSzaraoPww==
+ /postcss-selector-not/4.0.0:
+ dependencies:
+ balanced-match: 1.0.0
+ postcss: 7.0.26
+ dev: true
+ resolution:
+ integrity: sha512-W+bkBZRhqJaYN8XAnbbZPLWMvZD1wKTu0UxtFKdhtGjWYmxhkUneoeOhRJKdAE5V7ZTlnbHfCR+6bNwK9e1dTQ==
+ /postcss-selector-parser/3.1.1:
+ dependencies:
+ dot-prop: 4.2.0
+ indexes-of: 1.0.1
+ uniq: 1.0.1
+ dev: true
+ engines:
+ node: '>=4'
+ resolution:
+ integrity: sha1-T4dfSvsMllc9XPTXQBGu4lCn6GU=
+ /postcss-selector-parser/5.0.0:
+ dependencies:
+ cssesc: 2.0.0
+ indexes-of: 1.0.1
+ uniq: 1.0.1
+ dev: true
+ engines:
+ node: '>=4'
+ resolution:
+ integrity: sha512-w+zLE5Jhg6Liz8+rQOWEAwtwkyqpfnmsinXjXg6cY7YIONZZtgvE0v2O0uhQBs0peNomOJwWRKt6JBfTdTd3OQ==
+ /postcss-selector-parser/6.0.2:
+ dependencies:
+ cssesc: 3.0.0
+ indexes-of: 1.0.1
+ uniq: 1.0.1
+ dev: true
+ engines:
+ node: '>=4'
+ resolution:
+ integrity: sha512-36P2QR59jDTOAiIkqEprfJDsoNrvwFei3eCqKd1Y0tUsBimsq39BLp7RD+JWny3WgB1zGhJX8XVePwm9k4wdBg==
+ /postcss-svgo/4.0.2:
+ dependencies:
+ is-svg: 3.0.0
+ postcss: 7.0.26
+ postcss-value-parser: 3.3.1
+ svgo: 1.3.2
+ dev: true
+ engines:
+ node: '>=6.9.0'
+ resolution:
+ integrity: sha512-C6wyjo3VwFm0QgBy+Fu7gCYOkCmgmClghO+pjcxvrcBKtiKt0uCF+hvbMO1fyv5BMImRK90SMb+dwUnfbGd+jw==
+ /postcss-unique-selectors/4.0.1:
+ dependencies:
+ alphanum-sort: 1.0.2
+ postcss: 7.0.26
+ uniqs: 2.0.0
+ dev: true
+ engines:
+ node: '>=6.9.0'
+ resolution:
+ integrity: sha512-+JanVaryLo9QwZjKrmJgkI4Fn8SBgRO6WXQBJi7KiAVPlmxikB5Jzc4EvXMT2H0/m0RjrVVm9rGNhZddm/8Spg==
+ /postcss-value-parser/3.3.1:
+ dev: true
+ resolution:
+ integrity: sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==
+ /postcss-value-parser/4.0.2:
+ dev: true
+ resolution:
+ integrity: sha512-LmeoohTpp/K4UiyQCwuGWlONxXamGzCMtFxLq4W1nZVGIQLYvMCJx3yAF9qyyuFpflABI9yVdtJAqbihOsCsJQ==
+ /postcss-values-parser/2.0.1:
+ dependencies:
+ flatten: 1.0.3
+ indexes-of: 1.0.1
+ uniq: 1.0.1
+ dev: true
+ engines:
+ node: '>=6.14.4'
+ resolution:
+ integrity: sha512-2tLuBsA6P4rYTNKCXYG/71C7j1pU6pK503suYOmn4xYrQIzW+opD+7FAFNuGSdZC/3Qfy334QbeMu7MEb8gOxg==
+ /postcss/6.0.1:
+ dependencies:
+ chalk: 1.1.3
+ source-map: 0.5.7
+ supports-color: 3.2.3
+ dev: true
+ engines:
+ node: '>=4.0.0'
+ resolution:
+ integrity: sha1-AA29H47vIXqjaLmiEsX8QLKo8/I=
+ /postcss/7.0.21:
+ dependencies:
+ chalk: 2.4.2
+ source-map: 0.6.1
+ supports-color: 6.1.0
+ dev: true
+ engines:
+ node: '>=6.0.0'
+ resolution:
+ integrity: sha512-uIFtJElxJo29QC753JzhidoAhvp/e/Exezkdhfmt8AymWT6/5B7W1WmponYWkHk2eg6sONyTch0A3nkMPun3SQ==
+ /postcss/7.0.26:
+ dependencies:
+ chalk: 2.4.2
+ source-map: 0.6.1
+ supports-color: 6.1.0
+ dev: true
+ engines:
+ node: '>=6.0.0'
+ resolution:
+ integrity: sha512-IY4oRjpXWYshuTDFxMVkJDtWIk2LhsTlu8bZnbEJA4+bYT16Lvpo8Qv6EvDumhYRgzjZl489pmsY3qVgJQ08nA==
+ /prelude-ls/1.1.2:
+ dev: true
+ engines:
+ node: '>= 0.8.0'
+ resolution:
+ integrity: sha1-IZMqVJ9eUv/ZqCf1cOBL5iqX2lQ=
+ /prepend-http/1.0.4:
+ dev: true
+ engines:
+ node: '>=0.10.0'
+ resolution:
+ integrity: sha1-1PRWKwzjaW5BrFLQ4ALlemNdxtw=
+ /prettier-eslint-cli/5.0.0:
+ dependencies:
+ arrify: 2.0.1
+ boolify: 1.0.1
+ camelcase-keys: 6.1.1
+ chalk: 2.4.2
+ common-tags: 1.8.0
+ core-js: 3.6.2
+ eslint: 5.16.0
+ find-up: 4.1.0
+ get-stdin: 7.0.0
+ glob: 7.1.6
+ ignore: 5.1.4
+ lodash.memoize: 4.1.2
+ loglevel-colored-level-prefix: 1.0.0
+ messageformat: 2.3.0
+ prettier-eslint: 9.0.1
+ rxjs: 6.5.4
+ yargs: 13.3.0
+ dev: true
+ engines:
+ node: '>=8'
+ hasBin: true
+ resolution:
+ integrity: sha512-cei9UbN1aTrz3sQs88CWpvY/10PYTevzd76zoG1tdJ164OhmNTFRKPTOZrutVvscoQWzbnLKkviS3gu5JXwvZg==
+ /prettier-eslint/9.0.1:
+ dependencies:
+ '@typescript-eslint/parser': 1.13.0_eslint@5.16.0
+ common-tags: 1.8.0
+ core-js: 3.6.2
+ dlv: 1.1.3
+ eslint: 5.16.0
+ indent-string: 4.0.0
+ lodash.merge: 4.6.2
+ loglevel-colored-level-prefix: 1.0.0
+ prettier: 1.19.1
+ pretty-format: 23.6.0
+ require-relative: 0.8.7
+ typescript: 3.7.4
+ vue-eslint-parser: 2.0.3_eslint@5.16.0
+ dev: true
+ engines:
+ node: '>=8.0.0'
+ resolution:
+ integrity: sha512-KZT65QTosSAqBBqmrC+RpXbsMRe7Os2YSR9cAfFbDlyPAopzA/S5bioiZ3rpziNQNSJaOxmtXSx07EQ+o2Dlug==
+ /prettier-linter-helpers/1.0.0:
+ dependencies:
+ fast-diff: 1.2.0
+ dev: true
+ engines:
+ node: '>=6.0.0'
+ resolution:
+ integrity: sha512-GbK2cP9nraSSUF9N2XwUwqfzlAFlMNYYl+ShE/V+H8a9uNl/oUqB1w2EL54Jh0OlyRSd8RfWYJ3coVS4TROP2w==
+ /prettier/1.19.1:
+ dev: true
+ engines:
+ node: '>=4'
+ hasBin: true
+ resolution:
+ integrity: sha512-s7PoyDv/II1ObgQunCbB9PdLmUcBZcnWOcxDh7O0N/UwDEsHyqkW+Qh28jW+mVuCdx7gLB0BotYI1Y6uI9iyew==
+ /pretty-bytes/5.3.0:
+ dev: true
+ engines:
+ node: '>=6'
+ resolution:
+ integrity: sha512-hjGrh+P926p4R4WbaB6OckyRtO0F0/lQBiT+0gnxjV+5kjPBrfVBFCsCLbMqVQeydvIoouYTCmmEURiH3R1Bdg==
+ /pretty-error/2.1.1:
+ dependencies:
+ renderkid: 2.0.3
+ utila: 0.4.0
+ dev: true
+ resolution:
+ integrity: sha1-X0+HyPkeWuPzuoerTPXgOxoX8aM=
+ /pretty-format/23.6.0:
+ dependencies:
+ ansi-regex: 3.0.0
+ ansi-styles: 3.2.1
+ dev: true
+ resolution:
+ integrity: sha512-zf9NV1NSlDLDjycnwm6hpFATCGl/K1lt0R/GdkAK2O5LN/rwJoB+Mh93gGJjut4YbmecbfgLWVGSTCr0Ewvvbw==
+ /pretty-format/24.9.0:
+ dependencies:
+ '@jest/types': 24.9.0
+ ansi-regex: 4.1.0
+ ansi-styles: 3.2.1
+ react-is: 16.12.0
+ dev: true
+ engines:
+ node: '>= 6'
+ resolution:
+ integrity: sha512-00ZMZUiHaJrNfk33guavqgvfJS30sLYf0f8+Srklv0AMPodGGHcoHgksZ3OThYnIvOd+8yMCn0YiEOogjlgsnA==
+ /private/0.1.8:
+ dev: true
+ engines:
+ node: '>= 0.6'
+ resolution:
+ integrity: sha512-VvivMrbvd2nKkiG38qjULzlc+4Vx4wm/whI9pQD35YrARNnhxeiRktSOhSukRLFNlzg6Br/cJPet5J/u19r/mg==
+ /process-nextick-args/2.0.1:
+ dev: true
+ resolution:
+ integrity: sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==
+ /process/0.11.10:
+ dev: true
+ engines:
+ node: '>= 0.6.0'
+ resolution:
+ integrity: sha1-czIwDoQBYb2j5podHZGn1LwW8YI=
+ /progress/2.0.3:
+ dev: true
+ engines:
+ node: '>=0.4.0'
+ resolution:
+ integrity: sha512-7PiHtLll5LdnKIMw100I+8xJXR5gW2QwWYkT6iJva0bXitZKa/XMrSbdmg3r2Xnaidz9Qumd0VPaMrZlF9V9sA==
+ /promise-inflight/1.0.1:
+ dev: true
+ resolution:
+ integrity: sha1-mEcocL8igTL8vdhoEputEsPAKeM=
+ /promise.series/0.2.0:
+ dev: true
+ engines:
+ node: '>=0.12'
+ resolution:
+ integrity: sha1-LMfr6Vn8OmYZwEq029yeRS2GS70=
+ /promise/8.0.3:
+ dependencies:
+ asap: 2.0.6
+ dev: true
+ resolution:
+ integrity: sha512-HeRDUL1RJiLhyA0/grn+PTShlBAcLuh/1BJGtrvjwbvRDCTLLMEz9rOGCV+R3vHY4MixIuoMEd9Yq/XvsTPcjw==
+ /prompts/2.3.0:
+ dependencies:
+ kleur: 3.0.3
+ sisteransi: 1.0.4
+ dev: true
+ engines:
+ node: '>= 6'
+ resolution:
+ integrity: sha512-NfbbPPg/74fT7wk2XYQ7hAIp9zJyZp5Fu19iRbORqqy1BhtrkZ0fPafBU+7bmn8ie69DpT0R6QpJIN2oisYjJg==
+ /prop-types/15.7.2:
+ dependencies:
+ loose-envify: 1.4.0
+ object-assign: 4.1.1
+ react-is: 16.12.0
+ dev: true
+ resolution:
+ integrity: sha512-8QQikdH7//R2vurIJSutZ1smHYTcLpRWEOlHnzcWHmBYrOGUysKwSsrC89BCiFj3CbrfJ/nXFdJepOVrY1GCHQ==
+ /proxy-addr/2.0.5:
+ dependencies:
+ forwarded: 0.1.2
+ ipaddr.js: 1.9.0
+ dev: true
+ engines:
+ node: '>= 0.10'
+ resolution:
+ integrity: sha512-t/7RxHXPH6cJtP0pRG6smSr9QJidhB+3kXu0KgXnbGYMgzEnUxRQ4/LDdfOwZEMyIh3/xHb8PX3t+lfL9z+YVQ==
+ /prr/1.0.1:
+ dev: true
+ resolution:
+ integrity: sha1-0/wRS6BplaRexok/SEzrHXj19HY=
+ /psl/1.7.0:
+ dev: true
+ resolution:
+ integrity: sha512-5NsSEDv8zY70ScRnOTn7bK7eanl2MvFrOrS/R6x+dBt5g1ghnj9Zv90kO8GwT8gxcu2ANyFprnFYB85IogIJOQ==
+ /public-encrypt/4.0.3:
+ dependencies:
+ bn.js: 4.11.8
+ browserify-rsa: 4.0.1
+ create-hash: 1.2.0
+ parse-asn1: 5.1.5
+ randombytes: 2.1.0
+ safe-buffer: 5.2.0
+ dev: true
+ resolution:
+ integrity: sha512-zVpa8oKZSz5bTMTFClc1fQOnyyEzpl5ozpi1B5YcvBrdohMjH2rfsBtyXcuNuwjsDIXmBYlF2N5FlJYhR29t8Q==
+ /pump/2.0.1:
+ dependencies:
+ end-of-stream: 1.4.4
+ once: 1.4.0
+ dev: true
+ resolution:
+ integrity: sha512-ruPMNRkN3MHP1cWJc9OWr+T/xDP0jhXYCLfJcBuX54hhfIBnaQmAUMfDcG4DM5UMWByBbJY69QSphm3jtDKIkA==
+ /pump/3.0.0:
+ dependencies:
+ end-of-stream: 1.4.4
+ once: 1.4.0
+ dev: true
+ resolution:
+ integrity: sha512-LwZy+p3SFs1Pytd/jYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww==
+ /pumpify/1.5.1:
+ dependencies:
+ duplexify: 3.7.1
+ inherits: 2.0.4
+ pump: 2.0.1
+ dev: true
+ resolution:
+ integrity: sha512-oClZI37HvuUJJxSKKrC17bZ9Cu0ZYhEAGPsPUy9KlMUmv9dKX2o77RUmq7f3XjIxbwyGwYzbzQ1L2Ks8sIradQ==
+ /punycode/1.3.2:
+ dev: true
+ resolution:
+ integrity: sha1-llOgNvt8HuQjQvIyXM7v6jkmxI0=
+ /punycode/1.4.1:
+ dev: true
+ resolution:
+ integrity: sha1-wNWmOycYgArY4esPpSachN1BhF4=
+ /punycode/2.1.1:
+ dev: true
+ engines:
+ node: '>=6'
+ resolution:
+ integrity: sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A==
+ /q/1.5.1:
+ dev: true
+ engines:
+ node: '>=0.6.0'
+ teleport: '>=0.2.0'
+ resolution:
+ integrity: sha1-fjL3W0E4EpHQRhHxvxQQmsAGUdc=
+ /qs/6.5.2:
+ dev: true
+ engines:
+ node: '>=0.6'
+ resolution:
+ integrity: sha512-N5ZAX4/LxJmF+7wN74pUD6qAh9/wnvdQcjq9TZjevvXzSUo7bfmw91saqMjzGS2xq91/odN2dW/WOl7qQHNDGA==
+ /qs/6.7.0:
+ dev: true
+ engines:
+ node: '>=0.6'
+ resolution:
+ integrity: sha512-VCdBRNFTX1fyE7Nb6FYoURo/SPe62QCaAyzJvUjwRaIsc+NePBEniHlvxFmmX56+HZphIGtV0XeCirBtpDrTyQ==
+ /query-string/4.3.4:
+ dependencies:
+ object-assign: 4.1.1
+ strict-uri-encode: 1.1.0
+ dev: true
+ engines:
+ node: '>=0.10.0'
+ resolution:
+ integrity: sha1-u7aTucqRXCMlFbIosaArYJBD2+s=
+ /querystring-es3/0.2.1:
+ dev: true
+ engines:
+ node: '>=0.4.x'
+ resolution:
+ integrity: sha1-nsYfeQSYdXB9aUFFlv2Qek1xHnM=
+ /querystring/0.2.0:
+ dev: true
+ engines:
+ node: '>=0.4.x'
+ resolution:
+ integrity: sha1-sgmEkgO7Jd+CDadW50cAWHhSFiA=
+ /querystringify/2.1.1:
+ dev: true
+ resolution:
+ integrity: sha512-w7fLxIRCRT7U8Qu53jQnJyPkYZIaR4n5151KMfcJlO/A9397Wxb1amJvROTK6TOnp7PfoAmg/qXiNHI+08jRfA==
+ /quick-lru/4.0.1:
+ dev: true
+ engines:
+ node: '>=8'
+ resolution:
+ integrity: sha512-ARhCpm70fzdcvNQfPoy49IaanKkTlRWF2JMzqhcJbhSFRZv7nPTvZJdcY7301IPmvW+/p0RgIWnQDLJxifsQ7g==
+ /raf/3.4.1:
+ dependencies:
+ performance-now: 2.1.0
+ dev: true
+ resolution:
+ integrity: sha512-Sq4CW4QhwOHE8ucn6J34MqtZCeWFP2aQSmrlroYgqAV1PjStIhJXxYuTgUIfkEk7zTLjmIjLmU5q+fbD1NnOJA==
+ /randombytes/2.1.0:
+ dependencies:
+ safe-buffer: 5.2.0
+ dev: true
+ resolution:
+ integrity: sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ==
+ /randomfill/1.0.4:
+ dependencies:
+ randombytes: 2.1.0
+ safe-buffer: 5.2.0
+ dev: true
+ resolution:
+ integrity: sha512-87lcbR8+MhcWcUiQ+9e+Rwx8MyR2P7qnt15ynUlbm3TU/fjbgz4GsvfSUDTemtCCtVCqb4ZcEFlyPNTh9bBTLw==
+ /range-parser/1.2.1:
+ dev: true
+ engines:
+ node: '>= 0.6'
+ resolution:
+ integrity: sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg==
+ /raw-body/2.4.0:
+ dependencies:
+ bytes: 3.1.0
+ http-errors: 1.7.2
+ iconv-lite: 0.4.24
+ unpipe: 1.0.0
+ dev: true
+ engines:
+ node: '>= 0.8'
+ resolution:
+ integrity: sha512-4Oz8DUIwdvoa5qMJelxipzi/iJIi40O5cGV1wNYp5hvZP8ZN0T+jiNkL0QepXs+EsQ9XJ8ipEDoiH70ySUJP3Q==
+ /react-app-polyfill/1.0.5:
+ dependencies:
+ core-js: 3.6.2
+ object-assign: 4.1.1
+ promise: 8.0.3
+ raf: 3.4.1
+ regenerator-runtime: 0.13.3
+ whatwg-fetch: 3.0.0
+ dev: true
+ engines:
+ node: '>=6'
+ resolution:
+ integrity: sha512-RcbV6+msbvZJZUIK/LX3UafPtoaDSJgUWu4sqBxHKTVmBsnlU2QWCKJRBRmgjxu+ivW/GPINbPWRM4Ppa6Lbgw==
+ /react-dev-utils/10.0.0:
+ dependencies:
+ '@babel/code-frame': 7.5.5
+ address: 1.1.2
+ browserslist: 4.7.3
+ chalk: 2.4.2
+ cross-spawn: 6.0.5
+ detect-port-alt: 1.1.6
+ escape-string-regexp: 1.0.5
+ filesize: 3.6.1
+ find-up: 3.0.0
+ fork-ts-checker-webpack-plugin: 3.1.0
+ global-modules: 2.0.0
+ globby: 8.0.2
+ gzip-size: 5.1.1
+ immer: 1.10.0
+ inquirer: 6.5.0
+ is-root: 2.1.0
+ loader-utils: 1.2.3
+ open: 7.0.0
+ pkg-up: 2.0.0
+ react-error-overlay: 6.0.4
+ recursive-readdir: 2.2.2
+ shell-quote: 1.7.2
+ strip-ansi: 5.2.0
+ text-table: 0.2.0
+ dev: true
+ engines:
+ node: '>=8.10'
+ resolution:
+ integrity: sha512-8OKSJvl8ccXJDNf0YGw377L9v1OnT16skD/EuZWm0M/yr255etP4x4kuUCT1EfFfJ7Rhc4ZTpPTfPrvgiXa50Q==
+ /react-dom/16.12.0_react@16.12.0:
+ dependencies:
+ loose-envify: 1.4.0
+ object-assign: 4.1.1
+ prop-types: 15.7.2
+ react: 16.12.0
+ scheduler: 0.18.0
+ dev: true
+ peerDependencies:
+ react: ^16.0.0
+ resolution:
+ integrity: sha512-LMxFfAGrcS3kETtQaCkTKjMiifahaMySFDn71fZUNpPHZQEzmk/GiAeIT8JSOrHB23fnuCOMruL2a8NYlw+8Gw==
+ /react-error-overlay/6.0.4:
+ dev: true
+ resolution:
+ integrity: sha512-ueZzLmHltszTshDMwyfELDq8zOA803wQ1ZuzCccXa1m57k1PxSHfflPD5W9YIiTXLs0JTLzoj6o1LuM5N6zzNA==
+ /react-is/16.12.0:
+ dev: true
+ resolution:
+ integrity: sha512-rPCkf/mWBtKc97aLL9/txD8DZdemK0vkA3JMLShjlJB3Pj3s+lpf1KaBzMfQrAmhMQB0n1cU/SUGgKKBCe837Q==
+ /react-scripts/3.3.0_typescript@3.7.4:
+ dependencies:
+ '@babel/core': 7.7.4
+ '@svgr/webpack': 4.3.3
+ '@typescript-eslint/eslint-plugin': 2.15.0_17206d85cb7d94075d48587653b09c73
+ '@typescript-eslint/parser': 2.15.0_eslint@6.8.0+typescript@3.7.4
+ babel-eslint: 10.0.3_eslint@6.8.0
+ babel-jest: 24.9.0_@babel+core@7.7.4
+ babel-loader: 8.0.6_@babel+core@7.7.4+webpack@4.41.2
+ babel-plugin-named-asset-import: 0.3.5_@babel+core@7.7.4
+ babel-preset-react-app: 9.1.0
+ camelcase: 5.3.1
+ case-sensitive-paths-webpack-plugin: 2.2.0
+ css-loader: 3.2.0_webpack@4.41.2
+ dotenv: 8.2.0
+ dotenv-expand: 5.1.0
+ eslint: 6.8.0
+ eslint-config-react-app: 5.1.0_1d29af58818294fd027620c0acce1022
+ eslint-loader: 3.0.2_eslint@6.8.0+webpack@4.41.2
+ eslint-plugin-flowtype: 3.13.0_eslint@6.8.0
+ eslint-plugin-import: 2.18.2_eslint@6.8.0
+ eslint-plugin-jsx-a11y: 6.2.3_eslint@6.8.0
+ eslint-plugin-react: 7.16.0_eslint@6.8.0
+ eslint-plugin-react-hooks: 1.7.0_eslint@6.8.0
+ file-loader: 4.3.0_webpack@4.41.2
+ fs-extra: 8.1.0
+ html-webpack-plugin: 4.0.0-beta.5_webpack@4.41.2
+ identity-obj-proxy: 3.0.0
+ jest: 24.9.0
+ jest-environment-jsdom-fourteen: 0.1.0
+ jest-resolve: 24.9.0_jest-resolve@24.9.0
+ jest-watch-typeahead: 0.4.2
+ mini-css-extract-plugin: 0.8.0_webpack@4.41.2
+ optimize-css-assets-webpack-plugin: 5.0.3_webpack@4.41.2
+ pnp-webpack-plugin: 1.5.0_typescript@3.7.4
+ postcss-flexbugs-fixes: 4.1.0
+ postcss-loader: 3.0.0
+ postcss-normalize: 8.0.1
+ postcss-preset-env: 6.7.0
+ postcss-safe-parser: 4.0.1
+ react-app-polyfill: 1.0.5
+ react-dev-utils: 10.0.0
+ resolve: 1.12.2
+ resolve-url-loader: 3.1.1
+ sass-loader: 8.0.0_webpack@4.41.2
+ semver: 6.3.0
+ style-loader: 1.0.0_webpack@4.41.2
+ terser-webpack-plugin: 2.2.1_webpack@4.41.2
+ ts-pnp: 1.1.5_typescript@3.7.4
+ typescript: 3.7.4
+ url-loader: 2.3.0_file-loader@4.3.0+webpack@4.41.2
+ webpack: 4.41.2_webpack@4.41.2
+ webpack-dev-server: 3.9.0_webpack@4.41.2
+ webpack-manifest-plugin: 2.2.0_webpack@4.41.2
+ workbox-webpack-plugin: 4.3.1_webpack@4.41.2
+ dev: true
+ engines:
+ node: '>=8.10'
+ hasBin: true
+ optionalDependencies:
+ fsevents: 2.1.2
+ peerDependencies:
+ typescript: ^3.2.1
+ peerDependenciesMeta:
+ typescript:
+ optional: true
+ resolution:
+ integrity: sha512-hzPc6bxCc9GnsspWqk494c2Gpd0dRbk/C8q76BNQIENi9GMwoxFljOEcZoZcpFpJgQ45alxFR6QaLt+51qie7g==
+ /react/16.12.0:
+ dependencies:
+ loose-envify: 1.4.0
+ object-assign: 4.1.1
+ prop-types: 15.7.2
+ dev: true
+ engines:
+ node: '>=0.10.0'
+ resolution:
+ integrity: sha512-fglqy3k5E+81pA8s+7K0/T3DBCF0ZDOher1elBFzF7O6arXJgzyu/FW+COxFvAWXJoJN9KIZbT2LXlukwphYTA==
+ /read-pkg-up/2.0.0:
+ dependencies:
+ find-up: 2.1.0
+ read-pkg: 2.0.0
+ dev: true
+ engines:
+ node: '>=4'
+ resolution:
+ integrity: sha1-a3KoBImE4MQeeVEP1en6mbO1Sb4=
+ /read-pkg-up/4.0.0:
+ dependencies:
+ find-up: 3.0.0
+ read-pkg: 3.0.0
+ dev: true
+ engines:
+ node: '>=6'
+ resolution:
+ integrity: sha512-6etQSH7nJGsK0RbG/2TeDzZFa8shjQ1um+SwQQ5cwKy0dhSXdOncEhb1CPpvQG4h7FyOV6EB6YlV0yJvZQNAkA==
+ /read-pkg/2.0.0:
+ dependencies:
+ load-json-file: 2.0.0
+ normalize-package-data: 2.5.0
+ path-type: 2.0.0
+ dev: true
+ engines:
+ node: '>=4'
+ resolution:
+ integrity: sha1-jvHAYjxqbbDcZxPEv6xGMysjaPg=
+ /read-pkg/3.0.0:
+ dependencies:
+ load-json-file: 4.0.0
+ normalize-package-data: 2.5.0
+ path-type: 3.0.0
+ dev: true
+ engines:
+ node: '>=4'
+ resolution:
+ integrity: sha1-nLxoaXj+5l0WwA4rGcI3/Pbjg4k=
+ /read-pkg/4.0.1:
+ dependencies:
+ normalize-package-data: 2.5.0
+ parse-json: 4.0.0
+ pify: 3.0.0
+ dev: true
+ engines:
+ node: '>=6'
+ resolution:
+ integrity: sha1-ljYlN48+HE1IyFhytabsfV0JMjc=
+ /readable-stream/2.3.7:
+ dependencies:
+ core-util-is: 1.0.2
+ inherits: 2.0.4
+ isarray: 1.0.0
+ process-nextick-args: 2.0.1
+ safe-buffer: 5.1.2
+ string_decoder: 1.1.1
+ util-deprecate: 1.0.2
+ dev: true
+ resolution:
+ integrity: sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==
+ /readable-stream/3.4.0:
+ dependencies:
+ inherits: 2.0.4
+ string_decoder: 1.3.0
+ util-deprecate: 1.0.2
+ dev: true
+ engines:
+ node: '>= 6'
+ resolution:
+ integrity: sha512-jItXPLmrSR8jmTRmRWJXCnGJsfy85mB3Wd/uINMXA65yrnFo0cPClFIUWzo2najVNSl+mx7/4W8ttlLWJe99pQ==
+ /readdirp/2.2.1:
+ dependencies:
+ graceful-fs: 4.2.3
+ micromatch: 3.1.10
+ readable-stream: 2.3.7
+ dev: true
+ engines:
+ node: '>=0.10'
+ resolution:
+ integrity: sha512-1JU/8q+VgFZyxwrJ+SVIOsh+KywWGpds3NTqikiKpDMZWScmAYyKIgqkO+ARvNWJfXeXR1zxz7aHF4u4CyH6vQ==
+ /realpath-native/1.1.0:
+ dependencies:
+ util.promisify: 1.0.0
+ dev: true
+ engines:
+ node: '>=4'
+ resolution:
+ integrity: sha512-wlgPA6cCIIg9gKz0fgAPjnzh4yR/LnXovwuo9hvyGvx3h8nX4+/iLZplfUWasXpqD8BdnGnP5njOFjkUwPzvjA==
+ /recursive-readdir/2.2.2:
+ dependencies:
+ minimatch: 3.0.4
+ dev: true
+ engines:
+ node: '>=0.10.0'
+ resolution:
+ integrity: sha512-nRCcW9Sj7NuZwa2XvH9co8NPeXUBhZP7CRKJtU+cS6PW9FpCIFoI5ib0NT1ZrbNuPoRy0ylyCaUL8Gih4LSyFg==
+ /regenerate-unicode-properties/8.1.0:
+ dependencies:
+ regenerate: 1.4.0
+ dev: true
+ engines:
+ node: '>=4'
+ resolution:
+ integrity: sha512-LGZzkgtLY79GeXLm8Dp0BVLdQlWICzBnJz/ipWUgo59qBaZ+BHtq51P2q1uVZlppMuUAT37SDk39qUbjTWB7bA==
+ /regenerate/1.4.0:
+ dev: true
+ resolution:
+ integrity: sha512-1G6jJVDWrt0rK99kBjvEtziZNCICAuvIPkSiUFIQxVP06RCVpq3dmDo2oi6ABpYaDYaTRr67BEhL8r1wgEZZKg==
+ /regenerator-runtime/0.11.1:
+ dev: true
+ resolution:
+ integrity: sha512-MguG95oij0fC3QV3URf4V2SDYGJhJnJGqvIIgdECeODCT98wSWDAJ94SSuVpYQUoTcGUIL6L4yNB7j1DFFHSBg==
+ /regenerator-runtime/0.13.3:
+ dev: true
+ resolution:
+ integrity: sha512-naKIZz2GQ8JWh///G7L3X6LaQUAMp2lvb1rvwwsURe/VXwD6VMfr+/1NuNw3ag8v2kY1aQ/go5SNn79O9JU7yw==
+ /regenerator-transform/0.14.1:
+ dependencies:
+ private: 0.1.8
+ dev: true
+ resolution:
+ integrity: sha512-flVuee02C3FKRISbxhXl9mGzdbWUVHubl1SMaknjxkFB1/iqpJhArQUvRxOOPEc/9tAiX0BaQ28FJH10E4isSQ==
+ /regex-not/1.0.2:
+ dependencies:
+ extend-shallow: 3.0.2
+ safe-regex: 1.1.0
+ dev: true
+ engines:
+ node: '>=0.10.0'
+ resolution:
+ integrity: sha512-J6SDjUgDxQj5NusnOtdFxDwN/+HWykR8GELwctJ7mdqhcyy1xEc4SRFHUXvxTp661YaVKAjfRLZ9cCqS6tn32A==
+ /regex-parser/2.2.10:
+ dev: true
+ resolution:
+ integrity: sha512-8t6074A68gHfU8Neftl0Le6KTDwfGAj7IyjPIMSfikI2wJUTHDMaIq42bUsfVnj8mhx0R+45rdUXHGpN164avA==
+ /regexp.prototype.flags/1.3.0:
+ dependencies:
+ define-properties: 1.1.3
+ es-abstract: 1.17.0
+ dev: true
+ engines:
+ node: '>= 0.4'
+ resolution:
+ integrity: sha512-2+Q0C5g951OlYlJz6yu5/M33IcsESLlLfsyIaLJaG4FA2r4yP8MvVMJUUP/fVBkSpbbbZlS5gynbEWLipiiXiQ==
+ /regexpp/2.0.1:
+ dev: true
+ engines:
+ node: '>=6.5.0'
+ resolution:
+ integrity: sha512-lv0M6+TkDVniA3aD1Eg0DVpfU/booSu7Eev3TDO/mZKHBfVjgCGTV4t4buppESEYDtkArYFOxTJWv6S5C+iaNw==
+ /regexpp/3.0.0:
+ dev: true
+ engines:
+ node: '>=8'
+ resolution:
+ integrity: sha512-Z+hNr7RAVWxznLPuA7DIh8UNX1j9CDrUQxskw9IrBE1Dxue2lyXT+shqEIeLUjrokxIP8CMy1WkjgG3rTsd5/g==
+ /regexpu-core/1.0.0:
+ dependencies:
+ regenerate: 1.4.0
+ regjsgen: 0.2.0
+ regjsparser: 0.1.5
+ dev: true
+ resolution:
+ integrity: sha1-hqdj9Y7k18L2sQLkdkBQ3n7ZDGs=
+ /regexpu-core/4.6.0:
+ dependencies:
+ regenerate: 1.4.0
+ regenerate-unicode-properties: 8.1.0
+ regjsgen: 0.5.1
+ regjsparser: 0.6.2
+ unicode-match-property-ecmascript: 1.0.4
+ unicode-match-property-value-ecmascript: 1.1.0
+ dev: true
+ engines:
+ node: '>=4'
+ resolution:
+ integrity: sha512-YlVaefl8P5BnFYOITTNzDvan1ulLOiXJzCNZxduTIosN17b87h3bvG9yHMoHaRuo88H4mQ06Aodj5VtYGGGiTg==
+ /regjsgen/0.2.0:
+ dev: true
+ resolution:
+ integrity: sha1-bAFq3qxVT3WCP+N6wFuS1aTtsfc=
+ /regjsgen/0.5.1:
+ dev: true
+ resolution:
+ integrity: sha512-5qxzGZjDs9w4tzT3TPhCJqWdCc3RLYwy9J2NB0nm5Lz+S273lvWcpjaTGHsT1dc6Hhfq41uSEOw8wBmxrKOuyg==
+ /regjsparser/0.1.5:
+ dependencies:
+ jsesc: 0.5.0
+ dev: true
+ hasBin: true
+ resolution:
+ integrity: sha1-fuj4Tcb6eS0/0K4ijSS9lJ6tIFw=
+ /regjsparser/0.6.2:
+ dependencies:
+ jsesc: 0.5.0
+ dev: true
+ hasBin: true
+ resolution:
+ integrity: sha512-E9ghzUtoLwDekPT0DYCp+c4h+bvuUpe6rRHCTYn6eGoqj1LgKXxT6I0Il4WbjhQkOghzi/V+y03bPKvbllL93Q==
+ /relateurl/0.2.7:
+ dev: true
+ engines:
+ node: '>= 0.10'
+ resolution:
+ integrity: sha1-VNvzd+UUQKypCkzSdGANP/LYiKk=
+ /remove-trailing-separator/1.1.0:
+ dev: true
+ resolution:
+ integrity: sha1-wkvOKig62tW8P1jg1IJJuSN52O8=
+ /renderkid/2.0.3:
+ dependencies:
+ css-select: 1.2.0
+ dom-converter: 0.2.0
+ htmlparser2: 3.10.1
+ strip-ansi: 3.0.1
+ utila: 0.4.0
+ dev: true
+ resolution:
+ integrity: sha512-z8CLQp7EZBPCwCnncgf9C4XAi3WR0dv+uWu/PjIyhhAb5d6IJ/QZqlHFprHeKT+59//V6BNUsLbvN8+2LarxGA==
+ /repeat-element/1.1.3:
+ dev: true
+ engines:
+ node: '>=0.10.0'
+ resolution:
+ integrity: sha512-ahGq0ZnV5m5XtZLMb+vP76kcAM5nkLqk0lpqAuojSKGgQtn4eRi4ZZGm2olo2zKFH+sMsWaqOCW1dqAnOru72g==
+ /repeat-string/1.6.1:
+ dev: true
+ engines:
+ node: '>=0.10'
+ resolution:
+ integrity: sha1-jcrkcOHIirwtYA//Sndihtp15jc=
+ /request-promise-core/1.1.3_request@2.88.0:
+ dependencies:
+ lodash: 4.17.15
+ request: 2.88.0
+ dev: true
+ engines:
+ node: '>=0.10.0'
+ peerDependencies:
+ request: ^2.34
+ resolution:
+ integrity: sha512-QIs2+ArIGQVp5ZYbWD5ZLCY29D5CfWizP8eWnm8FoGD1TX61veauETVQbrV60662V0oFBkrDOuaBI8XgtuyYAQ==
+ /request-promise-native/1.0.8_request@2.88.0:
+ dependencies:
+ request: 2.88.0
+ request-promise-core: 1.1.3_request@2.88.0
+ stealthy-require: 1.1.1
+ tough-cookie: 2.5.0
+ dev: true
+ engines:
+ node: '>=0.12.0'
+ peerDependencies:
+ request: ^2.34
+ resolution:
+ integrity: sha512-dapwLGqkHtwL5AEbfenuzjTYg35Jd6KPytsC2/TLkVMz8rm+tNt72MGUWT1RP/aYawMpN6HqbNGBQaRcBtjQMQ==
+ /request/2.88.0:
+ dependencies:
+ aws-sign2: 0.7.0
+ aws4: 1.9.0
+ caseless: 0.12.0
+ combined-stream: 1.0.8
+ extend: 3.0.2
+ forever-agent: 0.6.1
+ form-data: 2.3.3
+ har-validator: 5.1.3
+ http-signature: 1.2.0
+ is-typedarray: 1.0.0
+ isstream: 0.1.2
+ json-stringify-safe: 5.0.1
+ mime-types: 2.1.26
+ oauth-sign: 0.9.0
+ performance-now: 2.1.0
+ qs: 6.5.2
+ safe-buffer: 5.2.0
+ tough-cookie: 2.4.3
+ tunnel-agent: 0.6.0
+ uuid: 3.3.3
+ dev: true
+ engines:
+ node: '>= 4'
+ resolution:
+ integrity: sha512-NAqBSrijGLZdM0WZNsInLJpkJokL72XYjUpnB0iwsRgxh7dB6COrHnTBNwN0E+lHDAJzu7kLAkDeY08z2/A0hg==
+ /require-directory/2.1.1:
+ dev: true
+ engines:
+ node: '>=0.10.0'
+ resolution:
+ integrity: sha1-jGStX9MNqxyXbiNE/+f3kqam30I=
+ /require-main-filename/1.0.1:
+ dev: true
+ resolution:
+ integrity: sha1-l/cXtp1IeE9fUmpsWqj/3aBVpNE=
+ /require-main-filename/2.0.0:
+ dev: true
+ resolution:
+ integrity: sha512-NKN5kMDylKuldxYLSUfrbo5Tuzh4hd+2E8NPPX02mZtn1VuREQToYe/ZdlJy+J3uCpfaiGF05e7B8W0iXbQHmg==
+ /require-relative/0.8.7:
+ dev: true
+ resolution:
+ integrity: sha1-eZlTn8ngR6N5KPoZb44VY9q9Nt4=
+ /requires-port/1.0.0:
+ dev: true
+ resolution:
+ integrity: sha1-kl0mAdOaxIXgkc8NpcbmlNw9yv8=
+ /reserved-words/0.1.2:
+ dev: true
+ resolution:
+ integrity: sha1-AKCUD5jNUBrqqsMWQR2a3FKzGrE=
+ /resolve-cwd/2.0.0:
+ dependencies:
+ resolve-from: 3.0.0
+ dev: true
+ engines:
+ node: '>=4'
+ resolution:
+ integrity: sha1-AKn3OHVW4nA46uIyyqNypqWbZlo=
+ /resolve-from/3.0.0:
+ dev: true
+ engines:
+ node: '>=4'
+ resolution:
+ integrity: sha1-six699nWiBvItuZTM17rywoYh0g=
+ /resolve-from/4.0.0:
+ dev: true
+ engines:
+ node: '>=4'
+ resolution:
+ integrity: sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==
+ /resolve-url-loader/3.1.1:
+ dependencies:
+ adjust-sourcemap-loader: 2.0.0
+ camelcase: 5.3.1
+ compose-function: 3.0.3
+ convert-source-map: 1.7.0
+ es6-iterator: 2.0.3
+ loader-utils: 1.2.3
+ postcss: 7.0.21
+ rework: 1.0.1
+ rework-visit: 1.0.0
+ source-map: 0.6.1
+ dev: true
+ engines:
+ node: '>=6.0.0'
+ resolution:
+ integrity: sha512-K1N5xUjj7v0l2j/3Sgs5b8CjrrgtC70SmdCuZiJ8tSyb5J+uk3FoeZ4b7yTnH6j7ngI+Bc5bldHJIa8hYdu2gQ==
+ /resolve-url/0.2.1:
+ dev: true
+ resolution:
+ integrity: sha1-LGN/53yJOv0qZj/iGqkIAGjiBSo=
+ /resolve/1.1.7:
+ dev: true
+ resolution:
+ integrity: sha1-IDEU2CrSxe2ejgQRs5ModeiJ6Xs=
+ /resolve/1.12.2:
+ dependencies:
+ path-parse: 1.0.6
+ dev: true
+ resolution:
+ integrity: sha512-cAVTI2VLHWYsGOirfeYVVQ7ZDejtQ9fp4YhYckWDEkFfqbVjaT11iM8k6xSAfGFMM+gDpZjMnFssPu8we+mqFw==
+ /resolve/1.14.2:
+ dependencies:
+ path-parse: 1.0.6
+ dev: true
+ resolution:
+ integrity: sha512-EjlOBLBO1kxsUxsKjLt7TAECyKW6fOh1VRkykQkKGzcBbjjPIxBqGh0jf7GJ3k/f5mxMqW3htMD3WdTUVtW8HQ==
+ /restore-cursor/2.0.0:
+ dependencies:
+ onetime: 2.0.1
+ signal-exit: 3.0.2
+ dev: true
+ engines:
+ node: '>=4'
+ resolution:
+ integrity: sha1-n37ih/gv0ybU/RYpI9YhKe7g368=
+ /restore-cursor/3.1.0:
+ dependencies:
+ onetime: 5.1.0
+ signal-exit: 3.0.2
+ dev: true
+ engines:
+ node: '>=8'
+ resolution:
+ integrity: sha512-l+sSefzHpj5qimhFSE5a8nufZYAM3sBSVMAPtYkmC+4EH2anSGaEMXSD0izRQbu9nfyQ9y5JrVmp7E8oZrUjvA==
+ /ret/0.1.15:
+ dev: true
+ engines:
+ node: '>=0.12'
+ resolution:
+ integrity: sha512-TTlYpa+OL+vMMNG24xSlQGEJ3B/RzEfUlLct7b5G/ytav+wPrplCpVMFuwzXbkecJrb6IYo1iFb0S9v37754mg==
+ /retry/0.12.0:
+ dev: true
+ engines:
+ node: '>= 4'
+ resolution:
+ integrity: sha1-G0KmJmoh8HQh0bC1S33BZ7AcATs=
+ /rework-visit/1.0.0:
+ dev: true
+ resolution:
+ integrity: sha1-mUWygD8hni96ygCtuLyfZA+ELJo=
+ /rework/1.0.1:
+ dependencies:
+ convert-source-map: 0.3.5
+ css: 2.2.4
+ dev: true
+ resolution:
+ integrity: sha1-MIBqhBNCtUUQqkEQhQzUhTQUSqc=
+ /rgb-regex/1.0.1:
+ dev: true
+ resolution:
+ integrity: sha1-wODWiC3w4jviVKR16O3UGRX+rrE=
+ /rgba-regex/1.0.0:
+ dev: true
+ resolution:
+ integrity: sha1-QzdOLiyglosO8VI0YLfXMP8i7rM=
+ /rimraf/2.6.3:
+ dependencies:
+ glob: 7.1.6
+ dev: true
+ hasBin: true
+ resolution:
+ integrity: sha512-mwqeW5XsA2qAejG46gYdENaxXjx9onRNCfn7L0duuP4hCuTIi/QO7PDK07KJfp1d+izWPrzEJDcSqBa0OZQriA==
+ /rimraf/2.7.1:
+ dependencies:
+ glob: 7.1.6
+ dev: true
+ hasBin: true
+ resolution:
+ integrity: sha512-uWjbaKIK3T1OSVptzX7Nl6PvQ3qAGtKEtVRjRuazjfL3Bx5eI409VZSqgND+4UNnmzLVdPj9FqFJNPqBZFve4w==
+ /ripemd160/2.0.2:
+ dependencies:
+ hash-base: 3.0.4
+ inherits: 2.0.4
+ dev: true
+ resolution:
+ integrity: sha512-ii4iagi25WusVoiC4B4lq7pbXfAp3D9v5CwfkY33vffw2+pkDjY1D8GaN7spsxvCSx8dkPqOZCEZyfxcmJG2IA==
+ /rollup-plugin-peer-deps-external/2.2.0_rollup@1.28.0:
+ dependencies:
+ rollup: 1.28.0
+ dev: true
+ peerDependencies:
+ rollup: ^0.x
+ resolution:
+ integrity: sha512-BmJMHUWQcvjS2dQMwJ7dzvdbwpRChnq4AYk2sTU/4aySt9Kumk8y8W3HhTHss31wxzKb0AC/wsiX1AqDcOBIEA==
+ /rollup-plugin-postcss/2.0.3:
+ dependencies:
+ chalk: 2.4.2
+ concat-with-sourcemaps: 1.1.0
+ cssnano: 4.1.10
+ import-cwd: 2.1.0
+ p-queue: 2.4.2
+ pify: 3.0.0
+ postcss: 7.0.26
+ postcss-load-config: 2.1.0
+ postcss-modules: 1.4.1
+ promise.series: 0.2.0
+ reserved-words: 0.1.2
+ resolve: 1.14.2
+ rollup-pluginutils: 2.8.2
+ style-inject: 0.3.0
+ dev: true
+ engines:
+ node: '>=6'
+ resolution:
+ integrity: sha512-d12oKl6za/GGXmlytzVPzzTdPCKgti/Kq2kNhtfm5vv9hkNbyrTvizMBm6zZ5rRWX/sIWl3znjIJ8xy6Hofoeg==
+ /rollup-pluginutils/2.8.2:
+ dependencies:
+ estree-walker: 0.6.1
+ dev: true
+ resolution:
+ integrity: sha512-EEp9NhnUkwY8aif6bxgovPHMoMoNr2FulJziTndpt5H9RdwC47GSGuII9XxpSdzVGM0GWrNPHV6ie1LTNJPaLQ==
+ /rollup/1.28.0:
+ dependencies:
+ '@types/estree': 0.0.41
+ '@types/node': 13.1.4
+ acorn: 7.1.0
+ dev: true
+ hasBin: true
+ resolution:
+ integrity: sha512-v2J/DmQi9+Nf6frGqzwZRvbiuTTrqH0yzoUF4Eybf8sONT4UpLZzJYnYzW96Zm9X1+4SJmijfnFBWCzHDAXYnQ==
+ /rsvp/4.8.5:
+ dev: true
+ engines:
+ node: 6.* || >= 7.*
+ resolution:
+ integrity: sha512-nfMOlASu9OnRJo1mbEk2cz0D56a1MBNrJ7orjRZQG10XDyuvwksKbuXNp6qa+kbn839HwjwhBzhFmdsaEAfauA==
+ /run-async/2.3.0:
+ dependencies:
+ is-promise: 2.1.0
+ dev: true
+ engines:
+ node: '>=0.12.0'
+ resolution:
+ integrity: sha1-A3GrSuC91yDUFm19/aZP96RFpsA=
+ /run-queue/1.0.3:
+ dependencies:
+ aproba: 1.2.0
+ dev: true
+ resolution:
+ integrity: sha1-6Eg5bwV9Ij8kOGkkYY4laUFh7Ec=
+ /rxjs/6.5.4:
+ dependencies:
+ tslib: 1.10.0
+ dev: true
+ engines:
+ npm: '>=2.0.0'
+ resolution:
+ integrity: sha512-naMQXcgEo3csAEGvw/NydRA0fuS2nDZJiw1YUWFKU7aPPAPGZEsD4Iimit96qwCieH6y614MCLYwdkrWx7z/7Q==
+ /safe-buffer/5.1.2:
+ dev: true
+ resolution:
+ integrity: sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==
+ /safe-buffer/5.2.0:
+ dev: true
+ resolution:
+ integrity: sha512-fZEwUGbVl7kouZs1jCdMLdt95hdIv0ZeHg6L7qPeciMZhZ+/gdesW4wgTARkrFWEpspjEATAzUGPG8N2jJiwbg==
+ /safe-regex/1.1.0:
+ dependencies:
+ ret: 0.1.15
+ dev: true
+ resolution:
+ integrity: sha1-QKNmnzsHfR6UPURinhV91IAjvy4=
+ /safer-buffer/2.1.2:
+ dev: true
+ resolution:
+ integrity: sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==
+ /sane/4.1.0:
+ dependencies:
+ '@cnakazawa/watch': 1.0.3
+ anymatch: 2.0.0
+ capture-exit: 2.0.0
+ exec-sh: 0.3.4
+ execa: 1.0.0
+ fb-watchman: 2.0.1
+ micromatch: 3.1.10
+ minimist: 1.2.0
+ walker: 1.0.7
+ dev: true
+ engines:
+ node: 6.* || 8.* || >= 10.*
+ hasBin: true
+ resolution:
+ integrity: sha512-hhbzAgTIX8O7SHfp2c8/kREfEn4qO/9q8C9beyY6+tvZ87EpoZ3i1RIEvp27YBswnNbY9mWd6paKVmKbAgLfZA==
+ /sanitize.css/10.0.0:
+ dev: true
+ resolution:
+ integrity: sha512-vTxrZz4dX5W86M6oVWVdOVe72ZiPs41Oi7Z6Km4W5Turyz28mrXSJhhEBZoRtzJWIv3833WKVwLSDWWkEfupMg==
+ /sass-loader/8.0.0_webpack@4.41.2:
+ dependencies:
+ clone-deep: 4.0.1
+ loader-utils: 1.2.3
+ neo-async: 2.6.1
+ schema-utils: 2.6.1
+ semver: 6.3.0
+ webpack: 4.41.2_webpack@4.41.2
+ dev: true
+ engines:
+ node: '>= 8.9.0'
+ peerDependencies:
+ fibers: '>= 3.1.0'
+ node-sass: ^4.0.0
+ sass: ^1.3.0
+ webpack: ^4.36.0
+ peerDependenciesMeta:
+ fibers:
+ optional: true
+ node-sass:
+ optional: true
+ sass:
+ optional: true
+ resolution:
+ integrity: sha512-+qeMu563PN7rPdit2+n5uuYVR0SSVwm0JsOUsaJXzgYcClWSlmX0iHDnmeOobPkf5kUglVot3QS6SyLyaQoJ4w==
+ /sax/1.2.4:
+ dev: true
+ resolution:
+ integrity: sha512-NqVDv9TpANUjFm0N8uM5GxL36UgKi9/atZw+x7YFnQ8ckwFGKrl4xX4yWtrey3UJm5nP1kUbnYgLopqWNSRhWw==
+ /saxes/3.1.11:
+ dependencies:
+ xmlchars: 2.2.0
+ dev: true
+ engines:
+ node: '>=8'
+ resolution:
+ integrity: sha512-Ydydq3zC+WYDJK1+gRxRapLIED9PWeSuuS41wqyoRmzvhhh9nc+QQrVMKJYzJFULazeGhzSV0QleN2wD3boh2g==
+ /scheduler/0.18.0:
+ dependencies:
+ loose-envify: 1.4.0
+ object-assign: 4.1.1
+ dev: true
+ resolution:
+ integrity: sha512-agTSHR1Nbfi6ulI0kYNK0203joW2Y5W4po4l+v03tOoiJKpTBbxpNhWDvqc/4IcOw+KLmSiQLTasZ4cab2/UWQ==
+ /schema-utils/1.0.0:
+ dependencies:
+ ajv: 6.10.2
+ ajv-errors: 1.0.1_ajv@6.10.2
+ ajv-keywords: 3.4.1_ajv@6.10.2
+ dev: true
+ engines:
+ node: '>= 4'
+ resolution:
+ integrity: sha512-i27Mic4KovM/lnGsy8whRCHhc7VicJajAjTrYg11K9zfZXnYIt4k5F+kZkwjnrhKzLic/HLU4j11mjsz2G/75g==
+ /schema-utils/2.6.1:
+ dependencies:
+ ajv: 6.10.2
+ ajv-keywords: 3.4.1_ajv@6.10.2
+ dev: true
+ engines:
+ node: '>= 8.9.0'
+ resolution:
+ integrity: sha512-0WXHDs1VDJyo+Zqs9TKLKyD/h7yDpHUhEFsM2CzkICFdoX1av+GBq/J2xRTFfsQO5kBfhZzANf2VcIm84jqDbg==
+ /select-hose/2.0.0:
+ dev: true
+ resolution:
+ integrity: sha1-Yl2GWPhlr0Psliv8N2o3NZpJlMo=
+ /selfsigned/1.10.7:
+ dependencies:
+ node-forge: 0.9.0
+ dev: true
+ resolution:
+ integrity: sha512-8M3wBCzeWIJnQfl43IKwOmC4H/RAp50S8DF60znzjW5GVqTcSe2vWclt7hmYVPkKPlHWOu5EaWOMZ2Y6W8ZXTA==
+ /semver/5.5.0:
+ dev: true
+ hasBin: true
+ resolution:
+ integrity: sha512-4SJ3dm0WAwWy/NVeioZh5AntkdJoWKxHxcmyP622fOkgHa4z3R0TdBJICINyaSDE6uNwVc8gZr+ZinwZAH4xIA==
+ /semver/5.7.1:
+ dev: true
+ hasBin: true
+ resolution:
+ integrity: sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==
+ /semver/6.3.0:
+ dev: true
+ hasBin: true
+ resolution:
+ integrity: sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==
+ /semver/7.0.0:
+ dev: true
+ hasBin: true
+ resolution:
+ integrity: sha512-+GB6zVA9LWh6zovYQLALHwv5rb2PHGlJi3lfiqIHxR0uuwCgefcOJc59v9fv1w8GbStwxuuqqAjI9NMAOOgq1A==
+ /send/0.17.1:
+ dependencies:
+ debug: 2.6.9
+ depd: 1.1.2
+ destroy: 1.0.4
+ encodeurl: 1.0.2
+ escape-html: 1.0.3
+ etag: 1.8.1
+ fresh: 0.5.2
+ http-errors: 1.7.3
+ mime: 1.6.0
+ ms: 2.1.1
+ on-finished: 2.3.0
+ range-parser: 1.2.1
+ statuses: 1.5.0
+ dev: true
+ engines:
+ node: '>= 0.8.0'
+ resolution:
+ integrity: sha512-BsVKsiGcQMFwT8UxypobUKyv7irCNRHk1T0G680vk88yf6LBByGcZJOTJCrTP2xVN6yI+XjPJcNuE3V4fT9sAg==
+ /serialize-javascript/2.1.2:
+ dev: true
+ resolution:
+ integrity: sha512-rs9OggEUF0V4jUSecXazOYsLfu7OGK2qIn3c7IPBiffz32XniEp/TX9Xmc9LQfK2nQ2QKHvZ2oygKUGU0lG4jQ==
+ /serve-index/1.9.1:
+ dependencies:
+ accepts: 1.3.7
+ batch: 0.6.1
+ debug: 2.6.9
+ escape-html: 1.0.3
+ http-errors: 1.6.3
+ mime-types: 2.1.26
+ parseurl: 1.3.3
+ dev: true
+ engines:
+ node: '>= 0.8.0'
+ resolution:
+ integrity: sha1-03aNabHn2C5c4FD/9bRTvqEqkjk=
+ /serve-static/1.14.1:
+ dependencies:
+ encodeurl: 1.0.2
+ escape-html: 1.0.3
+ parseurl: 1.3.3
+ send: 0.17.1
+ dev: true
+ engines:
+ node: '>= 0.8.0'
+ resolution:
+ integrity: sha512-JMrvUwE54emCYWlTI+hGrGv5I8dEwmco/00EvkzIIsR7MqrHonbD9pO2MOfFnpFntl7ecpZs+3mW+XbQZu9QCg==
+ /set-blocking/2.0.0:
+ dev: true
+ resolution:
+ integrity: sha1-BF+XgtARrppoA93TgrJDkrPYkPc=
+ /set-value/2.0.1:
+ dependencies:
+ extend-shallow: 2.0.1
+ is-extendable: 0.1.1
+ is-plain-object: 2.0.4
+ split-string: 3.1.0
+ dev: true
+ engines:
+ node: '>=0.10.0'
+ resolution:
+ integrity: sha512-JxHc1weCN68wRY0fhCoXpyK55m/XPHafOmK4UWD7m2CI14GMcFypt4w/0+NV5f/ZMby2F6S2wwA7fgynh9gWSw==
+ /setimmediate/1.0.5:
+ dev: true
+ resolution:
+ integrity: sha1-KQy7Iy4waULX1+qbg3Mqt4VvgoU=
+ /setprototypeof/1.1.0:
+ dev: true
+ resolution:
+ integrity: sha512-BvE/TwpZX4FXExxOxZyRGQQv651MSwmWKZGqvmPcRIjDqWub67kTKuIMx43cZZrS/cBBzwBcNDWoFxt2XEFIpQ==
+ /setprototypeof/1.1.1:
+ dev: true
+ resolution:
+ integrity: sha512-JvdAWfbXeIGaZ9cILp38HntZSFSo3mWg6xGcJJsd+d4aRMOqauag1C63dJfDw7OaMYwEbHMOxEZ1lqVRYP2OAw==
+ /sha.js/2.4.11:
+ dependencies:
+ inherits: 2.0.4
+ safe-buffer: 5.2.0
+ dev: true
+ hasBin: true
+ resolution:
+ integrity: sha512-QMEp5B7cftE7APOjk5Y6xgrbWu+WkLVQwk8JNjZ8nKRciZaByEW6MubieAiToS7+dwvrjGhH8jRXz3MVd0AYqQ==
+ /shallow-clone/0.1.2:
+ dependencies:
+ is-extendable: 0.1.1
+ kind-of: 2.0.1
+ lazy-cache: 0.2.7
+ mixin-object: 2.0.1
+ dev: true
+ engines:
+ node: '>=0.10.0'
+ resolution:
+ integrity: sha1-WQnodLp3EG1zrEFM/sH/yofZcGA=
+ /shallow-clone/3.0.1:
+ dependencies:
+ kind-of: 6.0.2
+ dev: true
+ engines:
+ node: '>=8'
+ resolution:
+ integrity: sha512-/6KqX+GVUdqPuPPd2LxDDxzX6CAbjJehAAOKlNpqqUpAqPM6HeL8f+o3a+JsyGjn2lv0WY8UsTgUJjU9Ok55NA==
+ /shebang-command/1.2.0:
+ dependencies:
+ shebang-regex: 1.0.0
+ dev: true
+ engines:
+ node: '>=0.10.0'
+ resolution:
+ integrity: sha1-RKrGW2lbAzmJaMOfNj/uXer98eo=
+ /shebang-command/2.0.0:
+ dependencies:
+ shebang-regex: 3.0.0
+ dev: true
+ engines:
+ node: '>=8'
+ resolution:
+ integrity: sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==
+ /shebang-regex/1.0.0:
+ dev: true
+ engines:
+ node: '>=0.10.0'
+ resolution:
+ integrity: sha1-2kL0l0DAtC2yypcoVxyxkMmO/qM=
+ /shebang-regex/3.0.0:
+ dev: true
+ engines:
+ node: '>=8'
+ resolution:
+ integrity: sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==
+ /shell-quote/1.7.2:
+ dev: true
+ resolution:
+ integrity: sha512-mRz/m/JVscCrkMyPqHc/bczi3OQHkLTqXHEFu0zDhK/qfv3UcOA4SVmRCLmos4bhjr9ekVQubj/R7waKapmiQg==
+ /shellwords/0.1.1:
+ dev: true
+ resolution:
+ integrity: sha512-vFwSUfQvqybiICwZY5+DAWIPLKsWO31Q91JSKl3UYv+K5c2QRPzn0qzec6QPu1Qc9eHYItiP3NdJqNVqetYAww==
+ /signal-exit/3.0.2:
+ dev: true
+ resolution:
+ integrity: sha1-tf3AjxKH6hF4Yo5BXiUTK3NkbG0=
+ /simple-swizzle/0.2.2:
+ dependencies:
+ is-arrayish: 0.3.2
+ dev: true
+ resolution:
+ integrity: sha1-pNprY1/8zMoz9w0Xy5JZLeleVXo=
+ /sisteransi/1.0.4:
+ dev: true
+ resolution:
+ integrity: sha512-/ekMoM4NJ59ivGSfKapeG+FWtrmWvA1p6FBZwXrqojw90vJu8lBmrTxCMuBCydKtkaUe2zt4PlxeTKpjwMbyig==
+ /slash/1.0.0:
+ dev: true
+ engines:
+ node: '>=0.10.0'
+ resolution:
+ integrity: sha1-xB8vbDn8FtHNF61LXYlhFK5HDVU=
+ /slash/2.0.0:
+ dev: true
+ engines:
+ node: '>=6'
+ resolution:
+ integrity: sha512-ZYKh3Wh2z1PpEXWr0MpSBZ0V6mZHAQfYevttO11c51CaWjGTaadiKZ+wVt1PbMlDV5qhMFslpZCemhwOK7C89A==
+ /slash/3.0.0:
+ dev: true
+ engines:
+ node: '>=8'
+ resolution:
+ integrity: sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==
+ /slice-ansi/2.1.0:
+ dependencies:
+ ansi-styles: 3.2.1
+ astral-regex: 1.0.0
+ is-fullwidth-code-point: 2.0.0
+ dev: true
+ engines:
+ node: '>=6'
+ resolution:
+ integrity: sha512-Qu+VC3EwYLldKa1fCxuuvULvSJOKEgk9pi8dZeCVK7TqBfUNTH4sFkk4joj8afVSfAYgJoSOetjx9QWOJ5mYoQ==
+ /snapdragon-node/2.1.1:
+ dependencies:
+ define-property: 1.0.0
+ isobject: 3.0.1
+ snapdragon-util: 3.0.1
+ dev: true
+ engines:
+ node: '>=0.10.0'
+ resolution:
+ integrity: sha512-O27l4xaMYt/RSQ5TR3vpWCAB5Kb/czIcqUFOM/C4fYcLnbZUc1PkjTAMjof2pBWaSTwOUd6qUHcFGVGj7aIwnw==
+ /snapdragon-util/3.0.1:
+ dependencies:
+ kind-of: 3.2.2
+ dev: true
+ engines:
+ node: '>=0.10.0'
+ resolution:
+ integrity: sha512-mbKkMdQKsjX4BAL4bRYTj21edOf8cN7XHdYUJEe+Zn99hVEYcMvKPct1IqNe7+AZPirn8BCDOQBHQZknqmKlZQ==
+ /snapdragon/0.8.2:
+ dependencies:
+ base: 0.11.2
+ debug: 2.6.9
+ define-property: 0.2.5
+ extend-shallow: 2.0.1
+ map-cache: 0.2.2
+ source-map: 0.5.7
+ source-map-resolve: 0.5.3
+ use: 3.1.1
+ dev: true
+ engines:
+ node: '>=0.10.0'
+ resolution:
+ integrity: sha512-FtyOnWN/wCHTVXOMwvSv26d+ko5vWlIDD6zoUJ7LW8vh+ZBC8QdljveRP+crNrtBwioEUWy/4dMtbBjA4ioNlg==
+ /sockjs-client/1.4.0:
+ dependencies:
+ debug: 3.2.6
+ eventsource: 1.0.7
+ faye-websocket: 0.11.3
+ inherits: 2.0.4
+ json3: 3.3.3
+ url-parse: 1.4.7
+ dev: true
+ resolution:
+ integrity: sha512-5zaLyO8/nri5cua0VtOrFXBPK1jbL4+1cebT/mmKA1E1ZXOvJrII75bPu0l0k843G/+iAbhEqzyKr0w/eCCj7g==
+ /sockjs/0.3.19:
+ dependencies:
+ faye-websocket: 0.10.0
+ uuid: 3.3.3
+ dev: true
+ resolution:
+ integrity: sha512-V48klKZl8T6MzatbLlzzRNhMepEys9Y4oGFpypBFFn1gLI/QQ9HtLLyWJNbPlwGLelOVOEijUbTTJeLLI59jLw==
+ /sort-keys/1.1.2:
+ dependencies:
+ is-plain-obj: 1.1.0
+ dev: true
+ engines:
+ node: '>=0.10.0'
+ resolution:
+ integrity: sha1-RBttTTRnmPG05J6JIK37oOVD+a0=
+ /source-list-map/2.0.1:
+ dev: true
+ resolution:
+ integrity: sha512-qnQ7gVMxGNxsiL4lEuJwe/To8UnK7fAnmbGEEH8RpLouuKbeEm0lhbQVFIrNSuB+G7tVrAlVsZgETT5nljf+Iw==
+ /source-map-resolve/0.5.3:
+ dependencies:
+ atob: 2.1.2
+ decode-uri-component: 0.2.0
+ resolve-url: 0.2.1
+ source-map-url: 0.4.0
+ urix: 0.1.0
+ dev: true
+ resolution:
+ integrity: sha512-Htz+RnsXWk5+P2slx5Jh3Q66vhQj1Cllm0zvnaY98+NFx+Dv2CF/f5O/t8x+KaNdrdIAsruNzoh/KpialbqAnw==
+ /source-map-support/0.5.16:
+ dependencies:
+ buffer-from: 1.1.1
+ source-map: 0.6.1
+ dev: true
+ resolution:
+ integrity: sha512-efyLRJDr68D9hBBNIPWFjhpFzURh+KJykQwvMyW5UiZzYwoF6l4YMMDIJJEyFWxWCqfyxLzz6tSfUFR+kXXsVQ==
+ /source-map-url/0.4.0:
+ dev: true
+ resolution:
+ integrity: sha1-PpNdfd1zYxuXZZlW1VEo6HtQhKM=
+ /source-map/0.5.7:
+ dev: true
+ engines:
+ node: '>=0.10.0'
+ resolution:
+ integrity: sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w=
+ /source-map/0.6.1:
+ dev: true
+ engines:
+ node: '>=0.10.0'
+ resolution:
+ integrity: sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==
+ /sourcemap-codec/1.4.7:
+ dev: true
+ resolution:
+ integrity: sha512-RuN23NzhAOuUtaivhcrjXx1OPXsFeH9m5sI373/U7+tGLKihjUyboZAzOadytMjnqHp1f45RGk1IzDKCpDpSYA==
+ /spawn-command/0.0.2-1:
+ dev: true
+ resolution:
+ integrity: sha1-YvXpRmmBwbeW3Fkpk34RycaSG9A=
+ /spdx-correct/3.1.0:
+ dependencies:
+ spdx-expression-parse: 3.0.0
+ spdx-license-ids: 3.0.5
+ dev: true
+ resolution:
+ integrity: sha512-lr2EZCctC2BNR7j7WzJ2FpDznxky1sjfxvvYEyzxNyb6lZXHODmEoJeFu4JupYlkfha1KZpJyoqiJ7pgA1qq8Q==
+ /spdx-exceptions/2.2.0:
+ dev: true
+ resolution:
+ integrity: sha512-2XQACfElKi9SlVb1CYadKDXvoajPgBVPn/gOQLrTvHdElaVhr7ZEbqJaRnJLVNeaI4cMEAgVCeBMKF6MWRDCRA==
+ /spdx-expression-parse/3.0.0:
+ dependencies:
+ spdx-exceptions: 2.2.0
+ spdx-license-ids: 3.0.5
+ dev: true
+ resolution:
+ integrity: sha512-Yg6D3XpRD4kkOmTpdgbUiEJFKghJH03fiC1OPll5h/0sO6neh2jqRDVHOQ4o/LMea0tgCkbMgea5ip/e+MkWyg==
+ /spdx-license-ids/3.0.5:
+ dev: true
+ resolution:
+ integrity: sha512-J+FWzZoynJEXGphVIS+XEh3kFSjZX/1i9gFBaWQcB+/tmpe2qUsSBABpcxqxnAxFdiUFEgAX1bjYGQvIZmoz9Q==
+ /spdy-transport/3.0.0:
+ dependencies:
+ debug: 4.1.1
+ detect-node: 2.0.4
+ hpack.js: 2.1.6
+ obuf: 1.1.2
+ readable-stream: 3.4.0
+ wbuf: 1.7.3
+ dev: true
+ resolution:
+ integrity: sha512-hsLVFE5SjA6TCisWeJXFKniGGOpBgMLmerfO2aCyCU5s7nJ/rpAepqmFifv/GCbSbueEeAJJnmSQ2rKC/g8Fcw==
+ /spdy/4.0.1:
+ dependencies:
+ debug: 4.1.1
+ handle-thing: 2.0.0
+ http-deceiver: 1.2.7
+ select-hose: 2.0.0
+ spdy-transport: 3.0.0
+ dev: true
+ engines:
+ node: '>=6.0.0'
+ resolution:
+ integrity: sha512-HeZS3PBdMA+sZSu0qwpCxl3DeALD5ASx8pAX0jZdKXSpPWbQ6SYGnlg3BBmYLx5LtiZrmkAZfErCm2oECBcioA==
+ /split-string/3.1.0:
+ dependencies:
+ extend-shallow: 3.0.2
+ dev: true
+ engines:
+ node: '>=0.10.0'
+ resolution:
+ integrity: sha512-NzNVhJDYpwceVVii8/Hu6DKfD2G+NrQHlS/V/qgv763EYudVwEcMQNxd2lh+0VrUByXN/oJkl5grOhYWvQUYiw==
+ /sprintf-js/1.0.3:
+ dev: true
+ resolution:
+ integrity: sha1-BOaSb2YolTVPPdAVIDYzuFcpfiw=
+ /sshpk/1.16.1:
+ dependencies:
+ asn1: 0.2.4
+ assert-plus: 1.0.0
+ bcrypt-pbkdf: 1.0.2
+ dashdash: 1.14.1
+ ecc-jsbn: 0.1.2
+ getpass: 0.1.7
+ jsbn: 0.1.1
+ safer-buffer: 2.1.2
+ tweetnacl: 0.14.5
+ dev: true
+ engines:
+ node: '>=0.10.0'
+ hasBin: true
+ resolution:
+ integrity: sha512-HXXqVUq7+pcKeLqqZj6mHFUMvXtOJt1uoUx09pFW6011inTMxqI8BA8PM95myrIyyKwdnzjdFjLiE6KBPVtJIg==
+ /ssri/6.0.1:
+ dependencies:
+ figgy-pudding: 3.5.1
+ dev: true
+ resolution:
+ integrity: sha512-3Wge10hNcT1Kur4PDFwEieXSCMCJs/7WvSACcrMYrNp+b8kDL1/0wJch5Ni2WrtwEa2IO8OsVfeKIciKCDx/QA==
+ /ssri/7.1.0:
+ dependencies:
+ figgy-pudding: 3.5.1
+ minipass: 3.1.1
+ dev: true
+ engines:
+ node: '>= 8'
+ resolution:
+ integrity: sha512-77/WrDZUWocK0mvA5NTRQyveUf+wsrIc6vyrxpS8tVvYBcX215QbafrJR3KtkpskIzoFLqqNuuYQvxaMjXJ/0g==
+ /stable/0.1.8:
+ dev: true
+ resolution:
+ integrity: sha512-ji9qxRnOVfcuLDySj9qzhGSEFVobyt1kIOSkj1qZzYLzq7Tos/oUUWvotUPQLlrsidqsK6tBH89Bc9kL5zHA6w==
+ /stack-utils/1.0.2:
+ dev: true
+ engines:
+ node: '>=0.10.0'
+ resolution:
+ integrity: sha512-MTX+MeG5U994cazkjd/9KNAapsHnibjMLnfXodlkXw76JEea0UiNzrqidzo1emMwk7w5Qhc9jd4Bn9TBb1MFwA==
+ /static-extend/0.1.2:
+ dependencies:
+ define-property: 0.2.5
+ object-copy: 0.1.0
+ dev: true
+ engines:
+ node: '>=0.10.0'
+ resolution:
+ integrity: sha1-YICcOcv/VTNyJv1eC1IPNB8ftcY=
+ /statuses/1.5.0:
+ dev: true
+ engines:
+ node: '>= 0.6'
+ resolution:
+ integrity: sha1-Fhx9rBd2Wf2YEfQ3cfqZOBR4Yow=
+ /stealthy-require/1.1.1:
+ dev: true
+ engines:
+ node: '>=0.10.0'
+ resolution:
+ integrity: sha1-NbCYdbT/SfJqd35QmzCQoyJr8ks=
+ /stream-browserify/2.0.2:
+ dependencies:
+ inherits: 2.0.4
+ readable-stream: 2.3.7
+ dev: true
+ resolution:
+ integrity: sha512-nX6hmklHs/gr2FuxYDltq8fJA1GDlxKQCz8O/IM4atRqBH8OORmBNgfvW5gG10GT/qQ9u0CzIvr2X5Pkt6ntqg==
+ /stream-each/1.2.3:
+ dependencies:
+ end-of-stream: 1.4.4
+ stream-shift: 1.0.1
+ dev: true
+ resolution:
+ integrity: sha512-vlMC2f8I2u/bZGqkdfLQW/13Zihpej/7PmSiMQsbYddxuTsJp8vRe2x2FvVExZg7FaOds43ROAuFJwPR4MTZLw==
+ /stream-http/2.8.3:
+ dependencies:
+ builtin-status-codes: 3.0.0
+ inherits: 2.0.4
+ readable-stream: 2.3.7
+ to-arraybuffer: 1.0.1
+ xtend: 4.0.2
+ dev: true
+ resolution:
+ integrity: sha512-+TSkfINHDo4J+ZobQLWiMouQYB+UVYFttRA94FpEzzJ7ZdqcL4uUUQ7WkdkI4DSozGmgBUE/a47L+38PenXhUw==
+ /stream-shift/1.0.1:
+ dev: true
+ resolution:
+ integrity: sha512-AiisoFqQ0vbGcZgQPY1cdP2I76glaVA/RauYR4G4thNFgkTqr90yXTo4LYX60Jl+sIlPNHHdGSwo01AvbKUSVQ==
+ /strict-uri-encode/1.1.0:
+ dev: true
+ engines:
+ node: '>=0.10.0'
+ resolution:
+ integrity: sha1-J5siXfHVgrH1TmWt3UNS4Y+qBxM=
+ /string-hash/1.1.3:
+ dev: true
+ resolution:
+ integrity: sha1-6Kr8CsGFW0Zmkp7X3RJ1311sgRs=
+ /string-length/2.0.0:
+ dependencies:
+ astral-regex: 1.0.0
+ strip-ansi: 4.0.0
+ dev: true
+ engines:
+ node: '>=4'
+ resolution:
+ integrity: sha1-1A27aGo6zpYMHP/KVivyxF+DY+0=
+ /string-length/3.1.0:
+ dependencies:
+ astral-regex: 1.0.0
+ strip-ansi: 5.2.0
+ dev: true
+ engines:
+ node: '>=8'
+ resolution:
+ integrity: sha512-Ttp5YvkGm5v9Ijagtaz1BnN+k9ObpvS0eIBblPMp2YWL8FBmi9qblQ9fexc2k/CXFgrTIteU3jAw3payCnwSTA==
+ /string-width/1.0.2:
+ dependencies:
+ code-point-at: 1.1.0
+ is-fullwidth-code-point: 1.0.0
+ strip-ansi: 3.0.1
+ dev: true
+ engines:
+ node: '>=0.10.0'
+ resolution:
+ integrity: sha1-EYvfW4zcUaKn5w0hHgfisLmxB9M=
+ /string-width/2.1.1:
+ dependencies:
+ is-fullwidth-code-point: 2.0.0
+ strip-ansi: 4.0.0
+ dev: true
+ engines:
+ node: '>=4'
+ resolution:
+ integrity: sha512-nOqH59deCq9SRHlxq1Aw85Jnt4w6KvLKqWVik6oA9ZklXLNIOlqg4F2yrT1MVaTjAqvVwdfeZ7w7aCvJD7ugkw==
+ /string-width/3.1.0:
+ dependencies:
+ emoji-regex: 7.0.3
+ is-fullwidth-code-point: 2.0.0
+ strip-ansi: 5.2.0
+ dev: true
+ engines:
+ node: '>=6'
+ resolution:
+ integrity: sha512-vafcv6KjVZKSgz06oM/H6GDBrAtz8vdhQakGjFIvNrHA6y3HCF1CInLy+QLq8dTJPQ1b+KDUqDFctkdRW44e1w==
+ /string-width/4.2.0:
+ dependencies:
+ emoji-regex: 8.0.0
+ is-fullwidth-code-point: 3.0.0
+ strip-ansi: 6.0.0
+ dev: true
+ engines:
+ node: '>=8'
+ resolution:
+ integrity: sha512-zUz5JD+tgqtuDjMhwIg5uFVV3dtqZ9yQJlZVfq4I01/K5Paj5UHj7VyrQOJvzawSVlKpObApbfD0Ed6yJc+1eg==
+ /string.prototype.trimleft/2.1.1:
+ dependencies:
+ define-properties: 1.1.3
+ function-bind: 1.1.1
+ dev: true
+ engines:
+ node: '>= 0.4'
+ resolution:
+ integrity: sha512-iu2AGd3PuP5Rp7x2kEZCrB2Nf41ehzh+goo8TV7z8/XDBbsvc6HQIlUl9RjkZ4oyrW1XM5UwlGl1oVEaDjg6Ag==
+ /string.prototype.trimright/2.1.1:
+ dependencies:
+ define-properties: 1.1.3
+ function-bind: 1.1.1
+ dev: true
+ engines:
+ node: '>= 0.4'
+ resolution:
+ integrity: sha512-qFvWL3/+QIgZXVmJBfpHmxLB7xsUXz6HsUmP8+5dRaC3Q7oKUv9Vo6aMCRZC1smrtyECFsIT30PqBJ1gTjAs+g==
+ /string_decoder/1.1.1:
+ dependencies:
+ safe-buffer: 5.1.2
+ dev: true
+ resolution:
+ integrity: sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==
+ /string_decoder/1.3.0:
+ dependencies:
+ safe-buffer: 5.2.0
+ dev: true
+ resolution:
+ integrity: sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==
+ /stringify-object/3.3.0:
+ dependencies:
+ get-own-enumerable-property-symbols: 3.0.2
+ is-obj: 1.0.1
+ is-regexp: 1.0.0
+ dev: true
+ engines:
+ node: '>=4'
+ resolution:
+ integrity: sha512-rHqiFh1elqCQ9WPLIC8I0Q/g/wj5J1eMkyoiD6eoQApWHP0FtlK7rqnhmabL5VUY9JQCcqwwvlOaSuutekgyrw==
+ /strip-ansi/3.0.1:
+ dependencies:
+ ansi-regex: 2.1.1
+ dev: true
+ engines:
+ node: '>=0.10.0'
+ resolution:
+ integrity: sha1-ajhfuIU9lS1f8F0Oiq+UJ43GPc8=
+ /strip-ansi/4.0.0:
+ dependencies:
+ ansi-regex: 3.0.0
+ dev: true
+ engines:
+ node: '>=4'
+ resolution:
+ integrity: sha1-qEeQIusaw2iocTibY1JixQXuNo8=
+ /strip-ansi/5.2.0:
+ dependencies:
+ ansi-regex: 4.1.0
+ dev: true
+ engines:
+ node: '>=6'
+ resolution:
+ integrity: sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA==
+ /strip-ansi/6.0.0:
+ dependencies:
+ ansi-regex: 5.0.0
+ dev: true
+ engines:
+ node: '>=8'
+ resolution:
+ integrity: sha512-AuvKTrTfQNYNIctbR1K/YGTR1756GycPsg7b9bdV9Duqur4gv6aKqHXah67Z8ImS7WEz5QVcOtlfW2rZEugt6w==
+ /strip-bom/3.0.0:
+ dev: true
+ engines:
+ node: '>=4'
+ resolution:
+ integrity: sha1-IzTBjpx1n3vdVv3vfprj1YjmjtM=
+ /strip-comments/1.0.2:
+ dependencies:
+ babel-extract-comments: 1.0.0
+ babel-plugin-transform-object-rest-spread: 6.26.0
+ dev: true
+ engines:
+ node: '>=4'
+ resolution:
+ integrity: sha512-kL97alc47hoyIQSV165tTt9rG5dn4w1dNnBhOQ3bOU1Nc1hel09jnXANaHJ7vzHLd4Ju8kseDGzlev96pghLFw==
+ /strip-eof/1.0.0:
+ dev: true
+ engines:
+ node: '>=0.10.0'
+ resolution:
+ integrity: sha1-u0P/VZim6wXYm1n80SnJgzE2Br8=
+ /strip-json-comments/2.0.1:
+ dev: true
+ engines:
+ node: '>=0.10.0'
+ resolution:
+ integrity: sha1-PFMZQukIwml8DsNEhYwobHygpgo=
+ /strip-json-comments/3.0.1:
+ dev: true
+ engines:
+ node: '>=8'
+ resolution:
+ integrity: sha512-VTyMAUfdm047mwKl+u79WIdrZxtFtn+nBxHeb844XBQ9uMNTuTHdx2hc5RiAJYqwTj3wc/xe5HLSdJSkJ+WfZw==
+ /strip-outer/1.0.1:
+ dependencies:
+ escape-string-regexp: 1.0.5
+ dev: true
+ engines:
+ node: '>=0.10.0'
+ resolution:
+ integrity: sha512-k55yxKHwaXnpYGsOzg4Vl8+tDrWylxDEpknGjhTiZB8dFRU5rTo9CAzeycivxV3s+zlTKwrs6WxMxR95n26kwg==
+ /strip-url-auth/1.0.1:
+ dev: true
+ engines:
+ node: '>=0.10.0'
+ resolution:
+ integrity: sha1-IrD6OkE4WzO+PzMVUbu4N/oM164=
+ /style-inject/0.3.0:
+ dev: true
+ resolution:
+ integrity: sha512-IezA2qp+vcdlhJaVm5SOdPPTUu0FCEqfNSli2vRuSIBbu5Nq5UvygTk/VzeCqfLz2Atj3dVII5QBKGZRZ0edzw==
+ /style-loader/1.0.0_webpack@4.41.2:
+ dependencies:
+ loader-utils: 1.2.3
+ schema-utils: 2.6.1
+ webpack: 4.41.2_webpack@4.41.2
+ dev: true
+ engines:
+ node: '>= 8.9.0'
+ peerDependencies:
+ webpack: ^4.0.0
+ resolution:
+ integrity: sha512-B0dOCFwv7/eY31a5PCieNwMgMhVGFe9w+rh7s/Bx8kfFkrth9zfTZquoYvdw8URgiqxObQKcpW51Ugz1HjfdZw==
+ /stylehacks/4.0.3:
+ dependencies:
+ browserslist: 4.8.3
+ postcss: 7.0.26
+ postcss-selector-parser: 3.1.1
+ dev: true
+ engines:
+ node: '>=6.9.0'
+ resolution:
+ integrity: sha512-7GlLk9JwlElY4Y6a/rmbH2MhVlTyVmiJd1PfTCqFaIBEGMYNsrO/v3SeGTdhBThLg4Z+NbOk/qFMwCa+J+3p/g==
+ /supports-color/2.0.0:
+ dev: true
+ engines:
+ node: '>=0.8.0'
+ resolution:
+ integrity: sha1-U10EXOa2Nj+kARcIRimZXp3zJMc=
+ /supports-color/3.2.3:
+ dependencies:
+ has-flag: 1.0.0
+ dev: true
+ engines:
+ node: '>=0.8.0'
+ resolution:
+ integrity: sha1-ZawFBLOVQXHYpklGsq48u4pfVPY=
+ /supports-color/5.5.0:
+ dependencies:
+ has-flag: 3.0.0
+ dev: true
+ engines:
+ node: '>=4'
+ resolution:
+ integrity: sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==
+ /supports-color/6.1.0:
+ dependencies:
+ has-flag: 3.0.0
+ dev: true
+ engines:
+ node: '>=6'
+ resolution:
+ integrity: sha512-qe1jfm1Mg7Nq/NSh6XE24gPXROEVsWHxC1LIx//XNlD9iw7YZQGjZNjYN7xGaEG6iKdA8EtNFW6R0gjnVXp+wQ==
+ /supports-color/7.1.0:
+ dependencies:
+ has-flag: 4.0.0
+ dev: true
+ engines:
+ node: '>=8'
+ resolution:
+ integrity: sha512-oRSIpR8pxT1Wr2FquTNnGet79b3BWljqOuoW/h4oBhxJ/HUbX5nX6JSruTkvXDCFMwDPvsaTTbvMLKZWSy0R5g==
+ /svg-parser/2.0.2:
+ dev: true
+ resolution:
+ integrity: sha512-1gtApepKFweigFZj3sGO8KT8LvVZK8io146EzXrpVuWCDAbISz/yMucco3hWTkpZNoPabM+dnMOpy6Swue68Zg==
+ /svgo/1.3.2:
+ dependencies:
+ chalk: 2.4.2
+ coa: 2.0.2
+ css-select: 2.1.0
+ css-select-base-adapter: 0.1.1
+ css-tree: 1.0.0-alpha.37
+ csso: 4.0.2
+ js-yaml: 3.13.1
+ mkdirp: 0.5.1
+ object.values: 1.1.1
+ sax: 1.2.4
+ stable: 0.1.8
+ unquote: 1.1.1
+ util.promisify: 1.0.0
+ dev: true
+ engines:
+ node: '>=4.0.0'
+ hasBin: true
+ resolution:
+ integrity: sha512-yhy/sQYxR5BkC98CY7o31VGsg014AKLEPxdfhora76l36hD9Rdy5NZA/Ocn6yayNPgSamYdtX2rFJdcv07AYVw==
+ /symbol-tree/3.2.4:
+ dev: true
+ resolution:
+ integrity: sha512-9QNk5KwDF+Bvz+PyObkmSYjI5ksVUYtjW7AU22r2NKcfLJcXp96hkDWU3+XndOsUb+AQ9QhfzfCT2O+CNWT5Tw==
+ /table/5.4.6:
+ dependencies:
+ ajv: 6.10.2
+ lodash: 4.17.15
+ slice-ansi: 2.1.0
+ string-width: 3.1.0
+ dev: true
+ engines:
+ node: '>=6.0.0'
+ resolution:
+ integrity: sha512-wmEc8m4fjnob4gt5riFRtTu/6+4rSe12TpAELNSqHMfF3IqnA+CH37USM6/YR3qRZv7e56kAEAtd6nKZaxe0Ug==
+ /tapable/1.1.3:
+ dev: true
+ engines:
+ node: '>=6'
+ resolution:
+ integrity: sha512-4WK/bYZmj8xLr+HUCODHGF1ZFzsYffasLUgEiMBY4fgtltdO6B4WJtlSbPaDTLpYTcGVwM2qLnFTICEcNxs3kA==
+ /terser-webpack-plugin/1.4.3_webpack@4.41.2:
+ dependencies:
+ cacache: 12.0.3
+ find-cache-dir: 2.1.0
+ is-wsl: 1.1.0
+ schema-utils: 1.0.0
+ serialize-javascript: 2.1.2
+ source-map: 0.6.1
+ terser: 4.6.1
+ webpack: 4.41.2_webpack@4.41.2
+ webpack-sources: 1.4.3
+ worker-farm: 1.7.0
+ dev: true
+ engines:
+ node: '>= 6.9.0'
+ peerDependencies:
+ webpack: ^4.0.0
+ resolution:
+ integrity: sha512-QMxecFz/gHQwteWwSo5nTc6UaICqN1bMedC5sMtUc7y3Ha3Q8y6ZO0iCR8pq4RJC8Hjf0FEPEHZqcMB/+DFCrA==
+ /terser-webpack-plugin/2.2.1_webpack@4.41.2:
+ dependencies:
+ cacache: 13.0.1
+ find-cache-dir: 3.2.0
+ jest-worker: 24.9.0
+ schema-utils: 2.6.1
+ serialize-javascript: 2.1.2
+ source-map: 0.6.1
+ terser: 4.6.1
+ webpack: 4.41.2_webpack@4.41.2
+ webpack-sources: 1.4.3
+ dev: true
+ engines:
+ node: '>= 8.9.0'
+ peerDependencies:
+ webpack: ^4.0.0
+ resolution:
+ integrity: sha512-jwdauV5Al7zopR6OAYvIIRcxXCSvLjZjr7uZE8l2tIWb/ryrGN48sJftqGf5k9z09tWhajx53ldp0XPI080YnA==
+ /terser/4.6.1:
+ dependencies:
+ commander: 2.20.3
+ source-map: 0.6.1
+ source-map-support: 0.5.16
+ dev: true
+ engines:
+ node: '>=6.0.0'
+ hasBin: true
+ resolution:
+ integrity: sha512-w0f2OWFD7ka3zwetgVAhNMeyzEbj39ht2Tb0qKflw9PmW9Qbo5tjTh01QJLkhO9t9RDDQYvk+WXqpECI2C6i2A==
+ /test-exclude/5.2.3:
+ dependencies:
+ glob: 7.1.6
+ minimatch: 3.0.4
+ read-pkg-up: 4.0.0
+ require-main-filename: 2.0.0
+ dev: true
+ engines:
+ node: '>=6'
+ resolution:
+ integrity: sha512-M+oxtseCFO3EDtAaGH7iiej3CBkzXqFMbzqYAACdzKui4eZA+pq3tZEwChvOdNfa7xxy8BfbmgJSIr43cC/+2g==
+ /text-table/0.2.0:
+ dev: true
+ resolution:
+ integrity: sha1-f17oI66AUgfACvLfSoTsP8+lcLQ=
+ /throat/4.1.0:
+ dev: true
+ resolution:
+ integrity: sha1-iQN8vJLFarGJJua6TLsgDhVnKmo=
+ /through/2.3.8:
+ dev: true
+ resolution:
+ integrity: sha1-DdTJ/6q8NXlgsbckEV1+Doai4fU=
+ /through2/2.0.5:
+ dependencies:
+ readable-stream: 2.3.7
+ xtend: 4.0.2
+ dev: true
+ resolution:
+ integrity: sha512-/mrRod8xqpA+IHSLyGCQ2s8SPHiCDEeQJSep1jqLYeEUClOFG2Qsh+4FU6G9VeqpZnGW/Su8LQGc4YKni5rYSQ==
+ /thunky/1.1.0:
+ dev: true
+ resolution:
+ integrity: sha512-eHY7nBftgThBqOyHGVN+l8gF0BucP09fMo0oO/Lb0w1OF80dJv+lDVpXG60WMQvkcxAkNybKsrEIE3ZtKGmPrA==
+ /timers-browserify/2.0.11:
+ dependencies:
+ setimmediate: 1.0.5
+ dev: true
+ engines:
+ node: '>=0.6.0'
+ resolution:
+ integrity: sha512-60aV6sgJ5YEbzUdn9c8kYGIqOubPoUdqQCul3SBAsRCZ40s6Y5cMcrW4dt3/k/EsbLVJNl9n6Vz3fTc+k2GeKQ==
+ /timsort/0.3.0:
+ dev: true
+ resolution:
+ integrity: sha1-QFQRqOfmM5/mTbmiNN4R3DHgK9Q=
+ /tmp/0.0.33:
+ dependencies:
+ os-tmpdir: 1.0.2
+ dev: true
+ engines:
+ node: '>=0.6.0'
+ resolution:
+ integrity: sha512-jRCJlojKnZ3addtTOjdIqoRuPEKBvNXcGYqzO6zWZX8KfKEpnGY5jfggJQ3EjKuu8D4bJRr0y+cYJFmYbImXGw==
+ /tmpl/1.0.4:
+ dev: true
+ resolution:
+ integrity: sha1-I2QN17QtAEM5ERQIIOXPRA5SHdE=
+ /to-arraybuffer/1.0.1:
+ dev: true
+ resolution:
+ integrity: sha1-fSKbH8xjfkZsoIEYCDanqr/4P0M=
+ /to-fast-properties/2.0.0:
+ dev: true
+ engines:
+ node: '>=4'
+ resolution:
+ integrity: sha1-3F5pjL0HkmW8c+A3doGk5Og/YW4=
+ /to-object-path/0.3.0:
+ dependencies:
+ kind-of: 3.2.2
+ dev: true
+ engines:
+ node: '>=0.10.0'
+ resolution:
+ integrity: sha1-KXWIt7Dn4KwI4E5nL4XB9JmeF68=
+ /to-regex-range/2.1.1:
+ dependencies:
+ is-number: 3.0.0
+ repeat-string: 1.6.1
+ dev: true
+ engines:
+ node: '>=0.10.0'
+ resolution:
+ integrity: sha1-fIDBe53+vlmeJzZ+DU3VWQFB2zg=
+ /to-regex/3.0.2:
+ dependencies:
+ define-property: 2.0.2
+ extend-shallow: 3.0.2
+ regex-not: 1.0.2
+ safe-regex: 1.1.0
+ dev: true
+ engines:
+ node: '>=0.10.0'
+ resolution:
+ integrity: sha512-FWtleNAtZ/Ki2qtqej2CXTOayOH9bHDQF+Q48VpWyDXjbYxA4Yz8iDB31zXOBUlOHHKidDbqGVrTUvQMPmBGBw==
+ /toidentifier/1.0.0:
+ dev: true
+ engines:
+ node: '>=0.6'
+ resolution:
+ integrity: sha512-yaOH/Pk/VEhBWWTlhI+qXxDFXlejDGcQipMlyxda9nthulaxLZUNcUqFxokp0vcYnvteJln5FNQDRrxj3YcbVw==
+ /tough-cookie/2.4.3:
+ dependencies:
+ psl: 1.7.0
+ punycode: 1.4.1
+ dev: true
+ engines:
+ node: '>=0.8'
+ resolution:
+ integrity: sha512-Q5srk/4vDM54WJsJio3XNn6K2sCG+CQ8G5Wz6bZhRZoAe/+TxjWB/GlFAnYEbkYVlON9FMk/fE3h2RLpPXo4lQ==
+ /tough-cookie/2.5.0:
+ dependencies:
+ psl: 1.7.0
+ punycode: 2.1.1
+ dev: true
+ engines:
+ node: '>=0.8'
+ resolution:
+ integrity: sha512-nlLsUzgm1kfLXSXfRZMc1KLAugd4hqJHDTvc2hDIwS3mZAfMEuMbc03SujMF+GEcpaX/qboeycw6iO8JwVv2+g==
+ /tr46/1.0.1:
+ dependencies:
+ punycode: 2.1.1
+ dev: true
+ resolution:
+ integrity: sha1-qLE/1r/SSJUZZ0zN5VujaTtwbQk=
+ /tree-kill/1.2.2:
+ dev: true
+ hasBin: true
+ resolution:
+ integrity: sha512-L0Orpi8qGpRG//Nd+H90vFB+3iHnue1zSSGmNOOCh1GLJ7rUKVwV2HvijphGQS2UmhUZewS9VgvxYIdgr+fG1A==
+ /trim-repeated/1.0.0:
+ dependencies:
+ escape-string-regexp: 1.0.5
+ dev: true
+ engines:
+ node: '>=0.10.0'
+ resolution:
+ integrity: sha1-42RqLqTokTEr9+rObPsFOAvAHCE=
+ /ts-pnp/1.1.5_typescript@3.7.4:
+ dependencies:
+ typescript: 3.7.4
+ dev: true
+ engines:
+ node: '>=6'
+ peerDependencies:
+ typescript: '*'
+ peerDependenciesMeta:
+ typescript:
+ optional: true
+ resolution:
+ integrity: sha512-ti7OGMOUOzo66wLF3liskw6YQIaSsBgc4GOAlWRnIEj8htCxJUxskanMUoJOD6MDCRAXo36goXJZch+nOS0VMA==
+ /tslib/1.10.0:
+ dev: true
+ resolution:
+ integrity: sha512-qOebF53frne81cf0S9B41ByenJ3/IuH8yJKngAX35CmiZySA0khhkovshKK+jGCaMnVomla7gVlIcc3EvKPbTQ==
+ /tsutils/3.17.1_typescript@3.7.4:
+ dependencies:
+ tslib: 1.10.0
+ typescript: 3.7.4
+ dev: true
+ engines:
+ node: '>= 6'
+ peerDependencies:
+ typescript: '>=2.8.0 || >= 3.2.0-dev || >= 3.3.0-dev || >= 3.4.0-dev || >= 3.5.0-dev || >= 3.6.0-dev || >= 3.6.0-beta || >= 3.7.0-dev || >= 3.7.0-beta'
+ resolution:
+ integrity: sha512-kzeQ5B8H3w60nFY2g8cJIuH7JDpsALXySGtwGJ0p2LSjLgay3NdIpqq5SoOBe46bKDW2iq25irHCr8wjomUS2g==
+ /tty-browserify/0.0.0:
+ dev: true
+ resolution:
+ integrity: sha1-oVe6QC2iTpv5V/mqadUk7tQpAaY=
+ /tunnel-agent/0.6.0:
+ dependencies:
+ safe-buffer: 5.2.0
+ dev: true
+ resolution:
+ integrity: sha1-J6XeoGs2sEoKmWZ3SykIaPD8QP0=
+ /tweetnacl/0.14.5:
+ dev: true
+ resolution:
+ integrity: sha1-WuaBd/GS1EViadEIr6k/+HQ/T2Q=
+ /type-check/0.3.2:
+ dependencies:
+ prelude-ls: 1.1.2
+ dev: true
+ engines:
+ node: '>= 0.8.0'
+ resolution:
+ integrity: sha1-WITKtRLPHTVeP7eE8wgEsrUg23I=
+ /type-fest/0.8.1:
+ dev: true
+ engines:
+ node: '>=8'
+ resolution:
+ integrity: sha512-4dbzIzqvjtgiM5rw1k5rEHtBANKmdudhGyBEajN01fEyhaAIhsoKNy6y7+IN93IfpFtwY9iqi7kD+xwKhQsNJA==
+ /type-is/1.6.18:
+ dependencies:
+ media-typer: 0.3.0
+ mime-types: 2.1.26
+ dev: true
+ engines:
+ node: '>= 0.6'
+ resolution:
+ integrity: sha512-TkRKr9sUTxEH8MdfuCSP7VizJyzRNMjj2J2do2Jr3Kym598JVdEksuzPQCnlFPW4ky9Q+iA+ma9BGm06XQBy8g==
+ /type/1.2.0:
+ dev: true
+ resolution:
+ integrity: sha512-+5nt5AAniqsCnu2cEQQdpzCAh33kVx8n0VoFidKpB1dVVLAN/F+bgVOqOJqOnEnrhp222clB5p3vUlD+1QAnfg==
+ /type/2.0.0:
+ dev: true
+ resolution:
+ integrity: sha512-KBt58xCHry4Cejnc2ISQAF7QY+ORngsWfxezO68+12hKV6lQY8P/psIkcbjeHWn7MqcgciWJyCCevFMJdIXpow==
+ /typedarray/0.0.6:
+ dev: true
+ resolution:
+ integrity: sha1-hnrHTjhkGHsdPUfZlqeOxciDB3c=
+ /typescript/3.7.4:
+ dev: true
+ engines:
+ node: '>=4.2.0'
+ hasBin: true
+ resolution:
+ integrity: sha512-A25xv5XCtarLwXpcDNZzCGvW2D1S3/bACratYBx2sax8PefsFhlYmkQicKHvpYflFS8if4zne5zT5kpJ7pzuvw==
+ /uglify-js/3.4.10:
+ dependencies:
+ commander: 2.19.0
+ source-map: 0.6.1
+ dev: true
+ engines:
+ node: '>=0.8.0'
+ hasBin: true
+ resolution:
+ integrity: sha512-Y2VsbPVs0FIshJztycsO2SfPk7/KAF/T72qzv9u5EpQ4kB2hQoHlhNQTsNyy6ul7lQtqJN/AoWeS23OzEiEFxw==
+ /uglify-js/3.7.4:
+ dependencies:
+ commander: 2.20.3
+ source-map: 0.6.1
+ dev: true
+ engines:
+ node: '>=0.8.0'
+ hasBin: true
+ resolution:
+ integrity: sha512-tinYWE8X1QfCHxS1lBS8yiDekyhSXOO6R66yNOCdUJeojxxw+PX2BHAz/BWyW7PQ7pkiWVxJfIEbiDxyLWvUGg==
+ /unicode-canonical-property-names-ecmascript/1.0.4:
+ dev: true
+ engines:
+ node: '>=4'
+ resolution:
+ integrity: sha512-jDrNnXWHd4oHiTZnx/ZG7gtUTVp+gCcTTKr8L0HjlwphROEW3+Him+IpvC+xcJEFegapiMZyZe02CyuOnRmbnQ==
+ /unicode-match-property-ecmascript/1.0.4:
+ dependencies:
+ unicode-canonical-property-names-ecmascript: 1.0.4
+ unicode-property-aliases-ecmascript: 1.0.5
+ dev: true
+ engines:
+ node: '>=4'
+ resolution:
+ integrity: sha512-L4Qoh15vTfntsn4P1zqnHulG0LdXgjSO035fEpdtp6YxXhMT51Q6vgM5lYdG/5X3MjS+k/Y9Xw4SFCY9IkR0rg==
+ /unicode-match-property-value-ecmascript/1.1.0:
+ dev: true
+ engines:
+ node: '>=4'
+ resolution:
+ integrity: sha512-hDTHvaBk3RmFzvSl0UVrUmC3PuW9wKVnpoUDYH0JDkSIovzw+J5viQmeYHxVSBptubnr7PbH2e0fnpDRQnQl5g==
+ /unicode-property-aliases-ecmascript/1.0.5:
+ dev: true
+ engines:
+ node: '>=4'
+ resolution:
+ integrity: sha512-L5RAqCfXqAwR3RriF8pM0lU0w4Ryf/GgzONwi6KnL1taJQa7x1TCxdJnILX59WIGOwR57IVxn7Nej0fz1Ny6fw==
+ /union-value/1.0.1:
+ dependencies:
+ arr-union: 3.1.0
+ get-value: 2.0.6
+ is-extendable: 0.1.1
+ set-value: 2.0.1
+ dev: true
+ engines:
+ node: '>=0.10.0'
+ resolution:
+ integrity: sha512-tJfXmxMeWYnczCVs7XAEvIV7ieppALdyepWMkHkwciRpZraG/xwT+s2JN8+pr1+8jCRf80FFzvr+MpQeeoF4Xg==
+ /uniq/1.0.1:
+ dev: true
+ resolution:
+ integrity: sha1-sxxa6CVIRKOoKBVBzisEuGWnNP8=
+ /uniqs/2.0.0:
+ dev: true
+ resolution:
+ integrity: sha1-/+3ks2slKQaW5uFl1KWe25mOawI=
+ /unique-filename/1.1.1:
+ dependencies:
+ unique-slug: 2.0.2
+ dev: true
+ resolution:
+ integrity: sha512-Vmp0jIp2ln35UTXuryvjzkjGdRyf9b2lTXuSYUiPmzRcl3FDtYqAwOnTJkAngD9SWhnoJzDbTKwaOrZ+STtxNQ==
+ /unique-slug/2.0.2:
+ dependencies:
+ imurmurhash: 0.1.4
+ dev: true
+ resolution:
+ integrity: sha512-zoWr9ObaxALD3DOPfjPSqxt4fnZiWblxHIgeWqW8x7UqDzEtHEQLzji2cuJYQFCU6KmoJikOYAZlrTHHebjx2w==
+ /universalify/0.1.2:
+ dev: true
+ engines:
+ node: '>= 4.0.0'
+ resolution:
+ integrity: sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg==
+ /unpipe/1.0.0:
+ dev: true
+ engines:
+ node: '>= 0.8'
+ resolution:
+ integrity: sha1-sr9O6FFKrmFltIF4KdIbLvSZBOw=
+ /unquote/1.1.1:
+ dev: true
+ resolution:
+ integrity: sha1-j97XMk7G6IoP+LkF58CYzcCG1UQ=
+ /unset-value/1.0.0:
+ dependencies:
+ has-value: 0.3.1
+ isobject: 3.0.1
+ dev: true
+ engines:
+ node: '>=0.10.0'
+ resolution:
+ integrity: sha1-g3aHP30jNRef+x5vw6jtDfyKtVk=
+ /upath/1.2.0:
+ dev: true
+ engines:
+ node: '>=4'
+ resolution:
+ integrity: sha512-aZwGpamFO61g3OlfT7OQCHqhGnW43ieH9WZeP7QxN/G/jS4jfqUkZxoryvJgVPEcrl5NL/ggHsSmLMHuH64Lhg==
+ /upper-case/1.1.3:
+ dev: true
+ resolution:
+ integrity: sha1-9rRQHC7EzdJrp4vnIilh3ndiFZg=
+ /uri-js/4.2.2:
+ dependencies:
+ punycode: 2.1.1
+ dev: true
+ resolution:
+ integrity: sha512-KY9Frmirql91X2Qgjry0Wd4Y+YTdrdZheS8TFwvkbLWf/G5KNJDCh6pKL5OZctEW4+0Baa5idK2ZQuELRwPznQ==
+ /urix/0.1.0:
+ dev: true
+ resolution:
+ integrity: sha1-2pN/emLiH+wf0Y1Js1wpNQZ6bHI=
+ /url-loader/2.3.0_file-loader@4.3.0+webpack@4.41.2:
+ dependencies:
+ file-loader: 4.3.0_webpack@4.41.2
+ loader-utils: 1.2.3
+ mime: 2.4.4
+ schema-utils: 2.6.1
+ webpack: 4.41.2_webpack@4.41.2
+ dev: true
+ engines:
+ node: '>= 8.9.0'
+ peerDependencies:
+ file-loader: '*'
+ webpack: ^4.0.0
+ peerDependenciesMeta:
+ file-loader:
+ optional: true
+ resolution:
+ integrity: sha512-goSdg8VY+7nPZKUEChZSEtW5gjbS66USIGCeSJ1OVOJ7Yfuh/36YxCwMi5HVEJh6mqUYOoy3NJ0vlOMrWsSHog==
+ /url-parse/1.4.7:
+ dependencies:
+ querystringify: 2.1.1
+ requires-port: 1.0.0
+ dev: true
+ resolution:
+ integrity: sha512-d3uaVyzDB9tQoSXFvuSUNFibTd9zxd2bkVrDRvF5TmvWWQwqE4lgYJ5m+x1DbecWkw+LK4RNl2CU1hHuOKPVlg==
+ /url/0.11.0:
+ dependencies:
+ punycode: 1.3.2
+ querystring: 0.2.0
+ dev: true
+ resolution:
+ integrity: sha1-ODjpfPxgUh63PFJajlW/3Z4uKPE=
+ /use/3.1.1:
+ dev: true
+ engines:
+ node: '>=0.10.0'
+ resolution:
+ integrity: sha512-cwESVXlO3url9YWlFW/TA9cshCEhtu7IKJ/p5soJ/gGpj7vbvFrAY/eIioQ6Dw23KjZhYgiIo8HOs1nQ2vr/oQ==
+ /util-deprecate/1.0.2:
+ dev: true
+ resolution:
+ integrity: sha1-RQ1Nyfpw3nMnYvvS1KKJgUGaDM8=
+ /util.promisify/1.0.0:
+ dependencies:
+ define-properties: 1.1.3
+ object.getownpropertydescriptors: 2.1.0
+ dev: true
+ resolution:
+ integrity: sha512-i+6qA2MPhvoKLuxnJNpXAGhg7HphQOSUq2LKMZD0m15EiskXUkMvKdF4Uui0WYeCUGea+o2cw/ZuwehtfsrNkA==
+ /util/0.10.3:
+ dependencies:
+ inherits: 2.0.1
+ dev: true
+ resolution:
+ integrity: sha1-evsa/lCAUkZInj23/g7TeTNqwPk=
+ /util/0.11.1:
+ dependencies:
+ inherits: 2.0.3
+ dev: true
+ resolution:
+ integrity: sha512-HShAsny+zS2TZfaXxD9tYj4HQGlBezXZMZuM/S5PKLLoZkShZiGk9o5CzukI1LVHZvjdvZ2Sj1aW/Ndn2NB/HQ==
+ /utila/0.4.0:
+ dev: true
+ resolution:
+ integrity: sha1-ihagXURWV6Oupe7MWxKk+lN5dyw=
+ /utils-merge/1.0.1:
+ dev: true
+ engines:
+ node: '>= 0.4.0'
+ resolution:
+ integrity: sha1-n5VxD1CiZ5R7LMwSR0HBAoQn5xM=
+ /uuid/3.3.3:
+ dev: true
+ hasBin: true
+ resolution:
+ integrity: sha512-pW0No1RGHgzlpHJO1nsVrHKpOEIxkGg1xB+v0ZmdNH5OAeAwzAVrCnI2/6Mtx+Uys6iaylxa+D3g4j63IKKjSQ==
+ /v8-compile-cache/2.1.0:
+ dev: true
+ resolution:
+ integrity: sha512-usZBT3PW+LOjM25wbqIlZwPeJV+3OSz3M1k1Ws8snlW39dZyYL9lOGC5FgPVHfk0jKmjiDV8Z0mIbVQPiwFs7g==
+ /validate-npm-package-license/3.0.4:
+ dependencies:
+ spdx-correct: 3.1.0
+ spdx-expression-parse: 3.0.0
+ dev: true
+ resolution:
+ integrity: sha512-DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew==
+ /vary/1.1.2:
+ dev: true
+ engines:
+ node: '>= 0.8'
+ resolution:
+ integrity: sha1-IpnwLG3tMNSllhsLn3RSShj2NPw=
+ /vendors/1.0.3:
+ dev: true
+ resolution:
+ integrity: sha512-fOi47nsJP5Wqefa43kyWSg80qF+Q3XA6MUkgi7Hp1HQaKDQW4cQrK2D0P7mmbFtsV1N89am55Yru/nyEwRubcw==
+ /verror/1.10.0:
+ dependencies:
+ assert-plus: 1.0.0
+ core-util-is: 1.0.2
+ extsprintf: 1.3.0
+ dev: true
+ engines:
+ '0': node >=0.6.0
+ resolution:
+ integrity: sha1-OhBcoXBTr1XW4nDB+CiGguGNpAA=
+ /vm-browserify/1.1.2:
+ dev: true
+ resolution:
+ integrity: sha512-2ham8XPWTONajOR0ohOKOHXkm3+gaBmGut3SRuu75xLd/RRaY6vqgh8NBYYk7+RW3u5AtzPQZG8F10LHkl0lAQ==
+ /vue-eslint-parser/2.0.3_eslint@5.16.0:
+ dependencies:
+ debug: 3.2.6
+ eslint: 5.16.0
+ eslint-scope: 3.7.3
+ eslint-visitor-keys: 1.1.0
+ espree: 3.5.4
+ esquery: 1.0.1
+ lodash: 4.17.15
+ dev: true
+ engines:
+ node: '>=4'
+ peerDependencies:
+ eslint: '>=3.9.0'
+ resolution:
+ integrity: sha512-ZezcU71Owm84xVF6gfurBQUGg8WQ+WZGxgDEQu1IHFBZNx7BFZg3L1yHxrCBNNwbwFtE1GuvfJKMtb6Xuwc/Bw==
+ /w3c-hr-time/1.0.1:
+ dependencies:
+ browser-process-hrtime: 0.1.3
+ dev: true
+ resolution:
+ integrity: sha1-gqwr/2PZUOqeMYmlimViX+3xkEU=
+ /w3c-xmlserializer/1.1.2:
+ dependencies:
+ domexception: 1.0.1
+ webidl-conversions: 4.0.2
+ xml-name-validator: 3.0.0
+ dev: true
+ resolution:
+ integrity: sha512-p10l/ayESzrBMYWRID6xbuCKh2Fp77+sA0doRuGn4tTIMrrZVeqfpKjXHY+oDh3K4nLdPgNwMTVP6Vp4pvqbNg==
+ /walker/1.0.7:
+ dependencies:
+ makeerror: 1.0.11
+ dev: true
+ resolution:
+ integrity: sha1-L3+bj9ENZ3JisYqITijRlhjgKPs=
+ /watchpack/1.6.0:
+ dependencies:
+ chokidar: 2.1.8
+ graceful-fs: 4.2.3
+ neo-async: 2.6.1
+ dev: true
+ resolution:
+ integrity: sha512-i6dHe3EyLjMmDlU1/bGQpEw25XSjkJULPuAVKCbNRefQVq48yXKUpwg538F7AZTf9kyr57zj++pQFltUa5H7yA==
+ /wbuf/1.7.3:
+ dependencies:
+ minimalistic-assert: 1.0.1
+ dev: true
+ resolution:
+ integrity: sha512-O84QOnr0icsbFGLS0O3bI5FswxzRr8/gHwWkDlQFskhSPryQXvrTMxjxGP4+iWYoauLoBvfDpkrOauZ+0iZpDA==
+ /webidl-conversions/4.0.2:
+ dev: true
+ resolution:
+ integrity: sha512-YQ+BmxuTgd6UXZW3+ICGfyqRyHXVlD5GtQr5+qjiNW7bF0cqrzX500HVXPBOvgXb5YnzDd+h0zqyv61KUD7+Sg==
+ /webpack-dev-middleware/3.7.2_webpack@4.41.2:
+ dependencies:
+ memory-fs: 0.4.1
+ mime: 2.4.4
+ mkdirp: 0.5.1
+ range-parser: 1.2.1
+ webpack: 4.41.2_webpack@4.41.2
+ webpack-log: 2.0.0
+ dev: true
+ engines:
+ node: '>= 6'
+ peerDependencies:
+ webpack: ^4.0.0
+ resolution:
+ integrity: sha512-1xC42LxbYoqLNAhV6YzTYacicgMZQTqRd27Sim9wn5hJrX3I5nxYy1SxSd4+gjUFsz1dQFj+yEe6zEVmSkeJjw==
+ /webpack-dev-server/3.9.0_webpack@4.41.2:
+ dependencies:
+ ansi-html: 0.0.7
+ bonjour: 3.5.0
+ chokidar: 2.1.8
+ compression: 1.7.4
+ connect-history-api-fallback: 1.6.0
+ debug: 4.1.1
+ del: 4.1.1
+ express: 4.17.1
+ html-entities: 1.2.1
+ http-proxy-middleware: 0.19.1
+ import-local: 2.0.0
+ internal-ip: 4.3.0
+ ip: 1.1.5
+ is-absolute-url: 3.0.3
+ killable: 1.0.1
+ loglevel: 1.6.6
+ opn: 5.5.0
+ p-retry: 3.0.1
+ portfinder: 1.0.25
+ schema-utils: 1.0.0
+ selfsigned: 1.10.7
+ semver: 6.3.0
+ serve-index: 1.9.1
+ sockjs: 0.3.19
+ sockjs-client: 1.4.0
+ spdy: 4.0.1
+ strip-ansi: 3.0.1
+ supports-color: 6.1.0
+ url: 0.11.0
+ webpack: 4.41.2_webpack@4.41.2
+ webpack-dev-middleware: 3.7.2_webpack@4.41.2
+ webpack-log: 2.0.0
+ ws: 6.2.1
+ yargs: 12.0.5
+ dev: true
+ engines:
+ node: '>= 6.11.5'
+ hasBin: true
+ peerDependencies:
+ webpack: ^4.0.0
+ resolution:
+ integrity: sha512-E6uQ4kRrTX9URN9s/lIbqTAztwEPdvzVrcmHE8EQ9YnuT9J8Es5Wrd8n9BKg1a0oZ5EgEke/EQFgUsp18dSTBw==
+ /webpack-log/2.0.0:
+ dependencies:
+ ansi-colors: 3.2.4
+ uuid: 3.3.3
+ dev: true
+ engines:
+ node: '>= 6'
+ resolution:
+ integrity: sha512-cX8G2vR/85UYG59FgkoMamwHUIkSSlV3bBMRsbxVXVUk2j6NleCKjQ/WE9eYg9WY4w25O9w8wKP4rzNZFmUcUg==
+ /webpack-manifest-plugin/2.2.0_webpack@4.41.2:
+ dependencies:
+ fs-extra: 7.0.1
+ lodash: 4.17.15
+ object.entries: 1.1.1
+ tapable: 1.1.3
+ webpack: 4.41.2_webpack@4.41.2
+ dev: true
+ engines:
+ node: '>=6.11.5'
+ peerDependencies:
+ webpack: 2 || 3 || 4
+ resolution:
+ integrity: sha512-9S6YyKKKh/Oz/eryM1RyLVDVmy3NSPV0JXMRhZ18fJsq+AwGxUY34X54VNwkzYcEmEkDwNxuEOboCZEebJXBAQ==
+ /webpack-sources/1.4.3:
+ dependencies:
+ source-list-map: 2.0.1
+ source-map: 0.6.1
+ dev: true
+ resolution:
+ integrity: sha512-lgTS3Xhv1lCOKo7SA5TjKXMjpSM4sBjNV5+q2bqesbSPs5FjGmU6jjtBSkX9b4qW87vDIsCIlUPOEhbZrMdjeQ==
+ /webpack/4.41.2_webpack@4.41.2:
+ dependencies:
+ '@webassemblyjs/ast': 1.8.5
+ '@webassemblyjs/helper-module-context': 1.8.5
+ '@webassemblyjs/wasm-edit': 1.8.5
+ '@webassemblyjs/wasm-parser': 1.8.5
+ acorn: 6.4.0
+ ajv: 6.10.2
+ ajv-keywords: 3.4.1_ajv@6.10.2
+ chrome-trace-event: 1.0.2
+ enhanced-resolve: 4.1.1
+ eslint-scope: 4.0.3
+ json-parse-better-errors: 1.0.2
+ loader-runner: 2.4.0
+ loader-utils: 1.2.3
+ memory-fs: 0.4.1
+ micromatch: 3.1.10
+ mkdirp: 0.5.1
+ neo-async: 2.6.1
+ node-libs-browser: 2.2.1
+ schema-utils: 1.0.0
+ tapable: 1.1.3
+ terser-webpack-plugin: 1.4.3_webpack@4.41.2
+ watchpack: 1.6.0
+ webpack-sources: 1.4.3
+ dev: true
+ engines:
+ node: '>=6.11.5'
+ hasBin: true
+ peerDependencies:
+ webpack: '*'
+ resolution:
+ integrity: sha512-Zhw69edTGfbz9/8JJoyRQ/pq8FYUoY0diOXqW0T6yhgdhCv6wr0hra5DwwWexNRns2Z2+gsnrNcbe9hbGBgk/A==
+ /websocket-driver/0.7.3:
+ dependencies:
+ http-parser-js: 0.4.10
+ safe-buffer: 5.2.0
+ websocket-extensions: 0.1.3
+ dev: true
+ engines:
+ node: '>=0.8.0'
+ resolution:
+ integrity: sha512-bpxWlvbbB459Mlipc5GBzzZwhoZgGEZLuqPaR0INBGnPAY1vdBX6hPnoFXiw+3yWxDuHyQjO2oXTMyS8A5haFg==
+ /websocket-extensions/0.1.3:
+ dev: true
+ engines:
+ node: '>=0.8.0'
+ resolution:
+ integrity: sha512-nqHUnMXmBzT0w570r2JpJxfiSD1IzoI+HGVdd3aZ0yNi3ngvQ4jv1dtHt5VGxfI2yj5yqImPhOK4vmIh2xMbGg==
+ /whatwg-encoding/1.0.5:
+ dependencies:
+ iconv-lite: 0.4.24
+ dev: true
+ resolution:
+ integrity: sha512-b5lim54JOPN9HtzvK9HFXvBma/rnfFeqsic0hSpjtDbVxR3dJKLc+KB4V6GgiGOvl7CY/KNh8rxSo9DKQrnUEw==
+ /whatwg-fetch/3.0.0:
+ dev: true
+ resolution:
+ integrity: sha512-9GSJUgz1D4MfyKU7KRqwOjXCXTqWdFNvEr7eUBYchQiVc744mqK/MzXPNR2WsPkmkOa4ywfg8C2n8h+13Bey1Q==
+ /whatwg-mimetype/2.3.0:
+ dev: true
+ resolution:
+ integrity: sha512-M4yMwr6mAnQz76TbJm914+gPpB/nCwvZbJU28cUD6dR004SAxDLOOSUaB1JDRqLtaOV/vi0IC5lEAGFgrjGv/g==
+ /whatwg-url/6.5.0:
+ dependencies:
+ lodash.sortby: 4.7.0
+ tr46: 1.0.1
+ webidl-conversions: 4.0.2
+ dev: true
+ resolution:
+ integrity: sha512-rhRZRqx/TLJQWUpQ6bmrt2UV4f0HCQ463yQuONJqC6fO2VoEb1pTYddbe59SkYq87aoM5A3bdhMZiUiVws+fzQ==
+ /whatwg-url/7.1.0:
+ dependencies:
+ lodash.sortby: 4.7.0
+ tr46: 1.0.1
+ webidl-conversions: 4.0.2
+ dev: true
+ resolution:
+ integrity: sha512-WUu7Rg1DroM7oQvGWfOiAK21n74Gg+T4elXEQYkOhtyLeWiJFoOGLXPKI/9gzIie9CtwVLm8wtw6YJdKyxSjeg==
+ /which-module/2.0.0:
+ dev: true
+ resolution:
+ integrity: sha1-2e8H3Od7mQK4o6j6SzHD4/fm6Ho=
+ /which/1.3.1:
+ dependencies:
+ isexe: 2.0.0
+ dev: true
+ hasBin: true
+ resolution:
+ integrity: sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==
+ /which/2.0.2:
+ dependencies:
+ isexe: 2.0.0
+ dev: true
+ engines:
+ node: '>= 8'
+ hasBin: true
+ resolution:
+ integrity: sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==
+ /word-wrap/1.2.3:
+ dev: true
+ engines:
+ node: '>=0.10.0'
+ resolution:
+ integrity: sha512-Hz/mrNwitNRh/HUAtM/VT/5VH+ygD6DV7mYKZAtHOrbs8U7lvPS6xf7EJKMF0uW1KJCl0H701g3ZGus+muE5vQ==
+ /wordwrap/0.0.3:
+ dev: true
+ engines:
+ node: '>=0.4.0'
+ resolution:
+ integrity: sha1-o9XabNXAvAAI03I0u68b7WMFkQc=
+ /workbox-background-sync/4.3.1:
+ dependencies:
+ workbox-core: 4.3.1
+ dev: true
+ resolution:
+ integrity: sha512-1uFkvU8JXi7L7fCHVBEEnc3asPpiAL33kO495UMcD5+arew9IbKW2rV5lpzhoWcm/qhGB89YfO4PmB/0hQwPRg==
+ /workbox-broadcast-update/4.3.1:
+ dependencies:
+ workbox-core: 4.3.1
+ dev: true
+ resolution:
+ integrity: sha512-MTSfgzIljpKLTBPROo4IpKjESD86pPFlZwlvVG32Kb70hW+aob4Jxpblud8EhNb1/L5m43DUM4q7C+W6eQMMbA==
+ /workbox-build/4.3.1:
+ dependencies:
+ '@babel/runtime': 7.7.7
+ '@hapi/joi': 15.1.1
+ common-tags: 1.8.0
+ fs-extra: 4.0.3
+ glob: 7.1.6
+ lodash.template: 4.5.0
+ pretty-bytes: 5.3.0
+ stringify-object: 3.3.0
+ strip-comments: 1.0.2
+ workbox-background-sync: 4.3.1
+ workbox-broadcast-update: 4.3.1
+ workbox-cacheable-response: 4.3.1
+ workbox-core: 4.3.1
+ workbox-expiration: 4.3.1
+ workbox-google-analytics: 4.3.1
+ workbox-navigation-preload: 4.3.1
+ workbox-precaching: 4.3.1
+ workbox-range-requests: 4.3.1
+ workbox-routing: 4.3.1
+ workbox-strategies: 4.3.1
+ workbox-streams: 4.3.1
+ workbox-sw: 4.3.1
+ workbox-window: 4.3.1
+ dev: true
+ engines:
+ node: '>=4.0.0'
+ resolution:
+ integrity: sha512-UHdwrN3FrDvicM3AqJS/J07X0KXj67R8Cg0waq1MKEOqzo89ap6zh6LmaLnRAjpB+bDIz+7OlPye9iii9KBnxw==
+ /workbox-cacheable-response/4.3.1:
+ dependencies:
+ workbox-core: 4.3.1
+ dev: true
+ resolution:
+ integrity: sha512-Rp5qlzm6z8IOvnQNkCdO9qrDgDpoPNguovs0H8C+wswLuPgSzSp9p2afb5maUt9R1uTIwOXrVQMmPfPypv+npw==
+ /workbox-core/4.3.1:
+ dev: true
+ resolution:
+ integrity: sha512-I3C9jlLmMKPxAC1t0ExCq+QoAMd0vAAHULEgRZ7kieCdUd919n53WC0AfvokHNwqRhGn+tIIj7vcb5duCjs2Kg==
+ /workbox-expiration/4.3.1:
+ dependencies:
+ workbox-core: 4.3.1
+ dev: true
+ resolution:
+ integrity: sha512-vsJLhgQsQouv9m0rpbXubT5jw0jMQdjpkum0uT+d9tTwhXcEZks7qLfQ9dGSaufTD2eimxbUOJfWLbNQpIDMPw==
+ /workbox-google-analytics/4.3.1:
+ dependencies:
+ workbox-background-sync: 4.3.1
+ workbox-core: 4.3.1
+ workbox-routing: 4.3.1
+ workbox-strategies: 4.3.1
+ dev: true
+ resolution:
+ integrity: sha512-xzCjAoKuOb55CBSwQrbyWBKqp35yg1vw9ohIlU2wTy06ZrYfJ8rKochb1MSGlnoBfXGWss3UPzxR5QL5guIFdg==
+ /workbox-navigation-preload/4.3.1:
+ dependencies:
+ workbox-core: 4.3.1
+ dev: true
+ resolution:
+ integrity: sha512-K076n3oFHYp16/C+F8CwrRqD25GitA6Rkd6+qAmLmMv1QHPI2jfDwYqrytOfKfYq42bYtW8Pr21ejZX7GvALOw==
+ /workbox-precaching/4.3.1:
+ dependencies:
+ workbox-core: 4.3.1
+ dev: true
+ resolution:
+ integrity: sha512-piSg/2csPoIi/vPpp48t1q5JLYjMkmg5gsXBQkh/QYapCdVwwmKlU9mHdmy52KsDGIjVaqEUMFvEzn2LRaigqQ==
+ /workbox-range-requests/4.3.1:
+ dependencies:
+ workbox-core: 4.3.1
+ dev: true
+ resolution:
+ integrity: sha512-S+HhL9+iTFypJZ/yQSl/x2Bf5pWnbXdd3j57xnb0V60FW1LVn9LRZkPtneODklzYuFZv7qK6riZ5BNyc0R0jZA==
+ /workbox-routing/4.3.1:
+ dependencies:
+ workbox-core: 4.3.1
+ dev: true
+ resolution:
+ integrity: sha512-FkbtrODA4Imsi0p7TW9u9MXuQ5P4pVs1sWHK4dJMMChVROsbEltuE79fBoIk/BCztvOJ7yUpErMKa4z3uQLX+g==
+ /workbox-strategies/4.3.1:
+ dependencies:
+ workbox-core: 4.3.1
+ dev: true
+ resolution:
+ integrity: sha512-F/+E57BmVG8dX6dCCopBlkDvvhg/zj6VDs0PigYwSN23L8hseSRwljrceU2WzTvk/+BSYICsWmRq5qHS2UYzhw==
+ /workbox-streams/4.3.1:
+ dependencies:
+ workbox-core: 4.3.1
+ dev: true
+ resolution:
+ integrity: sha512-4Kisis1f/y0ihf4l3u/+ndMkJkIT4/6UOacU3A4BwZSAC9pQ9vSvJpIi/WFGQRH/uPXvuVjF5c2RfIPQFSS2uA==
+ /workbox-sw/4.3.1:
+ dev: true
+ resolution:
+ integrity: sha512-0jXdusCL2uC5gM3yYFT6QMBzKfBr2XTk0g5TPAV4y8IZDyVNDyj1a8uSXy3/XrvkVTmQvLN4O5k3JawGReXr9w==
+ /workbox-webpack-plugin/4.3.1_webpack@4.41.2:
+ dependencies:
+ '@babel/runtime': 7.7.7
+ json-stable-stringify: 1.0.1
+ webpack: 4.41.2_webpack@4.41.2
+ workbox-build: 4.3.1
+ dev: true
+ engines:
+ node: '>=4.0.0'
+ peerDependencies:
+ webpack: ^2.0.0 || ^3.0.0 || ^4.0.0
+ resolution:
+ integrity: sha512-gJ9jd8Mb8wHLbRz9ZvGN57IAmknOipD3W4XNE/Lk/4lqs5Htw4WOQgakQy/o/4CoXQlMCYldaqUg+EJ35l9MEQ==
+ /workbox-window/4.3.1:
+ dependencies:
+ workbox-core: 4.3.1
+ dev: true
+ resolution:
+ integrity: sha512-C5gWKh6I58w3GeSc0wp2Ne+rqVw8qwcmZnQGpjiek8A2wpbxSJb1FdCoQVO+jDJs35bFgo/WETgl1fqgsxN0Hg==
+ /worker-farm/1.7.0:
+ dependencies:
+ errno: 0.1.7
+ dev: true
+ resolution:
+ integrity: sha512-rvw3QTZc8lAxyVrqcSGVm5yP/IJ2UcB3U0graE3LCFoZ0Yn2x4EoVSqJKdB/T5M+FLcRPjz4TDacRf3OCfNUzw==
+ /worker-rpc/0.1.1:
+ dependencies:
+ microevent.ts: 0.1.1
+ dev: true
+ resolution:
+ integrity: sha512-P1WjMrUB3qgJNI9jfmpZ/htmBEjFh//6l/5y8SD9hg1Ef5zTTVVoRjTrTEzPrNBQvmhMxkoTsjOXN10GWU7aCg==
+ /wrap-ansi/2.1.0:
+ dependencies:
+ string-width: 1.0.2
+ strip-ansi: 3.0.1
+ dev: true
+ engines:
+ node: '>=0.10.0'
+ resolution:
+ integrity: sha1-2Pw9KE3QV5T+hJc8rs3Rz4JP3YU=
+ /wrap-ansi/5.1.0:
+ dependencies:
+ ansi-styles: 3.2.1
+ string-width: 3.1.0
+ strip-ansi: 5.2.0
+ dev: true
+ engines:
+ node: '>=6'
+ resolution:
+ integrity: sha512-QC1/iN/2/RPVJ5jYK8BGttj5z83LmSKmvbvrXPNCLZSEb32KKVDJDl/MOt2N01qU2H/FkzEa9PKto1BqDjtd7Q==
+ /wrap-ansi/6.2.0:
+ dependencies:
+ ansi-styles: 4.2.1
+ string-width: 4.2.0
+ strip-ansi: 6.0.0
+ dev: true
+ engines:
+ node: '>=8'
+ resolution:
+ integrity: sha512-r6lPcBGxZXlIcymEu7InxDMhdW0KDxpLgoFLcguasxCaJ/SOIZwINatK9KY/tf+ZrlywOKU0UDj3ATXUBfxJXA==
+ /wrappy/1.0.2:
+ dev: true
+ resolution:
+ integrity: sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8=
+ /write-file-atomic/2.4.1:
+ dependencies:
+ graceful-fs: 4.2.3
+ imurmurhash: 0.1.4
+ signal-exit: 3.0.2
+ dev: true
+ resolution:
+ integrity: sha512-TGHFeZEZMnv+gBFRfjAcxL5bPHrsGKtnb4qsFAws7/vlh+QfwAaySIw4AXP9ZskTTh5GWu3FLuJhsWVdiJPGvg==
+ /write/1.0.3:
+ dependencies:
+ mkdirp: 0.5.1
+ dev: true
+ engines:
+ node: '>=4'
+ resolution:
+ integrity: sha512-/lg70HAjtkUgWPVZhZcm+T4hkL8Zbtp1nFNOn3lRrxnlv50SRBv7cR7RqR+GMsd3hUXy9hWBo4CHTbFTcOYwig==
+ /ws/5.2.2:
+ dependencies:
+ async-limiter: 1.0.1
+ dev: true
+ resolution:
+ integrity: sha512-jaHFD6PFv6UgoIVda6qZllptQsMlDEJkTQcybzzXDYM1XO9Y8em691FGMPmM46WGyLU4z9KMgQN+qrux/nhlHA==
+ /ws/6.2.1:
+ dependencies:
+ async-limiter: 1.0.1
+ dev: true
+ resolution:
+ integrity: sha512-GIyAXC2cB7LjvpgMt9EKS2ldqr0MTrORaleiOno6TweZ6r3TKtoFQWay/2PceJ3RuBasOHzXNn5Lrw1X0bEjqA==
+ /xml-name-validator/3.0.0:
+ dev: true
+ resolution:
+ integrity: sha512-A5CUptxDsvxKJEU3yO6DuWBSJz/qizqzJKOMIfUJHETbBw/sFaDxgd6fxm1ewUaM0jZ444Fc5vC5ROYurg/4Pw==
+ /xmlchars/2.2.0:
+ dev: true
+ resolution:
+ integrity: sha512-JZnDKK8B0RCDw84FNdDAIpZK+JuJw+s7Lz8nksI7SIuU3UXJJslUthsi+uWBUYOwPFwW7W7PRLRfUKpxjtjFCw==
+ /xtend/4.0.2:
+ dev: true
+ engines:
+ node: '>=0.4'
+ resolution:
+ integrity: sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ==
+ /y18n/4.0.0:
+ dev: true
+ resolution:
+ integrity: sha512-r9S/ZyXu/Xu9q1tYlpsLIsa3EeLXXk0VwlxqTcFRfg9EhMW+17kbt9G0NrgCmhGb5vT2hyhJZLfDGx+7+5Uj/w==
+ /yallist/3.1.1:
+ dev: true
+ resolution:
+ integrity: sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==
+ /yallist/4.0.0:
+ dev: true
+ resolution:
+ integrity: sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==
+ /yaml/1.7.2:
+ dependencies:
+ '@babel/runtime': 7.7.7
+ dev: true
+ engines:
+ node: '>= 6'
+ resolution:
+ integrity: sha512-qXROVp90sb83XtAoqE8bP9RwAkTTZbugRUTm5YeFCBfNRPEp2YzTeqWiz7m5OORHzEvrA/qcGS8hp/E+MMROYw==
+ /yargs-parser/11.1.1:
+ dependencies:
+ camelcase: 5.3.1
+ decamelize: 1.2.0
+ dev: true
+ resolution:
+ integrity: sha512-C6kB/WJDiaxONLJQnF8ccx9SEeoTTLek8RVbaOIsrAUS8VrBEXfmeSnCZxygc+XC2sNMBIwOOnfcxiynjHsVSQ==
+ /yargs-parser/13.1.1:
+ dependencies:
+ camelcase: 5.3.1
+ decamelize: 1.2.0
+ dev: true
+ resolution:
+ integrity: sha512-oVAVsHz6uFrg3XQheFII8ESO2ssAf9luWuAd6Wexsu4F3OtIW0o8IribPXYrD4WC24LWtPrJlGy87y5udK+dxQ==
+ /yargs-parser/16.1.0:
+ dependencies:
+ camelcase: 5.3.1
+ decamelize: 1.2.0
+ dev: true
+ resolution:
+ integrity: sha512-H/V41UNZQPkUMIT5h5hiwg4QKIY1RPvoBV4XcjUbRM8Bk2oKqqyZ0DIEbTFZB0XjbtSPG8SAa/0DxCQmiRgzKg==
+ /yargs/12.0.5:
+ dependencies:
+ cliui: 4.1.0
+ decamelize: 1.2.0
+ find-up: 3.0.0
+ get-caller-file: 1.0.3
+ os-locale: 3.1.0
+ require-directory: 2.1.1
+ require-main-filename: 1.0.1
+ set-blocking: 2.0.0
+ string-width: 2.1.1
+ which-module: 2.0.0
+ y18n: 4.0.0
+ yargs-parser: 11.1.1
+ dev: true
+ resolution:
+ integrity: sha512-Lhz8TLaYnxq/2ObqHDql8dX8CJi97oHxrjUcYtzKbbykPtVW9WB+poxI+NM2UIzsMgNCZTIf0AQwsjK5yMAqZw==
+ /yargs/13.3.0:
+ dependencies:
+ cliui: 5.0.0
+ find-up: 3.0.0
+ get-caller-file: 2.0.5
+ require-directory: 2.1.1
+ require-main-filename: 2.0.0
+ set-blocking: 2.0.0
+ string-width: 3.1.0
+ which-module: 2.0.0
+ y18n: 4.0.0
+ yargs-parser: 13.1.1
+ dev: true
+ resolution:
+ integrity: sha512-2eehun/8ALW8TLoIl7MVaRUrg+yCnenu8B4kBlRxj3GJGDKU1Og7sMXPNm1BYyM1DOJmTZ4YeN/Nwxv+8XJsUA==
+ /yargs/15.1.0:
+ dependencies:
+ cliui: 6.0.0
+ decamelize: 1.2.0
+ find-up: 4.1.0
+ get-caller-file: 2.0.5
+ 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: 16.1.0
+ dev: true
+ engines:
+ node: '>=8'
+ resolution:
+ integrity: sha512-T39FNN1b6hCW4SOIk1XyTOWxtXdcen0t+XYrysQmChzSipvhBO8Bj0nK1ozAasdk24dNWuMZvr4k24nz+8HHLg==
+specifiers:
+ '@babel/core': 7.7.7
+ '@babel/preset-env': 7.7.7
+ '@babel/preset-react': 7.7.4
+ '@rollup/plugin-commonjs': ^11.0.1
+ '@rollup/plugin-node-resolve': ^7.0.0
+ '@rollup/plugin-typescript': ^2.1.0
+ '@rollup/plugin-url': ^4.0.1
+ '@svgr/rollup': 5.0.1
+ '@types/jest': ^24.0.25
+ '@types/prop-types': ^15.7.3
+ '@types/react': ^16.9.17
+ '@types/react-dom': ^16.9.4
+ '@typescript-eslint/eslint-plugin': ^2.15.0
+ '@typescript-eslint/parser': ^2.15.0
+ all-contributors-cli: ^6.12.0
+ babel-eslint: 10.0.3
+ concurrently: 5.0.2
+ cross-env: 6.0.3
+ eslint: ^6.8.0
+ eslint-config-airbnb: ^18.0.1
+ eslint-config-prettier: ^6.9.0
+ eslint-config-react-app: ^5.1.0
+ eslint-plugin-import: ^2.19.1
+ eslint-plugin-jest: ^23.3.0
+ eslint-plugin-jsx-a11y: ^6.2.3
+ eslint-plugin-prettier: ^3.1.2
+ eslint-plugin-react: ^7.17.0
+ eslint-plugin-react-hooks: ^2.3.0
+ gh-pages: 2.2.0
+ prettier: ^1.19.1
+ prettier-eslint-cli: ^5.0.0
+ prop-types: ^15.7.2
+ react: 16.12.0
+ react-dom: 16.12.0
+ react-scripts: 3.3.0
+ rollup: ^1.28.0
+ rollup-plugin-peer-deps-external: ^2.2.0
+ rollup-plugin-postcss: 2.0.3
+ terser: 4.6.1
+ tslib: ^1.10.0
+ typescript: ^3.7.4
+ uglify-js: ^3.7.4
diff --git a/rollup.config.js b/rollup.config.js
index 310a79f..513225f 100644
--- a/rollup.config.js
+++ b/rollup.config.js
@@ -1,46 +1,39 @@
-import babel from 'rollup-plugin-babel';
-import commonjs from 'rollup-plugin-commonjs';
+import commonjs from '@rollup/plugin-commonjs';
import external from 'rollup-plugin-peer-deps-external';
+import typescript from '@rollup/plugin-typescript';
+import resolve from '@rollup/plugin-node-resolve';
+import url from '@rollup/plugin-url';
import postcss from 'rollup-plugin-postcss';
-import resolve from 'rollup-plugin-node-resolve';
-import url from 'rollup-plugin-url';
+
import svgr from '@svgr/rollup';
+import react from 'react';
+import reactDom from 'react-dom';
+
import pkg from './package.json';
-export default [
- {
- input: 'src/index.js',
- output: [
- {
- file: pkg.main,
- format: 'cjs',
- sourcemap: false,
- exports: 'named',
- globals: {
- react: 'React',
- 'react-dom': 'ReactDOM',
- },
- },
- {
- file: pkg.module,
- format: 'es',
- sourcemap: false,
- exports: 'named',
- globals: {
- react: 'React',
- 'react-dom': 'ReactDOM',
- },
- },
- ],
- plugins: [
- external(),
- postcss({}),
- url({ exclude: ['**/*.svg'] }),
- svgr(),
- babel({ exclude: 'node_modules/**' }),
- resolve(),
- commonjs(),
- ],
- },
-];
+const config = {
+ input: 'src/index.tsx',
+ output: [
+ { file: pkg.main, format: 'cjs', exports: 'named', sourcemap: false },
+ { file: pkg.module, format: 'es', exports: 'named', sourcemap: false },
+ ],
+ plugins: [
+ external(),
+ postcss({}),
+ url({ exclude: ['**/*.svg'] }),
+ svgr(),
+ resolve(),
+ typescript({
+ tsconfig: './tsconfig.json',
+ lib: ['es5', 'es6', 'dom'],
+ target: 'es5',
+ }),
+ commonjs({
+ namedExports: { react: Object.keys(react), 'react-dom': Object.keys(reactDom) },
+ extensions: ['.js', '.ts', '.jsx', '.tsx'],
+ }),
+ ],
+};
+
+export default config;
diff --git a/src/components/Icons.js b/src/components/Icons.tsx
similarity index 90%
rename from src/components/Icons.js
rename to src/components/Icons.tsx
index 0f0df66..ac5bd91 100644
--- a/src/components/Icons.js
+++ b/src/components/Icons.tsx
@@ -1,6 +1,8 @@
import React from 'react';
-const success = props => (
+interface IconProps {}
+
+const success: React.FC = (props) => (
);
-const warn = props => (
+const warn: React.FC = (props) => (
);
-const loading = props => ;
+const loading: React.FC = (props) => ;
-const info = props => (
+const info: React.FC = (props) => (
);
-const error = props => (
+const error: React.FC = (props) => (