Showing
9 changed files
with
1038 additions
and
44 deletions
... | @@ -3,16 +3,18 @@ | ... | @@ -3,16 +3,18 @@ |
3 | "version": "0.1.0", | 3 | "version": "0.1.0", |
4 | "private": true, | 4 | "private": true, |
5 | "dependencies": { | 5 | "dependencies": { |
6 | + "@next/bundle-analyzer": "^10.0.7", | ||
6 | "@testing-library/jest-dom": "^5.11.4", | 7 | "@testing-library/jest-dom": "^5.11.4", |
7 | "@testing-library/react": "^11.1.0", | 8 | "@testing-library/react": "^11.1.0", |
8 | "@testing-library/user-event": "^12.1.10", | 9 | "@testing-library/user-event": "^12.1.10", |
9 | - "@next/bundle-analyzer": "^10.0.7", | 10 | + "next": "^10.0.5", |
10 | "react": "^17.0.2", | 11 | "react": "^17.0.2", |
11 | "react-dom": "^17.0.2", | 12 | "react-dom": "^17.0.2", |
12 | "styled-components": "^5.2.3", | 13 | "styled-components": "^5.2.3", |
13 | - "web-vitals": "^1.0.1", | 14 | + "styled-reset": "^4.3.4", |
14 | - "next": "^10.0.5", | 15 | + "tui-image-editor": "3.14.2", |
15 | - "styled-reset": "^4.3.4" | 16 | + "@toast-ui/react-image-editor": "3.14.2", |
17 | + "web-vitals": "^1.0.1" | ||
16 | }, | 18 | }, |
17 | "devDependencies": { | 19 | "devDependencies": { |
18 | "@babel/core": "^7.13.10", | 20 | "@babel/core": "^7.13.10", | ... | ... |
... | @@ -3,7 +3,7 @@ import styled from "styled-components"; | ... | @@ -3,7 +3,7 @@ import styled from "styled-components"; |
3 | 3 | ||
4 | const Image = () => { | 4 | const Image = () => { |
5 | const [file, setFile] = useState(undefined); | 5 | const [file, setFile] = useState(undefined); |
6 | - const [previewURL, setPreviewURL] = useState(""); | 6 | + const [previewURL, setPreviewURL] = useState<string | ArrayBuffer>(""); |
7 | 7 | ||
8 | // const uploadImage = (file) => { | 8 | // const uploadImage = (file) => { |
9 | // if (!file) { | 9 | // if (!file) { |
... | @@ -29,32 +29,41 @@ const Image = () => { | ... | @@ -29,32 +29,41 @@ const Image = () => { |
29 | <ImgBox> | 29 | <ImgBox> |
30 | {file === undefined ? ( | 30 | {file === undefined ? ( |
31 | <> | 31 | <> |
32 | - <BlankBox /> | 32 | + <div className="sub-flex"> |
33 | - <div>Click to add a photo</div> | 33 | + <BlankBox /> |
34 | - <input | 34 | + <div>Click to add a photo</div> |
35 | - type="file" | 35 | + <input |
36 | - style={{ | 36 | + type="file" |
37 | - marginTop: "5px", | 37 | + style={{ |
38 | - position: "absolute", | 38 | + position: "absolute", |
39 | - zIndex: 0, | 39 | + top: 0, |
40 | - width: "90%", | 40 | + paddingLeft: 0, |
41 | - height: "100%", | 41 | + zIndex: 0, |
42 | - border: "none", | 42 | + width: "90%", |
43 | - cursor: "pointer", | 43 | + height: "100%", |
44 | - outline: "none", | 44 | + border: "none", |
45 | - }} | 45 | + cursor: "pointer", |
46 | - onChange={selectImg} | 46 | + outline: "none", |
47 | - /> | 47 | + }} |
48 | + onChange={selectImg} | ||
49 | + /> | ||
50 | + </div> | ||
51 | + <div className="sub-flex">Open Image Editor</div> | ||
48 | </> | 52 | </> |
49 | ) : ( | 53 | ) : ( |
50 | <img | 54 | <img |
51 | alt={""} | 55 | alt={""} |
52 | - style={{ objectFit: "cover", display: "flex", margin: "0 auto" }} | 56 | + style={{ |
53 | - src={previewURL} | 57 | + objectFit: "cover", |
58 | + display: "flex", | ||
59 | + margin: "0 auto", | ||
60 | + width: "50rem", | ||
61 | + }} | ||
62 | + src={previewURL as string} | ||
54 | /> | 63 | /> |
55 | )} | 64 | )} |
56 | </ImgBox> | 65 | </ImgBox> |
57 | - <Menu /> | 66 | + {/* <Menu /> */} |
58 | </Container> | 67 | </Container> |
59 | ); | 68 | ); |
60 | }; | 69 | }; |
... | @@ -77,7 +86,6 @@ const Container = styled.div` | ... | @@ -77,7 +86,6 @@ const Container = styled.div` |
77 | `; | 86 | `; |
78 | const ImgBox = styled.div` | 87 | const ImgBox = styled.div` |
79 | position: relative; | 88 | position: relative; |
80 | - width: 40rem; | ||
81 | height: 30rem; | 89 | height: 30rem; |
82 | background-color: white; | 90 | background-color: white; |
83 | box-shadow: ${({ theme }) => theme.boxShadow.normal}; | 91 | box-shadow: ${({ theme }) => theme.boxShadow.normal}; |
... | @@ -87,6 +95,20 @@ const ImgBox = styled.div` | ... | @@ -87,6 +95,20 @@ const ImgBox = styled.div` |
87 | align-items: center; | 95 | align-items: center; |
88 | justify-content: center; | 96 | justify-content: center; |
89 | font-size: 1rem; | 97 | font-size: 1rem; |
98 | + display: flex; | ||
99 | + flex: 0.6; | ||
100 | + padding: 1rem 0; | ||
101 | + .sub-flex { | ||
102 | + position: relative; | ||
103 | + width: 100%; | ||
104 | + height: 100%; | ||
105 | + display: flex; | ||
106 | + align-items: center; | ||
107 | + justify-content: center; | ||
108 | + :first-child { | ||
109 | + border-right: 1px solid ${({ theme }) => theme.color.gray}; | ||
110 | + } | ||
111 | + } | ||
90 | `; | 112 | `; |
91 | 113 | ||
92 | const Box = styled.div` | 114 | const Box = styled.div` | ... | ... |
src/components/ToastEditor/index.tsx
0 → 100644
1 | +/// <reference path="react-image-editor.d.ts" /> | ||
2 | +import ImageEditor from "@toast-ui/react-image-editor"; | ||
3 | +import "tui-image-editor/dist/tui-image-editor.css"; | ||
4 | + | ||
5 | +const ToastEditor = () => { | ||
6 | + return ( | ||
7 | + <ImageEditor | ||
8 | + includeUI={{ | ||
9 | + loadImage: { | ||
10 | + // path: 'img/sampleImage.jpg', | ||
11 | + name: "SampleImage", | ||
12 | + }, | ||
13 | + // theme: myTheme, | ||
14 | + menu: ["shape", "filter"], | ||
15 | + initMenu: "filter", | ||
16 | + uiSize: { | ||
17 | + width: "1000px", | ||
18 | + height: "700px", | ||
19 | + }, | ||
20 | + menuBarPosition: "bottom", | ||
21 | + }} | ||
22 | + cssMaxHeight={500} | ||
23 | + cssMaxWidth={700} | ||
24 | + selectionStyle={{ | ||
25 | + cornerSize: 20, | ||
26 | + rotatingPointOffset: 70, | ||
27 | + }} | ||
28 | + usageStatistics={true} | ||
29 | + /> | ||
30 | + ); | ||
31 | +}; | ||
32 | + | ||
33 | +export default ToastEditor; |
1 | +declare module "@toast-ui/react-image-editor"; |
... | @@ -58,6 +58,13 @@ class MyDocument extends Document { | ... | @@ -58,6 +58,13 @@ class MyDocument extends Document { |
58 | <body> | 58 | <body> |
59 | <Main /> | 59 | <Main /> |
60 | <NextScript /> | 60 | <NextScript /> |
61 | + <script src="libs/code-snippet.min.js"></script> | ||
62 | + <script src="libs/jquery.min.js"></script> | ||
63 | + <script src="libs/fabric.min.js"></script> | ||
64 | + <script src="js/image-editor.js"></script> | ||
65 | + <div id="my-image-editor"> | ||
66 | + <canvas></canvas> | ||
67 | + </div> | ||
61 | </body> | 68 | </body> |
62 | </Html> | 69 | </Html> |
63 | ); | 70 | ); | ... | ... |
1 | import Header from "components/Header"; | 1 | import Header from "components/Header"; |
2 | import Image from "components/Image"; | 2 | import Image from "components/Image"; |
3 | import styled from "styled-components"; | 3 | import styled from "styled-components"; |
4 | +import dynamic from "next/dynamic"; | ||
5 | + | ||
6 | +const ToastEditor = dynamic(() => import("components/ToastEditor"), { | ||
7 | + ssr: false, | ||
8 | +}); | ||
4 | 9 | ||
5 | const Index = () => ( | 10 | const Index = () => ( |
6 | <Container> | 11 | <Container> |
7 | <Header /> | 12 | <Header /> |
8 | <Image /> | 13 | <Image /> |
14 | + <ToastEditor /> | ||
9 | </Container> | 15 | </Container> |
10 | ); | 16 | ); |
11 | 17 | ... | ... |
yarn-error.log
0 → 100644
This diff could not be displayed because it is too large.
... | @@ -1354,6 +1354,14 @@ | ... | @@ -1354,6 +1354,14 @@ |
1354 | dependencies: | 1354 | dependencies: |
1355 | "@babel/runtime" "^7.12.5" | 1355 | "@babel/runtime" "^7.12.5" |
1356 | 1356 | ||
1357 | +"@toast-ui/react-image-editor@3.14.2": | ||
1358 | + version "3.14.2" | ||
1359 | + resolved "https://registry.yarnpkg.com/@toast-ui/react-image-editor/-/react-image-editor-3.14.2.tgz#d7770b72d5bf857184c896b642868c33348cff69" | ||
1360 | + integrity sha512-FWnEBTESI6yqM9eDqkGTNbnN6lM9/XxxrxMlg06sW9Dh5LvQsIYdz0G8J77brR0Qm+FXdwAK/n2jltitcTnB0Q== | ||
1361 | + dependencies: | ||
1362 | + fabric "^4.2.0" | ||
1363 | + tui-image-editor "^3.14.2" | ||
1364 | + | ||
1357 | "@types/aria-query@^4.2.0": | 1365 | "@types/aria-query@^4.2.0": |
1358 | version "4.2.1" | 1366 | version "4.2.1" |
1359 | resolved "https://registry.yarnpkg.com/@types/aria-query/-/aria-query-4.2.1.tgz#78b5433344e2f92e8b306c06a5622c50c245bf6b" | 1367 | resolved "https://registry.yarnpkg.com/@types/aria-query/-/aria-query-4.2.1.tgz#78b5433344e2f92e8b306c06a5622c50c245bf6b" |
... | @@ -1563,17 +1571,45 @@ | ... | @@ -1563,17 +1571,45 @@ |
1563 | "@typescript-eslint/types" "4.22.0" | 1571 | "@typescript-eslint/types" "4.22.0" |
1564 | eslint-visitor-keys "^2.0.0" | 1572 | eslint-visitor-keys "^2.0.0" |
1565 | 1573 | ||
1574 | +abab@^2.0.0: | ||
1575 | + version "2.0.5" | ||
1576 | + resolved "https://registry.yarnpkg.com/abab/-/abab-2.0.5.tgz#c0b678fb32d60fc1219c784d6a826fe385aeb79a" | ||
1577 | + integrity sha512-9IK9EadsbHo6jLWIpxpR6pL0sazTXV6+SQv25ZB+F7Bj9mJNaOc4nCRabwd5M/JwmUa8idz6Eci6eKfJryPs6Q== | ||
1578 | + | ||
1579 | +abbrev@1: | ||
1580 | + version "1.1.1" | ||
1581 | + resolved "https://registry.yarnpkg.com/abbrev/-/abbrev-1.1.1.tgz#f8f2c887ad10bf67f634f005b6987fed3179aac8" | ||
1582 | + integrity sha512-nne9/IiQ/hzIhY6pdDnbBtz7DjPTKrY00P/zvPSm5pOFkl6xuGrGnXn/VtTNNfNtAfZ9/1RtehkszU9qcTii0Q== | ||
1583 | + | ||
1584 | +acorn-globals@^4.3.2: | ||
1585 | + version "4.3.4" | ||
1586 | + resolved "https://registry.yarnpkg.com/acorn-globals/-/acorn-globals-4.3.4.tgz#9fa1926addc11c97308c4e66d7add0d40c3272e7" | ||
1587 | + integrity sha512-clfQEh21R+D0leSbUdWf3OcfqyaCSAQ8Ryq00bofSekfr9W8u1jyYZo6ir0xu9Gtcf7BjcHJpnbZH7JOCpP60A== | ||
1588 | + dependencies: | ||
1589 | + acorn "^6.0.1" | ||
1590 | + acorn-walk "^6.0.1" | ||
1591 | + | ||
1566 | acorn-jsx@^5.3.1: | 1592 | acorn-jsx@^5.3.1: |
1567 | version "5.3.1" | 1593 | version "5.3.1" |
1568 | resolved "https://registry.yarnpkg.com/acorn-jsx/-/acorn-jsx-5.3.1.tgz#fc8661e11b7ac1539c47dbfea2e72b3af34d267b" | 1594 | resolved "https://registry.yarnpkg.com/acorn-jsx/-/acorn-jsx-5.3.1.tgz#fc8661e11b7ac1539c47dbfea2e72b3af34d267b" |
1569 | integrity sha512-K0Ptm/47OKfQRpNQ2J/oIN/3QYiK6FwW+eJbILhsdxh2WTLdl+30o8aGdTbm5JbffpFFAg/g+zi1E+jvJha5ng== | 1595 | integrity sha512-K0Ptm/47OKfQRpNQ2J/oIN/3QYiK6FwW+eJbILhsdxh2WTLdl+30o8aGdTbm5JbffpFFAg/g+zi1E+jvJha5ng== |
1570 | 1596 | ||
1597 | +acorn-walk@^6.0.1: | ||
1598 | + version "6.2.0" | ||
1599 | + resolved "https://registry.yarnpkg.com/acorn-walk/-/acorn-walk-6.2.0.tgz#123cb8f3b84c2171f1f7fb252615b1c78a6b1a8c" | ||
1600 | + integrity sha512-7evsyfH1cLOCdAzZAd43Cic04yKydNx0cF+7tiA19p1XnLLPU4dpCQOqpjqwokFe//vS0QqfqqjCS2JkiIs0cA== | ||
1601 | + | ||
1571 | acorn-walk@^8.0.0: | 1602 | acorn-walk@^8.0.0: |
1572 | version "8.0.2" | 1603 | version "8.0.2" |
1573 | resolved "https://registry.yarnpkg.com/acorn-walk/-/acorn-walk-8.0.2.tgz#d4632bfc63fd93d0f15fd05ea0e984ffd3f5a8c3" | 1604 | resolved "https://registry.yarnpkg.com/acorn-walk/-/acorn-walk-8.0.2.tgz#d4632bfc63fd93d0f15fd05ea0e984ffd3f5a8c3" |
1574 | integrity sha512-+bpA9MJsHdZ4bgfDcpk0ozQyhhVct7rzOmO0s1IIr0AGGgKBljss8n2zp11rRP2wid5VGeh04CgeKzgat5/25A== | 1605 | integrity sha512-+bpA9MJsHdZ4bgfDcpk0ozQyhhVct7rzOmO0s1IIr0AGGgKBljss8n2zp11rRP2wid5VGeh04CgeKzgat5/25A== |
1575 | 1606 | ||
1576 | -acorn@^7.4.0: | 1607 | +acorn@^6.0.1: |
1608 | + version "6.4.2" | ||
1609 | + resolved "https://registry.yarnpkg.com/acorn/-/acorn-6.4.2.tgz#35866fd710528e92de10cf06016498e47e39e1e6" | ||
1610 | + integrity sha512-XtGIhXwF8YM8bJhGxG5kXgjkEuNGLTkoYqVE+KMR+aspr4KGYmKYg7yUe3KghyQ9yheNwLnjmzh/7+gfDBmHCQ== | ||
1611 | + | ||
1612 | +acorn@^7.1.0, acorn@^7.4.0: | ||
1577 | version "7.4.1" | 1613 | version "7.4.1" |
1578 | resolved "https://registry.yarnpkg.com/acorn/-/acorn-7.4.1.tgz#feaed255973d2e77555b83dbc08851a6c63520fa" | 1614 | resolved "https://registry.yarnpkg.com/acorn/-/acorn-7.4.1.tgz#feaed255973d2e77555b83dbc08851a6c63520fa" |
1579 | integrity sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A== | 1615 | integrity sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A== |
... | @@ -1588,7 +1624,7 @@ ajv-keywords@^3.5.2: | ... | @@ -1588,7 +1624,7 @@ ajv-keywords@^3.5.2: |
1588 | resolved "https://registry.yarnpkg.com/ajv-keywords/-/ajv-keywords-3.5.2.tgz#31f29da5ab6e00d1c2d329acf7b5929614d5014d" | 1624 | resolved "https://registry.yarnpkg.com/ajv-keywords/-/ajv-keywords-3.5.2.tgz#31f29da5ab6e00d1c2d329acf7b5929614d5014d" |
1589 | integrity sha512-5p6WTN0DdTGVQk6VjcEju19IgaHudalcfabD7yhDGeA6bcQnmL+CpveLJq/3hvfwd1aof6L386Ougkx6RfyMIQ== | 1625 | integrity sha512-5p6WTN0DdTGVQk6VjcEju19IgaHudalcfabD7yhDGeA6bcQnmL+CpveLJq/3hvfwd1aof6L386Ougkx6RfyMIQ== |
1590 | 1626 | ||
1591 | -ajv@^6.10.0, ajv@^6.12.4: | 1627 | +ajv@^6.10.0, ajv@^6.12.3, ajv@^6.12.4: |
1592 | version "6.12.6" | 1628 | version "6.12.6" |
1593 | resolved "https://registry.yarnpkg.com/ajv/-/ajv-6.12.6.tgz#baf5a62e802b07d977034586f8c3baf5adf26df4" | 1629 | resolved "https://registry.yarnpkg.com/ajv/-/ajv-6.12.6.tgz#baf5a62e802b07d977034586f8c3baf5adf26df4" |
1594 | integrity sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g== | 1630 | integrity sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g== |
... | @@ -1618,6 +1654,16 @@ ansi-colors@^4.1.1: | ... | @@ -1618,6 +1654,16 @@ ansi-colors@^4.1.1: |
1618 | resolved "https://registry.yarnpkg.com/ansi-colors/-/ansi-colors-4.1.1.tgz#cbb9ae256bf750af1eab344f229aa27fe94ba348" | 1654 | resolved "https://registry.yarnpkg.com/ansi-colors/-/ansi-colors-4.1.1.tgz#cbb9ae256bf750af1eab344f229aa27fe94ba348" |
1619 | integrity sha512-JoX0apGbHaUJBNl6yF+p6JAFYZ666/hhCGKN5t9QFjbJQKUU/g8MNbFDbvfrgKXvI1QpZplPOnwIo99lX/AAmA== | 1655 | integrity sha512-JoX0apGbHaUJBNl6yF+p6JAFYZ666/hhCGKN5t9QFjbJQKUU/g8MNbFDbvfrgKXvI1QpZplPOnwIo99lX/AAmA== |
1620 | 1656 | ||
1657 | +ansi-regex@^2.0.0: | ||
1658 | + version "2.1.1" | ||
1659 | + resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-2.1.1.tgz#c3b33ab5ee360d86e0e628f0468ae7ef27d654df" | ||
1660 | + integrity sha1-w7M6te42DYbg5ijwRorn7yfWVN8= | ||
1661 | + | ||
1662 | +ansi-regex@^3.0.0: | ||
1663 | + version "3.0.0" | ||
1664 | + resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-3.0.0.tgz#ed0317c322064f79466c02966bddb605ab37d998" | ||
1665 | + integrity sha1-7QMXwyIGT3lGbAKWa922Bas32Zg= | ||
1666 | + | ||
1621 | ansi-regex@^5.0.0: | 1667 | ansi-regex@^5.0.0: |
1622 | version "5.0.0" | 1668 | version "5.0.0" |
1623 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-5.0.0.tgz#388539f55179bf39339c81af30a654d69f87cb75" | 1669 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-5.0.0.tgz#388539f55179bf39339c81af30a654d69f87cb75" |
... | @@ -1645,6 +1691,19 @@ anymatch@~3.1.1: | ... | @@ -1645,6 +1691,19 @@ anymatch@~3.1.1: |
1645 | normalize-path "^3.0.0" | 1691 | normalize-path "^3.0.0" |
1646 | picomatch "^2.0.4" | 1692 | picomatch "^2.0.4" |
1647 | 1693 | ||
1694 | +aproba@^1.0.3: | ||
1695 | + version "1.2.0" | ||
1696 | + resolved "https://registry.yarnpkg.com/aproba/-/aproba-1.2.0.tgz#6802e6264efd18c790a1b0d517f0f2627bf2c94a" | ||
1697 | + integrity sha512-Y9J6ZjXtoYh8RnXVCMOU/ttDmk1aBjunq9vO0ta5x85WDQiQfUF9sIPBITdbiiIVcBo03Hi3jMxigBtsddlXRw== | ||
1698 | + | ||
1699 | +are-we-there-yet@~1.1.2: | ||
1700 | + version "1.1.5" | ||
1701 | + resolved "https://registry.yarnpkg.com/are-we-there-yet/-/are-we-there-yet-1.1.5.tgz#4b35c2944f062a8bfcda66410760350fe9ddfc21" | ||
1702 | + integrity sha512-5hYdAkZlcG8tOLujVDTgCT+uPX0VnpAH28gWsLfzpXYm7wP6mp5Q/gYyR7YQ0cKVJcXJnl3j2kpBan13PtQf6w== | ||
1703 | + dependencies: | ||
1704 | + delegates "^1.0.0" | ||
1705 | + readable-stream "^2.0.6" | ||
1706 | + | ||
1648 | argparse@^1.0.7: | 1707 | argparse@^1.0.7: |
1649 | version "1.0.10" | 1708 | version "1.0.10" |
1650 | resolved "https://registry.yarnpkg.com/argparse/-/argparse-1.0.10.tgz#bcd6791ea5ae09725e17e5ad988134cd40b3d911" | 1709 | resolved "https://registry.yarnpkg.com/argparse/-/argparse-1.0.10.tgz#bcd6791ea5ae09725e17e5ad988134cd40b3d911" |
... | @@ -1660,6 +1719,11 @@ aria-query@^4.2.2: | ... | @@ -1660,6 +1719,11 @@ aria-query@^4.2.2: |
1660 | "@babel/runtime" "^7.10.2" | 1719 | "@babel/runtime" "^7.10.2" |
1661 | "@babel/runtime-corejs3" "^7.10.2" | 1720 | "@babel/runtime-corejs3" "^7.10.2" |
1662 | 1721 | ||
1722 | +array-equal@^1.0.0: | ||
1723 | + version "1.0.0" | ||
1724 | + resolved "https://registry.yarnpkg.com/array-equal/-/array-equal-1.0.0.tgz#8c2a5ef2472fd9ea742b04c77a75093ba2757c93" | ||
1725 | + integrity sha1-jCpe8kcv2ep0KwTHenUJO6J1fJM= | ||
1726 | + | ||
1663 | array-filter@^1.0.0: | 1727 | array-filter@^1.0.0: |
1664 | version "1.0.0" | 1728 | version "1.0.0" |
1665 | resolved "https://registry.yarnpkg.com/array-filter/-/array-filter-1.0.0.tgz#baf79e62e6ef4c2a4c0b831232daffec251f9d83" | 1729 | resolved "https://registry.yarnpkg.com/array-filter/-/array-filter-1.0.0.tgz#baf79e62e6ef4c2a4c0b831232daffec251f9d83" |
... | @@ -1710,6 +1774,18 @@ asn1.js@^5.2.0: | ... | @@ -1710,6 +1774,18 @@ asn1.js@^5.2.0: |
1710 | minimalistic-assert "^1.0.0" | 1774 | minimalistic-assert "^1.0.0" |
1711 | safer-buffer "^2.1.0" | 1775 | safer-buffer "^2.1.0" |
1712 | 1776 | ||
1777 | +asn1@~0.2.3: | ||
1778 | + version "0.2.4" | ||
1779 | + resolved "https://registry.yarnpkg.com/asn1/-/asn1-0.2.4.tgz#8d2475dfab553bb33e77b54e59e880bb8ce23136" | ||
1780 | + integrity sha512-jxwzQpLQjSmWXgwaCZE9Nz+glAG01yF1QnWgbhGwHI5A6FRIEY6IVqtHhIepHqI7/kyEyQEagBC5mBEFlIYvdg== | ||
1781 | + dependencies: | ||
1782 | + safer-buffer "~2.1.0" | ||
1783 | + | ||
1784 | +assert-plus@1.0.0, assert-plus@^1.0.0: | ||
1785 | + version "1.0.0" | ||
1786 | + resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-1.0.0.tgz#f12e0f3c5d77b0b1cdd9146942e4e96c1e4dd525" | ||
1787 | + integrity sha1-8S4PPF13sLHN2RRpQuTpbB5N1SU= | ||
1788 | + | ||
1713 | assert@2.0.0: | 1789 | assert@2.0.0: |
1714 | version "2.0.0" | 1790 | version "2.0.0" |
1715 | resolved "https://registry.yarnpkg.com/assert/-/assert-2.0.0.tgz#95fc1c616d48713510680f2eaf2d10dd22e02d32" | 1791 | resolved "https://registry.yarnpkg.com/assert/-/assert-2.0.0.tgz#95fc1c616d48713510680f2eaf2d10dd22e02d32" |
... | @@ -1743,6 +1819,11 @@ astral-regex@^2.0.0: | ... | @@ -1743,6 +1819,11 @@ astral-regex@^2.0.0: |
1743 | resolved "https://registry.yarnpkg.com/astral-regex/-/astral-regex-2.0.0.tgz#483143c567aeed4785759c0865786dc77d7d2e31" | 1819 | resolved "https://registry.yarnpkg.com/astral-regex/-/astral-regex-2.0.0.tgz#483143c567aeed4785759c0865786dc77d7d2e31" |
1744 | integrity sha512-Z7tMw1ytTXt5jqMcOP+OQteU1VuNK9Y02uuJtKQ1Sv69jXQKKg5cibLwGJow8yzZP+eAc18EmLGPal0bp36rvQ== | 1820 | integrity sha512-Z7tMw1ytTXt5jqMcOP+OQteU1VuNK9Y02uuJtKQ1Sv69jXQKKg5cibLwGJow8yzZP+eAc18EmLGPal0bp36rvQ== |
1745 | 1821 | ||
1822 | +asynckit@^0.4.0: | ||
1823 | + version "0.4.0" | ||
1824 | + resolved "https://registry.yarnpkg.com/asynckit/-/asynckit-0.4.0.tgz#c79ed97f7f34cb8f2ba1bc9790bcc366474b4b79" | ||
1825 | + integrity sha1-x57Zf380y48robyXkLzDZkdLS3k= | ||
1826 | + | ||
1746 | atob@^2.1.2: | 1827 | atob@^2.1.2: |
1747 | version "2.1.2" | 1828 | version "2.1.2" |
1748 | resolved "https://registry.yarnpkg.com/atob/-/atob-2.1.2.tgz#6d9517eb9e030d2436666651e86bd9f6f13533c9" | 1829 | resolved "https://registry.yarnpkg.com/atob/-/atob-2.1.2.tgz#6d9517eb9e030d2436666651e86bd9f6f13533c9" |
... | @@ -1755,6 +1836,16 @@ available-typed-arrays@^1.0.2: | ... | @@ -1755,6 +1836,16 @@ available-typed-arrays@^1.0.2: |
1755 | dependencies: | 1836 | dependencies: |
1756 | array-filter "^1.0.0" | 1837 | array-filter "^1.0.0" |
1757 | 1838 | ||
1839 | +aws-sign2@~0.7.0: | ||
1840 | + version "0.7.0" | ||
1841 | + resolved "https://registry.yarnpkg.com/aws-sign2/-/aws-sign2-0.7.0.tgz#b46e890934a9591f2d2f6f86d7e6a9f1b3fe76a8" | ||
1842 | + integrity sha1-tG6JCTSpWR8tL2+G1+ap8bP+dqg= | ||
1843 | + | ||
1844 | +aws4@^1.8.0: | ||
1845 | + version "1.11.0" | ||
1846 | + resolved "https://registry.yarnpkg.com/aws4/-/aws4-1.11.0.tgz#d61f46d83b2519250e2784daf5b09479a8b41c59" | ||
1847 | + integrity sha512-xh1Rl34h6Fi1DC2WWKfxUTVqRsNnr6LsKz2+hfwDxQJWmrx8+c7ylaqBMcHfl1U1r2dsifOvKX3LQuLNZ+XSvA== | ||
1848 | + | ||
1758 | axe-core@^4.0.2: | 1849 | axe-core@^4.0.2: |
1759 | version "4.1.2" | 1850 | version "4.1.2" |
1760 | resolved "https://registry.yarnpkg.com/axe-core/-/axe-core-4.1.2.tgz#7cf783331320098bfbef620df3b3c770147bc224" | 1851 | resolved "https://registry.yarnpkg.com/axe-core/-/axe-core-4.1.2.tgz#7cf783331320098bfbef620df3b3c770147bc224" |
... | @@ -1807,6 +1898,13 @@ base64-js@^1.0.2: | ... | @@ -1807,6 +1898,13 @@ base64-js@^1.0.2: |
1807 | resolved "https://registry.yarnpkg.com/base64-js/-/base64-js-1.5.1.tgz#1b1b440160a5bf7ad40b650f095963481903930a" | 1898 | resolved "https://registry.yarnpkg.com/base64-js/-/base64-js-1.5.1.tgz#1b1b440160a5bf7ad40b650f095963481903930a" |
1808 | integrity sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA== | 1899 | integrity sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA== |
1809 | 1900 | ||
1901 | +bcrypt-pbkdf@^1.0.0: | ||
1902 | + version "1.0.2" | ||
1903 | + resolved "https://registry.yarnpkg.com/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.2.tgz#a4301d389b6a43f9b67ff3ca11a3f6637e360e9e" | ||
1904 | + integrity sha1-pDAdOJtqQ/m2f/PKEaP2Y342Dp4= | ||
1905 | + dependencies: | ||
1906 | + tweetnacl "^0.14.3" | ||
1907 | + | ||
1810 | big.js@^5.2.2: | 1908 | big.js@^5.2.2: |
1811 | version "5.2.2" | 1909 | version "5.2.2" |
1812 | resolved "https://registry.yarnpkg.com/big.js/-/big.js-5.2.2.tgz#65f0af382f578bcdc742bd9c281e9cb2d7768328" | 1910 | resolved "https://registry.yarnpkg.com/big.js/-/big.js-5.2.2.tgz#65f0af382f578bcdc742bd9c281e9cb2d7768328" |
... | @@ -1852,6 +1950,11 @@ brorand@^1.0.1, brorand@^1.1.0: | ... | @@ -1852,6 +1950,11 @@ brorand@^1.0.1, brorand@^1.1.0: |
1852 | resolved "https://registry.yarnpkg.com/brorand/-/brorand-1.1.0.tgz#12c25efe40a45e3c323eb8675a0a0ce57b22371f" | 1950 | resolved "https://registry.yarnpkg.com/brorand/-/brorand-1.1.0.tgz#12c25efe40a45e3c323eb8675a0a0ce57b22371f" |
1853 | integrity sha1-EsJe/kCkXjwyPrhnWgoM5XsiNx8= | 1951 | integrity sha1-EsJe/kCkXjwyPrhnWgoM5XsiNx8= |
1854 | 1952 | ||
1953 | +browser-process-hrtime@^1.0.0: | ||
1954 | + version "1.0.0" | ||
1955 | + resolved "https://registry.yarnpkg.com/browser-process-hrtime/-/browser-process-hrtime-1.0.0.tgz#3c9b4b7d782c8121e56f10106d84c0d0ffc94626" | ||
1956 | + integrity sha512-9o5UecI3GhkpM6DrXr69PblIuWxPKk9Y0jHBRhdocZ2y7YECBFCsHm79Pr3OyR2AvjhDkabFJaDJMYRazHgsow== | ||
1957 | + | ||
1855 | browserify-aes@^1.0.0, browserify-aes@^1.0.4: | 1958 | browserify-aes@^1.0.0, browserify-aes@^1.0.4: |
1856 | version "1.2.0" | 1959 | version "1.2.0" |
1857 | resolved "https://registry.yarnpkg.com/browserify-aes/-/browserify-aes-1.2.0.tgz#326734642f403dabc3003209853bb70ad428ef48" | 1960 | resolved "https://registry.yarnpkg.com/browserify-aes/-/browserify-aes-1.2.0.tgz#326734642f403dabc3003209853bb70ad428ef48" |
... | @@ -2000,6 +2103,20 @@ caniuse-lite@^1.0.30001181: | ... | @@ -2000,6 +2103,20 @@ caniuse-lite@^1.0.30001181: |
2000 | resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001191.tgz#bacb432b6701f690c8c5f7c680166b9a9f0843d9" | 2103 | resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001191.tgz#bacb432b6701f690c8c5f7c680166b9a9f0843d9" |
2001 | integrity sha512-xJJqzyd+7GCJXkcoBiQ1GuxEiOBCLQ0aVW9HMekifZsAVGdj5eJ4mFB9fEhSHipq9IOk/QXFJUiIr9lZT+EsGw== | 2104 | integrity sha512-xJJqzyd+7GCJXkcoBiQ1GuxEiOBCLQ0aVW9HMekifZsAVGdj5eJ4mFB9fEhSHipq9IOk/QXFJUiIr9lZT+EsGw== |
2002 | 2105 | ||
2106 | +canvas@^2.6.1: | ||
2107 | + version "2.7.0" | ||
2108 | + resolved "https://registry.yarnpkg.com/canvas/-/canvas-2.7.0.tgz#3ce3fe30c69595ccd2bd1232967e681c026be61e" | ||
2109 | + integrity sha512-pzCxtkHb+5su5MQjTtepMDlIOtaXo277x0C0u3nMOxtkhTyQ+h2yNKhlROAaDllWgRyePAUitC08sXw26Eb6aw== | ||
2110 | + dependencies: | ||
2111 | + nan "^2.14.0" | ||
2112 | + node-pre-gyp "^0.15.0" | ||
2113 | + simple-get "^3.0.3" | ||
2114 | + | ||
2115 | +caseless@~0.12.0: | ||
2116 | + version "0.12.0" | ||
2117 | + resolved "https://registry.yarnpkg.com/caseless/-/caseless-0.12.0.tgz#1b681c21ff84033c826543090689420d187151dc" | ||
2118 | + integrity sha1-G2gcIf+EAzyCZUMJBolCDRhxUdw= | ||
2119 | + | ||
2003 | chalk@2.4.2, chalk@^2.0.0, chalk@^2.4.1, chalk@^2.4.2: | 2120 | chalk@2.4.2, chalk@^2.0.0, chalk@^2.4.1, chalk@^2.4.2: |
2004 | version "2.4.2" | 2121 | version "2.4.2" |
2005 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-2.4.2.tgz#cd42541677a54333cf541a49108c1432b44c9424" | 2122 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-2.4.2.tgz#cd42541677a54333cf541a49108c1432b44c9424" |
... | @@ -2048,6 +2165,11 @@ chokidar@3.5.1: | ... | @@ -2048,6 +2165,11 @@ chokidar@3.5.1: |
2048 | optionalDependencies: | 2165 | optionalDependencies: |
2049 | fsevents "~2.3.1" | 2166 | fsevents "~2.3.1" |
2050 | 2167 | ||
2168 | +chownr@^1.1.1: | ||
2169 | + version "1.1.4" | ||
2170 | + resolved "https://registry.yarnpkg.com/chownr/-/chownr-1.1.4.tgz#6fc9d7b42d32a583596337666e7d08084da2cc6b" | ||
2171 | + integrity sha512-jJ0bqzaylmJtVnNgzTeSOs8DPavpbYgEr/b0YL8/2GO3xJEhInFmhKMUnEJQjZumK7KXGFhUy89PrsJWlakBVg== | ||
2172 | + | ||
2051 | cipher-base@^1.0.0, cipher-base@^1.0.1, cipher-base@^1.0.3: | 2173 | cipher-base@^1.0.0, cipher-base@^1.0.1, cipher-base@^1.0.3: |
2052 | version "1.0.4" | 2174 | version "1.0.4" |
2053 | resolved "https://registry.yarnpkg.com/cipher-base/-/cipher-base-1.0.4.tgz#8760e4ecc272f4c363532f926d874aae2c1397de" | 2175 | resolved "https://registry.yarnpkg.com/cipher-base/-/cipher-base-1.0.4.tgz#8760e4ecc272f4c363532f926d874aae2c1397de" |
... | @@ -2070,6 +2192,11 @@ coa@^2.0.2: | ... | @@ -2070,6 +2192,11 @@ coa@^2.0.2: |
2070 | chalk "^2.4.1" | 2192 | chalk "^2.4.1" |
2071 | q "^1.1.2" | 2193 | q "^1.1.2" |
2072 | 2194 | ||
2195 | +code-point-at@^1.0.0: | ||
2196 | + version "1.1.0" | ||
2197 | + resolved "https://registry.yarnpkg.com/code-point-at/-/code-point-at-1.1.0.tgz#0d070b4d043a5bea33a2f1a40e2edb3d9a4ccf77" | ||
2198 | + integrity sha1-DQcLTQQ6W+ozovGkDi7bPZpMz3c= | ||
2199 | + | ||
2073 | color-convert@^1.9.0: | 2200 | color-convert@^1.9.0: |
2074 | version "1.9.3" | 2201 | version "1.9.3" |
2075 | resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-1.9.3.tgz#bb71850690e1f136567de629d2d5471deda4c1e8" | 2202 | resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-1.9.3.tgz#bb71850690e1f136567de629d2d5471deda4c1e8" |
... | @@ -2099,6 +2226,13 @@ colorette@^1.2.1: | ... | @@ -2099,6 +2226,13 @@ colorette@^1.2.1: |
2099 | resolved "https://registry.yarnpkg.com/colorette/-/colorette-1.2.1.tgz#4d0b921325c14faf92633086a536db6e89564b1b" | 2226 | resolved "https://registry.yarnpkg.com/colorette/-/colorette-1.2.1.tgz#4d0b921325c14faf92633086a536db6e89564b1b" |
2100 | integrity sha512-puCDz0CzydiSYOrnXpz/PKd69zRrribezjtE9yd4zvytoRc8+RY/KJPvtPFKZS3E3wP6neGyMe0vOTlHO5L3Pw== | 2227 | integrity sha512-puCDz0CzydiSYOrnXpz/PKd69zRrribezjtE9yd4zvytoRc8+RY/KJPvtPFKZS3E3wP6neGyMe0vOTlHO5L3Pw== |
2101 | 2228 | ||
2229 | +combined-stream@^1.0.6, combined-stream@~1.0.6: | ||
2230 | + version "1.0.8" | ||
2231 | + resolved "https://registry.yarnpkg.com/combined-stream/-/combined-stream-1.0.8.tgz#c3d45a8b34fd730631a110a8a2520682b31d5a7f" | ||
2232 | + integrity sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg== | ||
2233 | + dependencies: | ||
2234 | + delayed-stream "~1.0.0" | ||
2235 | + | ||
2102 | commander@^6.2.0: | 2236 | commander@^6.2.0: |
2103 | version "6.2.1" | 2237 | version "6.2.1" |
2104 | resolved "https://registry.yarnpkg.com/commander/-/commander-6.2.1.tgz#0792eb682dfbc325999bb2b84fddddba110ac73c" | 2238 | resolved "https://registry.yarnpkg.com/commander/-/commander-6.2.1.tgz#0792eb682dfbc325999bb2b84fddddba110ac73c" |
... | @@ -2124,6 +2258,11 @@ console-browserify@^1.1.0: | ... | @@ -2124,6 +2258,11 @@ console-browserify@^1.1.0: |
2124 | resolved "https://registry.yarnpkg.com/console-browserify/-/console-browserify-1.2.0.tgz#67063cef57ceb6cf4993a2ab3a55840ae8c49336" | 2258 | resolved "https://registry.yarnpkg.com/console-browserify/-/console-browserify-1.2.0.tgz#67063cef57ceb6cf4993a2ab3a55840ae8c49336" |
2125 | integrity sha512-ZMkYO/LkF17QvCPqM0gxw8yUzigAOZOSWSHg91FH6orS7vcEj5dVZTidN2fQ14yBSdg97RqhSNwLUXInd52OTA== | 2259 | integrity sha512-ZMkYO/LkF17QvCPqM0gxw8yUzigAOZOSWSHg91FH6orS7vcEj5dVZTidN2fQ14yBSdg97RqhSNwLUXInd52OTA== |
2126 | 2260 | ||
2261 | +console-control-strings@^1.0.0, console-control-strings@~1.1.0: | ||
2262 | + version "1.1.0" | ||
2263 | + resolved "https://registry.yarnpkg.com/console-control-strings/-/console-control-strings-1.1.0.tgz#3d7cf4464db6446ea644bf4b39507f9851008e8e" | ||
2264 | + integrity sha1-PXz0Rk22RG6mRL9LOVB/mFEAjo4= | ||
2265 | + | ||
2127 | constants-browserify@1.0.0, constants-browserify@^1.0.0: | 2266 | constants-browserify@1.0.0, constants-browserify@^1.0.0: |
2128 | version "1.0.0" | 2267 | version "1.0.0" |
2129 | resolved "https://registry.yarnpkg.com/constants-browserify/-/constants-browserify-1.0.0.tgz#c20b96d8c617748aaf1c16021760cd27fcb8cb75" | 2268 | resolved "https://registry.yarnpkg.com/constants-browserify/-/constants-browserify-1.0.0.tgz#c20b96d8c617748aaf1c16021760cd27fcb8cb75" |
... | @@ -2154,7 +2293,12 @@ core-js-pure@^3.0.0: | ... | @@ -2154,7 +2293,12 @@ core-js-pure@^3.0.0: |
2154 | resolved "https://registry.yarnpkg.com/core-js-pure/-/core-js-pure-3.9.0.tgz#326cc74e1fef8b7443a6a793ddb0adfcd81f9efb" | 2293 | resolved "https://registry.yarnpkg.com/core-js-pure/-/core-js-pure-3.9.0.tgz#326cc74e1fef8b7443a6a793ddb0adfcd81f9efb" |
2155 | integrity sha512-3pEcmMZC9Cq0D4ZBh3pe2HLtqxpGNJBLXF/kZ2YzK17RbKp94w0HFbdbSx8H8kAlZG5k76hvLrkPm57Uyef+kg== | 2294 | integrity sha512-3pEcmMZC9Cq0D4ZBh3pe2HLtqxpGNJBLXF/kZ2YzK17RbKp94w0HFbdbSx8H8kAlZG5k76hvLrkPm57Uyef+kg== |
2156 | 2295 | ||
2157 | -core-util-is@~1.0.0: | 2296 | +core-js-pure@^3.6.4: |
2297 | + version "3.10.2" | ||
2298 | + resolved "https://registry.yarnpkg.com/core-js-pure/-/core-js-pure-3.10.2.tgz#065304f8547bf42008d4528dfff973c38bd6a332" | ||
2299 | + integrity sha512-uu18pVHQ21n4mzfuSlCXpucu5VKsck3j2m5fjrBOBqqdgWAxwdCgUuGWj6cDDPN1zLj/qtiqKvBMxWgDeeu49Q== | ||
2300 | + | ||
2301 | +core-util-is@1.0.2, core-util-is@~1.0.0: | ||
2158 | version "1.0.2" | 2302 | version "1.0.2" |
2159 | resolved "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.2.tgz#b5fd54220aa2bc5ab57aab7140c940754503c1a7" | 2303 | resolved "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.2.tgz#b5fd54220aa2bc5ab57aab7140c940754503c1a7" |
2160 | integrity sha1-tf1UIgqivFq1eqtxQMlAdUUDwac= | 2304 | integrity sha1-tf1UIgqivFq1eqtxQMlAdUUDwac= |
... | @@ -2314,6 +2458,23 @@ csso@^4.0.2: | ... | @@ -2314,6 +2458,23 @@ csso@^4.0.2: |
2314 | dependencies: | 2458 | dependencies: |
2315 | css-tree "^1.1.2" | 2459 | css-tree "^1.1.2" |
2316 | 2460 | ||
2461 | +cssom@^0.4.1: | ||
2462 | + version "0.4.4" | ||
2463 | + resolved "https://registry.yarnpkg.com/cssom/-/cssom-0.4.4.tgz#5a66cf93d2d0b661d80bf6a44fb65f5c2e4e0a10" | ||
2464 | + integrity sha512-p3pvU7r1MyyqbTk+WbNJIgJjG2VmTIaB10rI93LzVPrmDJKkzKYMtxxyAvQXR/NS6otuzveI7+7BBq3SjBS2mw== | ||
2465 | + | ||
2466 | +cssom@~0.3.6: | ||
2467 | + version "0.3.8" | ||
2468 | + resolved "https://registry.yarnpkg.com/cssom/-/cssom-0.3.8.tgz#9f1276f5b2b463f2114d3f2c75250af8c1a36f4a" | ||
2469 | + integrity sha512-b0tGHbfegbhPJpxpiBPU2sCkigAqtM9O121le6bbOlgyV+NyGyCmVfJ6QW9eRjz8CpNfWEOYBIMIGRYkLwsIYg== | ||
2470 | + | ||
2471 | +cssstyle@^2.0.0: | ||
2472 | + version "2.3.0" | ||
2473 | + resolved "https://registry.yarnpkg.com/cssstyle/-/cssstyle-2.3.0.tgz#ff665a0ddbdc31864b09647f34163443d90b0852" | ||
2474 | + integrity sha512-AZL67abkUzIuvcHqk7c09cezpGNcxUxU4Ioi/05xHk4DQeTkWmGYftIE6ctU6AEt+Gn4n1lDStOtj7FKycP71A== | ||
2475 | + dependencies: | ||
2476 | + cssom "~0.3.6" | ||
2477 | + | ||
2317 | csstype@^3.0.2: | 2478 | csstype@^3.0.2: |
2318 | version "3.0.8" | 2479 | version "3.0.8" |
2319 | resolved "https://registry.yarnpkg.com/csstype/-/csstype-3.0.8.tgz#d2266a792729fb227cd216fb572f43728e1ad340" | 2480 | resolved "https://registry.yarnpkg.com/csstype/-/csstype-3.0.8.tgz#d2266a792729fb227cd216fb572f43728e1ad340" |
... | @@ -2324,11 +2485,27 @@ damerau-levenshtein@^1.0.6: | ... | @@ -2324,11 +2485,27 @@ damerau-levenshtein@^1.0.6: |
2324 | resolved "https://registry.yarnpkg.com/damerau-levenshtein/-/damerau-levenshtein-1.0.6.tgz#143c1641cb3d85c60c32329e26899adea8701791" | 2485 | resolved "https://registry.yarnpkg.com/damerau-levenshtein/-/damerau-levenshtein-1.0.6.tgz#143c1641cb3d85c60c32329e26899adea8701791" |
2325 | integrity sha512-JVrozIeElnj3QzfUIt8tB8YMluBJom4Vw9qTPpjGYQ9fYlB3D/rb6OordUxf3xeFB35LKWs0xqcO5U6ySvBtug== | 2486 | integrity sha512-JVrozIeElnj3QzfUIt8tB8YMluBJom4Vw9qTPpjGYQ9fYlB3D/rb6OordUxf3xeFB35LKWs0xqcO5U6ySvBtug== |
2326 | 2487 | ||
2488 | +dashdash@^1.12.0: | ||
2489 | + version "1.14.1" | ||
2490 | + resolved "https://registry.yarnpkg.com/dashdash/-/dashdash-1.14.1.tgz#853cfa0f7cbe2fed5de20326b8dd581035f6e2f0" | ||
2491 | + integrity sha1-hTz6D3y+L+1d4gMmuN1YEDX24vA= | ||
2492 | + dependencies: | ||
2493 | + assert-plus "^1.0.0" | ||
2494 | + | ||
2327 | data-uri-to-buffer@3.0.1: | 2495 | data-uri-to-buffer@3.0.1: |
2328 | version "3.0.1" | 2496 | version "3.0.1" |
2329 | resolved "https://registry.yarnpkg.com/data-uri-to-buffer/-/data-uri-to-buffer-3.0.1.tgz#594b8973938c5bc2c33046535785341abc4f3636" | 2497 | resolved "https://registry.yarnpkg.com/data-uri-to-buffer/-/data-uri-to-buffer-3.0.1.tgz#594b8973938c5bc2c33046535785341abc4f3636" |
2330 | integrity sha512-WboRycPNsVw3B3TL559F7kuBUM4d8CgMEvk6xEJlOp7OBPjt6G7z8WMWlD2rOFZLk6OYfFIUGsCOWzcQH9K2og== | 2498 | integrity sha512-WboRycPNsVw3B3TL559F7kuBUM4d8CgMEvk6xEJlOp7OBPjt6G7z8WMWlD2rOFZLk6OYfFIUGsCOWzcQH9K2og== |
2331 | 2499 | ||
2500 | +data-urls@^1.1.0: | ||
2501 | + version "1.1.0" | ||
2502 | + resolved "https://registry.yarnpkg.com/data-urls/-/data-urls-1.1.0.tgz#15ee0582baa5e22bb59c77140da8f9c76963bbfe" | ||
2503 | + integrity sha512-YTWYI9se1P55u58gL5GkQHW4P6VJBJ5iBT+B5a7i2Tjadhv52paJG0qHX4A0OR6/t52odI64KP2YvFpkDOi3eQ== | ||
2504 | + dependencies: | ||
2505 | + abab "^2.0.0" | ||
2506 | + whatwg-mimetype "^2.2.0" | ||
2507 | + whatwg-url "^7.0.0" | ||
2508 | + | ||
2332 | debug@2, debug@^2.6.9: | 2509 | debug@2, debug@^2.6.9: |
2333 | version "2.6.9" | 2510 | version "2.6.9" |
2334 | resolved "https://registry.yarnpkg.com/debug/-/debug-2.6.9.tgz#5d128515df134ff327e90a4c93f4e077a536341f" | 2511 | resolved "https://registry.yarnpkg.com/debug/-/debug-2.6.9.tgz#5d128515df134ff327e90a4c93f4e077a536341f" |
... | @@ -2336,6 +2513,13 @@ debug@2, debug@^2.6.9: | ... | @@ -2336,6 +2513,13 @@ debug@2, debug@^2.6.9: |
2336 | dependencies: | 2513 | dependencies: |
2337 | ms "2.0.0" | 2514 | ms "2.0.0" |
2338 | 2515 | ||
2516 | +debug@^3.2.6: | ||
2517 | + version "3.2.7" | ||
2518 | + resolved "https://registry.yarnpkg.com/debug/-/debug-3.2.7.tgz#72580b7e9145fb39b6676f9c5e5fb100b934179a" | ||
2519 | + integrity sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ== | ||
2520 | + dependencies: | ||
2521 | + ms "^2.1.1" | ||
2522 | + | ||
2339 | debug@^4.0.1, debug@^4.1.0, debug@^4.1.1: | 2523 | debug@^4.0.1, debug@^4.1.0, debug@^4.1.1: |
2340 | version "4.3.1" | 2524 | version "4.3.1" |
2341 | resolved "https://registry.yarnpkg.com/debug/-/debug-4.3.1.tgz#f0d229c505e0c6d8c49ac553d1b13dc183f6b2ee" | 2525 | resolved "https://registry.yarnpkg.com/debug/-/debug-4.3.1.tgz#f0d229c505e0c6d8c49ac553d1b13dc183f6b2ee" |
... | @@ -2348,7 +2532,19 @@ decode-uri-component@^0.2.0: | ... | @@ -2348,7 +2532,19 @@ decode-uri-component@^0.2.0: |
2348 | resolved "https://registry.yarnpkg.com/decode-uri-component/-/decode-uri-component-0.2.0.tgz#eb3913333458775cb84cd1a1fae062106bb87545" | 2532 | resolved "https://registry.yarnpkg.com/decode-uri-component/-/decode-uri-component-0.2.0.tgz#eb3913333458775cb84cd1a1fae062106bb87545" |
2349 | integrity sha1-6zkTMzRYd1y4TNGh+uBiEGu4dUU= | 2533 | integrity sha1-6zkTMzRYd1y4TNGh+uBiEGu4dUU= |
2350 | 2534 | ||
2351 | -deep-is@^0.1.3: | 2535 | +decompress-response@^4.2.0: |
2536 | + version "4.2.1" | ||
2537 | + resolved "https://registry.yarnpkg.com/decompress-response/-/decompress-response-4.2.1.tgz#414023cc7a302da25ce2ec82d0d5238ccafd8986" | ||
2538 | + integrity sha512-jOSne2qbyE+/r8G1VU+G/82LBs2Fs4LAsTiLSHOCOMZQl2OKZ6i8i4IyHemTe+/yIXOtTcRQMzPcgyhoFlqPkw== | ||
2539 | + dependencies: | ||
2540 | + mimic-response "^2.0.0" | ||
2541 | + | ||
2542 | +deep-extend@^0.6.0: | ||
2543 | + version "0.6.0" | ||
2544 | + resolved "https://registry.yarnpkg.com/deep-extend/-/deep-extend-0.6.0.tgz#c4fa7c95404a17a9c3e8ca7e1537312b736330ac" | ||
2545 | + integrity sha512-LOHxIOaPYdHlJRtCQfDIVZtfw/ufM8+rVj649RIHzcm/vGwQRXFt6OPqIFWsm2XEMrNIEtWR64sY1LEKD2vAOA== | ||
2546 | + | ||
2547 | +deep-is@^0.1.3, deep-is@~0.1.3: | ||
2352 | version "0.1.3" | 2548 | version "0.1.3" |
2353 | resolved "https://registry.yarnpkg.com/deep-is/-/deep-is-0.1.3.tgz#b369d6fb5dbc13eecf524f91b070feedc357cf34" | 2549 | resolved "https://registry.yarnpkg.com/deep-is/-/deep-is-0.1.3.tgz#b369d6fb5dbc13eecf524f91b070feedc357cf34" |
2354 | integrity sha1-s2nW+128E+7PUk+RsHD+7cNXzzQ= | 2550 | integrity sha1-s2nW+128E+7PUk+RsHD+7cNXzzQ= |
... | @@ -2365,6 +2561,16 @@ define-properties@^1.1.3: | ... | @@ -2365,6 +2561,16 @@ define-properties@^1.1.3: |
2365 | dependencies: | 2561 | dependencies: |
2366 | object-keys "^1.0.12" | 2562 | object-keys "^1.0.12" |
2367 | 2563 | ||
2564 | +delayed-stream@~1.0.0: | ||
2565 | + version "1.0.0" | ||
2566 | + resolved "https://registry.yarnpkg.com/delayed-stream/-/delayed-stream-1.0.0.tgz#df3ae199acadfb7d440aaae0b29e2272b24ec619" | ||
2567 | + integrity sha1-3zrhmayt+31ECqrgsp4icrJOxhk= | ||
2568 | + | ||
2569 | +delegates@^1.0.0: | ||
2570 | + version "1.0.0" | ||
2571 | + resolved "https://registry.yarnpkg.com/delegates/-/delegates-1.0.0.tgz#84c6e159b81904fdca59a0ef44cd870d31250f9a" | ||
2572 | + integrity sha1-hMbhWbgZBP3KWaDvRM2HDTElD5o= | ||
2573 | + | ||
2368 | depd@~1.1.2: | 2574 | depd@~1.1.2: |
2369 | version "1.1.2" | 2575 | version "1.1.2" |
2370 | resolved "https://registry.yarnpkg.com/depd/-/depd-1.1.2.tgz#9bcd52e14c097763e749b274c4346ed2e560b5a9" | 2576 | resolved "https://registry.yarnpkg.com/depd/-/depd-1.1.2.tgz#9bcd52e14c097763e749b274c4346ed2e560b5a9" |
... | @@ -2378,6 +2584,11 @@ des.js@^1.0.0: | ... | @@ -2378,6 +2584,11 @@ des.js@^1.0.0: |
2378 | inherits "^2.0.1" | 2584 | inherits "^2.0.1" |
2379 | minimalistic-assert "^1.0.0" | 2585 | minimalistic-assert "^1.0.0" |
2380 | 2586 | ||
2587 | +detect-libc@^1.0.2: | ||
2588 | + version "1.0.3" | ||
2589 | + resolved "https://registry.yarnpkg.com/detect-libc/-/detect-libc-1.0.3.tgz#fa137c4bd698edf55cd5cd02ac559f91a4c4ba9b" | ||
2590 | + integrity sha1-+hN8S9aY7fVc1c0CrFWfkaTEups= | ||
2591 | + | ||
2381 | diff-sequences@^26.6.2: | 2592 | diff-sequences@^26.6.2: |
2382 | version "26.6.2" | 2593 | version "26.6.2" |
2383 | resolved "https://registry.yarnpkg.com/diff-sequences/-/diff-sequences-26.6.2.tgz#48ba99157de1923412eed41db6b6d4aa9ca7c0b1" | 2594 | resolved "https://registry.yarnpkg.com/diff-sequences/-/diff-sequences-26.6.2.tgz#48ba99157de1923412eed41db6b6d4aa9ca7c0b1" |
... | @@ -2454,6 +2665,13 @@ domelementtype@^2.0.1: | ... | @@ -2454,6 +2665,13 @@ domelementtype@^2.0.1: |
2454 | resolved "https://registry.yarnpkg.com/domelementtype/-/domelementtype-2.1.0.tgz#a851c080a6d1c3d94344aed151d99f669edf585e" | 2665 | resolved "https://registry.yarnpkg.com/domelementtype/-/domelementtype-2.1.0.tgz#a851c080a6d1c3d94344aed151d99f669edf585e" |
2455 | integrity sha512-LsTgx/L5VpD+Q8lmsXSHW2WpA+eBlZ9HPf3erD1IoPF00/3JKHZ3BknUVA2QGDNu69ZNmyFmCWBSO45XjYKC5w== | 2666 | integrity sha512-LsTgx/L5VpD+Q8lmsXSHW2WpA+eBlZ9HPf3erD1IoPF00/3JKHZ3BknUVA2QGDNu69ZNmyFmCWBSO45XjYKC5w== |
2456 | 2667 | ||
2668 | +domexception@^1.0.1: | ||
2669 | + version "1.0.1" | ||
2670 | + resolved "https://registry.yarnpkg.com/domexception/-/domexception-1.0.1.tgz#937442644ca6a31261ef36e3ec677fe805582c90" | ||
2671 | + integrity sha512-raigMkn7CJNNo6Ihro1fzG7wr3fHuYVytzquZKX5n0yizGsTcYgzdIUwj1X9pK0VvjeihV+XiclP+DjwbsSKug== | ||
2672 | + dependencies: | ||
2673 | + webidl-conversions "^4.0.2" | ||
2674 | + | ||
2457 | domutils@^1.7.0: | 2675 | domutils@^1.7.0: |
2458 | version "1.7.0" | 2676 | version "1.7.0" |
2459 | resolved "https://registry.yarnpkg.com/domutils/-/domutils-1.7.0.tgz#56ea341e834e06e6748af7a1cb25da67ea9f8c2a" | 2677 | resolved "https://registry.yarnpkg.com/domutils/-/domutils-1.7.0.tgz#56ea341e834e06e6748af7a1cb25da67ea9f8c2a" |
... | @@ -2467,6 +2685,14 @@ duplexer@^0.1.2: | ... | @@ -2467,6 +2685,14 @@ duplexer@^0.1.2: |
2467 | resolved "https://registry.yarnpkg.com/duplexer/-/duplexer-0.1.2.tgz#3abe43aef3835f8ae077d136ddce0f276b0400e6" | 2685 | resolved "https://registry.yarnpkg.com/duplexer/-/duplexer-0.1.2.tgz#3abe43aef3835f8ae077d136ddce0f276b0400e6" |
2468 | integrity sha512-jtD6YG370ZCIi/9GTaJKQxWTZD045+4R4hTk/x1UyoqadyJ9x9CgSi1RlVDQF8U2sxLLSnFkCaMihqljHIWgMg== | 2686 | integrity sha512-jtD6YG370ZCIi/9GTaJKQxWTZD045+4R4hTk/x1UyoqadyJ9x9CgSi1RlVDQF8U2sxLLSnFkCaMihqljHIWgMg== |
2469 | 2687 | ||
2688 | +ecc-jsbn@~0.1.1: | ||
2689 | + version "0.1.2" | ||
2690 | + resolved "https://registry.yarnpkg.com/ecc-jsbn/-/ecc-jsbn-0.1.2.tgz#3a83a904e54353287874c564b7549386849a98c9" | ||
2691 | + integrity sha1-OoOpBOVDUyh4dMVkt1SThoSamMk= | ||
2692 | + dependencies: | ||
2693 | + jsbn "~0.1.0" | ||
2694 | + safer-buffer "^2.1.0" | ||
2695 | + | ||
2470 | electron-to-chromium@^1.3.634: | 2696 | electron-to-chromium@^1.3.634: |
2471 | version "1.3.718" | 2697 | version "1.3.718" |
2472 | resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.3.718.tgz#a192981ced608978410ebc011e24ecab1bb4beb3" | 2698 | resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.3.718.tgz#a192981ced608978410ebc011e24ecab1bb4beb3" |
... | @@ -2597,6 +2823,18 @@ escape-string-regexp@^1.0.5: | ... | @@ -2597,6 +2823,18 @@ escape-string-regexp@^1.0.5: |
2597 | resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4" | 2823 | resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4" |
2598 | integrity sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ= | 2824 | integrity sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ= |
2599 | 2825 | ||
2826 | +escodegen@^1.11.1: | ||
2827 | + version "1.14.3" | ||
2828 | + resolved "https://registry.yarnpkg.com/escodegen/-/escodegen-1.14.3.tgz#4e7b81fba61581dc97582ed78cab7f0e8d63f503" | ||
2829 | + integrity sha512-qFcX0XJkdg+PB3xjZZG/wKSuT1PnQWx57+TVSjIMmILd2yC/6ByYElPwJnslDsuWuSAp4AwJGumarAAmJch5Kw== | ||
2830 | + dependencies: | ||
2831 | + esprima "^4.0.1" | ||
2832 | + estraverse "^4.2.0" | ||
2833 | + esutils "^2.0.2" | ||
2834 | + optionator "^0.8.1" | ||
2835 | + optionalDependencies: | ||
2836 | + source-map "~0.6.1" | ||
2837 | + | ||
2600 | eslint-config-airbnb-base@^14.2.0, eslint-config-airbnb-base@^14.2.1: | 2838 | eslint-config-airbnb-base@^14.2.0, eslint-config-airbnb-base@^14.2.1: |
2601 | version "14.2.1" | 2839 | version "14.2.1" |
2602 | resolved "https://registry.yarnpkg.com/eslint-config-airbnb-base/-/eslint-config-airbnb-base-14.2.1.tgz#8a2eb38455dc5a312550193b319cdaeef042cd1e" | 2840 | resolved "https://registry.yarnpkg.com/eslint-config-airbnb-base/-/eslint-config-airbnb-base-14.2.1.tgz#8a2eb38455dc5a312550193b319cdaeef042cd1e" |
... | @@ -2781,7 +3019,7 @@ espree@^7.3.0, espree@^7.3.1: | ... | @@ -2781,7 +3019,7 @@ espree@^7.3.0, espree@^7.3.1: |
2781 | acorn-jsx "^5.3.1" | 3019 | acorn-jsx "^5.3.1" |
2782 | eslint-visitor-keys "^1.3.0" | 3020 | eslint-visitor-keys "^1.3.0" |
2783 | 3021 | ||
2784 | -esprima@^4.0.0: | 3022 | +esprima@^4.0.0, esprima@^4.0.1: |
2785 | version "4.0.1" | 3023 | version "4.0.1" |
2786 | resolved "https://registry.yarnpkg.com/esprima/-/esprima-4.0.1.tgz#13b04cdb3e6c5d19df91ab6987a8695619b0aa71" | 3024 | resolved "https://registry.yarnpkg.com/esprima/-/esprima-4.0.1.tgz#13b04cdb3e6c5d19df91ab6987a8695619b0aa71" |
2787 | integrity sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A== | 3025 | integrity sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A== |
... | @@ -2800,7 +3038,7 @@ esrecurse@^4.3.0: | ... | @@ -2800,7 +3038,7 @@ esrecurse@^4.3.0: |
2800 | dependencies: | 3038 | dependencies: |
2801 | estraverse "^5.2.0" | 3039 | estraverse "^5.2.0" |
2802 | 3040 | ||
2803 | -estraverse@^4.1.1: | 3041 | +estraverse@^4.1.1, estraverse@^4.2.0: |
2804 | version "4.3.0" | 3042 | version "4.3.0" |
2805 | resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-4.3.0.tgz#398ad3f3c5a24948be7725e83d11a7de28cdbd1d" | 3043 | resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-4.3.0.tgz#398ad3f3c5a24948be7725e83d11a7de28cdbd1d" |
2806 | integrity sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw== | 3044 | integrity sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw== |
... | @@ -2833,6 +3071,29 @@ evp_bytestokey@^1.0.0, evp_bytestokey@^1.0.3: | ... | @@ -2833,6 +3071,29 @@ evp_bytestokey@^1.0.0, evp_bytestokey@^1.0.3: |
2833 | md5.js "^1.3.4" | 3071 | md5.js "^1.3.4" |
2834 | safe-buffer "^5.1.1" | 3072 | safe-buffer "^5.1.1" |
2835 | 3073 | ||
3074 | +extend@~3.0.2: | ||
3075 | + version "3.0.2" | ||
3076 | + resolved "https://registry.yarnpkg.com/extend/-/extend-3.0.2.tgz#f8b1136b4071fbd8eb140aff858b1019ec2915fa" | ||
3077 | + integrity sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g== | ||
3078 | + | ||
3079 | +extsprintf@1.3.0: | ||
3080 | + version "1.3.0" | ||
3081 | + resolved "https://registry.yarnpkg.com/extsprintf/-/extsprintf-1.3.0.tgz#96918440e3041a7a414f8c52e3c574eb3c3e1e05" | ||
3082 | + integrity sha1-lpGEQOMEGnpBT4xS48V06zw+HgU= | ||
3083 | + | ||
3084 | +extsprintf@^1.2.0: | ||
3085 | + version "1.4.0" | ||
3086 | + resolved "https://registry.yarnpkg.com/extsprintf/-/extsprintf-1.4.0.tgz#e2689f8f356fad62cca65a3a91c5df5f9551692f" | ||
3087 | + integrity sha1-4mifjzVvrWLMplo6kcXfX5VRaS8= | ||
3088 | + | ||
3089 | +fabric@^4.2.0: | ||
3090 | + version "4.4.0" | ||
3091 | + resolved "https://registry.yarnpkg.com/fabric/-/fabric-4.4.0.tgz#2b73454008b8082f2d234c4637bdf645876c490c" | ||
3092 | + integrity sha512-mX6BZqssJjrT6LN1B4Wcmgm93NIlmKfPN5qTqon9wdDJgRAxPfrhfz2iT+QmDso9P8+s0qyLXFhuVpxOBBMHEw== | ||
3093 | + optionalDependencies: | ||
3094 | + canvas "^2.6.1" | ||
3095 | + jsdom "^15.2.1" | ||
3096 | + | ||
2836 | fast-deep-equal@^3.1.1: | 3097 | fast-deep-equal@^3.1.1: |
2837 | version "3.1.3" | 3098 | version "3.1.3" |
2838 | resolved "https://registry.yarnpkg.com/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz#3a7d56b559d6cbc3eb512325244e619a65c6c525" | 3099 | resolved "https://registry.yarnpkg.com/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz#3a7d56b559d6cbc3eb512325244e619a65c6c525" |
... | @@ -2855,7 +3116,7 @@ fast-json-stable-stringify@^2.0.0: | ... | @@ -2855,7 +3116,7 @@ fast-json-stable-stringify@^2.0.0: |
2855 | resolved "https://registry.yarnpkg.com/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz#874bf69c6f404c2b5d99c481341399fd55892633" | 3116 | resolved "https://registry.yarnpkg.com/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz#874bf69c6f404c2b5d99c481341399fd55892633" |
2856 | integrity sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw== | 3117 | integrity sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw== |
2857 | 3118 | ||
2858 | -fast-levenshtein@^2.0.6: | 3119 | +fast-levenshtein@^2.0.6, fast-levenshtein@~2.0.6: |
2859 | version "2.0.6" | 3120 | version "2.0.6" |
2860 | resolved "https://registry.yarnpkg.com/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz#3d8a5c66883a16a30ca8643e851f19baa7797917" | 3121 | resolved "https://registry.yarnpkg.com/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz#3d8a5c66883a16a30ca8643e851f19baa7797917" |
2861 | integrity sha1-PYpcZog6FqMMqGQ+hR8Zuqd5eRc= | 3122 | integrity sha1-PYpcZog6FqMMqGQ+hR8Zuqd5eRc= |
... | @@ -2923,6 +3184,27 @@ foreach@^2.0.5: | ... | @@ -2923,6 +3184,27 @@ foreach@^2.0.5: |
2923 | resolved "https://registry.yarnpkg.com/foreach/-/foreach-2.0.5.tgz#0bee005018aeb260d0a3af3ae658dd0136ec1b99" | 3184 | resolved "https://registry.yarnpkg.com/foreach/-/foreach-2.0.5.tgz#0bee005018aeb260d0a3af3ae658dd0136ec1b99" |
2924 | integrity sha1-C+4AUBiusmDQo6865ljdATbsG5k= | 3185 | integrity sha1-C+4AUBiusmDQo6865ljdATbsG5k= |
2925 | 3186 | ||
3187 | +forever-agent@~0.6.1: | ||
3188 | + version "0.6.1" | ||
3189 | + resolved "https://registry.yarnpkg.com/forever-agent/-/forever-agent-0.6.1.tgz#fbc71f0c41adeb37f96c577ad1ed42d8fdacca91" | ||
3190 | + integrity sha1-+8cfDEGt6zf5bFd60e1C2P2sypE= | ||
3191 | + | ||
3192 | +form-data@~2.3.2: | ||
3193 | + version "2.3.3" | ||
3194 | + resolved "https://registry.yarnpkg.com/form-data/-/form-data-2.3.3.tgz#dcce52c05f644f298c6a7ab936bd724ceffbf3a6" | ||
3195 | + integrity sha512-1lLKB2Mu3aGP1Q/2eCOx0fNbRMe7XdwktwOruhfqqd0rIJWwN4Dh+E3hrPSlDCXnSR7UtZ1N38rVXm+6+MEhJQ== | ||
3196 | + dependencies: | ||
3197 | + asynckit "^0.4.0" | ||
3198 | + combined-stream "^1.0.6" | ||
3199 | + mime-types "^2.1.12" | ||
3200 | + | ||
3201 | +fs-minipass@^1.2.5: | ||
3202 | + version "1.2.7" | ||
3203 | + resolved "https://registry.yarnpkg.com/fs-minipass/-/fs-minipass-1.2.7.tgz#ccff8570841e7fe4265693da88936c55aed7f7c7" | ||
3204 | + integrity sha512-GWSSJGFy4e9GUeCcbIkED+bgAoFyj7XF1mV8rma3QW4NIqX9Kyx79N/PF61H5udOV3aY1IaMLs6pGbH71nlCTA== | ||
3205 | + dependencies: | ||
3206 | + minipass "^2.6.0" | ||
3207 | + | ||
2926 | fs.realpath@^1.0.0: | 3208 | fs.realpath@^1.0.0: |
2927 | version "1.0.0" | 3209 | version "1.0.0" |
2928 | resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f" | 3210 | resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f" |
... | @@ -2943,6 +3225,20 @@ functional-red-black-tree@^1.0.1: | ... | @@ -2943,6 +3225,20 @@ functional-red-black-tree@^1.0.1: |
2943 | resolved "https://registry.yarnpkg.com/functional-red-black-tree/-/functional-red-black-tree-1.0.1.tgz#1b0ab3bd553b2a0d6399d29c0e3ea0b252078327" | 3225 | resolved "https://registry.yarnpkg.com/functional-red-black-tree/-/functional-red-black-tree-1.0.1.tgz#1b0ab3bd553b2a0d6399d29c0e3ea0b252078327" |
2944 | integrity sha1-GwqzvVU7Kg1jmdKcDj6gslIHgyc= | 3226 | integrity sha1-GwqzvVU7Kg1jmdKcDj6gslIHgyc= |
2945 | 3227 | ||
3228 | +gauge@~2.7.3: | ||
3229 | + version "2.7.4" | ||
3230 | + resolved "https://registry.yarnpkg.com/gauge/-/gauge-2.7.4.tgz#2c03405c7538c39d7eb37b317022e325fb018bf7" | ||
3231 | + integrity sha1-LANAXHU4w51+s3sxcCLjJfsBi/c= | ||
3232 | + dependencies: | ||
3233 | + aproba "^1.0.3" | ||
3234 | + console-control-strings "^1.0.0" | ||
3235 | + has-unicode "^2.0.0" | ||
3236 | + object-assign "^4.1.0" | ||
3237 | + signal-exit "^3.0.0" | ||
3238 | + string-width "^1.0.1" | ||
3239 | + strip-ansi "^3.0.1" | ||
3240 | + wide-align "^1.1.0" | ||
3241 | + | ||
2946 | gensync@^1.0.0-beta.1, gensync@^1.0.0-beta.2: | 3242 | gensync@^1.0.0-beta.1, gensync@^1.0.0-beta.2: |
2947 | version "1.0.0-beta.2" | 3243 | version "1.0.0-beta.2" |
2948 | resolved "https://registry.yarnpkg.com/gensync/-/gensync-1.0.0-beta.2.tgz#32a6ee76c3d7f52d46b2b1ae5d93fea8580a25e0" | 3244 | resolved "https://registry.yarnpkg.com/gensync/-/gensync-1.0.0-beta.2.tgz#32a6ee76c3d7f52d46b2b1ae5d93fea8580a25e0" |
... | @@ -2964,6 +3260,13 @@ get-orientation@1.1.2: | ... | @@ -2964,6 +3260,13 @@ get-orientation@1.1.2: |
2964 | dependencies: | 3260 | dependencies: |
2965 | stream-parser "^0.3.1" | 3261 | stream-parser "^0.3.1" |
2966 | 3262 | ||
3263 | +getpass@^0.1.1: | ||
3264 | + version "0.1.7" | ||
3265 | + resolved "https://registry.yarnpkg.com/getpass/-/getpass-0.1.7.tgz#5eff8e3e684d569ae4cb2b1282604e8ba62149fa" | ||
3266 | + integrity sha1-Xv+OPmhNVprkyysSgmBOi6YhSfo= | ||
3267 | + dependencies: | ||
3268 | + assert-plus "^1.0.0" | ||
3269 | + | ||
2967 | glob-parent@^5.0.0, glob-parent@^5.1.0, glob-parent@~5.1.0: | 3270 | glob-parent@^5.0.0, glob-parent@^5.1.0, glob-parent@~5.1.0: |
2968 | version "5.1.1" | 3271 | version "5.1.1" |
2969 | resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-5.1.1.tgz#b6c1ef417c4e5663ea498f1c45afac6916bbc229" | 3272 | resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-5.1.1.tgz#b6c1ef417c4e5663ea498f1c45afac6916bbc229" |
... | @@ -3031,6 +3334,19 @@ gzip-size@^6.0.0: | ... | @@ -3031,6 +3334,19 @@ gzip-size@^6.0.0: |
3031 | dependencies: | 3334 | dependencies: |
3032 | duplexer "^0.1.2" | 3335 | duplexer "^0.1.2" |
3033 | 3336 | ||
3337 | +har-schema@^2.0.0: | ||
3338 | + version "2.0.0" | ||
3339 | + resolved "https://registry.yarnpkg.com/har-schema/-/har-schema-2.0.0.tgz#a94c2224ebcac04782a0d9035521f24735b7ec92" | ||
3340 | + integrity sha1-qUwiJOvKwEeCoNkDVSHyRzW37JI= | ||
3341 | + | ||
3342 | +har-validator@~5.1.3: | ||
3343 | + version "5.1.5" | ||
3344 | + resolved "https://registry.yarnpkg.com/har-validator/-/har-validator-5.1.5.tgz#1f0803b9f8cb20c0fa13822df1ecddb36bde1efd" | ||
3345 | + integrity sha512-nmT2T0lljbxdQZfspsno9hgrG3Uir6Ks5afism62poxqBM6sDnMEuPmzTq8XN0OEwqKLLdh1jQI3qyE66Nzb3w== | ||
3346 | + dependencies: | ||
3347 | + ajv "^6.12.3" | ||
3348 | + har-schema "^2.0.0" | ||
3349 | + | ||
3034 | has-flag@^3.0.0: | 3350 | has-flag@^3.0.0: |
3035 | version "3.0.0" | 3351 | version "3.0.0" |
3036 | resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-3.0.0.tgz#b5d454dc2199ae225699f3467e5a07f3b955bafd" | 3352 | resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-3.0.0.tgz#b5d454dc2199ae225699f3467e5a07f3b955bafd" |
... | @@ -3046,6 +3362,11 @@ has-symbols@^1.0.1: | ... | @@ -3046,6 +3362,11 @@ has-symbols@^1.0.1: |
3046 | resolved "https://registry.yarnpkg.com/has-symbols/-/has-symbols-1.0.1.tgz#9f5214758a44196c406d9bd76cebf81ec2dd31e8" | 3362 | resolved "https://registry.yarnpkg.com/has-symbols/-/has-symbols-1.0.1.tgz#9f5214758a44196c406d9bd76cebf81ec2dd31e8" |
3047 | integrity sha512-PLcsoqu++dmEIZB+6totNFKq/7Do+Z0u4oT0zKOJNl3lYK6vGwwu2hjHs+68OEZbTjiUE9bgOABXbP/GvrS0Kg== | 3363 | integrity sha512-PLcsoqu++dmEIZB+6totNFKq/7Do+Z0u4oT0zKOJNl3lYK6vGwwu2hjHs+68OEZbTjiUE9bgOABXbP/GvrS0Kg== |
3048 | 3364 | ||
3365 | +has-unicode@^2.0.0: | ||
3366 | + version "2.0.1" | ||
3367 | + resolved "https://registry.yarnpkg.com/has-unicode/-/has-unicode-2.0.1.tgz#e0e6fe6a28cf51138855e086d1691e771de2a8b9" | ||
3368 | + integrity sha1-4Ob+aijPUROIVeCG0Wkedx3iqLk= | ||
3369 | + | ||
3049 | has@^1.0.3: | 3370 | has@^1.0.3: |
3050 | version "1.0.3" | 3371 | version "1.0.3" |
3051 | resolved "https://registry.yarnpkg.com/has/-/has-1.0.3.tgz#722d7cbfc1f6aa8241f16dd814e011e1f41e8796" | 3372 | resolved "https://registry.yarnpkg.com/has/-/has-1.0.3.tgz#722d7cbfc1f6aa8241f16dd814e011e1f41e8796" |
... | @@ -3096,6 +3417,13 @@ hosted-git-info@^2.1.4: | ... | @@ -3096,6 +3417,13 @@ hosted-git-info@^2.1.4: |
3096 | resolved "https://registry.yarnpkg.com/hosted-git-info/-/hosted-git-info-2.8.8.tgz#7539bd4bc1e0e0a895815a2e0262420b12858488" | 3417 | resolved "https://registry.yarnpkg.com/hosted-git-info/-/hosted-git-info-2.8.8.tgz#7539bd4bc1e0e0a895815a2e0262420b12858488" |
3097 | integrity sha512-f/wzC2QaWBs7t9IYqB4T3sR1xviIViXJRJTWBlx2Gf3g0Xi5vI7Yy4koXQ1c9OYDGHN9sBy1DQ2AB8fqZBWhUg== | 3418 | integrity sha512-f/wzC2QaWBs7t9IYqB4T3sR1xviIViXJRJTWBlx2Gf3g0Xi5vI7Yy4koXQ1c9OYDGHN9sBy1DQ2AB8fqZBWhUg== |
3098 | 3419 | ||
3420 | +html-encoding-sniffer@^1.0.2: | ||
3421 | + version "1.0.2" | ||
3422 | + resolved "https://registry.yarnpkg.com/html-encoding-sniffer/-/html-encoding-sniffer-1.0.2.tgz#e70d84b94da53aa375e11fe3a351be6642ca46f8" | ||
3423 | + integrity sha512-71lZziiDnsuabfdYiUeWdCVyKuqwWi23L8YeIgV9jSSZHCtb6wB1BKWooH7L3tn4/FuZJMVWyNaIDr4RGmaSYw== | ||
3424 | + dependencies: | ||
3425 | + whatwg-encoding "^1.0.1" | ||
3426 | + | ||
3099 | http-errors@1.7.3: | 3427 | http-errors@1.7.3: |
3100 | version "1.7.3" | 3428 | version "1.7.3" |
3101 | resolved "https://registry.yarnpkg.com/http-errors/-/http-errors-1.7.3.tgz#6c619e4f9c60308c38519498c14fbb10aacebb06" | 3429 | resolved "https://registry.yarnpkg.com/http-errors/-/http-errors-1.7.3.tgz#6c619e4f9c60308c38519498c14fbb10aacebb06" |
... | @@ -3107,12 +3435,21 @@ http-errors@1.7.3: | ... | @@ -3107,12 +3435,21 @@ http-errors@1.7.3: |
3107 | statuses ">= 1.5.0 < 2" | 3435 | statuses ">= 1.5.0 < 2" |
3108 | toidentifier "1.0.0" | 3436 | toidentifier "1.0.0" |
3109 | 3437 | ||
3438 | +http-signature@~1.2.0: | ||
3439 | + version "1.2.0" | ||
3440 | + resolved "https://registry.yarnpkg.com/http-signature/-/http-signature-1.2.0.tgz#9aecd925114772f3d95b65a60abb8f7c18fbace1" | ||
3441 | + integrity sha1-muzZJRFHcvPZW2WmCruPfBj7rOE= | ||
3442 | + dependencies: | ||
3443 | + assert-plus "^1.0.0" | ||
3444 | + jsprim "^1.2.2" | ||
3445 | + sshpk "^1.7.0" | ||
3446 | + | ||
3110 | https-browserify@1.0.0, https-browserify@^1.0.0: | 3447 | https-browserify@1.0.0, https-browserify@^1.0.0: |
3111 | version "1.0.0" | 3448 | version "1.0.0" |
3112 | resolved "https://registry.yarnpkg.com/https-browserify/-/https-browserify-1.0.0.tgz#ec06c10e0a34c0f2faf199f7fd7fc78fffd03c73" | 3449 | resolved "https://registry.yarnpkg.com/https-browserify/-/https-browserify-1.0.0.tgz#ec06c10e0a34c0f2faf199f7fd7fc78fffd03c73" |
3113 | integrity sha1-7AbBDgo0wPL68Zn3/X/Hj//QPHM= | 3450 | integrity sha1-7AbBDgo0wPL68Zn3/X/Hj//QPHM= |
3114 | 3451 | ||
3115 | -iconv-lite@0.4.24: | 3452 | +iconv-lite@0.4.24, iconv-lite@^0.4.4: |
3116 | version "0.4.24" | 3453 | version "0.4.24" |
3117 | resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.4.24.tgz#2022b4b25fbddc21d2f524974a474aafe733908b" | 3454 | resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.4.24.tgz#2022b4b25fbddc21d2f524974a474aafe733908b" |
3118 | integrity sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA== | 3455 | integrity sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA== |
... | @@ -3131,6 +3468,13 @@ ieee754@^1.1.4: | ... | @@ -3131,6 +3468,13 @@ ieee754@^1.1.4: |
3131 | resolved "https://registry.yarnpkg.com/ieee754/-/ieee754-1.2.1.tgz#8eb7a10a63fff25d15a57b001586d177d1b0d352" | 3468 | resolved "https://registry.yarnpkg.com/ieee754/-/ieee754-1.2.1.tgz#8eb7a10a63fff25d15a57b001586d177d1b0d352" |
3132 | integrity sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA== | 3469 | integrity sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA== |
3133 | 3470 | ||
3471 | +ignore-walk@^3.0.1: | ||
3472 | + version "3.0.3" | ||
3473 | + resolved "https://registry.yarnpkg.com/ignore-walk/-/ignore-walk-3.0.3.tgz#017e2447184bfeade7c238e4aefdd1e8f95b1e37" | ||
3474 | + integrity sha512-m7o6xuOaT1aqheYHKf8W6J5pYH85ZI9w077erOzLje3JsB1gkafkAhHHY19dqjulgIZHFm32Cp5uNZgcQqdJKw== | ||
3475 | + dependencies: | ||
3476 | + minimatch "^3.0.4" | ||
3477 | + | ||
3134 | ignore@^4.0.6: | 3478 | ignore@^4.0.6: |
3135 | version "4.0.6" | 3479 | version "4.0.6" |
3136 | resolved "https://registry.yarnpkg.com/ignore/-/ignore-4.0.6.tgz#750e3db5862087b4737ebac8207ffd1ef27b25fc" | 3480 | resolved "https://registry.yarnpkg.com/ignore/-/ignore-4.0.6.tgz#750e3db5862087b4737ebac8207ffd1ef27b25fc" |
... | @@ -3182,6 +3526,11 @@ inherits@2.0.3: | ... | @@ -3182,6 +3526,11 @@ inherits@2.0.3: |
3182 | resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.3.tgz#633c2c83e3da42a502f52466022480f4208261de" | 3526 | resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.3.tgz#633c2c83e3da42a502f52466022480f4208261de" |
3183 | integrity sha1-Yzwsg+PaQqUC9SRmAiSA9CCCYd4= | 3527 | integrity sha1-Yzwsg+PaQqUC9SRmAiSA9CCCYd4= |
3184 | 3528 | ||
3529 | +ini@~1.3.0: | ||
3530 | + version "1.3.8" | ||
3531 | + resolved "https://registry.yarnpkg.com/ini/-/ini-1.3.8.tgz#a29da425b48806f34767a4efce397269af28432c" | ||
3532 | + integrity sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew== | ||
3533 | + | ||
3185 | internal-slot@^1.0.3: | 3534 | internal-slot@^1.0.3: |
3186 | version "1.0.3" | 3535 | version "1.0.3" |
3187 | resolved "https://registry.yarnpkg.com/internal-slot/-/internal-slot-1.0.3.tgz#7347e307deeea2faac2ac6205d4bc7d34967f59c" | 3536 | resolved "https://registry.yarnpkg.com/internal-slot/-/internal-slot-1.0.3.tgz#7347e307deeea2faac2ac6205d4bc7d34967f59c" |
... | @@ -3191,6 +3540,11 @@ internal-slot@^1.0.3: | ... | @@ -3191,6 +3540,11 @@ internal-slot@^1.0.3: |
3191 | has "^1.0.3" | 3540 | has "^1.0.3" |
3192 | side-channel "^1.0.4" | 3541 | side-channel "^1.0.4" |
3193 | 3542 | ||
3543 | +ip-regex@^2.1.0: | ||
3544 | + version "2.1.0" | ||
3545 | + resolved "https://registry.yarnpkg.com/ip-regex/-/ip-regex-2.1.0.tgz#fa78bf5d2e6913c911ce9f819ee5146bb6d844e9" | ||
3546 | + integrity sha1-+ni/XS5pE8kRzp+BnuUUa7bYROk= | ||
3547 | + | ||
3194 | is-arguments@^1.0.4: | 3548 | is-arguments@^1.0.4: |
3195 | version "1.1.0" | 3549 | version "1.1.0" |
3196 | resolved "https://registry.yarnpkg.com/is-arguments/-/is-arguments-1.1.0.tgz#62353031dfbee07ceb34656a6bde59efecae8dd9" | 3550 | resolved "https://registry.yarnpkg.com/is-arguments/-/is-arguments-1.1.0.tgz#62353031dfbee07ceb34656a6bde59efecae8dd9" |
... | @@ -3232,6 +3586,18 @@ is-extglob@^2.1.1: | ... | @@ -3232,6 +3586,18 @@ is-extglob@^2.1.1: |
3232 | resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-2.1.1.tgz#a88c02535791f02ed37c76a1b9ea9773c833f8c2" | 3586 | resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-2.1.1.tgz#a88c02535791f02ed37c76a1b9ea9773c833f8c2" |
3233 | integrity sha1-qIwCU1eR8C7TfHahueqXc8gz+MI= | 3587 | integrity sha1-qIwCU1eR8C7TfHahueqXc8gz+MI= |
3234 | 3588 | ||
3589 | +is-fullwidth-code-point@^1.0.0: | ||
3590 | + version "1.0.0" | ||
3591 | + resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz#ef9e31386f031a7f0d643af82fde50c457ef00cb" | ||
3592 | + integrity sha1-754xOG8DGn8NZDr4L95QxFfvAMs= | ||
3593 | + dependencies: | ||
3594 | + number-is-nan "^1.0.0" | ||
3595 | + | ||
3596 | +is-fullwidth-code-point@^2.0.0: | ||
3597 | + version "2.0.0" | ||
3598 | + resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz#a3b30a5c4f199183167aaab93beefae3ddfb654f" | ||
3599 | + integrity sha1-o7MKXE8ZkYMWeqq5O+764937ZU8= | ||
3600 | + | ||
3235 | is-fullwidth-code-point@^3.0.0: | 3601 | is-fullwidth-code-point@^3.0.0: |
3236 | version "3.0.0" | 3602 | version "3.0.0" |
3237 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz#f116f8064fe90b3f7844a38997c0b75051269f1d" | 3603 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz#f116f8064fe90b3f7844a38997c0b75051269f1d" |
... | @@ -3298,6 +3664,11 @@ is-typed-array@^1.1.3: | ... | @@ -3298,6 +3664,11 @@ is-typed-array@^1.1.3: |
3298 | foreach "^2.0.5" | 3664 | foreach "^2.0.5" |
3299 | has-symbols "^1.0.1" | 3665 | has-symbols "^1.0.1" |
3300 | 3666 | ||
3667 | +is-typedarray@~1.0.0: | ||
3668 | + version "1.0.0" | ||
3669 | + resolved "https://registry.yarnpkg.com/is-typedarray/-/is-typedarray-1.0.0.tgz#e479c80858df0c1b11ddda6940f96011fcda4a9a" | ||
3670 | + integrity sha1-5HnICFjfDBsR3dppQPlgEfzaSpo= | ||
3671 | + | ||
3301 | isarray@1.0.0, isarray@^1.0.0, isarray@~1.0.0: | 3672 | isarray@1.0.0, isarray@^1.0.0, isarray@~1.0.0: |
3302 | version "1.0.0" | 3673 | version "1.0.0" |
3303 | resolved "https://registry.yarnpkg.com/isarray/-/isarray-1.0.0.tgz#bb935d48582cba168c06834957a54a3e07124f11" | 3674 | resolved "https://registry.yarnpkg.com/isarray/-/isarray-1.0.0.tgz#bb935d48582cba168c06834957a54a3e07124f11" |
... | @@ -3315,6 +3686,11 @@ isobject@^2.0.0: | ... | @@ -3315,6 +3686,11 @@ isobject@^2.0.0: |
3315 | dependencies: | 3686 | dependencies: |
3316 | isarray "1.0.0" | 3687 | isarray "1.0.0" |
3317 | 3688 | ||
3689 | +isstream@~0.1.2: | ||
3690 | + version "0.1.2" | ||
3691 | + resolved "https://registry.yarnpkg.com/isstream/-/isstream-0.1.2.tgz#47e63f7af55afa6f92e1500e690eb8b8529c099a" | ||
3692 | + integrity sha1-R+Y/evVa+m+S4VAOaQ64uFKcCZo= | ||
3693 | + | ||
3318 | jest-diff@^26.0.0: | 3694 | jest-diff@^26.0.0: |
3319 | version "26.6.2" | 3695 | version "26.6.2" |
3320 | resolved "https://registry.yarnpkg.com/jest-diff/-/jest-diff-26.6.2.tgz#1aa7468b52c3a68d7d5c5fdcdfcd5e49bd164394" | 3696 | resolved "https://registry.yarnpkg.com/jest-diff/-/jest-diff-26.6.2.tgz#1aa7468b52c3a68d7d5c5fdcdfcd5e49bd164394" |
... | @@ -3352,6 +3728,43 @@ js-yaml@^3.13.1: | ... | @@ -3352,6 +3728,43 @@ js-yaml@^3.13.1: |
3352 | argparse "^1.0.7" | 3728 | argparse "^1.0.7" |
3353 | esprima "^4.0.0" | 3729 | esprima "^4.0.0" |
3354 | 3730 | ||
3731 | +jsbn@~0.1.0: | ||
3732 | + version "0.1.1" | ||
3733 | + resolved "https://registry.yarnpkg.com/jsbn/-/jsbn-0.1.1.tgz#a5e654c2e5a2deb5f201d96cefbca80c0ef2f513" | ||
3734 | + integrity sha1-peZUwuWi3rXyAdls77yoDA7y9RM= | ||
3735 | + | ||
3736 | +jsdom@^15.2.1: | ||
3737 | + version "15.2.1" | ||
3738 | + resolved "https://registry.yarnpkg.com/jsdom/-/jsdom-15.2.1.tgz#d2feb1aef7183f86be521b8c6833ff5296d07ec5" | ||
3739 | + integrity sha512-fAl1W0/7T2G5vURSyxBzrJ1LSdQn6Tr5UX/xD4PXDx/PDgwygedfW6El/KIj3xJ7FU61TTYnc/l/B7P49Eqt6g== | ||
3740 | + dependencies: | ||
3741 | + abab "^2.0.0" | ||
3742 | + acorn "^7.1.0" | ||
3743 | + acorn-globals "^4.3.2" | ||
3744 | + array-equal "^1.0.0" | ||
3745 | + cssom "^0.4.1" | ||
3746 | + cssstyle "^2.0.0" | ||
3747 | + data-urls "^1.1.0" | ||
3748 | + domexception "^1.0.1" | ||
3749 | + escodegen "^1.11.1" | ||
3750 | + html-encoding-sniffer "^1.0.2" | ||
3751 | + nwsapi "^2.2.0" | ||
3752 | + parse5 "5.1.0" | ||
3753 | + pn "^1.1.0" | ||
3754 | + request "^2.88.0" | ||
3755 | + request-promise-native "^1.0.7" | ||
3756 | + saxes "^3.1.9" | ||
3757 | + symbol-tree "^3.2.2" | ||
3758 | + tough-cookie "^3.0.1" | ||
3759 | + w3c-hr-time "^1.0.1" | ||
3760 | + w3c-xmlserializer "^1.1.2" | ||
3761 | + webidl-conversions "^4.0.2" | ||
3762 | + whatwg-encoding "^1.0.5" | ||
3763 | + whatwg-mimetype "^2.3.0" | ||
3764 | + whatwg-url "^7.0.0" | ||
3765 | + ws "^7.0.0" | ||
3766 | + xml-name-validator "^3.0.0" | ||
3767 | + | ||
3355 | jsesc@^2.5.1: | 3768 | jsesc@^2.5.1: |
3356 | version "2.5.2" | 3769 | version "2.5.2" |
3357 | resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-2.5.2.tgz#80564d2e483dacf6e8ef209650a67df3f0c283a4" | 3770 | resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-2.5.2.tgz#80564d2e483dacf6e8ef209650a67df3f0c283a4" |
... | @@ -3377,11 +3790,21 @@ json-schema-traverse@^1.0.0: | ... | @@ -3377,11 +3790,21 @@ json-schema-traverse@^1.0.0: |
3377 | resolved "https://registry.yarnpkg.com/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz#ae7bcb3656ab77a73ba5c49bf654f38e6b6860e2" | 3790 | resolved "https://registry.yarnpkg.com/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz#ae7bcb3656ab77a73ba5c49bf654f38e6b6860e2" |
3378 | integrity sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug== | 3791 | integrity sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug== |
3379 | 3792 | ||
3793 | +json-schema@0.2.3: | ||
3794 | + version "0.2.3" | ||
3795 | + resolved "https://registry.yarnpkg.com/json-schema/-/json-schema-0.2.3.tgz#b480c892e59a2f05954ce727bd3f2a4e882f9e13" | ||
3796 | + integrity sha1-tIDIkuWaLwWVTOcnvT8qTogvnhM= | ||
3797 | + | ||
3380 | json-stable-stringify-without-jsonify@^1.0.1: | 3798 | json-stable-stringify-without-jsonify@^1.0.1: |
3381 | version "1.0.1" | 3799 | version "1.0.1" |
3382 | resolved "https://registry.yarnpkg.com/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz#9db7b59496ad3f3cfef30a75142d2d930ad72651" | 3800 | resolved "https://registry.yarnpkg.com/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz#9db7b59496ad3f3cfef30a75142d2d930ad72651" |
3383 | integrity sha1-nbe1lJatPzz+8wp1FC0tkwrXJlE= | 3801 | integrity sha1-nbe1lJatPzz+8wp1FC0tkwrXJlE= |
3384 | 3802 | ||
3803 | +json-stringify-safe@~5.0.1: | ||
3804 | + version "5.0.1" | ||
3805 | + resolved "https://registry.yarnpkg.com/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz#1296a2d58fd45f19a0f6ce01d65701e2c735b6eb" | ||
3806 | + integrity sha1-Epai1Y/UXxmg9s4B1lcB4sc1tus= | ||
3807 | + | ||
3385 | json5@^1.0.1: | 3808 | json5@^1.0.1: |
3386 | version "1.0.1" | 3809 | version "1.0.1" |
3387 | resolved "https://registry.yarnpkg.com/json5/-/json5-1.0.1.tgz#779fb0018604fa854eacbf6252180d83543e3dbe" | 3810 | resolved "https://registry.yarnpkg.com/json5/-/json5-1.0.1.tgz#779fb0018604fa854eacbf6252180d83543e3dbe" |
... | @@ -3396,6 +3819,16 @@ json5@^2.1.2: | ... | @@ -3396,6 +3819,16 @@ json5@^2.1.2: |
3396 | dependencies: | 3819 | dependencies: |
3397 | minimist "^1.2.5" | 3820 | minimist "^1.2.5" |
3398 | 3821 | ||
3822 | +jsprim@^1.2.2: | ||
3823 | + version "1.4.1" | ||
3824 | + resolved "https://registry.yarnpkg.com/jsprim/-/jsprim-1.4.1.tgz#313e66bc1e5cc06e438bc1b7499c2e5c56acb6a2" | ||
3825 | + integrity sha1-MT5mvB5cwG5Di8G3SZwuXFastqI= | ||
3826 | + dependencies: | ||
3827 | + assert-plus "1.0.0" | ||
3828 | + extsprintf "1.3.0" | ||
3829 | + json-schema "0.2.3" | ||
3830 | + verror "1.10.0" | ||
3831 | + | ||
3399 | "jsx-ast-utils@^2.4.1 || ^3.0.0", jsx-ast-utils@^3.1.0: | 3832 | "jsx-ast-utils@^2.4.1 || ^3.0.0", jsx-ast-utils@^3.1.0: |
3400 | version "3.2.0" | 3833 | version "3.2.0" |
3401 | resolved "https://registry.yarnpkg.com/jsx-ast-utils/-/jsx-ast-utils-3.2.0.tgz#41108d2cec408c3453c1bbe8a4aae9e1e2bd8f82" | 3834 | resolved "https://registry.yarnpkg.com/jsx-ast-utils/-/jsx-ast-utils-3.2.0.tgz#41108d2cec408c3453c1bbe8a4aae9e1e2bd8f82" |
... | @@ -3424,6 +3857,14 @@ levn@^0.4.1: | ... | @@ -3424,6 +3857,14 @@ levn@^0.4.1: |
3424 | prelude-ls "^1.2.1" | 3857 | prelude-ls "^1.2.1" |
3425 | type-check "~0.4.0" | 3858 | type-check "~0.4.0" |
3426 | 3859 | ||
3860 | +levn@~0.3.0: | ||
3861 | + version "0.3.0" | ||
3862 | + resolved "https://registry.yarnpkg.com/levn/-/levn-0.3.0.tgz#3b09924edf9f083c0490fdd4c0bc4421e04764ee" | ||
3863 | + integrity sha1-OwmSTt+fCDwEkP3UwLxEIeBHZO4= | ||
3864 | + dependencies: | ||
3865 | + prelude-ls "~1.1.2" | ||
3866 | + type-check "~0.3.2" | ||
3867 | + | ||
3427 | line-column@^1.0.2: | 3868 | line-column@^1.0.2: |
3428 | version "1.0.2" | 3869 | version "1.0.2" |
3429 | resolved "https://registry.yarnpkg.com/line-column/-/line-column-1.0.2.tgz#d25af2936b6f4849172b312e4792d1d987bc34a2" | 3870 | resolved "https://registry.yarnpkg.com/line-column/-/line-column-1.0.2.tgz#d25af2936b6f4849172b312e4792d1d987bc34a2" |
... | @@ -3570,11 +4011,28 @@ miller-rabin@^4.0.0: | ... | @@ -3570,11 +4011,28 @@ miller-rabin@^4.0.0: |
3570 | bn.js "^4.0.0" | 4011 | bn.js "^4.0.0" |
3571 | brorand "^1.0.1" | 4012 | brorand "^1.0.1" |
3572 | 4013 | ||
4014 | +mime-db@1.47.0: | ||
4015 | + version "1.47.0" | ||
4016 | + resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.47.0.tgz#8cb313e59965d3c05cfbf898915a267af46a335c" | ||
4017 | + integrity sha512-QBmA/G2y+IfeS4oktet3qRZ+P5kPhCKRXxXnQEudYqUaEioAU1/Lq2us3D/t1Jfo4hE9REQPrbB7K5sOczJVIw== | ||
4018 | + | ||
4019 | +mime-types@^2.1.12, mime-types@~2.1.19: | ||
4020 | + version "2.1.30" | ||
4021 | + resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.30.tgz#6e7be8b4c479825f85ed6326695db73f9305d62d" | ||
4022 | + integrity sha512-crmjA4bLtR8m9qLpHvgxSChT+XoSlZi8J4n/aIdn3z92e/U47Z0V/yl+Wh9W046GgFVAmoNR/fmdbZYcSSIUeg== | ||
4023 | + dependencies: | ||
4024 | + mime-db "1.47.0" | ||
4025 | + | ||
3573 | mime@^2.3.1: | 4026 | mime@^2.3.1: |
3574 | version "2.5.2" | 4027 | version "2.5.2" |
3575 | resolved "https://registry.yarnpkg.com/mime/-/mime-2.5.2.tgz#6e3dc6cc2b9510643830e5f19d5cb753da5eeabe" | 4028 | resolved "https://registry.yarnpkg.com/mime/-/mime-2.5.2.tgz#6e3dc6cc2b9510643830e5f19d5cb753da5eeabe" |
3576 | integrity sha512-tqkh47FzKeCPD2PUiPB6pkbMzsCasjxAfC62/Wap5qrUWcb+sFasXUC5I3gYM5iBM8v/Qpn4UK0x+j0iHyFPDg== | 4029 | integrity sha512-tqkh47FzKeCPD2PUiPB6pkbMzsCasjxAfC62/Wap5qrUWcb+sFasXUC5I3gYM5iBM8v/Qpn4UK0x+j0iHyFPDg== |
3577 | 4030 | ||
4031 | +mimic-response@^2.0.0: | ||
4032 | + version "2.1.0" | ||
4033 | + resolved "https://registry.yarnpkg.com/mimic-response/-/mimic-response-2.1.0.tgz#d13763d35f613d09ec37ebb30bac0469c0ee8f43" | ||
4034 | + integrity sha512-wXqjST+SLt7R009ySCglWBCFpjUygmCIfD790/kVbiGmUgfYGuB14PiTd5DwVxSV4NcYHjzMkoj5LjQZwTQLEA== | ||
4035 | + | ||
3578 | min-indent@^1.0.0: | 4036 | min-indent@^1.0.0: |
3579 | version "1.0.1" | 4037 | version "1.0.1" |
3580 | resolved "https://registry.yarnpkg.com/min-indent/-/min-indent-1.0.1.tgz#a63f681673b30571fbe8bc25686ae746eefa9869" | 4038 | resolved "https://registry.yarnpkg.com/min-indent/-/min-indent-1.0.1.tgz#a63f681673b30571fbe8bc25686ae746eefa9869" |
... | @@ -3602,7 +4060,22 @@ minimist@^1.2.0, minimist@^1.2.5: | ... | @@ -3602,7 +4060,22 @@ minimist@^1.2.0, minimist@^1.2.5: |
3602 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.5.tgz#67d66014b66a6a8aaa0c083c5fd58df4e4e97602" | 4060 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.5.tgz#67d66014b66a6a8aaa0c083c5fd58df4e4e97602" |
3603 | integrity sha512-FM9nNUYrRBAELZQT3xeZQ7fmMOBg6nWNmJKTcgsJeaLstP/UODVpGsr5OhXhhXg6f+qtJ8uiZ+PUxkDWcgIXLw== | 4061 | integrity sha512-FM9nNUYrRBAELZQT3xeZQ7fmMOBg6nWNmJKTcgsJeaLstP/UODVpGsr5OhXhhXg6f+qtJ8uiZ+PUxkDWcgIXLw== |
3604 | 4062 | ||
3605 | -mkdirp@~0.5.1: | 4063 | +minipass@^2.6.0, minipass@^2.8.6, minipass@^2.9.0: |
4064 | + version "2.9.0" | ||
4065 | + resolved "https://registry.yarnpkg.com/minipass/-/minipass-2.9.0.tgz#e713762e7d3e32fed803115cf93e04bca9fcc9a6" | ||
4066 | + integrity sha512-wxfUjg9WebH+CUDX/CdbRlh5SmfZiy/hpkxaRI16Y9W56Pa75sWgd/rvFilSgrauD9NyFymP/+JFV3KwzIsJeg== | ||
4067 | + dependencies: | ||
4068 | + safe-buffer "^5.1.2" | ||
4069 | + yallist "^3.0.0" | ||
4070 | + | ||
4071 | +minizlib@^1.2.1: | ||
4072 | + version "1.3.3" | ||
4073 | + resolved "https://registry.yarnpkg.com/minizlib/-/minizlib-1.3.3.tgz#2290de96818a34c29551c8a8d301216bd65a861d" | ||
4074 | + integrity sha512-6ZYMOEnmVsdCeTJVE0W9ZD+pVnE8h9Hma/iOwwRDsdQoePpoX56/8B6z3P9VNwppJuBKNRuFDRNRqRWexT9G9Q== | ||
4075 | + dependencies: | ||
4076 | + minipass "^2.9.0" | ||
4077 | + | ||
4078 | +mkdirp@^0.5.0, mkdirp@^0.5.3, mkdirp@~0.5.1: | ||
3606 | version "0.5.5" | 4079 | version "0.5.5" |
3607 | resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.5.5.tgz#d91cefd62d1436ca0f41620e251288d420099def" | 4080 | resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.5.5.tgz#d91cefd62d1436ca0f41620e251288d420099def" |
3608 | integrity sha512-NKmAlESf6jMGym1++R0Ra7wvhV+wFW63FaSOFPwRahvea0gMUcGUhVeAg/0BC0wiv9ih5NYPB1Wn1UEI1/L+xQ== | 4081 | integrity sha512-NKmAlESf6jMGym1++R0Ra7wvhV+wFW63FaSOFPwRahvea0gMUcGUhVeAg/0BC0wiv9ih5NYPB1Wn1UEI1/L+xQ== |
... | @@ -3619,6 +4092,16 @@ ms@2.1.2: | ... | @@ -3619,6 +4092,16 @@ ms@2.1.2: |
3619 | resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.2.tgz#d09d1f357b443f493382a8eb3ccd183872ae6009" | 4092 | resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.2.tgz#d09d1f357b443f493382a8eb3ccd183872ae6009" |
3620 | integrity sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w== | 4093 | integrity sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w== |
3621 | 4094 | ||
4095 | +ms@^2.1.1: | ||
4096 | + version "2.1.3" | ||
4097 | + resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.3.tgz#574c8138ce1d2b5861f0b44579dbadd60c6615b2" | ||
4098 | + integrity sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA== | ||
4099 | + | ||
4100 | +nan@^2.14.0: | ||
4101 | + version "2.14.2" | ||
4102 | + resolved "https://registry.yarnpkg.com/nan/-/nan-2.14.2.tgz#f5376400695168f4cc694ac9393d0c9585eeea19" | ||
4103 | + integrity sha512-M2ufzIiINKCuDfBSAUr1vWQ+vuVcA9kqx8JJUsbQi6yf1uGRyb7HfpdfUr5qLXf3B/t8dPvcjhKMmlfnP47EzQ== | ||
4104 | + | ||
3622 | nanoid@^3.1.16: | 4105 | nanoid@^3.1.16: |
3623 | version "3.1.22" | 4106 | version "3.1.22" |
3624 | resolved "https://registry.yarnpkg.com/nanoid/-/nanoid-3.1.22.tgz#b35f8fb7d151990a8aebd5aa5015c03cf726f844" | 4107 | resolved "https://registry.yarnpkg.com/nanoid/-/nanoid-3.1.22.tgz#b35f8fb7d151990a8aebd5aa5015c03cf726f844" |
... | @@ -3636,6 +4119,15 @@ natural-compare@^1.4.0: | ... | @@ -3636,6 +4119,15 @@ natural-compare@^1.4.0: |
3636 | resolved "https://registry.yarnpkg.com/natural-compare/-/natural-compare-1.4.0.tgz#4abebfeed7541f2c27acfb29bdbbd15c8d5ba4f7" | 4119 | resolved "https://registry.yarnpkg.com/natural-compare/-/natural-compare-1.4.0.tgz#4abebfeed7541f2c27acfb29bdbbd15c8d5ba4f7" |
3637 | integrity sha1-Sr6/7tdUHywnrPspvbvRXI1bpPc= | 4120 | integrity sha1-Sr6/7tdUHywnrPspvbvRXI1bpPc= |
3638 | 4121 | ||
4122 | +needle@^2.5.0: | ||
4123 | + version "2.6.0" | ||
4124 | + resolved "https://registry.yarnpkg.com/needle/-/needle-2.6.0.tgz#24dbb55f2509e2324b4a99d61f413982013ccdbe" | ||
4125 | + integrity sha512-KKYdza4heMsEfSWD7VPUIz3zX2XDwOyX2d+geb4vrERZMT5RMU6ujjaD+I5Yr54uZxQ2w6XRTAhHBbSCyovZBg== | ||
4126 | + dependencies: | ||
4127 | + debug "^3.2.6" | ||
4128 | + iconv-lite "^0.4.4" | ||
4129 | + sax "^1.2.4" | ||
4130 | + | ||
3639 | next@^10.0.5: | 4131 | next@^10.0.5: |
3640 | version "10.1.3" | 4132 | version "10.1.3" |
3641 | resolved "https://registry.yarnpkg.com/next/-/next-10.1.3.tgz#e26e8371343a42bc2ba9be5cb253a7d324d03673" | 4133 | resolved "https://registry.yarnpkg.com/next/-/next-10.1.3.tgz#e26e8371343a42bc2ba9be5cb253a7d324d03673" |
... | @@ -3733,6 +4225,22 @@ node-libs-browser@^2.2.1: | ... | @@ -3733,6 +4225,22 @@ node-libs-browser@^2.2.1: |
3733 | util "^0.11.0" | 4225 | util "^0.11.0" |
3734 | vm-browserify "^1.0.1" | 4226 | vm-browserify "^1.0.1" |
3735 | 4227 | ||
4228 | +node-pre-gyp@^0.15.0: | ||
4229 | + version "0.15.0" | ||
4230 | + resolved "https://registry.yarnpkg.com/node-pre-gyp/-/node-pre-gyp-0.15.0.tgz#c2fc383276b74c7ffa842925241553e8b40f1087" | ||
4231 | + integrity sha512-7QcZa8/fpaU/BKenjcaeFF9hLz2+7S9AqyXFhlH/rilsQ/hPZKK32RtR5EQHJElgu+q5RfbJ34KriI79UWaorA== | ||
4232 | + dependencies: | ||
4233 | + detect-libc "^1.0.2" | ||
4234 | + mkdirp "^0.5.3" | ||
4235 | + needle "^2.5.0" | ||
4236 | + nopt "^4.0.1" | ||
4237 | + npm-packlist "^1.1.6" | ||
4238 | + npmlog "^4.0.2" | ||
4239 | + rc "^1.2.7" | ||
4240 | + rimraf "^2.6.1" | ||
4241 | + semver "^5.3.0" | ||
4242 | + tar "^4.4.2" | ||
4243 | + | ||
3736 | node-releases@^1.1.69: | 4244 | node-releases@^1.1.69: |
3737 | version "1.1.71" | 4245 | version "1.1.71" |
3738 | resolved "https://registry.yarnpkg.com/node-releases/-/node-releases-1.1.71.tgz#cb1334b179896b1c89ecfdd4b725fb7bbdfc7dbb" | 4246 | resolved "https://registry.yarnpkg.com/node-releases/-/node-releases-1.1.71.tgz#cb1334b179896b1c89ecfdd4b725fb7bbdfc7dbb" |
... | @@ -3743,6 +4251,14 @@ node-releases@^1.1.70: | ... | @@ -3743,6 +4251,14 @@ node-releases@^1.1.70: |
3743 | resolved "https://registry.yarnpkg.com/node-releases/-/node-releases-1.1.70.tgz#66e0ed0273aa65666d7fe78febe7634875426a08" | 4251 | resolved "https://registry.yarnpkg.com/node-releases/-/node-releases-1.1.70.tgz#66e0ed0273aa65666d7fe78febe7634875426a08" |
3744 | integrity sha512-Slf2s69+2/uAD79pVVQo8uSiC34+g8GWY8UH2Qtqv34ZfhYrxpYpfzs9Js9d6O0mbDmALuxaTlplnBTnSELcrw== | 4252 | integrity sha512-Slf2s69+2/uAD79pVVQo8uSiC34+g8GWY8UH2Qtqv34ZfhYrxpYpfzs9Js9d6O0mbDmALuxaTlplnBTnSELcrw== |
3745 | 4253 | ||
4254 | +nopt@^4.0.1: | ||
4255 | + version "4.0.3" | ||
4256 | + resolved "https://registry.yarnpkg.com/nopt/-/nopt-4.0.3.tgz#a375cad9d02fd921278d954c2254d5aa57e15e48" | ||
4257 | + integrity sha512-CvaGwVMztSMJLOeXPrez7fyfObdZqNUK1cPAEzLHrTybIua9pMdmmPR5YwtfNftIOMv3DPUhFaxsZMNTQO20Kg== | ||
4258 | + dependencies: | ||
4259 | + abbrev "1" | ||
4260 | + osenv "^0.1.4" | ||
4261 | + | ||
3746 | normalize-package-data@^2.3.2: | 4262 | normalize-package-data@^2.3.2: |
3747 | version "2.5.0" | 4263 | version "2.5.0" |
3748 | resolved "https://registry.yarnpkg.com/normalize-package-data/-/normalize-package-data-2.5.0.tgz#e66db1838b200c1dfc233225d12cb36520e234a8" | 4264 | resolved "https://registry.yarnpkg.com/normalize-package-data/-/normalize-package-data-2.5.0.tgz#e66db1838b200c1dfc233225d12cb36520e234a8" |
... | @@ -3758,6 +4274,37 @@ normalize-path@^3.0.0, normalize-path@~3.0.0: | ... | @@ -3758,6 +4274,37 @@ normalize-path@^3.0.0, normalize-path@~3.0.0: |
3758 | resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-3.0.0.tgz#0dcd69ff23a1c9b11fd0978316644a0388216a65" | 4274 | resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-3.0.0.tgz#0dcd69ff23a1c9b11fd0978316644a0388216a65" |
3759 | integrity sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA== | 4275 | integrity sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA== |
3760 | 4276 | ||
4277 | +npm-bundled@^1.0.1: | ||
4278 | + version "1.1.1" | ||
4279 | + resolved "https://registry.yarnpkg.com/npm-bundled/-/npm-bundled-1.1.1.tgz#1edd570865a94cdb1bc8220775e29466c9fb234b" | ||
4280 | + integrity sha512-gqkfgGePhTpAEgUsGEgcq1rqPXA+tv/aVBlgEzfXwA1yiUJF7xtEt3CtVwOjNYQOVknDk0F20w58Fnm3EtG0fA== | ||
4281 | + dependencies: | ||
4282 | + npm-normalize-package-bin "^1.0.1" | ||
4283 | + | ||
4284 | +npm-normalize-package-bin@^1.0.1: | ||
4285 | + version "1.0.1" | ||
4286 | + resolved "https://registry.yarnpkg.com/npm-normalize-package-bin/-/npm-normalize-package-bin-1.0.1.tgz#6e79a41f23fd235c0623218228da7d9c23b8f6e2" | ||
4287 | + integrity sha512-EPfafl6JL5/rU+ot6P3gRSCpPDW5VmIzX959Ob1+ySFUuuYHWHekXpwdUZcKP5C+DS4GEtdJluwBjnsNDl+fSA== | ||
4288 | + | ||
4289 | +npm-packlist@^1.1.6: | ||
4290 | + version "1.4.8" | ||
4291 | + resolved "https://registry.yarnpkg.com/npm-packlist/-/npm-packlist-1.4.8.tgz#56ee6cc135b9f98ad3d51c1c95da22bbb9b2ef3e" | ||
4292 | + integrity sha512-5+AZgwru5IevF5ZdnFglB5wNlHG1AOOuw28WhUq8/8emhBmLv6jX5by4WJCh7lW0uSYZYS6DXqIsyZVIXRZU9A== | ||
4293 | + dependencies: | ||
4294 | + ignore-walk "^3.0.1" | ||
4295 | + npm-bundled "^1.0.1" | ||
4296 | + npm-normalize-package-bin "^1.0.1" | ||
4297 | + | ||
4298 | +npmlog@^4.0.2: | ||
4299 | + version "4.1.2" | ||
4300 | + resolved "https://registry.yarnpkg.com/npmlog/-/npmlog-4.1.2.tgz#08a7f2a8bf734604779a9efa4ad5cc717abb954b" | ||
4301 | + integrity sha512-2uUqazuKlTaSI/dC8AzicUck7+IrEaOnN/e0jd3Xtt1KcGpwx30v50mL7oPyr/h9bL3E4aZccVwpwP+5W9Vjkg== | ||
4302 | + dependencies: | ||
4303 | + are-we-there-yet "~1.1.2" | ||
4304 | + console-control-strings "~1.1.0" | ||
4305 | + gauge "~2.7.3" | ||
4306 | + set-blocking "~2.0.0" | ||
4307 | + | ||
3761 | nth-check@^1.0.2: | 4308 | nth-check@^1.0.2: |
3762 | version "1.0.2" | 4309 | version "1.0.2" |
3763 | resolved "https://registry.yarnpkg.com/nth-check/-/nth-check-1.0.2.tgz#b2bd295c37e3dd58a3bf0700376663ba4d9cf05c" | 4310 | resolved "https://registry.yarnpkg.com/nth-check/-/nth-check-1.0.2.tgz#b2bd295c37e3dd58a3bf0700376663ba4d9cf05c" |
... | @@ -3765,7 +4312,22 @@ nth-check@^1.0.2: | ... | @@ -3765,7 +4312,22 @@ nth-check@^1.0.2: |
3765 | dependencies: | 4312 | dependencies: |
3766 | boolbase "~1.0.0" | 4313 | boolbase "~1.0.0" |
3767 | 4314 | ||
3768 | -object-assign@^4.1.1: | 4315 | +number-is-nan@^1.0.0: |
4316 | + version "1.0.1" | ||
4317 | + resolved "https://registry.yarnpkg.com/number-is-nan/-/number-is-nan-1.0.1.tgz#097b602b53422a522c1afb8790318336941a011d" | ||
4318 | + integrity sha1-CXtgK1NCKlIsGvuHkDGDNpQaAR0= | ||
4319 | + | ||
4320 | +nwsapi@^2.2.0: | ||
4321 | + version "2.2.0" | ||
4322 | + resolved "https://registry.yarnpkg.com/nwsapi/-/nwsapi-2.2.0.tgz#204879a9e3d068ff2a55139c2c772780681a38b7" | ||
4323 | + integrity sha512-h2AatdwYH+JHiZpv7pt/gSX1XoRGb7L/qSIeuqA6GwYoF9w1vP1cw42TO0aI2pNyshRK5893hNSl+1//vHK7hQ== | ||
4324 | + | ||
4325 | +oauth-sign@~0.9.0: | ||
4326 | + version "0.9.0" | ||
4327 | + resolved "https://registry.yarnpkg.com/oauth-sign/-/oauth-sign-0.9.0.tgz#47a7b016baa68b5fa0ecf3dee08a85c679ac6455" | ||
4328 | + integrity sha512-fexhUFFPTGV8ybAtSIGbV6gOkSv8UtRbDBnAyLQw4QPKkgNlsH2ByPGtMUqdWkos6YCRmAqViwgZrJc/mRDzZQ== | ||
4329 | + | ||
4330 | +object-assign@^4.1.0, object-assign@^4.1.1: | ||
3769 | version "4.1.1" | 4331 | version "4.1.1" |
3770 | resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863" | 4332 | resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863" |
3771 | integrity sha1-IQmtx5ZYh8/AXLvUQsrIv7s2CGM= | 4333 | integrity sha1-IQmtx5ZYh8/AXLvUQsrIv7s2CGM= |
... | @@ -3847,7 +4409,7 @@ object.values@^1.1.3: | ... | @@ -3847,7 +4409,7 @@ object.values@^1.1.3: |
3847 | es-abstract "^1.18.0-next.2" | 4409 | es-abstract "^1.18.0-next.2" |
3848 | has "^1.0.3" | 4410 | has "^1.0.3" |
3849 | 4411 | ||
3850 | -once@^1.3.0: | 4412 | +once@^1.3.0, once@^1.3.1: |
3851 | version "1.4.0" | 4413 | version "1.4.0" |
3852 | resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1" | 4414 | resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1" |
3853 | integrity sha1-WDsap3WWHUsROsF9nFC6753Xa9E= | 4415 | integrity sha1-WDsap3WWHUsROsF9nFC6753Xa9E= |
... | @@ -3859,6 +4421,18 @@ opener@^1.5.2: | ... | @@ -3859,6 +4421,18 @@ opener@^1.5.2: |
3859 | resolved "https://registry.yarnpkg.com/opener/-/opener-1.5.2.tgz#5d37e1f35077b9dcac4301372271afdeb2a13598" | 4421 | resolved "https://registry.yarnpkg.com/opener/-/opener-1.5.2.tgz#5d37e1f35077b9dcac4301372271afdeb2a13598" |
3860 | integrity sha512-ur5UIdyw5Y7yEj9wLzhqXiy6GZ3Mwx0yGI+5sMn2r0N0v3cKJvUmFH5yPP+WXh9e0xfyzyJX95D8l088DNFj7A== | 4422 | integrity sha512-ur5UIdyw5Y7yEj9wLzhqXiy6GZ3Mwx0yGI+5sMn2r0N0v3cKJvUmFH5yPP+WXh9e0xfyzyJX95D8l088DNFj7A== |
3861 | 4423 | ||
4424 | +optionator@^0.8.1: | ||
4425 | + version "0.8.3" | ||
4426 | + resolved "https://registry.yarnpkg.com/optionator/-/optionator-0.8.3.tgz#84fa1d036fe9d3c7e21d99884b601167ec8fb495" | ||
4427 | + integrity sha512-+IW9pACdk3XWmmTXG8m3upGUJst5XRGzxMRjXzAuJ1XnIFNvfhjjIuYkDvysnPQ7qzqVzLt78BCruntqRhWQbA== | ||
4428 | + dependencies: | ||
4429 | + deep-is "~0.1.3" | ||
4430 | + fast-levenshtein "~2.0.6" | ||
4431 | + levn "~0.3.0" | ||
4432 | + prelude-ls "~1.1.2" | ||
4433 | + type-check "~0.3.2" | ||
4434 | + word-wrap "~1.2.3" | ||
4435 | + | ||
3862 | optionator@^0.9.1: | 4436 | optionator@^0.9.1: |
3863 | version "0.9.1" | 4437 | version "0.9.1" |
3864 | resolved "https://registry.yarnpkg.com/optionator/-/optionator-0.9.1.tgz#4f236a6373dae0566a6d43e1326674f50c291499" | 4438 | resolved "https://registry.yarnpkg.com/optionator/-/optionator-0.9.1.tgz#4f236a6373dae0566a6d43e1326674f50c291499" |
... | @@ -3876,6 +4450,24 @@ os-browserify@0.3.0, os-browserify@^0.3.0: | ... | @@ -3876,6 +4450,24 @@ os-browserify@0.3.0, os-browserify@^0.3.0: |
3876 | resolved "https://registry.yarnpkg.com/os-browserify/-/os-browserify-0.3.0.tgz#854373c7f5c2315914fc9bfc6bd8238fdda1ec27" | 4450 | resolved "https://registry.yarnpkg.com/os-browserify/-/os-browserify-0.3.0.tgz#854373c7f5c2315914fc9bfc6bd8238fdda1ec27" |
3877 | integrity sha1-hUNzx/XCMVkU/Jv8a9gjj92h7Cc= | 4451 | integrity sha1-hUNzx/XCMVkU/Jv8a9gjj92h7Cc= |
3878 | 4452 | ||
4453 | +os-homedir@^1.0.0: | ||
4454 | + version "1.0.2" | ||
4455 | + resolved "https://registry.yarnpkg.com/os-homedir/-/os-homedir-1.0.2.tgz#ffbc4988336e0e833de0c168c7ef152121aa7fb3" | ||
4456 | + integrity sha1-/7xJiDNuDoM94MFox+8VISGqf7M= | ||
4457 | + | ||
4458 | +os-tmpdir@^1.0.0: | ||
4459 | + version "1.0.2" | ||
4460 | + resolved "https://registry.yarnpkg.com/os-tmpdir/-/os-tmpdir-1.0.2.tgz#bbe67406c79aa85c5cfec766fe5734555dfa1274" | ||
4461 | + integrity sha1-u+Z0BseaqFxc/sdm/lc0VV36EnQ= | ||
4462 | + | ||
4463 | +osenv@^0.1.4: | ||
4464 | + version "0.1.5" | ||
4465 | + resolved "https://registry.yarnpkg.com/osenv/-/osenv-0.1.5.tgz#85cdfafaeb28e8677f416e287592b5f3f49ea410" | ||
4466 | + integrity sha512-0CWcCECdMVc2Rw3U5w9ZjqX6ga6ubk1xDVKxtBQPK7wis/0F2r9T6k4ydGYhecl7YUBxBVxhL5oisPsNxAPe2g== | ||
4467 | + dependencies: | ||
4468 | + os-homedir "^1.0.0" | ||
4469 | + os-tmpdir "^1.0.0" | ||
4470 | + | ||
3879 | p-limit@3.1.0: | 4471 | p-limit@3.1.0: |
3880 | version "3.1.0" | 4472 | version "3.1.0" |
3881 | resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-3.1.0.tgz#e1daccbe78d0d1388ca18c64fea38e3e57e3706b" | 4473 | resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-3.1.0.tgz#e1daccbe78d0d1388ca18c64fea38e3e57e3706b" |
... | @@ -3961,6 +4553,11 @@ parse-json@^5.0.0: | ... | @@ -3961,6 +4553,11 @@ parse-json@^5.0.0: |
3961 | json-parse-even-better-errors "^2.3.0" | 4553 | json-parse-even-better-errors "^2.3.0" |
3962 | lines-and-columns "^1.1.6" | 4554 | lines-and-columns "^1.1.6" |
3963 | 4555 | ||
4556 | +parse5@5.1.0: | ||
4557 | + version "5.1.0" | ||
4558 | + resolved "https://registry.yarnpkg.com/parse5/-/parse5-5.1.0.tgz#c59341c9723f414c452975564c7c00a68d58acd2" | ||
4559 | + integrity sha512-fxNG2sQjHvlVAYmzBZS9YlDp6PTSSDwa98vkD4QgVDDCAo84z5X1t5XyJQ62ImdLXx5NdIIfihey6xpum9/gRQ== | ||
4560 | + | ||
3964 | path-browserify@0.0.1: | 4561 | path-browserify@0.0.1: |
3965 | version "0.0.1" | 4562 | version "0.0.1" |
3966 | resolved "https://registry.yarnpkg.com/path-browserify/-/path-browserify-0.0.1.tgz#e6c4ddd7ed3aa27c68a20cc4e50e1a4ee83bbc4a" | 4563 | resolved "https://registry.yarnpkg.com/path-browserify/-/path-browserify-0.0.1.tgz#e6c4ddd7ed3aa27c68a20cc4e50e1a4ee83bbc4a" |
... | @@ -4019,6 +4616,11 @@ pbkdf2@^3.0.3: | ... | @@ -4019,6 +4616,11 @@ pbkdf2@^3.0.3: |
4019 | safe-buffer "^5.0.1" | 4616 | safe-buffer "^5.0.1" |
4020 | sha.js "^2.4.8" | 4617 | sha.js "^2.4.8" |
4021 | 4618 | ||
4619 | +performance-now@^2.1.0: | ||
4620 | + version "2.1.0" | ||
4621 | + resolved "https://registry.yarnpkg.com/performance-now/-/performance-now-2.1.0.tgz#6309f4e0e5fa913ec1c69307ae364b4b377c9e7b" | ||
4622 | + integrity sha1-Ywn04OX6kT7BxpMHrjZLSzd8nns= | ||
4623 | + | ||
4022 | picomatch@^2.0.4, picomatch@^2.0.5, picomatch@^2.2.1: | 4624 | picomatch@^2.0.4, picomatch@^2.0.5, picomatch@^2.2.1: |
4023 | version "2.2.2" | 4625 | version "2.2.2" |
4024 | resolved "https://registry.yarnpkg.com/picomatch/-/picomatch-2.2.2.tgz#21f333e9b6b8eaff02468f5146ea406d345f4dad" | 4626 | resolved "https://registry.yarnpkg.com/picomatch/-/picomatch-2.2.2.tgz#21f333e9b6b8eaff02468f5146ea406d345f4dad" |
... | @@ -4048,6 +4650,11 @@ platform@1.3.6: | ... | @@ -4048,6 +4650,11 @@ platform@1.3.6: |
4048 | resolved "https://registry.yarnpkg.com/platform/-/platform-1.3.6.tgz#48b4ce983164b209c2d45a107adb31f473a6e7a7" | 4650 | resolved "https://registry.yarnpkg.com/platform/-/platform-1.3.6.tgz#48b4ce983164b209c2d45a107adb31f473a6e7a7" |
4049 | integrity sha512-fnWVljUchTro6RiCFvCXBbNhJc2NijN7oIQxbwsyL0buWJPG85v81ehlHI9fXrJsMNgTofEoWIQeClKpgxFLrg== | 4651 | integrity sha512-fnWVljUchTro6RiCFvCXBbNhJc2NijN7oIQxbwsyL0buWJPG85v81ehlHI9fXrJsMNgTofEoWIQeClKpgxFLrg== |
4050 | 4652 | ||
4653 | +pn@^1.1.0: | ||
4654 | + version "1.1.0" | ||
4655 | + resolved "https://registry.yarnpkg.com/pn/-/pn-1.1.0.tgz#e2f4cef0e219f463c179ab37463e4e1ecdccbafb" | ||
4656 | + integrity sha512-2qHaIQr2VLRFoxe2nASzsV6ef4yOOH+Fi9FBOVH6cqeSgUnoyySPZkxzLuzd+RYOQTRpROA0ztTMqxROKSb/nA== | ||
4657 | + | ||
4051 | pnp-webpack-plugin@1.6.4: | 4658 | pnp-webpack-plugin@1.6.4: |
4052 | version "1.6.4" | 4659 | version "1.6.4" |
4053 | resolved "https://registry.yarnpkg.com/pnp-webpack-plugin/-/pnp-webpack-plugin-1.6.4.tgz#c9711ac4dc48a685dabafc86f8b6dd9f8df84149" | 4660 | resolved "https://registry.yarnpkg.com/pnp-webpack-plugin/-/pnp-webpack-plugin-1.6.4.tgz#c9711ac4dc48a685dabafc86f8b6dd9f8df84149" |
... | @@ -4084,6 +4691,11 @@ prelude-ls@^1.2.1: | ... | @@ -4084,6 +4691,11 @@ prelude-ls@^1.2.1: |
4084 | resolved "https://registry.yarnpkg.com/prelude-ls/-/prelude-ls-1.2.1.tgz#debc6489d7a6e6b0e7611888cec880337d316396" | 4691 | resolved "https://registry.yarnpkg.com/prelude-ls/-/prelude-ls-1.2.1.tgz#debc6489d7a6e6b0e7611888cec880337d316396" |
4085 | integrity sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g== | 4692 | integrity sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g== |
4086 | 4693 | ||
4694 | +prelude-ls@~1.1.2: | ||
4695 | + version "1.1.2" | ||
4696 | + resolved "https://registry.yarnpkg.com/prelude-ls/-/prelude-ls-1.1.2.tgz#21932a549f5e52ffd9a827f570e04be62a97da54" | ||
4697 | + integrity sha1-IZMqVJ9eUv/ZqCf1cOBL5iqX2lQ= | ||
4698 | + | ||
4087 | prettier@^2.2.1: | 4699 | prettier@^2.2.1: |
4088 | version "2.2.1" | 4700 | version "2.2.1" |
4089 | resolved "https://registry.yarnpkg.com/prettier/-/prettier-2.2.1.tgz#795a1a78dd52f073da0cd42b21f9c91381923ff5" | 4701 | resolved "https://registry.yarnpkg.com/prettier/-/prettier-2.2.1.tgz#795a1a78dd52f073da0cd42b21f9c91381923ff5" |
... | @@ -4123,6 +4735,11 @@ prop-types@15.7.2, prop-types@^15.7.2: | ... | @@ -4123,6 +4735,11 @@ prop-types@15.7.2, prop-types@^15.7.2: |
4123 | object-assign "^4.1.1" | 4735 | object-assign "^4.1.1" |
4124 | react-is "^16.8.1" | 4736 | react-is "^16.8.1" |
4125 | 4737 | ||
4738 | +psl@^1.1.28: | ||
4739 | + version "1.8.0" | ||
4740 | + resolved "https://registry.yarnpkg.com/psl/-/psl-1.8.0.tgz#9326f8bcfb013adcc005fdff056acce020e51c24" | ||
4741 | + integrity sha512-RIdOzyoavK+hA18OGGWDqUTsCLhtA7IcZ/6NCs4fFJaHBDab+pDDmDIByWFRQJq2Cd7r1OoQxBGKOaztq+hjIQ== | ||
4742 | + | ||
4126 | public-encrypt@^4.0.0: | 4743 | public-encrypt@^4.0.0: |
4127 | version "4.0.3" | 4744 | version "4.0.3" |
4128 | resolved "https://registry.yarnpkg.com/public-encrypt/-/public-encrypt-4.0.3.tgz#4fcc9d77a07e48ba7527e7cbe0de33d0701331e0" | 4745 | resolved "https://registry.yarnpkg.com/public-encrypt/-/public-encrypt-4.0.3.tgz#4fcc9d77a07e48ba7527e7cbe0de33d0701331e0" |
... | @@ -4145,7 +4762,7 @@ punycode@^1.2.4: | ... | @@ -4145,7 +4762,7 @@ punycode@^1.2.4: |
4145 | resolved "https://registry.yarnpkg.com/punycode/-/punycode-1.4.1.tgz#c0d5a63b2718800ad8e1eb0fa5269c84dd41845e" | 4762 | resolved "https://registry.yarnpkg.com/punycode/-/punycode-1.4.1.tgz#c0d5a63b2718800ad8e1eb0fa5269c84dd41845e" |
4146 | integrity sha1-wNWmOycYgArY4esPpSachN1BhF4= | 4763 | integrity sha1-wNWmOycYgArY4esPpSachN1BhF4= |
4147 | 4764 | ||
4148 | -punycode@^2.1.0: | 4765 | +punycode@^2.1.0, punycode@^2.1.1: |
4149 | version "2.1.1" | 4766 | version "2.1.1" |
4150 | resolved "https://registry.yarnpkg.com/punycode/-/punycode-2.1.1.tgz#b58b010ac40c22c5657616c8d2c2c02c7bf479ec" | 4767 | resolved "https://registry.yarnpkg.com/punycode/-/punycode-2.1.1.tgz#b58b010ac40c22c5657616c8d2c2c02c7bf479ec" |
4151 | integrity sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A== | 4768 | integrity sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A== |
... | @@ -4155,6 +4772,11 @@ q@^1.1.2: | ... | @@ -4155,6 +4772,11 @@ q@^1.1.2: |
4155 | resolved "https://registry.yarnpkg.com/q/-/q-1.5.1.tgz#7e32f75b41381291d04611f1bf14109ac00651d7" | 4772 | resolved "https://registry.yarnpkg.com/q/-/q-1.5.1.tgz#7e32f75b41381291d04611f1bf14109ac00651d7" |
4156 | integrity sha1-fjL3W0E4EpHQRhHxvxQQmsAGUdc= | 4773 | integrity sha1-fjL3W0E4EpHQRhHxvxQQmsAGUdc= |
4157 | 4774 | ||
4775 | +qs@~6.5.2: | ||
4776 | + version "6.5.2" | ||
4777 | + resolved "https://registry.yarnpkg.com/qs/-/qs-6.5.2.tgz#cb3ae806e8740444584ef154ce8ee98d403f3e36" | ||
4778 | + integrity sha512-N5ZAX4/LxJmF+7wN74pUD6qAh9/wnvdQcjq9TZjevvXzSUo7bfmw91saqMjzGS2xq91/odN2dW/WOl7qQHNDGA== | ||
4779 | + | ||
4158 | querystring-es3@0.2.1, querystring-es3@^0.2.0: | 4780 | querystring-es3@0.2.1, querystring-es3@^0.2.0: |
4159 | version "0.2.1" | 4781 | version "0.2.1" |
4160 | resolved "https://registry.yarnpkg.com/querystring-es3/-/querystring-es3-0.2.1.tgz#9ec61f79049875707d69414596fd907a4d711e73" | 4782 | resolved "https://registry.yarnpkg.com/querystring-es3/-/querystring-es3-0.2.1.tgz#9ec61f79049875707d69414596fd907a4d711e73" |
... | @@ -4200,6 +4822,16 @@ raw-body@2.4.1: | ... | @@ -4200,6 +4822,16 @@ raw-body@2.4.1: |
4200 | iconv-lite "0.4.24" | 4822 | iconv-lite "0.4.24" |
4201 | unpipe "1.0.0" | 4823 | unpipe "1.0.0" |
4202 | 4824 | ||
4825 | +rc@^1.2.7: | ||
4826 | + version "1.2.8" | ||
4827 | + resolved "https://registry.yarnpkg.com/rc/-/rc-1.2.8.tgz#cd924bf5200a075b83c188cd6b9e211b7fc0d3ed" | ||
4828 | + integrity sha512-y3bGgqKj3QBdxLbLkomlohkvsA8gdAiUQlSBJnBhfn+BPxg4bc62d8TcBW15wavDfgexCgccckhcZvywyQYPOw== | ||
4829 | + dependencies: | ||
4830 | + deep-extend "^0.6.0" | ||
4831 | + ini "~1.3.0" | ||
4832 | + minimist "^1.2.0" | ||
4833 | + strip-json-comments "~2.0.1" | ||
4834 | + | ||
4203 | react-dom@^17.0.2: | 4835 | react-dom@^17.0.2: |
4204 | version "17.0.2" | 4836 | version "17.0.2" |
4205 | resolved "https://registry.yarnpkg.com/react-dom/-/react-dom-17.0.2.tgz#ecffb6845e3ad8dbfcdc498f0d0a939736502c23" | 4837 | resolved "https://registry.yarnpkg.com/react-dom/-/react-dom-17.0.2.tgz#ecffb6845e3ad8dbfcdc498f0d0a939736502c23" |
... | @@ -4249,7 +4881,7 @@ read-pkg@^2.0.0: | ... | @@ -4249,7 +4881,7 @@ read-pkg@^2.0.0: |
4249 | normalize-package-data "^2.3.2" | 4881 | normalize-package-data "^2.3.2" |
4250 | path-type "^2.0.0" | 4882 | path-type "^2.0.0" |
4251 | 4883 | ||
4252 | -readable-stream@^2.0.2, readable-stream@^2.3.3, readable-stream@^2.3.6: | 4884 | +readable-stream@^2.0.2, readable-stream@^2.0.6, readable-stream@^2.3.3, readable-stream@^2.3.6: |
4253 | version "2.3.7" | 4885 | version "2.3.7" |
4254 | resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.3.7.tgz#1eca1cf711aef814c04f62252a36a62f6cb23b57" | 4886 | resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.3.7.tgz#1eca1cf711aef814c04f62252a36a62f6cb23b57" |
4255 | integrity sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw== | 4887 | integrity sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw== |
... | @@ -4347,6 +4979,48 @@ regjsparser@^0.6.4: | ... | @@ -4347,6 +4979,48 @@ regjsparser@^0.6.4: |
4347 | dependencies: | 4979 | dependencies: |
4348 | jsesc "~0.5.0" | 4980 | jsesc "~0.5.0" |
4349 | 4981 | ||
4982 | +request-promise-core@1.1.4: | ||
4983 | + version "1.1.4" | ||
4984 | + resolved "https://registry.yarnpkg.com/request-promise-core/-/request-promise-core-1.1.4.tgz#3eedd4223208d419867b78ce815167d10593a22f" | ||
4985 | + integrity sha512-TTbAfBBRdWD7aNNOoVOBH4pN/KigV6LyapYNNlAPA8JwbovRti1E88m3sYAwsLi5ryhPKsE9APwnjFTgdUjTpw== | ||
4986 | + dependencies: | ||
4987 | + lodash "^4.17.19" | ||
4988 | + | ||
4989 | +request-promise-native@^1.0.7: | ||
4990 | + version "1.0.9" | ||
4991 | + resolved "https://registry.yarnpkg.com/request-promise-native/-/request-promise-native-1.0.9.tgz#e407120526a5efdc9a39b28a5679bf47b9d9dc28" | ||
4992 | + integrity sha512-wcW+sIUiWnKgNY0dqCpOZkUbF/I+YPi+f09JZIDa39Ec+q82CpSYniDp+ISgTTbKmnpJWASeJBPZmoxH84wt3g== | ||
4993 | + dependencies: | ||
4994 | + request-promise-core "1.1.4" | ||
4995 | + stealthy-require "^1.1.1" | ||
4996 | + tough-cookie "^2.3.3" | ||
4997 | + | ||
4998 | +request@^2.88.0: | ||
4999 | + version "2.88.2" | ||
5000 | + resolved "https://registry.yarnpkg.com/request/-/request-2.88.2.tgz#d73c918731cb5a87da047e207234146f664d12b3" | ||
5001 | + integrity sha512-MsvtOrfG9ZcrOwAW+Qi+F6HbD0CWXEh9ou77uOb7FM2WPhwT7smM833PzanhJLsgXjN89Ir6V2PczXNnMpwKhw== | ||
5002 | + dependencies: | ||
5003 | + aws-sign2 "~0.7.0" | ||
5004 | + aws4 "^1.8.0" | ||
5005 | + caseless "~0.12.0" | ||
5006 | + combined-stream "~1.0.6" | ||
5007 | + extend "~3.0.2" | ||
5008 | + forever-agent "~0.6.1" | ||
5009 | + form-data "~2.3.2" | ||
5010 | + har-validator "~5.1.3" | ||
5011 | + http-signature "~1.2.0" | ||
5012 | + is-typedarray "~1.0.0" | ||
5013 | + isstream "~0.1.2" | ||
5014 | + json-stringify-safe "~5.0.1" | ||
5015 | + mime-types "~2.1.19" | ||
5016 | + oauth-sign "~0.9.0" | ||
5017 | + performance-now "^2.1.0" | ||
5018 | + qs "~6.5.2" | ||
5019 | + safe-buffer "^5.1.2" | ||
5020 | + tough-cookie "~2.5.0" | ||
5021 | + tunnel-agent "^0.6.0" | ||
5022 | + uuid "^3.3.2" | ||
5023 | + | ||
4350 | require-from-string@^2.0.2: | 5024 | require-from-string@^2.0.2: |
4351 | version "2.0.2" | 5025 | version "2.0.2" |
4352 | resolved "https://registry.yarnpkg.com/require-from-string/-/require-from-string-2.0.2.tgz#89a7fdd938261267318eafe14f9c32e598c36909" | 5026 | resolved "https://registry.yarnpkg.com/require-from-string/-/require-from-string-2.0.2.tgz#89a7fdd938261267318eafe14f9c32e598c36909" |
... | @@ -4378,6 +5052,13 @@ reusify@^1.0.4: | ... | @@ -4378,6 +5052,13 @@ reusify@^1.0.4: |
4378 | resolved "https://registry.yarnpkg.com/reusify/-/reusify-1.0.4.tgz#90da382b1e126efc02146e90845a88db12925d76" | 5052 | resolved "https://registry.yarnpkg.com/reusify/-/reusify-1.0.4.tgz#90da382b1e126efc02146e90845a88db12925d76" |
4379 | integrity sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw== | 5053 | integrity sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw== |
4380 | 5054 | ||
5055 | +rimraf@^2.6.1: | ||
5056 | + version "2.7.1" | ||
5057 | + resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.7.1.tgz#35797f13a7fdadc566142c29d4f07ccad483e3ec" | ||
5058 | + integrity sha512-uWjbaKIK3T1OSVptzX7Nl6PvQ3qAGtKEtVRjRuazjfL3Bx5eI409VZSqgND+4UNnmzLVdPj9FqFJNPqBZFve4w== | ||
5059 | + dependencies: | ||
5060 | + glob "^7.1.3" | ||
5061 | + | ||
4381 | rimraf@^3.0.2: | 5062 | rimraf@^3.0.2: |
4382 | version "3.0.2" | 5063 | version "3.0.2" |
4383 | resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-3.0.2.tgz#f1a5402ba6220ad52cc1282bac1ae3aa49fd061a" | 5064 | resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-3.0.2.tgz#f1a5402ba6220ad52cc1282bac1ae3aa49fd061a" |
... | @@ -4410,16 +5091,23 @@ safe-buffer@~5.1.0, safe-buffer@~5.1.1: | ... | @@ -4410,16 +5091,23 @@ safe-buffer@~5.1.0, safe-buffer@~5.1.1: |
4410 | resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.1.2.tgz#991ec69d296e0313747d59bdfd2b745c35f8828d" | 5091 | resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.1.2.tgz#991ec69d296e0313747d59bdfd2b745c35f8828d" |
4411 | integrity sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g== | 5092 | integrity sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g== |
4412 | 5093 | ||
4413 | -"safer-buffer@>= 2.1.2 < 3", "safer-buffer@>= 2.1.2 < 3.0.0", safer-buffer@^2.1.0: | 5094 | +"safer-buffer@>= 2.1.2 < 3", "safer-buffer@>= 2.1.2 < 3.0.0", safer-buffer@^2.0.2, safer-buffer@^2.1.0, safer-buffer@~2.1.0: |
4414 | version "2.1.2" | 5095 | version "2.1.2" |
4415 | resolved "https://registry.yarnpkg.com/safer-buffer/-/safer-buffer-2.1.2.tgz#44fa161b0187b9549dd84bb91802f9bd8385cd6a" | 5096 | resolved "https://registry.yarnpkg.com/safer-buffer/-/safer-buffer-2.1.2.tgz#44fa161b0187b9549dd84bb91802f9bd8385cd6a" |
4416 | integrity sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg== | 5097 | integrity sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg== |
4417 | 5098 | ||
4418 | -sax@~1.2.4: | 5099 | +sax@^1.2.4, sax@~1.2.4: |
4419 | version "1.2.4" | 5100 | version "1.2.4" |
4420 | resolved "https://registry.yarnpkg.com/sax/-/sax-1.2.4.tgz#2816234e2378bddc4e5354fab5caa895df7100d9" | 5101 | resolved "https://registry.yarnpkg.com/sax/-/sax-1.2.4.tgz#2816234e2378bddc4e5354fab5caa895df7100d9" |
4421 | integrity sha512-NqVDv9TpANUjFm0N8uM5GxL36UgKi9/atZw+x7YFnQ8ckwFGKrl4xX4yWtrey3UJm5nP1kUbnYgLopqWNSRhWw== | 5102 | integrity sha512-NqVDv9TpANUjFm0N8uM5GxL36UgKi9/atZw+x7YFnQ8ckwFGKrl4xX4yWtrey3UJm5nP1kUbnYgLopqWNSRhWw== |
4422 | 5103 | ||
5104 | +saxes@^3.1.9: | ||
5105 | + version "3.1.11" | ||
5106 | + resolved "https://registry.yarnpkg.com/saxes/-/saxes-3.1.11.tgz#d59d1fd332ec92ad98a2e0b2ee644702384b1c5b" | ||
5107 | + integrity sha512-Ydydq3zC+WYDJK1+gRxRapLIED9PWeSuuS41wqyoRmzvhhh9nc+QQrVMKJYzJFULazeGhzSV0QleN2wD3boh2g== | ||
5108 | + dependencies: | ||
5109 | + xmlchars "^2.1.1" | ||
5110 | + | ||
4423 | scheduler@^0.20.2: | 5111 | scheduler@^0.20.2: |
4424 | version "0.20.2" | 5112 | version "0.20.2" |
4425 | resolved "https://registry.yarnpkg.com/scheduler/-/scheduler-0.20.2.tgz#4baee39436e34aa93b4874bddcbf0fe8b8b50e91" | 5113 | resolved "https://registry.yarnpkg.com/scheduler/-/scheduler-0.20.2.tgz#4baee39436e34aa93b4874bddcbf0fe8b8b50e91" |
... | @@ -4437,7 +5125,7 @@ schema-utils@^2.6.5: | ... | @@ -4437,7 +5125,7 @@ schema-utils@^2.6.5: |
4437 | ajv "^6.12.4" | 5125 | ajv "^6.12.4" |
4438 | ajv-keywords "^3.5.2" | 5126 | ajv-keywords "^3.5.2" |
4439 | 5127 | ||
4440 | -"semver@2 || 3 || 4 || 5", semver@^5.4.1, semver@^5.5.0: | 5128 | +"semver@2 || 3 || 4 || 5", semver@^5.3.0, semver@^5.4.1, semver@^5.5.0: |
4441 | version "5.7.1" | 5129 | version "5.7.1" |
4442 | resolved "https://registry.yarnpkg.com/semver/-/semver-5.7.1.tgz#a954f931aeba508d307bbf069eff0c01c96116f7" | 5130 | resolved "https://registry.yarnpkg.com/semver/-/semver-5.7.1.tgz#a954f931aeba508d307bbf069eff0c01c96116f7" |
4443 | integrity sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ== | 5131 | integrity sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ== |
... | @@ -4459,6 +5147,11 @@ semver@^7.2.1, semver@^7.3.2: | ... | @@ -4459,6 +5147,11 @@ semver@^7.2.1, semver@^7.3.2: |
4459 | dependencies: | 5147 | dependencies: |
4460 | lru-cache "^6.0.0" | 5148 | lru-cache "^6.0.0" |
4461 | 5149 | ||
5150 | +set-blocking@~2.0.0: | ||
5151 | + version "2.0.0" | ||
5152 | + resolved "https://registry.yarnpkg.com/set-blocking/-/set-blocking-2.0.0.tgz#045f9782d011ae9a6803ddd382b24392b3d890f7" | ||
5153 | + integrity sha1-BF+XgtARrppoA93TgrJDkrPYkPc= | ||
5154 | + | ||
4462 | setimmediate@^1.0.4: | 5155 | setimmediate@^1.0.4: |
4463 | version "1.0.5" | 5156 | version "1.0.5" |
4464 | resolved "https://registry.yarnpkg.com/setimmediate/-/setimmediate-1.0.5.tgz#290cbb232e306942d7d7ea9b83732ab7856f8285" | 5157 | resolved "https://registry.yarnpkg.com/setimmediate/-/setimmediate-1.0.5.tgz#290cbb232e306942d7d7ea9b83732ab7856f8285" |
... | @@ -4508,6 +5201,25 @@ side-channel@^1.0.4: | ... | @@ -4508,6 +5201,25 @@ side-channel@^1.0.4: |
4508 | get-intrinsic "^1.0.2" | 5201 | get-intrinsic "^1.0.2" |
4509 | object-inspect "^1.9.0" | 5202 | object-inspect "^1.9.0" |
4510 | 5203 | ||
5204 | +signal-exit@^3.0.0: | ||
5205 | + version "3.0.3" | ||
5206 | + resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.3.tgz#a1410c2edd8f077b08b4e253c8eacfcaf057461c" | ||
5207 | + integrity sha512-VUJ49FC8U1OxwZLxIbTTrDvLnf/6TDgxZcK8wxR8zs13xpx7xbG60ndBlhNrFi2EMuFRoeDoJO7wthSLq42EjA== | ||
5208 | + | ||
5209 | +simple-concat@^1.0.0: | ||
5210 | + version "1.0.1" | ||
5211 | + resolved "https://registry.yarnpkg.com/simple-concat/-/simple-concat-1.0.1.tgz#f46976082ba35c2263f1c8ab5edfe26c41c9552f" | ||
5212 | + integrity sha512-cSFtAPtRhljv69IK0hTVZQ+OfE9nePi/rtJmw5UjHeVyVroEqJXP1sFztKUy1qU+xvz3u/sfYJLa947b7nAN2Q== | ||
5213 | + | ||
5214 | +simple-get@^3.0.3: | ||
5215 | + version "3.1.0" | ||
5216 | + resolved "https://registry.yarnpkg.com/simple-get/-/simple-get-3.1.0.tgz#b45be062435e50d159540b576202ceec40b9c6b3" | ||
5217 | + integrity sha512-bCR6cP+aTdScaQCnQKbPKtJOKDp/hj9EDLJo3Nw4y1QksqaovlW/bnptB6/c1e+qmNIDHRK+oXFDdEqBT8WzUA== | ||
5218 | + dependencies: | ||
5219 | + decompress-response "^4.2.0" | ||
5220 | + once "^1.3.1" | ||
5221 | + simple-concat "^1.0.0" | ||
5222 | + | ||
4511 | sirv@^1.0.7: | 5223 | sirv@^1.0.7: |
4512 | version "1.0.11" | 5224 | version "1.0.11" |
4513 | resolved "https://registry.yarnpkg.com/sirv/-/sirv-1.0.11.tgz#81c19a29202048507d6ec0d8ba8910fda52eb5a4" | 5225 | resolved "https://registry.yarnpkg.com/sirv/-/sirv-1.0.11.tgz#81c19a29202048507d6ec0d8ba8910fda52eb5a4" |
... | @@ -4556,7 +5268,7 @@ source-map@^0.5.0: | ... | @@ -4556,7 +5268,7 @@ source-map@^0.5.0: |
4556 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.5.7.tgz#8a039d2d1021d22d1ea14c80d8ea468ba2ef3fcc" | 5268 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.5.7.tgz#8a039d2d1021d22d1ea14c80d8ea468ba2ef3fcc" |
4557 | integrity sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w= | 5269 | integrity sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w= |
4558 | 5270 | ||
4559 | -source-map@^0.6.1: | 5271 | +source-map@^0.6.1, source-map@~0.6.1: |
4560 | version "0.6.1" | 5272 | version "0.6.1" |
4561 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.6.1.tgz#74722af32e9614e9c287a8d0bbde48b5e2f1a263" | 5273 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.6.1.tgz#74722af32e9614e9c287a8d0bbde48b5e2f1a263" |
4562 | integrity sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g== | 5274 | integrity sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g== |
... | @@ -4592,6 +5304,21 @@ sprintf-js@~1.0.2: | ... | @@ -4592,6 +5304,21 @@ sprintf-js@~1.0.2: |
4592 | resolved "https://registry.yarnpkg.com/sprintf-js/-/sprintf-js-1.0.3.tgz#04e6926f662895354f3dd015203633b857297e2c" | 5304 | resolved "https://registry.yarnpkg.com/sprintf-js/-/sprintf-js-1.0.3.tgz#04e6926f662895354f3dd015203633b857297e2c" |
4593 | integrity sha1-BOaSb2YolTVPPdAVIDYzuFcpfiw= | 5305 | integrity sha1-BOaSb2YolTVPPdAVIDYzuFcpfiw= |
4594 | 5306 | ||
5307 | +sshpk@^1.7.0: | ||
5308 | + version "1.16.1" | ||
5309 | + resolved "https://registry.yarnpkg.com/sshpk/-/sshpk-1.16.1.tgz#fb661c0bef29b39db40769ee39fa70093d6f6877" | ||
5310 | + integrity sha512-HXXqVUq7+pcKeLqqZj6mHFUMvXtOJt1uoUx09pFW6011inTMxqI8BA8PM95myrIyyKwdnzjdFjLiE6KBPVtJIg== | ||
5311 | + dependencies: | ||
5312 | + asn1 "~0.2.3" | ||
5313 | + assert-plus "^1.0.0" | ||
5314 | + bcrypt-pbkdf "^1.0.0" | ||
5315 | + dashdash "^1.12.0" | ||
5316 | + ecc-jsbn "~0.1.1" | ||
5317 | + getpass "^0.1.1" | ||
5318 | + jsbn "~0.1.0" | ||
5319 | + safer-buffer "^2.0.2" | ||
5320 | + tweetnacl "~0.14.0" | ||
5321 | + | ||
4595 | stable@^0.1.8: | 5322 | stable@^0.1.8: |
4596 | version "0.1.8" | 5323 | version "0.1.8" |
4597 | resolved "https://registry.yarnpkg.com/stable/-/stable-0.1.8.tgz#836eb3c8382fe2936feaf544631017ce7d47a3cf" | 5324 | resolved "https://registry.yarnpkg.com/stable/-/stable-0.1.8.tgz#836eb3c8382fe2936feaf544631017ce7d47a3cf" |
... | @@ -4609,6 +5336,11 @@ stacktrace-parser@0.1.10: | ... | @@ -4609,6 +5336,11 @@ stacktrace-parser@0.1.10: |
4609 | resolved "https://registry.yarnpkg.com/statuses/-/statuses-1.5.0.tgz#161c7dac177659fd9811f43771fa99381478628c" | 5336 | resolved "https://registry.yarnpkg.com/statuses/-/statuses-1.5.0.tgz#161c7dac177659fd9811f43771fa99381478628c" |
4610 | integrity sha1-Fhx9rBd2Wf2YEfQ3cfqZOBR4Yow= | 5337 | integrity sha1-Fhx9rBd2Wf2YEfQ3cfqZOBR4Yow= |
4611 | 5338 | ||
5339 | +stealthy-require@^1.1.1: | ||
5340 | + version "1.1.1" | ||
5341 | + resolved "https://registry.yarnpkg.com/stealthy-require/-/stealthy-require-1.1.1.tgz#35b09875b4ff49f26a777e509b3090a3226bf24b" | ||
5342 | + integrity sha1-NbCYdbT/SfJqd35QmzCQoyJr8ks= | ||
5343 | + | ||
4612 | stream-browserify@3.0.0: | 5344 | stream-browserify@3.0.0: |
4613 | version "3.0.0" | 5345 | version "3.0.0" |
4614 | resolved "https://registry.yarnpkg.com/stream-browserify/-/stream-browserify-3.0.0.tgz#22b0a2850cdf6503e73085da1fc7b7d0c2122f2f" | 5346 | resolved "https://registry.yarnpkg.com/stream-browserify/-/stream-browserify-3.0.0.tgz#22b0a2850cdf6503e73085da1fc7b7d0c2122f2f" |
... | @@ -4658,6 +5390,23 @@ string-hash@1.1.3: | ... | @@ -4658,6 +5390,23 @@ string-hash@1.1.3: |
4658 | resolved "https://registry.yarnpkg.com/string-hash/-/string-hash-1.1.3.tgz#e8aafc0ac1855b4666929ed7dd1275df5d6c811b" | 5390 | resolved "https://registry.yarnpkg.com/string-hash/-/string-hash-1.1.3.tgz#e8aafc0ac1855b4666929ed7dd1275df5d6c811b" |
4659 | integrity sha1-6Kr8CsGFW0Zmkp7X3RJ1311sgRs= | 5391 | integrity sha1-6Kr8CsGFW0Zmkp7X3RJ1311sgRs= |
4660 | 5392 | ||
5393 | +string-width@^1.0.1: | ||
5394 | + version "1.0.2" | ||
5395 | + resolved "https://registry.yarnpkg.com/string-width/-/string-width-1.0.2.tgz#118bdf5b8cdc51a2a7e70d211e07e2b0b9b107d3" | ||
5396 | + integrity sha1-EYvfW4zcUaKn5w0hHgfisLmxB9M= | ||
5397 | + dependencies: | ||
5398 | + code-point-at "^1.0.0" | ||
5399 | + is-fullwidth-code-point "^1.0.0" | ||
5400 | + strip-ansi "^3.0.0" | ||
5401 | + | ||
5402 | +"string-width@^1.0.2 || 2": | ||
5403 | + version "2.1.1" | ||
5404 | + resolved "https://registry.yarnpkg.com/string-width/-/string-width-2.1.1.tgz#ab93f27a8dc13d28cac815c462143a6d9012ae9e" | ||
5405 | + integrity sha512-nOqH59deCq9SRHlxq1Aw85Jnt4w6KvLKqWVik6oA9ZklXLNIOlqg4F2yrT1MVaTjAqvVwdfeZ7w7aCvJD7ugkw== | ||
5406 | + dependencies: | ||
5407 | + is-fullwidth-code-point "^2.0.0" | ||
5408 | + strip-ansi "^4.0.0" | ||
5409 | + | ||
4661 | string-width@^4.2.0: | 5410 | string-width@^4.2.0: |
4662 | version "4.2.0" | 5411 | version "4.2.0" |
4663 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-4.2.0.tgz#952182c46cc7b2c313d1596e623992bd163b72b5" | 5412 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-4.2.0.tgz#952182c46cc7b2c313d1596e623992bd163b72b5" |
... | @@ -4717,6 +5466,20 @@ strip-ansi@6.0.0, strip-ansi@^6.0.0: | ... | @@ -4717,6 +5466,20 @@ strip-ansi@6.0.0, strip-ansi@^6.0.0: |
4717 | dependencies: | 5466 | dependencies: |
4718 | ansi-regex "^5.0.0" | 5467 | ansi-regex "^5.0.0" |
4719 | 5468 | ||
5469 | +strip-ansi@^3.0.0, strip-ansi@^3.0.1: | ||
5470 | + version "3.0.1" | ||
5471 | + resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-3.0.1.tgz#6a385fb8853d952d5ff05d0e8aaf94278dc63dcf" | ||
5472 | + integrity sha1-ajhfuIU9lS1f8F0Oiq+UJ43GPc8= | ||
5473 | + dependencies: | ||
5474 | + ansi-regex "^2.0.0" | ||
5475 | + | ||
5476 | +strip-ansi@^4.0.0: | ||
5477 | + version "4.0.0" | ||
5478 | + resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-4.0.0.tgz#a8479022eb1ac368a871389b635262c505ee368f" | ||
5479 | + integrity sha1-qEeQIusaw2iocTibY1JixQXuNo8= | ||
5480 | + dependencies: | ||
5481 | + ansi-regex "^3.0.0" | ||
5482 | + | ||
4720 | strip-bom@^3.0.0: | 5483 | strip-bom@^3.0.0: |
4721 | version "3.0.0" | 5484 | version "3.0.0" |
4722 | resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-3.0.0.tgz#2334c18e9c759f7bdd56fdef7e9ae3d588e68ed3" | 5485 | resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-3.0.0.tgz#2334c18e9c759f7bdd56fdef7e9ae3d588e68ed3" |
... | @@ -4734,6 +5497,11 @@ strip-json-comments@^3.1.0, strip-json-comments@^3.1.1: | ... | @@ -4734,6 +5497,11 @@ strip-json-comments@^3.1.0, strip-json-comments@^3.1.1: |
4734 | resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-3.1.1.tgz#31f1281b3832630434831c310c01cccda8cbe006" | 5497 | resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-3.1.1.tgz#31f1281b3832630434831c310c01cccda8cbe006" |
4735 | integrity sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig== | 5498 | integrity sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig== |
4736 | 5499 | ||
5500 | +strip-json-comments@~2.0.1: | ||
5501 | + version "2.0.1" | ||
5502 | + resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-2.0.1.tgz#3c531942e908c2697c0ec344858c286c7ca0a60a" | ||
5503 | + integrity sha1-PFMZQukIwml8DsNEhYwobHygpgo= | ||
5504 | + | ||
4737 | styled-components@^5.2.3: | 5505 | styled-components@^5.2.3: |
4738 | version "5.2.3" | 5506 | version "5.2.3" |
4739 | resolved "https://registry.yarnpkg.com/styled-components/-/styled-components-5.2.3.tgz#752669fd694aac10de814d96efc287dde0d11385" | 5507 | resolved "https://registry.yarnpkg.com/styled-components/-/styled-components-5.2.3.tgz#752669fd694aac10de814d96efc287dde0d11385" |
... | @@ -4831,6 +5599,11 @@ svgo@^1.2.2: | ... | @@ -4831,6 +5599,11 @@ svgo@^1.2.2: |
4831 | unquote "~1.1.1" | 5599 | unquote "~1.1.1" |
4832 | util.promisify "~1.0.0" | 5600 | util.promisify "~1.0.0" |
4833 | 5601 | ||
5602 | +symbol-tree@^3.2.2: | ||
5603 | + version "3.2.4" | ||
5604 | + resolved "https://registry.yarnpkg.com/symbol-tree/-/symbol-tree-3.2.4.tgz#430637d248ba77e078883951fb9aa0eed7c63fa2" | ||
5605 | + integrity sha512-9QNk5KwDF+Bvz+PyObkmSYjI5ksVUYtjW7AU22r2NKcfLJcXp96hkDWU3+XndOsUb+AQ9QhfzfCT2O+CNWT5Tw== | ||
5606 | + | ||
4834 | table@^6.0.4: | 5607 | table@^6.0.4: |
4835 | version "6.0.7" | 5608 | version "6.0.7" |
4836 | resolved "https://registry.yarnpkg.com/table/-/table-6.0.7.tgz#e45897ffbcc1bcf9e8a87bf420f2c9e5a7a52a34" | 5609 | resolved "https://registry.yarnpkg.com/table/-/table-6.0.7.tgz#e45897ffbcc1bcf9e8a87bf420f2c9e5a7a52a34" |
... | @@ -4841,6 +5614,19 @@ table@^6.0.4: | ... | @@ -4841,6 +5614,19 @@ table@^6.0.4: |
4841 | slice-ansi "^4.0.0" | 5614 | slice-ansi "^4.0.0" |
4842 | string-width "^4.2.0" | 5615 | string-width "^4.2.0" |
4843 | 5616 | ||
5617 | +tar@^4.4.2: | ||
5618 | + version "4.4.13" | ||
5619 | + resolved "https://registry.yarnpkg.com/tar/-/tar-4.4.13.tgz#43b364bc52888d555298637b10d60790254ab525" | ||
5620 | + integrity sha512-w2VwSrBoHa5BsSyH+KxEqeQBAllHhccyMFVHtGtdMpF4W7IRWfZjFiQceJPChOeTsSDVUpER2T8FA93pr0L+QA== | ||
5621 | + dependencies: | ||
5622 | + chownr "^1.1.1" | ||
5623 | + fs-minipass "^1.2.5" | ||
5624 | + minipass "^2.8.6" | ||
5625 | + minizlib "^1.2.1" | ||
5626 | + mkdirp "^0.5.0" | ||
5627 | + safe-buffer "^5.1.2" | ||
5628 | + yallist "^3.0.3" | ||
5629 | + | ||
4844 | text-table@^0.2.0: | 5630 | text-table@^0.2.0: |
4845 | version "0.2.0" | 5631 | version "0.2.0" |
4846 | resolved "https://registry.yarnpkg.com/text-table/-/text-table-0.2.0.tgz#7f5ee823ae805207c00af2df4a84ec3fcfa570b4" | 5632 | resolved "https://registry.yarnpkg.com/text-table/-/text-table-0.2.0.tgz#7f5ee823ae805207c00af2df4a84ec3fcfa570b4" |
... | @@ -4880,6 +5666,23 @@ totalist@^1.0.0: | ... | @@ -4880,6 +5666,23 @@ totalist@^1.0.0: |
4880 | resolved "https://registry.yarnpkg.com/totalist/-/totalist-1.1.0.tgz#a4d65a3e546517701e3e5c37a47a70ac97fe56df" | 5666 | resolved "https://registry.yarnpkg.com/totalist/-/totalist-1.1.0.tgz#a4d65a3e546517701e3e5c37a47a70ac97fe56df" |
4881 | integrity sha512-gduQwd1rOdDMGxFG1gEvhV88Oirdo2p+KjoYFU7k2g+i7n6AFFbDQ5kMPUsW0pNbfQsB/cwXvT1i4Bue0s9g5g== | 5667 | integrity sha512-gduQwd1rOdDMGxFG1gEvhV88Oirdo2p+KjoYFU7k2g+i7n6AFFbDQ5kMPUsW0pNbfQsB/cwXvT1i4Bue0s9g5g== |
4882 | 5668 | ||
5669 | +tough-cookie@^2.3.3, tough-cookie@~2.5.0: | ||
5670 | + version "2.5.0" | ||
5671 | + resolved "https://registry.yarnpkg.com/tough-cookie/-/tough-cookie-2.5.0.tgz#cd9fb2a0aa1d5a12b473bd9fb96fa3dcff65ade2" | ||
5672 | + integrity sha512-nlLsUzgm1kfLXSXfRZMc1KLAugd4hqJHDTvc2hDIwS3mZAfMEuMbc03SujMF+GEcpaX/qboeycw6iO8JwVv2+g== | ||
5673 | + dependencies: | ||
5674 | + psl "^1.1.28" | ||
5675 | + punycode "^2.1.1" | ||
5676 | + | ||
5677 | +tough-cookie@^3.0.1: | ||
5678 | + version "3.0.1" | ||
5679 | + resolved "https://registry.yarnpkg.com/tough-cookie/-/tough-cookie-3.0.1.tgz#9df4f57e739c26930a018184887f4adb7dca73b2" | ||
5680 | + integrity sha512-yQyJ0u4pZsv9D4clxO69OEjLWYw+jbgspjTue4lTQZLfV0c5l1VmK2y1JK8E9ahdpltPOaAThPcp5nKPUgSnsg== | ||
5681 | + dependencies: | ||
5682 | + ip-regex "^2.1.0" | ||
5683 | + psl "^1.1.28" | ||
5684 | + punycode "^2.1.1" | ||
5685 | + | ||
4883 | tr46@^1.0.1: | 5686 | tr46@^1.0.1: |
4884 | version "1.0.1" | 5687 | version "1.0.1" |
4885 | resolved "https://registry.yarnpkg.com/tr46/-/tr46-1.0.1.tgz#a8b13fd6bfd2489519674ccde55ba3693b706d09" | 5688 | resolved "https://registry.yarnpkg.com/tr46/-/tr46-1.0.1.tgz#a8b13fd6bfd2489519674ccde55ba3693b706d09" |
... | @@ -4924,6 +5727,55 @@ tty-browserify@0.0.1: | ... | @@ -4924,6 +5727,55 @@ tty-browserify@0.0.1: |
4924 | resolved "https://registry.yarnpkg.com/tty-browserify/-/tty-browserify-0.0.1.tgz#3f05251ee17904dfd0677546670db9651682b811" | 5727 | resolved "https://registry.yarnpkg.com/tty-browserify/-/tty-browserify-0.0.1.tgz#3f05251ee17904dfd0677546670db9651682b811" |
4925 | integrity sha512-C3TaO7K81YvjCgQH9Q1S3R3P3BtN3RIM8n+OvX4il1K1zgE8ZhI0op7kClgkxtutIE8hQrcrHBXvIheqKUUCxw== | 5728 | integrity sha512-C3TaO7K81YvjCgQH9Q1S3R3P3BtN3RIM8n+OvX4il1K1zgE8ZhI0op7kClgkxtutIE8hQrcrHBXvIheqKUUCxw== |
4926 | 5729 | ||
5730 | +tui-code-snippet@^1.5.0: | ||
5731 | + version "1.5.2" | ||
5732 | + resolved "https://registry.yarnpkg.com/tui-code-snippet/-/tui-code-snippet-1.5.2.tgz#f4b8f0f1ac996b0b5b621f77c9507af19a0de238" | ||
5733 | + integrity sha512-6UqTlQaaC1KLcmC0HAoq5dtl1G4Fib+R+NC7pmaV7kiIlZ7JqKhUmnOoGRcreAyzd81UTK/vCvhrw9QJskpCFQ== | ||
5734 | + | ||
5735 | +tui-code-snippet@^2.2.0: | ||
5736 | + version "2.3.2" | ||
5737 | + resolved "https://registry.yarnpkg.com/tui-code-snippet/-/tui-code-snippet-2.3.2.tgz#39eb3ce46ea92043b3244f155797248535880c5d" | ||
5738 | + integrity sha512-6jGbM/m7A2L59lJSripwMVp87awrWgJXezlLV8GuAha3s0k01E4+MndoU5WlXd4dauVRgzHhKguTVslx/jMehw== | ||
5739 | + | ||
5740 | +tui-color-picker@^2.2.6: | ||
5741 | + version "2.2.6" | ||
5742 | + resolved "https://registry.yarnpkg.com/tui-color-picker/-/tui-color-picker-2.2.6.tgz#bab54e47380e550bb3ac8ae974021b3cc2518aa9" | ||
5743 | + integrity sha512-+GBTUFGOkDaFiyYt/4IJTKA68Oj7fC9lU+RHs56luyFHYSO3gWuvsZntxAvFFeCGiZFFhu9XQQaZ0rVS5TUOmA== | ||
5744 | + dependencies: | ||
5745 | + tui-code-snippet "^2.2.0" | ||
5746 | + | ||
5747 | +tui-image-editor@3.14.2: | ||
5748 | + version "3.14.2" | ||
5749 | + resolved "https://registry.yarnpkg.com/tui-image-editor/-/tui-image-editor-3.14.2.tgz#a891138d368a627816ecae8c30e5a1501d5e86d7" | ||
5750 | + integrity sha512-OrM78+uYRt6R6jEHrdaA/sl2/xQFw2pNfdvZy4ZTg+eoCFVOQwFOnDjlu87oOH2Oy8dtWL2BEiVceFqISC+UQg== | ||
5751 | + dependencies: | ||
5752 | + core-js-pure "^3.6.4" | ||
5753 | + fabric "^4.2.0" | ||
5754 | + tui-code-snippet "^1.5.0" | ||
5755 | + tui-color-picker "^2.2.6" | ||
5756 | + | ||
5757 | +tui-image-editor@^3.14.2: | ||
5758 | + version "3.14.3" | ||
5759 | + resolved "https://registry.yarnpkg.com/tui-image-editor/-/tui-image-editor-3.14.3.tgz#f9458f6966e80ec67f194fd7dcf7aaff80bb6600" | ||
5760 | + integrity sha512-zNbC+nKVYdLSvUuHK+ZWTJw6T5Jr02oPBKrdEjfGAP7gx2yfWzHbpmrsivLyiCJzKV580N4mt0mAXttB2EClYg== | ||
5761 | + dependencies: | ||
5762 | + core-js-pure "^3.6.4" | ||
5763 | + fabric "^4.2.0" | ||
5764 | + tui-code-snippet "^1.5.0" | ||
5765 | + tui-color-picker "^2.2.6" | ||
5766 | + | ||
5767 | +tunnel-agent@^0.6.0: | ||
5768 | + version "0.6.0" | ||
5769 | + resolved "https://registry.yarnpkg.com/tunnel-agent/-/tunnel-agent-0.6.0.tgz#27a5dea06b36b04a0a9966774b290868f0fc40fd" | ||
5770 | + integrity sha1-J6XeoGs2sEoKmWZ3SykIaPD8QP0= | ||
5771 | + dependencies: | ||
5772 | + safe-buffer "^5.0.1" | ||
5773 | + | ||
5774 | +tweetnacl@^0.14.3, tweetnacl@~0.14.0: | ||
5775 | + version "0.14.5" | ||
5776 | + resolved "https://registry.yarnpkg.com/tweetnacl/-/tweetnacl-0.14.5.tgz#5ae68177f192d4456269d108afa93ff8743f4f64" | ||
5777 | + integrity sha1-WuaBd/GS1EViadEIr6k/+HQ/T2Q= | ||
5778 | + | ||
4927 | type-check@^0.4.0, type-check@~0.4.0: | 5779 | type-check@^0.4.0, type-check@~0.4.0: |
4928 | version "0.4.0" | 5780 | version "0.4.0" |
4929 | resolved "https://registry.yarnpkg.com/type-check/-/type-check-0.4.0.tgz#07b8203bfa7056c0657050e3ccd2c37730bab8f1" | 5781 | resolved "https://registry.yarnpkg.com/type-check/-/type-check-0.4.0.tgz#07b8203bfa7056c0657050e3ccd2c37730bab8f1" |
... | @@ -4931,6 +5783,13 @@ type-check@^0.4.0, type-check@~0.4.0: | ... | @@ -4931,6 +5783,13 @@ type-check@^0.4.0, type-check@~0.4.0: |
4931 | dependencies: | 5783 | dependencies: |
4932 | prelude-ls "^1.2.1" | 5784 | prelude-ls "^1.2.1" |
4933 | 5785 | ||
5786 | +type-check@~0.3.2: | ||
5787 | + version "0.3.2" | ||
5788 | + resolved "https://registry.yarnpkg.com/type-check/-/type-check-0.3.2.tgz#5884cab512cf1d355e3fb784f30804b2b520db72" | ||
5789 | + integrity sha1-WITKtRLPHTVeP7eE8wgEsrUg23I= | ||
5790 | + dependencies: | ||
5791 | + prelude-ls "~1.1.2" | ||
5792 | + | ||
4934 | type-fest@^0.20.2: | 5793 | type-fest@^0.20.2: |
4935 | version "0.20.2" | 5794 | version "0.20.2" |
4936 | resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-0.20.2.tgz#1bf207f4b28f91583666cb5fbd327887301cd5f4" | 5795 | resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-0.20.2.tgz#1bf207f4b28f91583666cb5fbd327887301cd5f4" |
... | @@ -5047,6 +5906,11 @@ util@^0.11.0: | ... | @@ -5047,6 +5906,11 @@ util@^0.11.0: |
5047 | dependencies: | 5906 | dependencies: |
5048 | inherits "2.0.3" | 5907 | inherits "2.0.3" |
5049 | 5908 | ||
5909 | +uuid@^3.3.2: | ||
5910 | + version "3.4.0" | ||
5911 | + resolved "https://registry.yarnpkg.com/uuid/-/uuid-3.4.0.tgz#b23e4358afa8a202fe7a100af1f5f883f02007ee" | ||
5912 | + integrity sha512-HjSDRw6gZE5JMggctHBcjVak08+KEVhSIiDzFnT9S9aegmp85S/bReBVTb4QTFaRNptJ9kuYaNhnbNEOkbKb/A== | ||
5913 | + | ||
5050 | v8-compile-cache@^2.0.3: | 5914 | v8-compile-cache@^2.0.3: |
5051 | version "2.2.0" | 5915 | version "2.2.0" |
5052 | resolved "https://registry.yarnpkg.com/v8-compile-cache/-/v8-compile-cache-2.2.0.tgz#9471efa3ef9128d2f7c6a7ca39c4dd6b5055b132" | 5916 | resolved "https://registry.yarnpkg.com/v8-compile-cache/-/v8-compile-cache-2.2.0.tgz#9471efa3ef9128d2f7c6a7ca39c4dd6b5055b132" |
... | @@ -5060,11 +5924,36 @@ validate-npm-package-license@^3.0.1: | ... | @@ -5060,11 +5924,36 @@ validate-npm-package-license@^3.0.1: |
5060 | spdx-correct "^3.0.0" | 5924 | spdx-correct "^3.0.0" |
5061 | spdx-expression-parse "^3.0.0" | 5925 | spdx-expression-parse "^3.0.0" |
5062 | 5926 | ||
5927 | +verror@1.10.0: | ||
5928 | + version "1.10.0" | ||
5929 | + resolved "https://registry.yarnpkg.com/verror/-/verror-1.10.0.tgz#3a105ca17053af55d6e270c1f8288682e18da400" | ||
5930 | + integrity sha1-OhBcoXBTr1XW4nDB+CiGguGNpAA= | ||
5931 | + dependencies: | ||
5932 | + assert-plus "^1.0.0" | ||
5933 | + core-util-is "1.0.2" | ||
5934 | + extsprintf "^1.2.0" | ||
5935 | + | ||
5063 | vm-browserify@1.1.2, vm-browserify@^1.0.1: | 5936 | vm-browserify@1.1.2, vm-browserify@^1.0.1: |
5064 | version "1.1.2" | 5937 | version "1.1.2" |
5065 | resolved "https://registry.yarnpkg.com/vm-browserify/-/vm-browserify-1.1.2.tgz#78641c488b8e6ca91a75f511e7a3b32a86e5dda0" | 5938 | resolved "https://registry.yarnpkg.com/vm-browserify/-/vm-browserify-1.1.2.tgz#78641c488b8e6ca91a75f511e7a3b32a86e5dda0" |
5066 | integrity sha512-2ham8XPWTONajOR0ohOKOHXkm3+gaBmGut3SRuu75xLd/RRaY6vqgh8NBYYk7+RW3u5AtzPQZG8F10LHkl0lAQ== | 5939 | integrity sha512-2ham8XPWTONajOR0ohOKOHXkm3+gaBmGut3SRuu75xLd/RRaY6vqgh8NBYYk7+RW3u5AtzPQZG8F10LHkl0lAQ== |
5067 | 5940 | ||
5941 | +w3c-hr-time@^1.0.1: | ||
5942 | + version "1.0.2" | ||
5943 | + resolved "https://registry.yarnpkg.com/w3c-hr-time/-/w3c-hr-time-1.0.2.tgz#0a89cdf5cc15822df9c360543676963e0cc308cd" | ||
5944 | + integrity sha512-z8P5DvDNjKDoFIHK7q8r8lackT6l+jo/Ye3HOle7l9nICP9lf1Ci25fy9vHd0JOWewkIFzXIEig3TdKT7JQ5fQ== | ||
5945 | + dependencies: | ||
5946 | + browser-process-hrtime "^1.0.0" | ||
5947 | + | ||
5948 | +w3c-xmlserializer@^1.1.2: | ||
5949 | + version "1.1.2" | ||
5950 | + resolved "https://registry.yarnpkg.com/w3c-xmlserializer/-/w3c-xmlserializer-1.1.2.tgz#30485ca7d70a6fd052420a3d12fd90e6339ce794" | ||
5951 | + integrity sha512-p10l/ayESzrBMYWRID6xbuCKh2Fp77+sA0doRuGn4tTIMrrZVeqfpKjXHY+oDh3K4nLdPgNwMTVP6Vp4pvqbNg== | ||
5952 | + dependencies: | ||
5953 | + domexception "^1.0.1" | ||
5954 | + webidl-conversions "^4.0.2" | ||
5955 | + xml-name-validator "^3.0.0" | ||
5956 | + | ||
5068 | watchpack@2.1.1: | 5957 | watchpack@2.1.1: |
5069 | version "2.1.1" | 5958 | version "2.1.1" |
5070 | resolved "https://registry.yarnpkg.com/watchpack/-/watchpack-2.1.1.tgz#e99630550fca07df9f90a06056987baa40a689c7" | 5959 | resolved "https://registry.yarnpkg.com/watchpack/-/watchpack-2.1.1.tgz#e99630550fca07df9f90a06056987baa40a689c7" |
... | @@ -5098,6 +5987,18 @@ webpack-bundle-analyzer@4.3.0: | ... | @@ -5098,6 +5987,18 @@ webpack-bundle-analyzer@4.3.0: |
5098 | sirv "^1.0.7" | 5987 | sirv "^1.0.7" |
5099 | ws "^7.3.1" | 5988 | ws "^7.3.1" |
5100 | 5989 | ||
5990 | +whatwg-encoding@^1.0.1, whatwg-encoding@^1.0.5: | ||
5991 | + version "1.0.5" | ||
5992 | + resolved "https://registry.yarnpkg.com/whatwg-encoding/-/whatwg-encoding-1.0.5.tgz#5abacf777c32166a51d085d6b4f3e7d27113ddb0" | ||
5993 | + integrity sha512-b5lim54JOPN9HtzvK9HFXvBma/rnfFeqsic0hSpjtDbVxR3dJKLc+KB4V6GgiGOvl7CY/KNh8rxSo9DKQrnUEw== | ||
5994 | + dependencies: | ||
5995 | + iconv-lite "0.4.24" | ||
5996 | + | ||
5997 | +whatwg-mimetype@^2.2.0, whatwg-mimetype@^2.3.0: | ||
5998 | + version "2.3.0" | ||
5999 | + resolved "https://registry.yarnpkg.com/whatwg-mimetype/-/whatwg-mimetype-2.3.0.tgz#3d4b1e0312d2079879f826aff18dbeeca5960fbf" | ||
6000 | + integrity sha512-M4yMwr6mAnQz76TbJm914+gPpB/nCwvZbJU28cUD6dR004SAxDLOOSUaB1JDRqLtaOV/vi0IC5lEAGFgrjGv/g== | ||
6001 | + | ||
5101 | whatwg-url@^7.0.0: | 6002 | whatwg-url@^7.0.0: |
5102 | version "7.1.0" | 6003 | version "7.1.0" |
5103 | resolved "https://registry.yarnpkg.com/whatwg-url/-/whatwg-url-7.1.0.tgz#c2c492f1eca612988efd3d2266be1b9fc6170d06" | 6004 | resolved "https://registry.yarnpkg.com/whatwg-url/-/whatwg-url-7.1.0.tgz#c2c492f1eca612988efd3d2266be1b9fc6170d06" |
... | @@ -5127,7 +6028,14 @@ which@^2.0.1: | ... | @@ -5127,7 +6028,14 @@ which@^2.0.1: |
5127 | dependencies: | 6028 | dependencies: |
5128 | isexe "^2.0.0" | 6029 | isexe "^2.0.0" |
5129 | 6030 | ||
5130 | -word-wrap@^1.2.3: | 6031 | +wide-align@^1.1.0: |
6032 | + version "1.1.3" | ||
6033 | + resolved "https://registry.yarnpkg.com/wide-align/-/wide-align-1.1.3.tgz#ae074e6bdc0c14a431e804e624549c633b000457" | ||
6034 | + integrity sha512-QGkOQc8XL6Bt5PwnsExKBPuMKBxnGxWWW3fU55Xt4feHozMUhdUMaBCk290qpm/wG5u/RSKzwdAC4i51YigihA== | ||
6035 | + dependencies: | ||
6036 | + string-width "^1.0.2 || 2" | ||
6037 | + | ||
6038 | +word-wrap@^1.2.3, word-wrap@~1.2.3: | ||
5131 | version "1.2.3" | 6039 | version "1.2.3" |
5132 | resolved "https://registry.yarnpkg.com/word-wrap/-/word-wrap-1.2.3.tgz#610636f6b1f703891bd34771ccb17fb93b47079c" | 6040 | resolved "https://registry.yarnpkg.com/word-wrap/-/word-wrap-1.2.3.tgz#610636f6b1f703891bd34771ccb17fb93b47079c" |
5133 | integrity sha512-Hz/mrNwitNRh/HUAtM/VT/5VH+ygD6DV7mYKZAtHOrbs8U7lvPS6xf7EJKMF0uW1KJCl0H701g3ZGus+muE5vQ== | 6041 | integrity sha512-Hz/mrNwitNRh/HUAtM/VT/5VH+ygD6DV7mYKZAtHOrbs8U7lvPS6xf7EJKMF0uW1KJCl0H701g3ZGus+muE5vQ== |
... | @@ -5137,16 +6045,31 @@ wrappy@1: | ... | @@ -5137,16 +6045,31 @@ wrappy@1: |
5137 | resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f" | 6045 | resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f" |
5138 | integrity sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8= | 6046 | integrity sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8= |
5139 | 6047 | ||
5140 | -ws@^7.3.1: | 6048 | +ws@^7.0.0, ws@^7.3.1: |
5141 | version "7.4.5" | 6049 | version "7.4.5" |
5142 | resolved "https://registry.yarnpkg.com/ws/-/ws-7.4.5.tgz#a484dd851e9beb6fdb420027e3885e8ce48986c1" | 6050 | resolved "https://registry.yarnpkg.com/ws/-/ws-7.4.5.tgz#a484dd851e9beb6fdb420027e3885e8ce48986c1" |
5143 | integrity sha512-xzyu3hFvomRfXKH8vOFMU3OguG6oOvhXMo3xsGy3xWExqaM2dxBbVxuD99O7m3ZUFMvvscsZDqxfgMaRr/Nr1g== | 6051 | integrity sha512-xzyu3hFvomRfXKH8vOFMU3OguG6oOvhXMo3xsGy3xWExqaM2dxBbVxuD99O7m3ZUFMvvscsZDqxfgMaRr/Nr1g== |
5144 | 6052 | ||
6053 | +xml-name-validator@^3.0.0: | ||
6054 | + version "3.0.0" | ||
6055 | + resolved "https://registry.yarnpkg.com/xml-name-validator/-/xml-name-validator-3.0.0.tgz#6ae73e06de4d8c6e47f9fb181f78d648ad457c6a" | ||
6056 | + integrity sha512-A5CUptxDsvxKJEU3yO6DuWBSJz/qizqzJKOMIfUJHETbBw/sFaDxgd6fxm1ewUaM0jZ444Fc5vC5ROYurg/4Pw== | ||
6057 | + | ||
6058 | +xmlchars@^2.1.1: | ||
6059 | + version "2.2.0" | ||
6060 | + resolved "https://registry.yarnpkg.com/xmlchars/-/xmlchars-2.2.0.tgz#060fe1bcb7f9c76fe2a17db86a9bc3ab894210cb" | ||
6061 | + integrity sha512-JZnDKK8B0RCDw84FNdDAIpZK+JuJw+s7Lz8nksI7SIuU3UXJJslUthsi+uWBUYOwPFwW7W7PRLRfUKpxjtjFCw== | ||
6062 | + | ||
5145 | xtend@^4.0.0, xtend@^4.0.2: | 6063 | xtend@^4.0.0, xtend@^4.0.2: |
5146 | version "4.0.2" | 6064 | version "4.0.2" |
5147 | resolved "https://registry.yarnpkg.com/xtend/-/xtend-4.0.2.tgz#bb72779f5fa465186b1f438f674fa347fdb5db54" | 6065 | resolved "https://registry.yarnpkg.com/xtend/-/xtend-4.0.2.tgz#bb72779f5fa465186b1f438f674fa347fdb5db54" |
5148 | integrity sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ== | 6066 | integrity sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ== |
5149 | 6067 | ||
6068 | +yallist@^3.0.0, yallist@^3.0.3: | ||
6069 | + version "3.1.1" | ||
6070 | + resolved "https://registry.yarnpkg.com/yallist/-/yallist-3.1.1.tgz#dbb7daf9bfd8bac9ab45ebf602b8cbad0d5d08fd" | ||
6071 | + integrity sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g== | ||
6072 | + | ||
5150 | yallist@^4.0.0: | 6073 | yallist@^4.0.0: |
5151 | version "4.0.0" | 6074 | version "4.0.0" |
5152 | resolved "https://registry.yarnpkg.com/yallist/-/yallist-4.0.0.tgz#9bb92790d9c0effec63be73519e11a35019a3a72" | 6075 | resolved "https://registry.yarnpkg.com/yallist/-/yallist-4.0.0.tgz#9bb92790d9c0effec63be73519e11a35019a3a72" | ... | ... |
-
Please register or login to post a comment