Mirror: The highly customizable and versatile GraphQL client with which you add on features like normalized caching as you grow.
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

Bump dependencies (#500)

* Upgrade devDependencies

* Fix new lint error (@typescript-eslint/no-empty-function)

authored by

Phil Plückthun and committed by
GitHub
2c8c3b1a e7227c29

+432 -384
+21 -21
package.json
··· 88 88 "@babel/plugin-transform-react-jsx": "^7.7.7", 89 89 "@rollup/plugin-buble": "^0.21.0", 90 90 "@rollup/plugin-commonjs": "^11.0.1", 91 - "@rollup/plugin-node-resolve": "^6.1.0", 92 - "@testing-library/react": "^9.3.2", 91 + "@rollup/plugin-node-resolve": "^7.0.0", 92 + "@testing-library/react": "^9.4.0", 93 93 "@testing-library/react-hooks": "^3.2.1", 94 - "@types/enzyme": "3.10.3", 95 - "@types/jest": "^24.0.22", 96 - "@types/react": "^16.9.11", 94 + "@types/enzyme": "3.10.4", 95 + "@types/jest": "^24.0.25", 96 + "@types/react": "^16.9.17", 97 97 "@types/react-test-renderer": "^16.9.1", 98 98 "@types/scheduler": "^0.16.1", 99 - "@typescript-eslint/eslint-plugin": "^2.7.0", 100 - "@typescript-eslint/parser": "^2.7.0", 99 + "@typescript-eslint/eslint-plugin": "^2.15.0", 100 + "@typescript-eslint/parser": "^2.15.0", 101 101 "babel-plugin-closure-elimination": "^1.3.0", 102 102 "babel-plugin-transform-async-to-promises": "^0.8.15", 103 103 "codecov": "^3.6.1", 104 - "enzyme": "^3.10.0", 105 - "enzyme-adapter-react-16": "^1.15.1", 104 + "enzyme": "^3.11.0", 105 + "enzyme-adapter-react-16": "^1.15.2", 106 106 "enzyme-to-json": "^3.4.3", 107 - "eslint": "^6.6.0", 108 - "eslint-config-prettier": "^6.5.0", 109 - "eslint-plugin-import": "^2.18.2", 110 - "eslint-plugin-react": "^7.16.0", 111 - "eslint-plugin-react-hooks": "^2.2.0", 107 + "eslint": "^6.8.0", 108 + "eslint-config-prettier": "^6.9.0", 109 + "eslint-plugin-import": "^2.19.1", 110 + "eslint-plugin-react": "^7.17.0", 111 + "eslint-plugin-react-hooks": "^2.3.0", 112 112 "graphql": "^14.5.8", 113 113 "graphql-tag": "^2.10.1", 114 - "husky": "^3.0.9", 114 + "husky": "^4.0.6", 115 115 "jest": "^24.9.0", 116 - "lint-staged": "^9.4.2", 116 + "lint-staged": "^9.5.0", 117 117 "npm-run-all": "^4.1.5", 118 118 "prettier": "^1.19.1", 119 - "react": "^16.11.0", 120 - "react-dom": "^16.11.0", 121 - "react-is": "^16.11.0", 119 + "react": "^16.12.0", 120 + "react-dom": "^16.12.0", 121 + "react-is": "^16.12.0", 122 122 "react-ssr-prepass": "^1.0.8", 123 - "react-test-renderer": "^16.11.0", 123 + "react-test-renderer": "^16.12.0", 124 124 "rimraf": "^3.0.0", 125 125 "rollup": "^1.29.0", 126 126 "rollup-plugin-babel": "^4.3.3", ··· 138 138 }, 139 139 "dependencies": { 140 140 "react-wonka": "^2.0.0", 141 - "wonka": "^4.0.3" 141 + "wonka": "^4.0.5" 142 142 } 143 143 }
+4 -5
src/components/Mutation.test.tsx
··· 4 4 const { delay, fromValue, pipe } = require('wonka'); 5 5 const mock = { 6 6 executeMutation: jest.fn(() => 7 - pipe( 8 - fromValue({ data: 1, error: 2 }), 9 - delay(200) 10 - ) 7 + pipe(fromValue({ data: 1, error: 2 }), delay(200)) 11 8 ), 12 9 }; 13 10 ··· 40 37 }); 41 38 42 39 it('Should execute the mutation', done => { 43 - let execute = () => {}, 40 + let execute = () => { 41 + /* noop */ 42 + }, 44 43 props = {}; 45 44 const Test = () => <p>Hi</p>; 46 45 const App = () => {
+1 -5
src/utils/toSuspenseSource.test.ts
··· 43 43 44 44 it('throws a promise when the source is not resolving immediately', () => { 45 45 expect(() => { 46 - pipe( 47 - never, 48 - toSuspenseSource as any, 49 - subscribe(() => {}) 50 - ); 46 + pipe(never, toSuspenseSource as any, publish); 51 47 }).toThrow(expect.any(Promise)); 52 48 }); 53 49
+406 -353
yarn.lock
··· 135 135 "@babel/helper-plugin-utils" "^7.0.0" 136 136 "@babel/plugin-syntax-jsx" "^7.7.4" 137 137 138 - "@babel/runtime@^7.5.4", "@babel/runtime@^7.6.0", "@babel/runtime@^7.6.2": 139 - version "7.6.3" 140 - resolved "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.6.3.tgz#935122c74c73d2240cafd32ddb5fc2a6cd35cf1f" 141 - integrity sha512-kq6anf9JGjW8Nt5rYfEuGRaEAaH1mkv3Bbu6rYvLOpPh/RusSJXuKPEAoZ7L7gybZkchE8+NV5g9vKF4AGAtsA== 138 + "@babel/runtime@^7.5.4", "@babel/runtime@^7.6.2", "@babel/runtime@^7.6.3", "@babel/runtime@^7.7.6": 139 + version "7.7.7" 140 + resolved "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.7.7.tgz#194769ca8d6d7790ec23605af9ee3e42a0aa79cf" 141 + integrity sha512-uCnC2JEVAu8AKB5do1WRIsvrdJ0flYx/A/9f/6chdacnEZ7LmavjdsDXr5ksYBegxtuTPR5Va9/+13QF/kFkCA== 142 142 dependencies: 143 143 regenerator-runtime "^0.13.2" 144 144 ··· 372 372 magic-string "^0.25.2" 373 373 resolve "^1.11.0" 374 374 375 - "@rollup/plugin-node-resolve@^6.1.0": 376 - version "6.1.0" 377 - resolved "https://registry.yarnpkg.com/@rollup/plugin-node-resolve/-/plugin-node-resolve-6.1.0.tgz#0d2909f4bf606ae34d43a9bc8be06a9b0c850cf0" 378 - integrity sha512-Cv7PDIvxdE40SWilY5WgZpqfIUEaDxFxs89zCAHjqyRwlTSuql4M5hjIuc5QYJkOH0/vyiyNXKD72O+LhRipGA== 375 + "@rollup/plugin-node-resolve@^7.0.0": 376 + version "7.0.0" 377 + resolved "https://registry.yarnpkg.com/@rollup/plugin-node-resolve/-/plugin-node-resolve-7.0.0.tgz#cce3826df801538b001972fbf9b6b1c22b69fdf8" 378 + integrity sha512-+vOx2+WMBMFotYKM3yYeDGZxIvcQ7yO4g+SuKDFsjKaq8Lw3EPgfB6qNlp8Z/3ceDCEhHvC9/b+PgBGwDQGbzQ== 379 379 dependencies: 380 380 "@rollup/pluginutils" "^3.0.0" 381 381 "@types/resolve" "0.0.8" ··· 402 402 resolved "https://registry.yarnpkg.com/@sheerun/mutationobserver-shim/-/mutationobserver-shim-0.3.2.tgz#8013f2af54a2b7d735f71560ff360d3a8176a87b" 403 403 integrity sha512-vTCdPp/T/Q3oSqwHmZ5Kpa9oI7iLtGl3RQaA/NyLHikvcrPxACkkKVr/XzkSPJWXHRhKGzVvb0urJsbMlRxi1Q== 404 404 405 - "@testing-library/dom@^6.3.0": 406 - version "6.7.1" 407 - resolved "https://registry.yarnpkg.com/@testing-library/dom/-/dom-6.7.1.tgz#90985ab2524f712be695872714997a8b66958223" 408 - integrity sha512-whU3jdiv18l+v+6P8I8aAt1phaZHx6LwJtCsxoWTEp8OD8rEZs8V4SOnCpK70SXUcpZVE/NWPY/d/lNAffpmtA== 405 + "@testing-library/dom@^6.11.0": 406 + version "6.11.0" 407 + resolved "https://registry.yarnpkg.com/@testing-library/dom/-/dom-6.11.0.tgz#962a38f1a721fdb7c9e35e7579e33ff13a00eda4" 408 + integrity sha512-Pkx9LMIGshyNbfmecjt18rrAp/ayMqGH674jYER0SXj0iG9xZc+zWRjk2Pg9JgPBDvwI//xGrI/oOQkAi4YEew== 409 409 dependencies: 410 410 "@babel/runtime" "^7.6.2" 411 411 "@sheerun/mutationobserver-shim" "^0.3.2" ··· 422 422 "@babel/runtime" "^7.5.4" 423 423 "@types/testing-library__react-hooks" "^3.0.0" 424 424 425 - "@testing-library/react@^9.3.2": 426 - version "9.3.2" 427 - resolved "https://registry.yarnpkg.com/@testing-library/react/-/react-9.3.2.tgz#418000daa980dafd2d9420cc733d661daece9aa0" 428 - integrity sha512-J6ftWtm218tOLS175MF9eWCxGp+X+cUXCpkPIin8KAXWtyZbr9CbqJ8M8QNd6spZxJDAGlw+leLG4MJWLlqVgg== 425 + "@testing-library/react@^9.4.0": 426 + version "9.4.0" 427 + resolved "https://registry.yarnpkg.com/@testing-library/react/-/react-9.4.0.tgz#b021ac8cb987c8dc54c6841875f745bf9b2e88e5" 428 + integrity sha512-XdhDWkI4GktUPsz0AYyeQ8M9qS/JFie06kcSnUVcpgOwFjAu9vhwR83qBl+lw9yZWkbECjL8Hd+n5hH6C0oWqg== 429 429 dependencies: 430 - "@babel/runtime" "^7.6.0" 431 - "@testing-library/dom" "^6.3.0" 432 - "@types/testing-library__react" "^9.1.0" 430 + "@babel/runtime" "^7.7.6" 431 + "@testing-library/dom" "^6.11.0" 432 + "@types/testing-library__react" "^9.1.2" 433 433 434 434 "@types/babel__core@^7.1.0": 435 435 version "7.1.2" ··· 476 476 resolved "https://registry.yarnpkg.com/@types/cheerio/-/cheerio-0.22.10.tgz#780d552467824be4a241b29510a7873a7432c4a6" 477 477 integrity sha512-fOM/Jhv51iyugY7KOBZz2ThfT1gwvsGCfWxpLpZDgkGjpEO4Le9cld07OdskikLjDUQJ43dzDaVRSFwQlpdqVg== 478 478 479 - "@types/enzyme@3.10.3": 480 - version "3.10.3" 481 - resolved "https://registry.yarnpkg.com/@types/enzyme/-/enzyme-3.10.3.tgz#02b6c5ac7d0472005944a652e79045e2f6c66804" 482 - integrity sha512-f/Kcb84sZOSZiBPCkr4He9/cpuSLcKRyQaEE20Q30Prx0Dn6wcyMAWI0yofL6yvd9Ht9G7EVkQeRqK0n5w8ILw== 479 + "@types/color-name@^1.1.1": 480 + version "1.1.1" 481 + resolved "https://registry.yarnpkg.com/@types/color-name/-/color-name-1.1.1.tgz#1c1261bbeaa10a8055bbc5d8ab84b7b2afc846a0" 482 + integrity sha512-rr+OQyAjxze7GgWrSaJwydHStIhHq2lvY3BOC2Mj7KnzI7XK0Uw1TOOdI9lDoajEbSWLiYgoo4f1R51erQfhPQ== 483 + 484 + "@types/enzyme@3.10.4": 485 + version "3.10.4" 486 + resolved "https://registry.yarnpkg.com/@types/enzyme/-/enzyme-3.10.4.tgz#dd4961042381a7c0f6637ce25fec3f773ce489dd" 487 + integrity sha512-P5XpxcIt9KK8QUH4al4ttfJfIHg6xmN9ZjyUzRSzAsmDYwRXLI05ng/flZOPXrEXmp8ZYiN8/tEXYK5KSOQk3w== 483 488 dependencies: 484 489 "@types/cheerio" "*" 485 490 "@types/react" "*" ··· 528 533 "@types/istanbul-lib-coverage" "*" 529 534 "@types/istanbul-lib-report" "*" 530 535 531 - "@types/jest-diff@*": 532 - version "20.0.1" 533 - resolved "https://registry.yarnpkg.com/@types/jest-diff/-/jest-diff-20.0.1.tgz#35cc15b9c4f30a18ef21852e255fdb02f6d59b89" 534 - integrity sha512-yALhelO3i0hqZwhjtcr6dYyaLoCHbAMshwtj6cGxTvHZAKXHsYGdff6E8EPw3xLKY0ELUTQ69Q1rQiJENnccMA== 535 - 536 - "@types/jest@^24.0.22": 537 - version "24.0.22" 538 - resolved "https://registry.yarnpkg.com/@types/jest/-/jest-24.0.22.tgz#08a50be08e78aba850a1185626e71d31e2336145" 539 - integrity sha512-t2OvhNZnrNjlzi2i0/cxbLVM59WN15I2r1Qtb7wDv28PnV9IzrPtagFRey/S9ezdLD0zyh1XGMQIEQND2YEfrw== 536 + "@types/jest@^24.0.25": 537 + version "24.0.25" 538 + resolved "https://registry.yarnpkg.com/@types/jest/-/jest-24.0.25.tgz#2aba377824ce040114aa906ad2cac2c85351360f" 539 + integrity sha512-hnP1WpjN4KbGEK4dLayul6lgtys6FPz0UfxMeMQCv0M+sTnzN3ConfiO72jHgLxl119guHgI8gLqDOrRLsyp2g== 540 540 dependencies: 541 - "@types/jest-diff" "*" 541 + jest-diff "^24.3.0" 542 542 543 543 "@types/json-schema@^7.0.3": 544 544 version "7.0.3" ··· 555 555 resolved "https://registry.yarnpkg.com/@types/node/-/node-12.7.2.tgz#c4e63af5e8823ce9cc3f0b34f7b998c2171f0c44" 556 556 integrity sha512-dyYO+f6ihZEtNPDcWNR1fkoTDf3zAK3lAABDze3mz6POyIercH0lEUawUFXlG8xaQZmm1yEBON/4TsYv/laDYg== 557 557 558 - "@types/normalize-package-data@^2.4.0": 559 - version "2.4.0" 560 - resolved "https://registry.yarnpkg.com/@types/normalize-package-data/-/normalize-package-data-2.4.0.tgz#e486d0d97396d79beedd0a6e33f4534ff6b4973e" 561 - integrity sha512-f5j5b/Gf71L+dbqxIpQ4Z2WlmI/mPJ0fOkGGmFgtb6sAu97EPczzbS3/tJKxmcYDj55OX6ssqwDAWOHIYDRDGA== 558 + "@types/parse-json@^4.0.0": 559 + version "4.0.0" 560 + resolved "https://registry.yarnpkg.com/@types/parse-json/-/parse-json-4.0.0.tgz#2f8bb441434d163b35fb8ffdccd7138927ffb8c0" 561 + integrity sha512-//oorEZjL6sbPcKUaCdIGlIUeH26mgzimjBB77G6XRgnDl/L5wOnpyBGRe/Mmf5CVW3PwEBE1NjiMZ/ssFh4wA== 562 562 563 563 "@types/pretty-format@*": 564 564 version "20.0.1" ··· 584 584 dependencies: 585 585 "@types/react" "*" 586 586 587 - "@types/react@*", "@types/react@^16.9.11": 588 - version "16.9.11" 589 - resolved "https://registry.yarnpkg.com/@types/react/-/react-16.9.11.tgz#70e0b7ad79058a7842f25ccf2999807076ada120" 590 - integrity sha512-UBT4GZ3PokTXSWmdgC/GeCGEJXE5ofWyibCcecRLUVN2ZBpXQGVgQGtG2foS7CrTKFKlQVVswLvf7Js6XA/CVQ== 587 + "@types/react@*", "@types/react@^16.9.17": 588 + version "16.9.17" 589 + resolved "https://registry.yarnpkg.com/@types/react/-/react-16.9.17.tgz#58f0cc0e9ec2425d1441dd7b623421a867aa253e" 590 + integrity sha512-UP27In4fp4sWF5JgyV6pwVPAQM83Fj76JOcg02X5BZcpSu5Wx+fP9RMqc2v0ssBoQIFvD5JdKY41gjJJKmw6Bg== 591 591 dependencies: 592 592 "@types/prop-types" "*" 593 593 csstype "^2.2.0" ··· 624 624 "@types/react" "*" 625 625 "@types/react-test-renderer" "*" 626 626 627 - "@types/testing-library__react@^9.1.0": 628 - version "9.1.1" 629 - resolved "https://registry.yarnpkg.com/@types/testing-library__react/-/testing-library__react-9.1.1.tgz#4bcb8bba54b07fbb6c084f2f00e7f9410e587c10" 630 - integrity sha512-8/toTJaIlS3BC7JrK2ElTnbjH8tmFP7atdL2ZsIa1JDmH9RKSm/7Wp5oMDJzXoWr988Mv7ym/XZ8LRglyoGCGw== 627 + "@types/testing-library__react@^9.1.2": 628 + version "9.1.2" 629 + resolved "https://registry.yarnpkg.com/@types/testing-library__react/-/testing-library__react-9.1.2.tgz#e33af9124c60a010fc03a34eff8f8a34a75c4351" 630 + integrity sha512-CYaMqrswQ+cJACy268jsLAw355DZtPZGt3Jwmmotlcu8O/tkoXBI6AeZ84oZBJsIsesozPKzWzmv/0TIU+1E9Q== 631 631 dependencies: 632 632 "@types/react-dom" "*" 633 633 "@types/testing-library__dom" "*" ··· 644 644 dependencies: 645 645 "@types/yargs-parser" "*" 646 646 647 - "@typescript-eslint/eslint-plugin@^2.7.0": 648 - version "2.7.0" 649 - resolved "https://registry.yarnpkg.com/@typescript-eslint/eslint-plugin/-/eslint-plugin-2.7.0.tgz#dff176bdb73dfd7e2e43062452189bd1b9db6021" 650 - integrity sha512-H5G7yi0b0FgmqaEUpzyBlVh0d9lq4cWG2ap0RKa6BkF3rpBb6IrAoubt1NWh9R2kRs/f0k6XwRDiDz3X/FqXhQ== 647 + "@typescript-eslint/eslint-plugin@^2.15.0": 648 + version "2.15.0" 649 + resolved "https://registry.yarnpkg.com/@typescript-eslint/eslint-plugin/-/eslint-plugin-2.15.0.tgz#5442c30b687ffd576ff74cfea46a6d7bfb0ee893" 650 + integrity sha512-XRJFznI5v4K1WvIrWmjFjBAdQWaUTz4xJEdqR7+wAFsv6Q9dP3mOlE6BMNT3pdlp9eF1+bC5m5LZTmLMqffCVw== 651 651 dependencies: 652 - "@typescript-eslint/experimental-utils" "2.7.0" 653 - eslint-utils "^1.4.2" 652 + "@typescript-eslint/experimental-utils" "2.15.0" 653 + eslint-utils "^1.4.3" 654 654 functional-red-black-tree "^1.0.1" 655 - regexpp "^2.0.1" 655 + regexpp "^3.0.0" 656 656 tsutils "^3.17.1" 657 657 658 - "@typescript-eslint/experimental-utils@2.7.0": 659 - version "2.7.0" 660 - resolved "https://registry.yarnpkg.com/@typescript-eslint/experimental-utils/-/experimental-utils-2.7.0.tgz#58d790a3884df3041b5a5e08f9e5e6b7c41864b5" 661 - integrity sha512-9/L/OJh2a5G2ltgBWJpHRfGnt61AgDeH6rsdg59BH0naQseSwR7abwHq3D5/op0KYD/zFT4LS5gGvWcMmegTEg== 658 + "@typescript-eslint/experimental-utils@2.15.0": 659 + version "2.15.0" 660 + resolved "https://registry.yarnpkg.com/@typescript-eslint/experimental-utils/-/experimental-utils-2.15.0.tgz#41e35313bfaef91650ddb5380846d1c78a780070" 661 + integrity sha512-Qkxu5zndY5hqlcQkmA88gfLvqQulMpX/TN91XC7OuXsRf4XG5xLGie0sbpX97o/oeccjeZYRMipIsjKk/tjDHA== 662 662 dependencies: 663 663 "@types/json-schema" "^7.0.3" 664 - "@typescript-eslint/typescript-estree" "2.7.0" 664 + "@typescript-eslint/typescript-estree" "2.15.0" 665 665 eslint-scope "^5.0.0" 666 666 667 - "@typescript-eslint/parser@^2.7.0": 668 - version "2.7.0" 669 - resolved "https://registry.yarnpkg.com/@typescript-eslint/parser/-/parser-2.7.0.tgz#b5e6a4944e2b68dba1e7fbfd5242e09ff552fd12" 670 - integrity sha512-ctC0g0ZvYclxMh/xI+tyqP0EC2fAo6KicN9Wm2EIao+8OppLfxji7KAGJosQHSGBj3TcqUrA96AjgXuKa5ob2g== 667 + "@typescript-eslint/parser@^2.15.0": 668 + version "2.15.0" 669 + resolved "https://registry.yarnpkg.com/@typescript-eslint/parser/-/parser-2.15.0.tgz#379a71a51b0429bc3bc55c5f8aab831bf607e411" 670 + integrity sha512-6iSgQsqAYTaHw59t0tdjzZJluRAjswdGltzKEdLtcJOxR2UVTPHYvZRqkAVGCkaMVb6Fpa60NnuozNCvsSpA9g== 671 671 dependencies: 672 672 "@types/eslint-visitor-keys" "^1.0.0" 673 - "@typescript-eslint/experimental-utils" "2.7.0" 674 - "@typescript-eslint/typescript-estree" "2.7.0" 673 + "@typescript-eslint/experimental-utils" "2.15.0" 674 + "@typescript-eslint/typescript-estree" "2.15.0" 675 675 eslint-visitor-keys "^1.1.0" 676 676 677 - "@typescript-eslint/typescript-estree@2.7.0": 678 - version "2.7.0" 679 - resolved "https://registry.yarnpkg.com/@typescript-eslint/typescript-estree/-/typescript-estree-2.7.0.tgz#34fd98c77a07b40d04d5b4203eddd3abeab909f4" 680 - integrity sha512-vVCE/DY72N4RiJ/2f10PTyYekX2OLaltuSIBqeHYI44GQ940VCYioInIb8jKMrK9u855OEJdFC+HmWAZTnC+Ag== 677 + "@typescript-eslint/typescript-estree@2.15.0": 678 + version "2.15.0" 679 + resolved "https://registry.yarnpkg.com/@typescript-eslint/typescript-estree/-/typescript-estree-2.15.0.tgz#79ae52eed8701b164d91e968a65d85a9105e76d3" 680 + integrity sha512-L6Pog+w3VZzXkAdyqA0VlwybF8WcwZX+mufso86CMxSdWmcizJ38lgBdpqTbc9bo92iyi0rOvmATKiwl+amjxg== 681 681 dependencies: 682 682 debug "^4.1.1" 683 - glob "^7.1.4" 683 + eslint-visitor-keys "^1.1.0" 684 + glob "^7.1.6" 684 685 is-glob "^4.0.1" 685 686 lodash.unescape "4.0.1" 686 687 semver "^6.3.0" ··· 806 807 dependencies: 807 808 color-convert "^1.9.0" 808 809 810 + ansi-styles@^4.1.0: 811 + version "4.2.1" 812 + resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-4.2.1.tgz#90ae75c424d008d2624c5bf29ead3177ebfcf359" 813 + integrity sha512-9VGjrMsG1vePxcSweQsN20KY/c4zN0h9fLjqAbwbPfahM3t+NL+M9HC8xeXG2I8pX5NoamTGNuomEUFI7fcUjA== 814 + dependencies: 815 + "@types/color-name" "^1.1.1" 816 + color-convert "^2.0.1" 817 + 809 818 any-observable@^0.3.0: 810 819 version "0.3.0" 811 820 resolved "https://registry.yarnpkg.com/any-observable/-/any-observable-0.3.0.tgz#af933475e5806a67d0d7df090dd5e8bef65d119b" ··· 918 927 define-properties "^1.1.3" 919 928 es-abstract "^1.13.0" 920 929 921 - array.prototype.flat@^1.2.1: 922 - version "1.2.1" 923 - resolved "https://registry.yarnpkg.com/array.prototype.flat/-/array.prototype.flat-1.2.1.tgz#812db8f02cad24d3fab65dd67eabe3b8903494a4" 924 - integrity sha512-rVqIs330nLJvfC7JqYvEWwqVr5QjYF1ib02i3YJtR/fICO6527Tjpc/e4Mvmxh3GIePPreRXMdaGyC99YphWEw== 930 + array.prototype.flat@^1.2.1, array.prototype.flat@^1.2.3: 931 + version "1.2.3" 932 + resolved "https://registry.yarnpkg.com/array.prototype.flat/-/array.prototype.flat-1.2.3.tgz#0de82b426b0318dbfdb940089e38b043d37f6c7b" 933 + integrity sha512-gBlRZV0VSmfPIeWfuuy56XZMvbVfbEUnOXUvt3F/eUUUSyzlgLxhEX4YAEpxNAogRGehPSnfXyPtYyKAhkzQhQ== 925 934 dependencies: 926 - define-properties "^1.1.2" 927 - es-abstract "^1.10.0" 928 - function-bind "^1.1.1" 935 + define-properties "^1.1.3" 936 + es-abstract "^1.17.0-next.1" 929 937 930 938 asn1@~0.2.3: 931 939 version "0.2.4" ··· 1218 1226 escape-string-regexp "^1.0.5" 1219 1227 supports-color "^5.3.0" 1220 1228 1229 + chalk@^3.0.0: 1230 + version "3.0.0" 1231 + resolved "https://registry.yarnpkg.com/chalk/-/chalk-3.0.0.tgz#3f73c2bf526591f574cc492c51e2456349f844e4" 1232 + integrity sha512-4D3B6Wf41KOYRFdszmDqMCGq5VV/uMAB273JILmO+3jAlh8X4qDtdtgCR3fxtbLEMzSx22QdhnDcJvu2u1fVwg== 1233 + dependencies: 1234 + ansi-styles "^4.1.0" 1235 + supports-color "^7.1.0" 1236 + 1221 1237 chardet@^0.7.0: 1222 1238 version "0.7.0" 1223 1239 resolved "https://registry.yarnpkg.com/chardet/-/chardet-0.7.0.tgz#90094849f0937f2eedc2425d0d28a9e5f0cbad9e" 1224 1240 integrity sha512-mT8iDcrh03qDGRRmoA2hmBJnxpllMR+0/0qlzjqZES6NdiWDcZkCNAk4rPFZ9Q85r27unkiNNg8ZOiwZXBHwcA== 1225 1241 1226 - cheerio@^1.0.0-rc.2: 1227 - version "1.0.0-rc.2" 1228 - resolved "https://registry.yarnpkg.com/cheerio/-/cheerio-1.0.0-rc.2.tgz#4b9f53a81b27e4d5dac31c0ffd0cfa03cc6830db" 1229 - integrity sha1-S59TqBsn5NXawxwP/Qz6A8xoMNs= 1242 + cheerio@^1.0.0-rc.3: 1243 + version "1.0.0-rc.3" 1244 + resolved "https://registry.yarnpkg.com/cheerio/-/cheerio-1.0.0-rc.3.tgz#094636d425b2e9c0f4eb91a46c05630c9a1a8bf6" 1245 + integrity sha512-0td5ijfUPuubwLUu0OBoe98gZj8C/AA+RW3v67GPlGOrvxWjZmBXiBCRU+I8VEiNyJzjth40POfHiz2RB3gImA== 1230 1246 dependencies: 1231 1247 css-select "~1.2.0" 1232 - dom-serializer "~0.1.0" 1248 + dom-serializer "~0.1.1" 1233 1249 entities "~1.1.1" 1234 1250 htmlparser2 "^3.9.1" 1235 1251 lodash "^4.15.0" ··· 1327 1343 dependencies: 1328 1344 color-name "1.1.3" 1329 1345 1346 + color-convert@^2.0.1: 1347 + version "2.0.1" 1348 + resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-2.0.1.tgz#72d3a68d598c9bdb3af2ad1e84f21d896abd4de3" 1349 + integrity sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ== 1350 + dependencies: 1351 + color-name "~1.1.4" 1352 + 1330 1353 color-name@1.1.3: 1331 1354 version "1.1.3" 1332 1355 resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.3.tgz#a7d0558bd89c42f795dd42328f740831ca53bc25" 1333 1356 integrity sha1-p9BVi9icQveV3UIyj3QIMcpTvCU= 1357 + 1358 + color-name@~1.1.4: 1359 + version "1.1.4" 1360 + resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.4.tgz#c2a09a87acbde69543de6f63fa3995c826c536a2" 1361 + integrity sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA== 1334 1362 1335 1363 combined-stream@^1.0.6, combined-stream@~1.0.6: 1336 1364 version "1.0.8" ··· 1396 1424 js-yaml "^3.13.1" 1397 1425 parse-json "^4.0.0" 1398 1426 1427 + cosmiconfig@^6.0.0: 1428 + version "6.0.0" 1429 + resolved "https://registry.yarnpkg.com/cosmiconfig/-/cosmiconfig-6.0.0.tgz#da4fee853c52f6b1e6935f41c1a2fc50bd4a9982" 1430 + integrity sha512-xb3ZL6+L8b9JLLCx3ZdoZy4+2ECphCMo2PwqgP1tlfVq6M6YReyzBJtvWWtbDSpNr9hn96pkCiZqUcFEc+54Qg== 1431 + dependencies: 1432 + "@types/parse-json" "^4.0.0" 1433 + import-fresh "^3.1.0" 1434 + parse-json "^5.0.0" 1435 + path-type "^4.0.0" 1436 + yaml "^1.7.2" 1437 + 1399 1438 cross-spawn@^6.0.0, cross-spawn@^6.0.5: 1400 1439 version "6.0.5" 1401 1440 resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-6.0.5.tgz#4a5ec7c64dfae22c3a14124dbacdee846d80cbc4" ··· 1460 1499 resolved "https://registry.yarnpkg.com/date-fns/-/date-fns-1.30.1.tgz#2e71bf0b119153dbb4cc4e88d9ea5acfb50dc05c" 1461 1500 integrity sha512-hBSVCvSmWC+QypYObzwGOd9wqdDpOt+0wl0KbU+R+uuZBS1jN8VsD1ss3irQDknRj5NvxiTF6oj/nDRnN/UQNw== 1462 1501 1463 - debug@^2.1.2, debug@^2.2.0, debug@^2.3.3, debug@^2.6.8, debug@^2.6.9: 1502 + debug@^2.1.2, debug@^2.2.0, debug@^2.3.3, debug@^2.6.9: 1464 1503 version "2.6.9" 1465 1504 resolved "https://registry.yarnpkg.com/debug/-/debug-2.6.9.tgz#5d128515df134ff327e90a4c93f4e077a536341f" 1466 1505 integrity sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA== ··· 1605 1644 dependencies: 1606 1645 esutils "^2.0.2" 1607 1646 1608 - dom-serializer@0, dom-serializer@~0.1.0: 1609 - version "0.1.0" 1610 - resolved "https://registry.yarnpkg.com/dom-serializer/-/dom-serializer-0.1.0.tgz#073c697546ce0780ce23be4a28e293e40bc30c82" 1611 - integrity sha1-BzxpdUbOB4DOI75KKOKT5AvDDII= 1647 + dom-serializer@0, dom-serializer@~0.1.1: 1648 + version "0.1.1" 1649 + resolved "https://registry.yarnpkg.com/dom-serializer/-/dom-serializer-0.1.1.tgz#1ec4059e284babed36eec2941d4a970a189ce7c0" 1650 + integrity sha512-l0IU0pPzLWSHBcieZbpOKgkIn3ts3vAh7ZuFyXNwJxJXk/c4Gwj9xaTJwIDVQCXawWD0qb3IzMGH5rglQaO0XA== 1612 1651 dependencies: 1613 - domelementtype "~1.1.1" 1614 - entities "~1.1.1" 1652 + domelementtype "^1.3.0" 1653 + entities "^1.1.1" 1615 1654 1616 1655 domelementtype@1, domelementtype@^1.3.0: 1617 1656 version "1.3.1" 1618 1657 resolved "https://registry.yarnpkg.com/domelementtype/-/domelementtype-1.3.1.tgz#d048c44b37b0d10a7f2a3d5fee3f4333d790481f" 1619 1658 integrity sha512-BSKB+TSpMpFI/HOxCNr1O8aMOTZ8hT3pM3GQ0w/mWRmkhEDSFJkkyzz4XQsBV44BChwGkrDfMyjVD0eA2aFV3w== 1620 1659 1621 - domelementtype@~1.1.1: 1622 - version "1.1.3" 1623 - resolved "https://registry.yarnpkg.com/domelementtype/-/domelementtype-1.1.3.tgz#bd28773e2642881aec51544924299c5cd822185b" 1624 - integrity sha1-vSh3PiZCiBrsUVRJJCmcXNgiGFs= 1625 - 1626 1660 domexception@^1.0.1: 1627 1661 version "1.0.1" 1628 1662 resolved "https://registry.yarnpkg.com/domexception/-/domexception-1.0.1.tgz#937442644ca6a31261ef36e3ec677fe805582c90" ··· 1688 1722 resolved "https://registry.yarnpkg.com/entities/-/entities-1.1.2.tgz#bdfa735299664dfafd34529ed4f8522a275fea56" 1689 1723 integrity sha512-f2LZMYl1Fzu7YSBKg+RoROelpOaNrcGmE9AZubeDfrCEia483oW4MI4VyFd5VNHIgQ/7qm1I0wUHK1eJnn2y2w== 1690 1724 1691 - enzyme-adapter-react-16@^1.15.1: 1692 - version "1.15.1" 1693 - resolved "https://registry.yarnpkg.com/enzyme-adapter-react-16/-/enzyme-adapter-react-16-1.15.1.tgz#8ad55332be7091dc53a25d7d38b3485fc2ba50d5" 1694 - integrity sha512-yMPxrP3vjJP+4wL/qqfkT6JAIctcwKF+zXO6utlGPgUJT2l4tzrdjMDWGd/Pp1BjHBcljhN24OzNEGRteibJhA== 1725 + enzyme-adapter-react-16@^1.15.2: 1726 + version "1.15.2" 1727 + resolved "https://registry.yarnpkg.com/enzyme-adapter-react-16/-/enzyme-adapter-react-16-1.15.2.tgz#b16db2f0ea424d58a808f9df86ab6212895a4501" 1728 + integrity sha512-SkvDrb8xU3lSxID8Qic9rB8pvevDbLybxPK6D/vW7PrT0s2Cl/zJYuXvsd1EBTz0q4o3iqG3FJhpYz3nUNpM2Q== 1695 1729 dependencies: 1696 - enzyme-adapter-utils "^1.12.1" 1697 - enzyme-shallow-equal "^1.0.0" 1730 + enzyme-adapter-utils "^1.13.0" 1731 + enzyme-shallow-equal "^1.0.1" 1698 1732 has "^1.0.3" 1699 1733 object.assign "^4.1.0" 1700 - object.values "^1.1.0" 1734 + object.values "^1.1.1" 1701 1735 prop-types "^15.7.2" 1702 - react-is "^16.10.2" 1736 + react-is "^16.12.0" 1703 1737 react-test-renderer "^16.0.0-0" 1704 1738 semver "^5.7.0" 1705 1739 1706 - enzyme-adapter-utils@^1.12.1: 1707 - version "1.12.1" 1708 - resolved "https://registry.yarnpkg.com/enzyme-adapter-utils/-/enzyme-adapter-utils-1.12.1.tgz#e828e0d038e2b1efa4b9619ce896226f85c9dd88" 1709 - integrity sha512-KWiHzSjZaLEoDCOxY8Z1RAbUResbqKN5bZvenPbfKtWorJFVETUw754ebkuCQ3JKm0adx1kF8JaiR+PHPiP47g== 1740 + enzyme-adapter-utils@^1.13.0: 1741 + version "1.13.0" 1742 + resolved "https://registry.yarnpkg.com/enzyme-adapter-utils/-/enzyme-adapter-utils-1.13.0.tgz#01c885dde2114b4690bf741f8dc94cee3060eb78" 1743 + integrity sha512-YuEtfQp76Lj5TG1NvtP2eGJnFKogk/zT70fyYHXK2j3v6CtuHqc8YmgH/vaiBfL8K1SgVVbQXtTcgQZFwzTVyQ== 1710 1744 dependencies: 1711 1745 airbnb-prop-types "^2.15.0" 1712 - function.prototype.name "^1.1.1" 1746 + function.prototype.name "^1.1.2" 1713 1747 object.assign "^4.1.0" 1714 - object.fromentries "^2.0.1" 1748 + object.fromentries "^2.0.2" 1715 1749 prop-types "^15.7.2" 1716 - semver "^5.7.0" 1750 + semver "^5.7.1" 1717 1751 1718 - enzyme-shallow-equal@^1.0.0: 1719 - version "1.0.0" 1720 - resolved "https://registry.yarnpkg.com/enzyme-shallow-equal/-/enzyme-shallow-equal-1.0.0.tgz#d8e4603495e6ea279038eef05a4bf4887b55dc69" 1721 - integrity sha512-VUf+q5o1EIv2ZaloNQQtWCJM9gpeux6vudGVH6vLmfPXFLRuxl5+Aq3U260wof9nn0b0i+P5OEUXm1vnxkRpXQ== 1752 + enzyme-shallow-equal@^1.0.1: 1753 + version "1.0.1" 1754 + resolved "https://registry.yarnpkg.com/enzyme-shallow-equal/-/enzyme-shallow-equal-1.0.1.tgz#7afe03db3801c9b76de8440694096412a8d9d49e" 1755 + integrity sha512-hGA3i1so8OrYOZSM9whlkNmVHOicJpsjgTzC+wn2JMJXhq1oO4kA4bJ5MsfzSIcC71aLDKzJ6gZpIxrqt3QTAQ== 1722 1756 dependencies: 1723 1757 has "^1.0.3" 1724 - object-is "^1.0.1" 1758 + object-is "^1.0.2" 1725 1759 1726 1760 enzyme-to-json@^3.4.3: 1727 1761 version "3.4.3" ··· 1730 1764 dependencies: 1731 1765 lodash "^4.17.15" 1732 1766 1733 - enzyme@^3.10.0: 1734 - version "3.10.0" 1735 - resolved "https://registry.yarnpkg.com/enzyme/-/enzyme-3.10.0.tgz#7218e347c4a7746e133f8e964aada4a3523452f6" 1736 - integrity sha512-p2yy9Y7t/PFbPoTvrWde7JIYB2ZyGC+NgTNbVEGvZ5/EyoYSr9aG/2rSbVvyNvMHEhw9/dmGUJHWtfQIEiX9pg== 1767 + enzyme@^3.11.0: 1768 + version "3.11.0" 1769 + resolved "https://registry.yarnpkg.com/enzyme/-/enzyme-3.11.0.tgz#71d680c580fe9349f6f5ac6c775bc3e6b7a79c28" 1770 + integrity sha512-Dw8/Gs4vRjxY6/6i9wU0V+utmQO9kvh9XLnz3LIudviOnVYDEe2ec+0k+NQoMamn1VrjKgCUOWj5jG/5M5M0Qw== 1737 1771 dependencies: 1738 - array.prototype.flat "^1.2.1" 1739 - cheerio "^1.0.0-rc.2" 1740 - function.prototype.name "^1.1.0" 1772 + array.prototype.flat "^1.2.3" 1773 + cheerio "^1.0.0-rc.3" 1774 + enzyme-shallow-equal "^1.0.1" 1775 + function.prototype.name "^1.1.2" 1741 1776 has "^1.0.3" 1742 - html-element-map "^1.0.0" 1743 - is-boolean-object "^1.0.0" 1744 - is-callable "^1.1.4" 1745 - is-number-object "^1.0.3" 1746 - is-regex "^1.0.4" 1747 - is-string "^1.0.4" 1777 + html-element-map "^1.2.0" 1778 + is-boolean-object "^1.0.1" 1779 + is-callable "^1.1.5" 1780 + is-number-object "^1.0.4" 1781 + is-regex "^1.0.5" 1782 + is-string "^1.0.5" 1748 1783 is-subset "^0.1.1" 1749 1784 lodash.escape "^4.0.1" 1750 1785 lodash.isequal "^4.5.0" 1751 - object-inspect "^1.6.0" 1752 - object-is "^1.0.1" 1786 + object-inspect "^1.7.0" 1787 + object-is "^1.0.2" 1753 1788 object.assign "^4.1.0" 1754 - object.entries "^1.0.4" 1755 - object.values "^1.0.4" 1756 - raf "^3.4.0" 1789 + object.entries "^1.1.1" 1790 + object.values "^1.1.1" 1791 + raf "^3.4.1" 1757 1792 rst-selector-parser "^2.2.3" 1758 - string.prototype.trim "^1.1.2" 1793 + string.prototype.trim "^1.2.1" 1759 1794 1760 1795 error-ex@^1.2.0, error-ex@^1.3.1: 1761 1796 version "1.3.2" ··· 1764 1799 dependencies: 1765 1800 is-arrayish "^0.2.1" 1766 1801 1767 - es-abstract@^1.10.0, es-abstract@^1.12.0, es-abstract@^1.13.0, es-abstract@^1.15.0, es-abstract@^1.4.3, es-abstract@^1.5.0, es-abstract@^1.5.1, es-abstract@^1.7.0: 1768 - version "1.15.0" 1769 - resolved "https://registry.yarnpkg.com/es-abstract/-/es-abstract-1.15.0.tgz#8884928ec7e40a79e3c9bc812d37d10c8b24cc57" 1770 - integrity sha512-bhkEqWJ2t2lMeaJDuk7okMkJWI/yqgH/EoGwpcvv0XW9RWQsRspI4wt6xuyuvMvvQE3gg/D9HXppgk21w78GyQ== 1802 + es-abstract@^1.13.0, es-abstract@^1.17.0-next.1, es-abstract@^1.4.3, es-abstract@^1.5.1, es-abstract@^1.7.0: 1803 + version "1.17.0" 1804 + resolved "https://registry.yarnpkg.com/es-abstract/-/es-abstract-1.17.0.tgz#f42a517d0036a5591dbb2c463591dc8bb50309b1" 1805 + integrity sha512-yYkE07YF+6SIBmg1MsJ9dlub5L48Ek7X0qz+c/CPCHS9EBXfESorzng4cJQjJW5/pB6vDF41u7F8vUhLVDqIug== 1771 1806 dependencies: 1772 - es-to-primitive "^1.2.0" 1807 + es-to-primitive "^1.2.1" 1773 1808 function-bind "^1.1.1" 1774 1809 has "^1.0.3" 1775 - has-symbols "^1.0.0" 1776 - is-callable "^1.1.4" 1777 - is-regex "^1.0.4" 1778 - object-inspect "^1.6.0" 1810 + has-symbols "^1.0.1" 1811 + is-callable "^1.1.5" 1812 + is-regex "^1.0.5" 1813 + object-inspect "^1.7.0" 1779 1814 object-keys "^1.1.1" 1780 - string.prototype.trimleft "^2.1.0" 1781 - string.prototype.trimright "^2.1.0" 1815 + object.assign "^4.1.0" 1816 + string.prototype.trimleft "^2.1.1" 1817 + string.prototype.trimright "^2.1.1" 1782 1818 1783 - es-to-primitive@^1.2.0: 1784 - version "1.2.0" 1785 - resolved "https://registry.yarnpkg.com/es-to-primitive/-/es-to-primitive-1.2.0.tgz#edf72478033456e8dda8ef09e00ad9650707f377" 1786 - integrity sha512-qZryBOJjV//LaxLTV6UC//WewneB3LcXOL9NP++ozKVXsIIIpm/2c13UDiD9Jp2eThsecw9m3jPqDwTyobcdbg== 1819 + es-to-primitive@^1.2.1: 1820 + version "1.2.1" 1821 + resolved "https://registry.yarnpkg.com/es-to-primitive/-/es-to-primitive-1.2.1.tgz#e55cd4c9cdc188bcefb03b366c736323fc5c898a" 1822 + integrity sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA== 1787 1823 dependencies: 1788 1824 is-callable "^1.1.4" 1789 1825 is-date-object "^1.0.1" ··· 1818 1854 optionalDependencies: 1819 1855 source-map "~0.6.1" 1820 1856 1821 - eslint-config-prettier@^6.5.0: 1822 - version "6.5.0" 1823 - resolved "https://registry.yarnpkg.com/eslint-config-prettier/-/eslint-config-prettier-6.5.0.tgz#aaf9a495e2a816865e541bfdbb73a65cc162b3eb" 1824 - integrity sha512-cjXp8SbO9VFGW/Z7mbTydqS9to8Z58E5aYhj3e1+Hx7lS9s6gL5ILKNpCqZAFOVYRcSkWPFYljHrEh8QFEK5EQ== 1857 + eslint-config-prettier@^6.9.0: 1858 + version "6.9.0" 1859 + resolved "https://registry.yarnpkg.com/eslint-config-prettier/-/eslint-config-prettier-6.9.0.tgz#430d24822e82f7deb1e22a435bfa3999fae4ad64" 1860 + integrity sha512-k4E14HBtcLv0uqThaI6I/n1LEqROp8XaPu6SO9Z32u5NlGRC07Enu1Bh2KEFw4FNHbekH8yzbIU9kUGxbiGmCA== 1825 1861 dependencies: 1826 1862 get-stdin "^6.0.0" 1827 1863 ··· 1833 1869 debug "^2.6.9" 1834 1870 resolve "^1.5.0" 1835 1871 1836 - eslint-module-utils@^2.4.0: 1837 - version "2.4.0" 1838 - resolved "https://registry.yarnpkg.com/eslint-module-utils/-/eslint-module-utils-2.4.0.tgz#8b93499e9b00eab80ccb6614e69f03678e84e09a" 1839 - integrity sha512-14tltLm38Eu3zS+mt0KvILC3q8jyIAH518MlG+HO0p+yK885Lb1UHTY/UgR91eOyGdmxAPb+OLoW4znqIT6Ndw== 1872 + eslint-module-utils@^2.4.1: 1873 + version "2.5.0" 1874 + resolved "https://registry.yarnpkg.com/eslint-module-utils/-/eslint-module-utils-2.5.0.tgz#cdf0b40d623032274ccd2abd7e64c4e524d6e19c" 1875 + integrity sha512-kCo8pZaNz2dsAW7nCUjuVoI11EBXXpIzfNxmaoLhXoRDOnqXLC4iSGVRdZPhOitfbdEfMEfKOiENaK6wDPZEGw== 1840 1876 dependencies: 1841 - debug "^2.6.8" 1877 + debug "^2.6.9" 1842 1878 pkg-dir "^2.0.0" 1843 1879 1844 - eslint-plugin-import@^2.18.2: 1845 - version "2.18.2" 1846 - resolved "https://registry.yarnpkg.com/eslint-plugin-import/-/eslint-plugin-import-2.18.2.tgz#02f1180b90b077b33d447a17a2326ceb400aceb6" 1847 - integrity sha512-5ohpsHAiUBRNaBWAF08izwUGlbrJoJJ+W9/TBwsGoR1MnlgfwMIKrFeSjWbt6moabiXW9xNvtFz+97KHRfI4HQ== 1880 + eslint-plugin-eslint-plugin@^2.1.0: 1881 + version "2.2.0" 1882 + resolved "https://registry.yarnpkg.com/eslint-plugin-eslint-plugin/-/eslint-plugin-eslint-plugin-2.2.0.tgz#6cac90a8085f658e892b155dda130deac54cfa51" 1883 + integrity sha512-X5+NT9a2GuwWyb3sHJdEEe6aD/30Fhi3/9XCmYHe/OSnWKUhmKOxFTfFM1AXZfJXjAoX7811bnoLI3fZr5AX5Q== 1884 + 1885 + eslint-plugin-import@^2.19.1: 1886 + version "2.19.1" 1887 + resolved "https://registry.yarnpkg.com/eslint-plugin-import/-/eslint-plugin-import-2.19.1.tgz#5654e10b7839d064dd0d46cd1b88ec2133a11448" 1888 + integrity sha512-x68131aKoCZlCae7rDXKSAQmbT5DQuManyXo2sK6fJJ0aK5CWAkv6A6HJZGgqC8IhjQxYPgo6/IY4Oz8AFsbBw== 1848 1889 dependencies: 1849 1890 array-includes "^3.0.3" 1891 + array.prototype.flat "^1.2.1" 1850 1892 contains-path "^0.1.0" 1851 1893 debug "^2.6.9" 1852 1894 doctrine "1.5.0" 1853 1895 eslint-import-resolver-node "^0.3.2" 1854 - eslint-module-utils "^2.4.0" 1896 + eslint-module-utils "^2.4.1" 1855 1897 has "^1.0.3" 1856 1898 minimatch "^3.0.4" 1857 1899 object.values "^1.1.0" 1858 1900 read-pkg-up "^2.0.0" 1859 - resolve "^1.11.0" 1901 + resolve "^1.12.0" 1860 1902 1861 - eslint-plugin-react-hooks@^2.2.0: 1862 - version "2.2.0" 1863 - resolved "https://registry.yarnpkg.com/eslint-plugin-react-hooks/-/eslint-plugin-react-hooks-2.2.0.tgz#078264e9e388da6929ace09d6abe92c85963aff4" 1864 - integrity sha512-jSlnBjV2cmyIeL555H/FbvuSbQ1AtpHjLMHuPrQnt1eVA6lX8yufdygh7AArI2m8ct7ChHGx2uOaCuxq2MUn6g== 1903 + eslint-plugin-react-hooks@^2.3.0: 1904 + version "2.3.0" 1905 + resolved "https://registry.yarnpkg.com/eslint-plugin-react-hooks/-/eslint-plugin-react-hooks-2.3.0.tgz#53e073961f1f5ccf8dd19558036c1fac8c29d99a" 1906 + integrity sha512-gLKCa52G4ee7uXzdLiorca7JIQZPPXRAQDXV83J4bUEeUuc5pIEyZYAZ45Xnxe5IuupxEqHS+hUhSLIimK1EMw== 1865 1907 1866 - eslint-plugin-react@^7.16.0: 1867 - version "7.16.0" 1868 - resolved "https://registry.yarnpkg.com/eslint-plugin-react/-/eslint-plugin-react-7.16.0.tgz#9928e4f3e2122ed3ba6a5b56d0303ba3e41d8c09" 1869 - integrity sha512-GacBAATewhhptbK3/vTP09CbFrgUJmBSaaRcWdbQLFvUZy9yVcQxigBNHGPU/KE2AyHpzj3AWXpxoMTsIDiHug== 1908 + eslint-plugin-react@^7.17.0: 1909 + version "7.17.0" 1910 + resolved "https://registry.yarnpkg.com/eslint-plugin-react/-/eslint-plugin-react-7.17.0.tgz#a31b3e134b76046abe3cd278e7482bd35a1d12d7" 1911 + integrity sha512-ODB7yg6lxhBVMeiH1c7E95FLD4E/TwmFjltiU+ethv7KPdCwgiFuOZg9zNRHyufStTDLl/dEFqI2Q1VPmCd78A== 1870 1912 dependencies: 1871 1913 array-includes "^3.0.3" 1872 1914 doctrine "^2.1.0" 1915 + eslint-plugin-eslint-plugin "^2.1.0" 1873 1916 has "^1.0.3" 1874 - jsx-ast-utils "^2.2.1" 1917 + jsx-ast-utils "^2.2.3" 1875 1918 object.entries "^1.1.0" 1876 - object.fromentries "^2.0.0" 1919 + object.fromentries "^2.0.1" 1877 1920 object.values "^1.1.0" 1878 1921 prop-types "^15.7.2" 1879 - resolve "^1.12.0" 1922 + resolve "^1.13.1" 1880 1923 1881 1924 eslint-scope@^5.0.0: 1882 1925 version "5.0.0" ··· 1886 1929 esrecurse "^4.1.0" 1887 1930 estraverse "^4.1.1" 1888 1931 1889 - eslint-utils@^1.4.2, eslint-utils@^1.4.3: 1932 + eslint-utils@^1.4.3: 1890 1933 version "1.4.3" 1891 1934 resolved "https://registry.yarnpkg.com/eslint-utils/-/eslint-utils-1.4.3.tgz#74fec7c54d0776b6f67e0251040b5806564e981f" 1892 1935 integrity sha512-fbBN5W2xdY45KulGXmLHZ3c3FHfVYmKg0IrAKGOkT/464PQsx2UeIzfz1RmEci+KLm1bBaAzZAh8+/E+XAeZ8Q== ··· 1898 1941 resolved "https://registry.yarnpkg.com/eslint-visitor-keys/-/eslint-visitor-keys-1.1.0.tgz#e2a82cea84ff246ad6fb57f9bde5b46621459ec2" 1899 1942 integrity sha512-8y9YjtM1JBJU/A9Kc+SbaOV4y29sSWckBwMHa+FGtVj5gN/sbnKDf6xJUl+8g7FAij9LVaP8C24DUiH/f/2Z9A== 1900 1943 1901 - eslint@^6.6.0: 1902 - version "6.6.0" 1903 - resolved "https://registry.yarnpkg.com/eslint/-/eslint-6.6.0.tgz#4a01a2fb48d32aacef5530ee9c5a78f11a8afd04" 1904 - integrity sha512-PpEBq7b6qY/qrOmpYQ/jTMDYfuQMELR4g4WI1M/NaSDDD/bdcMb+dj4Hgks7p41kW2caXsPsEZAEAyAgjVVC0g== 1944 + eslint@^6.8.0: 1945 + version "6.8.0" 1946 + resolved "https://registry.yarnpkg.com/eslint/-/eslint-6.8.0.tgz#62262d6729739f9275723824302fb227c8c93ffb" 1947 + integrity sha512-K+Iayyo2LtyYhDSYwz5D5QdWw0hCacNzyq1Y821Xna2xSJj7cijoLLYmLxTQgcgZ9mC61nryMy9S7GRbYpI5Ig== 1905 1948 dependencies: 1906 1949 "@babel/code-frame" "^7.0.0" 1907 1950 ajv "^6.10.0" ··· 1918 1961 file-entry-cache "^5.0.1" 1919 1962 functional-red-black-tree "^1.0.1" 1920 1963 glob-parent "^5.0.0" 1921 - globals "^11.7.0" 1964 + globals "^12.1.0" 1922 1965 ignore "^4.0.6" 1923 1966 import-fresh "^3.0.0" 1924 1967 imurmurhash "^0.1.4" ··· 1931 1974 minimatch "^3.0.4" 1932 1975 mkdirp "^0.5.1" 1933 1976 natural-compare "^1.4.0" 1934 - optionator "^0.8.2" 1977 + optionator "^0.8.3" 1935 1978 progress "^2.0.0" 1936 1979 regexpp "^2.0.1" 1937 1980 semver "^6.1.2" ··· 2127 2170 resolved "https://registry.yarnpkg.com/fast-json-stable-stringify/-/fast-json-stable-stringify-2.0.0.tgz#d5142c0caee6b1189f87d3a76111064f86c8bbf2" 2128 2171 integrity sha1-1RQsDK7msRifh9OnYREGT4bIu/I= 2129 2172 2130 - fast-levenshtein@~2.0.4: 2173 + fast-levenshtein@~2.0.6: 2131 2174 version "2.0.6" 2132 2175 resolved "https://registry.yarnpkg.com/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz#3d8a5c66883a16a30ca8643e851f19baa7797917" 2133 2176 integrity sha1-PYpcZog6FqMMqGQ+hR8Zuqd5eRc= ··· 2297 2340 resolved "https://registry.yarnpkg.com/function-bind/-/function-bind-1.1.1.tgz#a56899d3ea3c9bab874bb9773b7c5ede92f4895d" 2298 2341 integrity sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A== 2299 2342 2300 - function.prototype.name@^1.1.0, function.prototype.name@^1.1.1: 2301 - version "1.1.1" 2302 - resolved "https://registry.yarnpkg.com/function.prototype.name/-/function.prototype.name-1.1.1.tgz#6d252350803085abc2ad423d4fe3be2f9cbda392" 2303 - integrity sha512-e1NzkiJuw6xqVH7YSdiW/qDHebcmMhPNe6w+4ZYYEg0VA+LaLzx37RimbPLuonHhYGFGPx1ME2nSi74JiaCr/Q== 2343 + function.prototype.name@^1.1.1, function.prototype.name@^1.1.2: 2344 + version "1.1.2" 2345 + resolved "https://registry.yarnpkg.com/function.prototype.name/-/function.prototype.name-1.1.2.tgz#5cdf79d7c05db401591dfde83e3b70c5123e9a45" 2346 + integrity sha512-C8A+LlHBJjB2AdcRPorc5JvJ5VUoWlXdEHLOJdCI7kjHEtGTpHQUiqMvCIKUwIsGwZX2jZJy761AXsn356bJQg== 2304 2347 dependencies: 2305 2348 define-properties "^1.1.3" 2306 - function-bind "^1.1.1" 2307 - functions-have-names "^1.1.1" 2308 - is-callable "^1.1.4" 2349 + es-abstract "^1.17.0-next.1" 2350 + functions-have-names "^1.2.0" 2309 2351 2310 2352 functional-red-black-tree@^1.0.1: 2311 2353 version "1.0.1" 2312 2354 resolved "https://registry.yarnpkg.com/functional-red-black-tree/-/functional-red-black-tree-1.0.1.tgz#1b0ab3bd553b2a0d6399d29c0e3ea0b252078327" 2313 2355 integrity sha1-GwqzvVU7Kg1jmdKcDj6gslIHgyc= 2314 2356 2315 - functions-have-names@^1.1.1: 2316 - version "1.1.1" 2317 - resolved "https://registry.yarnpkg.com/functions-have-names/-/functions-have-names-1.1.1.tgz#79d35927f07b8e7103d819fed475b64ccf7225ea" 2318 - integrity sha512-U0kNHUoxwPNPWOJaMG7Z00d4a/qZVrFtzWJRaK8V9goaVOCXBSQSJpt3MYGNtkScKEBKovxLjnNdC9MlXwo5Pw== 2357 + functions-have-names@^1.2.0: 2358 + version "1.2.0" 2359 + resolved "https://registry.yarnpkg.com/functions-have-names/-/functions-have-names-1.2.0.tgz#83da7583e4ea0c9ac5ff530f73394b033e0bf77d" 2360 + integrity sha512-zKXyzksTeaCSw5wIX79iCA40YAa6CJMJgNg9wdkU/ERBrIdPSimPICYiLp65lRbSBqtiHql/HZfS2DyI/AH6tQ== 2319 2361 2320 2362 gauge@~2.7.3: 2321 2363 version "2.7.4" ··· 2384 2426 dependencies: 2385 2427 is-glob "^4.0.1" 2386 2428 2387 - glob@^7.1.1, glob@^7.1.2, glob@^7.1.3, glob@^7.1.4: 2388 - version "7.1.4" 2389 - resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.4.tgz#aa608a2f6c577ad357e1ae5a5c26d9a8d1969255" 2390 - integrity sha512-hkLPepehmnKk41pUGm3sYxoFs/umurYfYJCerbXEyFIWcAzvpipAgVkBqqT9RBKMGjnq6kMuyYwha6csxbiM1A== 2429 + glob@^7.1.1, glob@^7.1.2, glob@^7.1.3, glob@^7.1.6: 2430 + version "7.1.6" 2431 + resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.6.tgz#141f33b81a7c2492e125594307480c46679278a6" 2432 + integrity sha512-LwaxwyZ72Lk7vZINtNNrywX0ZuLyStrdDtabefZKAY5ZGJhVtgdznluResxNmPitE0SAO+O26sWTHeKSI2wMBA== 2391 2433 dependencies: 2392 2434 fs.realpath "^1.0.0" 2393 2435 inflight "^1.0.4" ··· 2396 2438 once "^1.3.0" 2397 2439 path-is-absolute "^1.0.0" 2398 2440 2399 - globals@^11.1.0, globals@^11.7.0: 2441 + globals@^11.1.0: 2400 2442 version "11.12.0" 2401 2443 resolved "https://registry.yarnpkg.com/globals/-/globals-11.12.0.tgz#ab8795338868a0babd8525758018c2a7eb95c42e" 2402 2444 integrity sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA== 2445 + 2446 + globals@^12.1.0: 2447 + version "12.3.0" 2448 + resolved "https://registry.yarnpkg.com/globals/-/globals-12.3.0.tgz#1e564ee5c4dded2ab098b0f88f24702a3c56be13" 2449 + integrity sha512-wAfjdLgFsPZsklLJvOBUBmzYE8/CwhEqSBEMRXA3qxIiNtyqvjYurAtIfDh6chlEPUfmTY3MnZh5Hfh4q0UlIw== 2450 + dependencies: 2451 + type-fest "^0.8.1" 2403 2452 2404 2453 globby@^10.0.0: 2405 2454 version "10.0.1" ··· 2473 2522 resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-3.0.0.tgz#b5d454dc2199ae225699f3467e5a07f3b955bafd" 2474 2523 integrity sha1-tdRU3CGZriJWmfNGfloH87lVuv0= 2475 2524 2476 - has-symbols@^1.0.0: 2477 - version "1.0.0" 2478 - resolved "https://registry.yarnpkg.com/has-symbols/-/has-symbols-1.0.0.tgz#ba1a8f1af2a0fc39650f5c850367704122063b44" 2479 - integrity sha1-uhqPGvKg/DllD1yFA2dwQSIGO0Q= 2525 + has-flag@^4.0.0: 2526 + version "4.0.0" 2527 + resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-4.0.0.tgz#944771fd9c81c81265c4d6941860da06bb59479b" 2528 + integrity sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ== 2529 + 2530 + has-symbols@^1.0.0, has-symbols@^1.0.1: 2531 + version "1.0.1" 2532 + resolved "https://registry.yarnpkg.com/has-symbols/-/has-symbols-1.0.1.tgz#9f5214758a44196c406d9bd76cebf81ec2dd31e8" 2533 + integrity sha512-PLcsoqu++dmEIZB+6totNFKq/7Do+Z0u4oT0zKOJNl3lYK6vGwwu2hjHs+68OEZbTjiUE9bgOABXbP/GvrS0Kg== 2480 2534 2481 2535 has-unicode@^2.0.0: 2482 2536 version "2.0.1" ··· 2514 2568 is-number "^3.0.0" 2515 2569 kind-of "^4.0.0" 2516 2570 2517 - has@^1.0.1, has@^1.0.3: 2571 + has@^1.0.3: 2518 2572 version "1.0.3" 2519 2573 resolved "https://registry.yarnpkg.com/has/-/has-1.0.3.tgz#722d7cbfc1f6aa8241f16dd814e011e1f41e8796" 2520 2574 integrity sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw== ··· 2526 2580 resolved "https://registry.yarnpkg.com/hosted-git-info/-/hosted-git-info-2.7.1.tgz#97f236977bd6e125408930ff6de3eec6281ec047" 2527 2581 integrity sha512-7T/BxH19zbcCTa8XkMlbK5lTo1WtgkFi3GvdWEyNuc4Vex7/9Dqbnpsf4JMydcfj9HCg4zUWFTL3Za6lapg5/w== 2528 2582 2529 - html-element-map@^1.0.0: 2530 - version "1.0.1" 2531 - resolved "https://registry.yarnpkg.com/html-element-map/-/html-element-map-1.0.1.tgz#3c4fcb4874ebddfe4283b51c8994e7713782b592" 2532 - integrity sha512-BZSfdEm6n706/lBfXKWa4frZRZcT5k1cOusw95ijZsHlI+GdgY0v95h6IzO3iIDf2ROwq570YTwqNPqHcNMozw== 2583 + html-element-map@^1.2.0: 2584 + version "1.2.0" 2585 + resolved "https://registry.yarnpkg.com/html-element-map/-/html-element-map-1.2.0.tgz#dfbb09efe882806af63d990cf6db37993f099f22" 2586 + integrity sha512-0uXq8HsuG1v2TmQ8QkIhzbrqeskE4kn52Q18QJ9iAA/SnHoEKXWiUxHQtclRsCFWEUD2So34X+0+pZZu862nnw== 2533 2587 dependencies: 2534 2588 array-filter "^1.0.0" 2535 2589 ··· 2569 2623 agent-base "^4.1.0" 2570 2624 debug "^3.1.0" 2571 2625 2572 - husky@^3.0.9: 2573 - version "3.0.9" 2574 - resolved "https://registry.yarnpkg.com/husky/-/husky-3.0.9.tgz#a2c3e9829bfd6b4957509a9500d2eef5dbfc8044" 2575 - integrity sha512-Yolhupm7le2/MqC1VYLk/cNmYxsSsqKkTyBhzQHhPK1jFnC89mmmNVuGtLNabjDI6Aj8UNIr0KpRNuBkiC4+sg== 2626 + husky@^4.0.6: 2627 + version "4.0.6" 2628 + resolved "https://registry.yarnpkg.com/husky/-/husky-4.0.6.tgz#b64206220ab940f091cb5f1c75672453eb39fc9f" 2629 + integrity sha512-OxsXXQXu/FYauV5GGhNpyN1yhQPQoDFUJwzHoshYc3wO//gC0PB9YNYLgBxKckfEce0FGEbzb498UecR3jNdZw== 2576 2630 dependencies: 2577 - chalk "^2.4.2" 2631 + chalk "^3.0.0" 2578 2632 ci-info "^2.0.0" 2579 - cosmiconfig "^5.2.1" 2580 - execa "^1.0.0" 2633 + cosmiconfig "^6.0.0" 2581 2634 get-stdin "^7.0.0" 2582 2635 opencollective-postinstall "^2.0.2" 2583 2636 pkg-dir "^4.2.0" 2584 2637 please-upgrade-node "^3.2.0" 2585 - read-pkg "^5.2.0" 2586 - run-node "^1.0.0" 2587 2638 slash "^3.0.0" 2639 + which-pm-runs "^1.0.0" 2588 2640 2589 2641 iconv-lite@0.4.24, iconv-lite@^0.4.24, iconv-lite@^0.4.4: 2590 2642 version "0.4.24" ··· 2618 2670 caller-path "^2.0.0" 2619 2671 resolve-from "^3.0.0" 2620 2672 2621 - import-fresh@^3.0.0: 2622 - version "3.0.0" 2623 - resolved "https://registry.yarnpkg.com/import-fresh/-/import-fresh-3.0.0.tgz#a3d897f420cab0e671236897f75bc14b4885c390" 2624 - integrity sha512-pOnA9tfM3Uwics+SaBLCNyZZZbK+4PTu0OPZtLlMIrv17EdBoC15S9Kn8ckJ9TZTyKb3ywNE5y1yeDxxGA7nTQ== 2673 + import-fresh@^3.0.0, import-fresh@^3.1.0: 2674 + version "3.2.1" 2675 + resolved "https://registry.yarnpkg.com/import-fresh/-/import-fresh-3.2.1.tgz#633ff618506e793af5ac91bf48b72677e15cbe66" 2676 + integrity sha512-6e1q1cnWP2RXD9/keSkxHScg508CdXqXWgWBaETNhyuBFz+kUZlKboh+ISK+bU++DmbHimVBrOz/zzPe0sZ3sQ== 2625 2677 dependencies: 2626 2678 parent-module "^1.0.0" 2627 2679 resolve-from "^4.0.0" ··· 2712 2764 resolved "https://registry.yarnpkg.com/is-arrayish/-/is-arrayish-0.2.1.tgz#77c99840527aa8ecb1a8ba697b80645a7a926a9d" 2713 2765 integrity sha1-d8mYQFJ6qOyxqLppe4BkWnqSap0= 2714 2766 2715 - is-boolean-object@^1.0.0: 2716 - version "1.0.0" 2717 - resolved "https://registry.yarnpkg.com/is-boolean-object/-/is-boolean-object-1.0.0.tgz#98f8b28030684219a95f375cfbd88ce3405dff93" 2718 - integrity sha1-mPiygDBoQhmpXzdc+9iM40Bd/5M= 2767 + is-boolean-object@^1.0.1: 2768 + version "1.0.1" 2769 + resolved "https://registry.yarnpkg.com/is-boolean-object/-/is-boolean-object-1.0.1.tgz#10edc0900dd127697a92f6f9807c7617d68ac48e" 2770 + integrity sha512-TqZuVwa/sppcrhUCAYkGBk7w0yxfQQnxq28fjkO53tnK9FQXmdwz2JS5+GjsWQ6RByES1K40nI+yDic5c9/aAQ== 2719 2771 2720 2772 is-buffer@^1.1.5: 2721 2773 version "1.1.6" 2722 2774 resolved "https://registry.yarnpkg.com/is-buffer/-/is-buffer-1.1.6.tgz#efaa2ea9daa0d7ab2ea13a97b2b8ad51fefbe8be" 2723 2775 integrity sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w== 2724 2776 2725 - is-callable@^1.1.4: 2726 - version "1.1.4" 2727 - resolved "https://registry.yarnpkg.com/is-callable/-/is-callable-1.1.4.tgz#1e1adf219e1eeb684d691f9d6a05ff0d30a24d75" 2728 - integrity sha512-r5p9sxJjYnArLjObpjA4xu5EKI3CuKHkJXMhT7kwbpUyIFD1n5PMAsoPvWnvtZiNz7LjkYDRZhd7FlI0eMijEA== 2777 + is-callable@^1.1.4, is-callable@^1.1.5: 2778 + version "1.1.5" 2779 + resolved "https://registry.yarnpkg.com/is-callable/-/is-callable-1.1.5.tgz#f7e46b596890456db74e7f6e976cb3273d06faab" 2780 + integrity sha512-ESKv5sMCJB2jnHTWZ3O5itG+O128Hsus4K4Qh1h2/cgn2vbgnLSVqfV46AeJA9D5EeeLa9w81KUXMtn34zhX+Q== 2729 2781 2730 2782 is-ci@^2.0.0: 2731 2783 version "2.0.0" ··· 2827 2879 resolved "https://registry.yarnpkg.com/is-module/-/is-module-1.0.0.tgz#3258fb69f78c14d5b815d664336b4cffb6441591" 2828 2880 integrity sha1-Mlj7afeMFNW4FdZkM2tM/7ZEFZE= 2829 2881 2830 - is-number-object@^1.0.3: 2831 - version "1.0.3" 2832 - resolved "https://registry.yarnpkg.com/is-number-object/-/is-number-object-1.0.3.tgz#f265ab89a9f445034ef6aff15a8f00b00f551799" 2833 - integrity sha1-8mWrian0RQNO9q/xWo8AsA9VF5k= 2882 + is-number-object@^1.0.4: 2883 + version "1.0.4" 2884 + resolved "https://registry.yarnpkg.com/is-number-object/-/is-number-object-1.0.4.tgz#36ac95e741cf18b283fc1ddf5e83da798e3ec197" 2885 + integrity sha512-zohwelOAur+5uXtk8O3GPQ1eAcu4ZX3UwxQhUlfFFMNpUd83gXgjbhJh6HmB6LUNV/ieOLQuDwJO3dWJosUeMw== 2834 2886 2835 2887 is-number@^3.0.0: 2836 2888 version "3.0.0" ··· 2894 2946 dependencies: 2895 2947 "@types/estree" "0.0.39" 2896 2948 2897 - is-regex@^1.0.4: 2898 - version "1.0.4" 2899 - resolved "https://registry.yarnpkg.com/is-regex/-/is-regex-1.0.4.tgz#5517489b547091b0930e095654ced25ee97e9491" 2900 - integrity sha1-VRdIm1RwkbCTDglWVM7SXul+lJE= 2949 + is-regex@^1.0.4, is-regex@^1.0.5: 2950 + version "1.0.5" 2951 + resolved "https://registry.yarnpkg.com/is-regex/-/is-regex-1.0.5.tgz#39d589a358bf18967f726967120b8fc1aed74eae" 2952 + integrity sha512-vlKW17SNq44owv5AQR3Cq0bQPEb8+kF3UKZ2fiZNOWtztYE5i0CzCZxFDwO58qAOWtxdBRVO/V5Qin1wjCqFYQ== 2901 2953 dependencies: 2902 - has "^1.0.1" 2954 + has "^1.0.3" 2903 2955 2904 2956 is-regexp@^1.0.0: 2905 2957 version "1.0.0" ··· 2916 2968 resolved "https://registry.yarnpkg.com/is-stream/-/is-stream-2.0.0.tgz#bde9c32680d6fae04129d6ac9d921ce7815f78e3" 2917 2969 integrity sha512-XCoy+WlUr7d1+Z8GgSuXmpuUFC9fOhRXglJMx+dwLKTkL44Cjd4W1Z5P+BQZpr+cR93aGP4S/s7Ftw6Nd/kiEw== 2918 2970 2919 - is-string@^1.0.4: 2920 - version "1.0.4" 2921 - resolved "https://registry.yarnpkg.com/is-string/-/is-string-1.0.4.tgz#cc3a9b69857d621e963725a24caeec873b826e64" 2922 - integrity sha1-zDqbaYV9Yh6WNyWiTK7shzuCbmQ= 2971 + is-string@^1.0.5: 2972 + version "1.0.5" 2973 + resolved "https://registry.yarnpkg.com/is-string/-/is-string-1.0.5.tgz#40493ed198ef3ff477b8c7f92f644ec82a5cd3a6" 2974 + integrity sha512-buY6VNRjhQMiF1qWDouloZlQbRhDPCebwxSjxMjxgemYT46YMd2NR0/H+fBhEfWX4A/w9TBJ+ol+okqJKFE6vQ== 2923 2975 2924 2976 is-subset@^0.1.1: 2925 2977 version "0.1.1" ··· 3076 3128 pretty-format "^24.9.0" 3077 3129 realpath-native "^1.1.0" 3078 3130 3079 - jest-diff@^24.9.0: 3131 + jest-diff@^24.3.0, jest-diff@^24.9.0: 3080 3132 version "24.9.0" 3081 3133 resolved "https://registry.yarnpkg.com/jest-diff/-/jest-diff-24.9.0.tgz#931b7d0d5778a1baf7452cb816e325e3724055da" 3082 3134 integrity sha512-qMfrTs8AdJE2iqrTp0hzh7kTd2PQWrsFyj9tORoKmu32xjPjeE4NyjVRDz8ybYwqS2ik8N4hsIpiVTyFeo2lBQ== ··· 3493 3545 json-schema "0.2.3" 3494 3546 verror "1.10.0" 3495 3547 3496 - jsx-ast-utils@^2.2.1: 3497 - version "2.2.1" 3498 - resolved "https://registry.yarnpkg.com/jsx-ast-utils/-/jsx-ast-utils-2.2.1.tgz#4d4973ebf8b9d2837ee91a8208cc66f3a2776cfb" 3499 - integrity sha512-v3FxCcAf20DayI+uxnCuw795+oOIkVu6EnJ1+kSzhqqTZHNkTZ7B66ZgLp4oLJ/gbA64cI0B7WRoHZMSRdyVRQ== 3548 + jsx-ast-utils@^2.2.3: 3549 + version "2.2.3" 3550 + resolved "https://registry.yarnpkg.com/jsx-ast-utils/-/jsx-ast-utils-2.2.3.tgz#8a9364e402448a3ce7f14d357738310d9248054f" 3551 + integrity sha512-EdIHFMm+1BPynpKOpdPqiOsvnIrInRGJD7bzPZdPkjitQEqpdpUuFpq4T0npZFKTiB3RhWFdGN+oqOJIdhDhQA== 3500 3552 dependencies: 3501 3553 array-includes "^3.0.3" 3502 3554 object.assign "^4.1.0" ··· 3553 3605 resolved "https://registry.yarnpkg.com/lines-and-columns/-/lines-and-columns-1.1.6.tgz#1c00c743b433cd0a4e80758f7b64a57440d9ff00" 3554 3606 integrity sha1-HADHQ7QzzQpOgHWPe2SldEDZ/wA= 3555 3607 3556 - lint-staged@^9.4.2: 3557 - version "9.4.2" 3558 - resolved "https://registry.yarnpkg.com/lint-staged/-/lint-staged-9.4.2.tgz#14cb577a9512f520691f8b5aefce6a8f7ead6c04" 3559 - integrity sha512-OFyGokJSWTn2M6vngnlLXjaHhi8n83VIZZ5/1Z26SULRUWgR3ITWpAEQC9Pnm3MC/EpCxlwts/mQWDHNji2+zA== 3608 + lint-staged@^9.5.0: 3609 + version "9.5.0" 3610 + resolved "https://registry.yarnpkg.com/lint-staged/-/lint-staged-9.5.0.tgz#290ec605252af646d9b74d73a0fa118362b05a33" 3611 + integrity sha512-nawMob9cb/G1J98nb8v3VC/E8rcX1rryUYXVZ69aT9kde6YWX+uvNOEHY5yf2gcWcTJGiD0kqXmCnS3oD75GIA== 3560 3612 dependencies: 3561 3613 chalk "^2.4.2" 3562 3614 commander "^2.20.0" ··· 4014 4066 abbrev "1" 4015 4067 osenv "^0.1.4" 4016 4068 4017 - normalize-package-data@^2.3.2, normalize-package-data@^2.5.0: 4069 + normalize-package-data@^2.3.2: 4018 4070 version "2.5.0" 4019 4071 resolved "https://registry.yarnpkg.com/normalize-package-data/-/normalize-package-data-2.5.0.tgz#e66db1838b200c1dfc233225d12cb36520e234a8" 4020 4072 integrity sha512-/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA== ··· 4124 4176 define-property "^0.2.5" 4125 4177 kind-of "^3.0.3" 4126 4178 4127 - object-inspect@^1.6.0: 4128 - version "1.6.0" 4129 - resolved "https://registry.yarnpkg.com/object-inspect/-/object-inspect-1.6.0.tgz#c70b6cbf72f274aab4c34c0c82f5167bf82cf15b" 4130 - integrity sha512-GJzfBZ6DgDAmnuaM3104jR4s1Myxr3Y3zfIyN4z3UdqN69oSRacNK8UhnobDdC+7J2AHCjGwxQubNJfE70SXXQ== 4179 + object-inspect@^1.7.0: 4180 + version "1.7.0" 4181 + resolved "https://registry.yarnpkg.com/object-inspect/-/object-inspect-1.7.0.tgz#f4f6bd181ad77f006b5ece60bd0b6f398ff74a67" 4182 + integrity sha512-a7pEHdh1xKIAgTySUGgLMx/xwDZskN1Ud6egYYN3EdRW4ZMPNEDUTF+hwy2LUC+Bl+SyLXANnwz/jyh/qutKUw== 4131 4183 4132 - object-is@^1.0.1: 4133 - version "1.0.1" 4134 - resolved "https://registry.yarnpkg.com/object-is/-/object-is-1.0.1.tgz#0aa60ec9989a0b3ed795cf4d06f62cf1ad6539b6" 4135 - integrity sha1-CqYOyZiaCz7Xlc9NBvYs8a1lObY= 4184 + object-is@^1.0.1, object-is@^1.0.2: 4185 + version "1.0.2" 4186 + resolved "https://registry.yarnpkg.com/object-is/-/object-is-1.0.2.tgz#6b80eb84fe451498f65007982f035a5b445edec4" 4187 + integrity sha512-Epah+btZd5wrrfjkJZq1AOB9O6OxUQto45hzFd7lXGrpHPGE0W1k+426yrZV+k6NJOzLNNW/nVsmZdIWsAqoOQ== 4136 4188 4137 4189 object-keys@^1.0.11, object-keys@^1.0.12, object-keys@^1.1.1: 4138 4190 version "1.1.1" ··· 4156 4208 has-symbols "^1.0.0" 4157 4209 object-keys "^1.0.11" 4158 4210 4159 - object.entries@^1.0.4, object.entries@^1.1.0: 4160 - version "1.1.0" 4161 - resolved "https://registry.yarnpkg.com/object.entries/-/object.entries-1.1.0.tgz#2024fc6d6ba246aee38bdb0ffd5cfbcf371b7519" 4162 - integrity sha512-l+H6EQ8qzGRxbkHOd5I/aHRhHDKoQXQ8g0BYt4uSweQU1/J6dZUOyWh9a2Vky35YCKjzmgxOzta2hH6kf9HuXA== 4211 + object.entries@^1.1.0, object.entries@^1.1.1: 4212 + version "1.1.1" 4213 + resolved "https://registry.yarnpkg.com/object.entries/-/object.entries-1.1.1.tgz#ee1cf04153de02bb093fec33683900f57ce5399b" 4214 + integrity sha512-ilqR7BgdyZetJutmDPfXCDffGa0/Yzl2ivVNpbx/g4UeWrCdRnFDUBrKJGLhGieRHDATnyZXWBeCb29k9CJysQ== 4163 4215 dependencies: 4164 4216 define-properties "^1.1.3" 4165 - es-abstract "^1.12.0" 4217 + es-abstract "^1.17.0-next.1" 4166 4218 function-bind "^1.1.1" 4167 4219 has "^1.0.3" 4168 4220 4169 - object.fromentries@^2.0.0, object.fromentries@^2.0.1: 4170 - version "2.0.1" 4171 - resolved "https://registry.yarnpkg.com/object.fromentries/-/object.fromentries-2.0.1.tgz#050f077855c7af8ae6649f45c80b16ee2d31e704" 4172 - integrity sha512-PUQv8Hbg3j2QX0IQYv3iAGCbGcu4yY4KQ92/dhA4sFSixBmSmp13UpDLs6jGK8rBtbmhNNIK99LD2k293jpiGA== 4221 + object.fromentries@^2.0.1, object.fromentries@^2.0.2: 4222 + version "2.0.2" 4223 + resolved "https://registry.yarnpkg.com/object.fromentries/-/object.fromentries-2.0.2.tgz#4a09c9b9bb3843dd0f89acdb517a794d4f355ac9" 4224 + integrity sha512-r3ZiBH7MQppDJVLx6fhD618GKNG40CZYH9wgwdhKxBDDbQgjeWGGd4AtkZad84d291YxvWe7bJGuE65Anh0dxQ== 4173 4225 dependencies: 4174 4226 define-properties "^1.1.3" 4175 - es-abstract "^1.15.0" 4227 + es-abstract "^1.17.0-next.1" 4176 4228 function-bind "^1.1.1" 4177 4229 has "^1.0.3" 4178 4230 ··· 4191 4243 dependencies: 4192 4244 isobject "^3.0.1" 4193 4245 4194 - object.values@^1.0.4, object.values@^1.1.0: 4195 - version "1.1.0" 4196 - resolved "https://registry.yarnpkg.com/object.values/-/object.values-1.1.0.tgz#bf6810ef5da3e5325790eaaa2be213ea84624da9" 4197 - integrity sha512-8mf0nKLAoFX6VlNVdhGj31SVYpaNFtUnuoOXWyFEstsWRgU837AK+JYM0iAxwkSzGRbwn8cbFmgbyxj1j4VbXg== 4246 + object.values@^1.1.0, object.values@^1.1.1: 4247 + version "1.1.1" 4248 + resolved "https://registry.yarnpkg.com/object.values/-/object.values-1.1.1.tgz#68a99ecde356b7e9295a3c5e0ce31dc8c953de5e" 4249 + integrity sha512-WTa54g2K8iu0kmS/us18jEmdv1a4Wi//BZ/DTVYEcH0XhLM5NYdpDHja3gt57VrZLcNAO2WGA+KpWsDBaHt6eA== 4198 4250 dependencies: 4199 4251 define-properties "^1.1.3" 4200 - es-abstract "^1.12.0" 4252 + es-abstract "^1.17.0-next.1" 4201 4253 function-bind "^1.1.1" 4202 4254 has "^1.0.3" 4203 4255 ··· 4235 4287 minimist "~0.0.1" 4236 4288 wordwrap "~0.0.2" 4237 4289 4238 - optionator@^0.8.1, optionator@^0.8.2: 4239 - version "0.8.2" 4240 - resolved "https://registry.yarnpkg.com/optionator/-/optionator-0.8.2.tgz#364c5e409d3f4d6301d6c0b4c05bba50180aeb64" 4241 - integrity sha1-NkxeQJ0/TWMB1sC0wFu6UBgK62Q= 4290 + optionator@^0.8.1, optionator@^0.8.3: 4291 + version "0.8.3" 4292 + resolved "https://registry.yarnpkg.com/optionator/-/optionator-0.8.3.tgz#84fa1d036fe9d3c7e21d99884b601167ec8fb495" 4293 + integrity sha512-+IW9pACdk3XWmmTXG8m3upGUJst5XRGzxMRjXzAuJ1XnIFNvfhjjIuYkDvysnPQ7qzqVzLt78BCruntqRhWQbA== 4242 4294 dependencies: 4243 4295 deep-is "~0.1.3" 4244 - fast-levenshtein "~2.0.4" 4296 + fast-levenshtein "~2.0.6" 4245 4297 levn "~0.3.0" 4246 4298 prelude-ls "~1.1.2" 4247 4299 type-check "~0.3.2" 4248 - wordwrap "~1.0.0" 4300 + word-wrap "~1.2.3" 4249 4301 4250 4302 os-homedir@^1.0.0: 4251 4303 version "1.0.2" ··· 4604 4656 resolved "https://registry.yarnpkg.com/qs/-/qs-6.5.2.tgz#cb3ae806e8740444584ef154ce8ee98d403f3e36" 4605 4657 integrity sha512-N5ZAX4/LxJmF+7wN74pUD6qAh9/wnvdQcjq9TZjevvXzSUo7bfmw91saqMjzGS2xq91/odN2dW/WOl7qQHNDGA== 4606 4658 4607 - raf@^3.4.0: 4659 + raf@^3.4.1: 4608 4660 version "3.4.1" 4609 4661 resolved "https://registry.yarnpkg.com/raf/-/raf-3.4.1.tgz#0742e99a4a6552f445d73e3ee0328af0ff1ede39" 4610 4662 integrity sha512-Sq4CW4QhwOHE8ucn6J34MqtZCeWFP2aQSmrlroYgqAV1PjStIhJXxYuTgUIfkEk7zTLjmIjLmU5q+fbD1NnOJA== ··· 4634 4686 minimist "^1.2.0" 4635 4687 strip-json-comments "~2.0.1" 4636 4688 4637 - react-dom@^16.11.0: 4638 - version "16.11.0" 4639 - resolved "https://registry.yarnpkg.com/react-dom/-/react-dom-16.11.0.tgz#7e7c4a5a85a569d565c2462f5d345da2dd849af5" 4640 - integrity sha512-nrRyIUE1e7j8PaXSPtyRKtz+2y9ubW/ghNgqKFHHAHaeP0fpF5uXR+sq8IMRHC+ZUxw7W9NyCDTBtwWxvkb0iA== 4689 + react-dom@^16.12.0: 4690 + version "16.12.0" 4691 + resolved "https://registry.yarnpkg.com/react-dom/-/react-dom-16.12.0.tgz#0da4b714b8d13c2038c9396b54a92baea633fe11" 4692 + integrity sha512-LMxFfAGrcS3kETtQaCkTKjMiifahaMySFDn71fZUNpPHZQEzmk/GiAeIT8JSOrHB23fnuCOMruL2a8NYlw+8Gw== 4641 4693 dependencies: 4642 4694 loose-envify "^1.1.0" 4643 4695 object-assign "^4.1.1" 4644 4696 prop-types "^15.6.2" 4645 - scheduler "^0.17.0" 4697 + scheduler "^0.18.0" 4646 4698 4647 - react-is@^16.10.2, react-is@^16.11.0, react-is@^16.8.1, react-is@^16.8.4, react-is@^16.8.6, react-is@^16.9.0: 4648 - version "16.11.0" 4649 - resolved "https://registry.yarnpkg.com/react-is/-/react-is-16.11.0.tgz#b85dfecd48ad1ce469ff558a882ca8e8313928fa" 4650 - integrity sha512-gbBVYR2p8mnriqAwWx9LbuUrShnAuSCNnuPGyc7GJrMVQtPDAh8iLpv7FRuMPFb56KkaVZIYSz1PrjI9q0QPCw== 4699 + react-is@^16.12.0, react-is@^16.8.1, react-is@^16.8.4, react-is@^16.8.6, react-is@^16.9.0: 4700 + version "16.12.0" 4701 + resolved "https://registry.yarnpkg.com/react-is/-/react-is-16.12.0.tgz#2cc0fe0fba742d97fd527c42a13bec4eeb06241c" 4702 + integrity sha512-rPCkf/mWBtKc97aLL9/txD8DZdemK0vkA3JMLShjlJB3Pj3s+lpf1KaBzMfQrAmhMQB0n1cU/SUGgKKBCe837Q== 4651 4703 4652 4704 react-ssr-prepass@^1.0.8: 4653 4705 version "1.0.8" ··· 4656 4708 dependencies: 4657 4709 object-is "^1.0.1" 4658 4710 4659 - react-test-renderer@^16.0.0-0, react-test-renderer@^16.11.0: 4660 - version "16.11.0" 4661 - resolved "https://registry.yarnpkg.com/react-test-renderer/-/react-test-renderer-16.11.0.tgz#72574566496462c808ac449b0287a4c0a1a7d8f8" 4662 - integrity sha512-nh9gDl8R4ut+ZNNb2EeKO5VMvTKxwzurbSMuGBoKtjpjbg8JK/u3eVPVNi1h1Ue+eYK9oSzJjb+K3lzLxyA4ag== 4711 + react-test-renderer@^16.0.0-0, react-test-renderer@^16.12.0: 4712 + version "16.12.0" 4713 + resolved "https://registry.yarnpkg.com/react-test-renderer/-/react-test-renderer-16.12.0.tgz#11417ffda579306d4e841a794d32140f3da1b43f" 4714 + integrity sha512-Vj/teSqt2oayaWxkbhQ6gKis+t5JrknXfPVo+aIJ8QwYAqMPH77uptOdrlphyxl8eQI/rtkOYg86i/UWkpFu0w== 4663 4715 dependencies: 4664 4716 object-assign "^4.1.1" 4665 4717 prop-types "^15.6.2" 4666 4718 react-is "^16.8.6" 4667 - scheduler "^0.17.0" 4719 + scheduler "^0.18.0" 4668 4720 4669 4721 react-wonka@^2.0.0: 4670 4722 version "2.0.0" 4671 4723 resolved "https://registry.yarnpkg.com/react-wonka/-/react-wonka-2.0.0.tgz#d62d87c9c93ec3e603ecf1582df3615aadc5c2e9" 4672 4724 integrity sha512-7q0CNBnSltRyzb61joCxKqVntHbRJRhP/WPxEx+zM8l9Yd+0IRevJuPG8iCamgrGphusX5xtEtd4yyX7qvRM1g== 4673 4725 4674 - react@^16.11.0: 4675 - version "16.11.0" 4676 - resolved "https://registry.yarnpkg.com/react/-/react-16.11.0.tgz#d294545fe62299ccee83363599bf904e4a07fdbb" 4677 - integrity sha512-M5Y8yITaLmU0ynd0r1Yvfq98Rmll6q8AxaEe88c8e7LxO8fZ2cNgmFt0aGAS9wzf1Ao32NKXtCl+/tVVtkxq6g== 4726 + react@^16.12.0: 4727 + version "16.12.0" 4728 + resolved "https://registry.yarnpkg.com/react/-/react-16.12.0.tgz#0c0a9c6a142429e3614834d5a778e18aa78a0b83" 4729 + integrity sha512-fglqy3k5E+81pA8s+7K0/T3DBCF0ZDOher1elBFzF7O6arXJgzyu/FW+COxFvAWXJoJN9KIZbT2LXlukwphYTA== 4678 4730 dependencies: 4679 4731 loose-envify "^1.1.0" 4680 4732 object-assign "^4.1.1" ··· 4714 4766 normalize-package-data "^2.3.2" 4715 4767 path-type "^3.0.0" 4716 4768 4717 - read-pkg@^5.2.0: 4718 - version "5.2.0" 4719 - resolved "https://registry.yarnpkg.com/read-pkg/-/read-pkg-5.2.0.tgz#7bf295438ca5a33e56cd30e053b34ee7250c93cc" 4720 - integrity sha512-Ug69mNOpfvKDAc2Q8DRpMjjzdtrnv9HcSMX+4VsZxD1aZ6ZzrIE7rlzXBtWTyhULSMKg076AW6WR5iZpD0JiOg== 4721 - dependencies: 4722 - "@types/normalize-package-data" "^2.4.0" 4723 - normalize-package-data "^2.5.0" 4724 - parse-json "^5.0.0" 4725 - type-fest "^0.6.0" 4726 - 4727 4769 readable-stream@^2.0.6: 4728 4770 version "2.3.6" 4729 4771 resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.3.6.tgz#b11c27d88b8ff1fbe070643cf94b0c79ae1b0aaf" ··· 4788 4830 resolved "https://registry.yarnpkg.com/regexpp/-/regexpp-2.0.1.tgz#8d19d31cf632482b589049f8281f93dbcba4d07f" 4789 4831 integrity sha512-lv0M6+TkDVniA3aD1Eg0DVpfU/booSu7Eev3TDO/mZKHBfVjgCGTV4t4buppESEYDtkArYFOxTJWv6S5C+iaNw== 4790 4832 4833 + regexpp@^3.0.0: 4834 + version "3.0.0" 4835 + resolved "https://registry.yarnpkg.com/regexpp/-/regexpp-3.0.0.tgz#dd63982ee3300e67b41c1956f850aa680d9d330e" 4836 + integrity sha512-Z+hNr7RAVWxznLPuA7DIh8UNX1j9CDrUQxskw9IrBE1Dxue2lyXT+shqEIeLUjrokxIP8CMy1WkjgG3rTsd5/g== 4837 + 4791 4838 regexpu-core@^4.5.4: 4792 4839 version "4.5.4" 4793 4840 resolved "https://registry.yarnpkg.com/regexpu-core/-/regexpu-core-4.5.4.tgz#080d9d02289aa87fe1667a4f5136bc98a6aebaae" ··· 4913 4960 dependencies: 4914 4961 path-parse "^1.0.6" 4915 4962 4916 - resolve@1.x, resolve@^1.10.0, resolve@^1.11.0, resolve@^1.11.1, resolve@^1.12.0, resolve@^1.3.2, resolve@^1.5.0: 4963 + resolve@1.x, resolve@^1.10.0, resolve@^1.11.0, resolve@^1.11.1, resolve@^1.12.0, resolve@^1.13.1, resolve@^1.3.2, resolve@^1.5.0: 4917 4964 version "1.14.2" 4918 4965 resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.14.2.tgz#dbf31d0fa98b1f29aa5169783b9c290cb865fea2" 4919 4966 integrity sha512-EjlOBLBO1kxsUxsKjLt7TAECyKW6fOh1VRkykQkKGzcBbjjPIxBqGh0jf7GJ3k/f5mxMqW3htMD3WdTUVtW8HQ== ··· 5041 5088 dependencies: 5042 5089 is-promise "^2.1.0" 5043 5090 5044 - run-node@^1.0.0: 5045 - version "1.0.0" 5046 - resolved "https://registry.yarnpkg.com/run-node/-/run-node-1.0.0.tgz#46b50b946a2aa2d4947ae1d886e9856fd9cabe5e" 5047 - integrity sha512-kc120TBlQ3mih1LSzdAJXo4xn/GWS2ec0l3S+syHDXP9uRr0JAT8Qd3mdMuyjqCzeZktgP3try92cEgf9Nks8A== 5048 - 5049 5091 run-parallel@^1.1.9: 5050 5092 version "1.1.9" 5051 5093 resolved "https://registry.yarnpkg.com/run-parallel/-/run-parallel-1.1.9.tgz#c9dd3a7cf9f4b2c4b6244e173a6ed866e61dd679" ··· 5095 5137 resolved "https://registry.yarnpkg.com/sax/-/sax-1.2.4.tgz#2816234e2378bddc4e5354fab5caa895df7100d9" 5096 5138 integrity sha512-NqVDv9TpANUjFm0N8uM5GxL36UgKi9/atZw+x7YFnQ8ckwFGKrl4xX4yWtrey3UJm5nP1kUbnYgLopqWNSRhWw== 5097 5139 5098 - scheduler@^0.17.0: 5099 - version "0.17.0" 5100 - resolved "https://registry.yarnpkg.com/scheduler/-/scheduler-0.17.0.tgz#7c9c673e4ec781fac853927916d1c426b6f3ddfe" 5101 - integrity sha512-7rro8Io3tnCPuY4la/NuI5F2yfESpnfZyT6TtkXnSWVkcu0BCDJ+8gk5ozUaFaxpIyNuWAPXrH0yFcSi28fnDA== 5102 - dependencies: 5103 - loose-envify "^1.1.0" 5104 - object-assign "^4.1.1" 5105 - 5106 5140 scheduler@^0.18.0: 5107 5141 version "0.18.0" 5108 5142 resolved "https://registry.yarnpkg.com/scheduler/-/scheduler-0.18.0.tgz#5901ad6659bc1d8f3fdaf36eb7a67b0d6746b1c4" ··· 5116 5150 resolved "https://registry.yarnpkg.com/semver-compare/-/semver-compare-1.0.0.tgz#0dee216a1c941ab37e9efb1788f6afc5ff5537fc" 5117 5151 integrity sha1-De4hahyUGrN+nvsXiPavxf9VN/w= 5118 5152 5119 - "semver@2 || 3 || 4 || 5", semver@^5.3.0, semver@^5.4.1, semver@^5.5, semver@^5.5.0, semver@^5.6.0, semver@^5.7.0: 5120 - version "5.7.0" 5121 - resolved "https://registry.yarnpkg.com/semver/-/semver-5.7.0.tgz#790a7cf6fea5459bac96110b29b60412dc8ff96b" 5122 - integrity sha512-Ya52jSX2u7QKghxeoFGpLwCtGlt7j0oY9DYb5apt9nPlJ42ID+ulTXESnt/qAQcoSERyZ5sl3LDIOw0nAn/5DA== 5153 + "semver@2 || 3 || 4 || 5", semver@^5.3.0, semver@^5.4.1, semver@^5.5, semver@^5.5.0, semver@^5.6.0, semver@^5.7.0, semver@^5.7.1: 5154 + version "5.7.1" 5155 + resolved "https://registry.yarnpkg.com/semver/-/semver-5.7.1.tgz#a954f931aeba508d307bbf069eff0c01c96116f7" 5156 + integrity sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ== 5123 5157 5124 5158 semver@^6.0.0, semver@^6.1.2, semver@^6.2.0, semver@^6.3.0: 5125 5159 version "6.3.0" ··· 5414 5448 es-abstract "^1.4.3" 5415 5449 function-bind "^1.0.2" 5416 5450 5417 - string.prototype.trim@^1.1.2: 5418 - version "1.1.2" 5419 - resolved "https://registry.yarnpkg.com/string.prototype.trim/-/string.prototype.trim-1.1.2.tgz#d04de2c89e137f4d7d206f086b5ed2fae6be8cea" 5420 - integrity sha1-0E3iyJ4Tf019IG8Ia17S+ua+jOo= 5451 + string.prototype.trim@^1.2.1: 5452 + version "1.2.1" 5453 + resolved "https://registry.yarnpkg.com/string.prototype.trim/-/string.prototype.trim-1.2.1.tgz#141233dff32c82bfad80684d7e5f0869ee0fb782" 5454 + integrity sha512-MjGFEeqixw47dAMFMtgUro/I0+wNqZB5GKXGt1fFr24u3TzDXCPu7J9Buppzoe3r/LqkSDLDDJzE15RGWDGAVw== 5421 5455 dependencies: 5422 - define-properties "^1.1.2" 5423 - es-abstract "^1.5.0" 5424 - function-bind "^1.0.2" 5456 + define-properties "^1.1.3" 5457 + es-abstract "^1.17.0-next.1" 5458 + function-bind "^1.1.1" 5425 5459 5426 - string.prototype.trimleft@^2.1.0: 5427 - version "2.1.0" 5428 - resolved "https://registry.yarnpkg.com/string.prototype.trimleft/-/string.prototype.trimleft-2.1.0.tgz#6cc47f0d7eb8d62b0f3701611715a3954591d634" 5429 - integrity sha512-FJ6b7EgdKxxbDxc79cOlok6Afd++TTs5szo+zJTUyow3ycrRfJVE2pq3vcN53XexvKZu/DJMDfeI/qMiZTrjTw== 5460 + string.prototype.trimleft@^2.1.1: 5461 + version "2.1.1" 5462 + resolved "https://registry.yarnpkg.com/string.prototype.trimleft/-/string.prototype.trimleft-2.1.1.tgz#9bdb8ac6abd6d602b17a4ed321870d2f8dcefc74" 5463 + integrity sha512-iu2AGd3PuP5Rp7x2kEZCrB2Nf41ehzh+goo8TV7z8/XDBbsvc6HQIlUl9RjkZ4oyrW1XM5UwlGl1oVEaDjg6Ag== 5430 5464 dependencies: 5431 5465 define-properties "^1.1.3" 5432 5466 function-bind "^1.1.1" 5433 5467 5434 - string.prototype.trimright@^2.1.0: 5435 - version "2.1.0" 5436 - resolved "https://registry.yarnpkg.com/string.prototype.trimright/-/string.prototype.trimright-2.1.0.tgz#669d164be9df9b6f7559fa8e89945b168a5a6c58" 5437 - integrity sha512-fXZTSV55dNBwv16uw+hh5jkghxSnc5oHq+5K/gXgizHwAvMetdAJlHqqoFC1FSDVPYWLkAKl2cxpUT41sV7nSg== 5468 + string.prototype.trimright@^2.1.1: 5469 + version "2.1.1" 5470 + resolved "https://registry.yarnpkg.com/string.prototype.trimright/-/string.prototype.trimright-2.1.1.tgz#440314b15996c866ce8a0341894d45186200c5d9" 5471 + integrity sha512-qFvWL3/+QIgZXVmJBfpHmxLB7xsUXz6HsUmP8+5dRaC3Q7oKUv9Vo6aMCRZC1smrtyECFsIT30PqBJ1gTjAs+g== 5438 5472 dependencies: 5439 5473 define-properties "^1.1.3" 5440 5474 function-bind "^1.1.1" ··· 5526 5560 integrity sha512-qe1jfm1Mg7Nq/NSh6XE24gPXROEVsWHxC1LIx//XNlD9iw7YZQGjZNjYN7xGaEG6iKdA8EtNFW6R0gjnVXp+wQ== 5527 5561 dependencies: 5528 5562 has-flag "^3.0.0" 5563 + 5564 + supports-color@^7.1.0: 5565 + version "7.1.0" 5566 + resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-7.1.0.tgz#68e32591df73e25ad1c4b49108a2ec507962bfd1" 5567 + integrity sha512-oRSIpR8pxT1Wr2FquTNnGet79b3BWljqOuoW/h4oBhxJ/HUbX5nX6JSruTkvXDCFMwDPvsaTTbvMLKZWSy0R5g== 5568 + dependencies: 5569 + has-flag "^4.0.0" 5529 5570 5530 5571 symbol-observable@^1.1.0: 5531 5572 version "1.2.0" ··· 5736 5777 resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-0.5.2.tgz#d6ef42a0356c6cd45f49485c3b6281fc148e48a2" 5737 5778 integrity sha512-DWkS49EQKVX//Tbupb9TFa19c7+MK1XmzkrZUR8TAktmE/DizXoaoJV6TZ/tSIPXipqNiRI6CyAe7x69Jb6RSw== 5738 5779 5739 - type-fest@^0.6.0: 5740 - version "0.6.0" 5741 - resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-0.6.0.tgz#8d2a2370d3df886eb5c90ada1c5bf6188acf838b" 5742 - integrity sha512-q+MB8nYR1KDLrgr4G5yemftpMC7/QLqVndBmEEdqzmNj5dcFOO4Oo8qlwZE3ULT3+Zim1F8Kq4cBnikNhlCMlg== 5780 + type-fest@^0.8.1: 5781 + version "0.8.1" 5782 + resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-0.8.1.tgz#09e249ebde851d3b1e48d27c105444667f17b83d" 5783 + integrity sha512-4dbzIzqvjtgiM5rw1k5rEHtBANKmdudhGyBEajN01fEyhaAIhsoKNy6y7+IN93IfpFtwY9iqi7kD+xwKhQsNJA== 5743 5784 5744 5785 typescript@^3.7.4: 5745 5786 version "3.7.4" ··· 5921 5962 resolved "https://registry.yarnpkg.com/which-module/-/which-module-2.0.0.tgz#d9ef07dce77b9902b8a3a8fa4b31c3e3f7e6e87a" 5922 5963 integrity sha1-2e8H3Od7mQK4o6j6SzHD4/fm6Ho= 5923 5964 5965 + which-pm-runs@^1.0.0: 5966 + version "1.0.0" 5967 + resolved "https://registry.yarnpkg.com/which-pm-runs/-/which-pm-runs-1.0.0.tgz#670b3afbc552e0b55df6b7780ca74615f23ad1cb" 5968 + integrity sha1-Zws6+8VS4LVd9rd4DKdGFfI60cs= 5969 + 5924 5970 which@^1.2.9, which@^1.3.0: 5925 5971 version "1.3.1" 5926 5972 resolved "https://registry.yarnpkg.com/which/-/which-1.3.1.tgz#a45043d54f5805316da8d62f9f50918d3da70b0a" ··· 5935 5981 dependencies: 5936 5982 string-width "^1.0.2 || 2" 5937 5983 5938 - wonka@^4.0.3: 5939 - version "4.0.3" 5940 - resolved "https://registry.yarnpkg.com/wonka/-/wonka-4.0.3.tgz#95babdc479714232c11dcd99093ab2fee47842d8" 5941 - integrity sha512-lwSDBv375yZYC+P4sQxhZfF9izvtsdBZxRt4r5eHLmJdCFjQu500zqSO73rxXpRuoPgJtS3/BCiwOxHcBeftjg== 5984 + wonka@^4.0.5: 5985 + version "4.0.5" 5986 + resolved "https://registry.yarnpkg.com/wonka/-/wonka-4.0.5.tgz#3384b90ed8c1e6e182d6e2fb18468c33ab94e0af" 5987 + integrity sha512-XKnzSpsk2UcPfyjecdc14b7LZSPeOEhYEs+/oAZ+gXV9BuYIcZC3hpapFi2DFHj1Bk38/npusgkiSD0+KdyCzQ== 5988 + 5989 + word-wrap@~1.2.3: 5990 + version "1.2.3" 5991 + resolved "https://registry.yarnpkg.com/word-wrap/-/word-wrap-1.2.3.tgz#610636f6b1f703891bd34771ccb17fb93b47079c" 5992 + integrity sha512-Hz/mrNwitNRh/HUAtM/VT/5VH+ygD6DV7mYKZAtHOrbs8U7lvPS6xf7EJKMF0uW1KJCl0H701g3ZGus+muE5vQ== 5942 5993 5943 5994 wordwrap@~0.0.2: 5944 5995 version "0.0.3" 5945 5996 resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-0.0.3.tgz#a3d5da6cd5c0bc0008d37234bbaf1bed63059107" 5946 5997 integrity sha1-o9XabNXAvAAI03I0u68b7WMFkQc= 5947 - 5948 - wordwrap@~1.0.0: 5949 - version "1.0.0" 5950 - resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-1.0.0.tgz#27584810891456a4171c8d0226441ade90cbcaeb" 5951 - integrity sha1-J1hIEIkUVqQXHI0CJkQa3pDLyus= 5952 5998 5953 5999 wrap-ansi@^3.0.1: 5954 6000 version "3.0.1" ··· 6009 6055 version "3.0.3" 6010 6056 resolved "https://registry.yarnpkg.com/yallist/-/yallist-3.0.3.tgz#b4b049e314be545e3ce802236d6cd22cd91c3de9" 6011 6057 integrity sha512-S+Zk8DEWE6oKpV+vI3qWkaK+jSbIK86pCwe2IF/xwIpQ8jEuxpw9NyaGjmp9+BoJv5FV2piqCDcoCtStppiq2A== 6058 + 6059 + yaml@^1.7.2: 6060 + version "1.7.2" 6061 + resolved "https://registry.yarnpkg.com/yaml/-/yaml-1.7.2.tgz#f26aabf738590ab61efaca502358e48dc9f348b2" 6062 + integrity sha512-qXROVp90sb83XtAoqE8bP9RwAkTTZbugRUTm5YeFCBfNRPEp2YzTeqWiz7m5OORHzEvrA/qcGS8hp/E+MMROYw== 6063 + dependencies: 6064 + "@babel/runtime" "^7.6.3" 6012 6065 6013 6066 yargs-parser@10.x: 6014 6067 version "10.1.0"