├── .gitignore ├── index.js ├── .eslintrc ├── lib ├── index.js └── rules │ └── sort-declarations-alphabetically.js ├── docs └── rules │ └── sort-rules-alphabetically.md ├── package.json ├── README.md ├── tests └── lib │ └── rules │ └── sort-declarations-alphabetically.js ├── LICENSE └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./lib'); -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- 1 | { 2 | "extends": [ 3 | "eslint:recommended", 4 | "plugin:prettier/recommended" 5 | ], 6 | "env": { 7 | "node": true, 8 | "es6": true 9 | } 10 | } -------------------------------------------------------------------------------- /lib/index.js: -------------------------------------------------------------------------------- 1 | /** 2 | * @fileoverview eslint plugin to sort alphabetically styles in styled components 3 | * @author siffogh 4 | */ 5 | "use strict"; 6 | 7 | //------------------------------------------------------------------------------ 8 | // Plugin Definition 9 | //------------------------------------------------------------------------------ 10 | 11 | // import all rules in lib/rules 12 | module.exports.rules = require("./rules/sort-declarations-alphabetically"); 13 | -------------------------------------------------------------------------------- /docs/rules/sort-rules-alphabetically.md: -------------------------------------------------------------------------------- 1 | # Styles are sorted alphabetically. (sort-declarations-alphabetically) 2 | 3 | Please describe the origin of the rule here. 4 | 5 | 6 | ## Rule Details 7 | 8 | This rule aims to... 9 | 10 | Examples of **incorrect** code for this rule: 11 | 12 | ```js 13 | 14 | // fill me in 15 | 16 | ``` 17 | 18 | Examples of **correct** code for this rule: 19 | 20 | ```js 21 | 22 | // fill me in 23 | 24 | ``` 25 | 26 | ### Options 27 | 28 | If there are any options, describe them here. Otherwise, delete this section. 29 | 30 | ## When Not To Use It 31 | 32 | Give a short description of when it would be appropriate to turn off this rule. 33 | 34 | ## Further Reading 35 | 36 | If there are other links that describe the issue this rule addresses, please include them here in a bulleted list. 37 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "eslint-plugin-better-styled-components", 3 | "version": "1.1.2", 4 | "description": "ESlint's rules for styled components.", 5 | "keywords": [ 6 | "eslint", 7 | "eslintplugin", 8 | "eslint-plugin" 9 | ], 10 | "author": "siffogh", 11 | "main": "lib/index.js", 12 | "scripts": { 13 | "test": "mocha tests/lib/rules/sort-declarations-alphabetically.js" 14 | }, 15 | "dependencies": { 16 | "postcss": "^7.0.2" 17 | }, 18 | "devDependencies": { 19 | "eslint": "^7.2.0", 20 | "eslint-config-prettier": "^6.11.0", 21 | "eslint-plugin-prettier": "^3.1.4", 22 | "mocha": "^8.0.1", 23 | "prettier": "^2.0.5" 24 | }, 25 | "engines": { 26 | "node": ">=0.10.0" 27 | }, 28 | "license": "Apache License Version 2.0.", 29 | "repository": "https://github.com/siffogh/eslint-plugin-better-styled-components", 30 | "private": false 31 | } 32 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # eslint-plugin-better-styled-components 💅 2 | 3 | Auto fixable ESlint's rules for styled components. 4 | 5 | ## Installation 6 | 7 | You'll first need to install [ESLint](http://eslint.org): 8 | 9 | ``` 10 | $ npm i eslint --save-dev 11 | ``` 12 | 13 | Next, install `eslint-plugin-better-styled-components`: 14 | 15 | ``` 16 | $ npm install eslint-plugin-better-styled-components --save-dev 17 | ``` 18 | 19 | **Note:** If you installed ESLint globally (using the `-g` flag) then you must also install `eslint-plugin-better-styled-components` globally. 20 | 21 | ## Usage 22 | 23 | Add `better-styled-components` to the plugins section of your `.eslintrc` configuration file. You can omit the `eslint-plugin-` prefix: 24 | 25 | ```json 26 | { 27 | "plugins": [ 28 | "better-styled-components" 29 | ] 30 | } 31 | ``` 32 | 33 | 34 | Then configure the rules you want to use under the rules section. 35 | 36 | ```json 37 | { 38 | "plugins": [ 39 | "better-styled-components" 40 | ], 41 | "rules": { 42 | "better-styled-components/sort-declarations-alphabetically": 2 43 | } 44 | } 45 | ``` 46 | 47 | ## Supported Rules 48 | 49 | * 🔤`sort-declarations-alphabetically`: auto fixable rule that enforces alphabetically sorted declarations. 50 | 51 | 52 | ## License 53 | Unless otherwise specified this project is licensed under [Apache License Version 2.0](./LICENSE). 54 | 55 | 56 | 57 | -------------------------------------------------------------------------------- /lib/rules/sort-declarations-alphabetically.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | const postcss = require("postcss"); 3 | 4 | function isStyledTagname(node) { 5 | return ( 6 | (node.tag.type === "Identifier" && node.tag.name === "css") || 7 | (node.tag.type === "MemberExpression" && 8 | node.tag.object.name === "styled") || 9 | (node.tag.type === "CallExpression" && 10 | (node.tag.callee.name === "styled" || 11 | (node.tag.callee.object && 12 | ((node.tag.callee.object.callee && 13 | node.tag.callee.object.callee.name === "styled") || 14 | (node.tag.callee.object.object && 15 | node.tag.callee.object.object.name === "styled"))))) 16 | ); 17 | } 18 | 19 | /** 20 | * An atomic rule is a rule without nested rules. 21 | */ 22 | function isValidAtomicRule(rule) { 23 | const decls = rule.nodes.filter(node => node.type === "decl"); 24 | if (decls.length < 0) { 25 | return { isValid: true }; 26 | } 27 | 28 | for (let i = 1; i < decls.length; i++) { 29 | const current = decls[i].prop; 30 | const prev = decls[i - 1].prop; 31 | if (current < prev) { 32 | const loc = { 33 | start: { 34 | line: decls[i - 1].source.start.line, 35 | column: decls[i - 1].source.start.column - 1 36 | }, 37 | end: { 38 | line: decls[i].source.end.line, 39 | column: decls[i].source.end.column - 1 40 | } 41 | }; 42 | 43 | return { isValid: false, loc }; 44 | } 45 | } 46 | 47 | return { isValid: true }; 48 | } 49 | 50 | function isValidRule(rule) { 51 | // check each rule recursively 52 | const { isValid, loc } = rule.nodes.reduce( 53 | (map, node) => { 54 | return node.type === "rule" ? isValidRule(node) : map; 55 | }, 56 | { isValid: true } 57 | ); 58 | 59 | // if there is any invalid rule, return result 60 | if (!isValid) { 61 | return { isValid, loc }; 62 | } 63 | 64 | // check declarations 65 | return isValidAtomicRule(rule); 66 | } 67 | 68 | function getNodeStyles(node) { 69 | const [firstQuasi, ...quasis] = node.quasi.quasis; 70 | // remove line break added to the first quasi 71 | const lineBreakCount = node.quasi.loc.start.line - 1; 72 | let styles = `${"\n".repeat(lineBreakCount)}${" ".repeat( 73 | node.quasi.loc.start.column + 1 74 | )}${firstQuasi.value.raw}`; 75 | 76 | // replace expression by spaces and line breaks 77 | quasis.forEach(({ value, loc }, idx) => { 78 | const prevLoc = idx === 0 ? firstQuasi.loc : quasis[idx - 1].loc; 79 | const lineBreaksCount = loc.start.line - prevLoc.end.line; 80 | const spacesCount = 81 | loc.start.line === prevLoc.end.line 82 | ? loc.start.column - prevLoc.end.column + 2 83 | : loc.start.column + 1; 84 | styles = `${styles}${" "}${"\n".repeat(lineBreaksCount)}${" ".repeat( 85 | spacesCount 86 | )}${value.raw}`; 87 | }); 88 | 89 | return styles; 90 | } 91 | 92 | function create(context) { 93 | return { 94 | TaggedTemplateExpression(node) { 95 | if (isStyledTagname(node)) { 96 | try { 97 | const root = postcss.parse(getNodeStyles(node)); 98 | 99 | const { isValid, loc } = isValidRule(root); 100 | 101 | if (!isValid) { 102 | return context.report({ 103 | node, 104 | messageId: "sort-declarations-alphabetically", 105 | loc, 106 | fix: fixer => 107 | fix({ 108 | rule: root, 109 | fixer, 110 | src: context.getSourceCode() 111 | }) 112 | }); 113 | } 114 | } catch (e) { 115 | return true; 116 | } 117 | } 118 | } 119 | }; 120 | } 121 | 122 | function fix({ rule, fixer, src }) { 123 | let fixings = []; 124 | 125 | // concat fixings recursively 126 | rule.nodes.forEach(node => { 127 | if (node.type === "rule") { 128 | fixings = [...fixings, ...fix({ rule: node, fixer, src })]; 129 | } 130 | }); 131 | 132 | const declarations = rule.nodes.filter(node => node.type === "decl"); 133 | const sortedDeclarations = sortDeclarations(declarations); 134 | 135 | declarations.forEach((decl, idx) => { 136 | if (!areSameDeclarations(decl, sortedDeclarations[idx])) { 137 | try { 138 | const range = getDeclRange({ decl, src }); 139 | const sortedDeclText = getDeclText({ 140 | decl: sortedDeclarations[idx], 141 | src 142 | }); 143 | 144 | fixings.push(fixer.removeRange([range.startIdx, range.endIdx + 1])); 145 | fixings.push( 146 | fixer.insertTextAfterRange( 147 | [range.startIdx, range.startIdx], 148 | sortedDeclText 149 | ) 150 | ); 151 | } catch (e) { 152 | console.log(e); 153 | } 154 | } 155 | }); 156 | return fixings; 157 | } 158 | 159 | function areSameDeclarations(a, b) { 160 | return ( 161 | a.source.start.line === b.source.start.line && 162 | a.source.start.column === b.source.start.column 163 | ); 164 | } 165 | 166 | function getDeclRange({ decl, src }) { 167 | const loc = { 168 | start: { 169 | line: decl.source.start.line, 170 | column: decl.source.start.column - 1 171 | }, 172 | end: { 173 | line: decl.source.end.line, 174 | column: decl.source.end.column - 1 175 | } 176 | }; 177 | 178 | const startIdx = src.getIndexFromLoc(loc.start); 179 | const endIdx = src.getIndexFromLoc(loc.end); 180 | return { startIdx, endIdx }; 181 | } 182 | 183 | function getDeclText({ decl, src }) { 184 | const { startIdx, endIdx } = getDeclRange({ decl, src }); 185 | return src.getText().substring(startIdx, endIdx + 1); 186 | } 187 | 188 | function sortDeclarations(declarations) { 189 | return declarations 190 | .slice() 191 | .sort((declA, declB) => (declA.prop > declB.prop ? 1 : -1)); 192 | } 193 | 194 | module.exports = { 195 | meta: { 196 | docs: { 197 | description: "Styles are sorted alphabetically.", 198 | category: "Fill me in", 199 | recommended: false 200 | }, 201 | messages: { 202 | "sort-declarations-alphabetically": 203 | "Declarations should be sorted alphabetically." 204 | }, 205 | fixable: "code" 206 | }, 207 | create 208 | }; 209 | -------------------------------------------------------------------------------- /tests/lib/rules/sort-declarations-alphabetically.js: -------------------------------------------------------------------------------- 1 | /** 2 | * @fileoverview Styles are sorted alphabetically. 3 | * @author siffogh 4 | */ 5 | "use strict"; 6 | 7 | // ------------------------------------------------------------------------------ 8 | // Requirements 9 | // ------------------------------------------------------------------------------ 10 | 11 | const rule = require("../../../lib/rules/sort-declarations-alphabetically"); 12 | const RuleTester = require("eslint").RuleTester; 13 | 14 | const parserOptions = { ecmaVersion: 8, sourceType: "module" }; 15 | 16 | // ------------------------------------------------------------------------------ 17 | // Tests 18 | // -------------------------------------------------------------------------------8" 19 | var ruleTester = new RuleTester(); 20 | 21 | ruleTester.run("sort-declarations-alphabetically", rule, { 22 | valid: [ 23 | { 24 | code: "const button = styled.button`height: 200px; width: 300px;`", 25 | parserOptions 26 | }, 27 | { 28 | code: "const button = styled(Button)`height: 200px; width: 300px;`", 29 | parserOptions 30 | }, 31 | { 32 | code: "const button = css`height: 200px; width: 300px;`", 33 | parserOptions 34 | }, 35 | { 36 | code: `const button = styled.button\` 37 | height: 200px; 38 | width: 300px;\``, 39 | parserOptions 40 | }, 41 | { 42 | code: `const button = styled.button.attrs({ someAttribute: "unknown" })\` 43 | height: 200px; 44 | width: 300px;\``, 45 | parserOptions, 46 | }, 47 | { 48 | code: `const button = styled(Button).attrs({ someAttribute: "unknown" })\`height: 200px; width: 300px;\``, 49 | parserOptions, 50 | }, 51 | { 52 | code: `const button = styled.button\` 53 | color: \${({ isBlue }) => (isBlue ? "blue" : "red")}; 54 | height: 200px; 55 | width: 300px;\``, 56 | parserOptions 57 | }, 58 | { 59 | code: `const button = styled.button\` 60 | height: 200px; 61 | stroke: \${Colors => Colors.selections}; 62 | width: 300px;\``, 63 | parserOptions 64 | }, 65 | { 66 | code: `const button = styled.button\` 67 | border: 1px solid 68 | \${({ isBlue }) => (isBlue ? "blue" : "red")}; 69 | height: 200px; 70 | width: 300px;\``, 71 | parserOptions 72 | }, 73 | { 74 | code: ` 75 | import styled from 'styled-components'; 76 | 77 | 78 | const button = styled.button\` 79 | border: 1px solid 80 | \${({ isBlue }) => (isBlue ? "blue" : "red")}; 81 | height: 200px; 82 | width: 300px;\``, 83 | parserOptions 84 | } 85 | ], 86 | 87 | invalid: [ 88 | { 89 | code: "const button = styled.button`width: 300px; height: 200px;`", 90 | parserOptions, 91 | errors: [ 92 | { 93 | messageId: "sort-declarations-alphabetically" 94 | } 95 | ], 96 | output: "const button = styled.button`height: 200px; width: 300px;`" 97 | }, 98 | { 99 | code: "const button = styled(Button)`width: 300px; height: 200px;`", 100 | parserOptions, 101 | errors: [ 102 | { 103 | messageId: "sort-declarations-alphabetically" 104 | } 105 | ], 106 | output: "const button = styled(Button)`height: 200px; width: 300px;`" 107 | }, 108 | { 109 | code: "const button = css`width: 300px; height: 200px;`", 110 | parserOptions, 111 | errors: [ 112 | { 113 | messageId: "sort-declarations-alphabetically" 114 | } 115 | ], 116 | output: "const button = css`height: 200px; width: 300px;`" 117 | }, 118 | { 119 | code: `const button = styled.button\` 120 | width: 300px; 121 | height: 200px;\``, 122 | parserOptions, 123 | errors: [ 124 | { 125 | messageId: "sort-declarations-alphabetically" 126 | } 127 | ], 128 | output: `const button = styled.button\` 129 | height: 200px; 130 | width: 300px;\`` 131 | }, 132 | { 133 | code: `const button = styled.button\` 134 | height: 200px; 135 | color: \${({ isBlue }) => (isBlue ? "blue" : "red")}; 136 | width: 300px;\``, 137 | parserOptions, 138 | errors: [ 139 | { 140 | messageId: "sort-declarations-alphabetically" 141 | } 142 | ], 143 | output: `const button = styled.button\` 144 | color: \${({ isBlue }) => (isBlue ? "blue" : "red")}; 145 | height: 200px; 146 | width: 300px;\`` 147 | }, 148 | { 149 | code: `const foo = styled.div\` 150 | stroke: \${Colors => Colors.selections}; 151 | color: blue; 152 | \`;`, 153 | parserOptions, 154 | errors: [ 155 | { 156 | messageId: "sort-declarations-alphabetically" 157 | } 158 | ], 159 | output: `const foo = styled.div\` 160 | color: blue; 161 | stroke: \${Colors => Colors.selections}; 162 | \`;` 163 | }, 164 | { 165 | code: `const button = styled.button\` 166 | width: 300px; 167 | height: 200px; 168 | border: 1px solid 169 | \${({ isBlue }) => (isBlue ? "blue" : "red")};\``, 170 | parserOptions, 171 | errors: [ 172 | { 173 | messageId: "sort-declarations-alphabetically" 174 | } 175 | ], 176 | output: `const button = styled.button\` 177 | border: 1px solid 178 | \${({ isBlue }) => (isBlue ? "blue" : "red")}; 179 | height: 200px; 180 | width: 300px;\`` 181 | }, 182 | { 183 | code: ` 184 | import styled from 'styled-components'; 185 | 186 | 187 | const button = styled.button\` 188 | height: 200px; 189 | border: 1px solid 190 | \${({ isBlue }) => (isBlue ? "blue" : "red")}; 191 | width: 300px;\``, 192 | parserOptions, 193 | errors: [ 194 | { 195 | messageId: "sort-declarations-alphabetically" 196 | } 197 | ], 198 | output: ` 199 | import styled from 'styled-components'; 200 | 201 | 202 | const button = styled.button\` 203 | border: 1px solid 204 | \${({ isBlue }) => (isBlue ? "blue" : "red")}; 205 | height: 200px; 206 | width: 300px;\`` 207 | }, 208 | { 209 | code: ` 210 | export const foo = styled.div\` 211 | height: 100%; 212 | top: 0; 213 | position: absolute; 214 | width: 100%; 215 | 216 | .op-selectable:hover { 217 | cursor: pointer; 218 | } 219 | \`;`, 220 | parserOptions, 221 | errors: [ 222 | { 223 | messageId: "sort-declarations-alphabetically" 224 | } 225 | ], 226 | output: ` 227 | export const foo = styled.div\` 228 | height: 100%; 229 | position: absolute; 230 | top: 0; 231 | width: 100%; 232 | 233 | .op-selectable:hover { 234 | cursor: pointer; 235 | } 236 | \`;` 237 | }, 238 | { 239 | code: ` 240 | export const foo = styled.div\` 241 | flex-grow: 1; 242 | .op-selected .djs-outline { 243 | stroke-width: 3px; 244 | fill: \${themeStyle({ 245 | dark: "rgba(58, 82, 125, 0.5)", 246 | light: "rgba(189, 212, 253, 0.5)" 247 | })} !important; 248 | }\`;`, 249 | parserOptions, 250 | errors: [ 251 | { 252 | messageId: "sort-declarations-alphabetically" 253 | } 254 | ], 255 | output: ` 256 | export const foo = styled.div\` 257 | flex-grow: 1; 258 | .op-selected .djs-outline { 259 | fill: \${themeStyle({ 260 | dark: "rgba(58, 82, 125, 0.5)", 261 | light: "rgba(189, 212, 253, 0.5)" 262 | })} !important; 263 | stroke-width: 3px; 264 | }\`;` 265 | } 266 | ] 267 | }); 268 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | Apache License 2 | Version 2.0, January 2004 3 | http://www.apache.org/licenses/ 4 | 5 | TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION 6 | 7 | 1. Definitions. 8 | 9 | "License" shall mean the terms and conditions for use, reproduction, 10 | and distribution as defined by Sections 1 through 9 of this document. 11 | 12 | "Licensor" shall mean the copyright owner or entity authorized by 13 | the copyright owner that is granting the License. 14 | 15 | "Legal Entity" shall mean the union of the acting entity and all 16 | other entities that control, are controlled by, or are under common 17 | control with that entity. For the purposes of this definition, 18 | "control" means (i) the power, direct or indirect, to cause the 19 | direction or management of such entity, whether by contract or 20 | otherwise, or (ii) ownership of fifty percent (50%) or more of the 21 | outstanding shares, or (iii) beneficial ownership of such entity. 22 | 23 | "You" (or "Your") shall mean an individual or Legal Entity 24 | exercising permissions granted by this License. 25 | 26 | "Source" form shall mean the preferred form for making modifications, 27 | including but not limited to software source code, documentation 28 | source, and configuration files. 29 | 30 | "Object" form shall mean any form resulting from mechanical 31 | transformation or translation of a Source form, including but 32 | not limited to compiled object code, generated documentation, 33 | and conversions to other media types. 34 | 35 | "Work" shall mean the work of authorship, whether in Source or 36 | Object form, made available under the License, as indicated by a 37 | copyright notice that is included in or attached to the work 38 | (an example is provided in the Appendix below). 39 | 40 | "Derivative Works" shall mean any work, whether in Source or Object 41 | form, that is based on (or derived from) the Work and for which the 42 | editorial revisions, annotations, elaborations, or other modifications 43 | represent, as a whole, an original work of authorship. For the purposes 44 | of this License, Derivative Works shall not include works that remain 45 | separable from, or merely link (or bind by name) to the interfaces of, 46 | the Work and Derivative Works thereof. 47 | 48 | "Contribution" shall mean any work of authorship, including 49 | the original version of the Work and any modifications or additions 50 | to that Work or Derivative Works thereof, that is intentionally 51 | submitted to Licensor for inclusion in the Work by the copyright owner 52 | or by an individual or Legal Entity authorized to submit on behalf of 53 | the copyright owner. For the purposes of this definition, "submitted" 54 | means any form of electronic, verbal, or written communication sent 55 | to the Licensor or its representatives, including but not limited to 56 | communication on electronic mailing lists, source code control systems, 57 | and issue tracking systems that are managed by, or on behalf of, the 58 | Licensor for the purpose of discussing and improving the Work, but 59 | excluding communication that is conspicuously marked or otherwise 60 | designated in writing by the copyright owner as "Not a Contribution." 61 | 62 | "Contributor" shall mean Licensor and any individual or Legal Entity 63 | on behalf of whom a Contribution has been received by Licensor and 64 | subsequently incorporated within the Work. 65 | 66 | 2. Grant of Copyright License. Subject to the terms and conditions of 67 | this License, each Contributor hereby grants to You a perpetual, 68 | worldwide, non-exclusive, no-charge, royalty-free, irrevocable 69 | copyright license to reproduce, prepare Derivative Works of, 70 | publicly display, publicly perform, sublicense, and distribute the 71 | Work and such Derivative Works in Source or Object form. 72 | 73 | 3. Grant of Patent License. Subject to the terms and conditions of 74 | this License, each Contributor hereby grants to You a perpetual, 75 | worldwide, non-exclusive, no-charge, royalty-free, irrevocable 76 | (except as stated in this section) patent license to make, have made, 77 | use, offer to sell, sell, import, and otherwise transfer the Work, 78 | where such license applies only to those patent claims licensable 79 | by such Contributor that are necessarily infringed by their 80 | Contribution(s) alone or by combination of their Contribution(s) 81 | with the Work to which such Contribution(s) was submitted. If You 82 | institute patent litigation against any entity (including a 83 | cross-claim or counterclaim in a lawsuit) alleging that the Work 84 | or a Contribution incorporated within the Work constitutes direct 85 | or contributory patent infringement, then any patent licenses 86 | granted to You under this License for that Work shall terminate 87 | as of the date such litigation is filed. 88 | 89 | 4. Redistribution. You may reproduce and distribute copies of the 90 | Work or Derivative Works thereof in any medium, with or without 91 | modifications, and in Source or Object form, provided that You 92 | meet the following conditions: 93 | 94 | (a) You must give any other recipients of the Work or 95 | Derivative Works a copy of this License; and 96 | 97 | (b) You must cause any modified files to carry prominent notices 98 | stating that You changed the files; and 99 | 100 | (c) You must retain, in the Source form of any Derivative Works 101 | that You distribute, all copyright, patent, trademark, and 102 | attribution notices from the Source form of the Work, 103 | excluding those notices that do not pertain to any part of 104 | the Derivative Works; and 105 | 106 | (d) If the Work includes a "NOTICE" text file as part of its 107 | distribution, then any Derivative Works that You distribute must 108 | include a readable copy of the attribution notices contained 109 | within such NOTICE file, excluding those notices that do not 110 | pertain to any part of the Derivative Works, in at least one 111 | of the following places: within a NOTICE text file distributed 112 | as part of the Derivative Works; within the Source form or 113 | documentation, if provided along with the Derivative Works; or, 114 | within a display generated by the Derivative Works, if and 115 | wherever such third-party notices normally appear. The contents 116 | of the NOTICE file are for informational purposes only and 117 | do not modify the License. You may add Your own attribution 118 | notices within Derivative Works that You distribute, alongside 119 | or as an addendum to the NOTICE text from the Work, provided 120 | that such additional attribution notices cannot be construed 121 | as modifying the License. 122 | 123 | You may add Your own copyright statement to Your modifications and 124 | may provide additional or different license terms and conditions 125 | for use, reproduction, or distribution of Your modifications, or 126 | for any such Derivative Works as a whole, provided Your use, 127 | reproduction, and distribution of the Work otherwise complies with 128 | the conditions stated in this License. 129 | 130 | 5. Submission of Contributions. Unless You explicitly state otherwise, 131 | any Contribution intentionally submitted for inclusion in the Work 132 | by You to the Licensor shall be under the terms and conditions of 133 | this License, without any additional terms or conditions. 134 | Notwithstanding the above, nothing herein shall supersede or modify 135 | the terms of any separate license agreement you may have executed 136 | with Licensor regarding such Contributions. 137 | 138 | 6. Trademarks. This License does not grant permission to use the trade 139 | names, trademarks, service marks, or product names of the Licensor, 140 | except as required for reasonable and customary use in describing the 141 | origin of the Work and reproducing the content of the NOTICE file. 142 | 143 | 7. Disclaimer of Warranty. Unless required by applicable law or 144 | agreed to in writing, Licensor provides the Work (and each 145 | Contributor provides its Contributions) on an "AS IS" BASIS, 146 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or 147 | implied, including, without limitation, any warranties or conditions 148 | of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A 149 | PARTICULAR PURPOSE. You are solely responsible for determining the 150 | appropriateness of using or redistributing the Work and assume any 151 | risks associated with Your exercise of permissions under this License. 152 | 153 | 8. Limitation of Liability. In no event and under no legal theory, 154 | whether in tort (including negligence), contract, or otherwise, 155 | unless required by applicable law (such as deliberate and grossly 156 | negligent acts) or agreed to in writing, shall any Contributor be 157 | liable to You for damages, including any direct, indirect, special, 158 | incidental, or consequential damages of any character arising as a 159 | result of this License or out of the use or inability to use the 160 | Work (including but not limited to damages for loss of goodwill, 161 | work stoppage, computer failure or malfunction, or any and all 162 | other commercial damages or losses), even if such Contributor 163 | has been advised of the possibility of such damages. 164 | 165 | 9. Accepting Warranty or Additional Liability. While redistributing 166 | the Work or Derivative Works thereof, You may choose to offer, 167 | and charge a fee for, acceptance of support, warranty, indemnity, 168 | or other liability obligations and/or rights consistent with this 169 | License. However, in accepting such obligations, You may act only 170 | on Your own behalf and on Your sole responsibility, not on behalf 171 | of any other Contributor, and only if You agree to indemnify, 172 | defend, and hold each Contributor harmless for any liability 173 | incurred by, or claims asserted against, such Contributor by reason 174 | of your accepting any such warranty or additional liability. 175 | 176 | END OF TERMS AND CONDITIONS 177 | 178 | APPENDIX: How to apply the Apache License to your work. 179 | 180 | To apply the Apache License to your work, attach the following 181 | boilerplate notice, with the fields enclosed by brackets "[]" 182 | replaced with your own identifying information. (Don't include 183 | the brackets!) The text should be enclosed in the appropriate 184 | comment syntax for the file format. We also recommend that a 185 | file or class name and description of purpose be included on the 186 | same "printed page" as the copyright notice for easier 187 | identification within third-party archives. 188 | 189 | Copyright [yyyy] [Seif Eddine Ghezala] 190 | 191 | Licensed under the Apache License, Version 2.0 (the "License"); 192 | you may not use this file except in compliance with the License. 193 | You may obtain a copy of the License at 194 | 195 | http://www.apache.org/licenses/LICENSE-2.0 196 | 197 | Unless required by applicable law or agreed to in writing, software 198 | distributed under the License is distributed on an "AS IS" BASIS, 199 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 200 | See the License for the specific language governing permissions and 201 | limitations under the License. 202 | -------------------------------------------------------------------------------- /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": 6 | version "7.10.3" 7 | resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.10.3.tgz#324bcfd8d35cd3d47dae18cde63d752086435e9a" 8 | dependencies: 9 | "@babel/highlight" "^7.10.3" 10 | 11 | "@babel/helper-validator-identifier@^7.10.3": 12 | version "7.10.3" 13 | resolved "https://registry.yarnpkg.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.10.3.tgz#60d9847f98c4cea1b279e005fdb7c28be5412d15" 14 | 15 | "@babel/highlight@^7.10.3": 16 | version "7.10.3" 17 | resolved "https://registry.yarnpkg.com/@babel/highlight/-/highlight-7.10.3.tgz#c633bb34adf07c5c13156692f5922c81ec53f28d" 18 | dependencies: 19 | "@babel/helper-validator-identifier" "^7.10.3" 20 | chalk "^2.0.0" 21 | js-tokens "^4.0.0" 22 | 23 | "@types/color-name@^1.1.1": 24 | version "1.1.1" 25 | resolved "https://registry.yarnpkg.com/@types/color-name/-/color-name-1.1.1.tgz#1c1261bbeaa10a8055bbc5d8ab84b7b2afc846a0" 26 | 27 | acorn-jsx@^5.2.0: 28 | version "5.2.0" 29 | resolved "https://registry.yarnpkg.com/acorn-jsx/-/acorn-jsx-5.2.0.tgz#4c66069173d6fdd68ed85239fc256226182b2ebe" 30 | 31 | acorn@^7.2.0: 32 | version "7.3.1" 33 | resolved "https://registry.yarnpkg.com/acorn/-/acorn-7.3.1.tgz#85010754db53c3fbaf3b9ea3e083aa5c5d147ffd" 34 | 35 | ajv@^6.10.0, ajv@^6.10.2: 36 | version "6.12.2" 37 | resolved "https://registry.yarnpkg.com/ajv/-/ajv-6.12.2.tgz#c629c5eced17baf314437918d2da88c99d5958cd" 38 | dependencies: 39 | fast-deep-equal "^3.1.1" 40 | fast-json-stable-stringify "^2.0.0" 41 | json-schema-traverse "^0.4.1" 42 | uri-js "^4.2.2" 43 | 44 | ansi-colors@4.1.1: 45 | version "4.1.1" 46 | resolved "https://registry.yarnpkg.com/ansi-colors/-/ansi-colors-4.1.1.tgz#cbb9ae256bf750af1eab344f229aa27fe94ba348" 47 | 48 | ansi-colors@^3.2.1: 49 | version "3.2.4" 50 | resolved "https://registry.yarnpkg.com/ansi-colors/-/ansi-colors-3.2.4.tgz#e3a3da4bfbae6c86a9c285625de124a234026fbf" 51 | 52 | ansi-regex@^3.0.0: 53 | version "3.0.0" 54 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-3.0.0.tgz#ed0317c322064f79466c02966bddb605ab37d998" 55 | 56 | ansi-regex@^4.1.0: 57 | version "4.1.0" 58 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-4.1.0.tgz#8b9f8f08cf1acb843756a839ca8c7e3168c51997" 59 | 60 | ansi-regex@^5.0.0: 61 | version "5.0.0" 62 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-5.0.0.tgz#388539f55179bf39339c81af30a654d69f87cb75" 63 | 64 | ansi-styles@^3.2.0, ansi-styles@^3.2.1: 65 | version "3.2.1" 66 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-3.2.1.tgz#41fbb20243e50b12be0f04b8dedbf07520ce841d" 67 | dependencies: 68 | color-convert "^1.9.0" 69 | 70 | ansi-styles@^4.1.0: 71 | version "4.2.1" 72 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-4.2.1.tgz#90ae75c424d008d2624c5bf29ead3177ebfcf359" 73 | dependencies: 74 | "@types/color-name" "^1.1.1" 75 | color-convert "^2.0.1" 76 | 77 | anymatch@~3.1.1: 78 | version "3.1.1" 79 | resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-3.1.1.tgz#c55ecf02185e2469259399310c173ce31233b142" 80 | dependencies: 81 | normalize-path "^3.0.0" 82 | picomatch "^2.0.4" 83 | 84 | argparse@^1.0.7: 85 | version "1.0.10" 86 | resolved "https://registry.yarnpkg.com/argparse/-/argparse-1.0.10.tgz#bcd6791ea5ae09725e17e5ad988134cd40b3d911" 87 | dependencies: 88 | sprintf-js "~1.0.2" 89 | 90 | array.prototype.map@^1.0.1: 91 | version "1.0.2" 92 | resolved "https://registry.yarnpkg.com/array.prototype.map/-/array.prototype.map-1.0.2.tgz#9a4159f416458a23e9483078de1106b2ef68f8ec" 93 | dependencies: 94 | define-properties "^1.1.3" 95 | es-abstract "^1.17.0-next.1" 96 | es-array-method-boxes-properly "^1.0.0" 97 | is-string "^1.0.4" 98 | 99 | astral-regex@^1.0.0: 100 | version "1.0.0" 101 | resolved "https://registry.yarnpkg.com/astral-regex/-/astral-regex-1.0.0.tgz#6c8c3fb827dd43ee3918f27b82782ab7658a6fd9" 102 | 103 | balanced-match@^1.0.0: 104 | version "1.0.0" 105 | resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.0.tgz#89b4d199ab2bee49de164ea02b89ce462d71b767" 106 | 107 | binary-extensions@^2.0.0: 108 | version "2.1.0" 109 | resolved "https://registry.yarnpkg.com/binary-extensions/-/binary-extensions-2.1.0.tgz#30fa40c9e7fe07dbc895678cd287024dea241dd9" 110 | 111 | brace-expansion@^1.1.7: 112 | version "1.1.11" 113 | resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.11.tgz#3c7fcbf529d87226f3d2f52b966ff5271eb441dd" 114 | dependencies: 115 | balanced-match "^1.0.0" 116 | concat-map "0.0.1" 117 | 118 | braces@~3.0.2: 119 | version "3.0.2" 120 | resolved "https://registry.yarnpkg.com/braces/-/braces-3.0.2.tgz#3454e1a462ee8d599e236df336cd9ea4f8afe107" 121 | dependencies: 122 | fill-range "^7.0.1" 123 | 124 | browser-stdout@1.3.1: 125 | version "1.3.1" 126 | resolved "https://registry.yarnpkg.com/browser-stdout/-/browser-stdout-1.3.1.tgz#baa559ee14ced73452229bad7326467c61fabd60" 127 | 128 | callsites@^3.0.0: 129 | version "3.1.0" 130 | resolved "https://registry.yarnpkg.com/callsites/-/callsites-3.1.0.tgz#b3630abd8943432f54b3f0519238e33cd7df2f73" 131 | 132 | camelcase@^5.0.0: 133 | version "5.3.1" 134 | resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-5.3.1.tgz#e3c9b31569e106811df242f715725a1f4c494320" 135 | 136 | chalk@^2.0.0, chalk@^2.4.1: 137 | version "2.4.1" 138 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-2.4.1.tgz#18c49ab16a037b6eb0152cc83e3471338215b66e" 139 | dependencies: 140 | ansi-styles "^3.2.1" 141 | escape-string-regexp "^1.0.5" 142 | supports-color "^5.3.0" 143 | 144 | chalk@^2.4.2: 145 | version "2.4.2" 146 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-2.4.2.tgz#cd42541677a54333cf541a49108c1432b44c9424" 147 | dependencies: 148 | ansi-styles "^3.2.1" 149 | escape-string-regexp "^1.0.5" 150 | supports-color "^5.3.0" 151 | 152 | chalk@^4.0.0: 153 | version "4.1.0" 154 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-4.1.0.tgz#4e14870a618d9e2edd97dd8345fd9d9dc315646a" 155 | dependencies: 156 | ansi-styles "^4.1.0" 157 | supports-color "^7.1.0" 158 | 159 | chokidar@3.3.1: 160 | version "3.3.1" 161 | resolved "https://registry.yarnpkg.com/chokidar/-/chokidar-3.3.1.tgz#c84e5b3d18d9a4d77558fef466b1bf16bbeb3450" 162 | dependencies: 163 | anymatch "~3.1.1" 164 | braces "~3.0.2" 165 | glob-parent "~5.1.0" 166 | is-binary-path "~2.1.0" 167 | is-glob "~4.0.1" 168 | normalize-path "~3.0.0" 169 | readdirp "~3.3.0" 170 | optionalDependencies: 171 | fsevents "~2.1.2" 172 | 173 | cliui@^5.0.0: 174 | version "5.0.0" 175 | resolved "https://registry.yarnpkg.com/cliui/-/cliui-5.0.0.tgz#deefcfdb2e800784aa34f46fa08e06851c7bbbc5" 176 | dependencies: 177 | string-width "^3.1.0" 178 | strip-ansi "^5.2.0" 179 | wrap-ansi "^5.1.0" 180 | 181 | color-convert@^1.9.0: 182 | version "1.9.2" 183 | resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-1.9.2.tgz#49881b8fba67df12a96bdf3f56c0aab9e7913147" 184 | dependencies: 185 | color-name "1.1.1" 186 | 187 | color-convert@^2.0.1: 188 | version "2.0.1" 189 | resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-2.0.1.tgz#72d3a68d598c9bdb3af2ad1e84f21d896abd4de3" 190 | dependencies: 191 | color-name "~1.1.4" 192 | 193 | color-name@1.1.1: 194 | version "1.1.1" 195 | resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.1.tgz#4b1415304cf50028ea81643643bd82ea05803689" 196 | 197 | color-name@~1.1.4: 198 | version "1.1.4" 199 | resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.4.tgz#c2a09a87acbde69543de6f63fa3995c826c536a2" 200 | 201 | concat-map@0.0.1: 202 | version "0.0.1" 203 | resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b" 204 | 205 | cross-spawn@^7.0.2: 206 | version "7.0.3" 207 | resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-7.0.3.tgz#f73a85b9d5d41d045551c177e2882d4ac85728a6" 208 | dependencies: 209 | path-key "^3.1.0" 210 | shebang-command "^2.0.0" 211 | which "^2.0.1" 212 | 213 | debug@3.2.6: 214 | version "3.2.6" 215 | resolved "https://registry.yarnpkg.com/debug/-/debug-3.2.6.tgz#e83d17de16d8a7efb7717edbe5fb10135eee629b" 216 | dependencies: 217 | ms "^2.1.1" 218 | 219 | debug@^4.0.1: 220 | version "4.1.1" 221 | resolved "https://registry.yarnpkg.com/debug/-/debug-4.1.1.tgz#3b72260255109c6b589cee050f1d516139664791" 222 | dependencies: 223 | ms "^2.1.1" 224 | 225 | decamelize@^1.2.0: 226 | version "1.2.0" 227 | resolved "https://registry.yarnpkg.com/decamelize/-/decamelize-1.2.0.tgz#f6534d15148269b20352e7bee26f501f9a191290" 228 | 229 | deep-is@^0.1.3: 230 | version "0.1.3" 231 | resolved "https://registry.yarnpkg.com/deep-is/-/deep-is-0.1.3.tgz#b369d6fb5dbc13eecf524f91b070feedc357cf34" 232 | 233 | define-properties@^1.1.2, define-properties@^1.1.3: 234 | version "1.1.3" 235 | resolved "https://registry.yarnpkg.com/define-properties/-/define-properties-1.1.3.tgz#cf88da6cbee26fe6db7094f61d870cbd84cee9f1" 236 | dependencies: 237 | object-keys "^1.0.12" 238 | 239 | diff@4.0.2: 240 | version "4.0.2" 241 | resolved "https://registry.yarnpkg.com/diff/-/diff-4.0.2.tgz#60f3aecb89d5fae520c11aa19efc2bb982aade7d" 242 | 243 | doctrine@^3.0.0: 244 | version "3.0.0" 245 | resolved "https://registry.yarnpkg.com/doctrine/-/doctrine-3.0.0.tgz#addebead72a6574db783639dc87a121773973961" 246 | dependencies: 247 | esutils "^2.0.2" 248 | 249 | emoji-regex@^7.0.1: 250 | version "7.0.3" 251 | resolved "https://registry.yarnpkg.com/emoji-regex/-/emoji-regex-7.0.3.tgz#933a04052860c85e83c122479c4748a8e4c72156" 252 | 253 | enquirer@^2.3.5: 254 | version "2.3.5" 255 | resolved "https://registry.yarnpkg.com/enquirer/-/enquirer-2.3.5.tgz#3ab2b838df0a9d8ab9e7dff235b0e8712ef92381" 256 | dependencies: 257 | ansi-colors "^3.2.1" 258 | 259 | es-abstract@^1.17.0-next.1, es-abstract@^1.17.4, es-abstract@^1.17.5: 260 | version "1.17.6" 261 | resolved "https://registry.yarnpkg.com/es-abstract/-/es-abstract-1.17.6.tgz#9142071707857b2cacc7b89ecb670316c3e2d52a" 262 | dependencies: 263 | es-to-primitive "^1.2.1" 264 | function-bind "^1.1.1" 265 | has "^1.0.3" 266 | has-symbols "^1.0.1" 267 | is-callable "^1.2.0" 268 | is-regex "^1.1.0" 269 | object-inspect "^1.7.0" 270 | object-keys "^1.1.1" 271 | object.assign "^4.1.0" 272 | string.prototype.trimend "^1.0.1" 273 | string.prototype.trimstart "^1.0.1" 274 | 275 | es-array-method-boxes-properly@^1.0.0: 276 | version "1.0.0" 277 | resolved "https://registry.yarnpkg.com/es-array-method-boxes-properly/-/es-array-method-boxes-properly-1.0.0.tgz#873f3e84418de4ee19c5be752990b2e44718d09e" 278 | 279 | es-get-iterator@^1.0.2: 280 | version "1.1.0" 281 | resolved "https://registry.yarnpkg.com/es-get-iterator/-/es-get-iterator-1.1.0.tgz#bb98ad9d6d63b31aacdc8f89d5d0ee57bcb5b4c8" 282 | dependencies: 283 | es-abstract "^1.17.4" 284 | has-symbols "^1.0.1" 285 | is-arguments "^1.0.4" 286 | is-map "^2.0.1" 287 | is-set "^2.0.1" 288 | is-string "^1.0.5" 289 | isarray "^2.0.5" 290 | 291 | es-to-primitive@^1.2.1: 292 | version "1.2.1" 293 | resolved "https://registry.yarnpkg.com/es-to-primitive/-/es-to-primitive-1.2.1.tgz#e55cd4c9cdc188bcefb03b366c736323fc5c898a" 294 | dependencies: 295 | is-callable "^1.1.4" 296 | is-date-object "^1.0.1" 297 | is-symbol "^1.0.2" 298 | 299 | escape-string-regexp@1.0.5, escape-string-regexp@^1.0.5: 300 | version "1.0.5" 301 | resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4" 302 | 303 | eslint-config-prettier@^6.11.0: 304 | version "6.11.0" 305 | resolved "https://registry.yarnpkg.com/eslint-config-prettier/-/eslint-config-prettier-6.11.0.tgz#f6d2238c1290d01c859a8b5c1f7d352a0b0da8b1" 306 | dependencies: 307 | get-stdin "^6.0.0" 308 | 309 | eslint-plugin-prettier@^3.1.4: 310 | version "3.1.4" 311 | resolved "https://registry.yarnpkg.com/eslint-plugin-prettier/-/eslint-plugin-prettier-3.1.4.tgz#168ab43154e2ea57db992a2cd097c828171f75c2" 312 | dependencies: 313 | prettier-linter-helpers "^1.0.0" 314 | 315 | eslint-scope@^5.1.0: 316 | version "5.1.0" 317 | resolved "https://registry.yarnpkg.com/eslint-scope/-/eslint-scope-5.1.0.tgz#d0f971dfe59c69e0cada684b23d49dbf82600ce5" 318 | dependencies: 319 | esrecurse "^4.1.0" 320 | estraverse "^4.1.1" 321 | 322 | eslint-utils@^2.0.0: 323 | version "2.1.0" 324 | resolved "https://registry.yarnpkg.com/eslint-utils/-/eslint-utils-2.1.0.tgz#d2de5e03424e707dc10c74068ddedae708741b27" 325 | dependencies: 326 | eslint-visitor-keys "^1.1.0" 327 | 328 | eslint-visitor-keys@^1.1.0, eslint-visitor-keys@^1.2.0: 329 | version "1.3.0" 330 | resolved "https://registry.yarnpkg.com/eslint-visitor-keys/-/eslint-visitor-keys-1.3.0.tgz#30ebd1ef7c2fdff01c3a4f151044af25fab0523e" 331 | 332 | eslint@^7.2.0: 333 | version "7.3.1" 334 | resolved "https://registry.yarnpkg.com/eslint/-/eslint-7.3.1.tgz#76392bd7e44468d046149ba128d1566c59acbe19" 335 | dependencies: 336 | "@babel/code-frame" "^7.0.0" 337 | ajv "^6.10.0" 338 | chalk "^4.0.0" 339 | cross-spawn "^7.0.2" 340 | debug "^4.0.1" 341 | doctrine "^3.0.0" 342 | enquirer "^2.3.5" 343 | eslint-scope "^5.1.0" 344 | eslint-utils "^2.0.0" 345 | eslint-visitor-keys "^1.2.0" 346 | espree "^7.1.0" 347 | esquery "^1.2.0" 348 | esutils "^2.0.2" 349 | file-entry-cache "^5.0.1" 350 | functional-red-black-tree "^1.0.1" 351 | glob-parent "^5.0.0" 352 | globals "^12.1.0" 353 | ignore "^4.0.6" 354 | import-fresh "^3.0.0" 355 | imurmurhash "^0.1.4" 356 | is-glob "^4.0.0" 357 | js-yaml "^3.13.1" 358 | json-stable-stringify-without-jsonify "^1.0.1" 359 | levn "^0.4.1" 360 | lodash "^4.17.14" 361 | minimatch "^3.0.4" 362 | natural-compare "^1.4.0" 363 | optionator "^0.9.1" 364 | progress "^2.0.0" 365 | regexpp "^3.1.0" 366 | semver "^7.2.1" 367 | strip-ansi "^6.0.0" 368 | strip-json-comments "^3.1.0" 369 | table "^5.2.3" 370 | text-table "^0.2.0" 371 | v8-compile-cache "^2.0.3" 372 | 373 | espree@^7.1.0: 374 | version "7.1.0" 375 | resolved "https://registry.yarnpkg.com/espree/-/espree-7.1.0.tgz#a9c7f18a752056735bf1ba14cb1b70adc3a5ce1c" 376 | dependencies: 377 | acorn "^7.2.0" 378 | acorn-jsx "^5.2.0" 379 | eslint-visitor-keys "^1.2.0" 380 | 381 | esprima@^4.0.0: 382 | version "4.0.1" 383 | resolved "https://registry.yarnpkg.com/esprima/-/esprima-4.0.1.tgz#13b04cdb3e6c5d19df91ab6987a8695619b0aa71" 384 | 385 | esquery@^1.2.0: 386 | version "1.3.1" 387 | resolved "https://registry.yarnpkg.com/esquery/-/esquery-1.3.1.tgz#b78b5828aa8e214e29fb74c4d5b752e1c033da57" 388 | dependencies: 389 | estraverse "^5.1.0" 390 | 391 | esrecurse@^4.1.0: 392 | version "4.2.1" 393 | resolved "https://registry.yarnpkg.com/esrecurse/-/esrecurse-4.2.1.tgz#007a3b9fdbc2b3bb87e4879ea19c92fdbd3942cf" 394 | dependencies: 395 | estraverse "^4.1.0" 396 | 397 | estraverse@^4.1.0, estraverse@^4.1.1: 398 | version "4.2.0" 399 | resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-4.2.0.tgz#0dee3fed31fcd469618ce7342099fc1afa0bdb13" 400 | 401 | estraverse@^5.1.0: 402 | version "5.1.0" 403 | resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-5.1.0.tgz#374309d39fd935ae500e7b92e8a6b4c720e59642" 404 | 405 | esutils@^2.0.2: 406 | version "2.0.2" 407 | resolved "https://registry.yarnpkg.com/esutils/-/esutils-2.0.2.tgz#0abf4f1caa5bcb1f7a9d8acc6dea4faaa04bac9b" 408 | 409 | fast-deep-equal@^3.1.1: 410 | version "3.1.3" 411 | resolved "https://registry.yarnpkg.com/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz#3a7d56b559d6cbc3eb512325244e619a65c6c525" 412 | 413 | fast-diff@^1.1.2: 414 | version "1.2.0" 415 | resolved "https://registry.yarnpkg.com/fast-diff/-/fast-diff-1.2.0.tgz#73ee11982d86caaf7959828d519cfe927fac5f03" 416 | 417 | fast-json-stable-stringify@^2.0.0: 418 | version "2.0.0" 419 | resolved "https://registry.yarnpkg.com/fast-json-stable-stringify/-/fast-json-stable-stringify-2.0.0.tgz#d5142c0caee6b1189f87d3a76111064f86c8bbf2" 420 | 421 | fast-levenshtein@^2.0.6: 422 | version "2.0.6" 423 | resolved "https://registry.yarnpkg.com/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz#3d8a5c66883a16a30ca8643e851f19baa7797917" 424 | 425 | file-entry-cache@^5.0.1: 426 | version "5.0.1" 427 | resolved "https://registry.yarnpkg.com/file-entry-cache/-/file-entry-cache-5.0.1.tgz#ca0f6efa6dd3d561333fb14515065c2fafdf439c" 428 | dependencies: 429 | flat-cache "^2.0.1" 430 | 431 | fill-range@^7.0.1: 432 | version "7.0.1" 433 | resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-7.0.1.tgz#1919a6a7c75fe38b2c7c77e5198535da9acdda40" 434 | dependencies: 435 | to-regex-range "^5.0.1" 436 | 437 | find-up@4.1.0: 438 | version "4.1.0" 439 | resolved "https://registry.yarnpkg.com/find-up/-/find-up-4.1.0.tgz#97afe7d6cdc0bc5928584b7c8d7b16e8a9aa5d19" 440 | dependencies: 441 | locate-path "^5.0.0" 442 | path-exists "^4.0.0" 443 | 444 | find-up@^3.0.0: 445 | version "3.0.0" 446 | resolved "https://registry.yarnpkg.com/find-up/-/find-up-3.0.0.tgz#49169f1d7993430646da61ecc5ae355c21c97b73" 447 | dependencies: 448 | locate-path "^3.0.0" 449 | 450 | flat-cache@^2.0.1: 451 | version "2.0.1" 452 | resolved "https://registry.yarnpkg.com/flat-cache/-/flat-cache-2.0.1.tgz#5d296d6f04bda44a4630a301413bdbc2ec085ec0" 453 | dependencies: 454 | flatted "^2.0.0" 455 | rimraf "2.6.3" 456 | write "1.0.3" 457 | 458 | flat@^4.1.0: 459 | version "4.1.0" 460 | resolved "https://registry.yarnpkg.com/flat/-/flat-4.1.0.tgz#090bec8b05e39cba309747f1d588f04dbaf98db2" 461 | dependencies: 462 | is-buffer "~2.0.3" 463 | 464 | flatted@^2.0.0: 465 | version "2.0.2" 466 | resolved "https://registry.yarnpkg.com/flatted/-/flatted-2.0.2.tgz#4575b21e2bcee7434aa9be662f4b7b5f9c2b5138" 467 | 468 | fs.realpath@^1.0.0: 469 | version "1.0.0" 470 | resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f" 471 | 472 | fsevents@~2.1.2: 473 | version "2.1.3" 474 | resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-2.1.3.tgz#fb738703ae8d2f9fe900c33836ddebee8b97f23e" 475 | 476 | function-bind@^1.1.1: 477 | version "1.1.1" 478 | resolved "https://registry.yarnpkg.com/function-bind/-/function-bind-1.1.1.tgz#a56899d3ea3c9bab874bb9773b7c5ede92f4895d" 479 | 480 | functional-red-black-tree@^1.0.1: 481 | version "1.0.1" 482 | resolved "https://registry.yarnpkg.com/functional-red-black-tree/-/functional-red-black-tree-1.0.1.tgz#1b0ab3bd553b2a0d6399d29c0e3ea0b252078327" 483 | 484 | get-caller-file@^2.0.1: 485 | version "2.0.5" 486 | resolved "https://registry.yarnpkg.com/get-caller-file/-/get-caller-file-2.0.5.tgz#4f94412a82db32f36e3b0b9741f8a97feb031f7e" 487 | 488 | get-stdin@^6.0.0: 489 | version "6.0.0" 490 | resolved "https://registry.yarnpkg.com/get-stdin/-/get-stdin-6.0.0.tgz#9e09bf712b360ab9225e812048f71fde9c89657b" 491 | 492 | glob-parent@^5.0.0, glob-parent@~5.1.0: 493 | version "5.1.1" 494 | resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-5.1.1.tgz#b6c1ef417c4e5663ea498f1c45afac6916bbc229" 495 | dependencies: 496 | is-glob "^4.0.1" 497 | 498 | glob@7.1.6, glob@^7.1.3: 499 | version "7.1.6" 500 | resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.6.tgz#141f33b81a7c2492e125594307480c46679278a6" 501 | dependencies: 502 | fs.realpath "^1.0.0" 503 | inflight "^1.0.4" 504 | inherits "2" 505 | minimatch "^3.0.4" 506 | once "^1.3.0" 507 | path-is-absolute "^1.0.0" 508 | 509 | globals@^12.1.0: 510 | version "12.4.0" 511 | resolved "https://registry.yarnpkg.com/globals/-/globals-12.4.0.tgz#a18813576a41b00a24a97e7f815918c2e19925f8" 512 | dependencies: 513 | type-fest "^0.8.1" 514 | 515 | growl@1.10.5: 516 | version "1.10.5" 517 | resolved "https://registry.yarnpkg.com/growl/-/growl-1.10.5.tgz#f2735dc2283674fa67478b10181059355c369e5e" 518 | 519 | has-flag@^3.0.0: 520 | version "3.0.0" 521 | resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-3.0.0.tgz#b5d454dc2199ae225699f3467e5a07f3b955bafd" 522 | 523 | has-flag@^4.0.0: 524 | version "4.0.0" 525 | resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-4.0.0.tgz#944771fd9c81c81265c4d6941860da06bb59479b" 526 | 527 | has-symbols@^1.0.0, has-symbols@^1.0.1: 528 | version "1.0.1" 529 | resolved "https://registry.yarnpkg.com/has-symbols/-/has-symbols-1.0.1.tgz#9f5214758a44196c406d9bd76cebf81ec2dd31e8" 530 | 531 | has@^1.0.3: 532 | version "1.0.3" 533 | resolved "https://registry.yarnpkg.com/has/-/has-1.0.3.tgz#722d7cbfc1f6aa8241f16dd814e011e1f41e8796" 534 | dependencies: 535 | function-bind "^1.1.1" 536 | 537 | he@1.2.0: 538 | version "1.2.0" 539 | resolved "https://registry.yarnpkg.com/he/-/he-1.2.0.tgz#84ae65fa7eafb165fddb61566ae14baf05664f0f" 540 | 541 | ignore@^4.0.6: 542 | version "4.0.6" 543 | resolved "https://registry.yarnpkg.com/ignore/-/ignore-4.0.6.tgz#750e3db5862087b4737ebac8207ffd1ef27b25fc" 544 | 545 | import-fresh@^3.0.0: 546 | version "3.2.1" 547 | resolved "https://registry.yarnpkg.com/import-fresh/-/import-fresh-3.2.1.tgz#633ff618506e793af5ac91bf48b72677e15cbe66" 548 | dependencies: 549 | parent-module "^1.0.0" 550 | resolve-from "^4.0.0" 551 | 552 | imurmurhash@^0.1.4: 553 | version "0.1.4" 554 | resolved "https://registry.yarnpkg.com/imurmurhash/-/imurmurhash-0.1.4.tgz#9218b9b2b928a238b13dc4fb6b6d576f231453ea" 555 | 556 | inflight@^1.0.4: 557 | version "1.0.6" 558 | resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9" 559 | dependencies: 560 | once "^1.3.0" 561 | wrappy "1" 562 | 563 | inherits@2: 564 | version "2.0.3" 565 | resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.3.tgz#633c2c83e3da42a502f52466022480f4208261de" 566 | 567 | is-arguments@^1.0.4: 568 | version "1.0.4" 569 | resolved "https://registry.yarnpkg.com/is-arguments/-/is-arguments-1.0.4.tgz#3faf966c7cba0ff437fb31f6250082fcf0448cf3" 570 | 571 | is-binary-path@~2.1.0: 572 | version "2.1.0" 573 | resolved "https://registry.yarnpkg.com/is-binary-path/-/is-binary-path-2.1.0.tgz#ea1f7f3b80f064236e83470f86c09c254fb45b09" 574 | dependencies: 575 | binary-extensions "^2.0.0" 576 | 577 | is-buffer@~2.0.3: 578 | version "2.0.4" 579 | resolved "https://registry.yarnpkg.com/is-buffer/-/is-buffer-2.0.4.tgz#3e572f23c8411a5cfd9557c849e3665e0b290623" 580 | 581 | is-callable@^1.1.4, is-callable@^1.2.0: 582 | version "1.2.0" 583 | resolved "https://registry.yarnpkg.com/is-callable/-/is-callable-1.2.0.tgz#83336560b54a38e35e3a2df7afd0454d691468bb" 584 | 585 | is-date-object@^1.0.1: 586 | version "1.0.2" 587 | resolved "https://registry.yarnpkg.com/is-date-object/-/is-date-object-1.0.2.tgz#bda736f2cd8fd06d32844e7743bfa7494c3bfd7e" 588 | 589 | is-extglob@^2.1.1: 590 | version "2.1.1" 591 | resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-2.1.1.tgz#a88c02535791f02ed37c76a1b9ea9773c833f8c2" 592 | 593 | is-fullwidth-code-point@^2.0.0: 594 | version "2.0.0" 595 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz#a3b30a5c4f199183167aaab93beefae3ddfb654f" 596 | 597 | is-glob@^4.0.0, is-glob@^4.0.1, is-glob@~4.0.1: 598 | version "4.0.1" 599 | resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-4.0.1.tgz#7567dbe9f2f5e2467bc77ab83c4a29482407a5dc" 600 | dependencies: 601 | is-extglob "^2.1.1" 602 | 603 | is-map@^2.0.1: 604 | version "2.0.1" 605 | resolved "https://registry.yarnpkg.com/is-map/-/is-map-2.0.1.tgz#520dafc4307bb8ebc33b813de5ce7c9400d644a1" 606 | 607 | is-number@^7.0.0: 608 | version "7.0.0" 609 | resolved "https://registry.yarnpkg.com/is-number/-/is-number-7.0.0.tgz#7535345b896734d5f80c4d06c50955527a14f12b" 610 | 611 | is-regex@^1.1.0: 612 | version "1.1.0" 613 | resolved "https://registry.yarnpkg.com/is-regex/-/is-regex-1.1.0.tgz#ece38e389e490df0dc21caea2bd596f987f767ff" 614 | dependencies: 615 | has-symbols "^1.0.1" 616 | 617 | is-set@^2.0.1: 618 | version "2.0.1" 619 | resolved "https://registry.yarnpkg.com/is-set/-/is-set-2.0.1.tgz#d1604afdab1724986d30091575f54945da7e5f43" 620 | 621 | is-string@^1.0.4, is-string@^1.0.5: 622 | version "1.0.5" 623 | resolved "https://registry.yarnpkg.com/is-string/-/is-string-1.0.5.tgz#40493ed198ef3ff477b8c7f92f644ec82a5cd3a6" 624 | 625 | is-symbol@^1.0.2: 626 | version "1.0.3" 627 | resolved "https://registry.yarnpkg.com/is-symbol/-/is-symbol-1.0.3.tgz#38e1014b9e6329be0de9d24a414fd7441ec61937" 628 | dependencies: 629 | has-symbols "^1.0.1" 630 | 631 | isarray@^2.0.5: 632 | version "2.0.5" 633 | resolved "https://registry.yarnpkg.com/isarray/-/isarray-2.0.5.tgz#8af1e4c1221244cc62459faf38940d4e644a5723" 634 | 635 | isexe@^2.0.0: 636 | version "2.0.0" 637 | resolved "https://registry.yarnpkg.com/isexe/-/isexe-2.0.0.tgz#e8fbf374dc556ff8947a10dcb0572d633f2cfa10" 638 | 639 | iterate-iterator@^1.0.1: 640 | version "1.0.1" 641 | resolved "https://registry.yarnpkg.com/iterate-iterator/-/iterate-iterator-1.0.1.tgz#1693a768c1ddd79c969051459453f082fe82e9f6" 642 | 643 | iterate-value@^1.0.0: 644 | version "1.0.2" 645 | resolved "https://registry.yarnpkg.com/iterate-value/-/iterate-value-1.0.2.tgz#935115bd37d006a52046535ebc8d07e9c9337f57" 646 | dependencies: 647 | es-get-iterator "^1.0.2" 648 | iterate-iterator "^1.0.1" 649 | 650 | js-tokens@^4.0.0: 651 | version "4.0.0" 652 | resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-4.0.0.tgz#19203fb59991df98e3a287050d4647cdeaf32499" 653 | 654 | js-yaml@3.13.1: 655 | version "3.13.1" 656 | resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-3.13.1.tgz#aff151b30bfdfa8e49e05da22e7415e9dfa37847" 657 | dependencies: 658 | argparse "^1.0.7" 659 | esprima "^4.0.0" 660 | 661 | js-yaml@^3.13.1: 662 | version "3.14.0" 663 | resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-3.14.0.tgz#a7a34170f26a21bb162424d8adacb4113a69e482" 664 | dependencies: 665 | argparse "^1.0.7" 666 | esprima "^4.0.0" 667 | 668 | json-schema-traverse@^0.4.1: 669 | version "0.4.1" 670 | resolved "https://registry.yarnpkg.com/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz#69f6a87d9513ab8bb8fe63bdb0979c448e684660" 671 | 672 | json-stable-stringify-without-jsonify@^1.0.1: 673 | version "1.0.1" 674 | resolved "https://registry.yarnpkg.com/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz#9db7b59496ad3f3cfef30a75142d2d930ad72651" 675 | 676 | levn@^0.4.1: 677 | version "0.4.1" 678 | resolved "https://registry.yarnpkg.com/levn/-/levn-0.4.1.tgz#ae4562c007473b932a6200d403268dd2fffc6ade" 679 | dependencies: 680 | prelude-ls "^1.2.1" 681 | type-check "~0.4.0" 682 | 683 | locate-path@^3.0.0: 684 | version "3.0.0" 685 | resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-3.0.0.tgz#dbec3b3ab759758071b58fe59fc41871af21400e" 686 | dependencies: 687 | p-locate "^3.0.0" 688 | path-exists "^3.0.0" 689 | 690 | locate-path@^5.0.0: 691 | version "5.0.0" 692 | resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-5.0.0.tgz#1afba396afd676a6d42504d0a67a3a7eb9f62aa0" 693 | dependencies: 694 | p-locate "^4.1.0" 695 | 696 | lodash@^4.17.14, lodash@^4.17.15: 697 | version "4.17.15" 698 | resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.15.tgz#b447f6670a0455bbfeedd11392eff330ea097548" 699 | 700 | log-symbols@3.0.0: 701 | version "3.0.0" 702 | resolved "https://registry.yarnpkg.com/log-symbols/-/log-symbols-3.0.0.tgz#f3a08516a5dea893336a7dee14d18a1cfdab77c4" 703 | dependencies: 704 | chalk "^2.4.2" 705 | 706 | minimatch@3.0.4, minimatch@^3.0.4: 707 | version "3.0.4" 708 | resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.0.4.tgz#5166e286457f03306064be5497e8dbb0c3d32083" 709 | dependencies: 710 | brace-expansion "^1.1.7" 711 | 712 | minimist@0.0.8: 713 | version "0.0.8" 714 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-0.0.8.tgz#857fcabfc3397d2625b8228262e86aa7a011b05d" 715 | 716 | mkdirp@^0.5.1: 717 | version "0.5.1" 718 | resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.5.1.tgz#30057438eac6cf7f8c4767f38648d6697d75c903" 719 | dependencies: 720 | minimist "0.0.8" 721 | 722 | mocha@^8.0.1: 723 | version "8.0.1" 724 | resolved "https://registry.yarnpkg.com/mocha/-/mocha-8.0.1.tgz#fe01f0530362df271aa8f99510447bc38b88d8ed" 725 | dependencies: 726 | ansi-colors "4.1.1" 727 | browser-stdout "1.3.1" 728 | chokidar "3.3.1" 729 | debug "3.2.6" 730 | diff "4.0.2" 731 | escape-string-regexp "1.0.5" 732 | find-up "4.1.0" 733 | glob "7.1.6" 734 | growl "1.10.5" 735 | he "1.2.0" 736 | js-yaml "3.13.1" 737 | log-symbols "3.0.0" 738 | minimatch "3.0.4" 739 | ms "2.1.2" 740 | object.assign "4.1.0" 741 | promise.allsettled "1.0.2" 742 | serialize-javascript "3.0.0" 743 | strip-json-comments "3.0.1" 744 | supports-color "7.1.0" 745 | which "2.0.2" 746 | wide-align "1.1.3" 747 | workerpool "6.0.0" 748 | yargs "13.3.2" 749 | yargs-parser "13.1.2" 750 | yargs-unparser "1.6.0" 751 | 752 | ms@2.1.2, ms@^2.1.1: 753 | version "2.1.2" 754 | resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.2.tgz#d09d1f357b443f493382a8eb3ccd183872ae6009" 755 | 756 | natural-compare@^1.4.0: 757 | version "1.4.0" 758 | resolved "https://registry.yarnpkg.com/natural-compare/-/natural-compare-1.4.0.tgz#4abebfeed7541f2c27acfb29bdbbd15c8d5ba4f7" 759 | 760 | normalize-path@^3.0.0, normalize-path@~3.0.0: 761 | version "3.0.0" 762 | resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-3.0.0.tgz#0dcd69ff23a1c9b11fd0978316644a0388216a65" 763 | 764 | object-inspect@^1.7.0: 765 | version "1.8.0" 766 | resolved "https://registry.yarnpkg.com/object-inspect/-/object-inspect-1.8.0.tgz#df807e5ecf53a609cc6bfe93eac3cc7be5b3a9d0" 767 | 768 | object-keys@^1.0.11, object-keys@^1.0.12, object-keys@^1.1.1: 769 | version "1.1.1" 770 | resolved "https://registry.yarnpkg.com/object-keys/-/object-keys-1.1.1.tgz#1c47f272df277f3b1daf061677d9c82e2322c60e" 771 | 772 | object.assign@4.1.0, object.assign@^4.1.0: 773 | version "4.1.0" 774 | resolved "https://registry.yarnpkg.com/object.assign/-/object.assign-4.1.0.tgz#968bf1100d7956bb3ca086f006f846b3bc4008da" 775 | dependencies: 776 | define-properties "^1.1.2" 777 | function-bind "^1.1.1" 778 | has-symbols "^1.0.0" 779 | object-keys "^1.0.11" 780 | 781 | once@^1.3.0: 782 | version "1.4.0" 783 | resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1" 784 | dependencies: 785 | wrappy "1" 786 | 787 | optionator@^0.9.1: 788 | version "0.9.1" 789 | resolved "https://registry.yarnpkg.com/optionator/-/optionator-0.9.1.tgz#4f236a6373dae0566a6d43e1326674f50c291499" 790 | dependencies: 791 | deep-is "^0.1.3" 792 | fast-levenshtein "^2.0.6" 793 | levn "^0.4.1" 794 | prelude-ls "^1.2.1" 795 | type-check "^0.4.0" 796 | word-wrap "^1.2.3" 797 | 798 | p-limit@^2.0.0, p-limit@^2.2.0: 799 | version "2.3.0" 800 | resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-2.3.0.tgz#3dd33c647a214fdfffd835933eb086da0dc21db1" 801 | dependencies: 802 | p-try "^2.0.0" 803 | 804 | p-locate@^3.0.0: 805 | version "3.0.0" 806 | resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-3.0.0.tgz#322d69a05c0264b25997d9f40cd8a891ab0064a4" 807 | dependencies: 808 | p-limit "^2.0.0" 809 | 810 | p-locate@^4.1.0: 811 | version "4.1.0" 812 | resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-4.1.0.tgz#a3428bb7088b3a60292f66919278b7c297ad4f07" 813 | dependencies: 814 | p-limit "^2.2.0" 815 | 816 | p-try@^2.0.0: 817 | version "2.2.0" 818 | resolved "https://registry.yarnpkg.com/p-try/-/p-try-2.2.0.tgz#cb2868540e313d61de58fafbe35ce9004d5540e6" 819 | 820 | parent-module@^1.0.0: 821 | version "1.0.1" 822 | resolved "https://registry.yarnpkg.com/parent-module/-/parent-module-1.0.1.tgz#691d2709e78c79fae3a156622452d00762caaaa2" 823 | dependencies: 824 | callsites "^3.0.0" 825 | 826 | path-exists@^3.0.0: 827 | version "3.0.0" 828 | resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-3.0.0.tgz#ce0ebeaa5f78cb18925ea7d810d7b59b010fd515" 829 | 830 | path-exists@^4.0.0: 831 | version "4.0.0" 832 | resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-4.0.0.tgz#513bdbe2d3b95d7762e8c1137efa195c6c61b5b3" 833 | 834 | path-is-absolute@^1.0.0: 835 | version "1.0.1" 836 | resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f" 837 | 838 | path-key@^3.1.0: 839 | version "3.1.1" 840 | resolved "https://registry.yarnpkg.com/path-key/-/path-key-3.1.1.tgz#581f6ade658cbba65a0d3380de7753295054f375" 841 | 842 | picomatch@^2.0.4, picomatch@^2.0.7: 843 | version "2.2.2" 844 | resolved "https://registry.yarnpkg.com/picomatch/-/picomatch-2.2.2.tgz#21f333e9b6b8eaff02468f5146ea406d345f4dad" 845 | 846 | postcss@^7.0.2: 847 | version "7.0.2" 848 | resolved "https://registry.yarnpkg.com/postcss/-/postcss-7.0.2.tgz#7b5a109de356804e27f95a960bef0e4d5bc9bb18" 849 | dependencies: 850 | chalk "^2.4.1" 851 | source-map "^0.6.1" 852 | supports-color "^5.4.0" 853 | 854 | prelude-ls@^1.2.1: 855 | version "1.2.1" 856 | resolved "https://registry.yarnpkg.com/prelude-ls/-/prelude-ls-1.2.1.tgz#debc6489d7a6e6b0e7611888cec880337d316396" 857 | 858 | prettier-linter-helpers@^1.0.0: 859 | version "1.0.0" 860 | resolved "https://registry.yarnpkg.com/prettier-linter-helpers/-/prettier-linter-helpers-1.0.0.tgz#d23d41fe1375646de2d0104d3454a3008802cf7b" 861 | dependencies: 862 | fast-diff "^1.1.2" 863 | 864 | prettier@^2.0.5: 865 | version "2.0.5" 866 | resolved "https://registry.yarnpkg.com/prettier/-/prettier-2.0.5.tgz#d6d56282455243f2f92cc1716692c08aa31522d4" 867 | 868 | progress@^2.0.0: 869 | version "2.0.0" 870 | resolved "https://registry.yarnpkg.com/progress/-/progress-2.0.0.tgz#8a1be366bf8fc23db2bd23f10c6fe920b4389d1f" 871 | 872 | promise.allsettled@1.0.2: 873 | version "1.0.2" 874 | resolved "https://registry.yarnpkg.com/promise.allsettled/-/promise.allsettled-1.0.2.tgz#d66f78fbb600e83e863d893e98b3d4376a9c47c9" 875 | dependencies: 876 | array.prototype.map "^1.0.1" 877 | define-properties "^1.1.3" 878 | es-abstract "^1.17.0-next.1" 879 | function-bind "^1.1.1" 880 | iterate-value "^1.0.0" 881 | 882 | punycode@^2.1.0: 883 | version "2.1.1" 884 | resolved "https://registry.yarnpkg.com/punycode/-/punycode-2.1.1.tgz#b58b010ac40c22c5657616c8d2c2c02c7bf479ec" 885 | 886 | readdirp@~3.3.0: 887 | version "3.3.0" 888 | resolved "https://registry.yarnpkg.com/readdirp/-/readdirp-3.3.0.tgz#984458d13a1e42e2e9f5841b129e162f369aff17" 889 | dependencies: 890 | picomatch "^2.0.7" 891 | 892 | regexpp@^3.1.0: 893 | version "3.1.0" 894 | resolved "https://registry.yarnpkg.com/regexpp/-/regexpp-3.1.0.tgz#206d0ad0a5648cffbdb8ae46438f3dc51c9f78e2" 895 | 896 | require-directory@^2.1.1: 897 | version "2.1.1" 898 | resolved "https://registry.yarnpkg.com/require-directory/-/require-directory-2.1.1.tgz#8c64ad5fd30dab1c976e2344ffe7f792a6a6df42" 899 | 900 | require-main-filename@^2.0.0: 901 | version "2.0.0" 902 | resolved "https://registry.yarnpkg.com/require-main-filename/-/require-main-filename-2.0.0.tgz#d0b329ecc7cc0f61649f62215be69af54aa8989b" 903 | 904 | resolve-from@^4.0.0: 905 | version "4.0.0" 906 | resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-4.0.0.tgz#4abcd852ad32dd7baabfe9b40e00a36db5f392e6" 907 | 908 | rimraf@2.6.3: 909 | version "2.6.3" 910 | resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.6.3.tgz#b2d104fe0d8fb27cf9e0a1cda8262dd3833c6cab" 911 | dependencies: 912 | glob "^7.1.3" 913 | 914 | semver@^7.2.1: 915 | version "7.3.2" 916 | resolved "https://registry.yarnpkg.com/semver/-/semver-7.3.2.tgz#604962b052b81ed0786aae84389ffba70ffd3938" 917 | 918 | serialize-javascript@3.0.0: 919 | version "3.0.0" 920 | resolved "https://registry.yarnpkg.com/serialize-javascript/-/serialize-javascript-3.0.0.tgz#492e489a2d77b7b804ad391a5f5d97870952548e" 921 | 922 | set-blocking@^2.0.0: 923 | version "2.0.0" 924 | resolved "https://registry.yarnpkg.com/set-blocking/-/set-blocking-2.0.0.tgz#045f9782d011ae9a6803ddd382b24392b3d890f7" 925 | 926 | shebang-command@^2.0.0: 927 | version "2.0.0" 928 | resolved "https://registry.yarnpkg.com/shebang-command/-/shebang-command-2.0.0.tgz#ccd0af4f8835fbdc265b82461aaf0c36663f34ea" 929 | dependencies: 930 | shebang-regex "^3.0.0" 931 | 932 | shebang-regex@^3.0.0: 933 | version "3.0.0" 934 | resolved "https://registry.yarnpkg.com/shebang-regex/-/shebang-regex-3.0.0.tgz#ae16f1644d873ecad843b0307b143362d4c42172" 935 | 936 | slice-ansi@^2.1.0: 937 | version "2.1.0" 938 | resolved "https://registry.yarnpkg.com/slice-ansi/-/slice-ansi-2.1.0.tgz#cacd7693461a637a5788d92a7dd4fba068e81636" 939 | dependencies: 940 | ansi-styles "^3.2.0" 941 | astral-regex "^1.0.0" 942 | is-fullwidth-code-point "^2.0.0" 943 | 944 | source-map@^0.6.1: 945 | version "0.6.1" 946 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.6.1.tgz#74722af32e9614e9c287a8d0bbde48b5e2f1a263" 947 | 948 | sprintf-js@~1.0.2: 949 | version "1.0.3" 950 | resolved "https://registry.yarnpkg.com/sprintf-js/-/sprintf-js-1.0.3.tgz#04e6926f662895354f3dd015203633b857297e2c" 951 | 952 | "string-width@^1.0.2 || 2": 953 | version "2.1.1" 954 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-2.1.1.tgz#ab93f27a8dc13d28cac815c462143a6d9012ae9e" 955 | dependencies: 956 | is-fullwidth-code-point "^2.0.0" 957 | strip-ansi "^4.0.0" 958 | 959 | string-width@^3.0.0, string-width@^3.1.0: 960 | version "3.1.0" 961 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-3.1.0.tgz#22767be21b62af1081574306f69ac51b62203961" 962 | dependencies: 963 | emoji-regex "^7.0.1" 964 | is-fullwidth-code-point "^2.0.0" 965 | strip-ansi "^5.1.0" 966 | 967 | string.prototype.trimend@^1.0.1: 968 | version "1.0.1" 969 | resolved "https://registry.yarnpkg.com/string.prototype.trimend/-/string.prototype.trimend-1.0.1.tgz#85812a6b847ac002270f5808146064c995fb6913" 970 | dependencies: 971 | define-properties "^1.1.3" 972 | es-abstract "^1.17.5" 973 | 974 | string.prototype.trimstart@^1.0.1: 975 | version "1.0.1" 976 | resolved "https://registry.yarnpkg.com/string.prototype.trimstart/-/string.prototype.trimstart-1.0.1.tgz#14af6d9f34b053f7cfc89b72f8f2ee14b9039a54" 977 | dependencies: 978 | define-properties "^1.1.3" 979 | es-abstract "^1.17.5" 980 | 981 | strip-ansi@^4.0.0: 982 | version "4.0.0" 983 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-4.0.0.tgz#a8479022eb1ac368a871389b635262c505ee368f" 984 | dependencies: 985 | ansi-regex "^3.0.0" 986 | 987 | strip-ansi@^5.0.0, strip-ansi@^5.1.0, strip-ansi@^5.2.0: 988 | version "5.2.0" 989 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-5.2.0.tgz#8c9a536feb6afc962bdfa5b104a5091c1ad9c0ae" 990 | dependencies: 991 | ansi-regex "^4.1.0" 992 | 993 | strip-ansi@^6.0.0: 994 | version "6.0.0" 995 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-6.0.0.tgz#0b1571dd7669ccd4f3e06e14ef1eed26225ae532" 996 | dependencies: 997 | ansi-regex "^5.0.0" 998 | 999 | strip-json-comments@3.0.1: 1000 | version "3.0.1" 1001 | resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-3.0.1.tgz#85713975a91fb87bf1b305cca77395e40d2a64a7" 1002 | 1003 | strip-json-comments@^3.1.0: 1004 | version "3.1.0" 1005 | resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-3.1.0.tgz#7638d31422129ecf4457440009fba03f9f9ac180" 1006 | 1007 | supports-color@7.1.0, supports-color@^7.1.0: 1008 | version "7.1.0" 1009 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-7.1.0.tgz#68e32591df73e25ad1c4b49108a2ec507962bfd1" 1010 | dependencies: 1011 | has-flag "^4.0.0" 1012 | 1013 | supports-color@^5.3.0, supports-color@^5.4.0: 1014 | version "5.5.0" 1015 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-5.5.0.tgz#e2e69a44ac8772f78a1ec0b35b689df6530efc8f" 1016 | dependencies: 1017 | has-flag "^3.0.0" 1018 | 1019 | table@^5.2.3: 1020 | version "5.4.6" 1021 | resolved "https://registry.yarnpkg.com/table/-/table-5.4.6.tgz#1292d19500ce3f86053b05f0e8e7e4a3bb21079e" 1022 | dependencies: 1023 | ajv "^6.10.2" 1024 | lodash "^4.17.14" 1025 | slice-ansi "^2.1.0" 1026 | string-width "^3.0.0" 1027 | 1028 | text-table@^0.2.0: 1029 | version "0.2.0" 1030 | resolved "https://registry.yarnpkg.com/text-table/-/text-table-0.2.0.tgz#7f5ee823ae805207c00af2df4a84ec3fcfa570b4" 1031 | 1032 | to-regex-range@^5.0.1: 1033 | version "5.0.1" 1034 | resolved "https://registry.yarnpkg.com/to-regex-range/-/to-regex-range-5.0.1.tgz#1648c44aae7c8d988a326018ed72f5b4dd0392e4" 1035 | dependencies: 1036 | is-number "^7.0.0" 1037 | 1038 | type-check@^0.4.0, type-check@~0.4.0: 1039 | version "0.4.0" 1040 | resolved "https://registry.yarnpkg.com/type-check/-/type-check-0.4.0.tgz#07b8203bfa7056c0657050e3ccd2c37730bab8f1" 1041 | dependencies: 1042 | prelude-ls "^1.2.1" 1043 | 1044 | type-fest@^0.8.1: 1045 | version "0.8.1" 1046 | resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-0.8.1.tgz#09e249ebde851d3b1e48d27c105444667f17b83d" 1047 | 1048 | uri-js@^4.2.2: 1049 | version "4.2.2" 1050 | resolved "https://registry.yarnpkg.com/uri-js/-/uri-js-4.2.2.tgz#94c540e1ff772956e2299507c010aea6c8838eb0" 1051 | dependencies: 1052 | punycode "^2.1.0" 1053 | 1054 | v8-compile-cache@^2.0.3: 1055 | version "2.1.1" 1056 | resolved "https://registry.yarnpkg.com/v8-compile-cache/-/v8-compile-cache-2.1.1.tgz#54bc3cdd43317bca91e35dcaf305b1a7237de745" 1057 | 1058 | which-module@^2.0.0: 1059 | version "2.0.0" 1060 | resolved "https://registry.yarnpkg.com/which-module/-/which-module-2.0.0.tgz#d9ef07dce77b9902b8a3a8fa4b31c3e3f7e6e87a" 1061 | 1062 | which@2.0.2, which@^2.0.1: 1063 | version "2.0.2" 1064 | resolved "https://registry.yarnpkg.com/which/-/which-2.0.2.tgz#7c6a8dd0a636a0327e10b59c9286eee93f3f51b1" 1065 | dependencies: 1066 | isexe "^2.0.0" 1067 | 1068 | wide-align@1.1.3: 1069 | version "1.1.3" 1070 | resolved "https://registry.yarnpkg.com/wide-align/-/wide-align-1.1.3.tgz#ae074e6bdc0c14a431e804e624549c633b000457" 1071 | dependencies: 1072 | string-width "^1.0.2 || 2" 1073 | 1074 | word-wrap@^1.2.3: 1075 | version "1.2.3" 1076 | resolved "https://registry.yarnpkg.com/word-wrap/-/word-wrap-1.2.3.tgz#610636f6b1f703891bd34771ccb17fb93b47079c" 1077 | 1078 | workerpool@6.0.0: 1079 | version "6.0.0" 1080 | resolved "https://registry.yarnpkg.com/workerpool/-/workerpool-6.0.0.tgz#85aad67fa1a2c8ef9386a1b43539900f61d03d58" 1081 | 1082 | wrap-ansi@^5.1.0: 1083 | version "5.1.0" 1084 | resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-5.1.0.tgz#1fd1f67235d5b6d0fee781056001bfb694c03b09" 1085 | dependencies: 1086 | ansi-styles "^3.2.0" 1087 | string-width "^3.0.0" 1088 | strip-ansi "^5.0.0" 1089 | 1090 | wrappy@1: 1091 | version "1.0.2" 1092 | resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f" 1093 | 1094 | write@1.0.3: 1095 | version "1.0.3" 1096 | resolved "https://registry.yarnpkg.com/write/-/write-1.0.3.tgz#0800e14523b923a387e415123c865616aae0f5c3" 1097 | dependencies: 1098 | mkdirp "^0.5.1" 1099 | 1100 | y18n@^4.0.0: 1101 | version "4.0.0" 1102 | resolved "https://registry.yarnpkg.com/y18n/-/y18n-4.0.0.tgz#95ef94f85ecc81d007c264e190a120f0a3c8566b" 1103 | 1104 | yargs-parser@13.1.2, yargs-parser@^13.1.2: 1105 | version "13.1.2" 1106 | resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-13.1.2.tgz#130f09702ebaeef2650d54ce6e3e5706f7a4fb38" 1107 | dependencies: 1108 | camelcase "^5.0.0" 1109 | decamelize "^1.2.0" 1110 | 1111 | yargs-unparser@1.6.0: 1112 | version "1.6.0" 1113 | resolved "https://registry.yarnpkg.com/yargs-unparser/-/yargs-unparser-1.6.0.tgz#ef25c2c769ff6bd09e4b0f9d7c605fb27846ea9f" 1114 | dependencies: 1115 | flat "^4.1.0" 1116 | lodash "^4.17.15" 1117 | yargs "^13.3.0" 1118 | 1119 | yargs@13.3.2, yargs@^13.3.0: 1120 | version "13.3.2" 1121 | resolved "https://registry.yarnpkg.com/yargs/-/yargs-13.3.2.tgz#ad7ffefec1aa59565ac915f82dccb38a9c31a2dd" 1122 | dependencies: 1123 | cliui "^5.0.0" 1124 | find-up "^3.0.0" 1125 | get-caller-file "^2.0.1" 1126 | require-directory "^2.1.1" 1127 | require-main-filename "^2.0.0" 1128 | set-blocking "^2.0.0" 1129 | string-width "^3.0.0" 1130 | which-module "^2.0.0" 1131 | y18n "^4.0.0" 1132 | yargs-parser "^13.1.2" 1133 | --------------------------------------------------------------------------------