├── .github └── FUNDING.yml ├── .gitignore ├── .gitpod.yml ├── .npmignore ├── CHANGELOG.md ├── README.md ├── docs ├── .nojekyll ├── README.md └── index.html ├── lerna.json ├── package.json ├── packages ├── docsify-changelog-plugin │ ├── README.md │ ├── package.json │ ├── src │ │ ├── index.js │ │ └── style.css │ └── yarn.lock ├── docsify-dark-mode │ ├── README.md │ ├── package.json │ ├── src │ │ ├── index.js │ │ └── style.css │ └── yarn.lock ├── docsify-enhanced-theme │ ├── README.md │ ├── package.json │ └── src │ │ └── style.css ├── docsify-print │ ├── README.md │ ├── package.json │ ├── src │ │ ├── index.js │ │ └── style.css │ └── yarn.lock └── docsify-top-banner-plugin │ ├── README.md │ ├── package.json │ ├── src │ ├── index.js │ └── style.css │ └── yarn.lock ├── postcss.config.js ├── rollup.config.js └── yarn.lock /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | # These are supported funding model platforms 2 | 3 | github: # Replace with up to 4 GitHub Sponsors-enabled usernames e.g., [user1, user2] 4 | patreon: # Replace with a single Patreon username 5 | open_collective: # Replace with a single Open Collective username 6 | ko_fi: # Replace with a single Ko-fi username 7 | tidelift: # Replace with a single Tidelift platform-name/package-name e.g., npm/babel 8 | community_bridge: # Replace with a single Community Bridge project-name e.g., cloud-foundry 9 | liberapay: # Replace with a single Liberapay username 10 | issuehunt: # Replace with a single IssueHunt username 11 | otechie: # Replace with a single Otechie username 12 | custom: # Replace with up to 4 custom sponsorship URLs e.g., ['link1', 'link2'] 13 | 14 | custom: ['https://www.buymeacoffee.com/eydPs6n','paypal.me/anikethsaha'] 15 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | dist 2 | node_modules 3 | yarn.lock 4 | .now -------------------------------------------------------------------------------- /.gitpod.yml: -------------------------------------------------------------------------------- 1 | tasks: 2 | - init: yarn install && yarn run build 3 | -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | README.md 2 | docs -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- 1 | # Changelog 2 | 3 | All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines. 4 | 5 | ## [0.3.0](https://github.com/anikethsaha/docsify-changelog-plugin/compare/v0.2.0...v0.3.0) (2020-02-11) 6 | 7 | 8 | 9 | ## [0.2.0](https://github.com/anikethsaha/docsify-changelog-plugin/compare/v0.1.0...v0.2.0) (2020-02-11) 10 | 11 | 12 | ### Bug Fixes 13 | 14 | * major fix and added docs ([af58522](https://github.com/anikethsaha/docsify-changelog-plugin/commit/af58522)) 15 | 16 | 17 | 18 | ## 0.1.0 (2020-02-11) 19 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # docsify-plugin 2 | 3 | Docsify Plugins by [Aniketh Saha](https://twitter.com/__ANIX__) 4 | 5 | ### Donation 6 | 7 | Buy Me A Coffee 8 | 9 | ## Packages 10 | 11 | | **package** | **description** | **Hits** | 12 | | ---------------------------- | ------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------- | 13 | | `docsify-changelog-plugin` | Docsify plugin to add changelog to your docsify site | [![](https://data.jsdelivr.com/v1/package/npm/docsify-changelog-plugin/badge)](https://www.jsdelivr.com/package/npm/docsify-changelog-plugin) | 14 | | `docsify-top-bannner-plugin` | Docsify plugin to add top banner for small announcements or updates | [![](https://data.jsdelivr.com/v1/package/npm/docsify-top-banner-plugin/badge)](https://www.jsdelivr.com/package/npm/docsify-top-banner-plugin) | 15 | | `docsify-dark-mode` | Docsify plugin to add dark mode in your docsify site | [![](https://data.jsdelivr.com/v1/package/npm/docsify-dark-mode/badge)](https://www.jsdelivr.com/package/npm/docsify-dark-mode) | 16 | | `docsify-print` | Docsify plugin to add a print button in your docsify site | [![](https://data.jsdelivr.com/v1/package/npm/docsify-print/badge)](https://www.jsdelivr.com/package/npm/docsify-print) | 17 | | `docsify-enhanced-theme` | Docsify plugin to add a print button in your docsify site | [![](https://data.jsdelivr.com/v1/package/npm/docsify-enhanced-theme/badge)](https://www.jsdelivr.com/package/npm/docsify-enhanced-theme) | 18 | 19 | ## Contribution 20 | 21 | #### Code-style 22 | 23 | [![JavaScript Style Guide](https://cdn.rawgit.com/standard/standard/master/badge.svg)](https://github.com/standard/standard) 24 | 25 | [![Open in Gitpod](https://gitpod.io/button/open-in-gitpod.svg)](https://gitpod.io/#https://github.com/anikethsaha/docsify-plugin) 26 | 27 | #### Guide 28 | 29 | - Clone the repo 30 | - `yarn` 31 | - `cd packages/` 32 | - start editing on `src/index.js` and `src/style.css` 33 | - The build step using 34 | - the `styl -> css` using `styl` CLI 35 | - Optimize the generated style using `cssnano` and `postcss` 36 | - Build the javascript using `rollup` 37 | - optimize it using `rollup-plugin-terser` 38 | - styling rule using `standard` 39 | -------------------------------------------------------------------------------- /docs/.nojekyll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Plugin-contrib/docsify-plugin/be9a708c7d34df3b7b3eb66b8dbd264b02679727/docs/.nojekyll -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- 1 | # docsify-plugin 2 | 3 | Docsify Plugins by [Aniketh Saha](https://twitter.com/__ANIX__) 4 | 5 | ### Donation 6 | 7 | Buy Me A Coffee 8 | 9 | ## Packages 10 | 11 | | **package** | **description** | **Hits** | 12 | | ---------------------------- | ------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------- | 13 | | `docsify-changelog-plugin` | Docsify plugin to add changelog to your docsify site | [![](https://data.jsdelivr.com/v1/package/npm/docsify-changelog-plugin/badge)](https://www.jsdelivr.com/package/npm/docsify-changelog-plugin) | 14 | | `docsify-top-bannner-plugin` | Docsify plugin to add top banner for small announcements or updates | [![](https://data.jsdelivr.com/v1/package/npm/docsify-top-banner-plugin/badge)](https://www.jsdelivr.com/package/npm/docsify-top-banner-plugin) | 15 | | `docsify-dark-mode` | Docsify plugin to add dark mode in your docsify site | [![](https://data.jsdelivr.com/v1/package/npm/docsify-dark-mode/badge)](https://www.jsdelivr.com/package/npm/docsify-dark-mode) | 16 | | `docsify-print` | Docsify plugin to add a print button in your docsify site | [![](https://data.jsdelivr.com/v1/package/npm/docsify-print/badge)](https://www.jsdelivr.com/package/npm/docsify-print) | 17 | | `docsify-enhanced-theme` | Docsify plugin to add a print button in your docsify site | [![](https://data.jsdelivr.com/v1/package/npm/docsify-enhanced-theme/badge)](https://www.jsdelivr.com/package/npm/docsify-enhanced-theme) | 18 | 19 | ## Contribution 20 | 21 | #### Code-style 22 | 23 | [![JavaScript Style Guide](https://cdn.rawgit.com/standard/standard/master/badge.svg)](https://github.com/standard/standard) 24 | 25 | [![Open in Gitpod](https://gitpod.io/button/open-in-gitpod.svg)](https://gitpod.io/#https://github.com/anikethsaha/docsify-plugin) 26 | 27 | #### Guide 28 | 29 | - Clone the repo 30 | - `yarn` 31 | - `cd packages/` 32 | - start editing on `src/index.js` and `src/style.css` 33 | - The build step using 34 | - the `styl -> css` using `styl` CLI 35 | - Optimize the generated style using `cssnano` and `postcss` 36 | - Build the javascript using `rollup` 37 | - optimize it using `rollup-plugin-terser` 38 | - styling rule using `standard` 39 | -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | docsify-plugin 6 | 7 | 8 | 12 | 13 | 17 | 21 | 22 | 26 | 30 | 31 | 32 | 33 | 60 | 61 | 94 |
95 | 158 | 159 | 160 | 161 | 162 | 163 | 164 | -------------------------------------------------------------------------------- /lerna.json: -------------------------------------------------------------------------------- 1 | { 2 | "npmClient": "yarn", 3 | "command": { 4 | "publish": { 5 | "ignoreChanges": ["package-lock.json"] 6 | } 7 | }, 8 | "packages": ["packages/*"], 9 | "version": "independent" 10 | } 11 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "docsify-plugin", 3 | "version": "0.3.0", 4 | "private": true, 5 | "description": "Collection of plugins made by anikethsaha", 6 | "main": "dist/index.js", 7 | "scripts": { 8 | "postinstall": "npm run bootstrap", 9 | "bootstrap": "lerna bootstrap", 10 | "test": " lerna run test", 11 | "fixlint": "lerna run fixlint", 12 | "build": "lerna run build", 13 | "publish": "lerna publish", 14 | "prepublish": "npm run build" 15 | }, 16 | "keywords": [ 17 | "docsify", 18 | "plugin" 19 | ], 20 | "author": "anikethsaha ", 21 | "license": "MIT", 22 | "dependencies": { 23 | "lerna": "^3.20.2" 24 | }, 25 | "devDependencies": { 26 | "autoprefixer": "^9.7.4", 27 | "cssnano": "^4.1.10", 28 | "postcss-preset-env": "^6.7.0", 29 | "rollup-plugin-terser": "^5.2.0" 30 | } 31 | } 32 | -------------------------------------------------------------------------------- /packages/docsify-changelog-plugin/README.md: -------------------------------------------------------------------------------- 1 | # docsify-changelog-plugin 2 | 3 | This is a docsify plugin to render changelog from given path 4 | 5 | [![JavaScript Style Guide](https://cdn.rawgit.com/standard/standard/master/badge.svg)](https://github.com/standard/standard) 6 | [![](https://data.jsdelivr.com/v1/package/npm/docsify-changelog-plugin/badge)](https://www.jsdelivr.com/package/npm/docsify-changelog-plugin) 7 | 8 | ### Donation 9 | 10 | Buy Me A Coffee 11 | 12 | 13 | ## Installation 14 | 15 | Add the following stylesheet along with your other stylesheets 16 | 17 | ```html 18 | 22 | 26 | ``` 27 | 28 | And add the following script 29 | 30 | ```html 31 | 32 | ``` 33 | 34 | ## Configure 35 | 36 | In your docsify config object add the following 37 | 38 | ```js 39 | window.$docsify = { 40 | ... 41 | loadNavbar : false, // IMPORTANT 42 | changelog : 'CHANGELOG.md' // path of your changelog, it can be remote as well 43 | ... 44 | } 45 | ``` 46 | 47 | And add the following custom nav bar 48 | 49 | ```html 50 | 51 | ``` 52 | 53 | > Note that `loadNavbar` options should be set to `false` and if you want to extend the navbar to write your own, write it in your `index.html` as `nav` element 54 | 55 | ### Thanks it, Now enjoy :tada: your changelog integration with docsify 56 | 57 | ## New feature from `v0.5.1` 58 | 59 | Added a red dot whenever you update the changelog source 60 | 61 | ## Screen Shot 62 | 63 |

64 | 65 |

When there is new update in the changelog

66 | ss 67 |
68 | 69 |

When there is no new update in the changelog

70 | 71 | ss 72 |
73 | 74 |

After clicking the changelog button

75 | ss 76 | 77 |

78 | 79 | ## Contribution Guide 80 | 81 | - Clone the repo 82 | - start editing on `src/index.js` and `src/style.styl` 83 | - The build step using 84 | - the `styl -> css` using `styl` CLI 85 | - Optimize the generated style using `cssnano` and `postcss` 86 | - Build the javascript using `rollup` 87 | - optimize it using `rollup-plugin-terser` 88 | - styling rule using `standard` 89 | 90 | ## Faq 91 | 92 | **Is it responsive?** 93 | Not yet! soon, I will add the styles to make it responsive 94 | 95 | **Will it break `mergeNavbar` options?** 96 | May be 97 | 98 | **Can I change the style of the button and the panel?** 99 | Not yet !, but soon it will be possible using css variable 100 | -------------------------------------------------------------------------------- /packages/docsify-changelog-plugin/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "docsify-changelog-plugin", 3 | "version": "0.7.1", 4 | "description": "Docsify plugin to add changelog to your docsify site", 5 | "main": "dist/index.js", 6 | "scripts": { 7 | "fixlint": "standard --fix", 8 | "test": "standard", 9 | "prebuild": "del-cli dist ", 10 | "build": "npm run build:css && npm run build:js", 11 | "build:js": "rollup --config ../../rollup.config.js", 12 | "build:css": "postcss src/style.css -o dist/style.css --config ../../postcss.config.js" 13 | }, 14 | "files": [ 15 | "dist" 16 | ], 17 | "keywords": [ 18 | "docsify", 19 | "plugin", 20 | "changelog", 21 | "docsify-plugin" 22 | ], 23 | "author": "anikethsaha ", 24 | "license": "MIT", 25 | "standard": { 26 | "ignore": [ 27 | "dist/*" 28 | ], 29 | "globals": [ 30 | "XMLHttpRequest", 31 | "localStorage" 32 | ] 33 | }, 34 | "repository": "anikethsaha/docsify-plugin", 35 | "devDependencies": { 36 | "autoprefixer": "^9.7.4", 37 | "cssnano": "^4.1.10", 38 | "del-cli": "^3.0.0", 39 | "postcss": "^7.0.26", 40 | "postcss-cli": "^7.1.0", 41 | "postcss-preset-env": "^6.7.0", 42 | "rollup": "^1.31.1", 43 | "rollup-plugin-terser": "^5.2.0", 44 | "standard": "^14.3.1" 45 | } 46 | } 47 | -------------------------------------------------------------------------------- /packages/docsify-changelog-plugin/src/index.js: -------------------------------------------------------------------------------- 1 | const plugin = (hook, vm) => { 2 | var isLS, LS_CONTENT 3 | if (localStorage) { 4 | isLS = true 5 | } 6 | 7 | window.changelogDisplayHandler = function () { 8 | const element = document.getElementById('CHANGELOG_RENDERER') 9 | element.classList.toggle('show') 10 | 11 | if (isLS && localStorage.getItem(LS_CONTENT) === null) { 12 | const elToRemove = document.getElementById('CHANGELOG_NOTIFY') 13 | elToRemove.remove() 14 | localStorage.setItem(LS_CONTENT, true) 15 | } 16 | if (document.getElementById("CHANGELOG_RENDERER").classList.contains("show")){ 17 | window.addEventListener('click', clickoutside); 18 | } else { 19 | window.removeEventListener('click', clickoutside); 20 | }; 21 | } 22 | let navEl = document.querySelector('nav.app-nav') 23 | if (navEl === null) { 24 | navEl = document.querySelector('nav') 25 | if (navEl === null) { 26 | console.error( 27 | '[Docsify-plugin-changelog] : please Write the nav element statically and set the loadNavbar option to false' 28 | ) 29 | return 30 | } 31 | } 32 | const initiaNavlEl = navEl.outerHTML.split('\n') 33 | 34 | hook.ready(function () { 35 | // Called when the script starts running, only trigger once, no arguments, 36 | if (!!vm.config.changelog && !vm.config.loadNavbar) { 37 | loadDoc() 38 | } 39 | }) 40 | 41 | function renderChangelog (md) { 42 | var html 43 | const normalizeMD = JSON.stringify(md) 44 | 45 | if (isLS && localStorage.getItem(normalizeMD)) { 46 | // this is an old changelog content. no need to show the RED DOT 47 | html = `CHANGELOG 48 |
49 |
50 |
51 |
52 |
` 53 | } else { 54 | // this is new CHangelog content, 55 | // show the RED DOT 56 | 57 | html = ` CHANGELOG 58 |
59 |
60 |
61 |
62 |
` 63 | LS_CONTENT = normalizeMD 64 | } 65 | 66 | navEl.innerHTML = initiaNavlEl 67 | .map(el => el.trim()) 68 | .slice(1, initiaNavlEl.length - 1) 69 | .concat(html.split('\n').map(el => el.trim())) 70 | .concat(initiaNavlEl.slice(-1, -1)) 71 | .join('\n') 72 | 73 | const changelogContentHTML = vm.compiler._marked.parse(md) 74 | const changelogPlaceHolder = document.querySelector( 75 | '#CHANGELOG_RENDERER .CL_content .CL_content-body' 76 | ) 77 | 78 | changelogPlaceHolder.innerHTML = changelogContentHTML 79 | } 80 | 81 | function loadDoc () { 82 | const xhttp = new XMLHttpRequest() 83 | xhttp.onreadystatechange = function () { 84 | const md = ` ${this.responseText} \n # {docsify-ignore-all} ` 85 | renderChangelog(md) 86 | } 87 | xhttp.open('GET', vm.config.changelog, true) 88 | xhttp.send() 89 | } 90 | 91 | function clickoutside(e){ 92 | if (document.getElementById('CHANGELOG_RENDERER').contains(e.target) != true 93 | && document.querySelector('nav').contains(e.target) != true 94 | && document.getElementById("CHANGELOG_RENDERER").classList.contains("show")){ 95 | document.getElementById("CHANGELOG_RENDERER").classList.remove("show"); 96 | window.removeEventListener('click', clickoutside); 97 | } 98 | } 99 | } 100 | 101 | window.$docsify.plugins = [].concat(plugin, window.$docsify.plugins) 102 | -------------------------------------------------------------------------------- /packages/docsify-changelog-plugin/src/style.css: -------------------------------------------------------------------------------- 1 | #CHANGELOG { 2 | line-height: normal; 3 | text-decoration: none; 4 | transition: background 100ms ease-out 0s; 5 | border-radius: 4px; 6 | padding: 5px; 7 | margin: auto; 8 | font-size: unset; 9 | padding-left: 10px; 10 | } 11 | #CHANGELOG_NOTIFY { 12 | content: '\A'; 13 | width: 10px; 14 | height: 10px; 15 | border-radius: 50%; 16 | background: rgb(232, 68, 68); 17 | display: inline-block; 18 | margin-right: 0.2rem; 19 | } 20 | #CHANGELOG:hover { 21 | background: rgb(242, 245, 247); 22 | } 23 | #CHANGELOG_RENDERER { 24 | display: none; 25 | position: absolute; 26 | top: 100%; 27 | background: #fff; 28 | box-shadow: 0 4px 24px rgba(0, 0, 0, 0.15); 29 | border-radius: 5px; 30 | margin-top: 20px; 31 | width: 400px; 32 | overflow: hidden; 33 | border: 1px solid rgba(0, 0, 0, 0.1); 34 | right: 0; 35 | left: auto; 36 | } 37 | #CHANGELOG_RENDERER.show { 38 | display: block; 39 | } 40 | #CHANGELOG_RENDERER .CL_content-body { 41 | height: 60vh; 42 | 43 | padding: 0; 44 | overflow-x: auto; 45 | } 46 | 47 | #CHANGELOG_RENDERER .CL_content-body h1 { 48 | display: block; 49 | position: relative; 50 | text-align: left; 51 | padding: 10px 20px; 52 | background: rgba(0, 0, 0, 0.03); 53 | margin: auto; 54 | } 55 | 56 | #CHANGELOG_RENDERER .CL_content-body p, 57 | #CHANGELOG_RENDERER .CL_content-body li, 58 | #CHANGELOG_RENDERER .CL_content-body ul { 59 | width: 100%; 60 | display: block; 61 | padding: 5px 20px; 62 | background: #fff; 63 | position: relative; 64 | text-align: left; 65 | } 66 | 67 | #CHANGELOG_RENDERER .CL_content-body h3 { 68 | width: 100%; 69 | display: block; 70 | background: #fff; 71 | position: relative; 72 | padding: 5px 20px; 73 | text-align: left; 74 | font-size: 24px; 75 | margin: auto; 76 | font-weight: 700; 77 | display: block; 78 | border-bottom: 1px solid rgba(0, 0, 0, 0.1); 79 | } 80 | #CHANGELOG_RENDERER .CL_content-body h4 { 81 | width: 100%; 82 | display: block; 83 | background: #fff; 84 | position: relative; 85 | padding: 5px 20px; 86 | text-align: left; 87 | 88 | margin: auto; 89 | 90 | display: block; 91 | border-bottom: 1px solid rgba(0, 0, 0, 0.1); 92 | } 93 | 94 | /* Scrollbar Styling */ 95 | #CHANGELOG_RENDERER .CL_content-body::-webkit-scrollbar { 96 | width: 10px; 97 | } 98 | 99 | #CHANGELOG_RENDERER .CL_content-body::-webkit-scrollbar-track { 100 | background-color: rgba(0, 0, 0, 0.03); 101 | -webkit-border-radius: 10px; 102 | border-radius: 10px; 103 | } 104 | #CHANGELOG_RENDERER .CL_content-body::-webkit-scrollbar-thumb { 105 | -webkit-border-radius: 10px; 106 | border-radius: 10px; 107 | background: #6d6d6d; 108 | } 109 | 110 | #CHANGELOG_RENDERER .CL_content-body h2 { 111 | margin: auto; 112 | display: block; 113 | padding: 10px 20px; 114 | background: #fff; 115 | position: relative; 116 | text-align: left; 117 | font-size: 2rem; 118 | border-bottom: 1px solid rgba(0, 0, 0, 0.1); 119 | } 120 | 121 | #CHANGELOG_RENDERER .CL_content-body ul, 122 | #CHANGELOG_RENDERER .CL_content-body li { 123 | overflow: hidden; 124 | width: 100%; 125 | padding: 5px 5px !important; 126 | } 127 | 128 | #CHANGELOG_RENDERER .CL_content-body ul { 129 | list-style: none; 130 | 131 | background-color: #fff; 132 | border: none; 133 | border-radius: 0; 134 | box-sizing: border-box; 135 | max-height: calc(100vh - 61px); 136 | padding: 5px 20px; 137 | position: relative; 138 | text-align: left; 139 | white-space: nowrap; 140 | } 141 | 142 | #CHANGELOG_RENDERER .CL_content-body li { 143 | padding-left: 1.3em; 144 | } 145 | 146 | #CHANGELOG_RENDERER .CL_content-body li:before { 147 | content: '\f00c'; /* FontAwesome Unicode */ 148 | font-family: FontAwesome; 149 | display: inline-block; 150 | margin-left: -1.3em; /* same as padding-left set on li */ 151 | width: 1.3em; /* same as padding-left set on li */ 152 | } 153 | 154 | @media screen and (max-width: 768px) { 155 | .app-nav { 156 | width: 100% !important; 157 | margin: auto !important; 158 | } 159 | #CHANGELOG_RENDERER { 160 | left: 0; 161 | width: 100%; 162 | } 163 | } 164 | -------------------------------------------------------------------------------- /packages/docsify-dark-mode/README.md: -------------------------------------------------------------------------------- 1 | # docsify-dark-mode 2 | 3 | [![JavaScript Style Guide](https://cdn.rawgit.com/standard/standard/master/badge.svg)](https://github.com/standard/standard) 4 | [![jsDelivr hits (/mo)](https://data.jsdelivr.com/v1/package/npm/docsify-dark-mode/badge)](https://www.jsdelivr.com/package/npm/docsify-dark-mode) 5 | 6 | > This is a docsify plugin which enables dark mode for your docsify site 7 | 8 | Table of contents: 9 | 10 | - [docsify-dark-mode](#docsify-dark-mode) 11 | - [Installation](#installation) 12 | - [Configure](#configure) 13 | - [Defaults](#defaults) 14 | - [Remembering the color mode](#remembering-the-color-mode) 15 | - [Screenshots](#screenshots) 16 | - [Contributing](#contributing) 17 | 18 | ## Installation 19 | 20 | Add the following stylesheet along with your other stylesheets: 21 | 22 | ```html 23 | 27 | ``` 28 | 29 | And add the following script: 30 | 31 | ```html 32 | 33 | ``` 34 | 35 | **⚠️ by default, the color of the toggle is set to `white`. It may make the switch invisible. If that's your case, simply set the `themeColor` in your configuration to whatever color you like:** 36 | 37 | ```js 38 | window.$docsify = { 39 | // your docsify configuration 40 | themeColor: "#42b983" // this is the default 'vue' color 41 | }; 42 | ``` 43 | 44 | ## Configure 45 | 46 | In your docsify config object add the following 47 | 48 | ```js 49 | window.$docsify = { 50 | // ... 51 | darkMode: { 52 | dark: { 53 | background: "", 54 | toggleBtnBg: "", 55 | textColor: "" 56 | }, 57 | light: { 58 | background: "", 59 | toggleBtnBg: "", 60 | textColor: "" 61 | } 62 | } 63 | // ... 64 | }; 65 | ``` 66 | 67 | ### Defaults 68 | 69 | ```js 70 | { 71 | dark: { 72 | background: "#1c2022", 73 | toggleBtnBg: "#34495e", 74 | textColor: "#b4b4b4" 75 | }, 76 | light: { 77 | background: "white", 78 | toggleBtnBg: "var(--theme-color)", 79 | textColor: "var(--theme-color)" 80 | } 81 | }; 82 | ``` 83 | 84 | **That's it, now enjoy 🎉 the dark mode in your docsify site.** 85 | 86 | ### Remembering the color mode 87 | 88 | As of `v0.2.0`, this plugin will remember the color mode set. That means that when the browser is closed and then reopened, the color mode will still be set. This is achieved via `localStorage` 89 | 90 | ## Screenshots 91 | 92 | The toggle button in light mode. 93 | 94 | ![The toggle button in light mode. 95 | ](https://imgur.com/z4jhX61.png) 96 | 97 | The toggle button in dark mode. 98 | 99 | ![The toggle button in dark mode.](https://imgur.com/aRVEXAG.png) 100 | 101 | A basic docsify page in ligth mode. 102 | 103 | ![A basic docsify page in ligth mode.](https://imgur.com/LQtjAXb.png) 104 | 105 | A basic docsify page in dark mode. 106 | 107 | ![A basic docsify page in dark mode.](https://imgur.com/OJvTbfQ.png) 108 | 109 | ## Contributing 110 | 111 | 1. Clone the repo: 112 | ```bash 113 | git clone https://github.com/anikethsaha/docsify-plugin.git 114 | ``` 115 | 2. Install the dependencies for this particular project: 116 | ```bash 117 | cd ./packages/docsify-dark-mode/src/ && yarn i 118 | ``` 119 | 3. Start editing the code in `packages/docsify-dark-mode/src/`. 120 | 4. To build the project, run: 121 | ```bash 122 | yarn run build 123 | ``` 124 | The build steps are: 125 | - Optimize the generated style using `cssnano` and `postcss` 126 | - Build the javascript using `rollup` 127 | - Optimize it using `rollup-plugin-terser` 128 | - Fix the code style with `standard` 129 | -------------------------------------------------------------------------------- /packages/docsify-dark-mode/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "docsify-dark-mode", 3 | "version": "0.6.2", 4 | "description": "Enables dark mode for your docsify docs", 5 | "main": "dist/index.js", 6 | "scripts": { 7 | "fixlint": "standard --fix", 8 | "test": "standard", 9 | "prebuild": "del-cli dist ", 10 | "build": "npm run build:css && npm run build:js", 11 | "build:js": "rollup --config ../../rollup.config.js", 12 | "build:css": "postcss src/style.css -o dist/style.css --config ../../postcss.config.js" 13 | }, 14 | "files": [ 15 | "dist" 16 | ], 17 | "keywords": [ 18 | "docsify", 19 | "plugin", 20 | "changelog", 21 | "docsify-plugin" 22 | ], 23 | "author": "anikethsaha ", 24 | "license": "MIT", 25 | "standard": { 26 | "ignore": [ 27 | "dist/*" 28 | ], 29 | "globals": [ 30 | "XMLHttpRequest", 31 | "localStorage", 32 | "document" 33 | ] 34 | }, 35 | "repository": "anikethsaha/docsify-plugin", 36 | "devDependencies": { 37 | "autoprefixer": "^9.7.4", 38 | "cssnano": "^4.1.10", 39 | "del-cli": "^3.0.0", 40 | "postcss": "^7.0.26", 41 | "postcss-cli": "^7.1.0", 42 | "postcss-preset-env": "^6.7.0", 43 | "rollup": "^1.31.1", 44 | "rollup-plugin-terser": "^5.2.0", 45 | "standard": "^14.3.1" 46 | } 47 | } 48 | -------------------------------------------------------------------------------- /packages/docsify-dark-mode/src/index.js: -------------------------------------------------------------------------------- 1 | const plugin = (hook, vm) => { 2 | var trans = () => { 3 | document.documentElement.classList.add('transition') 4 | window.setTimeout(() => { 5 | document.documentElement.classList.remove('transition') 6 | }, 800) 7 | } 8 | var setColor = ({ background, toggleBtnBg, textColor }) => { 9 | document.documentElement.style.setProperty( 10 | '--docsify_dark_mode_bg', 11 | background 12 | ) 13 | document.documentElement.style.setProperty( 14 | '--docsify_dark_mode_btn', 15 | toggleBtnBg 16 | ) 17 | document.documentElement.style.setProperty('--text_color', textColor) 18 | } 19 | 20 | var theme = { dark: {}, light: {} } 21 | var defaultConfig = { 22 | dark: { 23 | background: '#1c2022', 24 | toggleBtnBg: '#34495e', 25 | textColor: '#b4b4b4' 26 | }, 27 | light: { 28 | background: 'white', 29 | toggleBtnBg: 'var(--theme-color)', 30 | textColor: 'var(--theme-color)' 31 | } 32 | } 33 | 34 | theme = { ...defaultConfig, ...vm.config.darkMode } 35 | 36 | hook.afterEach(function(html, next) { 37 | var darkEl = `
38 | 39 | 40 |
` 41 | html = `${darkEl}${html}` 42 | next(html) 43 | }) 44 | 45 | hook.doneEach(function() { 46 | var currColor 47 | if (localStorage.getItem('DOCSIFY_DARK_MODE')) { 48 | currColor = localStorage.getItem('DOCSIFY_DARK_MODE') 49 | setColor(theme[`${currColor}`]) 50 | } else { 51 | currColor = 'light' 52 | setColor(theme.light) 53 | } 54 | 55 | var checkbox = document.querySelector('input[name=mode]') 56 | 57 | if (!checkbox) { 58 | return 59 | } 60 | 61 | checkbox.addEventListener('change', function() { 62 | // dark 63 | if (currColor === 'light') { 64 | trans() 65 | setColor(theme.dark) 66 | localStorage.setItem('DOCSIFY_DARK_MODE', 'dark') 67 | currColor = 'dark' 68 | } else { 69 | trans() 70 | setColor(theme.light) 71 | localStorage.setItem('DOCSIFY_DARK_MODE', 'light') 72 | currColor = 'light' 73 | } 74 | }) 75 | }) 76 | } 77 | 78 | window.$docsify.plugins = [].concat(plugin, window.$docsify.plugins) 79 | -------------------------------------------------------------------------------- /packages/docsify-dark-mode/src/style.css: -------------------------------------------------------------------------------- 1 | :root { 2 | --text_color: var(--theme-color); 3 | --docsify_dark_mode_bg: white; 4 | --docsify_dark_mode_btn: var(--theme-color); 5 | } 6 | html, 7 | body, 8 | main, 9 | .sidebar-toggle, 10 | .sidebar, 11 | aside { 12 | background: var(--docsify_dark_mode_bg); 13 | } 14 | 15 | #dark_mode > input[type='checkbox'] { 16 | height: 0; 17 | width: 0; 18 | visibility: hidden; 19 | } 20 | #dark_mode > label { 21 | cursor: pointer; 22 | text-indent: -9999px; 23 | width: 55px; 24 | height: 30px; 25 | background: var(--docsify_dark_mode_btn); 26 | margin: 0 auto; 27 | display: flex; 28 | justify-content: center; 29 | align-items: center; 30 | -webkit-border-radius: 100px; 31 | -moz-border-radius: 100px; 32 | border-radius: 100px; 33 | position: relative; 34 | } 35 | 36 | #dark_mode > label:after { 37 | content: ''; 38 | background: #fff; 39 | width: 20px; 40 | height: 20px; 41 | -webkit-border-radius: 50%; 42 | -moz-border-radius: 50%; 43 | border-radius: 50%; 44 | position: absolute; 45 | top: 5px; 46 | left: 4px; 47 | transition: cubic-bezier(0.68, -0.55, 0.27, 1.55) 320ms; 48 | } 49 | 50 | #dark_mode > input:checked + label { 51 | background: var(--docsify_dark_mode_btn); 52 | } 53 | 54 | #dark_mode > input:checked + label:after { 55 | left: calc(100% - 5px); 56 | -webkit-transform: translateX(-100%); 57 | -moz-transform: translateX(-100%); 58 | -ms-transform: translateX(-100%); 59 | -o-transform: translateX(-100%); 60 | transform: translateX(-100%); 61 | } 62 | 63 | html.transition, 64 | html.transition *, 65 | html.transition *:before, 66 | html.transition *:after { 67 | transition: cubic-bezier(0.68, -0.55, 0.27, 1.55) 420ms !important; 68 | transition-delay: 0 !important; 69 | } 70 | 71 | #dark_mode { 72 | position: absolute; 73 | right: 0; 74 | top: 0; 75 | } 76 | p { 77 | color: var(--text_color); 78 | } 79 | -------------------------------------------------------------------------------- /packages/docsify-dark-mode/yarn.lock: -------------------------------------------------------------------------------- 1 | # THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY. 2 | # yarn lockfile v1 3 | 4 | 5 | "@babel/code-frame@^7.0.0", "@babel/code-frame@^7.5.5": 6 | version "7.8.3" 7 | resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.8.3.tgz#33e25903d7481181534e12ec0a25f16b6fcf419e" 8 | integrity sha512-a9gxpmdXtZEInkCSHUJDLHZVBgb1QS0jhss4cPP93EW7s+uC5bikET2twEF3KV+7rDblJcmNvTR7VJejqd2C2g== 9 | dependencies: 10 | "@babel/highlight" "^7.8.3" 11 | 12 | "@babel/highlight@^7.8.3": 13 | version "7.8.3" 14 | resolved "https://registry.yarnpkg.com/@babel/highlight/-/highlight-7.8.3.tgz#28f173d04223eaaa59bc1d439a3836e6d1265797" 15 | integrity sha512-PX4y5xQUvy0fnEVHrYOarRPXVWafSjTW9T0Hab8gVIawpl2Sj0ORyrygANq+KjcNlSSTw0YCLSNA8OyZ1I4yEg== 16 | dependencies: 17 | chalk "^2.0.0" 18 | esutils "^2.0.2" 19 | js-tokens "^4.0.0" 20 | 21 | "@csstools/convert-colors@^1.4.0": 22 | version "1.4.0" 23 | resolved "https://registry.yarnpkg.com/@csstools/convert-colors/-/convert-colors-1.4.0.tgz#ad495dc41b12e75d588c6db8b9834f08fa131eb7" 24 | integrity sha512-5a6wqoJV/xEdbRNKVo6I4hO3VjyDq//8q2f9I6PBAvMesJHFauXDorcNCsr9RzvsZnaWi5NYCcfyqP1QeFHFbw== 25 | 26 | "@nodelib/fs.scandir@2.1.3": 27 | version "2.1.3" 28 | resolved "https://registry.yarnpkg.com/@nodelib/fs.scandir/-/fs.scandir-2.1.3.tgz#3a582bdb53804c6ba6d146579c46e52130cf4a3b" 29 | integrity sha512-eGmwYQn3gxo4r7jdQnkrrN6bY478C3P+a/y72IJukF8LjB6ZHeB3c+Ehacj3sYeSmUXGlnA67/PmbM9CVwL7Dw== 30 | dependencies: 31 | "@nodelib/fs.stat" "2.0.3" 32 | run-parallel "^1.1.9" 33 | 34 | "@nodelib/fs.stat@2.0.3", "@nodelib/fs.stat@^2.0.2": 35 | version "2.0.3" 36 | resolved "https://registry.yarnpkg.com/@nodelib/fs.stat/-/fs.stat-2.0.3.tgz#34dc5f4cabbc720f4e60f75a747e7ecd6c175bd3" 37 | integrity sha512-bQBFruR2TAwoevBEd/NWMoAAtNGzTRgdrqnYCc7dhzfoNvqPzLyqlEQnzZ3kVnNrSp25iyxE00/3h2fqGAGArA== 38 | 39 | "@nodelib/fs.walk@^1.2.3": 40 | version "1.2.4" 41 | resolved "https://registry.yarnpkg.com/@nodelib/fs.walk/-/fs.walk-1.2.4.tgz#011b9202a70a6366e436ca5c065844528ab04976" 42 | integrity sha512-1V9XOY4rDW0rehzbrcqAmHnz8e7SKvX27gh8Gt2WgB0+pdzdiLV83p72kZPU+jvMbS1qU5mauP2iOvO8rhmurQ== 43 | dependencies: 44 | "@nodelib/fs.scandir" "2.1.3" 45 | fastq "^1.6.0" 46 | 47 | "@types/color-name@^1.1.1": 48 | version "1.1.1" 49 | resolved "https://registry.yarnpkg.com/@types/color-name/-/color-name-1.1.1.tgz#1c1261bbeaa10a8055bbc5d8ab84b7b2afc846a0" 50 | integrity sha512-rr+OQyAjxze7GgWrSaJwydHStIhHq2lvY3BOC2Mj7KnzI7XK0Uw1TOOdI9lDoajEbSWLiYgoo4f1R51erQfhPQ== 51 | 52 | "@types/estree@*": 53 | version "0.0.42" 54 | resolved "https://registry.yarnpkg.com/@types/estree/-/estree-0.0.42.tgz#8d0c1f480339efedb3e46070e22dd63e0430dd11" 55 | integrity sha512-K1DPVvnBCPxzD+G51/cxVIoc2X8uUVl1zpJeE6iKcgHMj4+tbat5Xu4TjV7v2QSDbIeAfLi2hIk+u2+s0MlpUQ== 56 | 57 | "@types/events@*": 58 | version "3.0.0" 59 | resolved "https://registry.yarnpkg.com/@types/events/-/events-3.0.0.tgz#2862f3f58a9a7f7c3e78d79f130dd4d71c25c2a7" 60 | integrity sha512-EaObqwIvayI5a8dCzhFrjKzVwKLxjoG9T6Ppd5CEo07LRKfQ8Yokw54r5+Wq7FaBQ+yXRvQAYPrHwya1/UFt9g== 61 | 62 | "@types/glob@^7.1.1": 63 | version "7.1.1" 64 | resolved "https://registry.yarnpkg.com/@types/glob/-/glob-7.1.1.tgz#aa59a1c6e3fbc421e07ccd31a944c30eba521575" 65 | integrity sha512-1Bh06cbWJUHMC97acuD6UMG29nMt0Aqz1vF3guLfG+kHHJhy3AyohZFFxYk2f7Q1SQIrNwvncxAE0N/9s70F2w== 66 | dependencies: 67 | "@types/events" "*" 68 | "@types/minimatch" "*" 69 | "@types/node" "*" 70 | 71 | "@types/minimatch@*": 72 | version "3.0.3" 73 | resolved "https://registry.yarnpkg.com/@types/minimatch/-/minimatch-3.0.3.tgz#3dca0e3f33b200fc7d1139c0cd96c1268cadfd9d" 74 | integrity sha512-tHq6qdbT9U1IRSGf14CL0pUlULksvY9OZ+5eEgl1N7t+OA3tGvNpxJCzuKQlsNgCVwbAs670L1vcVQi8j9HjnA== 75 | 76 | "@types/node@*": 77 | version "13.7.4" 78 | resolved "https://registry.yarnpkg.com/@types/node/-/node-13.7.4.tgz#76c3cb3a12909510f52e5dc04a6298cdf9504ffd" 79 | integrity sha512-oVeL12C6gQS/GAExndigSaLxTrKpQPxewx9bOcwfvJiJge4rr7wNaph4J+ns5hrmIV2as5qxqN8YKthn9qh0jw== 80 | 81 | "@types/q@^1.5.1": 82 | version "1.5.2" 83 | resolved "https://registry.yarnpkg.com/@types/q/-/q-1.5.2.tgz#690a1475b84f2a884fd07cd797c00f5f31356ea8" 84 | integrity sha512-ce5d3q03Ex0sy4R14722Rmt6MT07Ua+k4FwDfdcToYJcMKNtRVQvJ6JCAPdAmAnbRb6CsX6aYb9m96NGod9uTw== 85 | 86 | acorn-jsx@^5.1.0: 87 | version "5.1.0" 88 | resolved "https://registry.yarnpkg.com/acorn-jsx/-/acorn-jsx-5.1.0.tgz#294adb71b57398b0680015f0a38c563ee1db5384" 89 | integrity sha512-tMUqwBWfLFbJbizRmEcWSLw6HnFzfdJs2sOJEOwwtVPMoH/0Ay+E703oZz78VSXZiiDcZrQ5XKjPIUQixhmgVw== 90 | 91 | acorn@^7.1.0: 92 | version "7.1.0" 93 | resolved "https://registry.yarnpkg.com/acorn/-/acorn-7.1.0.tgz#949d36f2c292535da602283586c2477c57eb2d6c" 94 | integrity sha512-kL5CuoXA/dgxlBbVrflsflzQ3PAas7RYZB52NOm/6839iVYJgKMJ3cQJD+t2i5+qFa8h3MDpEOJiS64E8JLnSQ== 95 | 96 | aggregate-error@^3.0.0: 97 | version "3.0.1" 98 | resolved "https://registry.yarnpkg.com/aggregate-error/-/aggregate-error-3.0.1.tgz#db2fe7246e536f40d9b5442a39e117d7dd6a24e0" 99 | integrity sha512-quoaXsZ9/BLNae5yiNoUz+Nhkwz83GhWwtYFglcjEQB2NDHCIpApbqXxIFnm4Pq/Nvhrsq5sYJFyohrrxnTGAA== 100 | dependencies: 101 | clean-stack "^2.0.0" 102 | indent-string "^4.0.0" 103 | 104 | ajv@^6.10.0, ajv@^6.10.2: 105 | version "6.12.0" 106 | resolved "https://registry.yarnpkg.com/ajv/-/ajv-6.12.0.tgz#06d60b96d87b8454a5adaba86e7854da629db4b7" 107 | integrity sha512-D6gFiFA0RRLyUbvijN74DWAjXSFxWKaWP7mldxkVhyhAV3+SWA9HEJPHQ2c9soIeTFJqcSdFDGFgdqs1iUU2Hw== 108 | dependencies: 109 | fast-deep-equal "^3.1.1" 110 | fast-json-stable-stringify "^2.0.0" 111 | json-schema-traverse "^0.4.1" 112 | uri-js "^4.2.2" 113 | 114 | alphanum-sort@^1.0.0: 115 | version "1.0.2" 116 | resolved "https://registry.yarnpkg.com/alphanum-sort/-/alphanum-sort-1.0.2.tgz#97a1119649b211ad33691d9f9f486a8ec9fbe0a3" 117 | integrity sha1-l6ERlkmyEa0zaR2fn0hqjsn74KM= 118 | 119 | ansi-escapes@^3.2.0: 120 | version "3.2.0" 121 | resolved "https://registry.yarnpkg.com/ansi-escapes/-/ansi-escapes-3.2.0.tgz#8780b98ff9dbf5638152d1f1fe5c1d7b4442976b" 122 | integrity sha512-cBhpre4ma+U0T1oM5fXg7Dy1Jw7zzwv7lt/GoCpr+hDQJoYnKVPLL4dCvSEFMmQurOQvSrwT7SL/DAlhBI97RQ== 123 | 124 | ansi-regex@^3.0.0: 125 | version "3.0.0" 126 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-3.0.0.tgz#ed0317c322064f79466c02966bddb605ab37d998" 127 | integrity sha1-7QMXwyIGT3lGbAKWa922Bas32Zg= 128 | 129 | ansi-regex@^4.1.0: 130 | version "4.1.0" 131 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-4.1.0.tgz#8b9f8f08cf1acb843756a839ca8c7e3168c51997" 132 | integrity sha512-1apePfXM1UOSqw0o9IiFAovVz9M5S1Dg+4TrDwfMewQ6p/rmMueb7tWZjQ1rx4Loy1ArBggoqGpfqqdI4rondg== 133 | 134 | ansi-regex@^5.0.0: 135 | version "5.0.0" 136 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-5.0.0.tgz#388539f55179bf39339c81af30a654d69f87cb75" 137 | integrity sha512-bY6fj56OUQ0hU1KjFNDQuJFezqKdrAyFdIevADiqrWHwSlbmBNMHp5ak2f40Pm8JTFyM2mqxkG6ngkHO11f/lg== 138 | 139 | ansi-styles@^3.2.0, ansi-styles@^3.2.1: 140 | version "3.2.1" 141 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-3.2.1.tgz#41fbb20243e50b12be0f04b8dedbf07520ce841d" 142 | integrity sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA== 143 | dependencies: 144 | color-convert "^1.9.0" 145 | 146 | ansi-styles@^4.0.0, ansi-styles@^4.1.0: 147 | version "4.2.1" 148 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-4.2.1.tgz#90ae75c424d008d2624c5bf29ead3177ebfcf359" 149 | integrity sha512-9VGjrMsG1vePxcSweQsN20KY/c4zN0h9fLjqAbwbPfahM3t+NL+M9HC8xeXG2I8pX5NoamTGNuomEUFI7fcUjA== 150 | dependencies: 151 | "@types/color-name" "^1.1.1" 152 | color-convert "^2.0.1" 153 | 154 | anymatch@~3.1.1: 155 | version "3.1.1" 156 | resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-3.1.1.tgz#c55ecf02185e2469259399310c173ce31233b142" 157 | integrity sha512-mM8522psRCqzV+6LhomX5wgp25YVibjh8Wj23I5RPkPppSVSjyKD2A2mBJmWGa+KN7f2D6LNh9jkBCeyLktzjg== 158 | dependencies: 159 | normalize-path "^3.0.0" 160 | picomatch "^2.0.4" 161 | 162 | argparse@^1.0.7: 163 | version "1.0.10" 164 | resolved "https://registry.yarnpkg.com/argparse/-/argparse-1.0.10.tgz#bcd6791ea5ae09725e17e5ad988134cd40b3d911" 165 | integrity sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg== 166 | dependencies: 167 | sprintf-js "~1.0.2" 168 | 169 | array-find-index@^1.0.1: 170 | version "1.0.2" 171 | resolved "https://registry.yarnpkg.com/array-find-index/-/array-find-index-1.0.2.tgz#df010aa1287e164bbda6f9723b0a96a1ec4187a1" 172 | integrity sha1-3wEKoSh+Fku9pvlyOwqWoexBh6E= 173 | 174 | array-includes@^3.0.3: 175 | version "3.1.1" 176 | resolved "https://registry.yarnpkg.com/array-includes/-/array-includes-3.1.1.tgz#cdd67e6852bdf9c1215460786732255ed2459348" 177 | integrity sha512-c2VXaCHl7zPsvpkFsw4nxvFie4fh1ur9bpcgsVkIjqn0H/Xwdg+7fv3n2r/isyS8EBj5b06M9kHyZuIr4El6WQ== 178 | dependencies: 179 | define-properties "^1.1.3" 180 | es-abstract "^1.17.0" 181 | is-string "^1.0.5" 182 | 183 | array-union@^2.1.0: 184 | version "2.1.0" 185 | resolved "https://registry.yarnpkg.com/array-union/-/array-union-2.1.0.tgz#b798420adbeb1de828d84acd8a2e23d3efe85e8d" 186 | integrity sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw== 187 | 188 | arrify@^1.0.1: 189 | version "1.0.1" 190 | resolved "https://registry.yarnpkg.com/arrify/-/arrify-1.0.1.tgz#898508da2226f380df904728456849c1501a4b0d" 191 | integrity sha1-iYUI2iIm84DfkEcoRWhJwVAaSw0= 192 | 193 | astral-regex@^1.0.0: 194 | version "1.0.0" 195 | resolved "https://registry.yarnpkg.com/astral-regex/-/astral-regex-1.0.0.tgz#6c8c3fb827dd43ee3918f27b82782ab7658a6fd9" 196 | integrity sha512-+Ryf6g3BKoRc7jfp7ad8tM4TtMiaWvbF/1/sQcZPkkS7ag3D5nMBCe2UfOTONtAkaG0tO0ij3C5Lwmf1EiyjHg== 197 | 198 | autoprefixer@^9.6.1, autoprefixer@^9.7.4: 199 | version "9.7.4" 200 | resolved "https://registry.yarnpkg.com/autoprefixer/-/autoprefixer-9.7.4.tgz#f8bf3e06707d047f0641d87aee8cfb174b2a5378" 201 | integrity sha512-g0Ya30YrMBAEZk60lp+qfX5YQllG+S5W3GYCFvyHTvhOki0AEQJLPEcIuGRsqVwLi8FvXPVtwTGhfr38hVpm0g== 202 | dependencies: 203 | browserslist "^4.8.3" 204 | caniuse-lite "^1.0.30001020" 205 | chalk "^2.4.2" 206 | normalize-range "^0.1.2" 207 | num2fraction "^1.2.2" 208 | postcss "^7.0.26" 209 | postcss-value-parser "^4.0.2" 210 | 211 | balanced-match@^1.0.0: 212 | version "1.0.0" 213 | resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.0.tgz#89b4d199ab2bee49de164ea02b89ce462d71b767" 214 | integrity sha1-ibTRmasr7kneFk6gK4nORi1xt2c= 215 | 216 | binary-extensions@^2.0.0: 217 | version "2.0.0" 218 | resolved "https://registry.yarnpkg.com/binary-extensions/-/binary-extensions-2.0.0.tgz#23c0df14f6a88077f5f986c0d167ec03c3d5537c" 219 | integrity sha512-Phlt0plgpIIBOGTT/ehfFnbNlfsDEiqmzE2KRXoX1bLIlir4X/MR+zSyBEkL05ffWgnRSf/DXv+WrUAVr93/ow== 220 | 221 | boolbase@^1.0.0, boolbase@~1.0.0: 222 | version "1.0.0" 223 | resolved "https://registry.yarnpkg.com/boolbase/-/boolbase-1.0.0.tgz#68dff5fbe60c51eb37725ea9e3ed310dcc1e776e" 224 | integrity sha1-aN/1++YMUes3cl6p4+0xDcwed24= 225 | 226 | brace-expansion@^1.1.7: 227 | version "1.1.11" 228 | resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.11.tgz#3c7fcbf529d87226f3d2f52b966ff5271eb441dd" 229 | integrity sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA== 230 | dependencies: 231 | balanced-match "^1.0.0" 232 | concat-map "0.0.1" 233 | 234 | braces@^3.0.1, braces@~3.0.2: 235 | version "3.0.2" 236 | resolved "https://registry.yarnpkg.com/braces/-/braces-3.0.2.tgz#3454e1a462ee8d599e236df336cd9ea4f8afe107" 237 | integrity sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A== 238 | dependencies: 239 | fill-range "^7.0.1" 240 | 241 | browserslist@^4.0.0, browserslist@^4.6.4, browserslist@^4.8.3: 242 | version "4.8.7" 243 | resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-4.8.7.tgz#ec8301ff415e6a42c949d0e66b405eb539c532d0" 244 | integrity sha512-gFOnZNYBHrEyUML0xr5NJ6edFaaKbTFX9S9kQHlYfCP0Rit/boRIz4G+Avq6/4haEKJXdGGUnoolx+5MWW2BoA== 245 | dependencies: 246 | caniuse-lite "^1.0.30001027" 247 | electron-to-chromium "^1.3.349" 248 | node-releases "^1.1.49" 249 | 250 | buffer-from@^1.0.0: 251 | version "1.1.1" 252 | resolved "https://registry.yarnpkg.com/buffer-from/-/buffer-from-1.1.1.tgz#32713bc028f75c02fdb710d7c7bcec1f2c6070ef" 253 | integrity sha512-MQcXEUbCKtEo7bhqEs6560Hyd4XaovZlO/k9V3hjVUF/zwW7KBVdSK4gIt/bzwS9MbR5qob+F5jusZsb0YQK2A== 254 | 255 | caller-callsite@^2.0.0: 256 | version "2.0.0" 257 | resolved "https://registry.yarnpkg.com/caller-callsite/-/caller-callsite-2.0.0.tgz#847e0fce0a223750a9a027c54b33731ad3154134" 258 | integrity sha1-hH4PzgoiN1CpoCfFSzNzGtMVQTQ= 259 | dependencies: 260 | callsites "^2.0.0" 261 | 262 | caller-path@^2.0.0: 263 | version "2.0.0" 264 | resolved "https://registry.yarnpkg.com/caller-path/-/caller-path-2.0.0.tgz#468f83044e369ab2010fac5f06ceee15bb2cb1f4" 265 | integrity sha1-Ro+DBE42mrIBD6xfBs7uFbsssfQ= 266 | dependencies: 267 | caller-callsite "^2.0.0" 268 | 269 | callsites@^2.0.0: 270 | version "2.0.0" 271 | resolved "https://registry.yarnpkg.com/callsites/-/callsites-2.0.0.tgz#06eb84f00eea413da86affefacbffb36093b3c50" 272 | integrity sha1-BuuE8A7qQT2oav/vrL/7Ngk7PFA= 273 | 274 | callsites@^3.0.0: 275 | version "3.1.0" 276 | resolved "https://registry.yarnpkg.com/callsites/-/callsites-3.1.0.tgz#b3630abd8943432f54b3f0519238e33cd7df2f73" 277 | integrity sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ== 278 | 279 | camelcase-keys@^4.0.0: 280 | version "4.2.0" 281 | resolved "https://registry.yarnpkg.com/camelcase-keys/-/camelcase-keys-4.2.0.tgz#a2aa5fb1af688758259c32c141426d78923b9b77" 282 | integrity sha1-oqpfsa9oh1glnDLBQUJteJI7m3c= 283 | dependencies: 284 | camelcase "^4.1.0" 285 | map-obj "^2.0.0" 286 | quick-lru "^1.0.0" 287 | 288 | camelcase@^4.1.0: 289 | version "4.1.0" 290 | resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-4.1.0.tgz#d545635be1e33c542649c69173e5de6acfae34dd" 291 | integrity sha1-1UVjW+HjPFQmScaRc+Xeas+uNN0= 292 | 293 | camelcase@^5.0.0: 294 | version "5.3.1" 295 | resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-5.3.1.tgz#e3c9b31569e106811df242f715725a1f4c494320" 296 | integrity sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg== 297 | 298 | caniuse-api@^3.0.0: 299 | version "3.0.0" 300 | resolved "https://registry.yarnpkg.com/caniuse-api/-/caniuse-api-3.0.0.tgz#5e4d90e2274961d46291997df599e3ed008ee4c0" 301 | integrity sha512-bsTwuIg/BZZK/vreVTYYbSWoe2F+71P7K5QGEX+pT250DZbfU1MQ5prOKpPR+LL6uWKK3KMwMCAS74QB3Um1uw== 302 | dependencies: 303 | browserslist "^4.0.0" 304 | caniuse-lite "^1.0.0" 305 | lodash.memoize "^4.1.2" 306 | lodash.uniq "^4.5.0" 307 | 308 | caniuse-lite@^1.0.0, caniuse-lite@^1.0.30000981, caniuse-lite@^1.0.30001020, caniuse-lite@^1.0.30001027: 309 | version "1.0.30001028" 310 | resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001028.tgz#f2241242ac70e0fa9cda55c2776d32a0867971c2" 311 | integrity sha512-Vnrq+XMSHpT7E+LWoIYhs3Sne8h9lx9YJV3acH3THNCwU/9zV93/ta4xVfzTtnqd3rvnuVpVjE3DFqf56tr3aQ== 312 | 313 | chalk@^2.0.0, chalk@^2.0.1, chalk@^2.1.0, chalk@^2.4.1, chalk@^2.4.2: 314 | version "2.4.2" 315 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-2.4.2.tgz#cd42541677a54333cf541a49108c1432b44c9424" 316 | integrity sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ== 317 | dependencies: 318 | ansi-styles "^3.2.1" 319 | escape-string-regexp "^1.0.5" 320 | supports-color "^5.3.0" 321 | 322 | chalk@^3.0.0: 323 | version "3.0.0" 324 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-3.0.0.tgz#3f73c2bf526591f574cc492c51e2456349f844e4" 325 | integrity sha512-4D3B6Wf41KOYRFdszmDqMCGq5VV/uMAB273JILmO+3jAlh8X4qDtdtgCR3fxtbLEMzSx22QdhnDcJvu2u1fVwg== 326 | dependencies: 327 | ansi-styles "^4.1.0" 328 | supports-color "^7.1.0" 329 | 330 | chardet@^0.7.0: 331 | version "0.7.0" 332 | resolved "https://registry.yarnpkg.com/chardet/-/chardet-0.7.0.tgz#90094849f0937f2eedc2425d0d28a9e5f0cbad9e" 333 | integrity sha512-mT8iDcrh03qDGRRmoA2hmBJnxpllMR+0/0qlzjqZES6NdiWDcZkCNAk4rPFZ9Q85r27unkiNNg8ZOiwZXBHwcA== 334 | 335 | chokidar@^3.3.0: 336 | version "3.3.1" 337 | resolved "https://registry.yarnpkg.com/chokidar/-/chokidar-3.3.1.tgz#c84e5b3d18d9a4d77558fef466b1bf16bbeb3450" 338 | integrity sha512-4QYCEWOcK3OJrxwvyyAOxFuhpvOVCYkr33LPfFNBjAD/w3sEzWsp2BUOkI4l9bHvWioAd0rc6NlHUOEaWkTeqg== 339 | dependencies: 340 | anymatch "~3.1.1" 341 | braces "~3.0.2" 342 | glob-parent "~5.1.0" 343 | is-binary-path "~2.1.0" 344 | is-glob "~4.0.1" 345 | normalize-path "~3.0.0" 346 | readdirp "~3.3.0" 347 | optionalDependencies: 348 | fsevents "~2.1.2" 349 | 350 | clean-stack@^2.0.0: 351 | version "2.2.0" 352 | resolved "https://registry.yarnpkg.com/clean-stack/-/clean-stack-2.2.0.tgz#ee8472dbb129e727b31e8a10a427dee9dfe4008b" 353 | integrity sha512-4diC9HaTE+KRAMWhDhrGOECgWZxoevMc5TlkObMqNSsVU62PYzXZ/SMTjzyGAFF1YusgxGcSWTEXBhp0CPwQ1A== 354 | 355 | cli-cursor@^2.1.0: 356 | version "2.1.0" 357 | resolved "https://registry.yarnpkg.com/cli-cursor/-/cli-cursor-2.1.0.tgz#b35dac376479facc3e94747d41d0d0f5238ffcb5" 358 | integrity sha1-s12sN2R5+sw+lHR9QdDQ9SOP/LU= 359 | dependencies: 360 | restore-cursor "^2.0.0" 361 | 362 | cli-width@^2.0.0: 363 | version "2.2.0" 364 | resolved "https://registry.yarnpkg.com/cli-width/-/cli-width-2.2.0.tgz#ff19ede8a9a5e579324147b0c11f0fbcbabed639" 365 | integrity sha1-/xnt6Kml5XkyQUewwR8PvLq+1jk= 366 | 367 | cliui@^6.0.0: 368 | version "6.0.0" 369 | resolved "https://registry.yarnpkg.com/cliui/-/cliui-6.0.0.tgz#511d702c0c4e41ca156d7d0e96021f23e13225b1" 370 | integrity sha512-t6wbgtoCXvAzst7QgXxJYqPt0usEfbgQdftEPbLL/cvv6HPE5VgvqCuAIDR0NgU52ds6rFwqrgakNLrHEjCbrQ== 371 | dependencies: 372 | string-width "^4.2.0" 373 | strip-ansi "^6.0.0" 374 | wrap-ansi "^6.2.0" 375 | 376 | coa@^2.0.2: 377 | version "2.0.2" 378 | resolved "https://registry.yarnpkg.com/coa/-/coa-2.0.2.tgz#43f6c21151b4ef2bf57187db0d73de229e3e7ec3" 379 | integrity sha512-q5/jG+YQnSy4nRTV4F7lPepBJZ8qBNJJDBuJdoejDyLXgmL7IEo+Le2JDZudFTFt7mrCqIRaSjws4ygRCTCAXA== 380 | dependencies: 381 | "@types/q" "^1.5.1" 382 | chalk "^2.4.1" 383 | q "^1.1.2" 384 | 385 | color-convert@^1.9.0, color-convert@^1.9.1: 386 | version "1.9.3" 387 | resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-1.9.3.tgz#bb71850690e1f136567de629d2d5471deda4c1e8" 388 | integrity sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg== 389 | dependencies: 390 | color-name "1.1.3" 391 | 392 | color-convert@^2.0.1: 393 | version "2.0.1" 394 | resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-2.0.1.tgz#72d3a68d598c9bdb3af2ad1e84f21d896abd4de3" 395 | integrity sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ== 396 | dependencies: 397 | color-name "~1.1.4" 398 | 399 | color-name@1.1.3: 400 | version "1.1.3" 401 | resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.3.tgz#a7d0558bd89c42f795dd42328f740831ca53bc25" 402 | integrity sha1-p9BVi9icQveV3UIyj3QIMcpTvCU= 403 | 404 | color-name@^1.0.0, color-name@~1.1.4: 405 | version "1.1.4" 406 | resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.4.tgz#c2a09a87acbde69543de6f63fa3995c826c536a2" 407 | integrity sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA== 408 | 409 | color-string@^1.5.2: 410 | version "1.5.3" 411 | resolved "https://registry.yarnpkg.com/color-string/-/color-string-1.5.3.tgz#c9bbc5f01b58b5492f3d6857459cb6590ce204cc" 412 | integrity sha512-dC2C5qeWoYkxki5UAXapdjqO672AM4vZuPGRQfO8b5HKuKGBbKWpITyDYN7TOFKvRW7kOgAn3746clDBMDJyQw== 413 | dependencies: 414 | color-name "^1.0.0" 415 | simple-swizzle "^0.2.2" 416 | 417 | color@^3.0.0: 418 | version "3.1.2" 419 | resolved "https://registry.yarnpkg.com/color/-/color-3.1.2.tgz#68148e7f85d41ad7649c5fa8c8106f098d229e10" 420 | integrity sha512-vXTJhHebByxZn3lDvDJYw4lR5+uB3vuoHsuYA5AKuxRVn5wzzIfQKGLBmgdVRHKTJYeK5rvJcHnrd0Li49CFpg== 421 | dependencies: 422 | color-convert "^1.9.1" 423 | color-string "^1.5.2" 424 | 425 | commander@^2.20.0: 426 | version "2.20.3" 427 | resolved "https://registry.yarnpkg.com/commander/-/commander-2.20.3.tgz#fd485e84c03eb4881c20722ba48035e8531aeb33" 428 | integrity sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ== 429 | 430 | concat-map@0.0.1: 431 | version "0.0.1" 432 | resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b" 433 | integrity sha1-2Klr13/Wjfd5OnMDajug1UBdR3s= 434 | 435 | contains-path@^0.1.0: 436 | version "0.1.0" 437 | resolved "https://registry.yarnpkg.com/contains-path/-/contains-path-0.1.0.tgz#fe8cf184ff6670b6baef01a9d4861a5cbec4120a" 438 | integrity sha1-/ozxhP9mcLa67wGp1IYaXL7EEgo= 439 | 440 | cosmiconfig@^5.0.0: 441 | version "5.2.1" 442 | resolved "https://registry.yarnpkg.com/cosmiconfig/-/cosmiconfig-5.2.1.tgz#040f726809c591e77a17c0a3626ca45b4f168b1a" 443 | integrity sha512-H65gsXo1SKjf8zmrJ67eJk8aIRKV5ff2D4uKZIBZShbhGSpEmsQOPW/SKMKYhSTrqR7ufy6RP69rPogdaPh/kA== 444 | dependencies: 445 | import-fresh "^2.0.0" 446 | is-directory "^0.3.1" 447 | js-yaml "^3.13.1" 448 | parse-json "^4.0.0" 449 | 450 | cross-spawn@^6.0.5: 451 | version "6.0.5" 452 | resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-6.0.5.tgz#4a5ec7c64dfae22c3a14124dbacdee846d80cbc4" 453 | integrity sha512-eTVLrBSt7fjbDygz805pMnstIs2VTBNkRm0qxZd+M7A5XDdxVRWO5MxGBXZhjY4cqLYLdtrGqRf8mBPmzwSpWQ== 454 | dependencies: 455 | nice-try "^1.0.4" 456 | path-key "^2.0.1" 457 | semver "^5.5.0" 458 | shebang-command "^1.2.0" 459 | which "^1.2.9" 460 | 461 | css-blank-pseudo@^0.1.4: 462 | version "0.1.4" 463 | resolved "https://registry.yarnpkg.com/css-blank-pseudo/-/css-blank-pseudo-0.1.4.tgz#dfdefd3254bf8a82027993674ccf35483bfcb3c5" 464 | integrity sha512-LHz35Hr83dnFeipc7oqFDmsjHdljj3TQtxGGiNWSOsTLIAubSm4TEz8qCaKFpk7idaQ1GfWscF4E6mgpBysA1w== 465 | dependencies: 466 | postcss "^7.0.5" 467 | 468 | css-color-names@0.0.4, css-color-names@^0.0.4: 469 | version "0.0.4" 470 | resolved "https://registry.yarnpkg.com/css-color-names/-/css-color-names-0.0.4.tgz#808adc2e79cf84738069b646cb20ec27beb629e0" 471 | integrity sha1-gIrcLnnPhHOAabZGyyDsJ762KeA= 472 | 473 | css-declaration-sorter@^4.0.1: 474 | version "4.0.1" 475 | resolved "https://registry.yarnpkg.com/css-declaration-sorter/-/css-declaration-sorter-4.0.1.tgz#c198940f63a76d7e36c1e71018b001721054cb22" 476 | integrity sha512-BcxQSKTSEEQUftYpBVnsH4SF05NTuBokb19/sBt6asXGKZ/6VP7PLG1CBCkFDYOnhXhPh0jMhO6xZ71oYHXHBA== 477 | dependencies: 478 | postcss "^7.0.1" 479 | timsort "^0.3.0" 480 | 481 | css-has-pseudo@^0.10.0: 482 | version "0.10.0" 483 | resolved "https://registry.yarnpkg.com/css-has-pseudo/-/css-has-pseudo-0.10.0.tgz#3c642ab34ca242c59c41a125df9105841f6966ee" 484 | integrity sha512-Z8hnfsZu4o/kt+AuFzeGpLVhFOGO9mluyHBaA2bA8aCGTwah5sT3WV/fTHH8UNZUytOIImuGPrl/prlb4oX4qQ== 485 | dependencies: 486 | postcss "^7.0.6" 487 | postcss-selector-parser "^5.0.0-rc.4" 488 | 489 | css-prefers-color-scheme@^3.1.1: 490 | version "3.1.1" 491 | resolved "https://registry.yarnpkg.com/css-prefers-color-scheme/-/css-prefers-color-scheme-3.1.1.tgz#6f830a2714199d4f0d0d0bb8a27916ed65cff1f4" 492 | integrity sha512-MTu6+tMs9S3EUqzmqLXEcgNRbNkkD/TGFvowpeoWJn5Vfq7FMgsmRQs9X5NXAURiOBmOxm/lLjsDNXDE6k9bhg== 493 | dependencies: 494 | postcss "^7.0.5" 495 | 496 | css-select-base-adapter@^0.1.1: 497 | version "0.1.1" 498 | resolved "https://registry.yarnpkg.com/css-select-base-adapter/-/css-select-base-adapter-0.1.1.tgz#3b2ff4972cc362ab88561507a95408a1432135d7" 499 | integrity sha512-jQVeeRG70QI08vSTwf1jHxp74JoZsr2XSgETae8/xC8ovSnL2WF87GTLO86Sbwdt2lK4Umg4HnnwMO4YF3Ce7w== 500 | 501 | css-select@^2.0.0: 502 | version "2.1.0" 503 | resolved "https://registry.yarnpkg.com/css-select/-/css-select-2.1.0.tgz#6a34653356635934a81baca68d0255432105dbef" 504 | integrity sha512-Dqk7LQKpwLoH3VovzZnkzegqNSuAziQyNZUcrdDM401iY+R5NkGBXGmtO05/yaXQziALuPogeG0b7UAgjnTJTQ== 505 | dependencies: 506 | boolbase "^1.0.0" 507 | css-what "^3.2.1" 508 | domutils "^1.7.0" 509 | nth-check "^1.0.2" 510 | 511 | css-tree@1.0.0-alpha.37: 512 | version "1.0.0-alpha.37" 513 | resolved "https://registry.yarnpkg.com/css-tree/-/css-tree-1.0.0-alpha.37.tgz#98bebd62c4c1d9f960ec340cf9f7522e30709a22" 514 | integrity sha512-DMxWJg0rnz7UgxKT0Q1HU/L9BeJI0M6ksor0OgqOnF+aRCDWg/N2641HmVyU9KVIu0OVVWOb2IpC9A+BJRnejg== 515 | dependencies: 516 | mdn-data "2.0.4" 517 | source-map "^0.6.1" 518 | 519 | css-what@^3.2.1: 520 | version "3.2.1" 521 | resolved "https://registry.yarnpkg.com/css-what/-/css-what-3.2.1.tgz#f4a8f12421064621b456755e34a03a2c22df5da1" 522 | integrity sha512-WwOrosiQTvyms+Ti5ZC5vGEK0Vod3FTt1ca+payZqvKuGJF+dq7bG63DstxtN0dpm6FxY27a/zS3Wten+gEtGw== 523 | 524 | cssdb@^4.4.0: 525 | version "4.4.0" 526 | resolved "https://registry.yarnpkg.com/cssdb/-/cssdb-4.4.0.tgz#3bf2f2a68c10f5c6a08abd92378331ee803cddb0" 527 | integrity sha512-LsTAR1JPEM9TpGhl/0p3nQecC2LJ0kD8X5YARu1hk/9I1gril5vDtMZyNxcEpxxDj34YNck/ucjuoUd66K03oQ== 528 | 529 | cssesc@^2.0.0: 530 | version "2.0.0" 531 | resolved "https://registry.yarnpkg.com/cssesc/-/cssesc-2.0.0.tgz#3b13bd1bb1cb36e1bcb5a4dcd27f54c5dcb35703" 532 | integrity sha512-MsCAG1z9lPdoO/IUMLSBWBSVxVtJ1395VGIQ+Fc2gNdkQ1hNDnQdw3YhA71WJCBW1vdwA0cAnk/DnW6bqoEUYg== 533 | 534 | cssesc@^3.0.0: 535 | version "3.0.0" 536 | resolved "https://registry.yarnpkg.com/cssesc/-/cssesc-3.0.0.tgz#37741919903b868565e1c09ea747445cd18983ee" 537 | integrity sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg== 538 | 539 | cssnano-preset-default@^4.0.7: 540 | version "4.0.7" 541 | resolved "https://registry.yarnpkg.com/cssnano-preset-default/-/cssnano-preset-default-4.0.7.tgz#51ec662ccfca0f88b396dcd9679cdb931be17f76" 542 | integrity sha512-x0YHHx2h6p0fCl1zY9L9roD7rnlltugGu7zXSKQx6k2rYw0Hi3IqxcoAGF7u9Q5w1nt7vK0ulxV8Lo+EvllGsA== 543 | dependencies: 544 | css-declaration-sorter "^4.0.1" 545 | cssnano-util-raw-cache "^4.0.1" 546 | postcss "^7.0.0" 547 | postcss-calc "^7.0.1" 548 | postcss-colormin "^4.0.3" 549 | postcss-convert-values "^4.0.1" 550 | postcss-discard-comments "^4.0.2" 551 | postcss-discard-duplicates "^4.0.2" 552 | postcss-discard-empty "^4.0.1" 553 | postcss-discard-overridden "^4.0.1" 554 | postcss-merge-longhand "^4.0.11" 555 | postcss-merge-rules "^4.0.3" 556 | postcss-minify-font-values "^4.0.2" 557 | postcss-minify-gradients "^4.0.2" 558 | postcss-minify-params "^4.0.2" 559 | postcss-minify-selectors "^4.0.2" 560 | postcss-normalize-charset "^4.0.1" 561 | postcss-normalize-display-values "^4.0.2" 562 | postcss-normalize-positions "^4.0.2" 563 | postcss-normalize-repeat-style "^4.0.2" 564 | postcss-normalize-string "^4.0.2" 565 | postcss-normalize-timing-functions "^4.0.2" 566 | postcss-normalize-unicode "^4.0.1" 567 | postcss-normalize-url "^4.0.1" 568 | postcss-normalize-whitespace "^4.0.2" 569 | postcss-ordered-values "^4.1.2" 570 | postcss-reduce-initial "^4.0.3" 571 | postcss-reduce-transforms "^4.0.2" 572 | postcss-svgo "^4.0.2" 573 | postcss-unique-selectors "^4.0.1" 574 | 575 | cssnano-util-get-arguments@^4.0.0: 576 | version "4.0.0" 577 | resolved "https://registry.yarnpkg.com/cssnano-util-get-arguments/-/cssnano-util-get-arguments-4.0.0.tgz#ed3a08299f21d75741b20f3b81f194ed49cc150f" 578 | integrity sha1-7ToIKZ8h11dBsg87gfGU7UnMFQ8= 579 | 580 | cssnano-util-get-match@^4.0.0: 581 | version "4.0.0" 582 | resolved "https://registry.yarnpkg.com/cssnano-util-get-match/-/cssnano-util-get-match-4.0.0.tgz#c0e4ca07f5386bb17ec5e52250b4f5961365156d" 583 | integrity sha1-wOTKB/U4a7F+xeUiULT1lhNlFW0= 584 | 585 | cssnano-util-raw-cache@^4.0.1: 586 | version "4.0.1" 587 | resolved "https://registry.yarnpkg.com/cssnano-util-raw-cache/-/cssnano-util-raw-cache-4.0.1.tgz#b26d5fd5f72a11dfe7a7846fb4c67260f96bf282" 588 | integrity sha512-qLuYtWK2b2Dy55I8ZX3ky1Z16WYsx544Q0UWViebptpwn/xDBmog2TLg4f+DBMg1rJ6JDWtn96WHbOKDWt1WQA== 589 | dependencies: 590 | postcss "^7.0.0" 591 | 592 | cssnano-util-same-parent@^4.0.0: 593 | version "4.0.1" 594 | resolved "https://registry.yarnpkg.com/cssnano-util-same-parent/-/cssnano-util-same-parent-4.0.1.tgz#574082fb2859d2db433855835d9a8456ea18bbf3" 595 | integrity sha512-WcKx5OY+KoSIAxBW6UBBRay1U6vkYheCdjyVNDm85zt5K9mHoGOfsOsqIszfAqrQQFIIKgjh2+FDgIj/zsl21Q== 596 | 597 | cssnano@^4.1.10: 598 | version "4.1.10" 599 | resolved "https://registry.yarnpkg.com/cssnano/-/cssnano-4.1.10.tgz#0ac41f0b13d13d465487e111b778d42da631b8b2" 600 | integrity sha512-5wny+F6H4/8RgNlaqab4ktc3e0/blKutmq8yNlBFXA//nSFFAqAngjNVRzUvCgYROULmZZUoosL/KSoZo5aUaQ== 601 | dependencies: 602 | cosmiconfig "^5.0.0" 603 | cssnano-preset-default "^4.0.7" 604 | is-resolvable "^1.0.0" 605 | postcss "^7.0.0" 606 | 607 | csso@^4.0.2: 608 | version "4.0.2" 609 | resolved "https://registry.yarnpkg.com/csso/-/csso-4.0.2.tgz#e5f81ab3a56b8eefb7f0092ce7279329f454de3d" 610 | integrity sha512-kS7/oeNVXkHWxby5tHVxlhjizRCSv8QdU7hB2FpdAibDU8FjTAolhNjKNTiLzXtUrKT6HwClE81yXwEk1309wg== 611 | dependencies: 612 | css-tree "1.0.0-alpha.37" 613 | 614 | currently-unhandled@^0.4.1: 615 | version "0.4.1" 616 | resolved "https://registry.yarnpkg.com/currently-unhandled/-/currently-unhandled-0.4.1.tgz#988df33feab191ef799a61369dd76c17adf957ea" 617 | integrity sha1-mI3zP+qxke95mmE2nddsF635V+o= 618 | dependencies: 619 | array-find-index "^1.0.1" 620 | 621 | debug-log@^1.0.0: 622 | version "1.0.1" 623 | resolved "https://registry.yarnpkg.com/debug-log/-/debug-log-1.0.1.tgz#2307632d4c04382b8df8a32f70b895046d52745f" 624 | integrity sha1-IwdjLUwEOCuN+KMvcLiVBG1SdF8= 625 | 626 | debug@^2.6.9: 627 | version "2.6.9" 628 | resolved "https://registry.yarnpkg.com/debug/-/debug-2.6.9.tgz#5d128515df134ff327e90a4c93f4e077a536341f" 629 | integrity sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA== 630 | dependencies: 631 | ms "2.0.0" 632 | 633 | debug@^4.0.1: 634 | version "4.1.1" 635 | resolved "https://registry.yarnpkg.com/debug/-/debug-4.1.1.tgz#3b72260255109c6b589cee050f1d516139664791" 636 | integrity sha512-pYAIzeRo8J6KPEaJ0VWOh5Pzkbw/RetuzehGM7QRRX5he4fPHx2rdKMB256ehJCkX+XRQm16eZLqLNS8RSZXZw== 637 | dependencies: 638 | ms "^2.1.1" 639 | 640 | decamelize-keys@^1.0.0: 641 | version "1.1.0" 642 | resolved "https://registry.yarnpkg.com/decamelize-keys/-/decamelize-keys-1.1.0.tgz#d171a87933252807eb3cb61dc1c1445d078df2d9" 643 | integrity sha1-0XGoeTMlKAfrPLYdwcFEXQeN8tk= 644 | dependencies: 645 | decamelize "^1.1.0" 646 | map-obj "^1.0.0" 647 | 648 | decamelize@^1.1.0, decamelize@^1.2.0: 649 | version "1.2.0" 650 | resolved "https://registry.yarnpkg.com/decamelize/-/decamelize-1.2.0.tgz#f6534d15148269b20352e7bee26f501f9a191290" 651 | integrity sha1-9lNNFRSCabIDUue+4m9QH5oZEpA= 652 | 653 | deep-is@~0.1.3: 654 | version "0.1.3" 655 | resolved "https://registry.yarnpkg.com/deep-is/-/deep-is-0.1.3.tgz#b369d6fb5dbc13eecf524f91b070feedc357cf34" 656 | integrity sha1-s2nW+128E+7PUk+RsHD+7cNXzzQ= 657 | 658 | define-properties@^1.1.2, define-properties@^1.1.3: 659 | version "1.1.3" 660 | resolved "https://registry.yarnpkg.com/define-properties/-/define-properties-1.1.3.tgz#cf88da6cbee26fe6db7094f61d870cbd84cee9f1" 661 | integrity sha512-3MqfYKj2lLzdMSf8ZIZE/V+Zuy+BgD6f164e8K2w7dgnpKArBDerGYpM46IYYcjnkdPNMjPk9A6VFB8+3SKlXQ== 662 | dependencies: 663 | object-keys "^1.0.12" 664 | 665 | deglob@^4.0.0: 666 | version "4.0.1" 667 | resolved "https://registry.yarnpkg.com/deglob/-/deglob-4.0.1.tgz#0685c6383992fd6009be10653a2b1116696fad55" 668 | integrity sha512-/g+RDZ7yf2HvoW+E5Cy+K94YhgcFgr6C8LuHZD1O5HoNPkf3KY6RfXJ0DBGlB/NkLi5gml+G9zqRzk9S0mHZCg== 669 | dependencies: 670 | find-root "^1.0.0" 671 | glob "^7.0.5" 672 | ignore "^5.0.0" 673 | pkg-config "^1.1.0" 674 | run-parallel "^1.1.2" 675 | uniq "^1.0.1" 676 | 677 | del-cli@^3.0.0: 678 | version "3.0.0" 679 | resolved "https://registry.yarnpkg.com/del-cli/-/del-cli-3.0.0.tgz#327a15d4c18d6b7e5c849a53ef0d17901bc28197" 680 | integrity sha512-J4HDC2mpcN5aopya4VdkyiFXZaqAoo7ua9VpKbciX3DDUSbtJbPMc3ivggJsAAgS6EqonmbenIiMhBGtJPW9FA== 681 | dependencies: 682 | del "^5.1.0" 683 | meow "^5.0.0" 684 | 685 | del@^5.1.0: 686 | version "5.1.0" 687 | resolved "https://registry.yarnpkg.com/del/-/del-5.1.0.tgz#d9487c94e367410e6eff2925ee58c0c84a75b3a7" 688 | integrity sha512-wH9xOVHnczo9jN2IW68BabcecVPxacIA3g/7z6vhSU/4stOKQzeCRK0yD0A24WiAAUJmmVpWqrERcTxnLo3AnA== 689 | dependencies: 690 | globby "^10.0.1" 691 | graceful-fs "^4.2.2" 692 | is-glob "^4.0.1" 693 | is-path-cwd "^2.2.0" 694 | is-path-inside "^3.0.1" 695 | p-map "^3.0.0" 696 | rimraf "^3.0.0" 697 | slash "^3.0.0" 698 | 699 | dependency-graph@^0.8.0: 700 | version "0.8.1" 701 | resolved "https://registry.yarnpkg.com/dependency-graph/-/dependency-graph-0.8.1.tgz#9b8cae3aa2c7bd95ccb3347a09a2d1047a6c3c5a" 702 | integrity sha512-g213uqF8fyk40W8SBjm079n3CZB4qSpCrA2ye1fLGzH/4HEgB6tzuW2CbLE7leb4t45/6h44Ud59Su1/ROTfqw== 703 | 704 | dir-glob@^3.0.1: 705 | version "3.0.1" 706 | resolved "https://registry.yarnpkg.com/dir-glob/-/dir-glob-3.0.1.tgz#56dbf73d992a4a93ba1584f4534063fd2e41717f" 707 | integrity sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA== 708 | dependencies: 709 | path-type "^4.0.0" 710 | 711 | doctrine@1.5.0: 712 | version "1.5.0" 713 | resolved "https://registry.yarnpkg.com/doctrine/-/doctrine-1.5.0.tgz#379dce730f6166f76cefa4e6707a159b02c5a6fa" 714 | integrity sha1-N53Ocw9hZvds76TmcHoVmwLFpvo= 715 | dependencies: 716 | esutils "^2.0.2" 717 | isarray "^1.0.0" 718 | 719 | doctrine@^2.1.0: 720 | version "2.1.0" 721 | resolved "https://registry.yarnpkg.com/doctrine/-/doctrine-2.1.0.tgz#5cd01fc101621b42c4cd7f5d1a66243716d3f39d" 722 | integrity sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw== 723 | dependencies: 724 | esutils "^2.0.2" 725 | 726 | doctrine@^3.0.0: 727 | version "3.0.0" 728 | resolved "https://registry.yarnpkg.com/doctrine/-/doctrine-3.0.0.tgz#addebead72a6574db783639dc87a121773973961" 729 | integrity sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w== 730 | dependencies: 731 | esutils "^2.0.2" 732 | 733 | dom-serializer@0: 734 | version "0.2.2" 735 | resolved "https://registry.yarnpkg.com/dom-serializer/-/dom-serializer-0.2.2.tgz#1afb81f533717175d478655debc5e332d9f9bb51" 736 | integrity sha512-2/xPb3ORsQ42nHYiSunXkDjPLBaEj/xTwUO4B7XCZQTRk7EBtTOPaygh10YAAh2OI1Qrp6NWfpAhzswj0ydt9g== 737 | dependencies: 738 | domelementtype "^2.0.1" 739 | entities "^2.0.0" 740 | 741 | domelementtype@1: 742 | version "1.3.1" 743 | resolved "https://registry.yarnpkg.com/domelementtype/-/domelementtype-1.3.1.tgz#d048c44b37b0d10a7f2a3d5fee3f4333d790481f" 744 | integrity sha512-BSKB+TSpMpFI/HOxCNr1O8aMOTZ8hT3pM3GQ0w/mWRmkhEDSFJkkyzz4XQsBV44BChwGkrDfMyjVD0eA2aFV3w== 745 | 746 | domelementtype@^2.0.1: 747 | version "2.0.1" 748 | resolved "https://registry.yarnpkg.com/domelementtype/-/domelementtype-2.0.1.tgz#1f8bdfe91f5a78063274e803b4bdcedf6e94f94d" 749 | integrity sha512-5HOHUDsYZWV8FGWN0Njbr/Rn7f/eWSQi1v7+HsUVwXgn8nWWlL64zKDkS0n8ZmQ3mlWOMuXOnR+7Nx/5tMO5AQ== 750 | 751 | domutils@^1.7.0: 752 | version "1.7.0" 753 | resolved "https://registry.yarnpkg.com/domutils/-/domutils-1.7.0.tgz#56ea341e834e06e6748af7a1cb25da67ea9f8c2a" 754 | integrity sha512-Lgd2XcJ/NjEw+7tFvfKxOzCYKZsdct5lczQ2ZaQY8Djz7pfAD3Gbp8ySJWtreII/vDlMVmxwa6pHmdxIYgttDg== 755 | dependencies: 756 | dom-serializer "0" 757 | domelementtype "1" 758 | 759 | dot-prop@^5.2.0: 760 | version "5.2.0" 761 | resolved "https://registry.yarnpkg.com/dot-prop/-/dot-prop-5.2.0.tgz#c34ecc29556dc45f1f4c22697b6f4904e0cc4fcb" 762 | integrity sha512-uEUyaDKoSQ1M4Oq8l45hSE26SnTxL6snNnqvK/VWx5wJhmff5z0FUVJDKDanor/6w3kzE3i7XZOk+7wC0EXr1A== 763 | dependencies: 764 | is-obj "^2.0.0" 765 | 766 | electron-to-chromium@^1.3.349: 767 | version "1.3.358" 768 | resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.3.358.tgz#1964cab37f57d49a5a421a4de4dba3c6baf14608" 769 | integrity sha512-y9xvv+9PplXSUkOSxgtOfwNrqD/948VIScyWURnY27PXprg3PmRl7e8ekRJhnksDNjxLVyBYY6I2nQmNBzdi6g== 770 | 771 | emoji-regex@^7.0.1: 772 | version "7.0.3" 773 | resolved "https://registry.yarnpkg.com/emoji-regex/-/emoji-regex-7.0.3.tgz#933a04052860c85e83c122479c4748a8e4c72156" 774 | integrity sha512-CwBLREIQ7LvYFB0WyRvwhq5N5qPhc6PMjD6bYggFlI5YyDgl+0vxq5VHbMOFqLg7hfWzmu8T5Z1QofhmTIhItA== 775 | 776 | emoji-regex@^8.0.0: 777 | version "8.0.0" 778 | resolved "https://registry.yarnpkg.com/emoji-regex/-/emoji-regex-8.0.0.tgz#e818fd69ce5ccfcb404594f842963bf53164cc37" 779 | integrity sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A== 780 | 781 | entities@^2.0.0: 782 | version "2.0.0" 783 | resolved "https://registry.yarnpkg.com/entities/-/entities-2.0.0.tgz#68d6084cab1b079767540d80e56a39b423e4abf4" 784 | integrity sha512-D9f7V0JSRwIxlRI2mjMqufDrRDnx8p+eEOz7aUM9SuvF8gsBzra0/6tbjl1m8eQHrZlYj6PxqE00hZ1SAIKPLw== 785 | 786 | error-ex@^1.2.0, error-ex@^1.3.1: 787 | version "1.3.2" 788 | resolved "https://registry.yarnpkg.com/error-ex/-/error-ex-1.3.2.tgz#b4ac40648107fdcdcfae242f428bea8a14d4f1bf" 789 | integrity sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g== 790 | dependencies: 791 | is-arrayish "^0.2.1" 792 | 793 | es-abstract@^1.17.0, es-abstract@^1.17.0-next.1, es-abstract@^1.17.2: 794 | version "1.17.4" 795 | resolved "https://registry.yarnpkg.com/es-abstract/-/es-abstract-1.17.4.tgz#e3aedf19706b20e7c2594c35fc0d57605a79e184" 796 | integrity sha512-Ae3um/gb8F0mui/jPL+QiqmglkUsaQf7FwBEHYIFkztkneosu9imhqHpBzQ3h1vit8t5iQ74t6PEVvphBZiuiQ== 797 | dependencies: 798 | es-to-primitive "^1.2.1" 799 | function-bind "^1.1.1" 800 | has "^1.0.3" 801 | has-symbols "^1.0.1" 802 | is-callable "^1.1.5" 803 | is-regex "^1.0.5" 804 | object-inspect "^1.7.0" 805 | object-keys "^1.1.1" 806 | object.assign "^4.1.0" 807 | string.prototype.trimleft "^2.1.1" 808 | string.prototype.trimright "^2.1.1" 809 | 810 | es-to-primitive@^1.2.1: 811 | version "1.2.1" 812 | resolved "https://registry.yarnpkg.com/es-to-primitive/-/es-to-primitive-1.2.1.tgz#e55cd4c9cdc188bcefb03b366c736323fc5c898a" 813 | integrity sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA== 814 | dependencies: 815 | is-callable "^1.1.4" 816 | is-date-object "^1.0.1" 817 | is-symbol "^1.0.2" 818 | 819 | escape-string-regexp@^1.0.5: 820 | version "1.0.5" 821 | resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4" 822 | integrity sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ= 823 | 824 | eslint-config-standard-jsx@8.1.0: 825 | version "8.1.0" 826 | resolved "https://registry.yarnpkg.com/eslint-config-standard-jsx/-/eslint-config-standard-jsx-8.1.0.tgz#314c62a0e6f51f75547f89aade059bec140edfc7" 827 | integrity sha512-ULVC8qH8qCqbU792ZOO6DaiaZyHNS/5CZt3hKqHkEhVlhPEPN3nfBqqxJCyp59XrjIBZPu1chMYe9T2DXZ7TMw== 828 | 829 | eslint-config-standard@14.1.0: 830 | version "14.1.0" 831 | resolved "https://registry.yarnpkg.com/eslint-config-standard/-/eslint-config-standard-14.1.0.tgz#b23da2b76fe5a2eba668374f246454e7058f15d4" 832 | integrity sha512-EF6XkrrGVbvv8hL/kYa/m6vnvmUT+K82pJJc4JJVMM6+Qgqh0pnwprSxdduDLB9p/7bIxD+YV5O0wfb8lmcPbA== 833 | 834 | eslint-import-resolver-node@^0.3.2: 835 | version "0.3.3" 836 | resolved "https://registry.yarnpkg.com/eslint-import-resolver-node/-/eslint-import-resolver-node-0.3.3.tgz#dbaa52b6b2816b50bc6711af75422de808e98404" 837 | integrity sha512-b8crLDo0M5RSe5YG8Pu2DYBj71tSB6OvXkfzwbJU2w7y8P4/yo0MyF8jU26IEuEuHF2K5/gcAJE3LhQGqBBbVg== 838 | dependencies: 839 | debug "^2.6.9" 840 | resolve "^1.13.1" 841 | 842 | eslint-module-utils@^2.4.0: 843 | version "2.5.2" 844 | resolved "https://registry.yarnpkg.com/eslint-module-utils/-/eslint-module-utils-2.5.2.tgz#7878f7504824e1b857dd2505b59a8e5eda26a708" 845 | integrity sha512-LGScZ/JSlqGKiT8OC+cYRxseMjyqt6QO54nl281CK93unD89ijSeRV6An8Ci/2nvWVKe8K/Tqdm75RQoIOCr+Q== 846 | dependencies: 847 | debug "^2.6.9" 848 | pkg-dir "^2.0.0" 849 | 850 | eslint-plugin-es@^2.0.0: 851 | version "2.0.0" 852 | resolved "https://registry.yarnpkg.com/eslint-plugin-es/-/eslint-plugin-es-2.0.0.tgz#0f5f5da5f18aa21989feebe8a73eadefb3432976" 853 | integrity sha512-f6fceVtg27BR02EYnBhgWLFQfK6bN4Ll0nQFrBHOlCsAyxeZkn0NHns5O0YZOPrV1B3ramd6cgFwaoFLcSkwEQ== 854 | dependencies: 855 | eslint-utils "^1.4.2" 856 | regexpp "^3.0.0" 857 | 858 | eslint-plugin-import@~2.18.0: 859 | version "2.18.2" 860 | resolved "https://registry.yarnpkg.com/eslint-plugin-import/-/eslint-plugin-import-2.18.2.tgz#02f1180b90b077b33d447a17a2326ceb400aceb6" 861 | integrity sha512-5ohpsHAiUBRNaBWAF08izwUGlbrJoJJ+W9/TBwsGoR1MnlgfwMIKrFeSjWbt6moabiXW9xNvtFz+97KHRfI4HQ== 862 | dependencies: 863 | array-includes "^3.0.3" 864 | contains-path "^0.1.0" 865 | debug "^2.6.9" 866 | doctrine "1.5.0" 867 | eslint-import-resolver-node "^0.3.2" 868 | eslint-module-utils "^2.4.0" 869 | has "^1.0.3" 870 | minimatch "^3.0.4" 871 | object.values "^1.1.0" 872 | read-pkg-up "^2.0.0" 873 | resolve "^1.11.0" 874 | 875 | eslint-plugin-node@~10.0.0: 876 | version "10.0.0" 877 | resolved "https://registry.yarnpkg.com/eslint-plugin-node/-/eslint-plugin-node-10.0.0.tgz#fd1adbc7a300cf7eb6ac55cf4b0b6fc6e577f5a6" 878 | integrity sha512-1CSyM/QCjs6PXaT18+zuAXsjXGIGo5Rw630rSKwokSs2jrYURQc4R5JZpoanNCqwNmepg+0eZ9L7YiRUJb8jiQ== 879 | dependencies: 880 | eslint-plugin-es "^2.0.0" 881 | eslint-utils "^1.4.2" 882 | ignore "^5.1.1" 883 | minimatch "^3.0.4" 884 | resolve "^1.10.1" 885 | semver "^6.1.0" 886 | 887 | eslint-plugin-promise@~4.2.1: 888 | version "4.2.1" 889 | resolved "https://registry.yarnpkg.com/eslint-plugin-promise/-/eslint-plugin-promise-4.2.1.tgz#845fd8b2260ad8f82564c1222fce44ad71d9418a" 890 | integrity sha512-VoM09vT7bfA7D+upt+FjeBO5eHIJQBUWki1aPvB+vbNiHS3+oGIJGIeyBtKQTME6UPXXy3vV07OL1tHd3ANuDw== 891 | 892 | eslint-plugin-react@~7.14.2: 893 | version "7.14.3" 894 | resolved "https://registry.yarnpkg.com/eslint-plugin-react/-/eslint-plugin-react-7.14.3.tgz#911030dd7e98ba49e1b2208599571846a66bdf13" 895 | integrity sha512-EzdyyBWC4Uz2hPYBiEJrKCUi2Fn+BJ9B/pJQcjw5X+x/H2Nm59S4MJIvL4O5NEE0+WbnQwEBxWY03oUk+Bc3FA== 896 | dependencies: 897 | array-includes "^3.0.3" 898 | doctrine "^2.1.0" 899 | has "^1.0.3" 900 | jsx-ast-utils "^2.1.0" 901 | object.entries "^1.1.0" 902 | object.fromentries "^2.0.0" 903 | object.values "^1.1.0" 904 | prop-types "^15.7.2" 905 | resolve "^1.10.1" 906 | 907 | eslint-plugin-standard@~4.0.0: 908 | version "4.0.1" 909 | resolved "https://registry.yarnpkg.com/eslint-plugin-standard/-/eslint-plugin-standard-4.0.1.tgz#ff0519f7ffaff114f76d1bd7c3996eef0f6e20b4" 910 | integrity sha512-v/KBnfyaOMPmZc/dmc6ozOdWqekGp7bBGq4jLAecEfPGmfKiWS4sA8sC0LqiV9w5qmXAtXVn4M3p1jSyhY85SQ== 911 | 912 | eslint-scope@^5.0.0: 913 | version "5.0.0" 914 | resolved "https://registry.yarnpkg.com/eslint-scope/-/eslint-scope-5.0.0.tgz#e87c8887c73e8d1ec84f1ca591645c358bfc8fb9" 915 | integrity sha512-oYrhJW7S0bxAFDvWqzvMPRm6pcgcnWc4QnofCAqRTRfQC0JcwenzGglTtsLyIuuWFfkqDG9vz67cnttSd53djw== 916 | dependencies: 917 | esrecurse "^4.1.0" 918 | estraverse "^4.1.1" 919 | 920 | eslint-utils@^1.4.2: 921 | version "1.4.3" 922 | resolved "https://registry.yarnpkg.com/eslint-utils/-/eslint-utils-1.4.3.tgz#74fec7c54d0776b6f67e0251040b5806564e981f" 923 | integrity sha512-fbBN5W2xdY45KulGXmLHZ3c3FHfVYmKg0IrAKGOkT/464PQsx2UeIzfz1RmEci+KLm1bBaAzZAh8+/E+XAeZ8Q== 924 | dependencies: 925 | eslint-visitor-keys "^1.1.0" 926 | 927 | eslint-visitor-keys@^1.1.0: 928 | version "1.1.0" 929 | resolved "https://registry.yarnpkg.com/eslint-visitor-keys/-/eslint-visitor-keys-1.1.0.tgz#e2a82cea84ff246ad6fb57f9bde5b46621459ec2" 930 | integrity sha512-8y9YjtM1JBJU/A9Kc+SbaOV4y29sSWckBwMHa+FGtVj5gN/sbnKDf6xJUl+8g7FAij9LVaP8C24DUiH/f/2Z9A== 931 | 932 | eslint@~6.4.0: 933 | version "6.4.0" 934 | resolved "https://registry.yarnpkg.com/eslint/-/eslint-6.4.0.tgz#5aa9227c3fbe921982b2eda94ba0d7fae858611a" 935 | integrity sha512-WTVEzK3lSFoXUovDHEbkJqCVPEPwbhCq4trDktNI6ygs7aO41d4cDT0JFAT5MivzZeVLWlg7vHL+bgrQv/t3vA== 936 | dependencies: 937 | "@babel/code-frame" "^7.0.0" 938 | ajv "^6.10.0" 939 | chalk "^2.1.0" 940 | cross-spawn "^6.0.5" 941 | debug "^4.0.1" 942 | doctrine "^3.0.0" 943 | eslint-scope "^5.0.0" 944 | eslint-utils "^1.4.2" 945 | eslint-visitor-keys "^1.1.0" 946 | espree "^6.1.1" 947 | esquery "^1.0.1" 948 | esutils "^2.0.2" 949 | file-entry-cache "^5.0.1" 950 | functional-red-black-tree "^1.0.1" 951 | glob-parent "^5.0.0" 952 | globals "^11.7.0" 953 | ignore "^4.0.6" 954 | import-fresh "^3.0.0" 955 | imurmurhash "^0.1.4" 956 | inquirer "^6.4.1" 957 | is-glob "^4.0.0" 958 | js-yaml "^3.13.1" 959 | json-stable-stringify-without-jsonify "^1.0.1" 960 | levn "^0.3.0" 961 | lodash "^4.17.14" 962 | minimatch "^3.0.4" 963 | mkdirp "^0.5.1" 964 | natural-compare "^1.4.0" 965 | optionator "^0.8.2" 966 | progress "^2.0.0" 967 | regexpp "^2.0.1" 968 | semver "^6.1.2" 969 | strip-ansi "^5.2.0" 970 | strip-json-comments "^3.0.1" 971 | table "^5.2.3" 972 | text-table "^0.2.0" 973 | v8-compile-cache "^2.0.3" 974 | 975 | espree@^6.1.1: 976 | version "6.1.2" 977 | resolved "https://registry.yarnpkg.com/espree/-/espree-6.1.2.tgz#6c272650932b4f91c3714e5e7b5f5e2ecf47262d" 978 | integrity sha512-2iUPuuPP+yW1PZaMSDM9eyVf8D5P0Hi8h83YtZ5bPc/zHYjII5khoixIUTMO794NOY8F/ThF1Bo8ncZILarUTA== 979 | dependencies: 980 | acorn "^7.1.0" 981 | acorn-jsx "^5.1.0" 982 | eslint-visitor-keys "^1.1.0" 983 | 984 | esprima@^4.0.0: 985 | version "4.0.1" 986 | resolved "https://registry.yarnpkg.com/esprima/-/esprima-4.0.1.tgz#13b04cdb3e6c5d19df91ab6987a8695619b0aa71" 987 | integrity sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A== 988 | 989 | esquery@^1.0.1: 990 | version "1.1.0" 991 | resolved "https://registry.yarnpkg.com/esquery/-/esquery-1.1.0.tgz#c5c0b66f383e7656404f86b31334d72524eddb48" 992 | integrity sha512-MxYW9xKmROWF672KqjO75sszsA8Mxhw06YFeS5VHlB98KDHbOSurm3ArsjO60Eaf3QmGMCP1yn+0JQkNLo/97Q== 993 | dependencies: 994 | estraverse "^4.0.0" 995 | 996 | esrecurse@^4.1.0: 997 | version "4.2.1" 998 | resolved "https://registry.yarnpkg.com/esrecurse/-/esrecurse-4.2.1.tgz#007a3b9fdbc2b3bb87e4879ea19c92fdbd3942cf" 999 | integrity sha512-64RBB++fIOAXPw3P9cy89qfMlvZEXZkqqJkjqqXIvzP5ezRZjW+lPWjw35UX/3EhUPFYbg5ER4JYgDw4007/DQ== 1000 | dependencies: 1001 | estraverse "^4.1.0" 1002 | 1003 | estraverse@^4.0.0, estraverse@^4.1.0, estraverse@^4.1.1: 1004 | version "4.3.0" 1005 | resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-4.3.0.tgz#398ad3f3c5a24948be7725e83d11a7de28cdbd1d" 1006 | integrity sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw== 1007 | 1008 | estree-walker@^0.6.1: 1009 | version "0.6.1" 1010 | resolved "https://registry.yarnpkg.com/estree-walker/-/estree-walker-0.6.1.tgz#53049143f40c6eb918b23671d1fe3219f3a1b362" 1011 | integrity sha512-SqmZANLWS0mnatqbSfRP5g8OXZC12Fgg1IwNtLsyHDzJizORW4khDfjPqJZsemPWBB2uqykUah5YpQ6epsqC/w== 1012 | 1013 | esutils@^2.0.2: 1014 | version "2.0.3" 1015 | resolved "https://registry.yarnpkg.com/esutils/-/esutils-2.0.3.tgz#74d2eb4de0b8da1293711910d50775b9b710ef64" 1016 | integrity sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g== 1017 | 1018 | external-editor@^3.0.3: 1019 | version "3.1.0" 1020 | resolved "https://registry.yarnpkg.com/external-editor/-/external-editor-3.1.0.tgz#cb03f740befae03ea4d283caed2741a83f335495" 1021 | integrity sha512-hMQ4CX1p1izmuLYyZqLMO/qGNw10wSv9QDCPfzXfyFrOaCSSoRfqE1Kf1s5an66J5JZC62NewG+mK49jOCtQew== 1022 | dependencies: 1023 | chardet "^0.7.0" 1024 | iconv-lite "^0.4.24" 1025 | tmp "^0.0.33" 1026 | 1027 | fast-deep-equal@^3.1.1: 1028 | version "3.1.1" 1029 | resolved "https://registry.yarnpkg.com/fast-deep-equal/-/fast-deep-equal-3.1.1.tgz#545145077c501491e33b15ec408c294376e94ae4" 1030 | integrity sha512-8UEa58QDLauDNfpbrX55Q9jrGHThw2ZMdOky5Gl1CDtVeJDPVrG4Jxx1N8jw2gkWaff5UUuX1KJd+9zGe2B+ZA== 1031 | 1032 | fast-glob@^3.0.3: 1033 | version "3.2.2" 1034 | resolved "https://registry.yarnpkg.com/fast-glob/-/fast-glob-3.2.2.tgz#ade1a9d91148965d4bf7c51f72e1ca662d32e63d" 1035 | integrity sha512-UDV82o4uQyljznxwMxyVRJgZZt3O5wENYojjzbaGEGZgeOxkLFf+V4cnUD+krzb2F72E18RhamkMZ7AdeggF7A== 1036 | dependencies: 1037 | "@nodelib/fs.stat" "^2.0.2" 1038 | "@nodelib/fs.walk" "^1.2.3" 1039 | glob-parent "^5.1.0" 1040 | merge2 "^1.3.0" 1041 | micromatch "^4.0.2" 1042 | picomatch "^2.2.1" 1043 | 1044 | fast-json-stable-stringify@^2.0.0: 1045 | version "2.1.0" 1046 | resolved "https://registry.yarnpkg.com/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz#874bf69c6f404c2b5d99c481341399fd55892633" 1047 | integrity sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw== 1048 | 1049 | fast-levenshtein@~2.0.6: 1050 | version "2.0.6" 1051 | resolved "https://registry.yarnpkg.com/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz#3d8a5c66883a16a30ca8643e851f19baa7797917" 1052 | integrity sha1-PYpcZog6FqMMqGQ+hR8Zuqd5eRc= 1053 | 1054 | fastq@^1.6.0: 1055 | version "1.6.0" 1056 | resolved "https://registry.yarnpkg.com/fastq/-/fastq-1.6.0.tgz#4ec8a38f4ac25f21492673adb7eae9cfef47d1c2" 1057 | integrity sha512-jmxqQ3Z/nXoeyDmWAzF9kH1aGZSis6e/SbfPmJpUnyZ0ogr6iscHQaml4wsEepEWSdtmpy+eVXmCRIMpxaXqOA== 1058 | dependencies: 1059 | reusify "^1.0.0" 1060 | 1061 | figures@^2.0.0: 1062 | version "2.0.0" 1063 | resolved "https://registry.yarnpkg.com/figures/-/figures-2.0.0.tgz#3ab1a2d2a62c8bfb431a0c94cb797a2fce27c962" 1064 | integrity sha1-OrGi0qYsi/tDGgyUy3l6L84nyWI= 1065 | dependencies: 1066 | escape-string-regexp "^1.0.5" 1067 | 1068 | file-entry-cache@^5.0.1: 1069 | version "5.0.1" 1070 | resolved "https://registry.yarnpkg.com/file-entry-cache/-/file-entry-cache-5.0.1.tgz#ca0f6efa6dd3d561333fb14515065c2fafdf439c" 1071 | integrity sha512-bCg29ictuBaKUwwArK4ouCaqDgLZcysCFLmM/Yn/FDoqndh/9vNuQfXRDvTuXKLxfD/JtZQGKFT8MGcJBK644g== 1072 | dependencies: 1073 | flat-cache "^2.0.1" 1074 | 1075 | fill-range@^7.0.1: 1076 | version "7.0.1" 1077 | resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-7.0.1.tgz#1919a6a7c75fe38b2c7c77e5198535da9acdda40" 1078 | integrity sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ== 1079 | dependencies: 1080 | to-regex-range "^5.0.1" 1081 | 1082 | find-root@^1.0.0: 1083 | version "1.1.0" 1084 | resolved "https://registry.yarnpkg.com/find-root/-/find-root-1.1.0.tgz#abcfc8ba76f708c42a97b3d685b7e9450bfb9ce4" 1085 | integrity sha512-NKfW6bec6GfKc0SGx1e07QZY9PE99u0Bft/0rzSD5k3sO/vwkVUpDUKVm5Gpp5Ue3YfShPFTX2070tDs5kB9Ng== 1086 | 1087 | find-up@^2.0.0, find-up@^2.1.0: 1088 | version "2.1.0" 1089 | resolved "https://registry.yarnpkg.com/find-up/-/find-up-2.1.0.tgz#45d1b7e506c717ddd482775a2b77920a3c0c57a7" 1090 | integrity sha1-RdG35QbHF93UgndaK3eSCjwMV6c= 1091 | dependencies: 1092 | locate-path "^2.0.0" 1093 | 1094 | find-up@^3.0.0: 1095 | version "3.0.0" 1096 | resolved "https://registry.yarnpkg.com/find-up/-/find-up-3.0.0.tgz#49169f1d7993430646da61ecc5ae355c21c97b73" 1097 | integrity sha512-1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg== 1098 | dependencies: 1099 | locate-path "^3.0.0" 1100 | 1101 | find-up@^4.1.0: 1102 | version "4.1.0" 1103 | resolved "https://registry.yarnpkg.com/find-up/-/find-up-4.1.0.tgz#97afe7d6cdc0bc5928584b7c8d7b16e8a9aa5d19" 1104 | integrity sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw== 1105 | dependencies: 1106 | locate-path "^5.0.0" 1107 | path-exists "^4.0.0" 1108 | 1109 | flat-cache@^2.0.1: 1110 | version "2.0.1" 1111 | resolved "https://registry.yarnpkg.com/flat-cache/-/flat-cache-2.0.1.tgz#5d296d6f04bda44a4630a301413bdbc2ec085ec0" 1112 | integrity sha512-LoQe6yDuUMDzQAEH8sgmh4Md6oZnc/7PjtwjNFSzveXqSHt6ka9fPBuso7IGf9Rz4uqnSnWiFH2B/zj24a5ReA== 1113 | dependencies: 1114 | flatted "^2.0.0" 1115 | rimraf "2.6.3" 1116 | write "1.0.3" 1117 | 1118 | flatted@^2.0.0: 1119 | version "2.0.1" 1120 | resolved "https://registry.yarnpkg.com/flatted/-/flatted-2.0.1.tgz#69e57caa8f0eacbc281d2e2cb458d46fdb449e08" 1121 | integrity sha512-a1hQMktqW9Nmqr5aktAux3JMNqaucxGcjtjWnZLHX7yyPCmlSV3M54nGYbqT8K+0GhF3NBgmJCc3ma+WOgX8Jg== 1122 | 1123 | flatten@^1.0.2: 1124 | version "1.0.3" 1125 | resolved "https://registry.yarnpkg.com/flatten/-/flatten-1.0.3.tgz#c1283ac9f27b368abc1e36d1ff7b04501a30356b" 1126 | integrity sha512-dVsPA/UwQ8+2uoFe5GHtiBMu48dWLTdsuEd7CKGlZlD78r1TTWBvDuFaFGKCo/ZfEr95Uk56vZoX86OsHkUeIg== 1127 | 1128 | fs-extra@^8.1.0: 1129 | version "8.1.0" 1130 | resolved "https://registry.yarnpkg.com/fs-extra/-/fs-extra-8.1.0.tgz#49d43c45a88cd9677668cb7be1b46efdb8d2e1c0" 1131 | integrity sha512-yhlQgA6mnOJUKOsRUFsgJdQCvkKhcz8tlZG5HBQfReYZy46OwLcY+Zia0mtdHsOo9y/hP+CxMN0TU9QxoOtG4g== 1132 | dependencies: 1133 | graceful-fs "^4.2.0" 1134 | jsonfile "^4.0.0" 1135 | universalify "^0.1.0" 1136 | 1137 | fs.realpath@^1.0.0: 1138 | version "1.0.0" 1139 | resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f" 1140 | integrity sha1-FQStJSMVjKpA20onh8sBQRmU6k8= 1141 | 1142 | fsevents@~2.1.2: 1143 | version "2.1.2" 1144 | resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-2.1.2.tgz#4c0a1fb34bc68e543b4b82a9ec392bfbda840805" 1145 | integrity sha512-R4wDiBwZ0KzpgOWetKDug1FZcYhqYnUYKtfZYt4mD5SBz76q0KR4Q9o7GIPamsVPGmW3EYPPJ0dOOjvx32ldZA== 1146 | 1147 | function-bind@^1.1.1: 1148 | version "1.1.1" 1149 | resolved "https://registry.yarnpkg.com/function-bind/-/function-bind-1.1.1.tgz#a56899d3ea3c9bab874bb9773b7c5ede92f4895d" 1150 | integrity sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A== 1151 | 1152 | functional-red-black-tree@^1.0.1: 1153 | version "1.0.1" 1154 | resolved "https://registry.yarnpkg.com/functional-red-black-tree/-/functional-red-black-tree-1.0.1.tgz#1b0ab3bd553b2a0d6399d29c0e3ea0b252078327" 1155 | integrity sha1-GwqzvVU7Kg1jmdKcDj6gslIHgyc= 1156 | 1157 | get-caller-file@^2.0.1: 1158 | version "2.0.5" 1159 | resolved "https://registry.yarnpkg.com/get-caller-file/-/get-caller-file-2.0.5.tgz#4f94412a82db32f36e3b0b9741f8a97feb031f7e" 1160 | integrity sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg== 1161 | 1162 | get-stdin@^7.0.0: 1163 | version "7.0.0" 1164 | resolved "https://registry.yarnpkg.com/get-stdin/-/get-stdin-7.0.0.tgz#8d5de98f15171a125c5e516643c7a6d0ea8a96f6" 1165 | integrity sha512-zRKcywvrXlXsA0v0i9Io4KDRaAw7+a1ZpjRwl9Wox8PFlVCCHra7E9c4kqXCoCM9nR5tBkaTTZRBoCm60bFqTQ== 1166 | 1167 | glob-parent@^5.0.0, glob-parent@^5.1.0, glob-parent@~5.1.0: 1168 | version "5.1.0" 1169 | resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-5.1.0.tgz#5f4c1d1e748d30cd73ad2944b3577a81b081e8c2" 1170 | integrity sha512-qjtRgnIVmOfnKUE3NJAQEdk+lKrxfw8t5ke7SXtfMTHcjsBfOfWXCQfdb30zfDoZQ2IRSIiidmjtbHZPZ++Ihw== 1171 | dependencies: 1172 | is-glob "^4.0.1" 1173 | 1174 | glob@^7.0.5, glob@^7.1.3: 1175 | version "7.1.6" 1176 | resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.6.tgz#141f33b81a7c2492e125594307480c46679278a6" 1177 | integrity sha512-LwaxwyZ72Lk7vZINtNNrywX0ZuLyStrdDtabefZKAY5ZGJhVtgdznluResxNmPitE0SAO+O26sWTHeKSI2wMBA== 1178 | dependencies: 1179 | fs.realpath "^1.0.0" 1180 | inflight "^1.0.4" 1181 | inherits "2" 1182 | minimatch "^3.0.4" 1183 | once "^1.3.0" 1184 | path-is-absolute "^1.0.0" 1185 | 1186 | globals@^11.7.0: 1187 | version "11.12.0" 1188 | resolved "https://registry.yarnpkg.com/globals/-/globals-11.12.0.tgz#ab8795338868a0babd8525758018c2a7eb95c42e" 1189 | integrity sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA== 1190 | 1191 | globby@^10.0.1: 1192 | version "10.0.2" 1193 | resolved "https://registry.yarnpkg.com/globby/-/globby-10.0.2.tgz#277593e745acaa4646c3ab411289ec47a0392543" 1194 | integrity sha512-7dUi7RvCoT/xast/o/dLN53oqND4yk0nsHkhRgn9w65C4PofCLOoJ39iSOg+qVDdWQPIEj+eszMHQ+aLVwwQSg== 1195 | dependencies: 1196 | "@types/glob" "^7.1.1" 1197 | array-union "^2.1.0" 1198 | dir-glob "^3.0.1" 1199 | fast-glob "^3.0.3" 1200 | glob "^7.1.3" 1201 | ignore "^5.1.1" 1202 | merge2 "^1.2.3" 1203 | slash "^3.0.0" 1204 | 1205 | graceful-fs@^4.1.15, graceful-fs@^4.1.2, graceful-fs@^4.1.6, graceful-fs@^4.2.0, graceful-fs@^4.2.2: 1206 | version "4.2.3" 1207 | resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.2.3.tgz#4a12ff1b60376ef09862c2093edd908328be8423" 1208 | integrity sha512-a30VEBm4PEdx1dRB7MFK7BejejvCvBronbLjht+sHuGYj8PHs7M/5Z+rt5lw551vZ7yfTCj4Vuyy3mSJytDWRQ== 1209 | 1210 | has-flag@^3.0.0: 1211 | version "3.0.0" 1212 | resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-3.0.0.tgz#b5d454dc2199ae225699f3467e5a07f3b955bafd" 1213 | integrity sha1-tdRU3CGZriJWmfNGfloH87lVuv0= 1214 | 1215 | has-flag@^4.0.0: 1216 | version "4.0.0" 1217 | resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-4.0.0.tgz#944771fd9c81c81265c4d6941860da06bb59479b" 1218 | integrity sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ== 1219 | 1220 | has-symbols@^1.0.0, has-symbols@^1.0.1: 1221 | version "1.0.1" 1222 | resolved "https://registry.yarnpkg.com/has-symbols/-/has-symbols-1.0.1.tgz#9f5214758a44196c406d9bd76cebf81ec2dd31e8" 1223 | integrity sha512-PLcsoqu++dmEIZB+6totNFKq/7Do+Z0u4oT0zKOJNl3lYK6vGwwu2hjHs+68OEZbTjiUE9bgOABXbP/GvrS0Kg== 1224 | 1225 | has@^1.0.0, has@^1.0.3: 1226 | version "1.0.3" 1227 | resolved "https://registry.yarnpkg.com/has/-/has-1.0.3.tgz#722d7cbfc1f6aa8241f16dd814e011e1f41e8796" 1228 | integrity sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw== 1229 | dependencies: 1230 | function-bind "^1.1.1" 1231 | 1232 | hex-color-regex@^1.1.0: 1233 | version "1.1.0" 1234 | resolved "https://registry.yarnpkg.com/hex-color-regex/-/hex-color-regex-1.1.0.tgz#4c06fccb4602fe2602b3c93df82d7e7dbf1a8a8e" 1235 | integrity sha512-l9sfDFsuqtOqKDsQdqrMRk0U85RZc0RtOR9yPI7mRVOa4FsR/BVnZ0shmQRM96Ji99kYZP/7hn1cedc1+ApsTQ== 1236 | 1237 | hosted-git-info@^2.1.4: 1238 | version "2.8.5" 1239 | resolved "https://registry.yarnpkg.com/hosted-git-info/-/hosted-git-info-2.8.5.tgz#759cfcf2c4d156ade59b0b2dfabddc42a6b9c70c" 1240 | integrity sha512-kssjab8CvdXfcXMXVcvsXum4Hwdq9XGtRD3TteMEvEbq0LXyiNQr6AprqKqfeaDXze7SxWvRxdpwE6ku7ikLkg== 1241 | 1242 | hsl-regex@^1.0.0: 1243 | version "1.0.0" 1244 | resolved "https://registry.yarnpkg.com/hsl-regex/-/hsl-regex-1.0.0.tgz#d49330c789ed819e276a4c0d272dffa30b18fe6e" 1245 | integrity sha1-1JMwx4ntgZ4nakwNJy3/owsY/m4= 1246 | 1247 | hsla-regex@^1.0.0: 1248 | version "1.0.0" 1249 | resolved "https://registry.yarnpkg.com/hsla-regex/-/hsla-regex-1.0.0.tgz#c1ce7a3168c8c6614033a4b5f7877f3b225f9c38" 1250 | integrity sha1-wc56MWjIxmFAM6S194d/OyJfnDg= 1251 | 1252 | html-comment-regex@^1.1.0: 1253 | version "1.1.2" 1254 | resolved "https://registry.yarnpkg.com/html-comment-regex/-/html-comment-regex-1.1.2.tgz#97d4688aeb5c81886a364faa0cad1dda14d433a7" 1255 | integrity sha512-P+M65QY2JQ5Y0G9KKdlDpo0zK+/OHptU5AaBwUfAIDJZk1MYf32Frm84EcOytfJE0t5JvkAnKlmjsXDnWzCJmQ== 1256 | 1257 | iconv-lite@^0.4.24: 1258 | version "0.4.24" 1259 | resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.4.24.tgz#2022b4b25fbddc21d2f524974a474aafe733908b" 1260 | integrity sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA== 1261 | dependencies: 1262 | safer-buffer ">= 2.1.2 < 3" 1263 | 1264 | ignore@^4.0.6: 1265 | version "4.0.6" 1266 | resolved "https://registry.yarnpkg.com/ignore/-/ignore-4.0.6.tgz#750e3db5862087b4737ebac8207ffd1ef27b25fc" 1267 | integrity sha512-cyFDKrqc/YdcWFniJhzI42+AzS+gNwmUzOSFcRCQYwySuBBBy/KjuxWLZ/FHEH6Moq1NizMOBWyTcv8O4OZIMg== 1268 | 1269 | ignore@^5.0.0, ignore@^5.1.1: 1270 | version "5.1.4" 1271 | resolved "https://registry.yarnpkg.com/ignore/-/ignore-5.1.4.tgz#84b7b3dbe64552b6ef0eca99f6743dbec6d97adf" 1272 | integrity sha512-MzbUSahkTW1u7JpKKjY7LCARd1fU5W2rLdxlM4kdkayuCwZImjkpluF9CM1aLewYJguPDqewLam18Y6AU69A8A== 1273 | 1274 | import-cwd@^2.0.0: 1275 | version "2.1.0" 1276 | resolved "https://registry.yarnpkg.com/import-cwd/-/import-cwd-2.1.0.tgz#aa6cf36e722761285cb371ec6519f53e2435b0a9" 1277 | integrity sha1-qmzzbnInYShcs3HsZRn1PiQ1sKk= 1278 | dependencies: 1279 | import-from "^2.1.0" 1280 | 1281 | import-fresh@^2.0.0: 1282 | version "2.0.0" 1283 | resolved "https://registry.yarnpkg.com/import-fresh/-/import-fresh-2.0.0.tgz#d81355c15612d386c61f9ddd3922d4304822a546" 1284 | integrity sha1-2BNVwVYS04bGH53dOSLUMEgipUY= 1285 | dependencies: 1286 | caller-path "^2.0.0" 1287 | resolve-from "^3.0.0" 1288 | 1289 | import-fresh@^3.0.0: 1290 | version "3.2.1" 1291 | resolved "https://registry.yarnpkg.com/import-fresh/-/import-fresh-3.2.1.tgz#633ff618506e793af5ac91bf48b72677e15cbe66" 1292 | integrity sha512-6e1q1cnWP2RXD9/keSkxHScg508CdXqXWgWBaETNhyuBFz+kUZlKboh+ISK+bU++DmbHimVBrOz/zzPe0sZ3sQ== 1293 | dependencies: 1294 | parent-module "^1.0.0" 1295 | resolve-from "^4.0.0" 1296 | 1297 | import-from@^2.1.0: 1298 | version "2.1.0" 1299 | resolved "https://registry.yarnpkg.com/import-from/-/import-from-2.1.0.tgz#335db7f2a7affd53aaa471d4b8021dee36b7f3b1" 1300 | integrity sha1-M1238qev/VOqpHHUuAId7ja387E= 1301 | dependencies: 1302 | resolve-from "^3.0.0" 1303 | 1304 | imurmurhash@^0.1.4: 1305 | version "0.1.4" 1306 | resolved "https://registry.yarnpkg.com/imurmurhash/-/imurmurhash-0.1.4.tgz#9218b9b2b928a238b13dc4fb6b6d576f231453ea" 1307 | integrity sha1-khi5srkoojixPcT7a21XbyMUU+o= 1308 | 1309 | indent-string@^3.0.0: 1310 | version "3.2.0" 1311 | resolved "https://registry.yarnpkg.com/indent-string/-/indent-string-3.2.0.tgz#4a5fd6d27cc332f37e5419a504dbb837105c9289" 1312 | integrity sha1-Sl/W0nzDMvN+VBmlBNu4NxBckok= 1313 | 1314 | indent-string@^4.0.0: 1315 | version "4.0.0" 1316 | resolved "https://registry.yarnpkg.com/indent-string/-/indent-string-4.0.0.tgz#624f8f4497d619b2d9768531d58f4122854d7251" 1317 | integrity sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg== 1318 | 1319 | indexes-of@^1.0.1: 1320 | version "1.0.1" 1321 | resolved "https://registry.yarnpkg.com/indexes-of/-/indexes-of-1.0.1.tgz#f30f716c8e2bd346c7b67d3df3915566a7c05607" 1322 | integrity sha1-8w9xbI4r00bHtn0985FVZqfAVgc= 1323 | 1324 | inflight@^1.0.4: 1325 | version "1.0.6" 1326 | resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9" 1327 | integrity sha1-Sb1jMdfQLQwJvJEKEHW6gWW1bfk= 1328 | dependencies: 1329 | once "^1.3.0" 1330 | wrappy "1" 1331 | 1332 | inherits@2: 1333 | version "2.0.4" 1334 | resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.4.tgz#0fa2c64f932917c3433a0ded55363aae37416b7c" 1335 | integrity sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ== 1336 | 1337 | inquirer@^6.4.1: 1338 | version "6.5.2" 1339 | resolved "https://registry.yarnpkg.com/inquirer/-/inquirer-6.5.2.tgz#ad50942375d036d327ff528c08bd5fab089928ca" 1340 | integrity sha512-cntlB5ghuB0iuO65Ovoi8ogLHiWGs/5yNrtUcKjFhSSiVeAIVpD7koaSU9RM8mpXw5YDi9RdYXGQMaOURB7ycQ== 1341 | dependencies: 1342 | ansi-escapes "^3.2.0" 1343 | chalk "^2.4.2" 1344 | cli-cursor "^2.1.0" 1345 | cli-width "^2.0.0" 1346 | external-editor "^3.0.3" 1347 | figures "^2.0.0" 1348 | lodash "^4.17.12" 1349 | mute-stream "0.0.7" 1350 | run-async "^2.2.0" 1351 | rxjs "^6.4.0" 1352 | string-width "^2.1.0" 1353 | strip-ansi "^5.1.0" 1354 | through "^2.3.6" 1355 | 1356 | is-absolute-url@^2.0.0: 1357 | version "2.1.0" 1358 | resolved "https://registry.yarnpkg.com/is-absolute-url/-/is-absolute-url-2.1.0.tgz#50530dfb84fcc9aa7dbe7852e83a37b93b9f2aa6" 1359 | integrity sha1-UFMN+4T8yap9vnhS6Do3uTufKqY= 1360 | 1361 | is-arrayish@^0.2.1: 1362 | version "0.2.1" 1363 | resolved "https://registry.yarnpkg.com/is-arrayish/-/is-arrayish-0.2.1.tgz#77c99840527aa8ecb1a8ba697b80645a7a926a9d" 1364 | integrity sha1-d8mYQFJ6qOyxqLppe4BkWnqSap0= 1365 | 1366 | is-arrayish@^0.3.1: 1367 | version "0.3.2" 1368 | resolved "https://registry.yarnpkg.com/is-arrayish/-/is-arrayish-0.3.2.tgz#4574a2ae56f7ab206896fb431eaeed066fdf8f03" 1369 | integrity sha512-eVRqCvVlZbuw3GrM63ovNSNAeA1K16kaR/LRY/92w0zxQ5/1YzwblUX652i4Xs9RwAGjW9d9y6X88t8OaAJfWQ== 1370 | 1371 | is-binary-path@~2.1.0: 1372 | version "2.1.0" 1373 | resolved "https://registry.yarnpkg.com/is-binary-path/-/is-binary-path-2.1.0.tgz#ea1f7f3b80f064236e83470f86c09c254fb45b09" 1374 | integrity sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw== 1375 | dependencies: 1376 | binary-extensions "^2.0.0" 1377 | 1378 | is-callable@^1.1.4, is-callable@^1.1.5: 1379 | version "1.1.5" 1380 | resolved "https://registry.yarnpkg.com/is-callable/-/is-callable-1.1.5.tgz#f7e46b596890456db74e7f6e976cb3273d06faab" 1381 | integrity sha512-ESKv5sMCJB2jnHTWZ3O5itG+O128Hsus4K4Qh1h2/cgn2vbgnLSVqfV46AeJA9D5EeeLa9w81KUXMtn34zhX+Q== 1382 | 1383 | is-color-stop@^1.0.0: 1384 | version "1.1.0" 1385 | resolved "https://registry.yarnpkg.com/is-color-stop/-/is-color-stop-1.1.0.tgz#cfff471aee4dd5c9e158598fbe12967b5cdad345" 1386 | integrity sha1-z/9HGu5N1cnhWFmPvhKWe1za00U= 1387 | dependencies: 1388 | css-color-names "^0.0.4" 1389 | hex-color-regex "^1.1.0" 1390 | hsl-regex "^1.0.0" 1391 | hsla-regex "^1.0.0" 1392 | rgb-regex "^1.0.1" 1393 | rgba-regex "^1.0.0" 1394 | 1395 | is-date-object@^1.0.1: 1396 | version "1.0.2" 1397 | resolved "https://registry.yarnpkg.com/is-date-object/-/is-date-object-1.0.2.tgz#bda736f2cd8fd06d32844e7743bfa7494c3bfd7e" 1398 | integrity sha512-USlDT524woQ08aoZFzh3/Z6ch9Y/EWXEHQ/AaRN0SkKq4t2Jw2R2339tSXmwuVoY7LLlBCbOIlx2myP/L5zk0g== 1399 | 1400 | is-directory@^0.3.1: 1401 | version "0.3.1" 1402 | resolved "https://registry.yarnpkg.com/is-directory/-/is-directory-0.3.1.tgz#61339b6f2475fc772fd9c9d83f5c8575dc154ae1" 1403 | integrity sha1-YTObbyR1/Hcv2cnYP1yFddwVSuE= 1404 | 1405 | is-extglob@^2.1.1: 1406 | version "2.1.1" 1407 | resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-2.1.1.tgz#a88c02535791f02ed37c76a1b9ea9773c833f8c2" 1408 | integrity sha1-qIwCU1eR8C7TfHahueqXc8gz+MI= 1409 | 1410 | is-fullwidth-code-point@^2.0.0: 1411 | version "2.0.0" 1412 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz#a3b30a5c4f199183167aaab93beefae3ddfb654f" 1413 | integrity sha1-o7MKXE8ZkYMWeqq5O+764937ZU8= 1414 | 1415 | is-fullwidth-code-point@^3.0.0: 1416 | version "3.0.0" 1417 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz#f116f8064fe90b3f7844a38997c0b75051269f1d" 1418 | integrity sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg== 1419 | 1420 | is-glob@^4.0.0, is-glob@^4.0.1, is-glob@~4.0.1: 1421 | version "4.0.1" 1422 | resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-4.0.1.tgz#7567dbe9f2f5e2467bc77ab83c4a29482407a5dc" 1423 | integrity sha512-5G0tKtBTFImOqDnLB2hG6Bp2qcKEFduo4tZu9MT/H6NQv/ghhy30o55ufafxJ/LdH79LLs2Kfrn85TLKyA7BUg== 1424 | dependencies: 1425 | is-extglob "^2.1.1" 1426 | 1427 | is-number@^7.0.0: 1428 | version "7.0.0" 1429 | resolved "https://registry.yarnpkg.com/is-number/-/is-number-7.0.0.tgz#7535345b896734d5f80c4d06c50955527a14f12b" 1430 | integrity sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng== 1431 | 1432 | is-obj@^2.0.0: 1433 | version "2.0.0" 1434 | resolved "https://registry.yarnpkg.com/is-obj/-/is-obj-2.0.0.tgz#473fb05d973705e3fd9620545018ca8e22ef4982" 1435 | integrity sha512-drqDG3cbczxxEJRoOXcOjtdp1J/lyp1mNn0xaznRs8+muBhgQcrnbspox5X5fOw0HnMnbfDzvnEMEtqDEJEo8w== 1436 | 1437 | is-path-cwd@^2.2.0: 1438 | version "2.2.0" 1439 | resolved "https://registry.yarnpkg.com/is-path-cwd/-/is-path-cwd-2.2.0.tgz#67d43b82664a7b5191fd9119127eb300048a9fdb" 1440 | integrity sha512-w942bTcih8fdJPJmQHFzkS76NEP8Kzzvmw92cXsazb8intwLqPibPPdXf4ANdKV3rYMuuQYGIWtvz9JilB3NFQ== 1441 | 1442 | is-path-inside@^3.0.1: 1443 | version "3.0.2" 1444 | resolved "https://registry.yarnpkg.com/is-path-inside/-/is-path-inside-3.0.2.tgz#f5220fc82a3e233757291dddc9c5877f2a1f3017" 1445 | integrity sha512-/2UGPSgmtqwo1ktx8NDHjuPwZWmHhO+gj0f93EkhLB5RgW9RZevWYYlIkS6zePc6U2WpOdQYIwHe9YC4DWEBVg== 1446 | 1447 | is-plain-obj@^1.1.0: 1448 | version "1.1.0" 1449 | resolved "https://registry.yarnpkg.com/is-plain-obj/-/is-plain-obj-1.1.0.tgz#71a50c8429dfca773c92a390a4a03b39fcd51d3e" 1450 | integrity sha1-caUMhCnfync8kqOQpKA7OfzVHT4= 1451 | 1452 | is-promise@^2.1.0: 1453 | version "2.1.0" 1454 | resolved "https://registry.yarnpkg.com/is-promise/-/is-promise-2.1.0.tgz#79a2a9ece7f096e80f36d2b2f3bc16c1ff4bf3fa" 1455 | integrity sha1-eaKp7OfwlugPNtKy87wWwf9L8/o= 1456 | 1457 | is-regex@^1.0.5: 1458 | version "1.0.5" 1459 | resolved "https://registry.yarnpkg.com/is-regex/-/is-regex-1.0.5.tgz#39d589a358bf18967f726967120b8fc1aed74eae" 1460 | integrity sha512-vlKW17SNq44owv5AQR3Cq0bQPEb8+kF3UKZ2fiZNOWtztYE5i0CzCZxFDwO58qAOWtxdBRVO/V5Qin1wjCqFYQ== 1461 | dependencies: 1462 | has "^1.0.3" 1463 | 1464 | is-resolvable@^1.0.0: 1465 | version "1.1.0" 1466 | resolved "https://registry.yarnpkg.com/is-resolvable/-/is-resolvable-1.1.0.tgz#fb18f87ce1feb925169c9a407c19318a3206ed88" 1467 | integrity sha512-qgDYXFSR5WvEfuS5dMj6oTMEbrrSaM0CrFk2Yiq/gXnBvD9pMa2jGXxyhGLfvhZpuMZe18CJpFxAt3CRs42NMg== 1468 | 1469 | is-string@^1.0.5: 1470 | version "1.0.5" 1471 | resolved "https://registry.yarnpkg.com/is-string/-/is-string-1.0.5.tgz#40493ed198ef3ff477b8c7f92f644ec82a5cd3a6" 1472 | integrity sha512-buY6VNRjhQMiF1qWDouloZlQbRhDPCebwxSjxMjxgemYT46YMd2NR0/H+fBhEfWX4A/w9TBJ+ol+okqJKFE6vQ== 1473 | 1474 | is-svg@^3.0.0: 1475 | version "3.0.0" 1476 | resolved "https://registry.yarnpkg.com/is-svg/-/is-svg-3.0.0.tgz#9321dbd29c212e5ca99c4fa9794c714bcafa2f75" 1477 | integrity sha512-gi4iHK53LR2ujhLVVj+37Ykh9GLqYHX6JOVXbLAucaG/Cqw9xwdFOjDM2qeifLs1sF1npXXFvDu0r5HNgCMrzQ== 1478 | dependencies: 1479 | html-comment-regex "^1.1.0" 1480 | 1481 | is-symbol@^1.0.2: 1482 | version "1.0.3" 1483 | resolved "https://registry.yarnpkg.com/is-symbol/-/is-symbol-1.0.3.tgz#38e1014b9e6329be0de9d24a414fd7441ec61937" 1484 | integrity sha512-OwijhaRSgqvhm/0ZdAcXNZt9lYdKFpcRDT5ULUuYXPoT794UNOdU+gpT6Rzo7b4V2HUl/op6GqY894AZwv9faQ== 1485 | dependencies: 1486 | has-symbols "^1.0.1" 1487 | 1488 | isarray@^1.0.0: 1489 | version "1.0.0" 1490 | resolved "https://registry.yarnpkg.com/isarray/-/isarray-1.0.0.tgz#bb935d48582cba168c06834957a54a3e07124f11" 1491 | integrity sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE= 1492 | 1493 | isexe@^2.0.0: 1494 | version "2.0.0" 1495 | resolved "https://registry.yarnpkg.com/isexe/-/isexe-2.0.0.tgz#e8fbf374dc556ff8947a10dcb0572d633f2cfa10" 1496 | integrity sha1-6PvzdNxVb/iUehDcsFctYz8s+hA= 1497 | 1498 | jest-worker@^24.9.0: 1499 | version "24.9.0" 1500 | resolved "https://registry.yarnpkg.com/jest-worker/-/jest-worker-24.9.0.tgz#5dbfdb5b2d322e98567898238a9697bcce67b3e5" 1501 | integrity sha512-51PE4haMSXcHohnSMdM42anbvZANYTqMrr52tVKPqqsPJMzoP6FYYDVqahX/HrAoKEKz3uUPzSvKs9A3qR4iVw== 1502 | dependencies: 1503 | merge-stream "^2.0.0" 1504 | supports-color "^6.1.0" 1505 | 1506 | "js-tokens@^3.0.0 || ^4.0.0", js-tokens@^4.0.0: 1507 | version "4.0.0" 1508 | resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-4.0.0.tgz#19203fb59991df98e3a287050d4647cdeaf32499" 1509 | integrity sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ== 1510 | 1511 | js-yaml@^3.13.1: 1512 | version "3.13.1" 1513 | resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-3.13.1.tgz#aff151b30bfdfa8e49e05da22e7415e9dfa37847" 1514 | integrity sha512-YfbcO7jXDdyj0DGxYVSlSeQNHbD7XPWvrVWeVUujrQEoZzWJIRrCPoyk6kL6IAjAG2IolMK4T0hNUe0HOUs5Jw== 1515 | dependencies: 1516 | argparse "^1.0.7" 1517 | esprima "^4.0.0" 1518 | 1519 | json-parse-better-errors@^1.0.1: 1520 | version "1.0.2" 1521 | resolved "https://registry.yarnpkg.com/json-parse-better-errors/-/json-parse-better-errors-1.0.2.tgz#bb867cfb3450e69107c131d1c514bab3dc8bcaa9" 1522 | integrity sha512-mrqyZKfX5EhL7hvqcV6WG1yYjnjeuYDzDhhcAAUrq8Po85NBQBJP+ZDUT75qZQ98IkUoBqdkExkukOU7Ts2wrw== 1523 | 1524 | json-schema-traverse@^0.4.1: 1525 | version "0.4.1" 1526 | resolved "https://registry.yarnpkg.com/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz#69f6a87d9513ab8bb8fe63bdb0979c448e684660" 1527 | integrity sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg== 1528 | 1529 | json-stable-stringify-without-jsonify@^1.0.1: 1530 | version "1.0.1" 1531 | resolved "https://registry.yarnpkg.com/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz#9db7b59496ad3f3cfef30a75142d2d930ad72651" 1532 | integrity sha1-nbe1lJatPzz+8wp1FC0tkwrXJlE= 1533 | 1534 | jsonfile@^4.0.0: 1535 | version "4.0.0" 1536 | resolved "https://registry.yarnpkg.com/jsonfile/-/jsonfile-4.0.0.tgz#8771aae0799b64076b76640fca058f9c10e33ecb" 1537 | integrity sha1-h3Gq4HmbZAdrdmQPygWPnBDjPss= 1538 | optionalDependencies: 1539 | graceful-fs "^4.1.6" 1540 | 1541 | jsx-ast-utils@^2.1.0: 1542 | version "2.2.3" 1543 | resolved "https://registry.yarnpkg.com/jsx-ast-utils/-/jsx-ast-utils-2.2.3.tgz#8a9364e402448a3ce7f14d357738310d9248054f" 1544 | integrity sha512-EdIHFMm+1BPynpKOpdPqiOsvnIrInRGJD7bzPZdPkjitQEqpdpUuFpq4T0npZFKTiB3RhWFdGN+oqOJIdhDhQA== 1545 | dependencies: 1546 | array-includes "^3.0.3" 1547 | object.assign "^4.1.0" 1548 | 1549 | levn@^0.3.0, levn@~0.3.0: 1550 | version "0.3.0" 1551 | resolved "https://registry.yarnpkg.com/levn/-/levn-0.3.0.tgz#3b09924edf9f083c0490fdd4c0bc4421e04764ee" 1552 | integrity sha1-OwmSTt+fCDwEkP3UwLxEIeBHZO4= 1553 | dependencies: 1554 | prelude-ls "~1.1.2" 1555 | type-check "~0.3.2" 1556 | 1557 | load-json-file@^2.0.0: 1558 | version "2.0.0" 1559 | resolved "https://registry.yarnpkg.com/load-json-file/-/load-json-file-2.0.0.tgz#7947e42149af80d696cbf797bcaabcfe1fe29ca8" 1560 | integrity sha1-eUfkIUmvgNaWy/eXvKq8/h/inKg= 1561 | dependencies: 1562 | graceful-fs "^4.1.2" 1563 | parse-json "^2.2.0" 1564 | pify "^2.0.0" 1565 | strip-bom "^3.0.0" 1566 | 1567 | load-json-file@^4.0.0: 1568 | version "4.0.0" 1569 | resolved "https://registry.yarnpkg.com/load-json-file/-/load-json-file-4.0.0.tgz#2f5f45ab91e33216234fd53adab668eb4ec0993b" 1570 | integrity sha1-L19Fq5HjMhYjT9U62rZo607AmTs= 1571 | dependencies: 1572 | graceful-fs "^4.1.2" 1573 | parse-json "^4.0.0" 1574 | pify "^3.0.0" 1575 | strip-bom "^3.0.0" 1576 | 1577 | load-json-file@^5.2.0: 1578 | version "5.3.0" 1579 | resolved "https://registry.yarnpkg.com/load-json-file/-/load-json-file-5.3.0.tgz#4d3c1e01fa1c03ea78a60ac7af932c9ce53403f3" 1580 | integrity sha512-cJGP40Jc/VXUsp8/OrnyKyTZ1y6v/dphm3bioS+RrKXjK2BB6wHUd6JptZEFDGgGahMT+InnZO5i1Ei9mpC8Bw== 1581 | dependencies: 1582 | graceful-fs "^4.1.15" 1583 | parse-json "^4.0.0" 1584 | pify "^4.0.1" 1585 | strip-bom "^3.0.0" 1586 | type-fest "^0.3.0" 1587 | 1588 | locate-path@^2.0.0: 1589 | version "2.0.0" 1590 | resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-2.0.0.tgz#2b568b265eec944c6d9c0de9c3dbbbca0354cd8e" 1591 | integrity sha1-K1aLJl7slExtnA3pw9u7ygNUzY4= 1592 | dependencies: 1593 | p-locate "^2.0.0" 1594 | path-exists "^3.0.0" 1595 | 1596 | locate-path@^3.0.0: 1597 | version "3.0.0" 1598 | resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-3.0.0.tgz#dbec3b3ab759758071b58fe59fc41871af21400e" 1599 | integrity sha512-7AO748wWnIhNqAuaty2ZWHkQHRSNfPVIsPIfwEOWO22AmaoVrWavlOcMR5nzTLNYvp36X220/maaRsrec1G65A== 1600 | dependencies: 1601 | p-locate "^3.0.0" 1602 | path-exists "^3.0.0" 1603 | 1604 | locate-path@^5.0.0: 1605 | version "5.0.0" 1606 | resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-5.0.0.tgz#1afba396afd676a6d42504d0a67a3a7eb9f62aa0" 1607 | integrity sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g== 1608 | dependencies: 1609 | p-locate "^4.1.0" 1610 | 1611 | lodash._reinterpolate@^3.0.0: 1612 | version "3.0.0" 1613 | resolved "https://registry.yarnpkg.com/lodash._reinterpolate/-/lodash._reinterpolate-3.0.0.tgz#0ccf2d89166af03b3663c796538b75ac6e114d9d" 1614 | integrity sha1-DM8tiRZq8Ds2Y8eWU4t1rG4RTZ0= 1615 | 1616 | lodash.memoize@^4.1.2: 1617 | version "4.1.2" 1618 | resolved "https://registry.yarnpkg.com/lodash.memoize/-/lodash.memoize-4.1.2.tgz#bcc6c49a42a2840ed997f323eada5ecd182e0bfe" 1619 | integrity sha1-vMbEmkKihA7Zl/Mj6tpezRguC/4= 1620 | 1621 | lodash.template@^4.5.0: 1622 | version "4.5.0" 1623 | resolved "https://registry.yarnpkg.com/lodash.template/-/lodash.template-4.5.0.tgz#f976195cf3f347d0d5f52483569fe8031ccce8ab" 1624 | integrity sha512-84vYFxIkmidUiFxidA/KjjH9pAycqW+h980j7Fuz5qxRtO9pgB7MDFTdys1N7A5mcucRiDyEq4fusljItR1T/A== 1625 | dependencies: 1626 | lodash._reinterpolate "^3.0.0" 1627 | lodash.templatesettings "^4.0.0" 1628 | 1629 | lodash.templatesettings@^4.0.0: 1630 | version "4.2.0" 1631 | resolved "https://registry.yarnpkg.com/lodash.templatesettings/-/lodash.templatesettings-4.2.0.tgz#e481310f049d3cf6d47e912ad09313b154f0fb33" 1632 | integrity sha512-stgLz+i3Aa9mZgnjr/O+v9ruKZsPsndy7qPZOchbqk2cnTU1ZaldKK+v7m54WoKIyxiuMZTKT2H81F8BeAc3ZQ== 1633 | dependencies: 1634 | lodash._reinterpolate "^3.0.0" 1635 | 1636 | lodash.uniq@^4.5.0: 1637 | version "4.5.0" 1638 | resolved "https://registry.yarnpkg.com/lodash.uniq/-/lodash.uniq-4.5.0.tgz#d0225373aeb652adc1bc82e4945339a842754773" 1639 | integrity sha1-0CJTc662Uq3BvILklFM5qEJ1R3M= 1640 | 1641 | lodash@^4.17.11, lodash@^4.17.12, lodash@^4.17.14: 1642 | version "4.17.15" 1643 | resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.15.tgz#b447f6670a0455bbfeedd11392eff330ea097548" 1644 | integrity sha512-8xOcRHvCjnocdS5cpwXQXVzmmh5e5+saE2QGoeQmbKmRS6J3VQppPOIt0MnmE+4xlZoumy0GPG0D0MVIQbNA1A== 1645 | 1646 | log-symbols@^2.2.0: 1647 | version "2.2.0" 1648 | resolved "https://registry.yarnpkg.com/log-symbols/-/log-symbols-2.2.0.tgz#5740e1c5d6f0dfda4ad9323b5332107ef6b4c40a" 1649 | integrity sha512-VeIAFslyIerEJLXHziedo2basKbMKtTw3vfn5IzG0XTjhAVEJyNHnL2p7vc+wBDSdQuUpNw3M2u6xb9QsAY5Eg== 1650 | dependencies: 1651 | chalk "^2.0.1" 1652 | 1653 | loose-envify@^1.4.0: 1654 | version "1.4.0" 1655 | resolved "https://registry.yarnpkg.com/loose-envify/-/loose-envify-1.4.0.tgz#71ee51fa7be4caec1a63839f7e682d8132d30caf" 1656 | integrity sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q== 1657 | dependencies: 1658 | js-tokens "^3.0.0 || ^4.0.0" 1659 | 1660 | loud-rejection@^1.0.0: 1661 | version "1.6.0" 1662 | resolved "https://registry.yarnpkg.com/loud-rejection/-/loud-rejection-1.6.0.tgz#5b46f80147edee578870f086d04821cf998e551f" 1663 | integrity sha1-W0b4AUft7leIcPCG0Eghz5mOVR8= 1664 | dependencies: 1665 | currently-unhandled "^0.4.1" 1666 | signal-exit "^3.0.0" 1667 | 1668 | map-obj@^1.0.0: 1669 | version "1.0.1" 1670 | resolved "https://registry.yarnpkg.com/map-obj/-/map-obj-1.0.1.tgz#d933ceb9205d82bdcf4886f6742bdc2b4dea146d" 1671 | integrity sha1-2TPOuSBdgr3PSIb2dCvcK03qFG0= 1672 | 1673 | map-obj@^2.0.0: 1674 | version "2.0.0" 1675 | resolved "https://registry.yarnpkg.com/map-obj/-/map-obj-2.0.0.tgz#a65cd29087a92598b8791257a523e021222ac1f9" 1676 | integrity sha1-plzSkIepJZi4eRJXpSPgISIqwfk= 1677 | 1678 | mdn-data@2.0.4: 1679 | version "2.0.4" 1680 | resolved "https://registry.yarnpkg.com/mdn-data/-/mdn-data-2.0.4.tgz#699b3c38ac6f1d728091a64650b65d388502fd5b" 1681 | integrity sha512-iV3XNKw06j5Q7mi6h+9vbx23Tv7JkjEVgKHW4pimwyDGWm0OIQntJJ+u1C6mg6mK1EaTv42XQ7w76yuzH7M2cA== 1682 | 1683 | meow@^5.0.0: 1684 | version "5.0.0" 1685 | resolved "https://registry.yarnpkg.com/meow/-/meow-5.0.0.tgz#dfc73d63a9afc714a5e371760eb5c88b91078aa4" 1686 | integrity sha512-CbTqYU17ABaLefO8vCU153ZZlprKYWDljcndKKDCFcYQITzWCXZAVk4QMFZPgvzrnUQ3uItnIE/LoUOwrT15Ig== 1687 | dependencies: 1688 | camelcase-keys "^4.0.0" 1689 | decamelize-keys "^1.0.0" 1690 | loud-rejection "^1.0.0" 1691 | minimist-options "^3.0.1" 1692 | normalize-package-data "^2.3.4" 1693 | read-pkg-up "^3.0.0" 1694 | redent "^2.0.0" 1695 | trim-newlines "^2.0.0" 1696 | yargs-parser "^10.0.0" 1697 | 1698 | merge-stream@^2.0.0: 1699 | version "2.0.0" 1700 | resolved "https://registry.yarnpkg.com/merge-stream/-/merge-stream-2.0.0.tgz#52823629a14dd00c9770fb6ad47dc6310f2c1f60" 1701 | integrity sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w== 1702 | 1703 | merge2@^1.2.3, merge2@^1.3.0: 1704 | version "1.3.0" 1705 | resolved "https://registry.yarnpkg.com/merge2/-/merge2-1.3.0.tgz#5b366ee83b2f1582c48f87e47cf1a9352103ca81" 1706 | integrity sha512-2j4DAdlBOkiSZIsaXk4mTE3sRS02yBHAtfy127xRV3bQUFqXkjHCHLW6Scv7DwNRbIWNHH8zpnz9zMaKXIdvYw== 1707 | 1708 | micromatch@^4.0.2: 1709 | version "4.0.2" 1710 | resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-4.0.2.tgz#4fcb0999bf9fbc2fcbdd212f6d629b9a56c39259" 1711 | integrity sha512-y7FpHSbMUMoyPbYUSzO6PaZ6FyRnQOpHuKwbo1G+Knck95XVU4QAiKdGEnj5wwoS7PlOgthX/09u5iFJ+aYf5Q== 1712 | dependencies: 1713 | braces "^3.0.1" 1714 | picomatch "^2.0.5" 1715 | 1716 | mimic-fn@^1.0.0: 1717 | version "1.2.0" 1718 | resolved "https://registry.yarnpkg.com/mimic-fn/-/mimic-fn-1.2.0.tgz#820c86a39334640e99516928bd03fca88057d022" 1719 | integrity sha512-jf84uxzwiuiIVKiOLpfYk7N46TSy8ubTonmneY9vrpHNAnp0QBt2BxWV9dO3/j+BoVAb+a5G6YDPW3M5HOdMWQ== 1720 | 1721 | minimatch@^3.0.4: 1722 | version "3.0.4" 1723 | resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.0.4.tgz#5166e286457f03306064be5497e8dbb0c3d32083" 1724 | integrity sha512-yJHVQEhyqPLUTgt9B83PXu6W3rx4MvvHvSUvToogpwoGDOUQ+yDrR0HRot+yOCdCO7u4hX3pWft6kWBBcqh0UA== 1725 | dependencies: 1726 | brace-expansion "^1.1.7" 1727 | 1728 | minimist-options@^3.0.1: 1729 | version "3.0.2" 1730 | resolved "https://registry.yarnpkg.com/minimist-options/-/minimist-options-3.0.2.tgz#fba4c8191339e13ecf4d61beb03f070103f3d954" 1731 | integrity sha512-FyBrT/d0d4+uiZRbqznPXqw3IpZZG3gl3wKWiX784FycUKVwBt0uLBFkQrtE4tZOrgo78nZp2jnKz3L65T5LdQ== 1732 | dependencies: 1733 | arrify "^1.0.1" 1734 | is-plain-obj "^1.1.0" 1735 | 1736 | minimist@0.0.8: 1737 | version "0.0.8" 1738 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-0.0.8.tgz#857fcabfc3397d2625b8228262e86aa7a011b05d" 1739 | integrity sha1-hX/Kv8M5fSYluCKCYuhqp6ARsF0= 1740 | 1741 | minimist@^1.1.0: 1742 | version "1.2.0" 1743 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.0.tgz#a35008b20f41383eec1fb914f4cd5df79a264284" 1744 | integrity sha1-o1AIsg9BOD7sH7kU9M1d95omQoQ= 1745 | 1746 | mkdirp@^0.5.1, mkdirp@~0.5.1: 1747 | version "0.5.1" 1748 | resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.5.1.tgz#30057438eac6cf7f8c4767f38648d6697d75c903" 1749 | integrity sha1-MAV0OOrGz3+MR2fzhkjWaX11yQM= 1750 | dependencies: 1751 | minimist "0.0.8" 1752 | 1753 | ms@2.0.0: 1754 | version "2.0.0" 1755 | resolved "https://registry.yarnpkg.com/ms/-/ms-2.0.0.tgz#5608aeadfc00be6c2901df5f9861788de0d597c8" 1756 | integrity sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g= 1757 | 1758 | ms@^2.1.1: 1759 | version "2.1.2" 1760 | resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.2.tgz#d09d1f357b443f493382a8eb3ccd183872ae6009" 1761 | integrity sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w== 1762 | 1763 | mute-stream@0.0.7: 1764 | version "0.0.7" 1765 | resolved "https://registry.yarnpkg.com/mute-stream/-/mute-stream-0.0.7.tgz#3075ce93bc21b8fab43e1bc4da7e8115ed1e7bab" 1766 | integrity sha1-MHXOk7whuPq0PhvE2n6BFe0ee6s= 1767 | 1768 | natural-compare@^1.4.0: 1769 | version "1.4.0" 1770 | resolved "https://registry.yarnpkg.com/natural-compare/-/natural-compare-1.4.0.tgz#4abebfeed7541f2c27acfb29bdbbd15c8d5ba4f7" 1771 | integrity sha1-Sr6/7tdUHywnrPspvbvRXI1bpPc= 1772 | 1773 | nice-try@^1.0.4: 1774 | version "1.0.5" 1775 | resolved "https://registry.yarnpkg.com/nice-try/-/nice-try-1.0.5.tgz#a3378a7696ce7d223e88fc9b764bd7ef1089e366" 1776 | integrity sha512-1nh45deeb5olNY7eX82BkPO7SSxR5SSYJiPTrTdFUVYwAl8CKMA5N9PjTYkHiRjisVcxcQ1HXdLhx2qxxJzLNQ== 1777 | 1778 | node-releases@^1.1.49: 1779 | version "1.1.50" 1780 | resolved "https://registry.yarnpkg.com/node-releases/-/node-releases-1.1.50.tgz#803c40d2c45db172d0410e4efec83aa8c6ad0592" 1781 | integrity sha512-lgAmPv9eYZ0bGwUYAKlr8MG6K4CvWliWqnkcT2P8mMAgVrH3lqfBPorFlxiG1pHQnqmavJZ9vbMXUTNyMLbrgQ== 1782 | dependencies: 1783 | semver "^6.3.0" 1784 | 1785 | normalize-package-data@^2.3.2, normalize-package-data@^2.3.4: 1786 | version "2.5.0" 1787 | resolved "https://registry.yarnpkg.com/normalize-package-data/-/normalize-package-data-2.5.0.tgz#e66db1838b200c1dfc233225d12cb36520e234a8" 1788 | integrity sha512-/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA== 1789 | dependencies: 1790 | hosted-git-info "^2.1.4" 1791 | resolve "^1.10.0" 1792 | semver "2 || 3 || 4 || 5" 1793 | validate-npm-package-license "^3.0.1" 1794 | 1795 | normalize-path@^3.0.0, normalize-path@~3.0.0: 1796 | version "3.0.0" 1797 | resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-3.0.0.tgz#0dcd69ff23a1c9b11fd0978316644a0388216a65" 1798 | integrity sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA== 1799 | 1800 | normalize-range@^0.1.2: 1801 | version "0.1.2" 1802 | resolved "https://registry.yarnpkg.com/normalize-range/-/normalize-range-0.1.2.tgz#2d10c06bdfd312ea9777695a4d28439456b75942" 1803 | integrity sha1-LRDAa9/TEuqXd2laTShDlFa3WUI= 1804 | 1805 | normalize-url@^3.0.0: 1806 | version "3.3.0" 1807 | resolved "https://registry.yarnpkg.com/normalize-url/-/normalize-url-3.3.0.tgz#b2e1c4dc4f7c6d57743df733a4f5978d18650559" 1808 | integrity sha512-U+JJi7duF1o+u2pynbp2zXDW2/PADgC30f0GsHZtRh+HOcXHnw137TrNlyxxRvWW5fjKd3bcLHPxofWuCjaeZg== 1809 | 1810 | nth-check@^1.0.2: 1811 | version "1.0.2" 1812 | resolved "https://registry.yarnpkg.com/nth-check/-/nth-check-1.0.2.tgz#b2bd295c37e3dd58a3bf0700376663ba4d9cf05c" 1813 | integrity sha512-WeBOdju8SnzPN5vTUJYxYUxLeXpCaVP5i5e0LF8fg7WORF2Wd7wFX/pk0tYZk7s8T+J7VLy0Da6J1+wCT0AtHg== 1814 | dependencies: 1815 | boolbase "~1.0.0" 1816 | 1817 | num2fraction@^1.2.2: 1818 | version "1.2.2" 1819 | resolved "https://registry.yarnpkg.com/num2fraction/-/num2fraction-1.2.2.tgz#6f682b6a027a4e9ddfa4564cd2589d1d4e669ede" 1820 | integrity sha1-b2gragJ6Tp3fpFZM0lidHU5mnt4= 1821 | 1822 | object-assign@^4.1.1: 1823 | version "4.1.1" 1824 | resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863" 1825 | integrity sha1-IQmtx5ZYh8/AXLvUQsrIv7s2CGM= 1826 | 1827 | object-inspect@^1.7.0: 1828 | version "1.7.0" 1829 | resolved "https://registry.yarnpkg.com/object-inspect/-/object-inspect-1.7.0.tgz#f4f6bd181ad77f006b5ece60bd0b6f398ff74a67" 1830 | integrity sha512-a7pEHdh1xKIAgTySUGgLMx/xwDZskN1Ud6egYYN3EdRW4ZMPNEDUTF+hwy2LUC+Bl+SyLXANnwz/jyh/qutKUw== 1831 | 1832 | object-keys@^1.0.11, object-keys@^1.0.12, object-keys@^1.1.1: 1833 | version "1.1.1" 1834 | resolved "https://registry.yarnpkg.com/object-keys/-/object-keys-1.1.1.tgz#1c47f272df277f3b1daf061677d9c82e2322c60e" 1835 | integrity sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA== 1836 | 1837 | object.assign@^4.1.0: 1838 | version "4.1.0" 1839 | resolved "https://registry.yarnpkg.com/object.assign/-/object.assign-4.1.0.tgz#968bf1100d7956bb3ca086f006f846b3bc4008da" 1840 | integrity sha512-exHJeq6kBKj58mqGyTQ9DFvrZC/eR6OwxzoM9YRoGBqrXYonaFyGiFMuc9VZrXf7DarreEwMpurG3dd+CNyW5w== 1841 | dependencies: 1842 | define-properties "^1.1.2" 1843 | function-bind "^1.1.1" 1844 | has-symbols "^1.0.0" 1845 | object-keys "^1.0.11" 1846 | 1847 | object.entries@^1.1.0: 1848 | version "1.1.1" 1849 | resolved "https://registry.yarnpkg.com/object.entries/-/object.entries-1.1.1.tgz#ee1cf04153de02bb093fec33683900f57ce5399b" 1850 | integrity sha512-ilqR7BgdyZetJutmDPfXCDffGa0/Yzl2ivVNpbx/g4UeWrCdRnFDUBrKJGLhGieRHDATnyZXWBeCb29k9CJysQ== 1851 | dependencies: 1852 | define-properties "^1.1.3" 1853 | es-abstract "^1.17.0-next.1" 1854 | function-bind "^1.1.1" 1855 | has "^1.0.3" 1856 | 1857 | object.fromentries@^2.0.0: 1858 | version "2.0.2" 1859 | resolved "https://registry.yarnpkg.com/object.fromentries/-/object.fromentries-2.0.2.tgz#4a09c9b9bb3843dd0f89acdb517a794d4f355ac9" 1860 | integrity sha512-r3ZiBH7MQppDJVLx6fhD618GKNG40CZYH9wgwdhKxBDDbQgjeWGGd4AtkZad84d291YxvWe7bJGuE65Anh0dxQ== 1861 | dependencies: 1862 | define-properties "^1.1.3" 1863 | es-abstract "^1.17.0-next.1" 1864 | function-bind "^1.1.1" 1865 | has "^1.0.3" 1866 | 1867 | object.getownpropertydescriptors@^2.1.0: 1868 | version "2.1.0" 1869 | resolved "https://registry.yarnpkg.com/object.getownpropertydescriptors/-/object.getownpropertydescriptors-2.1.0.tgz#369bf1f9592d8ab89d712dced5cb81c7c5352649" 1870 | integrity sha512-Z53Oah9A3TdLoblT7VKJaTDdXdT+lQO+cNpKVnya5JDe9uLvzu1YyY1yFDFrcxrlRgWrEFH0jJtD/IbuwjcEVg== 1871 | dependencies: 1872 | define-properties "^1.1.3" 1873 | es-abstract "^1.17.0-next.1" 1874 | 1875 | object.values@^1.1.0: 1876 | version "1.1.1" 1877 | resolved "https://registry.yarnpkg.com/object.values/-/object.values-1.1.1.tgz#68a99ecde356b7e9295a3c5e0ce31dc8c953de5e" 1878 | integrity sha512-WTa54g2K8iu0kmS/us18jEmdv1a4Wi//BZ/DTVYEcH0XhLM5NYdpDHja3gt57VrZLcNAO2WGA+KpWsDBaHt6eA== 1879 | dependencies: 1880 | define-properties "^1.1.3" 1881 | es-abstract "^1.17.0-next.1" 1882 | function-bind "^1.1.1" 1883 | has "^1.0.3" 1884 | 1885 | once@^1.3.0: 1886 | version "1.4.0" 1887 | resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1" 1888 | integrity sha1-WDsap3WWHUsROsF9nFC6753Xa9E= 1889 | dependencies: 1890 | wrappy "1" 1891 | 1892 | onetime@^2.0.0: 1893 | version "2.0.1" 1894 | resolved "https://registry.yarnpkg.com/onetime/-/onetime-2.0.1.tgz#067428230fd67443b2794b22bba528b6867962d4" 1895 | integrity sha1-BnQoIw/WdEOyeUsiu6UotoZ5YtQ= 1896 | dependencies: 1897 | mimic-fn "^1.0.0" 1898 | 1899 | optionator@^0.8.2: 1900 | version "0.8.3" 1901 | resolved "https://registry.yarnpkg.com/optionator/-/optionator-0.8.3.tgz#84fa1d036fe9d3c7e21d99884b601167ec8fb495" 1902 | integrity sha512-+IW9pACdk3XWmmTXG8m3upGUJst5XRGzxMRjXzAuJ1XnIFNvfhjjIuYkDvysnPQ7qzqVzLt78BCruntqRhWQbA== 1903 | dependencies: 1904 | deep-is "~0.1.3" 1905 | fast-levenshtein "~2.0.6" 1906 | levn "~0.3.0" 1907 | prelude-ls "~1.1.2" 1908 | type-check "~0.3.2" 1909 | word-wrap "~1.2.3" 1910 | 1911 | os-tmpdir@~1.0.2: 1912 | version "1.0.2" 1913 | resolved "https://registry.yarnpkg.com/os-tmpdir/-/os-tmpdir-1.0.2.tgz#bbe67406c79aa85c5cfec766fe5734555dfa1274" 1914 | integrity sha1-u+Z0BseaqFxc/sdm/lc0VV36EnQ= 1915 | 1916 | p-limit@^1.1.0: 1917 | version "1.3.0" 1918 | resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-1.3.0.tgz#b86bd5f0c25690911c7590fcbfc2010d54b3ccb8" 1919 | integrity sha512-vvcXsLAJ9Dr5rQOPk7toZQZJApBl2K4J6dANSsEuh6QI41JYcsS/qhTGa9ErIUUgK3WNQoJYvylxvjqmiqEA9Q== 1920 | dependencies: 1921 | p-try "^1.0.0" 1922 | 1923 | p-limit@^2.0.0, p-limit@^2.2.0: 1924 | version "2.2.2" 1925 | resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-2.2.2.tgz#61279b67721f5287aa1c13a9a7fbbc48c9291b1e" 1926 | integrity sha512-WGR+xHecKTr7EbUEhyLSh5Dube9JtdiG78ufaeLxTgpudf/20KqyMioIUZJAezlTIi6evxuoUs9YXc11cU+yzQ== 1927 | dependencies: 1928 | p-try "^2.0.0" 1929 | 1930 | p-locate@^2.0.0: 1931 | version "2.0.0" 1932 | resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-2.0.0.tgz#20a0103b222a70c8fd39cc2e580680f3dde5ec43" 1933 | integrity sha1-IKAQOyIqcMj9OcwuWAaA893l7EM= 1934 | dependencies: 1935 | p-limit "^1.1.0" 1936 | 1937 | p-locate@^3.0.0: 1938 | version "3.0.0" 1939 | resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-3.0.0.tgz#322d69a05c0264b25997d9f40cd8a891ab0064a4" 1940 | integrity sha512-x+12w/To+4GFfgJhBEpiDcLozRJGegY+Ei7/z0tSLkMmxGZNybVMSfWj9aJn8Z5Fc7dBUNJOOVgPv2H7IwulSQ== 1941 | dependencies: 1942 | p-limit "^2.0.0" 1943 | 1944 | p-locate@^4.1.0: 1945 | version "4.1.0" 1946 | resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-4.1.0.tgz#a3428bb7088b3a60292f66919278b7c297ad4f07" 1947 | integrity sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A== 1948 | dependencies: 1949 | p-limit "^2.2.0" 1950 | 1951 | p-map@^3.0.0: 1952 | version "3.0.0" 1953 | resolved "https://registry.yarnpkg.com/p-map/-/p-map-3.0.0.tgz#d704d9af8a2ba684e2600d9a215983d4141a979d" 1954 | integrity sha512-d3qXVTF/s+W+CdJ5A29wywV2n8CQQYahlgz2bFiA+4eVNJbHJodPZ+/gXwPGh0bOqA+j8S+6+ckmvLGPk1QpxQ== 1955 | dependencies: 1956 | aggregate-error "^3.0.0" 1957 | 1958 | p-try@^1.0.0: 1959 | version "1.0.0" 1960 | resolved "https://registry.yarnpkg.com/p-try/-/p-try-1.0.0.tgz#cbc79cdbaf8fd4228e13f621f2b1a237c1b207b3" 1961 | integrity sha1-y8ec26+P1CKOE/Yh8rGiN8GyB7M= 1962 | 1963 | p-try@^2.0.0: 1964 | version "2.2.0" 1965 | resolved "https://registry.yarnpkg.com/p-try/-/p-try-2.2.0.tgz#cb2868540e313d61de58fafbe35ce9004d5540e6" 1966 | integrity sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ== 1967 | 1968 | parent-module@^1.0.0: 1969 | version "1.0.1" 1970 | resolved "https://registry.yarnpkg.com/parent-module/-/parent-module-1.0.1.tgz#691d2709e78c79fae3a156622452d00762caaaa2" 1971 | integrity sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g== 1972 | dependencies: 1973 | callsites "^3.0.0" 1974 | 1975 | parse-json@^2.2.0: 1976 | version "2.2.0" 1977 | resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-2.2.0.tgz#f480f40434ef80741f8469099f8dea18f55a4dc9" 1978 | integrity sha1-9ID0BDTvgHQfhGkJn43qGPVaTck= 1979 | dependencies: 1980 | error-ex "^1.2.0" 1981 | 1982 | parse-json@^4.0.0: 1983 | version "4.0.0" 1984 | resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-4.0.0.tgz#be35f5425be1f7f6c747184f98a788cb99477ee0" 1985 | integrity sha1-vjX1Qlvh9/bHRxhPmKeIy5lHfuA= 1986 | dependencies: 1987 | error-ex "^1.3.1" 1988 | json-parse-better-errors "^1.0.1" 1989 | 1990 | path-exists@^3.0.0: 1991 | version "3.0.0" 1992 | resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-3.0.0.tgz#ce0ebeaa5f78cb18925ea7d810d7b59b010fd515" 1993 | integrity sha1-zg6+ql94yxiSXqfYENe1mwEP1RU= 1994 | 1995 | path-exists@^4.0.0: 1996 | version "4.0.0" 1997 | resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-4.0.0.tgz#513bdbe2d3b95d7762e8c1137efa195c6c61b5b3" 1998 | integrity sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w== 1999 | 2000 | path-is-absolute@^1.0.0: 2001 | version "1.0.1" 2002 | resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f" 2003 | integrity sha1-F0uSaHNVNP+8es5r9TpanhtcX18= 2004 | 2005 | path-key@^2.0.1: 2006 | version "2.0.1" 2007 | resolved "https://registry.yarnpkg.com/path-key/-/path-key-2.0.1.tgz#411cadb574c5a140d3a4b1910d40d80cc9f40b40" 2008 | integrity sha1-QRyttXTFoUDTpLGRDUDYDMn0C0A= 2009 | 2010 | path-parse@^1.0.6: 2011 | version "1.0.6" 2012 | resolved "https://registry.yarnpkg.com/path-parse/-/path-parse-1.0.6.tgz#d62dbb5679405d72c4737ec58600e9ddcf06d24c" 2013 | integrity sha512-GSmOT2EbHrINBf9SR7CDELwlJ8AENk3Qn7OikK4nFYAu3Ote2+JYNVvkpAEQm3/TLNEJFD/xZJjzyxg3KBWOzw== 2014 | 2015 | path-type@^2.0.0: 2016 | version "2.0.0" 2017 | resolved "https://registry.yarnpkg.com/path-type/-/path-type-2.0.0.tgz#f012ccb8415b7096fc2daa1054c3d72389594c73" 2018 | integrity sha1-8BLMuEFbcJb8LaoQVMPXI4lZTHM= 2019 | dependencies: 2020 | pify "^2.0.0" 2021 | 2022 | path-type@^3.0.0: 2023 | version "3.0.0" 2024 | resolved "https://registry.yarnpkg.com/path-type/-/path-type-3.0.0.tgz#cef31dc8e0a1a3bb0d105c0cd97cf3bf47f4e36f" 2025 | integrity sha512-T2ZUsdZFHgA3u4e5PfPbjd7HDDpxPnQb5jN0SrDsjNSuVXHJqtwTnWqG0B1jZrgmJ/7lj1EmVIByWt1gxGkWvg== 2026 | dependencies: 2027 | pify "^3.0.0" 2028 | 2029 | path-type@^4.0.0: 2030 | version "4.0.0" 2031 | resolved "https://registry.yarnpkg.com/path-type/-/path-type-4.0.0.tgz#84ed01c0a7ba380afe09d90a8c180dcd9d03043b" 2032 | integrity sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw== 2033 | 2034 | picomatch@^2.0.4, picomatch@^2.0.5, picomatch@^2.0.7, picomatch@^2.2.1: 2035 | version "2.2.1" 2036 | resolved "https://registry.yarnpkg.com/picomatch/-/picomatch-2.2.1.tgz#21bac888b6ed8601f831ce7816e335bc779f0a4a" 2037 | integrity sha512-ISBaA8xQNmwELC7eOjqFKMESB2VIqt4PPDD0nsS95b/9dZXvVKOlz9keMSnoGGKcOHXfTvDD6WMaRoSc9UuhRA== 2038 | 2039 | pify@^2.0.0, pify@^2.3.0: 2040 | version "2.3.0" 2041 | resolved "https://registry.yarnpkg.com/pify/-/pify-2.3.0.tgz#ed141a6ac043a849ea588498e7dca8b15330e90c" 2042 | integrity sha1-7RQaasBDqEnqWISY59yosVMw6Qw= 2043 | 2044 | pify@^3.0.0: 2045 | version "3.0.0" 2046 | resolved "https://registry.yarnpkg.com/pify/-/pify-3.0.0.tgz#e5a4acd2c101fdf3d9a4d07f0dbc4db49dd28176" 2047 | integrity sha1-5aSs0sEB/fPZpNB/DbxNtJ3SgXY= 2048 | 2049 | pify@^4.0.1: 2050 | version "4.0.1" 2051 | resolved "https://registry.yarnpkg.com/pify/-/pify-4.0.1.tgz#4b2cd25c50d598735c50292224fd8c6df41e3231" 2052 | integrity sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g== 2053 | 2054 | pkg-conf@^3.1.0: 2055 | version "3.1.0" 2056 | resolved "https://registry.yarnpkg.com/pkg-conf/-/pkg-conf-3.1.0.tgz#d9f9c75ea1bae0e77938cde045b276dac7cc69ae" 2057 | integrity sha512-m0OTbR/5VPNPqO1ph6Fqbj7Hv6QU7gR/tQW40ZqrL1rjgCU85W6C1bJn0BItuJqnR98PWzw7Z8hHeChD1WrgdQ== 2058 | dependencies: 2059 | find-up "^3.0.0" 2060 | load-json-file "^5.2.0" 2061 | 2062 | pkg-config@^1.1.0: 2063 | version "1.1.1" 2064 | resolved "https://registry.yarnpkg.com/pkg-config/-/pkg-config-1.1.1.tgz#557ef22d73da3c8837107766c52eadabde298fe4" 2065 | integrity sha1-VX7yLXPaPIg3EHdmxS6tq94pj+Q= 2066 | dependencies: 2067 | debug-log "^1.0.0" 2068 | find-root "^1.0.0" 2069 | xtend "^4.0.1" 2070 | 2071 | pkg-dir@^2.0.0: 2072 | version "2.0.0" 2073 | resolved "https://registry.yarnpkg.com/pkg-dir/-/pkg-dir-2.0.0.tgz#f6d5d1109e19d63edf428e0bd57e12777615334b" 2074 | integrity sha1-9tXREJ4Z1j7fQo4L1X4Sd3YVM0s= 2075 | dependencies: 2076 | find-up "^2.1.0" 2077 | 2078 | postcss-attribute-case-insensitive@^4.0.1: 2079 | version "4.0.2" 2080 | resolved "https://registry.yarnpkg.com/postcss-attribute-case-insensitive/-/postcss-attribute-case-insensitive-4.0.2.tgz#d93e46b504589e94ac7277b0463226c68041a880" 2081 | integrity sha512-clkFxk/9pcdb4Vkn0hAHq3YnxBQ2p0CGD1dy24jN+reBck+EWxMbxSUqN4Yj7t0w8csl87K6p0gxBe1utkJsYA== 2082 | dependencies: 2083 | postcss "^7.0.2" 2084 | postcss-selector-parser "^6.0.2" 2085 | 2086 | postcss-calc@^7.0.1: 2087 | version "7.0.2" 2088 | resolved "https://registry.yarnpkg.com/postcss-calc/-/postcss-calc-7.0.2.tgz#504efcd008ca0273120568b0792b16cdcde8aac1" 2089 | integrity sha512-rofZFHUg6ZIrvRwPeFktv06GdbDYLcGqh9EwiMutZg+a0oePCCw1zHOEiji6LCpyRcjTREtPASuUqeAvYlEVvQ== 2090 | dependencies: 2091 | postcss "^7.0.27" 2092 | postcss-selector-parser "^6.0.2" 2093 | postcss-value-parser "^4.0.2" 2094 | 2095 | postcss-cli@^7.1.0: 2096 | version "7.1.0" 2097 | resolved "https://registry.yarnpkg.com/postcss-cli/-/postcss-cli-7.1.0.tgz#769b07b8865aaa3e98c7c63a3d256b4f51e3e237" 2098 | integrity sha512-tCGK0GO2reu644dUHxks8U2SAtKnzftQTAXN1dwzFPoKXZr0b7VX4vTkQ2Pl2Lunas6+o8uHR56hlcYBm1srZg== 2099 | dependencies: 2100 | chalk "^3.0.0" 2101 | chokidar "^3.3.0" 2102 | dependency-graph "^0.8.0" 2103 | fs-extra "^8.1.0" 2104 | get-stdin "^7.0.0" 2105 | globby "^10.0.1" 2106 | postcss "^7.0.0" 2107 | postcss-load-config "^2.0.0" 2108 | postcss-reporter "^6.0.0" 2109 | pretty-hrtime "^1.0.3" 2110 | read-cache "^1.0.0" 2111 | yargs "^15.0.2" 2112 | 2113 | postcss-color-functional-notation@^2.0.1: 2114 | version "2.0.1" 2115 | resolved "https://registry.yarnpkg.com/postcss-color-functional-notation/-/postcss-color-functional-notation-2.0.1.tgz#5efd37a88fbabeb00a2966d1e53d98ced93f74e0" 2116 | integrity sha512-ZBARCypjEDofW4P6IdPVTLhDNXPRn8T2s1zHbZidW6rPaaZvcnCS2soYFIQJrMZSxiePJ2XIYTlcb2ztr/eT2g== 2117 | dependencies: 2118 | postcss "^7.0.2" 2119 | postcss-values-parser "^2.0.0" 2120 | 2121 | postcss-color-gray@^5.0.0: 2122 | version "5.0.0" 2123 | resolved "https://registry.yarnpkg.com/postcss-color-gray/-/postcss-color-gray-5.0.0.tgz#532a31eb909f8da898ceffe296fdc1f864be8547" 2124 | integrity sha512-q6BuRnAGKM/ZRpfDascZlIZPjvwsRye7UDNalqVz3s7GDxMtqPY6+Q871liNxsonUw8oC61OG+PSaysYpl1bnw== 2125 | dependencies: 2126 | "@csstools/convert-colors" "^1.4.0" 2127 | postcss "^7.0.5" 2128 | postcss-values-parser "^2.0.0" 2129 | 2130 | postcss-color-hex-alpha@^5.0.3: 2131 | version "5.0.3" 2132 | resolved "https://registry.yarnpkg.com/postcss-color-hex-alpha/-/postcss-color-hex-alpha-5.0.3.tgz#a8d9ca4c39d497c9661e374b9c51899ef0f87388" 2133 | integrity sha512-PF4GDel8q3kkreVXKLAGNpHKilXsZ6xuu+mOQMHWHLPNyjiUBOr75sp5ZKJfmv1MCus5/DWUGcK9hm6qHEnXYw== 2134 | dependencies: 2135 | postcss "^7.0.14" 2136 | postcss-values-parser "^2.0.1" 2137 | 2138 | postcss-color-mod-function@^3.0.3: 2139 | version "3.0.3" 2140 | resolved "https://registry.yarnpkg.com/postcss-color-mod-function/-/postcss-color-mod-function-3.0.3.tgz#816ba145ac11cc3cb6baa905a75a49f903e4d31d" 2141 | integrity sha512-YP4VG+xufxaVtzV6ZmhEtc+/aTXH3d0JLpnYfxqTvwZPbJhWqp8bSY3nfNzNRFLgB4XSaBA82OE4VjOOKpCdVQ== 2142 | dependencies: 2143 | "@csstools/convert-colors" "^1.4.0" 2144 | postcss "^7.0.2" 2145 | postcss-values-parser "^2.0.0" 2146 | 2147 | postcss-color-rebeccapurple@^4.0.1: 2148 | version "4.0.1" 2149 | resolved "https://registry.yarnpkg.com/postcss-color-rebeccapurple/-/postcss-color-rebeccapurple-4.0.1.tgz#c7a89be872bb74e45b1e3022bfe5748823e6de77" 2150 | integrity sha512-aAe3OhkS6qJXBbqzvZth2Au4V3KieR5sRQ4ptb2b2O8wgvB3SJBsdG+jsn2BZbbwekDG8nTfcCNKcSfe/lEy8g== 2151 | dependencies: 2152 | postcss "^7.0.2" 2153 | postcss-values-parser "^2.0.0" 2154 | 2155 | postcss-colormin@^4.0.3: 2156 | version "4.0.3" 2157 | resolved "https://registry.yarnpkg.com/postcss-colormin/-/postcss-colormin-4.0.3.tgz#ae060bce93ed794ac71264f08132d550956bd381" 2158 | integrity sha512-WyQFAdDZpExQh32j0U0feWisZ0dmOtPl44qYmJKkq9xFWY3p+4qnRzCHeNrkeRhwPHz9bQ3mo0/yVkaply0MNw== 2159 | dependencies: 2160 | browserslist "^4.0.0" 2161 | color "^3.0.0" 2162 | has "^1.0.0" 2163 | postcss "^7.0.0" 2164 | postcss-value-parser "^3.0.0" 2165 | 2166 | postcss-convert-values@^4.0.1: 2167 | version "4.0.1" 2168 | resolved "https://registry.yarnpkg.com/postcss-convert-values/-/postcss-convert-values-4.0.1.tgz#ca3813ed4da0f812f9d43703584e449ebe189a7f" 2169 | integrity sha512-Kisdo1y77KUC0Jmn0OXU/COOJbzM8cImvw1ZFsBgBgMgb1iL23Zs/LXRe3r+EZqM3vGYKdQ2YJVQ5VkJI+zEJQ== 2170 | dependencies: 2171 | postcss "^7.0.0" 2172 | postcss-value-parser "^3.0.0" 2173 | 2174 | postcss-custom-media@^7.0.8: 2175 | version "7.0.8" 2176 | resolved "https://registry.yarnpkg.com/postcss-custom-media/-/postcss-custom-media-7.0.8.tgz#fffd13ffeffad73621be5f387076a28b00294e0c" 2177 | integrity sha512-c9s5iX0Ge15o00HKbuRuTqNndsJUbaXdiNsksnVH8H4gdc+zbLzr/UasOwNG6CTDpLFekVY4672eWdiiWu2GUg== 2178 | dependencies: 2179 | postcss "^7.0.14" 2180 | 2181 | postcss-custom-properties@^8.0.11: 2182 | version "8.0.11" 2183 | resolved "https://registry.yarnpkg.com/postcss-custom-properties/-/postcss-custom-properties-8.0.11.tgz#2d61772d6e92f22f5e0d52602df8fae46fa30d97" 2184 | integrity sha512-nm+o0eLdYqdnJ5abAJeXp4CEU1c1k+eB2yMCvhgzsds/e0umabFrN6HoTy/8Q4K5ilxERdl/JD1LO5ANoYBeMA== 2185 | dependencies: 2186 | postcss "^7.0.17" 2187 | postcss-values-parser "^2.0.1" 2188 | 2189 | postcss-custom-selectors@^5.1.2: 2190 | version "5.1.2" 2191 | resolved "https://registry.yarnpkg.com/postcss-custom-selectors/-/postcss-custom-selectors-5.1.2.tgz#64858c6eb2ecff2fb41d0b28c9dd7b3db4de7fba" 2192 | integrity sha512-DSGDhqinCqXqlS4R7KGxL1OSycd1lydugJ1ky4iRXPHdBRiozyMHrdu0H3o7qNOCiZwySZTUI5MV0T8QhCLu+w== 2193 | dependencies: 2194 | postcss "^7.0.2" 2195 | postcss-selector-parser "^5.0.0-rc.3" 2196 | 2197 | postcss-dir-pseudo-class@^5.0.0: 2198 | version "5.0.0" 2199 | resolved "https://registry.yarnpkg.com/postcss-dir-pseudo-class/-/postcss-dir-pseudo-class-5.0.0.tgz#6e3a4177d0edb3abcc85fdb6fbb1c26dabaeaba2" 2200 | integrity sha512-3pm4oq8HYWMZePJY+5ANriPs3P07q+LW6FAdTlkFH2XqDdP4HeeJYMOzn0HYLhRSjBO3fhiqSwwU9xEULSrPgw== 2201 | dependencies: 2202 | postcss "^7.0.2" 2203 | postcss-selector-parser "^5.0.0-rc.3" 2204 | 2205 | postcss-discard-comments@^4.0.2: 2206 | version "4.0.2" 2207 | resolved "https://registry.yarnpkg.com/postcss-discard-comments/-/postcss-discard-comments-4.0.2.tgz#1fbabd2c246bff6aaad7997b2b0918f4d7af4033" 2208 | integrity sha512-RJutN259iuRf3IW7GZyLM5Sw4GLTOH8FmsXBnv8Ab/Tc2k4SR4qbV4DNbyyY4+Sjo362SyDmW2DQ7lBSChrpkg== 2209 | dependencies: 2210 | postcss "^7.0.0" 2211 | 2212 | postcss-discard-duplicates@^4.0.2: 2213 | version "4.0.2" 2214 | resolved "https://registry.yarnpkg.com/postcss-discard-duplicates/-/postcss-discard-duplicates-4.0.2.tgz#3fe133cd3c82282e550fc9b239176a9207b784eb" 2215 | integrity sha512-ZNQfR1gPNAiXZhgENFfEglF93pciw0WxMkJeVmw8eF+JZBbMD7jp6C67GqJAXVZP2BWbOztKfbsdmMp/k8c6oQ== 2216 | dependencies: 2217 | postcss "^7.0.0" 2218 | 2219 | postcss-discard-empty@^4.0.1: 2220 | version "4.0.1" 2221 | resolved "https://registry.yarnpkg.com/postcss-discard-empty/-/postcss-discard-empty-4.0.1.tgz#c8c951e9f73ed9428019458444a02ad90bb9f765" 2222 | integrity sha512-B9miTzbznhDjTfjvipfHoqbWKwd0Mj+/fL5s1QOz06wufguil+Xheo4XpOnc4NqKYBCNqqEzgPv2aPBIJLox0w== 2223 | dependencies: 2224 | postcss "^7.0.0" 2225 | 2226 | postcss-discard-overridden@^4.0.1: 2227 | version "4.0.1" 2228 | resolved "https://registry.yarnpkg.com/postcss-discard-overridden/-/postcss-discard-overridden-4.0.1.tgz#652aef8a96726f029f5e3e00146ee7a4e755ff57" 2229 | integrity sha512-IYY2bEDD7g1XM1IDEsUT4//iEYCxAmP5oDSFMVU/JVvT7gh+l4fmjciLqGgwjdWpQIdb0Che2VX00QObS5+cTg== 2230 | dependencies: 2231 | postcss "^7.0.0" 2232 | 2233 | postcss-double-position-gradients@^1.0.0: 2234 | version "1.0.0" 2235 | resolved "https://registry.yarnpkg.com/postcss-double-position-gradients/-/postcss-double-position-gradients-1.0.0.tgz#fc927d52fddc896cb3a2812ebc5df147e110522e" 2236 | integrity sha512-G+nV8EnQq25fOI8CH/B6krEohGWnF5+3A6H/+JEpOncu5dCnkS1QQ6+ct3Jkaepw1NGVqqOZH6lqrm244mCftA== 2237 | dependencies: 2238 | postcss "^7.0.5" 2239 | postcss-values-parser "^2.0.0" 2240 | 2241 | postcss-env-function@^2.0.2: 2242 | version "2.0.2" 2243 | resolved "https://registry.yarnpkg.com/postcss-env-function/-/postcss-env-function-2.0.2.tgz#0f3e3d3c57f094a92c2baf4b6241f0b0da5365d7" 2244 | integrity sha512-rwac4BuZlITeUbiBq60h/xbLzXY43qOsIErngWa4l7Mt+RaSkT7QBjXVGTcBHupykkblHMDrBFh30zchYPaOUw== 2245 | dependencies: 2246 | postcss "^7.0.2" 2247 | postcss-values-parser "^2.0.0" 2248 | 2249 | postcss-focus-visible@^4.0.0: 2250 | version "4.0.0" 2251 | resolved "https://registry.yarnpkg.com/postcss-focus-visible/-/postcss-focus-visible-4.0.0.tgz#477d107113ade6024b14128317ade2bd1e17046e" 2252 | integrity sha512-Z5CkWBw0+idJHSV6+Bgf2peDOFf/x4o+vX/pwcNYrWpXFrSfTkQ3JQ1ojrq9yS+upnAlNRHeg8uEwFTgorjI8g== 2253 | dependencies: 2254 | postcss "^7.0.2" 2255 | 2256 | postcss-focus-within@^3.0.0: 2257 | version "3.0.0" 2258 | resolved "https://registry.yarnpkg.com/postcss-focus-within/-/postcss-focus-within-3.0.0.tgz#763b8788596cee9b874c999201cdde80659ef680" 2259 | integrity sha512-W0APui8jQeBKbCGZudW37EeMCjDeVxKgiYfIIEo8Bdh5SpB9sxds/Iq8SEuzS0Q4YFOlG7EPFulbbxujpkrV2w== 2260 | dependencies: 2261 | postcss "^7.0.2" 2262 | 2263 | postcss-font-variant@^4.0.0: 2264 | version "4.0.0" 2265 | resolved "https://registry.yarnpkg.com/postcss-font-variant/-/postcss-font-variant-4.0.0.tgz#71dd3c6c10a0d846c5eda07803439617bbbabacc" 2266 | integrity sha512-M8BFYKOvCrI2aITzDad7kWuXXTm0YhGdP9Q8HanmN4EF1Hmcgs1KK5rSHylt/lUJe8yLxiSwWAHdScoEiIxztg== 2267 | dependencies: 2268 | postcss "^7.0.2" 2269 | 2270 | postcss-gap-properties@^2.0.0: 2271 | version "2.0.0" 2272 | resolved "https://registry.yarnpkg.com/postcss-gap-properties/-/postcss-gap-properties-2.0.0.tgz#431c192ab3ed96a3c3d09f2ff615960f902c1715" 2273 | integrity sha512-QZSqDaMgXCHuHTEzMsS2KfVDOq7ZFiknSpkrPJY6jmxbugUPTuSzs/vuE5I3zv0WAS+3vhrlqhijiprnuQfzmg== 2274 | dependencies: 2275 | postcss "^7.0.2" 2276 | 2277 | postcss-image-set-function@^3.0.1: 2278 | version "3.0.1" 2279 | resolved "https://registry.yarnpkg.com/postcss-image-set-function/-/postcss-image-set-function-3.0.1.tgz#28920a2f29945bed4c3198d7df6496d410d3f288" 2280 | integrity sha512-oPTcFFip5LZy8Y/whto91L9xdRHCWEMs3e1MdJxhgt4jy2WYXfhkng59fH5qLXSCPN8k4n94p1Czrfe5IOkKUw== 2281 | dependencies: 2282 | postcss "^7.0.2" 2283 | postcss-values-parser "^2.0.0" 2284 | 2285 | postcss-initial@^3.0.0: 2286 | version "3.0.2" 2287 | resolved "https://registry.yarnpkg.com/postcss-initial/-/postcss-initial-3.0.2.tgz#f018563694b3c16ae8eaabe3c585ac6319637b2d" 2288 | integrity sha512-ugA2wKonC0xeNHgirR4D3VWHs2JcU08WAi1KFLVcnb7IN89phID6Qtg2RIctWbnvp1TM2BOmDtX8GGLCKdR8YA== 2289 | dependencies: 2290 | lodash.template "^4.5.0" 2291 | postcss "^7.0.2" 2292 | 2293 | postcss-lab-function@^2.0.1: 2294 | version "2.0.1" 2295 | resolved "https://registry.yarnpkg.com/postcss-lab-function/-/postcss-lab-function-2.0.1.tgz#bb51a6856cd12289ab4ae20db1e3821ef13d7d2e" 2296 | integrity sha512-whLy1IeZKY+3fYdqQFuDBf8Auw+qFuVnChWjmxm/UhHWqNHZx+B99EwxTvGYmUBqe3Fjxs4L1BoZTJmPu6usVg== 2297 | dependencies: 2298 | "@csstools/convert-colors" "^1.4.0" 2299 | postcss "^7.0.2" 2300 | postcss-values-parser "^2.0.0" 2301 | 2302 | postcss-load-config@^2.0.0: 2303 | version "2.1.0" 2304 | resolved "https://registry.yarnpkg.com/postcss-load-config/-/postcss-load-config-2.1.0.tgz#c84d692b7bb7b41ddced94ee62e8ab31b417b003" 2305 | integrity sha512-4pV3JJVPLd5+RueiVVB+gFOAa7GWc25XQcMp86Zexzke69mKf6Nx9LRcQywdz7yZI9n1udOxmLuAwTBypypF8Q== 2306 | dependencies: 2307 | cosmiconfig "^5.0.0" 2308 | import-cwd "^2.0.0" 2309 | 2310 | postcss-logical@^3.0.0: 2311 | version "3.0.0" 2312 | resolved "https://registry.yarnpkg.com/postcss-logical/-/postcss-logical-3.0.0.tgz#2495d0f8b82e9f262725f75f9401b34e7b45d5b5" 2313 | integrity sha512-1SUKdJc2vuMOmeItqGuNaC+N8MzBWFWEkAnRnLpFYj1tGGa7NqyVBujfRtgNa2gXR+6RkGUiB2O5Vmh7E2RmiA== 2314 | dependencies: 2315 | postcss "^7.0.2" 2316 | 2317 | postcss-media-minmax@^4.0.0: 2318 | version "4.0.0" 2319 | resolved "https://registry.yarnpkg.com/postcss-media-minmax/-/postcss-media-minmax-4.0.0.tgz#b75bb6cbc217c8ac49433e12f22048814a4f5ed5" 2320 | integrity sha512-fo9moya6qyxsjbFAYl97qKO9gyre3qvbMnkOZeZwlsW6XYFsvs2DMGDlchVLfAd8LHPZDxivu/+qW2SMQeTHBw== 2321 | dependencies: 2322 | postcss "^7.0.2" 2323 | 2324 | postcss-merge-longhand@^4.0.11: 2325 | version "4.0.11" 2326 | resolved "https://registry.yarnpkg.com/postcss-merge-longhand/-/postcss-merge-longhand-4.0.11.tgz#62f49a13e4a0ee04e7b98f42bb16062ca2549e24" 2327 | integrity sha512-alx/zmoeXvJjp7L4mxEMjh8lxVlDFX1gqWHzaaQewwMZiVhLo42TEClKaeHbRf6J7j82ZOdTJ808RtN0ZOZwvw== 2328 | dependencies: 2329 | css-color-names "0.0.4" 2330 | postcss "^7.0.0" 2331 | postcss-value-parser "^3.0.0" 2332 | stylehacks "^4.0.0" 2333 | 2334 | postcss-merge-rules@^4.0.3: 2335 | version "4.0.3" 2336 | resolved "https://registry.yarnpkg.com/postcss-merge-rules/-/postcss-merge-rules-4.0.3.tgz#362bea4ff5a1f98e4075a713c6cb25aefef9a650" 2337 | integrity sha512-U7e3r1SbvYzO0Jr3UT/zKBVgYYyhAz0aitvGIYOYK5CPmkNih+WDSsS5tvPrJ8YMQYlEMvsZIiqmn7HdFUaeEQ== 2338 | dependencies: 2339 | browserslist "^4.0.0" 2340 | caniuse-api "^3.0.0" 2341 | cssnano-util-same-parent "^4.0.0" 2342 | postcss "^7.0.0" 2343 | postcss-selector-parser "^3.0.0" 2344 | vendors "^1.0.0" 2345 | 2346 | postcss-minify-font-values@^4.0.2: 2347 | version "4.0.2" 2348 | resolved "https://registry.yarnpkg.com/postcss-minify-font-values/-/postcss-minify-font-values-4.0.2.tgz#cd4c344cce474343fac5d82206ab2cbcb8afd5a6" 2349 | integrity sha512-j85oO6OnRU9zPf04+PZv1LYIYOprWm6IA6zkXkrJXyRveDEuQggG6tvoy8ir8ZwjLxLuGfNkCZEQG7zan+Hbtg== 2350 | dependencies: 2351 | postcss "^7.0.0" 2352 | postcss-value-parser "^3.0.0" 2353 | 2354 | postcss-minify-gradients@^4.0.2: 2355 | version "4.0.2" 2356 | resolved "https://registry.yarnpkg.com/postcss-minify-gradients/-/postcss-minify-gradients-4.0.2.tgz#93b29c2ff5099c535eecda56c4aa6e665a663471" 2357 | integrity sha512-qKPfwlONdcf/AndP1U8SJ/uzIJtowHlMaSioKzebAXSG4iJthlWC9iSWznQcX4f66gIWX44RSA841HTHj3wK+Q== 2358 | dependencies: 2359 | cssnano-util-get-arguments "^4.0.0" 2360 | is-color-stop "^1.0.0" 2361 | postcss "^7.0.0" 2362 | postcss-value-parser "^3.0.0" 2363 | 2364 | postcss-minify-params@^4.0.2: 2365 | version "4.0.2" 2366 | resolved "https://registry.yarnpkg.com/postcss-minify-params/-/postcss-minify-params-4.0.2.tgz#6b9cef030c11e35261f95f618c90036d680db874" 2367 | integrity sha512-G7eWyzEx0xL4/wiBBJxJOz48zAKV2WG3iZOqVhPet/9geefm/Px5uo1fzlHu+DOjT+m0Mmiz3jkQzVHe6wxAWg== 2368 | dependencies: 2369 | alphanum-sort "^1.0.0" 2370 | browserslist "^4.0.0" 2371 | cssnano-util-get-arguments "^4.0.0" 2372 | postcss "^7.0.0" 2373 | postcss-value-parser "^3.0.0" 2374 | uniqs "^2.0.0" 2375 | 2376 | postcss-minify-selectors@^4.0.2: 2377 | version "4.0.2" 2378 | resolved "https://registry.yarnpkg.com/postcss-minify-selectors/-/postcss-minify-selectors-4.0.2.tgz#e2e5eb40bfee500d0cd9243500f5f8ea4262fbd8" 2379 | integrity sha512-D5S1iViljXBj9kflQo4YutWnJmwm8VvIsU1GeXJGiG9j8CIg9zs4voPMdQDUmIxetUOh60VilsNzCiAFTOqu3g== 2380 | dependencies: 2381 | alphanum-sort "^1.0.0" 2382 | has "^1.0.0" 2383 | postcss "^7.0.0" 2384 | postcss-selector-parser "^3.0.0" 2385 | 2386 | postcss-nesting@^7.0.0: 2387 | version "7.0.1" 2388 | resolved "https://registry.yarnpkg.com/postcss-nesting/-/postcss-nesting-7.0.1.tgz#b50ad7b7f0173e5b5e3880c3501344703e04c052" 2389 | integrity sha512-FrorPb0H3nuVq0Sff7W2rnc3SmIcruVC6YwpcS+k687VxyxO33iE1amna7wHuRVzM8vfiYofXSBHNAZ3QhLvYg== 2390 | dependencies: 2391 | postcss "^7.0.2" 2392 | 2393 | postcss-normalize-charset@^4.0.1: 2394 | version "4.0.1" 2395 | resolved "https://registry.yarnpkg.com/postcss-normalize-charset/-/postcss-normalize-charset-4.0.1.tgz#8b35add3aee83a136b0471e0d59be58a50285dd4" 2396 | integrity sha512-gMXCrrlWh6G27U0hF3vNvR3w8I1s2wOBILvA87iNXaPvSNo5uZAMYsZG7XjCUf1eVxuPfyL4TJ7++SGZLc9A3g== 2397 | dependencies: 2398 | postcss "^7.0.0" 2399 | 2400 | postcss-normalize-display-values@^4.0.2: 2401 | version "4.0.2" 2402 | resolved "https://registry.yarnpkg.com/postcss-normalize-display-values/-/postcss-normalize-display-values-4.0.2.tgz#0dbe04a4ce9063d4667ed2be476bb830c825935a" 2403 | integrity sha512-3F2jcsaMW7+VtRMAqf/3m4cPFhPD3EFRgNs18u+k3lTJJlVe7d0YPO+bnwqo2xg8YiRpDXJI2u8A0wqJxMsQuQ== 2404 | dependencies: 2405 | cssnano-util-get-match "^4.0.0" 2406 | postcss "^7.0.0" 2407 | postcss-value-parser "^3.0.0" 2408 | 2409 | postcss-normalize-positions@^4.0.2: 2410 | version "4.0.2" 2411 | resolved "https://registry.yarnpkg.com/postcss-normalize-positions/-/postcss-normalize-positions-4.0.2.tgz#05f757f84f260437378368a91f8932d4b102917f" 2412 | integrity sha512-Dlf3/9AxpxE+NF1fJxYDeggi5WwV35MXGFnnoccP/9qDtFrTArZ0D0R+iKcg5WsUd8nUYMIl8yXDCtcrT8JrdA== 2413 | dependencies: 2414 | cssnano-util-get-arguments "^4.0.0" 2415 | has "^1.0.0" 2416 | postcss "^7.0.0" 2417 | postcss-value-parser "^3.0.0" 2418 | 2419 | postcss-normalize-repeat-style@^4.0.2: 2420 | version "4.0.2" 2421 | resolved "https://registry.yarnpkg.com/postcss-normalize-repeat-style/-/postcss-normalize-repeat-style-4.0.2.tgz#c4ebbc289f3991a028d44751cbdd11918b17910c" 2422 | integrity sha512-qvigdYYMpSuoFs3Is/f5nHdRLJN/ITA7huIoCyqqENJe9PvPmLhNLMu7QTjPdtnVf6OcYYO5SHonx4+fbJE1+Q== 2423 | dependencies: 2424 | cssnano-util-get-arguments "^4.0.0" 2425 | cssnano-util-get-match "^4.0.0" 2426 | postcss "^7.0.0" 2427 | postcss-value-parser "^3.0.0" 2428 | 2429 | postcss-normalize-string@^4.0.2: 2430 | version "4.0.2" 2431 | resolved "https://registry.yarnpkg.com/postcss-normalize-string/-/postcss-normalize-string-4.0.2.tgz#cd44c40ab07a0c7a36dc5e99aace1eca4ec2690c" 2432 | integrity sha512-RrERod97Dnwqq49WNz8qo66ps0swYZDSb6rM57kN2J+aoyEAJfZ6bMx0sx/F9TIEX0xthPGCmeyiam/jXif0eA== 2433 | dependencies: 2434 | has "^1.0.0" 2435 | postcss "^7.0.0" 2436 | postcss-value-parser "^3.0.0" 2437 | 2438 | postcss-normalize-timing-functions@^4.0.2: 2439 | version "4.0.2" 2440 | resolved "https://registry.yarnpkg.com/postcss-normalize-timing-functions/-/postcss-normalize-timing-functions-4.0.2.tgz#8e009ca2a3949cdaf8ad23e6b6ab99cb5e7d28d9" 2441 | integrity sha512-acwJY95edP762e++00Ehq9L4sZCEcOPyaHwoaFOhIwWCDfik6YvqsYNxckee65JHLKzuNSSmAdxwD2Cud1Z54A== 2442 | dependencies: 2443 | cssnano-util-get-match "^4.0.0" 2444 | postcss "^7.0.0" 2445 | postcss-value-parser "^3.0.0" 2446 | 2447 | postcss-normalize-unicode@^4.0.1: 2448 | version "4.0.1" 2449 | resolved "https://registry.yarnpkg.com/postcss-normalize-unicode/-/postcss-normalize-unicode-4.0.1.tgz#841bd48fdcf3019ad4baa7493a3d363b52ae1cfb" 2450 | integrity sha512-od18Uq2wCYn+vZ/qCOeutvHjB5jm57ToxRaMeNuf0nWVHaP9Hua56QyMF6fs/4FSUnVIw0CBPsU0K4LnBPwYwg== 2451 | dependencies: 2452 | browserslist "^4.0.0" 2453 | postcss "^7.0.0" 2454 | postcss-value-parser "^3.0.0" 2455 | 2456 | postcss-normalize-url@^4.0.1: 2457 | version "4.0.1" 2458 | resolved "https://registry.yarnpkg.com/postcss-normalize-url/-/postcss-normalize-url-4.0.1.tgz#10e437f86bc7c7e58f7b9652ed878daaa95faae1" 2459 | integrity sha512-p5oVaF4+IHwu7VpMan/SSpmpYxcJMtkGppYf0VbdH5B6hN8YNmVyJLuY9FmLQTzY3fag5ESUUHDqM+heid0UVA== 2460 | dependencies: 2461 | is-absolute-url "^2.0.0" 2462 | normalize-url "^3.0.0" 2463 | postcss "^7.0.0" 2464 | postcss-value-parser "^3.0.0" 2465 | 2466 | postcss-normalize-whitespace@^4.0.2: 2467 | version "4.0.2" 2468 | resolved "https://registry.yarnpkg.com/postcss-normalize-whitespace/-/postcss-normalize-whitespace-4.0.2.tgz#bf1d4070fe4fcea87d1348e825d8cc0c5faa7d82" 2469 | integrity sha512-tO8QIgrsI3p95r8fyqKV+ufKlSHh9hMJqACqbv2XknufqEDhDvbguXGBBqxw9nsQoXWf0qOqppziKJKHMD4GtA== 2470 | dependencies: 2471 | postcss "^7.0.0" 2472 | postcss-value-parser "^3.0.0" 2473 | 2474 | postcss-ordered-values@^4.1.2: 2475 | version "4.1.2" 2476 | resolved "https://registry.yarnpkg.com/postcss-ordered-values/-/postcss-ordered-values-4.1.2.tgz#0cf75c820ec7d5c4d280189559e0b571ebac0eee" 2477 | integrity sha512-2fCObh5UanxvSxeXrtLtlwVThBvHn6MQcu4ksNT2tsaV2Fg76R2CV98W7wNSlX+5/pFwEyaDwKLLoEV7uRybAw== 2478 | dependencies: 2479 | cssnano-util-get-arguments "^4.0.0" 2480 | postcss "^7.0.0" 2481 | postcss-value-parser "^3.0.0" 2482 | 2483 | postcss-overflow-shorthand@^2.0.0: 2484 | version "2.0.0" 2485 | resolved "https://registry.yarnpkg.com/postcss-overflow-shorthand/-/postcss-overflow-shorthand-2.0.0.tgz#31ecf350e9c6f6ddc250a78f0c3e111f32dd4c30" 2486 | integrity sha512-aK0fHc9CBNx8jbzMYhshZcEv8LtYnBIRYQD5i7w/K/wS9c2+0NSR6B3OVMu5y0hBHYLcMGjfU+dmWYNKH0I85g== 2487 | dependencies: 2488 | postcss "^7.0.2" 2489 | 2490 | postcss-page-break@^2.0.0: 2491 | version "2.0.0" 2492 | resolved "https://registry.yarnpkg.com/postcss-page-break/-/postcss-page-break-2.0.0.tgz#add52d0e0a528cabe6afee8b46e2abb277df46bf" 2493 | integrity sha512-tkpTSrLpfLfD9HvgOlJuigLuk39wVTbbd8RKcy8/ugV2bNBUW3xU+AIqyxhDrQr1VUj1RmyJrBn1YWrqUm9zAQ== 2494 | dependencies: 2495 | postcss "^7.0.2" 2496 | 2497 | postcss-place@^4.0.1: 2498 | version "4.0.1" 2499 | resolved "https://registry.yarnpkg.com/postcss-place/-/postcss-place-4.0.1.tgz#e9f39d33d2dc584e46ee1db45adb77ca9d1dcc62" 2500 | integrity sha512-Zb6byCSLkgRKLODj/5mQugyuj9bvAAw9LqJJjgwz5cYryGeXfFZfSXoP1UfveccFmeq0b/2xxwcTEVScnqGxBg== 2501 | dependencies: 2502 | postcss "^7.0.2" 2503 | postcss-values-parser "^2.0.0" 2504 | 2505 | postcss-preset-env@^6.7.0: 2506 | version "6.7.0" 2507 | resolved "https://registry.yarnpkg.com/postcss-preset-env/-/postcss-preset-env-6.7.0.tgz#c34ddacf8f902383b35ad1e030f178f4cdf118a5" 2508 | integrity sha512-eU4/K5xzSFwUFJ8hTdTQzo2RBLbDVt83QZrAvI07TULOkmyQlnYlpwep+2yIK+K+0KlZO4BvFcleOCCcUtwchg== 2509 | dependencies: 2510 | autoprefixer "^9.6.1" 2511 | browserslist "^4.6.4" 2512 | caniuse-lite "^1.0.30000981" 2513 | css-blank-pseudo "^0.1.4" 2514 | css-has-pseudo "^0.10.0" 2515 | css-prefers-color-scheme "^3.1.1" 2516 | cssdb "^4.4.0" 2517 | postcss "^7.0.17" 2518 | postcss-attribute-case-insensitive "^4.0.1" 2519 | postcss-color-functional-notation "^2.0.1" 2520 | postcss-color-gray "^5.0.0" 2521 | postcss-color-hex-alpha "^5.0.3" 2522 | postcss-color-mod-function "^3.0.3" 2523 | postcss-color-rebeccapurple "^4.0.1" 2524 | postcss-custom-media "^7.0.8" 2525 | postcss-custom-properties "^8.0.11" 2526 | postcss-custom-selectors "^5.1.2" 2527 | postcss-dir-pseudo-class "^5.0.0" 2528 | postcss-double-position-gradients "^1.0.0" 2529 | postcss-env-function "^2.0.2" 2530 | postcss-focus-visible "^4.0.0" 2531 | postcss-focus-within "^3.0.0" 2532 | postcss-font-variant "^4.0.0" 2533 | postcss-gap-properties "^2.0.0" 2534 | postcss-image-set-function "^3.0.1" 2535 | postcss-initial "^3.0.0" 2536 | postcss-lab-function "^2.0.1" 2537 | postcss-logical "^3.0.0" 2538 | postcss-media-minmax "^4.0.0" 2539 | postcss-nesting "^7.0.0" 2540 | postcss-overflow-shorthand "^2.0.0" 2541 | postcss-page-break "^2.0.0" 2542 | postcss-place "^4.0.1" 2543 | postcss-pseudo-class-any-link "^6.0.0" 2544 | postcss-replace-overflow-wrap "^3.0.0" 2545 | postcss-selector-matches "^4.0.0" 2546 | postcss-selector-not "^4.0.0" 2547 | 2548 | postcss-pseudo-class-any-link@^6.0.0: 2549 | version "6.0.0" 2550 | resolved "https://registry.yarnpkg.com/postcss-pseudo-class-any-link/-/postcss-pseudo-class-any-link-6.0.0.tgz#2ed3eed393b3702879dec4a87032b210daeb04d1" 2551 | integrity sha512-lgXW9sYJdLqtmw23otOzrtbDXofUdfYzNm4PIpNE322/swES3VU9XlXHeJS46zT2onFO7V1QFdD4Q9LiZj8mew== 2552 | dependencies: 2553 | postcss "^7.0.2" 2554 | postcss-selector-parser "^5.0.0-rc.3" 2555 | 2556 | postcss-reduce-initial@^4.0.3: 2557 | version "4.0.3" 2558 | resolved "https://registry.yarnpkg.com/postcss-reduce-initial/-/postcss-reduce-initial-4.0.3.tgz#7fd42ebea5e9c814609639e2c2e84ae270ba48df" 2559 | integrity sha512-gKWmR5aUulSjbzOfD9AlJiHCGH6AEVLaM0AV+aSioxUDd16qXP1PCh8d1/BGVvpdWn8k/HiK7n6TjeoXN1F7DA== 2560 | dependencies: 2561 | browserslist "^4.0.0" 2562 | caniuse-api "^3.0.0" 2563 | has "^1.0.0" 2564 | postcss "^7.0.0" 2565 | 2566 | postcss-reduce-transforms@^4.0.2: 2567 | version "4.0.2" 2568 | resolved "https://registry.yarnpkg.com/postcss-reduce-transforms/-/postcss-reduce-transforms-4.0.2.tgz#17efa405eacc6e07be3414a5ca2d1074681d4e29" 2569 | integrity sha512-EEVig1Q2QJ4ELpJXMZR8Vt5DQx8/mo+dGWSR7vWXqcob2gQLyQGsionYcGKATXvQzMPn6DSN1vTN7yFximdIAg== 2570 | dependencies: 2571 | cssnano-util-get-match "^4.0.0" 2572 | has "^1.0.0" 2573 | postcss "^7.0.0" 2574 | postcss-value-parser "^3.0.0" 2575 | 2576 | postcss-replace-overflow-wrap@^3.0.0: 2577 | version "3.0.0" 2578 | resolved "https://registry.yarnpkg.com/postcss-replace-overflow-wrap/-/postcss-replace-overflow-wrap-3.0.0.tgz#61b360ffdaedca84c7c918d2b0f0d0ea559ab01c" 2579 | integrity sha512-2T5hcEHArDT6X9+9dVSPQdo7QHzG4XKclFT8rU5TzJPDN7RIRTbO9c4drUISOVemLj03aezStHCR2AIcr8XLpw== 2580 | dependencies: 2581 | postcss "^7.0.2" 2582 | 2583 | postcss-reporter@^6.0.0: 2584 | version "6.0.1" 2585 | resolved "https://registry.yarnpkg.com/postcss-reporter/-/postcss-reporter-6.0.1.tgz#7c055120060a97c8837b4e48215661aafb74245f" 2586 | integrity sha512-LpmQjfRWyabc+fRygxZjpRxfhRf9u/fdlKf4VHG4TSPbV2XNsuISzYW1KL+1aQzx53CAppa1bKG4APIB/DOXXw== 2587 | dependencies: 2588 | chalk "^2.4.1" 2589 | lodash "^4.17.11" 2590 | log-symbols "^2.2.0" 2591 | postcss "^7.0.7" 2592 | 2593 | postcss-selector-matches@^4.0.0: 2594 | version "4.0.0" 2595 | resolved "https://registry.yarnpkg.com/postcss-selector-matches/-/postcss-selector-matches-4.0.0.tgz#71c8248f917ba2cc93037c9637ee09c64436fcff" 2596 | integrity sha512-LgsHwQR/EsRYSqlwdGzeaPKVT0Ml7LAT6E75T8W8xLJY62CE4S/l03BWIt3jT8Taq22kXP08s2SfTSzaraoPww== 2597 | dependencies: 2598 | balanced-match "^1.0.0" 2599 | postcss "^7.0.2" 2600 | 2601 | postcss-selector-not@^4.0.0: 2602 | version "4.0.0" 2603 | resolved "https://registry.yarnpkg.com/postcss-selector-not/-/postcss-selector-not-4.0.0.tgz#c68ff7ba96527499e832724a2674d65603b645c0" 2604 | integrity sha512-W+bkBZRhqJaYN8XAnbbZPLWMvZD1wKTu0UxtFKdhtGjWYmxhkUneoeOhRJKdAE5V7ZTlnbHfCR+6bNwK9e1dTQ== 2605 | dependencies: 2606 | balanced-match "^1.0.0" 2607 | postcss "^7.0.2" 2608 | 2609 | postcss-selector-parser@^3.0.0: 2610 | version "3.1.2" 2611 | resolved "https://registry.yarnpkg.com/postcss-selector-parser/-/postcss-selector-parser-3.1.2.tgz#b310f5c4c0fdaf76f94902bbaa30db6aa84f5270" 2612 | integrity sha512-h7fJ/5uWuRVyOtkO45pnt1Ih40CEleeyCHzipqAZO2e5H20g25Y48uYnFUiShvY4rZWNJ/Bib/KVPmanaCtOhA== 2613 | dependencies: 2614 | dot-prop "^5.2.0" 2615 | indexes-of "^1.0.1" 2616 | uniq "^1.0.1" 2617 | 2618 | postcss-selector-parser@^5.0.0-rc.3, postcss-selector-parser@^5.0.0-rc.4: 2619 | version "5.0.0" 2620 | resolved "https://registry.yarnpkg.com/postcss-selector-parser/-/postcss-selector-parser-5.0.0.tgz#249044356697b33b64f1a8f7c80922dddee7195c" 2621 | integrity sha512-w+zLE5Jhg6Liz8+rQOWEAwtwkyqpfnmsinXjXg6cY7YIONZZtgvE0v2O0uhQBs0peNomOJwWRKt6JBfTdTd3OQ== 2622 | dependencies: 2623 | cssesc "^2.0.0" 2624 | indexes-of "^1.0.1" 2625 | uniq "^1.0.1" 2626 | 2627 | postcss-selector-parser@^6.0.2: 2628 | version "6.0.2" 2629 | resolved "https://registry.yarnpkg.com/postcss-selector-parser/-/postcss-selector-parser-6.0.2.tgz#934cf799d016c83411859e09dcecade01286ec5c" 2630 | integrity sha512-36P2QR59jDTOAiIkqEprfJDsoNrvwFei3eCqKd1Y0tUsBimsq39BLp7RD+JWny3WgB1zGhJX8XVePwm9k4wdBg== 2631 | dependencies: 2632 | cssesc "^3.0.0" 2633 | indexes-of "^1.0.1" 2634 | uniq "^1.0.1" 2635 | 2636 | postcss-svgo@^4.0.2: 2637 | version "4.0.2" 2638 | resolved "https://registry.yarnpkg.com/postcss-svgo/-/postcss-svgo-4.0.2.tgz#17b997bc711b333bab143aaed3b8d3d6e3d38258" 2639 | integrity sha512-C6wyjo3VwFm0QgBy+Fu7gCYOkCmgmClghO+pjcxvrcBKtiKt0uCF+hvbMO1fyv5BMImRK90SMb+dwUnfbGd+jw== 2640 | dependencies: 2641 | is-svg "^3.0.0" 2642 | postcss "^7.0.0" 2643 | postcss-value-parser "^3.0.0" 2644 | svgo "^1.0.0" 2645 | 2646 | postcss-unique-selectors@^4.0.1: 2647 | version "4.0.1" 2648 | resolved "https://registry.yarnpkg.com/postcss-unique-selectors/-/postcss-unique-selectors-4.0.1.tgz#9446911f3289bfd64c6d680f073c03b1f9ee4bac" 2649 | integrity sha512-+JanVaryLo9QwZjKrmJgkI4Fn8SBgRO6WXQBJi7KiAVPlmxikB5Jzc4EvXMT2H0/m0RjrVVm9rGNhZddm/8Spg== 2650 | dependencies: 2651 | alphanum-sort "^1.0.0" 2652 | postcss "^7.0.0" 2653 | uniqs "^2.0.0" 2654 | 2655 | postcss-value-parser@^3.0.0: 2656 | version "3.3.1" 2657 | resolved "https://registry.yarnpkg.com/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz#9ff822547e2893213cf1c30efa51ac5fd1ba8281" 2658 | integrity sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ== 2659 | 2660 | postcss-value-parser@^4.0.2: 2661 | version "4.0.3" 2662 | resolved "https://registry.yarnpkg.com/postcss-value-parser/-/postcss-value-parser-4.0.3.tgz#651ff4593aa9eda8d5d0d66593a2417aeaeb325d" 2663 | integrity sha512-N7h4pG+Nnu5BEIzyeaaIYWs0LI5XC40OrRh5L60z0QjFsqGWcHcbkBvpe1WYpcIS9yQ8sOi/vIPt1ejQCrMVrg== 2664 | 2665 | postcss-values-parser@^2.0.0, postcss-values-parser@^2.0.1: 2666 | version "2.0.1" 2667 | resolved "https://registry.yarnpkg.com/postcss-values-parser/-/postcss-values-parser-2.0.1.tgz#da8b472d901da1e205b47bdc98637b9e9e550e5f" 2668 | integrity sha512-2tLuBsA6P4rYTNKCXYG/71C7j1pU6pK503suYOmn4xYrQIzW+opD+7FAFNuGSdZC/3Qfy334QbeMu7MEb8gOxg== 2669 | dependencies: 2670 | flatten "^1.0.2" 2671 | indexes-of "^1.0.1" 2672 | uniq "^1.0.1" 2673 | 2674 | postcss@^7.0.0, postcss@^7.0.1, postcss@^7.0.14, postcss@^7.0.17, postcss@^7.0.2, postcss@^7.0.26, postcss@^7.0.27, postcss@^7.0.5, postcss@^7.0.6, postcss@^7.0.7: 2675 | version "7.0.27" 2676 | resolved "https://registry.yarnpkg.com/postcss/-/postcss-7.0.27.tgz#cc67cdc6b0daa375105b7c424a85567345fc54d9" 2677 | integrity sha512-WuQETPMcW9Uf1/22HWUWP9lgsIC+KEHg2kozMflKjbeUtw9ujvFX6QmIfozaErDkmLWS9WEnEdEe6Uo9/BNTdQ== 2678 | dependencies: 2679 | chalk "^2.4.2" 2680 | source-map "^0.6.1" 2681 | supports-color "^6.1.0" 2682 | 2683 | prelude-ls@~1.1.2: 2684 | version "1.1.2" 2685 | resolved "https://registry.yarnpkg.com/prelude-ls/-/prelude-ls-1.1.2.tgz#21932a549f5e52ffd9a827f570e04be62a97da54" 2686 | integrity sha1-IZMqVJ9eUv/ZqCf1cOBL5iqX2lQ= 2687 | 2688 | pretty-hrtime@^1.0.3: 2689 | version "1.0.3" 2690 | resolved "https://registry.yarnpkg.com/pretty-hrtime/-/pretty-hrtime-1.0.3.tgz#b7e3ea42435a4c9b2759d99e0f201eb195802ee1" 2691 | integrity sha1-t+PqQkNaTJsnWdmeDyAesZWALuE= 2692 | 2693 | progress@^2.0.0: 2694 | version "2.0.3" 2695 | resolved "https://registry.yarnpkg.com/progress/-/progress-2.0.3.tgz#7e8cf8d8f5b8f239c1bc68beb4eb78567d572ef8" 2696 | integrity sha512-7PiHtLll5LdnKIMw100I+8xJXR5gW2QwWYkT6iJva0bXitZKa/XMrSbdmg3r2Xnaidz9Qumd0VPaMrZlF9V9sA== 2697 | 2698 | prop-types@^15.7.2: 2699 | version "15.7.2" 2700 | resolved "https://registry.yarnpkg.com/prop-types/-/prop-types-15.7.2.tgz#52c41e75b8c87e72b9d9360e0206b99dcbffa6c5" 2701 | integrity sha512-8QQikdH7//R2vurIJSutZ1smHYTcLpRWEOlHnzcWHmBYrOGUysKwSsrC89BCiFj3CbrfJ/nXFdJepOVrY1GCHQ== 2702 | dependencies: 2703 | loose-envify "^1.4.0" 2704 | object-assign "^4.1.1" 2705 | react-is "^16.8.1" 2706 | 2707 | punycode@^2.1.0: 2708 | version "2.1.1" 2709 | resolved "https://registry.yarnpkg.com/punycode/-/punycode-2.1.1.tgz#b58b010ac40c22c5657616c8d2c2c02c7bf479ec" 2710 | integrity sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A== 2711 | 2712 | q@^1.1.2: 2713 | version "1.5.1" 2714 | resolved "https://registry.yarnpkg.com/q/-/q-1.5.1.tgz#7e32f75b41381291d04611f1bf14109ac00651d7" 2715 | integrity sha1-fjL3W0E4EpHQRhHxvxQQmsAGUdc= 2716 | 2717 | quick-lru@^1.0.0: 2718 | version "1.1.0" 2719 | resolved "https://registry.yarnpkg.com/quick-lru/-/quick-lru-1.1.0.tgz#4360b17c61136ad38078397ff11416e186dcfbb8" 2720 | integrity sha1-Q2CxfGETatOAeDl/8RQW4Ybc+7g= 2721 | 2722 | react-is@^16.8.1: 2723 | version "16.12.0" 2724 | resolved "https://registry.yarnpkg.com/react-is/-/react-is-16.12.0.tgz#2cc0fe0fba742d97fd527c42a13bec4eeb06241c" 2725 | integrity sha512-rPCkf/mWBtKc97aLL9/txD8DZdemK0vkA3JMLShjlJB3Pj3s+lpf1KaBzMfQrAmhMQB0n1cU/SUGgKKBCe837Q== 2726 | 2727 | read-cache@^1.0.0: 2728 | version "1.0.0" 2729 | resolved "https://registry.yarnpkg.com/read-cache/-/read-cache-1.0.0.tgz#e664ef31161166c9751cdbe8dbcf86b5fb58f774" 2730 | integrity sha1-5mTvMRYRZsl1HNvo28+GtftY93Q= 2731 | dependencies: 2732 | pify "^2.3.0" 2733 | 2734 | read-pkg-up@^2.0.0: 2735 | version "2.0.0" 2736 | resolved "https://registry.yarnpkg.com/read-pkg-up/-/read-pkg-up-2.0.0.tgz#6b72a8048984e0c41e79510fd5e9fa99b3b549be" 2737 | integrity sha1-a3KoBImE4MQeeVEP1en6mbO1Sb4= 2738 | dependencies: 2739 | find-up "^2.0.0" 2740 | read-pkg "^2.0.0" 2741 | 2742 | read-pkg-up@^3.0.0: 2743 | version "3.0.0" 2744 | resolved "https://registry.yarnpkg.com/read-pkg-up/-/read-pkg-up-3.0.0.tgz#3ed496685dba0f8fe118d0691dc51f4a1ff96f07" 2745 | integrity sha1-PtSWaF26D4/hGNBpHcUfSh/5bwc= 2746 | dependencies: 2747 | find-up "^2.0.0" 2748 | read-pkg "^3.0.0" 2749 | 2750 | read-pkg@^2.0.0: 2751 | version "2.0.0" 2752 | resolved "https://registry.yarnpkg.com/read-pkg/-/read-pkg-2.0.0.tgz#8ef1c0623c6a6db0dc6713c4bfac46332b2368f8" 2753 | integrity sha1-jvHAYjxqbbDcZxPEv6xGMysjaPg= 2754 | dependencies: 2755 | load-json-file "^2.0.0" 2756 | normalize-package-data "^2.3.2" 2757 | path-type "^2.0.0" 2758 | 2759 | read-pkg@^3.0.0: 2760 | version "3.0.0" 2761 | resolved "https://registry.yarnpkg.com/read-pkg/-/read-pkg-3.0.0.tgz#9cbc686978fee65d16c00e2b19c237fcf6e38389" 2762 | integrity sha1-nLxoaXj+5l0WwA4rGcI3/Pbjg4k= 2763 | dependencies: 2764 | load-json-file "^4.0.0" 2765 | normalize-package-data "^2.3.2" 2766 | path-type "^3.0.0" 2767 | 2768 | readdirp@~3.3.0: 2769 | version "3.3.0" 2770 | resolved "https://registry.yarnpkg.com/readdirp/-/readdirp-3.3.0.tgz#984458d13a1e42e2e9f5841b129e162f369aff17" 2771 | integrity sha512-zz0pAkSPOXXm1viEwygWIPSPkcBYjW1xU5j/JBh5t9bGCJwa6f9+BJa6VaB2g+b55yVrmXzqkyLf4xaWYM0IkQ== 2772 | dependencies: 2773 | picomatch "^2.0.7" 2774 | 2775 | redent@^2.0.0: 2776 | version "2.0.0" 2777 | resolved "https://registry.yarnpkg.com/redent/-/redent-2.0.0.tgz#c1b2007b42d57eb1389079b3c8333639d5e1ccaa" 2778 | integrity sha1-wbIAe0LVfrE4kHmzyDM2OdXhzKo= 2779 | dependencies: 2780 | indent-string "^3.0.0" 2781 | strip-indent "^2.0.0" 2782 | 2783 | regexpp@^2.0.1: 2784 | version "2.0.1" 2785 | resolved "https://registry.yarnpkg.com/regexpp/-/regexpp-2.0.1.tgz#8d19d31cf632482b589049f8281f93dbcba4d07f" 2786 | integrity sha512-lv0M6+TkDVniA3aD1Eg0DVpfU/booSu7Eev3TDO/mZKHBfVjgCGTV4t4buppESEYDtkArYFOxTJWv6S5C+iaNw== 2787 | 2788 | regexpp@^3.0.0: 2789 | version "3.0.0" 2790 | resolved "https://registry.yarnpkg.com/regexpp/-/regexpp-3.0.0.tgz#dd63982ee3300e67b41c1956f850aa680d9d330e" 2791 | integrity sha512-Z+hNr7RAVWxznLPuA7DIh8UNX1j9CDrUQxskw9IrBE1Dxue2lyXT+shqEIeLUjrokxIP8CMy1WkjgG3rTsd5/g== 2792 | 2793 | require-directory@^2.1.1: 2794 | version "2.1.1" 2795 | resolved "https://registry.yarnpkg.com/require-directory/-/require-directory-2.1.1.tgz#8c64ad5fd30dab1c976e2344ffe7f792a6a6df42" 2796 | integrity sha1-jGStX9MNqxyXbiNE/+f3kqam30I= 2797 | 2798 | require-main-filename@^2.0.0: 2799 | version "2.0.0" 2800 | resolved "https://registry.yarnpkg.com/require-main-filename/-/require-main-filename-2.0.0.tgz#d0b329ecc7cc0f61649f62215be69af54aa8989b" 2801 | integrity sha512-NKN5kMDylKuldxYLSUfrbo5Tuzh4hd+2E8NPPX02mZtn1VuREQToYe/ZdlJy+J3uCpfaiGF05e7B8W0iXbQHmg== 2802 | 2803 | resolve-from@^3.0.0: 2804 | version "3.0.0" 2805 | resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-3.0.0.tgz#b22c7af7d9d6881bc8b6e653335eebcb0a188748" 2806 | integrity sha1-six699nWiBvItuZTM17rywoYh0g= 2807 | 2808 | resolve-from@^4.0.0: 2809 | version "4.0.0" 2810 | resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-4.0.0.tgz#4abcd852ad32dd7baabfe9b40e00a36db5f392e6" 2811 | integrity sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g== 2812 | 2813 | resolve@^1.10.0, resolve@^1.10.1, resolve@^1.11.0, resolve@^1.13.1: 2814 | version "1.15.1" 2815 | resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.15.1.tgz#27bdcdeffeaf2d6244b95bb0f9f4b4653451f3e8" 2816 | integrity sha512-84oo6ZTtoTUpjgNEr5SJyzQhzL72gaRodsSfyxC/AXRvwu0Yse9H8eF9IpGo7b8YetZhlI6v7ZQ6bKBFV/6S7w== 2817 | dependencies: 2818 | path-parse "^1.0.6" 2819 | 2820 | restore-cursor@^2.0.0: 2821 | version "2.0.0" 2822 | resolved "https://registry.yarnpkg.com/restore-cursor/-/restore-cursor-2.0.0.tgz#9f7ee287f82fd326d4fd162923d62129eee0dfaf" 2823 | integrity sha1-n37ih/gv0ybU/RYpI9YhKe7g368= 2824 | dependencies: 2825 | onetime "^2.0.0" 2826 | signal-exit "^3.0.2" 2827 | 2828 | reusify@^1.0.0: 2829 | version "1.0.4" 2830 | resolved "https://registry.yarnpkg.com/reusify/-/reusify-1.0.4.tgz#90da382b1e126efc02146e90845a88db12925d76" 2831 | integrity sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw== 2832 | 2833 | rgb-regex@^1.0.1: 2834 | version "1.0.1" 2835 | resolved "https://registry.yarnpkg.com/rgb-regex/-/rgb-regex-1.0.1.tgz#c0e0d6882df0e23be254a475e8edd41915feaeb1" 2836 | integrity sha1-wODWiC3w4jviVKR16O3UGRX+rrE= 2837 | 2838 | rgba-regex@^1.0.0: 2839 | version "1.0.0" 2840 | resolved "https://registry.yarnpkg.com/rgba-regex/-/rgba-regex-1.0.0.tgz#43374e2e2ca0968b0ef1523460b7d730ff22eeb3" 2841 | integrity sha1-QzdOLiyglosO8VI0YLfXMP8i7rM= 2842 | 2843 | rimraf@2.6.3: 2844 | version "2.6.3" 2845 | resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.6.3.tgz#b2d104fe0d8fb27cf9e0a1cda8262dd3833c6cab" 2846 | integrity sha512-mwqeW5XsA2qAejG46gYdENaxXjx9onRNCfn7L0duuP4hCuTIi/QO7PDK07KJfp1d+izWPrzEJDcSqBa0OZQriA== 2847 | dependencies: 2848 | glob "^7.1.3" 2849 | 2850 | rimraf@^3.0.0: 2851 | version "3.0.2" 2852 | resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-3.0.2.tgz#f1a5402ba6220ad52cc1282bac1ae3aa49fd061a" 2853 | integrity sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA== 2854 | dependencies: 2855 | glob "^7.1.3" 2856 | 2857 | rollup-plugin-terser@^5.2.0: 2858 | version "5.2.0" 2859 | resolved "https://registry.yarnpkg.com/rollup-plugin-terser/-/rollup-plugin-terser-5.2.0.tgz#ba758adf769347b7f1eaf9ef35978d2e207dccc7" 2860 | integrity sha512-jQI+nYhtDBc9HFRBz8iGttQg7li9klmzR62RG2W2nN6hJ/FI2K2ItYQ7kJ7/zn+vs+BP1AEccmVRjRN989I+Nw== 2861 | dependencies: 2862 | "@babel/code-frame" "^7.5.5" 2863 | jest-worker "^24.9.0" 2864 | rollup-pluginutils "^2.8.2" 2865 | serialize-javascript "^2.1.2" 2866 | terser "^4.6.2" 2867 | 2868 | rollup-pluginutils@^2.8.2: 2869 | version "2.8.2" 2870 | resolved "https://registry.yarnpkg.com/rollup-pluginutils/-/rollup-pluginutils-2.8.2.tgz#72f2af0748b592364dbd3389e600e5a9444a351e" 2871 | integrity sha512-EEp9NhnUkwY8aif6bxgovPHMoMoNr2FulJziTndpt5H9RdwC47GSGuII9XxpSdzVGM0GWrNPHV6ie1LTNJPaLQ== 2872 | dependencies: 2873 | estree-walker "^0.6.1" 2874 | 2875 | rollup@^1.31.1: 2876 | version "1.31.1" 2877 | resolved "https://registry.yarnpkg.com/rollup/-/rollup-1.31.1.tgz#4170d6f87148d46e5fbe29b493f8f3ea3453c96f" 2878 | integrity sha512-2JREN1YdrS/kpPzEd33ZjtuNbOuBC3ePfuZBdKEybvqcEcszW1ckyVqzcEiEe0nE8sqHK+pbJg+PsAgRJ8+1dg== 2879 | dependencies: 2880 | "@types/estree" "*" 2881 | "@types/node" "*" 2882 | acorn "^7.1.0" 2883 | 2884 | run-async@^2.2.0: 2885 | version "2.3.0" 2886 | resolved "https://registry.yarnpkg.com/run-async/-/run-async-2.3.0.tgz#0371ab4ae0bdd720d4166d7dfda64ff7a445a6c0" 2887 | integrity sha1-A3GrSuC91yDUFm19/aZP96RFpsA= 2888 | dependencies: 2889 | is-promise "^2.1.0" 2890 | 2891 | run-parallel@^1.1.2, run-parallel@^1.1.9: 2892 | version "1.1.9" 2893 | resolved "https://registry.yarnpkg.com/run-parallel/-/run-parallel-1.1.9.tgz#c9dd3a7cf9f4b2c4b6244e173a6ed866e61dd679" 2894 | integrity sha512-DEqnSRTDw/Tc3FXf49zedI638Z9onwUotBMiUFKmrO2sdFKIbXamXGQ3Axd4qgphxKB4kw/qP1w5kTxnfU1B9Q== 2895 | 2896 | rxjs@^6.4.0: 2897 | version "6.5.4" 2898 | resolved "https://registry.yarnpkg.com/rxjs/-/rxjs-6.5.4.tgz#e0777fe0d184cec7872df147f303572d414e211c" 2899 | integrity sha512-naMQXcgEo3csAEGvw/NydRA0fuS2nDZJiw1YUWFKU7aPPAPGZEsD4Iimit96qwCieH6y614MCLYwdkrWx7z/7Q== 2900 | dependencies: 2901 | tslib "^1.9.0" 2902 | 2903 | "safer-buffer@>= 2.1.2 < 3": 2904 | version "2.1.2" 2905 | resolved "https://registry.yarnpkg.com/safer-buffer/-/safer-buffer-2.1.2.tgz#44fa161b0187b9549dd84bb91802f9bd8385cd6a" 2906 | integrity sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg== 2907 | 2908 | sax@~1.2.4: 2909 | version "1.2.4" 2910 | resolved "https://registry.yarnpkg.com/sax/-/sax-1.2.4.tgz#2816234e2378bddc4e5354fab5caa895df7100d9" 2911 | integrity sha512-NqVDv9TpANUjFm0N8uM5GxL36UgKi9/atZw+x7YFnQ8ckwFGKrl4xX4yWtrey3UJm5nP1kUbnYgLopqWNSRhWw== 2912 | 2913 | "semver@2 || 3 || 4 || 5", semver@^5.5.0: 2914 | version "5.7.1" 2915 | resolved "https://registry.yarnpkg.com/semver/-/semver-5.7.1.tgz#a954f931aeba508d307bbf069eff0c01c96116f7" 2916 | integrity sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ== 2917 | 2918 | semver@^6.1.0, semver@^6.1.2, semver@^6.3.0: 2919 | version "6.3.0" 2920 | resolved "https://registry.yarnpkg.com/semver/-/semver-6.3.0.tgz#ee0a64c8af5e8ceea67687b133761e1becbd1d3d" 2921 | integrity sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw== 2922 | 2923 | serialize-javascript@^2.1.2: 2924 | version "2.1.2" 2925 | resolved "https://registry.yarnpkg.com/serialize-javascript/-/serialize-javascript-2.1.2.tgz#ecec53b0e0317bdc95ef76ab7074b7384785fa61" 2926 | integrity sha512-rs9OggEUF0V4jUSecXazOYsLfu7OGK2qIn3c7IPBiffz32XniEp/TX9Xmc9LQfK2nQ2QKHvZ2oygKUGU0lG4jQ== 2927 | 2928 | set-blocking@^2.0.0: 2929 | version "2.0.0" 2930 | resolved "https://registry.yarnpkg.com/set-blocking/-/set-blocking-2.0.0.tgz#045f9782d011ae9a6803ddd382b24392b3d890f7" 2931 | integrity sha1-BF+XgtARrppoA93TgrJDkrPYkPc= 2932 | 2933 | shebang-command@^1.2.0: 2934 | version "1.2.0" 2935 | resolved "https://registry.yarnpkg.com/shebang-command/-/shebang-command-1.2.0.tgz#44aac65b695b03398968c39f363fee5deafdf1ea" 2936 | integrity sha1-RKrGW2lbAzmJaMOfNj/uXer98eo= 2937 | dependencies: 2938 | shebang-regex "^1.0.0" 2939 | 2940 | shebang-regex@^1.0.0: 2941 | version "1.0.0" 2942 | resolved "https://registry.yarnpkg.com/shebang-regex/-/shebang-regex-1.0.0.tgz#da42f49740c0b42db2ca9728571cb190c98efea3" 2943 | integrity sha1-2kL0l0DAtC2yypcoVxyxkMmO/qM= 2944 | 2945 | signal-exit@^3.0.0, signal-exit@^3.0.2: 2946 | version "3.0.2" 2947 | resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.2.tgz#b5fdc08f1287ea1178628e415e25132b73646c6d" 2948 | integrity sha1-tf3AjxKH6hF4Yo5BXiUTK3NkbG0= 2949 | 2950 | simple-swizzle@^0.2.2: 2951 | version "0.2.2" 2952 | resolved "https://registry.yarnpkg.com/simple-swizzle/-/simple-swizzle-0.2.2.tgz#a4da6b635ffcccca33f70d17cb92592de95e557a" 2953 | integrity sha1-pNprY1/8zMoz9w0Xy5JZLeleVXo= 2954 | dependencies: 2955 | is-arrayish "^0.3.1" 2956 | 2957 | slash@^3.0.0: 2958 | version "3.0.0" 2959 | resolved "https://registry.yarnpkg.com/slash/-/slash-3.0.0.tgz#6539be870c165adbd5240220dbe361f1bc4d4634" 2960 | integrity sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q== 2961 | 2962 | slice-ansi@^2.1.0: 2963 | version "2.1.0" 2964 | resolved "https://registry.yarnpkg.com/slice-ansi/-/slice-ansi-2.1.0.tgz#cacd7693461a637a5788d92a7dd4fba068e81636" 2965 | integrity sha512-Qu+VC3EwYLldKa1fCxuuvULvSJOKEgk9pi8dZeCVK7TqBfUNTH4sFkk4joj8afVSfAYgJoSOetjx9QWOJ5mYoQ== 2966 | dependencies: 2967 | ansi-styles "^3.2.0" 2968 | astral-regex "^1.0.0" 2969 | is-fullwidth-code-point "^2.0.0" 2970 | 2971 | source-map-support@~0.5.12: 2972 | version "0.5.16" 2973 | resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.5.16.tgz#0ae069e7fe3ba7538c64c98515e35339eac5a042" 2974 | integrity sha512-efyLRJDr68D9hBBNIPWFjhpFzURh+KJykQwvMyW5UiZzYwoF6l4YMMDIJJEyFWxWCqfyxLzz6tSfUFR+kXXsVQ== 2975 | dependencies: 2976 | buffer-from "^1.0.0" 2977 | source-map "^0.6.0" 2978 | 2979 | source-map@^0.6.0, source-map@^0.6.1, source-map@~0.6.1: 2980 | version "0.6.1" 2981 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.6.1.tgz#74722af32e9614e9c287a8d0bbde48b5e2f1a263" 2982 | integrity sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g== 2983 | 2984 | spdx-correct@^3.0.0: 2985 | version "3.1.0" 2986 | resolved "https://registry.yarnpkg.com/spdx-correct/-/spdx-correct-3.1.0.tgz#fb83e504445268f154b074e218c87c003cd31df4" 2987 | integrity sha512-lr2EZCctC2BNR7j7WzJ2FpDznxky1sjfxvvYEyzxNyb6lZXHODmEoJeFu4JupYlkfha1KZpJyoqiJ7pgA1qq8Q== 2988 | dependencies: 2989 | spdx-expression-parse "^3.0.0" 2990 | spdx-license-ids "^3.0.0" 2991 | 2992 | spdx-exceptions@^2.1.0: 2993 | version "2.2.0" 2994 | resolved "https://registry.yarnpkg.com/spdx-exceptions/-/spdx-exceptions-2.2.0.tgz#2ea450aee74f2a89bfb94519c07fcd6f41322977" 2995 | integrity sha512-2XQACfElKi9SlVb1CYadKDXvoajPgBVPn/gOQLrTvHdElaVhr7ZEbqJaRnJLVNeaI4cMEAgVCeBMKF6MWRDCRA== 2996 | 2997 | spdx-expression-parse@^3.0.0: 2998 | version "3.0.0" 2999 | resolved "https://registry.yarnpkg.com/spdx-expression-parse/-/spdx-expression-parse-3.0.0.tgz#99e119b7a5da00e05491c9fa338b7904823b41d0" 3000 | integrity sha512-Yg6D3XpRD4kkOmTpdgbUiEJFKghJH03fiC1OPll5h/0sO6neh2jqRDVHOQ4o/LMea0tgCkbMgea5ip/e+MkWyg== 3001 | dependencies: 3002 | spdx-exceptions "^2.1.0" 3003 | spdx-license-ids "^3.0.0" 3004 | 3005 | spdx-license-ids@^3.0.0: 3006 | version "3.0.5" 3007 | resolved "https://registry.yarnpkg.com/spdx-license-ids/-/spdx-license-ids-3.0.5.tgz#3694b5804567a458d3c8045842a6358632f62654" 3008 | integrity sha512-J+FWzZoynJEXGphVIS+XEh3kFSjZX/1i9gFBaWQcB+/tmpe2qUsSBABpcxqxnAxFdiUFEgAX1bjYGQvIZmoz9Q== 3009 | 3010 | sprintf-js@~1.0.2: 3011 | version "1.0.3" 3012 | resolved "https://registry.yarnpkg.com/sprintf-js/-/sprintf-js-1.0.3.tgz#04e6926f662895354f3dd015203633b857297e2c" 3013 | integrity sha1-BOaSb2YolTVPPdAVIDYzuFcpfiw= 3014 | 3015 | stable@^0.1.8: 3016 | version "0.1.8" 3017 | resolved "https://registry.yarnpkg.com/stable/-/stable-0.1.8.tgz#836eb3c8382fe2936feaf544631017ce7d47a3cf" 3018 | integrity sha512-ji9qxRnOVfcuLDySj9qzhGSEFVobyt1kIOSkj1qZzYLzq7Tos/oUUWvotUPQLlrsidqsK6tBH89Bc9kL5zHA6w== 3019 | 3020 | standard-engine@^12.0.0: 3021 | version "12.0.0" 3022 | resolved "https://registry.yarnpkg.com/standard-engine/-/standard-engine-12.0.0.tgz#1643dceba96ca9c04c535a1fb28d79bfb21b3572" 3023 | integrity sha512-gJIIRb0LpL7AHyGbN9+hJ4UJns37lxmNTnMGRLC8CFrzQ+oB/K60IQjKNgPBCB2VP60Ypm6f8DFXvhVWdBOO+g== 3024 | dependencies: 3025 | deglob "^4.0.0" 3026 | get-stdin "^7.0.0" 3027 | minimist "^1.1.0" 3028 | pkg-conf "^3.1.0" 3029 | 3030 | standard@^14.3.1: 3031 | version "14.3.1" 3032 | resolved "https://registry.yarnpkg.com/standard/-/standard-14.3.1.tgz#f6a5d9244fbb6b76d0c2dbcc1048a03c863038b6" 3033 | integrity sha512-TUQwU7znlZLfgKH1Zwn/D84FitWZkUTfbxSiz/vFx+4c9GV+clSfG/qLiLZOlcdyzhw3oF5/pZydNjbNDfHPEw== 3034 | dependencies: 3035 | eslint "~6.4.0" 3036 | eslint-config-standard "14.1.0" 3037 | eslint-config-standard-jsx "8.1.0" 3038 | eslint-plugin-import "~2.18.0" 3039 | eslint-plugin-node "~10.0.0" 3040 | eslint-plugin-promise "~4.2.1" 3041 | eslint-plugin-react "~7.14.2" 3042 | eslint-plugin-standard "~4.0.0" 3043 | standard-engine "^12.0.0" 3044 | 3045 | string-width@^2.1.0: 3046 | version "2.1.1" 3047 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-2.1.1.tgz#ab93f27a8dc13d28cac815c462143a6d9012ae9e" 3048 | integrity sha512-nOqH59deCq9SRHlxq1Aw85Jnt4w6KvLKqWVik6oA9ZklXLNIOlqg4F2yrT1MVaTjAqvVwdfeZ7w7aCvJD7ugkw== 3049 | dependencies: 3050 | is-fullwidth-code-point "^2.0.0" 3051 | strip-ansi "^4.0.0" 3052 | 3053 | string-width@^3.0.0: 3054 | version "3.1.0" 3055 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-3.1.0.tgz#22767be21b62af1081574306f69ac51b62203961" 3056 | integrity sha512-vafcv6KjVZKSgz06oM/H6GDBrAtz8vdhQakGjFIvNrHA6y3HCF1CInLy+QLq8dTJPQ1b+KDUqDFctkdRW44e1w== 3057 | dependencies: 3058 | emoji-regex "^7.0.1" 3059 | is-fullwidth-code-point "^2.0.0" 3060 | strip-ansi "^5.1.0" 3061 | 3062 | string-width@^4.1.0, string-width@^4.2.0: 3063 | version "4.2.0" 3064 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-4.2.0.tgz#952182c46cc7b2c313d1596e623992bd163b72b5" 3065 | integrity sha512-zUz5JD+tgqtuDjMhwIg5uFVV3dtqZ9yQJlZVfq4I01/K5Paj5UHj7VyrQOJvzawSVlKpObApbfD0Ed6yJc+1eg== 3066 | dependencies: 3067 | emoji-regex "^8.0.0" 3068 | is-fullwidth-code-point "^3.0.0" 3069 | strip-ansi "^6.0.0" 3070 | 3071 | string.prototype.trimleft@^2.1.1: 3072 | version "2.1.1" 3073 | resolved "https://registry.yarnpkg.com/string.prototype.trimleft/-/string.prototype.trimleft-2.1.1.tgz#9bdb8ac6abd6d602b17a4ed321870d2f8dcefc74" 3074 | integrity sha512-iu2AGd3PuP5Rp7x2kEZCrB2Nf41ehzh+goo8TV7z8/XDBbsvc6HQIlUl9RjkZ4oyrW1XM5UwlGl1oVEaDjg6Ag== 3075 | dependencies: 3076 | define-properties "^1.1.3" 3077 | function-bind "^1.1.1" 3078 | 3079 | string.prototype.trimright@^2.1.1: 3080 | version "2.1.1" 3081 | resolved "https://registry.yarnpkg.com/string.prototype.trimright/-/string.prototype.trimright-2.1.1.tgz#440314b15996c866ce8a0341894d45186200c5d9" 3082 | integrity sha512-qFvWL3/+QIgZXVmJBfpHmxLB7xsUXz6HsUmP8+5dRaC3Q7oKUv9Vo6aMCRZC1smrtyECFsIT30PqBJ1gTjAs+g== 3083 | dependencies: 3084 | define-properties "^1.1.3" 3085 | function-bind "^1.1.1" 3086 | 3087 | strip-ansi@^4.0.0: 3088 | version "4.0.0" 3089 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-4.0.0.tgz#a8479022eb1ac368a871389b635262c505ee368f" 3090 | integrity sha1-qEeQIusaw2iocTibY1JixQXuNo8= 3091 | dependencies: 3092 | ansi-regex "^3.0.0" 3093 | 3094 | strip-ansi@^5.1.0, strip-ansi@^5.2.0: 3095 | version "5.2.0" 3096 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-5.2.0.tgz#8c9a536feb6afc962bdfa5b104a5091c1ad9c0ae" 3097 | integrity sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA== 3098 | dependencies: 3099 | ansi-regex "^4.1.0" 3100 | 3101 | strip-ansi@^6.0.0: 3102 | version "6.0.0" 3103 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-6.0.0.tgz#0b1571dd7669ccd4f3e06e14ef1eed26225ae532" 3104 | integrity sha512-AuvKTrTfQNYNIctbR1K/YGTR1756GycPsg7b9bdV9Duqur4gv6aKqHXah67Z8ImS7WEz5QVcOtlfW2rZEugt6w== 3105 | dependencies: 3106 | ansi-regex "^5.0.0" 3107 | 3108 | strip-bom@^3.0.0: 3109 | version "3.0.0" 3110 | resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-3.0.0.tgz#2334c18e9c759f7bdd56fdef7e9ae3d588e68ed3" 3111 | integrity sha1-IzTBjpx1n3vdVv3vfprj1YjmjtM= 3112 | 3113 | strip-indent@^2.0.0: 3114 | version "2.0.0" 3115 | resolved "https://registry.yarnpkg.com/strip-indent/-/strip-indent-2.0.0.tgz#5ef8db295d01e6ed6cbf7aab96998d7822527b68" 3116 | integrity sha1-XvjbKV0B5u1sv3qrlpmNeCJSe2g= 3117 | 3118 | strip-json-comments@^3.0.1: 3119 | version "3.0.1" 3120 | resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-3.0.1.tgz#85713975a91fb87bf1b305cca77395e40d2a64a7" 3121 | integrity sha512-VTyMAUfdm047mwKl+u79WIdrZxtFtn+nBxHeb844XBQ9uMNTuTHdx2hc5RiAJYqwTj3wc/xe5HLSdJSkJ+WfZw== 3122 | 3123 | stylehacks@^4.0.0: 3124 | version "4.0.3" 3125 | resolved "https://registry.yarnpkg.com/stylehacks/-/stylehacks-4.0.3.tgz#6718fcaf4d1e07d8a1318690881e8d96726a71d5" 3126 | integrity sha512-7GlLk9JwlElY4Y6a/rmbH2MhVlTyVmiJd1PfTCqFaIBEGMYNsrO/v3SeGTdhBThLg4Z+NbOk/qFMwCa+J+3p/g== 3127 | dependencies: 3128 | browserslist "^4.0.0" 3129 | postcss "^7.0.0" 3130 | postcss-selector-parser "^3.0.0" 3131 | 3132 | supports-color@^5.3.0: 3133 | version "5.5.0" 3134 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-5.5.0.tgz#e2e69a44ac8772f78a1ec0b35b689df6530efc8f" 3135 | integrity sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow== 3136 | dependencies: 3137 | has-flag "^3.0.0" 3138 | 3139 | supports-color@^6.1.0: 3140 | version "6.1.0" 3141 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-6.1.0.tgz#0764abc69c63d5ac842dd4867e8d025e880df8f3" 3142 | integrity sha512-qe1jfm1Mg7Nq/NSh6XE24gPXROEVsWHxC1LIx//XNlD9iw7YZQGjZNjYN7xGaEG6iKdA8EtNFW6R0gjnVXp+wQ== 3143 | dependencies: 3144 | has-flag "^3.0.0" 3145 | 3146 | supports-color@^7.1.0: 3147 | version "7.1.0" 3148 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-7.1.0.tgz#68e32591df73e25ad1c4b49108a2ec507962bfd1" 3149 | integrity sha512-oRSIpR8pxT1Wr2FquTNnGet79b3BWljqOuoW/h4oBhxJ/HUbX5nX6JSruTkvXDCFMwDPvsaTTbvMLKZWSy0R5g== 3150 | dependencies: 3151 | has-flag "^4.0.0" 3152 | 3153 | svgo@^1.0.0: 3154 | version "1.3.2" 3155 | resolved "https://registry.yarnpkg.com/svgo/-/svgo-1.3.2.tgz#b6dc511c063346c9e415b81e43401145b96d4167" 3156 | integrity sha512-yhy/sQYxR5BkC98CY7o31VGsg014AKLEPxdfhora76l36hD9Rdy5NZA/Ocn6yayNPgSamYdtX2rFJdcv07AYVw== 3157 | dependencies: 3158 | chalk "^2.4.1" 3159 | coa "^2.0.2" 3160 | css-select "^2.0.0" 3161 | css-select-base-adapter "^0.1.1" 3162 | css-tree "1.0.0-alpha.37" 3163 | csso "^4.0.2" 3164 | js-yaml "^3.13.1" 3165 | mkdirp "~0.5.1" 3166 | object.values "^1.1.0" 3167 | sax "~1.2.4" 3168 | stable "^0.1.8" 3169 | unquote "~1.1.1" 3170 | util.promisify "~1.0.0" 3171 | 3172 | table@^5.2.3: 3173 | version "5.4.6" 3174 | resolved "https://registry.yarnpkg.com/table/-/table-5.4.6.tgz#1292d19500ce3f86053b05f0e8e7e4a3bb21079e" 3175 | integrity sha512-wmEc8m4fjnob4gt5riFRtTu/6+4rSe12TpAELNSqHMfF3IqnA+CH37USM6/YR3qRZv7e56kAEAtd6nKZaxe0Ug== 3176 | dependencies: 3177 | ajv "^6.10.2" 3178 | lodash "^4.17.14" 3179 | slice-ansi "^2.1.0" 3180 | string-width "^3.0.0" 3181 | 3182 | terser@^4.6.2: 3183 | version "4.6.3" 3184 | resolved "https://registry.yarnpkg.com/terser/-/terser-4.6.3.tgz#e33aa42461ced5238d352d2df2a67f21921f8d87" 3185 | integrity sha512-Lw+ieAXmY69d09IIc/yqeBqXpEQIpDGZqT34ui1QWXIUpR2RjbqEkT8X7Lgex19hslSqcWM5iMN2kM11eMsESQ== 3186 | dependencies: 3187 | commander "^2.20.0" 3188 | source-map "~0.6.1" 3189 | source-map-support "~0.5.12" 3190 | 3191 | text-table@^0.2.0: 3192 | version "0.2.0" 3193 | resolved "https://registry.yarnpkg.com/text-table/-/text-table-0.2.0.tgz#7f5ee823ae805207c00af2df4a84ec3fcfa570b4" 3194 | integrity sha1-f17oI66AUgfACvLfSoTsP8+lcLQ= 3195 | 3196 | through@^2.3.6: 3197 | version "2.3.8" 3198 | resolved "https://registry.yarnpkg.com/through/-/through-2.3.8.tgz#0dd4c9ffaabc357960b1b724115d7e0e86a2e1f5" 3199 | integrity sha1-DdTJ/6q8NXlgsbckEV1+Doai4fU= 3200 | 3201 | timsort@^0.3.0: 3202 | version "0.3.0" 3203 | resolved "https://registry.yarnpkg.com/timsort/-/timsort-0.3.0.tgz#405411a8e7e6339fe64db9a234de11dc31e02bd4" 3204 | integrity sha1-QFQRqOfmM5/mTbmiNN4R3DHgK9Q= 3205 | 3206 | tmp@^0.0.33: 3207 | version "0.0.33" 3208 | resolved "https://registry.yarnpkg.com/tmp/-/tmp-0.0.33.tgz#6d34335889768d21b2bcda0aa277ced3b1bfadf9" 3209 | integrity sha512-jRCJlojKnZ3addtTOjdIqoRuPEKBvNXcGYqzO6zWZX8KfKEpnGY5jfggJQ3EjKuu8D4bJRr0y+cYJFmYbImXGw== 3210 | dependencies: 3211 | os-tmpdir "~1.0.2" 3212 | 3213 | to-regex-range@^5.0.1: 3214 | version "5.0.1" 3215 | resolved "https://registry.yarnpkg.com/to-regex-range/-/to-regex-range-5.0.1.tgz#1648c44aae7c8d988a326018ed72f5b4dd0392e4" 3216 | integrity sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ== 3217 | dependencies: 3218 | is-number "^7.0.0" 3219 | 3220 | trim-newlines@^2.0.0: 3221 | version "2.0.0" 3222 | resolved "https://registry.yarnpkg.com/trim-newlines/-/trim-newlines-2.0.0.tgz#b403d0b91be50c331dfc4b82eeceb22c3de16d20" 3223 | integrity sha1-tAPQuRvlDDMd/EuC7s6yLD3hbSA= 3224 | 3225 | tslib@^1.9.0: 3226 | version "1.11.0" 3227 | resolved "https://registry.yarnpkg.com/tslib/-/tslib-1.11.0.tgz#f1f3528301621a53220d58373ae510ff747a66bc" 3228 | integrity sha512-BmndXUtiTn/VDDrJzQE7Mm22Ix3PxgLltW9bSNLoeCY31gnG2OPx0QqJnuc9oMIKioYrz487i6K9o4Pdn0j+Kg== 3229 | 3230 | type-check@~0.3.2: 3231 | version "0.3.2" 3232 | resolved "https://registry.yarnpkg.com/type-check/-/type-check-0.3.2.tgz#5884cab512cf1d355e3fb784f30804b2b520db72" 3233 | integrity sha1-WITKtRLPHTVeP7eE8wgEsrUg23I= 3234 | dependencies: 3235 | prelude-ls "~1.1.2" 3236 | 3237 | type-fest@^0.3.0: 3238 | version "0.3.1" 3239 | resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-0.3.1.tgz#63d00d204e059474fe5e1b7c011112bbd1dc29e1" 3240 | integrity sha512-cUGJnCdr4STbePCgqNFbpVNCepa+kAVohJs1sLhxzdH+gnEoOd8VhbYa7pD3zZYGiURWM2xzEII3fQcRizDkYQ== 3241 | 3242 | uniq@^1.0.1: 3243 | version "1.0.1" 3244 | resolved "https://registry.yarnpkg.com/uniq/-/uniq-1.0.1.tgz#b31c5ae8254844a3a8281541ce2b04b865a734ff" 3245 | integrity sha1-sxxa6CVIRKOoKBVBzisEuGWnNP8= 3246 | 3247 | uniqs@^2.0.0: 3248 | version "2.0.0" 3249 | resolved "https://registry.yarnpkg.com/uniqs/-/uniqs-2.0.0.tgz#ffede4b36b25290696e6e165d4a59edb998e6b02" 3250 | integrity sha1-/+3ks2slKQaW5uFl1KWe25mOawI= 3251 | 3252 | universalify@^0.1.0: 3253 | version "0.1.2" 3254 | resolved "https://registry.yarnpkg.com/universalify/-/universalify-0.1.2.tgz#b646f69be3942dabcecc9d6639c80dc105efaa66" 3255 | integrity sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg== 3256 | 3257 | unquote@~1.1.1: 3258 | version "1.1.1" 3259 | resolved "https://registry.yarnpkg.com/unquote/-/unquote-1.1.1.tgz#8fded7324ec6e88a0ff8b905e7c098cdc086d544" 3260 | integrity sha1-j97XMk7G6IoP+LkF58CYzcCG1UQ= 3261 | 3262 | uri-js@^4.2.2: 3263 | version "4.2.2" 3264 | resolved "https://registry.yarnpkg.com/uri-js/-/uri-js-4.2.2.tgz#94c540e1ff772956e2299507c010aea6c8838eb0" 3265 | integrity sha512-KY9Frmirql91X2Qgjry0Wd4Y+YTdrdZheS8TFwvkbLWf/G5KNJDCh6pKL5OZctEW4+0Baa5idK2ZQuELRwPznQ== 3266 | dependencies: 3267 | punycode "^2.1.0" 3268 | 3269 | util.promisify@~1.0.0: 3270 | version "1.0.1" 3271 | resolved "https://registry.yarnpkg.com/util.promisify/-/util.promisify-1.0.1.tgz#6baf7774b80eeb0f7520d8b81d07982a59abbaee" 3272 | integrity sha512-g9JpC/3He3bm38zsLupWryXHoEcS22YHthuPQSJdMy6KNrzIRzWqcsHzD/WUnqe45whVou4VIsPew37DoXWNrA== 3273 | dependencies: 3274 | define-properties "^1.1.3" 3275 | es-abstract "^1.17.2" 3276 | has-symbols "^1.0.1" 3277 | object.getownpropertydescriptors "^2.1.0" 3278 | 3279 | v8-compile-cache@^2.0.3: 3280 | version "2.1.0" 3281 | resolved "https://registry.yarnpkg.com/v8-compile-cache/-/v8-compile-cache-2.1.0.tgz#e14de37b31a6d194f5690d67efc4e7f6fc6ab30e" 3282 | integrity sha512-usZBT3PW+LOjM25wbqIlZwPeJV+3OSz3M1k1Ws8snlW39dZyYL9lOGC5FgPVHfk0jKmjiDV8Z0mIbVQPiwFs7g== 3283 | 3284 | validate-npm-package-license@^3.0.1: 3285 | version "3.0.4" 3286 | resolved "https://registry.yarnpkg.com/validate-npm-package-license/-/validate-npm-package-license-3.0.4.tgz#fc91f6b9c7ba15c857f4cb2c5defeec39d4f410a" 3287 | integrity sha512-DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew== 3288 | dependencies: 3289 | spdx-correct "^3.0.0" 3290 | spdx-expression-parse "^3.0.0" 3291 | 3292 | vendors@^1.0.0: 3293 | version "1.0.4" 3294 | resolved "https://registry.yarnpkg.com/vendors/-/vendors-1.0.4.tgz#e2b800a53e7a29b93506c3cf41100d16c4c4ad8e" 3295 | integrity sha512-/juG65kTL4Cy2su4P8HjtkTxk6VmJDiOPBufWniqQ6wknac6jNiXS9vU+hO3wgusiyqWlzTbVHi0dyJqRONg3w== 3296 | 3297 | which-module@^2.0.0: 3298 | version "2.0.0" 3299 | resolved "https://registry.yarnpkg.com/which-module/-/which-module-2.0.0.tgz#d9ef07dce77b9902b8a3a8fa4b31c3e3f7e6e87a" 3300 | integrity sha1-2e8H3Od7mQK4o6j6SzHD4/fm6Ho= 3301 | 3302 | which@^1.2.9: 3303 | version "1.3.1" 3304 | resolved "https://registry.yarnpkg.com/which/-/which-1.3.1.tgz#a45043d54f5805316da8d62f9f50918d3da70b0a" 3305 | integrity sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ== 3306 | dependencies: 3307 | isexe "^2.0.0" 3308 | 3309 | word-wrap@~1.2.3: 3310 | version "1.2.3" 3311 | resolved "https://registry.yarnpkg.com/word-wrap/-/word-wrap-1.2.3.tgz#610636f6b1f703891bd34771ccb17fb93b47079c" 3312 | integrity sha512-Hz/mrNwitNRh/HUAtM/VT/5VH+ygD6DV7mYKZAtHOrbs8U7lvPS6xf7EJKMF0uW1KJCl0H701g3ZGus+muE5vQ== 3313 | 3314 | wrap-ansi@^6.2.0: 3315 | version "6.2.0" 3316 | resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-6.2.0.tgz#e9393ba07102e6c91a3b221478f0257cd2856e53" 3317 | integrity sha512-r6lPcBGxZXlIcymEu7InxDMhdW0KDxpLgoFLcguasxCaJ/SOIZwINatK9KY/tf+ZrlywOKU0UDj3ATXUBfxJXA== 3318 | dependencies: 3319 | ansi-styles "^4.0.0" 3320 | string-width "^4.1.0" 3321 | strip-ansi "^6.0.0" 3322 | 3323 | wrappy@1: 3324 | version "1.0.2" 3325 | resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f" 3326 | integrity sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8= 3327 | 3328 | write@1.0.3: 3329 | version "1.0.3" 3330 | resolved "https://registry.yarnpkg.com/write/-/write-1.0.3.tgz#0800e14523b923a387e415123c865616aae0f5c3" 3331 | integrity sha512-/lg70HAjtkUgWPVZhZcm+T4hkL8Zbtp1nFNOn3lRrxnlv50SRBv7cR7RqR+GMsd3hUXy9hWBo4CHTbFTcOYwig== 3332 | dependencies: 3333 | mkdirp "^0.5.1" 3334 | 3335 | xtend@^4.0.1: 3336 | version "4.0.2" 3337 | resolved "https://registry.yarnpkg.com/xtend/-/xtend-4.0.2.tgz#bb72779f5fa465186b1f438f674fa347fdb5db54" 3338 | integrity sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ== 3339 | 3340 | y18n@^4.0.0: 3341 | version "4.0.0" 3342 | resolved "https://registry.yarnpkg.com/y18n/-/y18n-4.0.0.tgz#95ef94f85ecc81d007c264e190a120f0a3c8566b" 3343 | integrity sha512-r9S/ZyXu/Xu9q1tYlpsLIsa3EeLXXk0VwlxqTcFRfg9EhMW+17kbt9G0NrgCmhGb5vT2hyhJZLfDGx+7+5Uj/w== 3344 | 3345 | yargs-parser@^10.0.0: 3346 | version "10.1.0" 3347 | resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-10.1.0.tgz#7202265b89f7e9e9f2e5765e0fe735a905edbaa8" 3348 | integrity sha512-VCIyR1wJoEBZUqk5PA+oOBF6ypbwh5aNB3I50guxAL/quggdfs4TtNHQrSazFA3fYZ+tEqfs0zIGlv0c/rgjbQ== 3349 | dependencies: 3350 | camelcase "^4.1.0" 3351 | 3352 | yargs-parser@^16.1.0: 3353 | version "16.1.0" 3354 | resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-16.1.0.tgz#73747d53ae187e7b8dbe333f95714c76ea00ecf1" 3355 | integrity sha512-H/V41UNZQPkUMIT5h5hiwg4QKIY1RPvoBV4XcjUbRM8Bk2oKqqyZ0DIEbTFZB0XjbtSPG8SAa/0DxCQmiRgzKg== 3356 | dependencies: 3357 | camelcase "^5.0.0" 3358 | decamelize "^1.2.0" 3359 | 3360 | yargs@^15.0.2: 3361 | version "15.1.0" 3362 | resolved "https://registry.yarnpkg.com/yargs/-/yargs-15.1.0.tgz#e111381f5830e863a89550bd4b136bb6a5f37219" 3363 | integrity sha512-T39FNN1b6hCW4SOIk1XyTOWxtXdcen0t+XYrysQmChzSipvhBO8Bj0nK1ozAasdk24dNWuMZvr4k24nz+8HHLg== 3364 | dependencies: 3365 | cliui "^6.0.0" 3366 | decamelize "^1.2.0" 3367 | find-up "^4.1.0" 3368 | get-caller-file "^2.0.1" 3369 | require-directory "^2.1.1" 3370 | require-main-filename "^2.0.0" 3371 | set-blocking "^2.0.0" 3372 | string-width "^4.2.0" 3373 | which-module "^2.0.0" 3374 | y18n "^4.0.0" 3375 | yargs-parser "^16.1.0" 3376 | -------------------------------------------------------------------------------- /packages/docsify-enhanced-theme/README.md: -------------------------------------------------------------------------------- 1 | # docsify-enhanced-theme 2 | 3 |

4 | 5 | ss 6 |
7 | 8 |

9 | 10 | This is a docsify plugin which adds a print button to your docsify site 11 | 12 | [![JavaScript Style Guide](https://cdn.rawgit.com/standard/standard/master/badge.svg)](https://github.com/standard/standard) 13 | [![](https://data.jsdelivr.com/v1/package/npm/docsify-enhanced-theme/badge)](https://www.jsdelivr.com/package/npm/docsify-enhanced-theme) 14 | 15 | ## Installation 16 | 17 | Add the following stylesheet along with your other stylesheets 18 | 19 | ```html 20 | 24 | ``` 25 | 26 | ### Thats it, Now enjoy :tada: your dark mode in your docsifysite 27 | 28 | ## Contribution Guide 29 | 30 | - Clone the repo 31 | - start editing on `src/style.css` 32 | - The build step using 33 | - Optimize the generated style using `cssnano` and `postcss` 34 | - styling rule using `standard` 35 | -------------------------------------------------------------------------------- /packages/docsify-enhanced-theme/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "docsify-enhanced-theme", 3 | "version": "1.0.0-alpha.0", 4 | "description": "a bit of enhancement over the default docsify theme", 5 | "main": "dist/style.css", 6 | "scripts": { 7 | "fixlint": "standard --fix", 8 | "test": "standard", 9 | "prebuild": "del-cli dist ", 10 | "build": "postcss src/style.css -o dist/style.css --config ../../postcss.config.js" 11 | }, 12 | "files": [ 13 | "dist" 14 | ], 15 | "keywords": [ 16 | "docsify", 17 | "plugin", 18 | "print", 19 | "docsify-plugin" 20 | ], 21 | "author": "anikethsaha ", 22 | "license": "MIT", 23 | "standard": { 24 | "ignore": [ 25 | "dist/*" 26 | ] 27 | }, 28 | "repository": "anikethsaha/docsify-plugin", 29 | "devDependencies": { 30 | "autoprefixer": "^9.7.5", 31 | "cssnano": "^4.1.10", 32 | "del-cli": "^3.0.0", 33 | "postcss": "^7.0.26", 34 | "postcss-cli": "^7.1.0", 35 | "postcss-preset-env": "^6.7.0", 36 | "standard": "^14.3.1" 37 | } 38 | } 39 | -------------------------------------------------------------------------------- /packages/docsify-enhanced-theme/src/style.css: -------------------------------------------------------------------------------- 1 | :root { 2 | --secondary-color: #1966d2; 3 | --header-text-color: #2f353f; 4 | --sidebar-app-name: var(--secondary-color); 5 | --sidebar-app-name-hover: var(--secondary-color); 6 | --sidebar-app-name-text-color: var(--header-text-color); 7 | --sidebar-app-name-text-color-hover: 'white'; 8 | } 9 | 10 | .markdown-section p { 11 | font-size: 1.125rem; 12 | line-height: 1.7; 13 | } 14 | .nav { 15 | width: var(--toc-width, 15rem); 16 | align-self: flex-start; 17 | flex: 0 0 auto; 18 | } 19 | .page_toc { 20 | max-width: 18rem; 21 | top: calc(9.5rem); 22 | width: 20rem; 23 | overflow: auto; 24 | } 25 | .nav .page_toc p:nth-child(1) { 26 | color: #78757a; 27 | font-size: 0.875rem; 28 | letter-spacing: 0.075em; 29 | margin-top: 0rem; 30 | text-transform: uppercase; 31 | } 32 | .sidebar { 33 | -webkit-flex-shrink: 0; 34 | -ms-flex-negative: 0; 35 | flex-shrink: 0; 36 | width: 312px; 37 | height: 100vh; 38 | padding: 24px; 39 | border-right: 1px solid #dee2e7; 40 | overflow-y: auto; 41 | position: -webkit-sticky; 42 | position: sticky; 43 | top: 0; 44 | } 45 | .sidebar > .app-name { 46 | display: -webkit-box; 47 | display: -webkit-flex; 48 | display: -ms-flexbox; 49 | display: flex; 50 | -webkit-align-items: center; 51 | -webkit-box-align: center; 52 | -ms-flex-align: center; 53 | align-items: center; 54 | -webkit-box-pack: justify; 55 | -webkit-justify-content: space-between; 56 | -ms-flex-pack: justify; 57 | justify-content: space-between; 58 | margin-bottom: 32px; 59 | width: 100%; 60 | } 61 | .sidebar .app-name .app-name-link:hover { 62 | background-color: var(--sidebar-app-name-hover); 63 | color: var(--sidebar-app-name-text-color-hover); 64 | } 65 | .sidebar ul li > a { 66 | padding: 0px 10px; 67 | border-radius: 4px; 68 | border-top-right-radius: 0; 69 | border-bottom-right-radius: 0; 70 | padding: 0px 10px; 71 | border-radius: 4px; 72 | border-top-right-radius: 0; 73 | border-bottom-right-radius: 0; 74 | margin: 0; 75 | font-weight: 400; 76 | -webkit-letter-spacing: 0.1em; 77 | -moz-letter-spacing: 0.1em; 78 | -ms-letter-spacing: 0.1em; 79 | letter-spacing: 0.1em; 80 | /* text-transform: uppercase; */ 81 | color: inherit; 82 | } 83 | .sidebar ul li.active > a { 84 | background: #f5f5f5; 85 | } 86 | 87 | .sidebar li > p { 88 | margin: 0; 89 | font-weight: bold; 90 | -webkit-letter-spacing: 0.142em; 91 | -moz-letter-spacing: 0.142em; 92 | -ms-letter-spacing: 0.142em; 93 | letter-spacing: 0.142em; 94 | text-transform: uppercase; 95 | color: inherit; 96 | } 97 | .sidebar .app-name .app-name-link { 98 | background-color: var(--sidebar-app-name); 99 | border-radius: 4px; 100 | border-width: 0; 101 | cursor: pointer; 102 | display: -webkit-inline-box; 103 | display: -webkit-inline-flex; 104 | display: -ms-inline-flexbox; 105 | display: inline-flex; 106 | -webkit-box-pack: center; 107 | -webkit-justify-content: center; 108 | -ms-flex-pack: center; 109 | justify-content: center; 110 | padding: 0 12px; 111 | font-family: 'Source Sans Pro', sans-serif; 112 | line-height: 1.54; 113 | font-weight: 600; 114 | outline: 0; 115 | -webkit-text-decoration: none; 116 | text-decoration: none; 117 | white-space: nowrap; 118 | width: 100%; 119 | color: var(--sidebar-app-name-text-color); 120 | } 121 | .markdown-section h1 { 122 | font-size: 2.5rem; 123 | font-weight: 400; 124 | line-height: 1.1; 125 | color: var(--header-text-color); 126 | } 127 | .search { 128 | margin-bottom: 20px; 129 | padding: 6px; 130 | border-bottom: none; 131 | } 132 | .search input { 133 | width: 100%; 134 | background-color: #f5f5f5; 135 | padding-left: 2rem; 136 | } 137 | 138 | /* CHANGELOG PLUGIN STYLING */ 139 | 140 | #CHANGELOG, 141 | .app-nav { 142 | background-color: transparent !important; 143 | } 144 | 145 | @media screen and (max-width: 768px) { 146 | #CHANGELOG:hover { 147 | background: #fff2dc; 148 | } 149 | 150 | #CHANGELOG { 151 | margin: 1rem; 152 | position: absolute; 153 | left: 0; 154 | } 155 | } 156 | 157 | /* PAGINATION PLUGIN STYLING */ 158 | 159 | .pagination-item--next, 160 | .pagination-item--previous { 161 | width: 45%; 162 | padding: 10px; 163 | border: 1px solid var(--secondary-color); 164 | border-radius: 4px; 165 | max-width: 45%; 166 | } 167 | 168 | @media screen and (max-width: 768px) { 169 | .pagination-item--next, 170 | .pagination-item--previous { 171 | width: 100%; 172 | padding: 10px; 173 | border: 1px solid var(--secondary-color); 174 | border-radius: 4px; 175 | max-width: 100%; 176 | } 177 | } 178 | 179 | /* TOC PLUGIN STYLING */ 180 | 181 | .markdown-section { 182 | margin: 0 auto; 183 | max-width: 65%; 184 | padding: 30px 15px 40px 15px; 185 | position: relative; 186 | } 187 | 188 | .page_toc { 189 | width: unset; 190 | } 191 | 192 | @media screen and (max-width: 1300px) { 193 | .markdown-section { 194 | margin: 0 48px; 195 | max-width: 100%; 196 | padding: 30px 15px 40px 15px; 197 | position: relative; 198 | } 199 | 200 | .page_toc { 201 | display: none; 202 | } 203 | } 204 | -------------------------------------------------------------------------------- /packages/docsify-print/README.md: -------------------------------------------------------------------------------- 1 | # docsify-print 2 | 3 | This is a docsify plugin which adds a print button to your docsify site 4 | 5 | [![JavaScript Style Guide](https://cdn.rawgit.com/standard/standard/master/badge.svg)](https://github.com/standard/standard) 6 | [![](https://data.jsdelivr.com/v1/package/npm/docsify-print/badge)](https://www.jsdelivr.com/package/npm/docsify-print) 7 | 8 | ## Installation 9 | 10 | Add the following stylesheet along with your other stylesheets 11 | 12 | ```html 13 | 17 | ``` 18 | 19 | And add the following script 20 | 21 | ```html 22 | 23 | 24 | ``` 25 | 26 | ## Change the position of the button 27 | 28 | The `print document` label is position using absolute positioning and values are passed as CSS var. You can change the position by changing the value of the css var 29 | 30 | css var used with default values are 31 | 32 | ```css 33 | --docsify-print-top: 0; 34 | --docsify-print-left: unset; 35 | --docsify-print-right: unset; 36 | --docsify-print-bottom: unset; 37 | ``` 38 | 39 | ### Thats it, Now enjoy :tada: your dark mode in your docsifysite 40 | 41 | ## Screen Shot 42 | 43 |

44 | 45 | ss 46 |
47 | 48 |

49 | 50 | ## Contribution Guide 51 | 52 | - Clone the repo 53 | - start editing on `src/index.js` and `src/style.css` 54 | - The build step using 55 | - Optimize the generated style using `cssnano` and `postcss` 56 | - Build the javascript using `rollup` 57 | - optimize it using `rollup-plugin-terser` 58 | - styling rule using `standard` 59 | -------------------------------------------------------------------------------- /packages/docsify-print/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "docsify-print", 3 | "version": "1.0.0-alpha.0", 4 | "description": "adds a print button for your docsify site", 5 | "main": "dist/index.js", 6 | "scripts": { 7 | "fixlint": "standard --fix", 8 | "test": "standard", 9 | "prebuild": "del-cli dist ", 10 | "build": "npm run build:css && npm run build:js", 11 | "build:js": "rollup --config ../../rollup.config.js", 12 | "build:css": "postcss src/style.css -o dist/style.css --config ../../postcss.config.js" 13 | }, 14 | "files": [ 15 | "dist" 16 | ], 17 | "keywords": [ 18 | "docsify", 19 | "plugin", 20 | "print", 21 | "docsify-plugin" 22 | ], 23 | "author": "anikethsaha ", 24 | "license": "MIT", 25 | "standard": { 26 | "ignore": [ 27 | "dist/*" 28 | ] 29 | }, 30 | "repository": "anikethsaha/docsify-plugin", 31 | "devDependencies": { 32 | "autoprefixer": "^9.7.4", 33 | "cssnano": "^4.1.10", 34 | "del-cli": "^3.0.0", 35 | "postcss": "^7.0.26", 36 | "postcss-cli": "^7.1.0", 37 | "postcss-preset-env": "^6.7.0", 38 | "rollup": "^1.31.1", 39 | "rollup-plugin-terser": "^5.2.0", 40 | "standard": "^14.3.1" 41 | } 42 | } 43 | -------------------------------------------------------------------------------- /packages/docsify-print/src/index.js: -------------------------------------------------------------------------------- 1 | const plugin = (hooks, vm) => { 2 | hooks.afterEach((html, next) => { 3 | let showAuthCred = true 4 | if ( 5 | vm.config.print && 6 | typeof vm.config.print !== 'undefined' && 7 | typeof vm.config.print.creditIconAuthor !== 'undefined' 8 | ) { 9 | showAuthCred = vm.config.print.creditIconAuthor 10 | } 11 | 12 | html = ` 13 | 14 | Print Document 15 | 16 | 17 |
18 | ${html} 19 | 20 |
21 | ${ 22 | !showAuthCred 23 | ? '' 24 | : `
Icons made by Freepik from www.flaticon.com
` 25 | } 26 | ` 27 | next(html) 28 | }) 29 | } 30 | 31 | window.$docsify.plugins = [].concat(plugin, window.$docsify.plugins) 32 | -------------------------------------------------------------------------------- /packages/docsify-print/src/style.css: -------------------------------------------------------------------------------- 1 | :root { 2 | --docsify-print-top: 0; 3 | --docsify-print-left: unset; 4 | --docsify-print-right: unset; 5 | --docsify-print-bottom: unset; 6 | } 7 | 8 | #docsify_print_btn { 9 | cursor: pointer; 10 | height: 18px; 11 | position: absolute; 12 | top: var(--docsify-print-top); 13 | left: var(--docsify-print-left); 14 | right: var(--docsify-print-right); 15 | bottom: var(--docsify-print-bottom); 16 | } 17 | #docsify_print_btn > svg { 18 | width: inherit; 19 | height: inherit; 20 | position: absolute; 21 | margin: 0 10px; 22 | } 23 | -------------------------------------------------------------------------------- /packages/docsify-top-banner-plugin/README.md: -------------------------------------------------------------------------------- 1 | # docsify-top-banner-plugin 2 | 3 | Get a pretty banner probably used for notifying announcements and updates 4 | 5 |

6 | 7 | ss 8 | 9 |

10 | 11 | [![JavaScript Style Guide](https://cdn.rawgit.com/standard/standard/master/badge.svg)](https://github.com/standard/standard) 12 | [![](https://data.jsdelivr.com/v1/package/npm/docsify-top-banner-plugin/badge)](https://www.jsdelivr.com/package/npm/docsify-top-banner-plugin) 13 | 14 | ### Donation 15 | 16 | Buy Me A Coffee 17 | 18 | ## Installation 19 | 20 | Add the following stylesheet along with your other stylesheets 21 | 22 | ```html 23 | 27 | ``` 28 | 29 | And add the following script 30 | 31 | ```html 32 | 33 | ``` 34 | 35 | ## Configure 36 | 37 | In your docsify config object add the following 38 | 39 | ```js 40 | window.$docsify = { 41 | ... 42 | topBanner: { 43 | options 44 | }, 45 | ... 46 | } 47 | ``` 48 | 49 | ## Options 50 | 51 | ### `content` 52 | 53 | Type : `String` 54 | 55 | Default : none 56 | 57 | It is the content which will be render as the top banner 58 | 59 | > NOTE: it should be a single line content 60 | 61 | > NOTE: It cant be empty! leaving empty will simply render an empty banner 62 | 63 | ### `defaultTag` 64 | 65 | Type : `String` 66 | 67 | Default : 'span' 68 | 69 | the html tag which will be added in the DOM to render the banner 70 | 71 | ### `position` 72 | 73 | Type : `String` 74 | 75 | Default : 'fixed' 76 | 77 | This is the banner's CSS `position` property. 78 | 79 | ### `backgroundColor` 80 | 81 | Type : `String` 82 | 83 | Default : `'#deebff'` 84 | 85 | The background color of the banner 86 | 87 | ### `zIndex` 88 | 89 | Type : `String` 90 | 91 | Default : `99` 92 | 93 | The `z-index` of the banner 94 | 95 | > Recommended : Use position `relative` and `zIndex` = `-1` when you have repo config in your docsify 96 | 97 | ### `textColor` 98 | 99 | Type : `String` 100 | 101 | Default : `'#091E42'` 102 | 103 | The primary text color of the banner 104 | 105 | ### `linkColor` 106 | 107 | Type : `String` 108 | 109 | Default : `value of textColor` 110 | 111 | The primary text color of the anchor tag inside the banner 112 | 113 | ### `textAlign` 114 | 115 | Type : `String` 116 | 117 | Default : `center` 118 | 119 | Alignment of the content of the banner 120 | 121 | ## Screen Shot 122 | 123 |

124 | 125 | ss 126 |
127 | ss 128 | 129 |

130 | 131 | ## Contribution Guide 132 | 133 | - Clone the repo 134 | - start editing on `src/index.js` and `src/style.styl` 135 | - The build step using 136 | - the `styl -> css` using `styl` CLI 137 | - Optimize the generated style using `cssnano` and `postcss` 138 | - Build the javascript using `rollup` 139 | - optimize it using `rollup-plugin-terser` 140 | - styling rule using `standard` 141 | -------------------------------------------------------------------------------- /packages/docsify-top-banner-plugin/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "docsify-top-banner-plugin", 3 | "version": "0.4.0", 4 | "description": "docsify plugin to add top banner for small announcements or updates", 5 | "main": "dist/index.js", 6 | "scripts": { 7 | "test": "standard", 8 | "fixlint": "standard --fix", 9 | "prebuild": "del-cli dist ", 10 | "build": "npm run build:css && npm run build:js", 11 | "build:js": "rollup --config ../../rollup.config.js", 12 | "build:css": "postcss src/style.css -o dist/style.css --config ../../postcss.config.js" 13 | }, 14 | "files": [ 15 | "dist" 16 | ], 17 | "keywords": [ 18 | "docsify", 19 | "plugin", 20 | "banner", 21 | "docsify-plugin" 22 | ], 23 | "author": "anikethsaha ", 24 | "license": "MIT", 25 | "standard": { 26 | "ignore": [ 27 | "dist/*" 28 | ] 29 | }, 30 | "repository": "anikethsaha/docsify-plugin", 31 | "devDependencies": { 32 | "autoprefixer": "^9.7.4", 33 | "cssnano": "^4.1.10", 34 | "del-cli": "^3.0.0", 35 | "postcss": "^7.0.26", 36 | "postcss-cli": "^7.1.0", 37 | "postcss-preset-env": "^6.7.0", 38 | "rollup": "^1.31.1", 39 | "rollup-plugin-terser": "^5.2.0", 40 | "standard": "^14.3.1" 41 | } 42 | } 43 | -------------------------------------------------------------------------------- /packages/docsify-top-banner-plugin/src/index.js: -------------------------------------------------------------------------------- 1 | function plugin (hook, vm) { 2 | hook.ready(function () { 3 | const { topBanner } = vm.config 4 | if (!topBanner) { 5 | return 6 | } 7 | const defaultTag = topBanner.defaultTag || 'span' 8 | const bannerContent = vm.compiler.compile(topBanner.content) 9 | const backgroundColor = topBanner.backgroundColor || '#deebff' 10 | const textColor = topBanner.textColor || '#091E42' 11 | const linkColor = topBanner.linkColor || textColor 12 | const textAlign = topBanner.textAlign || 'center' 13 | const bannerPosition = topBanner.position || 'fixed' 14 | const bannerZIndex = topBanner.zIndex || '99' 15 | // creating the new element 16 | const bannerElement = document.createElement(defaultTag) 17 | bannerElement.setAttribute('id', 'TOPBANNER') 18 | 19 | // adding bannerElement to DOM 20 | const placeholder = document.querySelector('body') 21 | placeholder.insertBefore(bannerElement, placeholder.childNodes[0]) 22 | 23 | // add the contents 24 | const contentEl = document.querySelector(`${defaultTag}#TOPBANNER`) 25 | contentEl.innerHTML = bannerContent 26 | 27 | contentEl.style.backgroundColor = backgroundColor 28 | contentEl.style.color = textColor 29 | contentEl.style.position = bannerPosition 30 | contentEl.style.Zindex = bannerZIndex 31 | 32 | const contentAnchorEl = document.querySelector(`${defaultTag}#TOPBANNER a`) 33 | contentAnchorEl.style.color = linkColor 34 | bannerElement.style.textAlign = textAlign 35 | 36 | contentAnchorEl.addEventListener('click', e => { 37 | bannerElement.parentNode.removeChild(bannerElement) 38 | }) 39 | }) 40 | } 41 | 42 | window.$docsify.plugins = [].concat(plugin, window.$docsify.plugins) 43 | -------------------------------------------------------------------------------- /packages/docsify-top-banner-plugin/src/style.css: -------------------------------------------------------------------------------- 1 | #TOPBANNER { 2 | display: block; 3 | height: 2rem; 4 | width: 100%; 5 | padding: 0 20px; 6 | line-height: 0.1rem; 7 | top: 0; 8 | } 9 | #TOPBANNER p { 10 | margin: auto; 11 | height: 100%; 12 | padding: 0.5rem 0; 13 | } 14 | 15 | #TOPBANNER a { 16 | margin: auto 5px; 17 | font-size: 1.1rem; 18 | letter-spacing: 1px; 19 | } 20 | -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | plugins: [ 3 | require('postcss-preset-env'), 4 | require('autoprefixer'), 5 | require('cssnano')({ 6 | preset: 'default' 7 | }) 8 | ] 9 | } 10 | -------------------------------------------------------------------------------- /rollup.config.js: -------------------------------------------------------------------------------- 1 | import { terser } from 'rollup-plugin-terser' 2 | 3 | module.exports = { 4 | input: 'src/index.js', 5 | output: { 6 | file: 'dist/index.js', 7 | 8 | format: 'cjs' 9 | }, 10 | plugins: [terser()] 11 | } 12 | --------------------------------------------------------------------------------