├── .all-contributorsrc ├── .eslintignore ├── .eslintrc.js ├── .gitignore ├── README.md ├── jest.config.js ├── package.json ├── src ├── borderRadius.test.ts ├── borderRadius.ts ├── index.ts ├── layout.test.ts ├── layout.ts ├── margin.test.ts ├── margin.ts ├── padding.test.ts ├── padding.ts └── utils │ ├── composeUtil.test.ts │ ├── composeUtil.ts │ ├── testUtils.ts │ └── types.ts ├── tsconfig.esm.json ├── tsconfig.json └── yarn.lock /.all-contributorsrc: -------------------------------------------------------------------------------- 1 | { 2 | "files": [ 3 | "README.md" 4 | ], 5 | "imageSize": 100, 6 | "commit": false, 7 | "contributors": [ 8 | { 9 | "login": "hauptrolle", 10 | "name": "Achim Rolle", 11 | "avatar_url": "https://avatars0.githubusercontent.com/u/1164541?v=4", 12 | "profile": "http://www.hauptrolle.me", 13 | "contributions": [ 14 | "code", 15 | "doc", 16 | "example", 17 | "review" 18 | ] 19 | }, 20 | { 21 | "login": "braposo", 22 | "name": "Bernardo Raposo", 23 | "avatar_url": "https://avatars2.githubusercontent.com/u/38172?v=4", 24 | "profile": "http://bernardoraposo.com", 25 | "contributions": [ 26 | "code", 27 | "doc", 28 | "example", 29 | "test", 30 | "ideas" 31 | ] 32 | } 33 | ], 34 | "contributorsPerLine": 7, 35 | "projectName": "stitches-utils", 36 | "projectOwner": "hauptrolle", 37 | "repoType": "github", 38 | "repoHost": "https://github.com", 39 | "skipCi": true 40 | } 41 | -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | lib 3 | coverage 4 | -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | root: true, 3 | parser: "@typescript-eslint/parser", 4 | plugins: ["@typescript-eslint"], 5 | extends: [ 6 | "eslint:recommended", 7 | "plugin:import/errors", 8 | "plugin:import/warnings", 9 | "plugin:import/typescript", 10 | "plugin:@typescript-eslint/recommended", 11 | "prettier", 12 | ], 13 | rules: { 14 | "import/order": [ 15 | "error", 16 | { 17 | groups: ["builtin", "external", "internal"], 18 | }, 19 | ], 20 | }, 21 | overrides: [ 22 | { 23 | files: ["*.test.ts"], 24 | rules: { 25 | "@typescript-eslint/no-explicit-any": 0, 26 | }, 27 | }, 28 | ], 29 | }; 30 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | ### Node ### 2 | 3 | # Logs 4 | logs 5 | npm-debug.log* 6 | yarn-debug.log* 7 | yarn-error.log* 8 | 9 | # Optional npm cache directory 10 | .npm 11 | 12 | # Dependency directories 13 | /node_modules 14 | /jspm_packages 15 | /bower_components 16 | 17 | # Yarn Integrity file 18 | .yarn-integrity 19 | 20 | # Optional eslint cache 21 | .eslintcache 22 | 23 | # dotenv environment variables file(s) 24 | .env 25 | .env.* 26 | 27 | #Build generated 28 | lib/ 29 | dist/ 30 | build/ 31 | .next/ 32 | coverage/ 33 | 34 | # Serverless generated files 35 | .serverless/ 36 | 37 | ### SublimeText ### 38 | # cache files for sublime text 39 | *.tmlanguage.cache 40 | *.tmPreferences.cache 41 | *.stTheme.cache 42 | 43 | # workspace files are user-specific 44 | *.sublime-workspace 45 | 46 | # project files should be checked into the repository, unless a significant 47 | # proportion of contributors will probably not be using SublimeText 48 | # *.sublime-project 49 | 50 | 51 | ### VisualStudioCode ### 52 | .vscode/* 53 | !.vscode/settings.json 54 | !.vscode/tasks.json 55 | !.vscode/launch.json 56 | !.vscode/extensions.json 57 | 58 | ### Vim ### 59 | *.sw[a-p] 60 | 61 | ### WebStorm/IntelliJ ### 62 | /.idea 63 | modules.xml 64 | *.ipr 65 | *.iml 66 | 67 | 68 | ### System Files ### 69 | *.DS_Store 70 | 71 | # Windows thumbnail cache files 72 | Thumbs.db 73 | ehthumbs.db 74 | ehthumbs_vista.db 75 | 76 | # Folder config file 77 | Desktop.ini 78 | 79 | # Recycle Bin used on file shares 80 | $RECYCLE.BIN/ 81 | 82 | # Thumbnails 83 | ._* 84 | 85 | # Files that might appear in the root of a volume 86 | .DocumentRevisions-V100 87 | .fseventsd 88 | .Spotlight-V100 89 | .TemporaryItems 90 | .Trashes 91 | .VolumeIcon.icns 92 | .com.apple.timemachine.donotpresent 93 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # stitches-utils 2 | 3 | [![All Contributors](https://img.shields.io/badge/all_contributors-2-orange.svg?style=flat-square)](#contributors-) 4 | 5 | 6 | > Helpful stitches utilities like `marginY`, `marginX` etc. combined in one package 7 | 8 | ![GitHub release](https://img.shields.io/github/release/hauptrolle/stitches-utils.svg) ![issues](https://img.shields.io/github/issues/hauptrolle/stitches-utils) 9 | 10 | --- 11 | 12 | ## Installation: 13 | 14 | `yarn add stitches-utils` 15 | 16 | or 17 | 18 | `nom install stitches-utils` 19 | 20 | ## Usage: 21 | 22 | Import all utils 23 | 24 | ```jsx 25 | import { createStyled } from "@stitches/react"; 26 | import * as utils from "stitches-utils"; 27 | 28 | export const { styled, css } = createStyled({ 29 | utils, 30 | }); 31 | ``` 32 | 33 | Import specific utils 34 | 35 | ```jsx 36 | import { createStyled } from "@stitches/react"; 37 | import { mx, my } from "stitches-utils"; 38 | 39 | export const { styled, css } = createStyled({ 40 | utils: { 41 | mx, 42 | my, 43 | }, 44 | }); 45 | ``` 46 | 47 | ## Utils overview: 48 | 49 | | Utility | Properties | 50 | | ------------ | ---------------------------------------------------- | 51 | | m | marginTop, marginRight, marginBottom, marginLeft | 52 | | mt | marginTop | 53 | | mr | marginRight | 54 | | mb | marginBottom | 55 | | ml | marginLeft | 56 | | mx, marginX | marginLeft, marginRight | 57 | | my, marginY | marginTop, marginBottom | 58 | | p | paddingTop, paddingRight, paddingBottom, paddingLeft | 59 | | pt | paddingTop | 60 | | pr | paddingRight | 61 | | pb | paddingBottom | 62 | | pl | paddingLeft | 63 | | px, paddingX | paddingLeft, paddingRight | 64 | | py, paddingY | paddingTop, paddingBottom | 65 | | br | borderRadius | 66 | | btlr | borderTopLeftRadius | 67 | | btrr | borderTopRightRadius | 68 | | bblr | borderBottomLeftRadius | 69 | | bbrr | borderBottomRightRadius | 70 | | w | width | 71 | | minW | minWidht | 72 | | maxW | maxWidth | 73 | | h | height | 74 | | minH | minHeight | 75 | | maxH | maxHeight | 76 | | boxSize | width, height | 77 | 78 | ## Custom utils: 79 | 80 | It's also possible to build custom utils by using the `composeUtil` function. 81 | 82 | ```jsx 83 | import { createStyled } from "@stitches/react"; 84 | import { composeUtil } from "stitches-utils"; 85 | 86 | const size = composeUtil("width", "height"); 87 | 88 | export const { styled, css } = createStyled({ 89 | utils: { 90 | size, 91 | }, 92 | }); 93 | ``` 94 | 95 | ## Contributors ✨ 96 | 97 | Thanks goes to these wonderful people ([emoji key](https://allcontributors.org/docs/en/emoji-key)): 98 | 99 | 100 | 101 | 102 | 103 | 104 | 105 | 106 | 107 |

Achim Rolle

💻 📖 💡 👀

Bernardo Raposo

💻 📖 💡 ⚠️ 🤔
108 | 109 | 110 | 111 | 112 | 113 | This project follows the [all-contributors](https://github.com/all-contributors/all-contributors) specification. Contributions of any kind welcome! -------------------------------------------------------------------------------- /jest.config.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | roots: ["/src"], 3 | transform: { 4 | "^.+\\.tsx?$": "ts-jest", 5 | }, 6 | }; 7 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "stitches-utils", 3 | "version": "1.1.0", 4 | "author": "Achim Rolle ", 5 | "license": "MIT", 6 | "main": "lib/index.js", 7 | "module": "lib/esm/index.js", 8 | "types": "lib/index.d.ts", 9 | "files": [ 10 | "lib" 11 | ], 12 | "scripts": { 13 | "build": "tsc && tsc -p tsconfig.esm.json", 14 | "prebuild": "rm -rf lib && mkdir -p lib", 15 | "test": "jest", 16 | "test:coverage": "jest --coverage", 17 | "lint": "eslint ./src --ext .js,.jsx,.ts,.tsx" 18 | }, 19 | "repository": { 20 | "type": "git", 21 | "url": "https://github.com/hauptrolle/stitches-utils.git" 22 | }, 23 | "bugs": "https://github.com/hauptrolle/stitches-utils/issues", 24 | "keywords": [ 25 | "css", 26 | "utils", 27 | "helpers", 28 | "stitches", 29 | "css-in-js" 30 | ], 31 | "husky": { 32 | "hooks": { 33 | "pre-commit": "pretty-quick --staged && yarn lint && yarn test" 34 | } 35 | }, 36 | "devDependencies": { 37 | "@stitches/core": "^0.0.2", 38 | "@typescript-eslint/eslint-plugin": "^4.1.1", 39 | "@typescript-eslint/parser": "^4.1.1", 40 | "eslint": "^7.9.0", 41 | "eslint-config-prettier": "^6.11.0", 42 | "eslint-plugin-import": "^2.22.0", 43 | "husky": "^4.3.0", 44 | "jest": "^26.4.2", 45 | "prettier": "^2.1.1", 46 | "pretty-quick": "^3.0.2", 47 | "ts-jest": "^26.3.0", 48 | "typescript": "^4.0.2" 49 | }, 50 | "peerDependencies": { 51 | "@stitches/react": "^0.0.2" 52 | }, 53 | "prettier": { 54 | "trailingComma": "es5", 55 | "tabWidth": 2, 56 | "semi": true, 57 | "singleQuote": false 58 | } 59 | } 60 | -------------------------------------------------------------------------------- /src/borderRadius.test.ts: -------------------------------------------------------------------------------- 1 | import { createCss, IAtom } from "@stitches/core"; 2 | import { br, btlr, btrr, bbrr, bblr } from "./borderRadius"; 3 | 4 | describe("borderRadius utils", () => { 5 | it("should create br util correctly", () => { 6 | const css = createCss({ utils: { br } }, null); 7 | 8 | const [bbrr, btrr, btlr, bblr] = (css({ br: "1px" }) as any) 9 | .atoms as IAtom[]; 10 | 11 | expect(bbrr.id).toBe("borderbottomrightradiusinitial"); 12 | expect(bbrr.value).toBe("1px"); 13 | 14 | expect(btrr.id).toBe("bordertoprightradiusinitial"); 15 | expect(btrr.value).toBe("1px"); 16 | 17 | expect(btlr.id).toBe("bordertopleftradiusinitial"); 18 | expect(btlr.value).toBe("1px"); 19 | 20 | expect(bblr.id).toBe("borderbottomleftradiusinitial"); 21 | expect(bblr.value).toBe("1px"); 22 | }); 23 | 24 | it("should create btlr util correctly", () => { 25 | const css = createCss({ utils: { btlr } }, null); 26 | 27 | const [atom] = (css({ btlr: "1px" }) as any).atoms as IAtom[]; 28 | 29 | expect(atom.id).toBe("bordertopleftradiusinitial"); 30 | expect(atom.value).toBe("1px"); 31 | }); 32 | 33 | it("should create btrr util correctly", () => { 34 | const css = createCss({ utils: { btrr } }, null); 35 | 36 | const [atom] = (css({ btrr: "1px" }) as any).atoms as IAtom[]; 37 | 38 | expect(atom.id).toBe("bordertoprightradiusinitial"); 39 | expect(atom.value).toBe("1px"); 40 | }); 41 | 42 | it("should create bblr util correctly", () => { 43 | const css = createCss({ utils: { bblr } }, null); 44 | 45 | const [atom] = (css({ bblr: "1px" }) as any).atoms as IAtom[]; 46 | 47 | expect(atom.id).toBe("borderbottomleftradiusinitial"); 48 | expect(atom.value).toBe("1px"); 49 | }); 50 | 51 | it("should create bbrr util correctly", () => { 52 | const css = createCss({ utils: { bbrr } }, null); 53 | 54 | const [atom] = (css({ bbrr: "1px" }) as any).atoms as IAtom[]; 55 | 56 | expect(atom.id).toBe("borderbottomrightradiusinitial"); 57 | expect(atom.value).toBe("1px"); 58 | }); 59 | }); 60 | -------------------------------------------------------------------------------- /src/borderRadius.ts: -------------------------------------------------------------------------------- 1 | import { composeUtil } from "./utils/composeUtil"; 2 | 3 | export const br = composeUtil("borderRadius"); 4 | export const btlr = composeUtil("borderTopLeftRadius"); 5 | export const btrr = composeUtil("borderTopRightRadius"); 6 | export const bbrr = composeUtil("borderBottomRightRadius"); 7 | export const bblr = composeUtil("borderBottomLeftRadius"); 8 | -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./margin"; 2 | export * from "./padding"; 3 | export * from "./borderRadius"; 4 | export * from "./layout"; 5 | export * from "./utils/composeUtil"; 6 | -------------------------------------------------------------------------------- /src/layout.test.ts: -------------------------------------------------------------------------------- 1 | import { createCss, IAtom } from "@stitches/core"; 2 | import { w, minW, maxW, h, minH, maxH, boxSize } from "./layout"; 3 | 4 | describe("layout utils", () => { 5 | it("should create w util correctly", () => { 6 | const css = createCss({ utils: { w } }, null); 7 | 8 | const [atom] = (css({ w: "1px" }) as any).atoms as IAtom[]; 9 | 10 | expect(atom.id).toBe("widthinitial"); 11 | expect(atom.value).toBe("1px"); 12 | }); 13 | 14 | it("should create minW util correctly", () => { 15 | const css = createCss({ utils: { minW } }, null); 16 | 17 | const [atom] = (css({ minW: "1px" }) as any).atoms as IAtom[]; 18 | 19 | expect(atom.id).toBe("minwidthinitial"); 20 | expect(atom.value).toBe("1px"); 21 | }); 22 | 23 | it("should create maxW util correctly", () => { 24 | const css = createCss({ utils: { maxW } }, null); 25 | 26 | const [atom] = (css({ maxW: "1px" }) as any).atoms as IAtom[]; 27 | 28 | expect(atom.id).toBe("maxwidthinitial"); 29 | expect(atom.value).toBe("1px"); 30 | }); 31 | 32 | it("should create h util correctly", () => { 33 | const css = createCss({ utils: { h } }, null); 34 | 35 | const [atom] = (css({ h: "1px" }) as any).atoms as IAtom[]; 36 | 37 | expect(atom.id).toBe("heightinitial"); 38 | expect(atom.value).toBe("1px"); 39 | }); 40 | 41 | it("should create minH util correctly", () => { 42 | const css = createCss({ utils: { minH } }, null); 43 | 44 | const [atom] = (css({ minH: "1px" }) as any).atoms as IAtom[]; 45 | 46 | expect(atom.id).toBe("minheightinitial"); 47 | expect(atom.value).toBe("1px"); 48 | }); 49 | 50 | it("should create maxH util correctly", () => { 51 | const css = createCss({ utils: { maxH } }, null); 52 | 53 | const [atom] = (css({ maxH: "1px" }) as any).atoms as IAtom[]; 54 | 55 | expect(atom.id).toBe("maxheightinitial"); 56 | expect(atom.value).toBe("1px"); 57 | }); 58 | 59 | it("should create boxsize util correctly", () => { 60 | const css = createCss({ utils: { boxSize } }, null); 61 | 62 | const [heightAtom, widthAtom] = (css({ boxSize: "1px" }) as any) 63 | .atoms as IAtom[]; 64 | 65 | expect(heightAtom.id).toBe("heightinitial"); 66 | expect(heightAtom.value).toBe("1px"); 67 | 68 | expect(widthAtom.id).toBe("widthinitial"); 69 | expect(widthAtom.value).toBe("1px"); 70 | }); 71 | }); 72 | -------------------------------------------------------------------------------- /src/layout.ts: -------------------------------------------------------------------------------- 1 | import { composeUtil } from "./utils/composeUtil"; 2 | 3 | export const w = composeUtil("width"); 4 | export const minW = composeUtil("minWidth"); 5 | export const maxW = composeUtil("maxWidth"); 6 | export const h = composeUtil("height"); 7 | export const minH = composeUtil("minHeight"); 8 | export const maxH = composeUtil("maxHeight"); 9 | export const boxSize = composeUtil("width", "height"); 10 | -------------------------------------------------------------------------------- /src/margin.test.ts: -------------------------------------------------------------------------------- 1 | import { createCss, IAtom } from "@stitches/core"; 2 | import { m, mt, mr, mb, ml, mx, my, marginX, marginY } from "./margin"; 3 | 4 | describe("margin utils", () => { 5 | it("should create m util correctly", () => { 6 | const css = createCss({ utils: { m } }, null); 7 | 8 | const [mrAtom, mlAtom, mbAtom, mtAtom] = (css({ m: "1px" }) as any) 9 | .atoms as IAtom[]; 10 | 11 | expect(mrAtom.id).toBe("marginrightinitial"); 12 | expect(mrAtom.value).toBe("1px"); 13 | 14 | expect(mlAtom.id).toBe("marginleftinitial"); 15 | expect(mlAtom.value).toBe("1px"); 16 | 17 | expect(mbAtom.id).toBe("marginbottominitial"); 18 | expect(mbAtom.value).toBe("1px"); 19 | 20 | expect(mtAtom.id).toBe("margintopinitial"); 21 | expect(mtAtom.value).toBe("1px"); 22 | }); 23 | 24 | it("should create mt util correctly", () => { 25 | const css = createCss({ utils: { mt } }, null); 26 | 27 | const [atom] = (css({ mt: "1px" }) as any).atoms as IAtom[]; 28 | 29 | expect(atom.id).toBe("margintopinitial"); 30 | expect(atom.value).toBe("1px"); 31 | }); 32 | 33 | it("should create mr util correctly", () => { 34 | const css = createCss({ utils: { mr } }, null); 35 | 36 | const [atom] = (css({ mr: "1px" }) as any).atoms as IAtom[]; 37 | 38 | expect(atom.id).toBe("marginrightinitial"); 39 | expect(atom.value).toBe("1px"); 40 | }); 41 | 42 | it("should create mb util correctly", () => { 43 | const css = createCss({ utils: { mb } }, null); 44 | 45 | const [atom] = (css({ mb: "1px" }) as any).atoms as IAtom[]; 46 | 47 | expect(atom.id).toBe("marginbottominitial"); 48 | expect(atom.value).toBe("1px"); 49 | }); 50 | 51 | it("should create ml util correctly", () => { 52 | const css = createCss({ utils: { ml } }, null); 53 | 54 | const [atom] = (css({ ml: "1px" }) as any).atoms as IAtom[]; 55 | 56 | expect(atom.id).toBe("marginleftinitial"); 57 | expect(atom.value).toBe("1px"); 58 | }); 59 | 60 | it("should create mx/marginY util correctly", () => { 61 | const css = createCss({ utils: { mx, marginX } }, null); 62 | 63 | const [mrAtom, mlAtom] = (css({ mx: "1px" }) as any).atoms as IAtom[]; 64 | 65 | expect(mrAtom.id).toBe("marginrightinitial"); 66 | expect(mrAtom.value).toBe("1px"); 67 | 68 | expect(mlAtom.id).toBe("marginleftinitial"); 69 | expect(mlAtom.value).toBe("1px"); 70 | 71 | const [marginRightAtom, marginLeftAtom] = (css({ marginX: "1px" }) as any) 72 | .atoms as IAtom[]; 73 | 74 | expect(marginRightAtom.id).toBe("marginrightinitial"); 75 | expect(marginRightAtom.value).toBe("1px"); 76 | 77 | expect(marginLeftAtom.id).toBe("marginleftinitial"); 78 | expect(marginLeftAtom.value).toBe("1px"); 79 | }); 80 | 81 | it("should create my/marginY util correctly", () => { 82 | const css = createCss({ utils: { my, marginY } }, null); 83 | 84 | const [mbAtom, mtAtom] = (css({ my: "1px" }) as any).atoms as IAtom[]; 85 | 86 | expect(mbAtom.id).toBe("marginbottominitial"); 87 | expect(mbAtom.value).toBe("1px"); 88 | 89 | expect(mtAtom.id).toBe("margintopinitial"); 90 | expect(mtAtom.value).toBe("1px"); 91 | 92 | const [marginBottomAtom, marginTopAtom] = (css({ marginY: "1px" }) as any) 93 | .atoms as IAtom[]; 94 | 95 | expect(marginBottomAtom.id).toBe("marginbottominitial"); 96 | expect(marginBottomAtom.value).toBe("1px"); 97 | 98 | expect(marginTopAtom.id).toBe("margintopinitial"); 99 | expect(marginTopAtom.value).toBe("1px"); 100 | }); 101 | }); 102 | -------------------------------------------------------------------------------- /src/margin.ts: -------------------------------------------------------------------------------- 1 | import { composeUtil } from "./utils/composeUtil"; 2 | 3 | export const m = composeUtil( 4 | "marginTop", 5 | "marginBottom", 6 | "marginLeft", 7 | "marginRight" 8 | ); 9 | export const mt = composeUtil("marginTop"); 10 | export const mr = composeUtil("marginRight"); 11 | export const mb = composeUtil("marginBottom"); 12 | export const ml = composeUtil("marginLeft"); 13 | export const mx = composeUtil("marginLeft", "marginRight"); 14 | export const my = composeUtil("marginTop", "marginBottom"); 15 | 16 | export const marginX = mx; 17 | export const marginY = my; 18 | -------------------------------------------------------------------------------- /src/padding.test.ts: -------------------------------------------------------------------------------- 1 | import { createCss, IAtom } from "@stitches/core"; 2 | import { p, pt, pr, pb, pl, px, py, paddingX, paddingY } from "./padding"; 3 | 4 | describe("padding utils", () => { 5 | it("should create m util correctly", () => { 6 | const css = createCss({ utils: { p } }, null); 7 | 8 | const [prAtom, plAtom, pbAtom, ptAtom] = (css({ p: "1px" }) as any) 9 | .atoms as IAtom[]; 10 | 11 | expect(prAtom.id).toBe("paddingrightinitial"); 12 | expect(prAtom.value).toBe("1px"); 13 | 14 | expect(plAtom.id).toBe("paddingleftinitial"); 15 | expect(plAtom.value).toBe("1px"); 16 | 17 | expect(pbAtom.id).toBe("paddingbottominitial"); 18 | expect(pbAtom.value).toBe("1px"); 19 | 20 | expect(ptAtom.id).toBe("paddingtopinitial"); 21 | expect(ptAtom.value).toBe("1px"); 22 | }); 23 | 24 | it("should create mt util correctly", () => { 25 | const css = createCss({ utils: { pt } }, null); 26 | 27 | const [atom] = (css({ pt: "1px" }) as any).atoms as IAtom[]; 28 | 29 | expect(atom.id).toBe("paddingtopinitial"); 30 | expect(atom.value).toBe("1px"); 31 | }); 32 | 33 | it("should create mr util correctly", () => { 34 | const css = createCss({ utils: { pr } }, null); 35 | 36 | const [atom] = (css({ pr: "1px" }) as any).atoms as IAtom[]; 37 | 38 | expect(atom.id).toBe("paddingrightinitial"); 39 | expect(atom.value).toBe("1px"); 40 | }); 41 | 42 | it("should create mb util correctly", () => { 43 | const css = createCss({ utils: { pb } }, null); 44 | 45 | const [atom] = (css({ pb: "1px" }) as any).atoms as IAtom[]; 46 | 47 | expect(atom.id).toBe("paddingbottominitial"); 48 | expect(atom.value).toBe("1px"); 49 | }); 50 | 51 | it("should create ml util correctly", () => { 52 | const css = createCss({ utils: { pl } }, null); 53 | 54 | const [atom] = (css({ pl: "1px" }) as any).atoms as IAtom[]; 55 | 56 | expect(atom.id).toBe("paddingleftinitial"); 57 | expect(atom.value).toBe("1px"); 58 | }); 59 | 60 | it("should create px/paddingY util correctly", () => { 61 | const css = createCss({ utils: { px, paddingX } }, null); 62 | 63 | const [prAtom, plAtom] = (css({ px: "1px" }) as any).atoms as IAtom[]; 64 | 65 | expect(prAtom.id).toBe("paddingrightinitial"); 66 | expect(prAtom.value).toBe("1px"); 67 | 68 | expect(plAtom.id).toBe("paddingleftinitial"); 69 | expect(plAtom.value).toBe("1px"); 70 | 71 | const [paddingRightAtom, paddingLeftAtom] = (css({ 72 | paddingX: "1px", 73 | }) as any).atoms as IAtom[]; 74 | 75 | expect(paddingRightAtom.id).toBe("paddingrightinitial"); 76 | expect(paddingRightAtom.value).toBe("1px"); 77 | 78 | expect(paddingLeftAtom.id).toBe("paddingleftinitial"); 79 | expect(paddingLeftAtom.value).toBe("1px"); 80 | }); 81 | 82 | it("should create py/paddingY util correctly", () => { 83 | const css = createCss({ utils: { py, paddingY } }, null); 84 | 85 | const [pbAtom, ptAtom] = (css({ py: "1px" }) as any).atoms as IAtom[]; 86 | 87 | expect(pbAtom.id).toBe("paddingbottominitial"); 88 | expect(pbAtom.value).toBe("1px"); 89 | 90 | expect(ptAtom.id).toBe("paddingtopinitial"); 91 | expect(ptAtom.value).toBe("1px"); 92 | 93 | const [paddingBottomAtom, paddingTopAtom] = (css({ 94 | paddingY: "1px", 95 | }) as any).atoms as IAtom[]; 96 | 97 | expect(paddingBottomAtom.id).toBe("paddingbottominitial"); 98 | expect(paddingBottomAtom.value).toBe("1px"); 99 | 100 | expect(paddingTopAtom.id).toBe("paddingtopinitial"); 101 | expect(paddingTopAtom.value).toBe("1px"); 102 | }); 103 | }); 104 | -------------------------------------------------------------------------------- /src/padding.ts: -------------------------------------------------------------------------------- 1 | import { composeUtil } from "./utils/composeUtil"; 2 | 3 | export const p = composeUtil( 4 | "paddingTop", 5 | "paddingBottom", 6 | "paddingLeft", 7 | "paddingRight" 8 | ); 9 | export const pt = composeUtil("paddingTop"); 10 | export const pr = composeUtil("paddingRight"); 11 | export const pb = composeUtil("paddingBottom"); 12 | export const pl = composeUtil("paddingLeft"); 13 | export const px = composeUtil("paddingLeft", "paddingRight"); 14 | export const py = composeUtil("paddingTop", "paddingBottom"); 15 | 16 | export const paddingX = px; 17 | export const paddingY = py; 18 | -------------------------------------------------------------------------------- /src/utils/composeUtil.test.ts: -------------------------------------------------------------------------------- 1 | import { createCss, createTokens, IAtom } from "@stitches/core"; 2 | import { composeUtil } from "./composeUtil"; 3 | import { testConfig } from "./testUtils"; 4 | 5 | describe("composeUtil", () => { 6 | it("should be initiated correctly", () => { 7 | expect(composeUtil("maxWidth")).not.toThrow(); 8 | }); 9 | 10 | it("should create util with single property", () => { 11 | const maxW = composeUtil("maxWidth"); 12 | 13 | const tokens = createTokens(testConfig.tokens); 14 | const css = createCss({ tokens, utils: { maxW } }, null); 15 | 16 | const { atoms } = css({ maxW: "1px" }) as any; 17 | 18 | expect(atoms).toHaveLength(1); 19 | }); 20 | 21 | it("should create util with multiple properties", () => { 22 | const mx = composeUtil("marginLeft", "marginRight"); 23 | 24 | const tokens = createTokens(testConfig.tokens); 25 | const css = createCss({ tokens, utils: { mx } }, null); 26 | 27 | const { atoms } = css({ mx: "1px" }) as any; 28 | 29 | expect(atoms).toHaveLength(2); 30 | }); 31 | 32 | it("should apply basic values to composed properties", () => { 33 | const mx = composeUtil("marginLeft", "marginRight"); 34 | const tokens = createTokens(testConfig.tokens); 35 | const css = createCss({ tokens, utils: { mx } }, null); 36 | const [marginRightAtom, marginLeftAtom] = (css({ mx: "1px" }) as any) 37 | .atoms as IAtom[]; 38 | 39 | expect(marginRightAtom.id).toBe("marginrightinitial"); 40 | expect(marginRightAtom.value).toBe("1px"); 41 | 42 | expect(marginLeftAtom.id).toBe("marginleftinitial"); 43 | expect(marginLeftAtom.value).toBe("1px"); 44 | }); 45 | 46 | it("should apply tokens to composed properties", () => { 47 | const mx = composeUtil("marginLeft", "marginRight"); 48 | 49 | const tokens = createTokens(testConfig.tokens); 50 | const css = createCss({ tokens, utils: { mx } }, null); 51 | const [marginRightAtom, marginLeftAtom] = (css({ mx: "$1" }) as any) 52 | .atoms as IAtom[]; 53 | 54 | expect(marginRightAtom.id).toBe("marginrightinitial"); 55 | expect(marginRightAtom.value).toBe("var(--space-1)"); 56 | 57 | expect(marginLeftAtom.id).toBe("marginleftinitial"); 58 | expect(marginLeftAtom.value).toBe("var(--space-1)"); 59 | }); 60 | }); 61 | -------------------------------------------------------------------------------- /src/utils/composeUtil.ts: -------------------------------------------------------------------------------- 1 | import { TConfig, Properties, TRecursiveCss } from "@stitches/core"; 2 | import { TypedValue } from "./types"; 3 | 4 | export const composeUtil =

(...properties: P[]) => < 5 | T extends TConfig 6 | >() => (value: TypedValue | Properties[P]): TRecursiveCss => 7 | properties.reduce( 8 | (final, cssProp) => ({ 9 | ...final, 10 | [cssProp]: value, 11 | }), 12 | {} 13 | ); 14 | -------------------------------------------------------------------------------- /src/utils/testUtils.ts: -------------------------------------------------------------------------------- 1 | export const testConfig = { 2 | tokens: { 3 | colors: { 4 | $gray500: "hsl(206,10%,76%)", 5 | $blue500: "hsl(206,100%,50%)", 6 | $purple500: "hsl(252,78%,60%)", 7 | $green500: "hsl(148,60%,60%)", 8 | $red500: "hsl(352,100%,62%)", 9 | }, 10 | space: { 11 | $1: "5px", 12 | $2: "10px", 13 | $3: "15px", 14 | }, 15 | fontSizes: { 16 | $1: "12px", 17 | $2: "13px", 18 | $3: "15px", 19 | }, 20 | fonts: { 21 | $untitled: "Untitled Sans, apple-system, sans-serif", 22 | $mono: "Söhne Mono, menlo, monospace", 23 | }, 24 | fontWeights: {}, 25 | lineHeights: {}, 26 | letterSpacings: {}, 27 | sizes: {}, 28 | borderWidths: {}, 29 | borderStyles: {}, 30 | radii: {}, 31 | shadows: {}, 32 | zIndices: {}, 33 | transitions: {}, 34 | }, 35 | }; 36 | -------------------------------------------------------------------------------- /src/utils/types.ts: -------------------------------------------------------------------------------- 1 | import { ICssPropToToken } from "@stitches/core"; 2 | 3 | export type ValueOf = T[keyof T]; 4 | export type TypedValue = { 5 | [K in keyof ICssPropToToken]: K extends P ? ICssPropToToken[K] : never; 6 | }[keyof ICssPropToToken]; 7 | -------------------------------------------------------------------------------- /tsconfig.esm.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "./tsconfig.json", 3 | "compilerOptions": { 4 | "declaration": false, 5 | "outDir": "./lib/esm/", 6 | "module": "ES2020" 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "compilerOptions": { 3 | "target": "es5", 4 | "lib": ["dom", "dom.iterable", "esnext"], 5 | "allowSyntheticDefaultImports": true, 6 | "declaration": true, 7 | "outDir": "./lib", 8 | "esModuleInterop": true, 9 | "forceConsistentCasingInFileNames": true, 10 | "jsx": "preserve", 11 | "moduleResolution": "node", 12 | "resolveJsonModule": true, 13 | "skipLibCheck": true, 14 | "strict": false 15 | }, 16 | "include": ["src"], 17 | "exclude": ["node_modules", "src/**/*.test.ts"] 18 | } 19 | -------------------------------------------------------------------------------- /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.10.4": 6 | version "7.10.4" 7 | resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.10.4.tgz#168da1a36e90da68ae8d49c0f1b48c7c6249213a" 8 | dependencies: 9 | "@babel/highlight" "^7.10.4" 10 | 11 | "@babel/core@^7.1.0", "@babel/core@^7.7.5": 12 | version "7.11.6" 13 | resolved "https://registry.yarnpkg.com/@babel/core/-/core-7.11.6.tgz#3a9455dc7387ff1bac45770650bc13ba04a15651" 14 | dependencies: 15 | "@babel/code-frame" "^7.10.4" 16 | "@babel/generator" "^7.11.6" 17 | "@babel/helper-module-transforms" "^7.11.0" 18 | "@babel/helpers" "^7.10.4" 19 | "@babel/parser" "^7.11.5" 20 | "@babel/template" "^7.10.4" 21 | "@babel/traverse" "^7.11.5" 22 | "@babel/types" "^7.11.5" 23 | convert-source-map "^1.7.0" 24 | debug "^4.1.0" 25 | gensync "^1.0.0-beta.1" 26 | json5 "^2.1.2" 27 | lodash "^4.17.19" 28 | resolve "^1.3.2" 29 | semver "^5.4.1" 30 | source-map "^0.5.0" 31 | 32 | "@babel/generator@^7.11.5", "@babel/generator@^7.11.6": 33 | version "7.11.6" 34 | resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.11.6.tgz#b868900f81b163b4d464ea24545c61cbac4dc620" 35 | dependencies: 36 | "@babel/types" "^7.11.5" 37 | jsesc "^2.5.1" 38 | source-map "^0.5.0" 39 | 40 | "@babel/helper-function-name@^7.10.4": 41 | version "7.10.4" 42 | resolved "https://registry.yarnpkg.com/@babel/helper-function-name/-/helper-function-name-7.10.4.tgz#d2d3b20c59ad8c47112fa7d2a94bc09d5ef82f1a" 43 | dependencies: 44 | "@babel/helper-get-function-arity" "^7.10.4" 45 | "@babel/template" "^7.10.4" 46 | "@babel/types" "^7.10.4" 47 | 48 | "@babel/helper-get-function-arity@^7.10.4": 49 | version "7.10.4" 50 | resolved "https://registry.yarnpkg.com/@babel/helper-get-function-arity/-/helper-get-function-arity-7.10.4.tgz#98c1cbea0e2332f33f9a4661b8ce1505b2c19ba2" 51 | dependencies: 52 | "@babel/types" "^7.10.4" 53 | 54 | "@babel/helper-member-expression-to-functions@^7.10.4": 55 | version "7.11.0" 56 | resolved "https://registry.yarnpkg.com/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.11.0.tgz#ae69c83d84ee82f4b42f96e2a09410935a8f26df" 57 | dependencies: 58 | "@babel/types" "^7.11.0" 59 | 60 | "@babel/helper-module-imports@^7.10.4": 61 | version "7.10.4" 62 | resolved "https://registry.yarnpkg.com/@babel/helper-module-imports/-/helper-module-imports-7.10.4.tgz#4c5c54be04bd31670a7382797d75b9fa2e5b5620" 63 | dependencies: 64 | "@babel/types" "^7.10.4" 65 | 66 | "@babel/helper-module-transforms@^7.11.0": 67 | version "7.11.0" 68 | resolved "https://registry.yarnpkg.com/@babel/helper-module-transforms/-/helper-module-transforms-7.11.0.tgz#b16f250229e47211abdd84b34b64737c2ab2d359" 69 | dependencies: 70 | "@babel/helper-module-imports" "^7.10.4" 71 | "@babel/helper-replace-supers" "^7.10.4" 72 | "@babel/helper-simple-access" "^7.10.4" 73 | "@babel/helper-split-export-declaration" "^7.11.0" 74 | "@babel/template" "^7.10.4" 75 | "@babel/types" "^7.11.0" 76 | lodash "^4.17.19" 77 | 78 | "@babel/helper-optimise-call-expression@^7.10.4": 79 | version "7.10.4" 80 | resolved "https://registry.yarnpkg.com/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.10.4.tgz#50dc96413d594f995a77905905b05893cd779673" 81 | dependencies: 82 | "@babel/types" "^7.10.4" 83 | 84 | "@babel/helper-plugin-utils@^7.0.0", "@babel/helper-plugin-utils@^7.10.4", "@babel/helper-plugin-utils@^7.8.0": 85 | version "7.10.4" 86 | resolved "https://registry.yarnpkg.com/@babel/helper-plugin-utils/-/helper-plugin-utils-7.10.4.tgz#2f75a831269d4f677de49986dff59927533cf375" 87 | 88 | "@babel/helper-replace-supers@^7.10.4": 89 | version "7.10.4" 90 | resolved "https://registry.yarnpkg.com/@babel/helper-replace-supers/-/helper-replace-supers-7.10.4.tgz#d585cd9388ea06e6031e4cd44b6713cbead9e6cf" 91 | dependencies: 92 | "@babel/helper-member-expression-to-functions" "^7.10.4" 93 | "@babel/helper-optimise-call-expression" "^7.10.4" 94 | "@babel/traverse" "^7.10.4" 95 | "@babel/types" "^7.10.4" 96 | 97 | "@babel/helper-simple-access@^7.10.4": 98 | version "7.10.4" 99 | resolved "https://registry.yarnpkg.com/@babel/helper-simple-access/-/helper-simple-access-7.10.4.tgz#0f5ccda2945277a2a7a2d3a821e15395edcf3461" 100 | dependencies: 101 | "@babel/template" "^7.10.4" 102 | "@babel/types" "^7.10.4" 103 | 104 | "@babel/helper-split-export-declaration@^7.11.0": 105 | version "7.11.0" 106 | resolved "https://registry.yarnpkg.com/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.11.0.tgz#f8a491244acf6a676158ac42072911ba83ad099f" 107 | dependencies: 108 | "@babel/types" "^7.11.0" 109 | 110 | "@babel/helper-validator-identifier@^7.10.4": 111 | version "7.10.4" 112 | resolved "https://registry.yarnpkg.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.10.4.tgz#a78c7a7251e01f616512d31b10adcf52ada5e0d2" 113 | 114 | "@babel/helpers@^7.10.4": 115 | version "7.10.4" 116 | resolved "https://registry.yarnpkg.com/@babel/helpers/-/helpers-7.10.4.tgz#2abeb0d721aff7c0a97376b9e1f6f65d7a475044" 117 | dependencies: 118 | "@babel/template" "^7.10.4" 119 | "@babel/traverse" "^7.10.4" 120 | "@babel/types" "^7.10.4" 121 | 122 | "@babel/highlight@^7.10.4": 123 | version "7.10.4" 124 | resolved "https://registry.yarnpkg.com/@babel/highlight/-/highlight-7.10.4.tgz#7d1bdfd65753538fabe6c38596cdb76d9ac60143" 125 | dependencies: 126 | "@babel/helper-validator-identifier" "^7.10.4" 127 | chalk "^2.0.0" 128 | js-tokens "^4.0.0" 129 | 130 | "@babel/parser@^7.1.0", "@babel/parser@^7.10.4", "@babel/parser@^7.11.5": 131 | version "7.11.5" 132 | resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.11.5.tgz#c7ff6303df71080ec7a4f5b8c003c58f1cf51037" 133 | 134 | "@babel/plugin-syntax-async-generators@^7.8.4": 135 | version "7.8.4" 136 | resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-async-generators/-/plugin-syntax-async-generators-7.8.4.tgz#a983fb1aeb2ec3f6ed042a210f640e90e786fe0d" 137 | dependencies: 138 | "@babel/helper-plugin-utils" "^7.8.0" 139 | 140 | "@babel/plugin-syntax-bigint@^7.8.3": 141 | version "7.8.3" 142 | resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-bigint/-/plugin-syntax-bigint-7.8.3.tgz#4c9a6f669f5d0cdf1b90a1671e9a146be5300cea" 143 | dependencies: 144 | "@babel/helper-plugin-utils" "^7.8.0" 145 | 146 | "@babel/plugin-syntax-class-properties@^7.8.3": 147 | version "7.10.4" 148 | resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-class-properties/-/plugin-syntax-class-properties-7.10.4.tgz#6644e6a0baa55a61f9e3231f6c9eeb6ee46c124c" 149 | dependencies: 150 | "@babel/helper-plugin-utils" "^7.10.4" 151 | 152 | "@babel/plugin-syntax-import-meta@^7.8.3": 153 | version "7.10.4" 154 | resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-import-meta/-/plugin-syntax-import-meta-7.10.4.tgz#ee601348c370fa334d2207be158777496521fd51" 155 | dependencies: 156 | "@babel/helper-plugin-utils" "^7.10.4" 157 | 158 | "@babel/plugin-syntax-json-strings@^7.8.3": 159 | version "7.8.3" 160 | resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-json-strings/-/plugin-syntax-json-strings-7.8.3.tgz#01ca21b668cd8218c9e640cb6dd88c5412b2c96a" 161 | dependencies: 162 | "@babel/helper-plugin-utils" "^7.8.0" 163 | 164 | "@babel/plugin-syntax-logical-assignment-operators@^7.8.3": 165 | version "7.10.4" 166 | resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-logical-assignment-operators/-/plugin-syntax-logical-assignment-operators-7.10.4.tgz#ca91ef46303530448b906652bac2e9fe9941f699" 167 | dependencies: 168 | "@babel/helper-plugin-utils" "^7.10.4" 169 | 170 | "@babel/plugin-syntax-nullish-coalescing-operator@^7.8.3": 171 | version "7.8.3" 172 | resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-nullish-coalescing-operator/-/plugin-syntax-nullish-coalescing-operator-7.8.3.tgz#167ed70368886081f74b5c36c65a88c03b66d1a9" 173 | dependencies: 174 | "@babel/helper-plugin-utils" "^7.8.0" 175 | 176 | "@babel/plugin-syntax-numeric-separator@^7.8.3": 177 | version "7.10.4" 178 | resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-numeric-separator/-/plugin-syntax-numeric-separator-7.10.4.tgz#b9b070b3e33570cd9fd07ba7fa91c0dd37b9af97" 179 | dependencies: 180 | "@babel/helper-plugin-utils" "^7.10.4" 181 | 182 | "@babel/plugin-syntax-object-rest-spread@^7.8.3": 183 | version "7.8.3" 184 | resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-object-rest-spread/-/plugin-syntax-object-rest-spread-7.8.3.tgz#60e225edcbd98a640332a2e72dd3e66f1af55871" 185 | dependencies: 186 | "@babel/helper-plugin-utils" "^7.8.0" 187 | 188 | "@babel/plugin-syntax-optional-catch-binding@^7.8.3": 189 | version "7.8.3" 190 | resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-optional-catch-binding/-/plugin-syntax-optional-catch-binding-7.8.3.tgz#6111a265bcfb020eb9efd0fdfd7d26402b9ed6c1" 191 | dependencies: 192 | "@babel/helper-plugin-utils" "^7.8.0" 193 | 194 | "@babel/plugin-syntax-optional-chaining@^7.8.3": 195 | version "7.8.3" 196 | resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-optional-chaining/-/plugin-syntax-optional-chaining-7.8.3.tgz#4f69c2ab95167e0180cd5336613f8c5788f7d48a" 197 | dependencies: 198 | "@babel/helper-plugin-utils" "^7.8.0" 199 | 200 | "@babel/template@^7.10.4", "@babel/template@^7.3.3": 201 | version "7.10.4" 202 | resolved "https://registry.yarnpkg.com/@babel/template/-/template-7.10.4.tgz#3251996c4200ebc71d1a8fc405fba940f36ba278" 203 | dependencies: 204 | "@babel/code-frame" "^7.10.4" 205 | "@babel/parser" "^7.10.4" 206 | "@babel/types" "^7.10.4" 207 | 208 | "@babel/traverse@^7.1.0", "@babel/traverse@^7.10.4", "@babel/traverse@^7.11.5": 209 | version "7.11.5" 210 | resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.11.5.tgz#be777b93b518eb6d76ee2e1ea1d143daa11e61c3" 211 | dependencies: 212 | "@babel/code-frame" "^7.10.4" 213 | "@babel/generator" "^7.11.5" 214 | "@babel/helper-function-name" "^7.10.4" 215 | "@babel/helper-split-export-declaration" "^7.11.0" 216 | "@babel/parser" "^7.11.5" 217 | "@babel/types" "^7.11.5" 218 | debug "^4.1.0" 219 | globals "^11.1.0" 220 | lodash "^4.17.19" 221 | 222 | "@babel/types@^7.0.0", "@babel/types@^7.10.4", "@babel/types@^7.11.0", "@babel/types@^7.11.5", "@babel/types@^7.3.0", "@babel/types@^7.3.3": 223 | version "7.11.5" 224 | resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.11.5.tgz#d9de577d01252d77c6800cee039ee64faf75662d" 225 | dependencies: 226 | "@babel/helper-validator-identifier" "^7.10.4" 227 | lodash "^4.17.19" 228 | to-fast-properties "^2.0.0" 229 | 230 | "@bcoe/v8-coverage@^0.2.3": 231 | version "0.2.3" 232 | resolved "https://registry.yarnpkg.com/@bcoe/v8-coverage/-/v8-coverage-0.2.3.tgz#75a2e8b51cb758a7553d6804a5932d7aace75c39" 233 | 234 | "@cnakazawa/watch@^1.0.3": 235 | version "1.0.4" 236 | resolved "https://registry.yarnpkg.com/@cnakazawa/watch/-/watch-1.0.4.tgz#f864ae85004d0fcab6f50be9141c4da368d1656a" 237 | dependencies: 238 | exec-sh "^0.3.2" 239 | minimist "^1.2.0" 240 | 241 | "@eslint/eslintrc@^0.1.3": 242 | version "0.1.3" 243 | resolved "https://registry.yarnpkg.com/@eslint/eslintrc/-/eslintrc-0.1.3.tgz#7d1a2b2358552cc04834c0979bd4275362e37085" 244 | dependencies: 245 | ajv "^6.12.4" 246 | debug "^4.1.1" 247 | espree "^7.3.0" 248 | globals "^12.1.0" 249 | ignore "^4.0.6" 250 | import-fresh "^3.2.1" 251 | js-yaml "^3.13.1" 252 | lodash "^4.17.19" 253 | minimatch "^3.0.4" 254 | strip-json-comments "^3.1.1" 255 | 256 | "@istanbuljs/load-nyc-config@^1.0.0": 257 | version "1.1.0" 258 | resolved "https://registry.yarnpkg.com/@istanbuljs/load-nyc-config/-/load-nyc-config-1.1.0.tgz#fd3db1d59ecf7cf121e80650bb86712f9b55eced" 259 | dependencies: 260 | camelcase "^5.3.1" 261 | find-up "^4.1.0" 262 | get-package-type "^0.1.0" 263 | js-yaml "^3.13.1" 264 | resolve-from "^5.0.0" 265 | 266 | "@istanbuljs/schema@^0.1.2": 267 | version "0.1.2" 268 | resolved "https://registry.yarnpkg.com/@istanbuljs/schema/-/schema-0.1.2.tgz#26520bf09abe4a5644cd5414e37125a8954241dd" 269 | 270 | "@jest/console@^26.3.0": 271 | version "26.3.0" 272 | resolved "https://registry.yarnpkg.com/@jest/console/-/console-26.3.0.tgz#ed04063efb280c88ba87388b6f16427c0a85c856" 273 | dependencies: 274 | "@jest/types" "^26.3.0" 275 | "@types/node" "*" 276 | chalk "^4.0.0" 277 | jest-message-util "^26.3.0" 278 | jest-util "^26.3.0" 279 | slash "^3.0.0" 280 | 281 | "@jest/core@^26.4.2": 282 | version "26.4.2" 283 | resolved "https://registry.yarnpkg.com/@jest/core/-/core-26.4.2.tgz#85d0894f31ac29b5bab07aa86806d03dd3d33edc" 284 | dependencies: 285 | "@jest/console" "^26.3.0" 286 | "@jest/reporters" "^26.4.1" 287 | "@jest/test-result" "^26.3.0" 288 | "@jest/transform" "^26.3.0" 289 | "@jest/types" "^26.3.0" 290 | "@types/node" "*" 291 | ansi-escapes "^4.2.1" 292 | chalk "^4.0.0" 293 | exit "^0.1.2" 294 | graceful-fs "^4.2.4" 295 | jest-changed-files "^26.3.0" 296 | jest-config "^26.4.2" 297 | jest-haste-map "^26.3.0" 298 | jest-message-util "^26.3.0" 299 | jest-regex-util "^26.0.0" 300 | jest-resolve "^26.4.0" 301 | jest-resolve-dependencies "^26.4.2" 302 | jest-runner "^26.4.2" 303 | jest-runtime "^26.4.2" 304 | jest-snapshot "^26.4.2" 305 | jest-util "^26.3.0" 306 | jest-validate "^26.4.2" 307 | jest-watcher "^26.3.0" 308 | micromatch "^4.0.2" 309 | p-each-series "^2.1.0" 310 | rimraf "^3.0.0" 311 | slash "^3.0.0" 312 | strip-ansi "^6.0.0" 313 | 314 | "@jest/environment@^26.3.0": 315 | version "26.3.0" 316 | resolved "https://registry.yarnpkg.com/@jest/environment/-/environment-26.3.0.tgz#e6953ab711ae3e44754a025f838bde1a7fd236a0" 317 | dependencies: 318 | "@jest/fake-timers" "^26.3.0" 319 | "@jest/types" "^26.3.0" 320 | "@types/node" "*" 321 | jest-mock "^26.3.0" 322 | 323 | "@jest/fake-timers@^26.3.0": 324 | version "26.3.0" 325 | resolved "https://registry.yarnpkg.com/@jest/fake-timers/-/fake-timers-26.3.0.tgz#f515d4667a6770f60ae06ae050f4e001126c666a" 326 | dependencies: 327 | "@jest/types" "^26.3.0" 328 | "@sinonjs/fake-timers" "^6.0.1" 329 | "@types/node" "*" 330 | jest-message-util "^26.3.0" 331 | jest-mock "^26.3.0" 332 | jest-util "^26.3.0" 333 | 334 | "@jest/globals@^26.4.2": 335 | version "26.4.2" 336 | resolved "https://registry.yarnpkg.com/@jest/globals/-/globals-26.4.2.tgz#73c2a862ac691d998889a241beb3dc9cada40d4a" 337 | dependencies: 338 | "@jest/environment" "^26.3.0" 339 | "@jest/types" "^26.3.0" 340 | expect "^26.4.2" 341 | 342 | "@jest/reporters@^26.4.1": 343 | version "26.4.1" 344 | resolved "https://registry.yarnpkg.com/@jest/reporters/-/reporters-26.4.1.tgz#3b4d6faf28650f3965f8b97bc3d114077fb71795" 345 | dependencies: 346 | "@bcoe/v8-coverage" "^0.2.3" 347 | "@jest/console" "^26.3.0" 348 | "@jest/test-result" "^26.3.0" 349 | "@jest/transform" "^26.3.0" 350 | "@jest/types" "^26.3.0" 351 | chalk "^4.0.0" 352 | collect-v8-coverage "^1.0.0" 353 | exit "^0.1.2" 354 | glob "^7.1.2" 355 | graceful-fs "^4.2.4" 356 | istanbul-lib-coverage "^3.0.0" 357 | istanbul-lib-instrument "^4.0.3" 358 | istanbul-lib-report "^3.0.0" 359 | istanbul-lib-source-maps "^4.0.0" 360 | istanbul-reports "^3.0.2" 361 | jest-haste-map "^26.3.0" 362 | jest-resolve "^26.4.0" 363 | jest-util "^26.3.0" 364 | jest-worker "^26.3.0" 365 | slash "^3.0.0" 366 | source-map "^0.6.0" 367 | string-length "^4.0.1" 368 | terminal-link "^2.0.0" 369 | v8-to-istanbul "^5.0.1" 370 | optionalDependencies: 371 | node-notifier "^8.0.0" 372 | 373 | "@jest/source-map@^26.3.0": 374 | version "26.3.0" 375 | resolved "https://registry.yarnpkg.com/@jest/source-map/-/source-map-26.3.0.tgz#0e646e519883c14c551f7b5ae4ff5f1bfe4fc3d9" 376 | dependencies: 377 | callsites "^3.0.0" 378 | graceful-fs "^4.2.4" 379 | source-map "^0.6.0" 380 | 381 | "@jest/test-result@^26.3.0": 382 | version "26.3.0" 383 | resolved "https://registry.yarnpkg.com/@jest/test-result/-/test-result-26.3.0.tgz#46cde01fa10c0aaeb7431bf71e4a20d885bc7fdb" 384 | dependencies: 385 | "@jest/console" "^26.3.0" 386 | "@jest/types" "^26.3.0" 387 | "@types/istanbul-lib-coverage" "^2.0.0" 388 | collect-v8-coverage "^1.0.0" 389 | 390 | "@jest/test-sequencer@^26.4.2": 391 | version "26.4.2" 392 | resolved "https://registry.yarnpkg.com/@jest/test-sequencer/-/test-sequencer-26.4.2.tgz#58a3760a61eec758a2ce6080201424580d97cbba" 393 | dependencies: 394 | "@jest/test-result" "^26.3.0" 395 | graceful-fs "^4.2.4" 396 | jest-haste-map "^26.3.0" 397 | jest-runner "^26.4.2" 398 | jest-runtime "^26.4.2" 399 | 400 | "@jest/transform@^26.3.0": 401 | version "26.3.0" 402 | resolved "https://registry.yarnpkg.com/@jest/transform/-/transform-26.3.0.tgz#c393e0e01459da8a8bfc6d2a7c2ece1a13e8ba55" 403 | dependencies: 404 | "@babel/core" "^7.1.0" 405 | "@jest/types" "^26.3.0" 406 | babel-plugin-istanbul "^6.0.0" 407 | chalk "^4.0.0" 408 | convert-source-map "^1.4.0" 409 | fast-json-stable-stringify "^2.0.0" 410 | graceful-fs "^4.2.4" 411 | jest-haste-map "^26.3.0" 412 | jest-regex-util "^26.0.0" 413 | jest-util "^26.3.0" 414 | micromatch "^4.0.2" 415 | pirates "^4.0.1" 416 | slash "^3.0.0" 417 | source-map "^0.6.1" 418 | write-file-atomic "^3.0.0" 419 | 420 | "@jest/types@^25.5.0": 421 | version "25.5.0" 422 | resolved "https://registry.yarnpkg.com/@jest/types/-/types-25.5.0.tgz#4d6a4793f7b9599fc3680877b856a97dbccf2a9d" 423 | dependencies: 424 | "@types/istanbul-lib-coverage" "^2.0.0" 425 | "@types/istanbul-reports" "^1.1.1" 426 | "@types/yargs" "^15.0.0" 427 | chalk "^3.0.0" 428 | 429 | "@jest/types@^26.3.0": 430 | version "26.3.0" 431 | resolved "https://registry.yarnpkg.com/@jest/types/-/types-26.3.0.tgz#97627bf4bdb72c55346eef98e3b3f7ddc4941f71" 432 | dependencies: 433 | "@types/istanbul-lib-coverage" "^2.0.0" 434 | "@types/istanbul-reports" "^3.0.0" 435 | "@types/node" "*" 436 | "@types/yargs" "^15.0.0" 437 | chalk "^4.0.0" 438 | 439 | "@nodelib/fs.scandir@2.1.3": 440 | version "2.1.3" 441 | resolved "https://registry.yarnpkg.com/@nodelib/fs.scandir/-/fs.scandir-2.1.3.tgz#3a582bdb53804c6ba6d146579c46e52130cf4a3b" 442 | dependencies: 443 | "@nodelib/fs.stat" "2.0.3" 444 | run-parallel "^1.1.9" 445 | 446 | "@nodelib/fs.stat@2.0.3", "@nodelib/fs.stat@^2.0.2": 447 | version "2.0.3" 448 | resolved "https://registry.yarnpkg.com/@nodelib/fs.stat/-/fs.stat-2.0.3.tgz#34dc5f4cabbc720f4e60f75a747e7ecd6c175bd3" 449 | 450 | "@nodelib/fs.walk@^1.2.3": 451 | version "1.2.4" 452 | resolved "https://registry.yarnpkg.com/@nodelib/fs.walk/-/fs.walk-1.2.4.tgz#011b9202a70a6366e436ca5c065844528ab04976" 453 | dependencies: 454 | "@nodelib/fs.scandir" "2.1.3" 455 | fastq "^1.6.0" 456 | 457 | "@sinonjs/commons@^1.7.0": 458 | version "1.8.1" 459 | resolved "https://registry.yarnpkg.com/@sinonjs/commons/-/commons-1.8.1.tgz#e7df00f98a203324f6dc7cc606cad9d4a8ab2217" 460 | dependencies: 461 | type-detect "4.0.8" 462 | 463 | "@sinonjs/fake-timers@^6.0.1": 464 | version "6.0.1" 465 | resolved "https://registry.yarnpkg.com/@sinonjs/fake-timers/-/fake-timers-6.0.1.tgz#293674fccb3262ac782c7aadfdeca86b10c75c40" 466 | dependencies: 467 | "@sinonjs/commons" "^1.7.0" 468 | 469 | "@stitches/core@^0.0.2": 470 | version "0.0.2" 471 | resolved "https://registry.yarnpkg.com/@stitches/core/-/core-0.0.2.tgz#027b965cd3745ee113094279766d6e7ad777bb3e" 472 | dependencies: 473 | "@types/node" "^13.11.1" 474 | tslib "^1.11.1" 475 | 476 | "@tootallnate/once@1": 477 | version "1.1.2" 478 | resolved "https://registry.yarnpkg.com/@tootallnate/once/-/once-1.1.2.tgz#ccb91445360179a04e7fe6aff78c00ffc1eeaf82" 479 | 480 | "@types/babel__core@^7.0.0", "@types/babel__core@^7.1.7": 481 | version "7.1.9" 482 | resolved "https://registry.yarnpkg.com/@types/babel__core/-/babel__core-7.1.9.tgz#77e59d438522a6fb898fa43dc3455c6e72f3963d" 483 | dependencies: 484 | "@babel/parser" "^7.1.0" 485 | "@babel/types" "^7.0.0" 486 | "@types/babel__generator" "*" 487 | "@types/babel__template" "*" 488 | "@types/babel__traverse" "*" 489 | 490 | "@types/babel__generator@*": 491 | version "7.6.1" 492 | resolved "https://registry.yarnpkg.com/@types/babel__generator/-/babel__generator-7.6.1.tgz#4901767b397e8711aeb99df8d396d7ba7b7f0e04" 493 | dependencies: 494 | "@babel/types" "^7.0.0" 495 | 496 | "@types/babel__template@*": 497 | version "7.0.2" 498 | resolved "https://registry.yarnpkg.com/@types/babel__template/-/babel__template-7.0.2.tgz#4ff63d6b52eddac1de7b975a5223ed32ecea9307" 499 | dependencies: 500 | "@babel/parser" "^7.1.0" 501 | "@babel/types" "^7.0.0" 502 | 503 | "@types/babel__traverse@*", "@types/babel__traverse@^7.0.6": 504 | version "7.0.14" 505 | resolved "https://registry.yarnpkg.com/@types/babel__traverse/-/babel__traverse-7.0.14.tgz#e99da8c075d4fb098c774ba65dabf7dc9954bd13" 506 | dependencies: 507 | "@babel/types" "^7.3.0" 508 | 509 | "@types/color-name@^1.1.1": 510 | version "1.1.1" 511 | resolved "https://registry.yarnpkg.com/@types/color-name/-/color-name-1.1.1.tgz#1c1261bbeaa10a8055bbc5d8ab84b7b2afc846a0" 512 | 513 | "@types/graceful-fs@^4.1.2": 514 | version "4.1.3" 515 | resolved "https://registry.yarnpkg.com/@types/graceful-fs/-/graceful-fs-4.1.3.tgz#039af35fe26bec35003e8d86d2ee9c586354348f" 516 | dependencies: 517 | "@types/node" "*" 518 | 519 | "@types/istanbul-lib-coverage@*", "@types/istanbul-lib-coverage@^2.0.0", "@types/istanbul-lib-coverage@^2.0.1": 520 | version "2.0.3" 521 | resolved "https://registry.yarnpkg.com/@types/istanbul-lib-coverage/-/istanbul-lib-coverage-2.0.3.tgz#4ba8ddb720221f432e443bd5f9117fd22cfd4762" 522 | 523 | "@types/istanbul-lib-report@*": 524 | version "3.0.0" 525 | resolved "https://registry.yarnpkg.com/@types/istanbul-lib-report/-/istanbul-lib-report-3.0.0.tgz#c14c24f18ea8190c118ee7562b7ff99a36552686" 526 | dependencies: 527 | "@types/istanbul-lib-coverage" "*" 528 | 529 | "@types/istanbul-reports@^1.1.1": 530 | version "1.1.2" 531 | resolved "https://registry.yarnpkg.com/@types/istanbul-reports/-/istanbul-reports-1.1.2.tgz#e875cc689e47bce549ec81f3df5e6f6f11cfaeb2" 532 | dependencies: 533 | "@types/istanbul-lib-coverage" "*" 534 | "@types/istanbul-lib-report" "*" 535 | 536 | "@types/istanbul-reports@^3.0.0": 537 | version "3.0.0" 538 | resolved "https://registry.yarnpkg.com/@types/istanbul-reports/-/istanbul-reports-3.0.0.tgz#508b13aa344fa4976234e75dddcc34925737d821" 539 | dependencies: 540 | "@types/istanbul-lib-report" "*" 541 | 542 | "@types/jest@26.x": 543 | version "26.0.13" 544 | resolved "https://registry.yarnpkg.com/@types/jest/-/jest-26.0.13.tgz#5a7b9d5312f5dd521a38329c38ee9d3802a0b85e" 545 | dependencies: 546 | jest-diff "^25.2.1" 547 | pretty-format "^25.2.1" 548 | 549 | "@types/json-schema@^7.0.3": 550 | version "7.0.6" 551 | resolved "https://registry.yarnpkg.com/@types/json-schema/-/json-schema-7.0.6.tgz#f4c7ec43e81b319a9815115031709f26987891f0" 552 | 553 | "@types/json5@^0.0.29": 554 | version "0.0.29" 555 | resolved "https://registry.yarnpkg.com/@types/json5/-/json5-0.0.29.tgz#ee28707ae94e11d2b827bcbe5270bcea7f3e71ee" 556 | 557 | "@types/minimatch@^3.0.3": 558 | version "3.0.3" 559 | resolved "https://registry.yarnpkg.com/@types/minimatch/-/minimatch-3.0.3.tgz#3dca0e3f33b200fc7d1139c0cd96c1268cadfd9d" 560 | 561 | "@types/node@*": 562 | version "14.6.4" 563 | resolved "https://registry.yarnpkg.com/@types/node/-/node-14.6.4.tgz#a145cc0bb14ef9c4777361b7bbafa5cf8e3acb5a" 564 | 565 | "@types/node@^13.11.1": 566 | version "13.13.16" 567 | resolved "https://registry.yarnpkg.com/@types/node/-/node-13.13.16.tgz#66f2177047b61131eaac18c47eb25d6f1317070a" 568 | 569 | "@types/normalize-package-data@^2.4.0": 570 | version "2.4.0" 571 | resolved "https://registry.yarnpkg.com/@types/normalize-package-data/-/normalize-package-data-2.4.0.tgz#e486d0d97396d79beedd0a6e33f4534ff6b4973e" 572 | 573 | "@types/parse-json@^4.0.0": 574 | version "4.0.0" 575 | resolved "https://registry.yarnpkg.com/@types/parse-json/-/parse-json-4.0.0.tgz#2f8bb441434d163b35fb8ffdccd7138927ffb8c0" 576 | 577 | "@types/prettier@^2.0.0": 578 | version "2.1.0" 579 | resolved "https://registry.yarnpkg.com/@types/prettier/-/prettier-2.1.0.tgz#5f96562c1075ee715a5b138f0b7f591c1f40f6b8" 580 | 581 | "@types/stack-utils@^1.0.1": 582 | version "1.0.1" 583 | resolved "https://registry.yarnpkg.com/@types/stack-utils/-/stack-utils-1.0.1.tgz#0a851d3bd96498fa25c33ab7278ed3bd65f06c3e" 584 | 585 | "@types/yargs-parser@*": 586 | version "15.0.0" 587 | resolved "https://registry.yarnpkg.com/@types/yargs-parser/-/yargs-parser-15.0.0.tgz#cb3f9f741869e20cce330ffbeb9271590483882d" 588 | 589 | "@types/yargs@^15.0.0": 590 | version "15.0.5" 591 | resolved "https://registry.yarnpkg.com/@types/yargs/-/yargs-15.0.5.tgz#947e9a6561483bdee9adffc983e91a6902af8b79" 592 | dependencies: 593 | "@types/yargs-parser" "*" 594 | 595 | "@typescript-eslint/eslint-plugin@^4.1.1": 596 | version "4.1.1" 597 | resolved "https://registry.yarnpkg.com/@typescript-eslint/eslint-plugin/-/eslint-plugin-4.1.1.tgz#78d5b18e259b13c2f4ec41dd9105af269a161a75" 598 | dependencies: 599 | "@typescript-eslint/experimental-utils" "4.1.1" 600 | "@typescript-eslint/scope-manager" "4.1.1" 601 | debug "^4.1.1" 602 | functional-red-black-tree "^1.0.1" 603 | regexpp "^3.0.0" 604 | semver "^7.3.2" 605 | tsutils "^3.17.1" 606 | 607 | "@typescript-eslint/experimental-utils@4.1.1": 608 | version "4.1.1" 609 | resolved "https://registry.yarnpkg.com/@typescript-eslint/experimental-utils/-/experimental-utils-4.1.1.tgz#52ff4e37c93113eb96385a4e6d075abece1ea72d" 610 | dependencies: 611 | "@types/json-schema" "^7.0.3" 612 | "@typescript-eslint/scope-manager" "4.1.1" 613 | "@typescript-eslint/types" "4.1.1" 614 | "@typescript-eslint/typescript-estree" "4.1.1" 615 | eslint-scope "^5.0.0" 616 | eslint-utils "^2.0.0" 617 | 618 | "@typescript-eslint/parser@^4.1.1": 619 | version "4.1.1" 620 | resolved "https://registry.yarnpkg.com/@typescript-eslint/parser/-/parser-4.1.1.tgz#324b4b35e314075adbc92bd8330cf3ef0c88cf3e" 621 | dependencies: 622 | "@typescript-eslint/scope-manager" "4.1.1" 623 | "@typescript-eslint/types" "4.1.1" 624 | "@typescript-eslint/typescript-estree" "4.1.1" 625 | debug "^4.1.1" 626 | 627 | "@typescript-eslint/scope-manager@4.1.1": 628 | version "4.1.1" 629 | resolved "https://registry.yarnpkg.com/@typescript-eslint/scope-manager/-/scope-manager-4.1.1.tgz#bdb8526e82435f32b4ccd9dd4cec01af97b48850" 630 | dependencies: 631 | "@typescript-eslint/types" "4.1.1" 632 | "@typescript-eslint/visitor-keys" "4.1.1" 633 | 634 | "@typescript-eslint/types@4.1.1": 635 | version "4.1.1" 636 | resolved "https://registry.yarnpkg.com/@typescript-eslint/types/-/types-4.1.1.tgz#57500c4a86b28cb47094c1a62f1177ea279a09cb" 637 | 638 | "@typescript-eslint/typescript-estree@4.1.1": 639 | version "4.1.1" 640 | resolved "https://registry.yarnpkg.com/@typescript-eslint/typescript-estree/-/typescript-estree-4.1.1.tgz#2015a84d71303ecdb6f46efd807ac19a51aab490" 641 | dependencies: 642 | "@typescript-eslint/types" "4.1.1" 643 | "@typescript-eslint/visitor-keys" "4.1.1" 644 | debug "^4.1.1" 645 | globby "^11.0.1" 646 | is-glob "^4.0.1" 647 | lodash "^4.17.15" 648 | semver "^7.3.2" 649 | tsutils "^3.17.1" 650 | 651 | "@typescript-eslint/visitor-keys@4.1.1": 652 | version "4.1.1" 653 | resolved "https://registry.yarnpkg.com/@typescript-eslint/visitor-keys/-/visitor-keys-4.1.1.tgz#bb05664bf4bea28dc120d1da94f3027d42ab0f6f" 654 | dependencies: 655 | "@typescript-eslint/types" "4.1.1" 656 | eslint-visitor-keys "^2.0.0" 657 | 658 | abab@^2.0.3, abab@^2.0.5: 659 | version "2.0.6" 660 | resolved "https://registry.yarnpkg.com/abab/-/abab-2.0.6.tgz#41b80f2c871d19686216b82309231cfd3cb3d291" 661 | 662 | acorn-globals@^6.0.0: 663 | version "6.0.0" 664 | resolved "https://registry.yarnpkg.com/acorn-globals/-/acorn-globals-6.0.0.tgz#46cdd39f0f8ff08a876619b55f5ac8a6dc770b45" 665 | dependencies: 666 | acorn "^7.1.1" 667 | acorn-walk "^7.1.1" 668 | 669 | acorn-jsx@^5.2.0: 670 | version "5.3.1" 671 | resolved "https://registry.yarnpkg.com/acorn-jsx/-/acorn-jsx-5.3.1.tgz#fc8661e11b7ac1539c47dbfea2e72b3af34d267b" 672 | 673 | acorn-walk@^7.1.1: 674 | version "7.2.0" 675 | resolved "https://registry.yarnpkg.com/acorn-walk/-/acorn-walk-7.2.0.tgz#0de889a601203909b0fbe07b8938dc21d2e967bc" 676 | 677 | acorn@^7.1.1, acorn@^7.4.0: 678 | version "7.4.1" 679 | resolved "https://registry.yarnpkg.com/acorn/-/acorn-7.4.1.tgz#feaed255973d2e77555b83dbc08851a6c63520fa" 680 | 681 | acorn@^8.2.4: 682 | version "8.7.1" 683 | resolved "https://registry.yarnpkg.com/acorn/-/acorn-8.7.1.tgz#0197122c843d1bf6d0a5e83220a788f278f63c30" 684 | 685 | agent-base@6: 686 | version "6.0.2" 687 | resolved "https://registry.yarnpkg.com/agent-base/-/agent-base-6.0.2.tgz#49fff58577cfee3f37176feab4c22e00f86d7f77" 688 | dependencies: 689 | debug "4" 690 | 691 | ajv@^6.10.0, ajv@^6.10.2, ajv@^6.12.4: 692 | version "6.12.5" 693 | resolved "https://registry.yarnpkg.com/ajv/-/ajv-6.12.5.tgz#19b0e8bae8f476e5ba666300387775fb1a00a4da" 694 | dependencies: 695 | fast-deep-equal "^3.1.1" 696 | fast-json-stable-stringify "^2.0.0" 697 | json-schema-traverse "^0.4.1" 698 | uri-js "^4.2.2" 699 | 700 | ansi-colors@^4.1.1: 701 | version "4.1.1" 702 | resolved "https://registry.yarnpkg.com/ansi-colors/-/ansi-colors-4.1.1.tgz#cbb9ae256bf750af1eab344f229aa27fe94ba348" 703 | 704 | ansi-escapes@^4.2.1: 705 | version "4.3.1" 706 | resolved "https://registry.yarnpkg.com/ansi-escapes/-/ansi-escapes-4.3.1.tgz#a5c47cc43181f1f38ffd7076837700d395522a61" 707 | dependencies: 708 | type-fest "^0.11.0" 709 | 710 | ansi-regex@^4.1.0: 711 | version "4.1.1" 712 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-4.1.1.tgz#164daac87ab2d6f6db3a29875e2d1766582dabed" 713 | 714 | ansi-regex@^5.0.0: 715 | version "5.0.0" 716 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-5.0.0.tgz#388539f55179bf39339c81af30a654d69f87cb75" 717 | 718 | ansi-styles@^3.2.0, ansi-styles@^3.2.1: 719 | version "3.2.1" 720 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-3.2.1.tgz#41fbb20243e50b12be0f04b8dedbf07520ce841d" 721 | dependencies: 722 | color-convert "^1.9.0" 723 | 724 | ansi-styles@^4.0.0, ansi-styles@^4.1.0: 725 | version "4.2.1" 726 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-4.2.1.tgz#90ae75c424d008d2624c5bf29ead3177ebfcf359" 727 | dependencies: 728 | "@types/color-name" "^1.1.1" 729 | color-convert "^2.0.1" 730 | 731 | anymatch@^2.0.0: 732 | version "2.0.0" 733 | resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-2.0.0.tgz#bcb24b4f37934d9aa7ac17b4adaf89e7c76ef2eb" 734 | dependencies: 735 | micromatch "^3.1.4" 736 | normalize-path "^2.1.1" 737 | 738 | anymatch@^3.0.3: 739 | version "3.1.1" 740 | resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-3.1.1.tgz#c55ecf02185e2469259399310c173ce31233b142" 741 | dependencies: 742 | normalize-path "^3.0.0" 743 | picomatch "^2.0.4" 744 | 745 | argparse@^1.0.7: 746 | version "1.0.10" 747 | resolved "https://registry.yarnpkg.com/argparse/-/argparse-1.0.10.tgz#bcd6791ea5ae09725e17e5ad988134cd40b3d911" 748 | dependencies: 749 | sprintf-js "~1.0.2" 750 | 751 | arr-diff@^4.0.0: 752 | version "4.0.0" 753 | resolved "https://registry.yarnpkg.com/arr-diff/-/arr-diff-4.0.0.tgz#d6461074febfec71e7e15235761a329a5dc7c520" 754 | 755 | arr-flatten@^1.1.0: 756 | version "1.1.0" 757 | resolved "https://registry.yarnpkg.com/arr-flatten/-/arr-flatten-1.1.0.tgz#36048bbff4e7b47e136644316c99669ea5ae91f1" 758 | 759 | arr-union@^3.1.0: 760 | version "3.1.0" 761 | resolved "https://registry.yarnpkg.com/arr-union/-/arr-union-3.1.0.tgz#e39b09aea9def866a8f206e288af63919bae39c4" 762 | 763 | array-differ@^3.0.0: 764 | version "3.0.0" 765 | resolved "https://registry.yarnpkg.com/array-differ/-/array-differ-3.0.0.tgz#3cbb3d0f316810eafcc47624734237d6aee4ae6b" 766 | 767 | array-includes@^3.1.1: 768 | version "3.1.1" 769 | resolved "https://registry.yarnpkg.com/array-includes/-/array-includes-3.1.1.tgz#cdd67e6852bdf9c1215460786732255ed2459348" 770 | dependencies: 771 | define-properties "^1.1.3" 772 | es-abstract "^1.17.0" 773 | is-string "^1.0.5" 774 | 775 | array-union@^2.1.0: 776 | version "2.1.0" 777 | resolved "https://registry.yarnpkg.com/array-union/-/array-union-2.1.0.tgz#b798420adbeb1de828d84acd8a2e23d3efe85e8d" 778 | 779 | array-unique@^0.3.2: 780 | version "0.3.2" 781 | resolved "https://registry.yarnpkg.com/array-unique/-/array-unique-0.3.2.tgz#a894b75d4bc4f6cd679ef3244a9fd8f46ae2d428" 782 | 783 | array.prototype.flat@^1.2.3: 784 | version "1.2.3" 785 | resolved "https://registry.yarnpkg.com/array.prototype.flat/-/array.prototype.flat-1.2.3.tgz#0de82b426b0318dbfdb940089e38b043d37f6c7b" 786 | dependencies: 787 | define-properties "^1.1.3" 788 | es-abstract "^1.17.0-next.1" 789 | 790 | arrify@^2.0.1: 791 | version "2.0.1" 792 | resolved "https://registry.yarnpkg.com/arrify/-/arrify-2.0.1.tgz#c9655e9331e0abcd588d2a7cad7e9956f66701fa" 793 | 794 | assign-symbols@^1.0.0: 795 | version "1.0.0" 796 | resolved "https://registry.yarnpkg.com/assign-symbols/-/assign-symbols-1.0.0.tgz#59667f41fadd4f20ccbc2bb96b8d4f7f78ec0367" 797 | 798 | astral-regex@^1.0.0: 799 | version "1.0.0" 800 | resolved "https://registry.yarnpkg.com/astral-regex/-/astral-regex-1.0.0.tgz#6c8c3fb827dd43ee3918f27b82782ab7658a6fd9" 801 | 802 | asynckit@^0.4.0: 803 | version "0.4.0" 804 | resolved "https://registry.yarnpkg.com/asynckit/-/asynckit-0.4.0.tgz#c79ed97f7f34cb8f2ba1bc9790bcc366474b4b79" 805 | 806 | atob@^2.1.2: 807 | version "2.1.2" 808 | resolved "https://registry.yarnpkg.com/atob/-/atob-2.1.2.tgz#6d9517eb9e030d2436666651e86bd9f6f13533c9" 809 | 810 | babel-jest@^26.3.0: 811 | version "26.3.0" 812 | resolved "https://registry.yarnpkg.com/babel-jest/-/babel-jest-26.3.0.tgz#10d0ca4b529ca3e7d1417855ef7d7bd6fc0c3463" 813 | dependencies: 814 | "@jest/transform" "^26.3.0" 815 | "@jest/types" "^26.3.0" 816 | "@types/babel__core" "^7.1.7" 817 | babel-plugin-istanbul "^6.0.0" 818 | babel-preset-jest "^26.3.0" 819 | chalk "^4.0.0" 820 | graceful-fs "^4.2.4" 821 | slash "^3.0.0" 822 | 823 | babel-plugin-istanbul@^6.0.0: 824 | version "6.0.0" 825 | resolved "https://registry.yarnpkg.com/babel-plugin-istanbul/-/babel-plugin-istanbul-6.0.0.tgz#e159ccdc9af95e0b570c75b4573b7c34d671d765" 826 | dependencies: 827 | "@babel/helper-plugin-utils" "^7.0.0" 828 | "@istanbuljs/load-nyc-config" "^1.0.0" 829 | "@istanbuljs/schema" "^0.1.2" 830 | istanbul-lib-instrument "^4.0.0" 831 | test-exclude "^6.0.0" 832 | 833 | babel-plugin-jest-hoist@^26.2.0: 834 | version "26.2.0" 835 | resolved "https://registry.yarnpkg.com/babel-plugin-jest-hoist/-/babel-plugin-jest-hoist-26.2.0.tgz#bdd0011df0d3d513e5e95f76bd53b51147aca2dd" 836 | dependencies: 837 | "@babel/template" "^7.3.3" 838 | "@babel/types" "^7.3.3" 839 | "@types/babel__core" "^7.0.0" 840 | "@types/babel__traverse" "^7.0.6" 841 | 842 | babel-preset-current-node-syntax@^0.1.3: 843 | version "0.1.3" 844 | resolved "https://registry.yarnpkg.com/babel-preset-current-node-syntax/-/babel-preset-current-node-syntax-0.1.3.tgz#b4b547acddbf963cba555ba9f9cbbb70bfd044da" 845 | dependencies: 846 | "@babel/plugin-syntax-async-generators" "^7.8.4" 847 | "@babel/plugin-syntax-bigint" "^7.8.3" 848 | "@babel/plugin-syntax-class-properties" "^7.8.3" 849 | "@babel/plugin-syntax-import-meta" "^7.8.3" 850 | "@babel/plugin-syntax-json-strings" "^7.8.3" 851 | "@babel/plugin-syntax-logical-assignment-operators" "^7.8.3" 852 | "@babel/plugin-syntax-nullish-coalescing-operator" "^7.8.3" 853 | "@babel/plugin-syntax-numeric-separator" "^7.8.3" 854 | "@babel/plugin-syntax-object-rest-spread" "^7.8.3" 855 | "@babel/plugin-syntax-optional-catch-binding" "^7.8.3" 856 | "@babel/plugin-syntax-optional-chaining" "^7.8.3" 857 | 858 | babel-preset-jest@^26.3.0: 859 | version "26.3.0" 860 | resolved "https://registry.yarnpkg.com/babel-preset-jest/-/babel-preset-jest-26.3.0.tgz#ed6344506225c065fd8a0b53e191986f74890776" 861 | dependencies: 862 | babel-plugin-jest-hoist "^26.2.0" 863 | babel-preset-current-node-syntax "^0.1.3" 864 | 865 | balanced-match@^1.0.0: 866 | version "1.0.2" 867 | resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.2.tgz#e83e3a7e3f300b34cb9d87f615fa0cbf357690ee" 868 | 869 | base@^0.11.1: 870 | version "0.11.2" 871 | resolved "https://registry.yarnpkg.com/base/-/base-0.11.2.tgz#7bde5ced145b6d551a90db87f83c558b4eb48a8f" 872 | dependencies: 873 | cache-base "^1.0.1" 874 | class-utils "^0.3.5" 875 | component-emitter "^1.2.1" 876 | define-property "^1.0.0" 877 | isobject "^3.0.1" 878 | mixin-deep "^1.2.0" 879 | pascalcase "^0.1.1" 880 | 881 | brace-expansion@^1.1.7: 882 | version "1.1.11" 883 | resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.11.tgz#3c7fcbf529d87226f3d2f52b966ff5271eb441dd" 884 | dependencies: 885 | balanced-match "^1.0.0" 886 | concat-map "0.0.1" 887 | 888 | braces@^2.3.1: 889 | version "2.3.2" 890 | resolved "https://registry.yarnpkg.com/braces/-/braces-2.3.2.tgz#5979fd3f14cd531565e5fa2df1abfff1dfaee729" 891 | dependencies: 892 | arr-flatten "^1.1.0" 893 | array-unique "^0.3.2" 894 | extend-shallow "^2.0.1" 895 | fill-range "^4.0.0" 896 | isobject "^3.0.1" 897 | repeat-element "^1.1.2" 898 | snapdragon "^0.8.1" 899 | snapdragon-node "^2.0.1" 900 | split-string "^3.0.2" 901 | to-regex "^3.0.1" 902 | 903 | braces@^3.0.1: 904 | version "3.0.2" 905 | resolved "https://registry.yarnpkg.com/braces/-/braces-3.0.2.tgz#3454e1a462ee8d599e236df336cd9ea4f8afe107" 906 | dependencies: 907 | fill-range "^7.0.1" 908 | 909 | browser-process-hrtime@^1.0.0: 910 | version "1.0.0" 911 | resolved "https://registry.yarnpkg.com/browser-process-hrtime/-/browser-process-hrtime-1.0.0.tgz#3c9b4b7d782c8121e56f10106d84c0d0ffc94626" 912 | 913 | bs-logger@0.x: 914 | version "0.2.6" 915 | resolved "https://registry.yarnpkg.com/bs-logger/-/bs-logger-0.2.6.tgz#eb7d365307a72cf974cc6cda76b68354ad336bd8" 916 | dependencies: 917 | fast-json-stable-stringify "2.x" 918 | 919 | bser@2.1.1: 920 | version "2.1.1" 921 | resolved "https://registry.yarnpkg.com/bser/-/bser-2.1.1.tgz#e6787da20ece9d07998533cfd9de6f5c38f4bc05" 922 | dependencies: 923 | node-int64 "^0.4.0" 924 | 925 | buffer-from@1.x, buffer-from@^1.0.0: 926 | version "1.1.1" 927 | resolved "https://registry.yarnpkg.com/buffer-from/-/buffer-from-1.1.1.tgz#32713bc028f75c02fdb710d7c7bcec1f2c6070ef" 928 | 929 | cache-base@^1.0.1: 930 | version "1.0.1" 931 | resolved "https://registry.yarnpkg.com/cache-base/-/cache-base-1.0.1.tgz#0a7f46416831c8b662ee36fe4e7c59d76f666ab2" 932 | dependencies: 933 | collection-visit "^1.0.0" 934 | component-emitter "^1.2.1" 935 | get-value "^2.0.6" 936 | has-value "^1.0.0" 937 | isobject "^3.0.1" 938 | set-value "^2.0.0" 939 | to-object-path "^0.3.0" 940 | union-value "^1.0.0" 941 | unset-value "^1.0.0" 942 | 943 | callsites@^3.0.0: 944 | version "3.1.0" 945 | resolved "https://registry.yarnpkg.com/callsites/-/callsites-3.1.0.tgz#b3630abd8943432f54b3f0519238e33cd7df2f73" 946 | 947 | camelcase@^5.0.0, camelcase@^5.3.1: 948 | version "5.3.1" 949 | resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-5.3.1.tgz#e3c9b31569e106811df242f715725a1f4c494320" 950 | 951 | camelcase@^6.0.0: 952 | version "6.0.0" 953 | resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-6.0.0.tgz#5259f7c30e35e278f1bdc2a4d91230b37cad981e" 954 | 955 | capture-exit@^2.0.0: 956 | version "2.0.0" 957 | resolved "https://registry.yarnpkg.com/capture-exit/-/capture-exit-2.0.0.tgz#fb953bfaebeb781f62898239dabb426d08a509a4" 958 | dependencies: 959 | rsvp "^4.8.4" 960 | 961 | chalk@^2.0.0: 962 | version "2.4.2" 963 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-2.4.2.tgz#cd42541677a54333cf541a49108c1432b44c9424" 964 | dependencies: 965 | ansi-styles "^3.2.1" 966 | escape-string-regexp "^1.0.5" 967 | supports-color "^5.3.0" 968 | 969 | chalk@^3.0.0: 970 | version "3.0.0" 971 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-3.0.0.tgz#3f73c2bf526591f574cc492c51e2456349f844e4" 972 | dependencies: 973 | ansi-styles "^4.1.0" 974 | supports-color "^7.1.0" 975 | 976 | chalk@^4.0.0: 977 | version "4.1.0" 978 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-4.1.0.tgz#4e14870a618d9e2edd97dd8345fd9d9dc315646a" 979 | dependencies: 980 | ansi-styles "^4.1.0" 981 | supports-color "^7.1.0" 982 | 983 | char-regex@^1.0.2: 984 | version "1.0.2" 985 | resolved "https://registry.yarnpkg.com/char-regex/-/char-regex-1.0.2.tgz#d744358226217f981ed58f479b1d6bcc29545dcf" 986 | 987 | ci-info@^2.0.0: 988 | version "2.0.0" 989 | resolved "https://registry.yarnpkg.com/ci-info/-/ci-info-2.0.0.tgz#67a9e964be31a51e15e5010d58e6f12834002f46" 990 | 991 | class-utils@^0.3.5: 992 | version "0.3.6" 993 | resolved "https://registry.yarnpkg.com/class-utils/-/class-utils-0.3.6.tgz#f93369ae8b9a7ce02fd41faad0ca83033190c463" 994 | dependencies: 995 | arr-union "^3.1.0" 996 | define-property "^0.2.5" 997 | isobject "^3.0.0" 998 | static-extend "^0.1.1" 999 | 1000 | cliui@^6.0.0: 1001 | version "6.0.0" 1002 | resolved "https://registry.yarnpkg.com/cliui/-/cliui-6.0.0.tgz#511d702c0c4e41ca156d7d0e96021f23e13225b1" 1003 | dependencies: 1004 | string-width "^4.2.0" 1005 | strip-ansi "^6.0.0" 1006 | wrap-ansi "^6.2.0" 1007 | 1008 | co@^4.6.0: 1009 | version "4.6.0" 1010 | resolved "https://registry.yarnpkg.com/co/-/co-4.6.0.tgz#6ea6bdf3d853ae54ccb8e47bfa0bf3f9031fb184" 1011 | 1012 | collect-v8-coverage@^1.0.0: 1013 | version "1.0.1" 1014 | resolved "https://registry.yarnpkg.com/collect-v8-coverage/-/collect-v8-coverage-1.0.1.tgz#cc2c8e94fc18bbdffe64d6534570c8a673b27f59" 1015 | 1016 | collection-visit@^1.0.0: 1017 | version "1.0.0" 1018 | resolved "https://registry.yarnpkg.com/collection-visit/-/collection-visit-1.0.0.tgz#4bc0373c164bc3291b4d368c829cf1a80a59dca0" 1019 | dependencies: 1020 | map-visit "^1.0.0" 1021 | object-visit "^1.0.0" 1022 | 1023 | color-convert@^1.9.0: 1024 | version "1.9.3" 1025 | resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-1.9.3.tgz#bb71850690e1f136567de629d2d5471deda4c1e8" 1026 | dependencies: 1027 | color-name "1.1.3" 1028 | 1029 | color-convert@^2.0.1: 1030 | version "2.0.1" 1031 | resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-2.0.1.tgz#72d3a68d598c9bdb3af2ad1e84f21d896abd4de3" 1032 | dependencies: 1033 | color-name "~1.1.4" 1034 | 1035 | color-name@1.1.3: 1036 | version "1.1.3" 1037 | resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.3.tgz#a7d0558bd89c42f795dd42328f740831ca53bc25" 1038 | 1039 | color-name@~1.1.4: 1040 | version "1.1.4" 1041 | resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.4.tgz#c2a09a87acbde69543de6f63fa3995c826c536a2" 1042 | 1043 | combined-stream@^1.0.8: 1044 | version "1.0.8" 1045 | resolved "https://registry.yarnpkg.com/combined-stream/-/combined-stream-1.0.8.tgz#c3d45a8b34fd730631a110a8a2520682b31d5a7f" 1046 | dependencies: 1047 | delayed-stream "~1.0.0" 1048 | 1049 | compare-versions@^3.6.0: 1050 | version "3.6.0" 1051 | resolved "https://registry.yarnpkg.com/compare-versions/-/compare-versions-3.6.0.tgz#1a5689913685e5a87637b8d3ffca75514ec41d62" 1052 | 1053 | component-emitter@^1.2.1: 1054 | version "1.3.0" 1055 | resolved "https://registry.yarnpkg.com/component-emitter/-/component-emitter-1.3.0.tgz#16e4070fba8ae29b679f2215853ee181ab2eabc0" 1056 | 1057 | concat-map@0.0.1: 1058 | version "0.0.1" 1059 | resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b" 1060 | 1061 | contains-path@^0.1.0: 1062 | version "0.1.0" 1063 | resolved "https://registry.yarnpkg.com/contains-path/-/contains-path-0.1.0.tgz#fe8cf184ff6670b6baef01a9d4861a5cbec4120a" 1064 | 1065 | convert-source-map@^1.4.0, convert-source-map@^1.6.0, convert-source-map@^1.7.0: 1066 | version "1.7.0" 1067 | resolved "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-1.7.0.tgz#17a2cb882d7f77d3490585e2ce6c524424a3a442" 1068 | dependencies: 1069 | safe-buffer "~5.1.1" 1070 | 1071 | copy-descriptor@^0.1.0: 1072 | version "0.1.1" 1073 | resolved "https://registry.yarnpkg.com/copy-descriptor/-/copy-descriptor-0.1.1.tgz#676f6eb3c39997c2ee1ac3a924fd6124748f578d" 1074 | 1075 | cosmiconfig@^7.0.0: 1076 | version "7.0.0" 1077 | resolved "https://registry.yarnpkg.com/cosmiconfig/-/cosmiconfig-7.0.0.tgz#ef9b44d773959cae63ddecd122de23853b60f8d3" 1078 | dependencies: 1079 | "@types/parse-json" "^4.0.0" 1080 | import-fresh "^3.2.1" 1081 | parse-json "^5.0.0" 1082 | path-type "^4.0.0" 1083 | yaml "^1.10.0" 1084 | 1085 | cross-spawn@^6.0.0: 1086 | version "6.0.5" 1087 | resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-6.0.5.tgz#4a5ec7c64dfae22c3a14124dbacdee846d80cbc4" 1088 | dependencies: 1089 | nice-try "^1.0.4" 1090 | path-key "^2.0.1" 1091 | semver "^5.5.0" 1092 | shebang-command "^1.2.0" 1093 | which "^1.2.9" 1094 | 1095 | cross-spawn@^7.0.0, cross-spawn@^7.0.2: 1096 | version "7.0.3" 1097 | resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-7.0.3.tgz#f73a85b9d5d41d045551c177e2882d4ac85728a6" 1098 | dependencies: 1099 | path-key "^3.1.0" 1100 | shebang-command "^2.0.0" 1101 | which "^2.0.1" 1102 | 1103 | cssom@^0.4.4: 1104 | version "0.4.4" 1105 | resolved "https://registry.yarnpkg.com/cssom/-/cssom-0.4.4.tgz#5a66cf93d2d0b661d80bf6a44fb65f5c2e4e0a10" 1106 | 1107 | cssom@~0.3.6: 1108 | version "0.3.8" 1109 | resolved "https://registry.yarnpkg.com/cssom/-/cssom-0.3.8.tgz#9f1276f5b2b463f2114d3f2c75250af8c1a36f4a" 1110 | 1111 | cssstyle@^2.3.0: 1112 | version "2.3.0" 1113 | resolved "https://registry.yarnpkg.com/cssstyle/-/cssstyle-2.3.0.tgz#ff665a0ddbdc31864b09647f34163443d90b0852" 1114 | dependencies: 1115 | cssom "~0.3.6" 1116 | 1117 | data-urls@^2.0.0: 1118 | version "2.0.0" 1119 | resolved "https://registry.yarnpkg.com/data-urls/-/data-urls-2.0.0.tgz#156485a72963a970f5d5821aaf642bef2bf2db9b" 1120 | dependencies: 1121 | abab "^2.0.3" 1122 | whatwg-mimetype "^2.3.0" 1123 | whatwg-url "^8.0.0" 1124 | 1125 | debug@4: 1126 | version "4.3.4" 1127 | resolved "https://registry.yarnpkg.com/debug/-/debug-4.3.4.tgz#1319f6579357f2338d3337d2cdd4914bb5dcc865" 1128 | dependencies: 1129 | ms "2.1.2" 1130 | 1131 | debug@^2.2.0, debug@^2.3.3, debug@^2.6.9: 1132 | version "2.6.9" 1133 | resolved "https://registry.yarnpkg.com/debug/-/debug-2.6.9.tgz#5d128515df134ff327e90a4c93f4e077a536341f" 1134 | dependencies: 1135 | ms "2.0.0" 1136 | 1137 | debug@^4.0.1, debug@^4.1.0, debug@^4.1.1: 1138 | version "4.1.1" 1139 | resolved "https://registry.yarnpkg.com/debug/-/debug-4.1.1.tgz#3b72260255109c6b589cee050f1d516139664791" 1140 | dependencies: 1141 | ms "^2.1.1" 1142 | 1143 | decamelize@^1.2.0: 1144 | version "1.2.0" 1145 | resolved "https://registry.yarnpkg.com/decamelize/-/decamelize-1.2.0.tgz#f6534d15148269b20352e7bee26f501f9a191290" 1146 | 1147 | decimal.js@^10.2.1: 1148 | version "10.3.1" 1149 | resolved "https://registry.yarnpkg.com/decimal.js/-/decimal.js-10.3.1.tgz#d8c3a444a9c6774ba60ca6ad7261c3a94fd5e783" 1150 | 1151 | decode-uri-component@^0.2.0: 1152 | version "0.2.2" 1153 | resolved "https://registry.yarnpkg.com/decode-uri-component/-/decode-uri-component-0.2.2.tgz#e69dbe25d37941171dd540e024c444cd5188e1e9" 1154 | 1155 | deep-is@^0.1.3: 1156 | version "0.1.3" 1157 | resolved "https://registry.yarnpkg.com/deep-is/-/deep-is-0.1.3.tgz#b369d6fb5dbc13eecf524f91b070feedc357cf34" 1158 | 1159 | deep-is@~0.1.3: 1160 | version "0.1.4" 1161 | resolved "https://registry.yarnpkg.com/deep-is/-/deep-is-0.1.4.tgz#a6f2dce612fadd2ef1f519b73551f17e85199831" 1162 | 1163 | deepmerge@^4.2.2: 1164 | version "4.2.2" 1165 | resolved "https://registry.yarnpkg.com/deepmerge/-/deepmerge-4.2.2.tgz#44d2ea3679b8f4d4ffba33f03d865fc1e7bf4955" 1166 | 1167 | define-properties@^1.1.3: 1168 | version "1.1.3" 1169 | resolved "https://registry.yarnpkg.com/define-properties/-/define-properties-1.1.3.tgz#cf88da6cbee26fe6db7094f61d870cbd84cee9f1" 1170 | dependencies: 1171 | object-keys "^1.0.12" 1172 | 1173 | define-property@^0.2.5: 1174 | version "0.2.5" 1175 | resolved "https://registry.yarnpkg.com/define-property/-/define-property-0.2.5.tgz#c35b1ef918ec3c990f9a5bc57be04aacec5c8116" 1176 | dependencies: 1177 | is-descriptor "^0.1.0" 1178 | 1179 | define-property@^1.0.0: 1180 | version "1.0.0" 1181 | resolved "https://registry.yarnpkg.com/define-property/-/define-property-1.0.0.tgz#769ebaaf3f4a63aad3af9e8d304c9bbe79bfb0e6" 1182 | dependencies: 1183 | is-descriptor "^1.0.0" 1184 | 1185 | define-property@^2.0.2: 1186 | version "2.0.2" 1187 | resolved "https://registry.yarnpkg.com/define-property/-/define-property-2.0.2.tgz#d459689e8d654ba77e02a817f8710d702cb16e9d" 1188 | dependencies: 1189 | is-descriptor "^1.0.2" 1190 | isobject "^3.0.1" 1191 | 1192 | delayed-stream@~1.0.0: 1193 | version "1.0.0" 1194 | resolved "https://registry.yarnpkg.com/delayed-stream/-/delayed-stream-1.0.0.tgz#df3ae199acadfb7d440aaae0b29e2272b24ec619" 1195 | 1196 | detect-newline@^3.0.0: 1197 | version "3.1.0" 1198 | resolved "https://registry.yarnpkg.com/detect-newline/-/detect-newline-3.1.0.tgz#576f5dfc63ae1a192ff192d8ad3af6308991b651" 1199 | 1200 | diff-sequences@^25.2.6: 1201 | version "25.2.6" 1202 | resolved "https://registry.yarnpkg.com/diff-sequences/-/diff-sequences-25.2.6.tgz#5f467c00edd35352b7bca46d7927d60e687a76dd" 1203 | 1204 | diff-sequences@^26.3.0: 1205 | version "26.3.0" 1206 | resolved "https://registry.yarnpkg.com/diff-sequences/-/diff-sequences-26.3.0.tgz#62a59b1b29ab7fd27cef2a33ae52abe73042d0a2" 1207 | 1208 | dir-glob@^3.0.1: 1209 | version "3.0.1" 1210 | resolved "https://registry.yarnpkg.com/dir-glob/-/dir-glob-3.0.1.tgz#56dbf73d992a4a93ba1584f4534063fd2e41717f" 1211 | dependencies: 1212 | path-type "^4.0.0" 1213 | 1214 | doctrine@1.5.0: 1215 | version "1.5.0" 1216 | resolved "https://registry.yarnpkg.com/doctrine/-/doctrine-1.5.0.tgz#379dce730f6166f76cefa4e6707a159b02c5a6fa" 1217 | dependencies: 1218 | esutils "^2.0.2" 1219 | isarray "^1.0.0" 1220 | 1221 | doctrine@^3.0.0: 1222 | version "3.0.0" 1223 | resolved "https://registry.yarnpkg.com/doctrine/-/doctrine-3.0.0.tgz#addebead72a6574db783639dc87a121773973961" 1224 | dependencies: 1225 | esutils "^2.0.2" 1226 | 1227 | domexception@^2.0.1: 1228 | version "2.0.1" 1229 | resolved "https://registry.yarnpkg.com/domexception/-/domexception-2.0.1.tgz#fb44aefba793e1574b0af6aed2801d057529f304" 1230 | dependencies: 1231 | webidl-conversions "^5.0.0" 1232 | 1233 | emittery@^0.7.1: 1234 | version "0.7.1" 1235 | resolved "https://registry.yarnpkg.com/emittery/-/emittery-0.7.1.tgz#c02375a927a40948c0345cc903072597f5270451" 1236 | 1237 | emoji-regex@^7.0.1: 1238 | version "7.0.3" 1239 | resolved "https://registry.yarnpkg.com/emoji-regex/-/emoji-regex-7.0.3.tgz#933a04052860c85e83c122479c4748a8e4c72156" 1240 | 1241 | emoji-regex@^8.0.0: 1242 | version "8.0.0" 1243 | resolved "https://registry.yarnpkg.com/emoji-regex/-/emoji-regex-8.0.0.tgz#e818fd69ce5ccfcb404594f842963bf53164cc37" 1244 | 1245 | end-of-stream@^1.1.0: 1246 | version "1.4.4" 1247 | resolved "https://registry.yarnpkg.com/end-of-stream/-/end-of-stream-1.4.4.tgz#5ae64a5f45057baf3626ec14da0ca5e4b2431eb0" 1248 | dependencies: 1249 | once "^1.4.0" 1250 | 1251 | enquirer@^2.3.5: 1252 | version "2.3.6" 1253 | resolved "https://registry.yarnpkg.com/enquirer/-/enquirer-2.3.6.tgz#2a7fe5dd634a1e4125a975ec994ff5456dc3734d" 1254 | dependencies: 1255 | ansi-colors "^4.1.1" 1256 | 1257 | error-ex@^1.2.0, error-ex@^1.3.1: 1258 | version "1.3.2" 1259 | resolved "https://registry.yarnpkg.com/error-ex/-/error-ex-1.3.2.tgz#b4ac40648107fdcdcfae242f428bea8a14d4f1bf" 1260 | dependencies: 1261 | is-arrayish "^0.2.1" 1262 | 1263 | es-abstract@^1.17.0, es-abstract@^1.17.0-next.1, es-abstract@^1.17.5: 1264 | version "1.17.6" 1265 | resolved "https://registry.yarnpkg.com/es-abstract/-/es-abstract-1.17.6.tgz#9142071707857b2cacc7b89ecb670316c3e2d52a" 1266 | dependencies: 1267 | es-to-primitive "^1.2.1" 1268 | function-bind "^1.1.1" 1269 | has "^1.0.3" 1270 | has-symbols "^1.0.1" 1271 | is-callable "^1.2.0" 1272 | is-regex "^1.1.0" 1273 | object-inspect "^1.7.0" 1274 | object-keys "^1.1.1" 1275 | object.assign "^4.1.0" 1276 | string.prototype.trimend "^1.0.1" 1277 | string.prototype.trimstart "^1.0.1" 1278 | 1279 | es-abstract@^1.18.0-next.0: 1280 | version "1.18.0-next.0" 1281 | resolved "https://registry.yarnpkg.com/es-abstract/-/es-abstract-1.18.0-next.0.tgz#b302834927e624d8e5837ed48224291f2c66e6fc" 1282 | dependencies: 1283 | es-to-primitive "^1.2.1" 1284 | function-bind "^1.1.1" 1285 | has "^1.0.3" 1286 | has-symbols "^1.0.1" 1287 | is-callable "^1.2.0" 1288 | is-negative-zero "^2.0.0" 1289 | is-regex "^1.1.1" 1290 | object-inspect "^1.8.0" 1291 | object-keys "^1.1.1" 1292 | object.assign "^4.1.0" 1293 | string.prototype.trimend "^1.0.1" 1294 | string.prototype.trimstart "^1.0.1" 1295 | 1296 | es-to-primitive@^1.2.1: 1297 | version "1.2.1" 1298 | resolved "https://registry.yarnpkg.com/es-to-primitive/-/es-to-primitive-1.2.1.tgz#e55cd4c9cdc188bcefb03b366c736323fc5c898a" 1299 | dependencies: 1300 | is-callable "^1.1.4" 1301 | is-date-object "^1.0.1" 1302 | is-symbol "^1.0.2" 1303 | 1304 | escape-string-regexp@^1.0.5: 1305 | version "1.0.5" 1306 | resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4" 1307 | 1308 | escape-string-regexp@^2.0.0: 1309 | version "2.0.0" 1310 | resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-2.0.0.tgz#a30304e99daa32e23b2fd20f51babd07cffca344" 1311 | 1312 | escodegen@^2.0.0: 1313 | version "2.0.0" 1314 | resolved "https://registry.yarnpkg.com/escodegen/-/escodegen-2.0.0.tgz#5e32b12833e8aa8fa35e1bf0befa89380484c7dd" 1315 | dependencies: 1316 | esprima "^4.0.1" 1317 | estraverse "^5.2.0" 1318 | esutils "^2.0.2" 1319 | optionator "^0.8.1" 1320 | optionalDependencies: 1321 | source-map "~0.6.1" 1322 | 1323 | eslint-config-prettier@^6.11.0: 1324 | version "6.11.0" 1325 | resolved "https://registry.yarnpkg.com/eslint-config-prettier/-/eslint-config-prettier-6.11.0.tgz#f6d2238c1290d01c859a8b5c1f7d352a0b0da8b1" 1326 | dependencies: 1327 | get-stdin "^6.0.0" 1328 | 1329 | eslint-import-resolver-node@^0.3.3: 1330 | version "0.3.4" 1331 | resolved "https://registry.yarnpkg.com/eslint-import-resolver-node/-/eslint-import-resolver-node-0.3.4.tgz#85ffa81942c25012d8231096ddf679c03042c717" 1332 | dependencies: 1333 | debug "^2.6.9" 1334 | resolve "^1.13.1" 1335 | 1336 | eslint-module-utils@^2.6.0: 1337 | version "2.6.0" 1338 | resolved "https://registry.yarnpkg.com/eslint-module-utils/-/eslint-module-utils-2.6.0.tgz#579ebd094f56af7797d19c9866c9c9486629bfa6" 1339 | dependencies: 1340 | debug "^2.6.9" 1341 | pkg-dir "^2.0.0" 1342 | 1343 | eslint-plugin-import@^2.22.0: 1344 | version "2.22.0" 1345 | resolved "https://registry.yarnpkg.com/eslint-plugin-import/-/eslint-plugin-import-2.22.0.tgz#92f7736fe1fde3e2de77623c838dd992ff5ffb7e" 1346 | dependencies: 1347 | array-includes "^3.1.1" 1348 | array.prototype.flat "^1.2.3" 1349 | contains-path "^0.1.0" 1350 | debug "^2.6.9" 1351 | doctrine "1.5.0" 1352 | eslint-import-resolver-node "^0.3.3" 1353 | eslint-module-utils "^2.6.0" 1354 | has "^1.0.3" 1355 | minimatch "^3.0.4" 1356 | object.values "^1.1.1" 1357 | read-pkg-up "^2.0.0" 1358 | resolve "^1.17.0" 1359 | tsconfig-paths "^3.9.0" 1360 | 1361 | eslint-scope@^5.0.0, eslint-scope@^5.1.0: 1362 | version "5.1.1" 1363 | resolved "https://registry.yarnpkg.com/eslint-scope/-/eslint-scope-5.1.1.tgz#e786e59a66cb92b3f6c1fb0d508aab174848f48c" 1364 | dependencies: 1365 | esrecurse "^4.3.0" 1366 | estraverse "^4.1.1" 1367 | 1368 | eslint-utils@^2.0.0, eslint-utils@^2.1.0: 1369 | version "2.1.0" 1370 | resolved "https://registry.yarnpkg.com/eslint-utils/-/eslint-utils-2.1.0.tgz#d2de5e03424e707dc10c74068ddedae708741b27" 1371 | dependencies: 1372 | eslint-visitor-keys "^1.1.0" 1373 | 1374 | eslint-visitor-keys@^1.1.0, eslint-visitor-keys@^1.3.0: 1375 | version "1.3.0" 1376 | resolved "https://registry.yarnpkg.com/eslint-visitor-keys/-/eslint-visitor-keys-1.3.0.tgz#30ebd1ef7c2fdff01c3a4f151044af25fab0523e" 1377 | 1378 | eslint-visitor-keys@^2.0.0: 1379 | version "2.0.0" 1380 | resolved "https://registry.yarnpkg.com/eslint-visitor-keys/-/eslint-visitor-keys-2.0.0.tgz#21fdc8fbcd9c795cc0321f0563702095751511a8" 1381 | 1382 | eslint@^7.9.0: 1383 | version "7.9.0" 1384 | resolved "https://registry.yarnpkg.com/eslint/-/eslint-7.9.0.tgz#522aeccc5c3a19017cf0cb46ebfd660a79acf337" 1385 | dependencies: 1386 | "@babel/code-frame" "^7.0.0" 1387 | "@eslint/eslintrc" "^0.1.3" 1388 | ajv "^6.10.0" 1389 | chalk "^4.0.0" 1390 | cross-spawn "^7.0.2" 1391 | debug "^4.0.1" 1392 | doctrine "^3.0.0" 1393 | enquirer "^2.3.5" 1394 | eslint-scope "^5.1.0" 1395 | eslint-utils "^2.1.0" 1396 | eslint-visitor-keys "^1.3.0" 1397 | espree "^7.3.0" 1398 | esquery "^1.2.0" 1399 | esutils "^2.0.2" 1400 | file-entry-cache "^5.0.1" 1401 | functional-red-black-tree "^1.0.1" 1402 | glob-parent "^5.0.0" 1403 | globals "^12.1.0" 1404 | ignore "^4.0.6" 1405 | import-fresh "^3.0.0" 1406 | imurmurhash "^0.1.4" 1407 | is-glob "^4.0.0" 1408 | js-yaml "^3.13.1" 1409 | json-stable-stringify-without-jsonify "^1.0.1" 1410 | levn "^0.4.1" 1411 | lodash "^4.17.19" 1412 | minimatch "^3.0.4" 1413 | natural-compare "^1.4.0" 1414 | optionator "^0.9.1" 1415 | progress "^2.0.0" 1416 | regexpp "^3.1.0" 1417 | semver "^7.2.1" 1418 | strip-ansi "^6.0.0" 1419 | strip-json-comments "^3.1.0" 1420 | table "^5.2.3" 1421 | text-table "^0.2.0" 1422 | v8-compile-cache "^2.0.3" 1423 | 1424 | espree@^7.3.0: 1425 | version "7.3.0" 1426 | resolved "https://registry.yarnpkg.com/espree/-/espree-7.3.0.tgz#dc30437cf67947cf576121ebd780f15eeac72348" 1427 | dependencies: 1428 | acorn "^7.4.0" 1429 | acorn-jsx "^5.2.0" 1430 | eslint-visitor-keys "^1.3.0" 1431 | 1432 | esprima@^4.0.0, esprima@^4.0.1: 1433 | version "4.0.1" 1434 | resolved "https://registry.yarnpkg.com/esprima/-/esprima-4.0.1.tgz#13b04cdb3e6c5d19df91ab6987a8695619b0aa71" 1435 | 1436 | esquery@^1.2.0: 1437 | version "1.3.1" 1438 | resolved "https://registry.yarnpkg.com/esquery/-/esquery-1.3.1.tgz#b78b5828aa8e214e29fb74c4d5b752e1c033da57" 1439 | dependencies: 1440 | estraverse "^5.1.0" 1441 | 1442 | esrecurse@^4.3.0: 1443 | version "4.3.0" 1444 | resolved "https://registry.yarnpkg.com/esrecurse/-/esrecurse-4.3.0.tgz#7ad7964d679abb28bee72cec63758b1c5d2c9921" 1445 | dependencies: 1446 | estraverse "^5.2.0" 1447 | 1448 | estraverse@^4.1.1: 1449 | version "4.3.0" 1450 | resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-4.3.0.tgz#398ad3f3c5a24948be7725e83d11a7de28cdbd1d" 1451 | 1452 | estraverse@^5.1.0: 1453 | version "5.2.0" 1454 | resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-5.2.0.tgz#307df42547e6cc7324d3cf03c155d5cdb8c53880" 1455 | 1456 | estraverse@^5.2.0: 1457 | version "5.3.0" 1458 | resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-5.3.0.tgz#2eea5290702f26ab8fe5370370ff86c965d21123" 1459 | 1460 | esutils@^2.0.2: 1461 | version "2.0.3" 1462 | resolved "https://registry.yarnpkg.com/esutils/-/esutils-2.0.3.tgz#74d2eb4de0b8da1293711910d50775b9b710ef64" 1463 | 1464 | exec-sh@^0.3.2: 1465 | version "0.3.4" 1466 | resolved "https://registry.yarnpkg.com/exec-sh/-/exec-sh-0.3.4.tgz#3a018ceb526cc6f6df2bb504b2bfe8e3a4934ec5" 1467 | 1468 | execa@^1.0.0: 1469 | version "1.0.0" 1470 | resolved "https://registry.yarnpkg.com/execa/-/execa-1.0.0.tgz#c6236a5bb4df6d6f15e88e7f017798216749ddd8" 1471 | dependencies: 1472 | cross-spawn "^6.0.0" 1473 | get-stream "^4.0.0" 1474 | is-stream "^1.1.0" 1475 | npm-run-path "^2.0.0" 1476 | p-finally "^1.0.0" 1477 | signal-exit "^3.0.0" 1478 | strip-eof "^1.0.0" 1479 | 1480 | execa@^4.0.0: 1481 | version "4.0.3" 1482 | resolved "https://registry.yarnpkg.com/execa/-/execa-4.0.3.tgz#0a34dabbad6d66100bd6f2c576c8669403f317f2" 1483 | dependencies: 1484 | cross-spawn "^7.0.0" 1485 | get-stream "^5.0.0" 1486 | human-signals "^1.1.1" 1487 | is-stream "^2.0.0" 1488 | merge-stream "^2.0.0" 1489 | npm-run-path "^4.0.0" 1490 | onetime "^5.1.0" 1491 | signal-exit "^3.0.2" 1492 | strip-final-newline "^2.0.0" 1493 | 1494 | exit@^0.1.2: 1495 | version "0.1.2" 1496 | resolved "https://registry.yarnpkg.com/exit/-/exit-0.1.2.tgz#0632638f8d877cc82107d30a0fff1a17cba1cd0c" 1497 | 1498 | expand-brackets@^2.1.4: 1499 | version "2.1.4" 1500 | resolved "https://registry.yarnpkg.com/expand-brackets/-/expand-brackets-2.1.4.tgz#b77735e315ce30f6b6eff0f83b04151a22449622" 1501 | dependencies: 1502 | debug "^2.3.3" 1503 | define-property "^0.2.5" 1504 | extend-shallow "^2.0.1" 1505 | posix-character-classes "^0.1.0" 1506 | regex-not "^1.0.0" 1507 | snapdragon "^0.8.1" 1508 | to-regex "^3.0.1" 1509 | 1510 | expect@^26.4.2: 1511 | version "26.4.2" 1512 | resolved "https://registry.yarnpkg.com/expect/-/expect-26.4.2.tgz#36db120928a5a2d7d9736643032de32f24e1b2a1" 1513 | dependencies: 1514 | "@jest/types" "^26.3.0" 1515 | ansi-styles "^4.0.0" 1516 | jest-get-type "^26.3.0" 1517 | jest-matcher-utils "^26.4.2" 1518 | jest-message-util "^26.3.0" 1519 | jest-regex-util "^26.0.0" 1520 | 1521 | extend-shallow@^2.0.1: 1522 | version "2.0.1" 1523 | resolved "https://registry.yarnpkg.com/extend-shallow/-/extend-shallow-2.0.1.tgz#51af7d614ad9a9f610ea1bafbb989d6b1c56890f" 1524 | dependencies: 1525 | is-extendable "^0.1.0" 1526 | 1527 | extend-shallow@^3.0.0, extend-shallow@^3.0.2: 1528 | version "3.0.2" 1529 | resolved "https://registry.yarnpkg.com/extend-shallow/-/extend-shallow-3.0.2.tgz#26a71aaf073b39fb2127172746131c2704028db8" 1530 | dependencies: 1531 | assign-symbols "^1.0.0" 1532 | is-extendable "^1.0.1" 1533 | 1534 | extglob@^2.0.4: 1535 | version "2.0.4" 1536 | resolved "https://registry.yarnpkg.com/extglob/-/extglob-2.0.4.tgz#ad00fe4dc612a9232e8718711dc5cb5ab0285543" 1537 | dependencies: 1538 | array-unique "^0.3.2" 1539 | define-property "^1.0.0" 1540 | expand-brackets "^2.1.4" 1541 | extend-shallow "^2.0.1" 1542 | fragment-cache "^0.2.1" 1543 | regex-not "^1.0.0" 1544 | snapdragon "^0.8.1" 1545 | to-regex "^3.0.1" 1546 | 1547 | fast-deep-equal@^3.1.1: 1548 | version "3.1.3" 1549 | resolved "https://registry.yarnpkg.com/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz#3a7d56b559d6cbc3eb512325244e619a65c6c525" 1550 | 1551 | fast-glob@^3.1.1: 1552 | version "3.2.4" 1553 | resolved "https://registry.yarnpkg.com/fast-glob/-/fast-glob-3.2.4.tgz#d20aefbf99579383e7f3cc66529158c9b98554d3" 1554 | dependencies: 1555 | "@nodelib/fs.stat" "^2.0.2" 1556 | "@nodelib/fs.walk" "^1.2.3" 1557 | glob-parent "^5.1.0" 1558 | merge2 "^1.3.0" 1559 | micromatch "^4.0.2" 1560 | picomatch "^2.2.1" 1561 | 1562 | fast-json-stable-stringify@2.x, fast-json-stable-stringify@^2.0.0: 1563 | version "2.1.0" 1564 | resolved "https://registry.yarnpkg.com/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz#874bf69c6f404c2b5d99c481341399fd55892633" 1565 | 1566 | fast-levenshtein@^2.0.6, fast-levenshtein@~2.0.6: 1567 | version "2.0.6" 1568 | resolved "https://registry.yarnpkg.com/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz#3d8a5c66883a16a30ca8643e851f19baa7797917" 1569 | 1570 | fastq@^1.6.0: 1571 | version "1.8.0" 1572 | resolved "https://registry.yarnpkg.com/fastq/-/fastq-1.8.0.tgz#550e1f9f59bbc65fe185cb6a9b4d95357107f481" 1573 | dependencies: 1574 | reusify "^1.0.4" 1575 | 1576 | fb-watchman@^2.0.0: 1577 | version "2.0.1" 1578 | resolved "https://registry.yarnpkg.com/fb-watchman/-/fb-watchman-2.0.1.tgz#fc84fb39d2709cf3ff6d743706157bb5708a8a85" 1579 | dependencies: 1580 | bser "2.1.1" 1581 | 1582 | file-entry-cache@^5.0.1: 1583 | version "5.0.1" 1584 | resolved "https://registry.yarnpkg.com/file-entry-cache/-/file-entry-cache-5.0.1.tgz#ca0f6efa6dd3d561333fb14515065c2fafdf439c" 1585 | dependencies: 1586 | flat-cache "^2.0.1" 1587 | 1588 | fill-range@^4.0.0: 1589 | version "4.0.0" 1590 | resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-4.0.0.tgz#d544811d428f98eb06a63dc402d2403c328c38f7" 1591 | dependencies: 1592 | extend-shallow "^2.0.1" 1593 | is-number "^3.0.0" 1594 | repeat-string "^1.6.1" 1595 | to-regex-range "^2.1.0" 1596 | 1597 | fill-range@^7.0.1: 1598 | version "7.0.1" 1599 | resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-7.0.1.tgz#1919a6a7c75fe38b2c7c77e5198535da9acdda40" 1600 | dependencies: 1601 | to-regex-range "^5.0.1" 1602 | 1603 | find-up@^2.0.0, find-up@^2.1.0: 1604 | version "2.1.0" 1605 | resolved "https://registry.yarnpkg.com/find-up/-/find-up-2.1.0.tgz#45d1b7e506c717ddd482775a2b77920a3c0c57a7" 1606 | dependencies: 1607 | locate-path "^2.0.0" 1608 | 1609 | find-up@^4.0.0, find-up@^4.1.0: 1610 | version "4.1.0" 1611 | resolved "https://registry.yarnpkg.com/find-up/-/find-up-4.1.0.tgz#97afe7d6cdc0bc5928584b7c8d7b16e8a9aa5d19" 1612 | dependencies: 1613 | locate-path "^5.0.0" 1614 | path-exists "^4.0.0" 1615 | 1616 | find-versions@^3.2.0: 1617 | version "3.2.0" 1618 | resolved "https://registry.yarnpkg.com/find-versions/-/find-versions-3.2.0.tgz#10297f98030a786829681690545ef659ed1d254e" 1619 | dependencies: 1620 | semver-regex "^2.0.0" 1621 | 1622 | flat-cache@^2.0.1: 1623 | version "2.0.1" 1624 | resolved "https://registry.yarnpkg.com/flat-cache/-/flat-cache-2.0.1.tgz#5d296d6f04bda44a4630a301413bdbc2ec085ec0" 1625 | dependencies: 1626 | flatted "^2.0.0" 1627 | rimraf "2.6.3" 1628 | write "1.0.3" 1629 | 1630 | flatted@^2.0.0: 1631 | version "2.0.2" 1632 | resolved "https://registry.yarnpkg.com/flatted/-/flatted-2.0.2.tgz#4575b21e2bcee7434aa9be662f4b7b5f9c2b5138" 1633 | 1634 | for-in@^1.0.2: 1635 | version "1.0.2" 1636 | resolved "https://registry.yarnpkg.com/for-in/-/for-in-1.0.2.tgz#81068d295a8142ec0ac726c6e2200c30fb6d5e80" 1637 | 1638 | form-data@^3.0.0: 1639 | version "3.0.1" 1640 | resolved "https://registry.yarnpkg.com/form-data/-/form-data-3.0.1.tgz#ebd53791b78356a99af9a300d4282c4d5eb9755f" 1641 | dependencies: 1642 | asynckit "^0.4.0" 1643 | combined-stream "^1.0.8" 1644 | mime-types "^2.1.12" 1645 | 1646 | fragment-cache@^0.2.1: 1647 | version "0.2.1" 1648 | resolved "https://registry.yarnpkg.com/fragment-cache/-/fragment-cache-0.2.1.tgz#4290fad27f13e89be7f33799c6bc5a0abfff0d19" 1649 | dependencies: 1650 | map-cache "^0.2.2" 1651 | 1652 | fs.realpath@^1.0.0: 1653 | version "1.0.0" 1654 | resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f" 1655 | 1656 | fsevents@^2.1.2: 1657 | version "2.1.3" 1658 | resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-2.1.3.tgz#fb738703ae8d2f9fe900c33836ddebee8b97f23e" 1659 | 1660 | function-bind@^1.1.1: 1661 | version "1.1.1" 1662 | resolved "https://registry.yarnpkg.com/function-bind/-/function-bind-1.1.1.tgz#a56899d3ea3c9bab874bb9773b7c5ede92f4895d" 1663 | 1664 | functional-red-black-tree@^1.0.1: 1665 | version "1.0.1" 1666 | resolved "https://registry.yarnpkg.com/functional-red-black-tree/-/functional-red-black-tree-1.0.1.tgz#1b0ab3bd553b2a0d6399d29c0e3ea0b252078327" 1667 | 1668 | gensync@^1.0.0-beta.1: 1669 | version "1.0.0-beta.1" 1670 | resolved "https://registry.yarnpkg.com/gensync/-/gensync-1.0.0-beta.1.tgz#58f4361ff987e5ff6e1e7a210827aa371eaac269" 1671 | 1672 | get-caller-file@^2.0.1: 1673 | version "2.0.5" 1674 | resolved "https://registry.yarnpkg.com/get-caller-file/-/get-caller-file-2.0.5.tgz#4f94412a82db32f36e3b0b9741f8a97feb031f7e" 1675 | 1676 | get-package-type@^0.1.0: 1677 | version "0.1.0" 1678 | resolved "https://registry.yarnpkg.com/get-package-type/-/get-package-type-0.1.0.tgz#8de2d803cff44df3bc6c456e6668b36c3926e11a" 1679 | 1680 | get-stdin@^6.0.0: 1681 | version "6.0.0" 1682 | resolved "https://registry.yarnpkg.com/get-stdin/-/get-stdin-6.0.0.tgz#9e09bf712b360ab9225e812048f71fde9c89657b" 1683 | 1684 | get-stream@^4.0.0: 1685 | version "4.1.0" 1686 | resolved "https://registry.yarnpkg.com/get-stream/-/get-stream-4.1.0.tgz#c1b255575f3dc21d59bfc79cd3d2b46b1c3a54b5" 1687 | dependencies: 1688 | pump "^3.0.0" 1689 | 1690 | get-stream@^5.0.0: 1691 | version "5.2.0" 1692 | resolved "https://registry.yarnpkg.com/get-stream/-/get-stream-5.2.0.tgz#4966a1795ee5ace65e706c4b7beb71257d6e22d3" 1693 | dependencies: 1694 | pump "^3.0.0" 1695 | 1696 | get-value@^2.0.3, get-value@^2.0.6: 1697 | version "2.0.6" 1698 | resolved "https://registry.yarnpkg.com/get-value/-/get-value-2.0.6.tgz#dc15ca1c672387ca76bd37ac0a395ba2042a2c28" 1699 | 1700 | glob-parent@^5.0.0, glob-parent@^5.1.0: 1701 | version "5.1.2" 1702 | resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-5.1.2.tgz#869832c58034fe68a4093c17dc15e8340d8401c4" 1703 | dependencies: 1704 | is-glob "^4.0.1" 1705 | 1706 | glob@^7.1.1, glob@^7.1.2, glob@^7.1.3, glob@^7.1.4: 1707 | version "7.1.6" 1708 | resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.6.tgz#141f33b81a7c2492e125594307480c46679278a6" 1709 | dependencies: 1710 | fs.realpath "^1.0.0" 1711 | inflight "^1.0.4" 1712 | inherits "2" 1713 | minimatch "^3.0.4" 1714 | once "^1.3.0" 1715 | path-is-absolute "^1.0.0" 1716 | 1717 | globals@^11.1.0: 1718 | version "11.12.0" 1719 | resolved "https://registry.yarnpkg.com/globals/-/globals-11.12.0.tgz#ab8795338868a0babd8525758018c2a7eb95c42e" 1720 | 1721 | globals@^12.1.0: 1722 | version "12.4.0" 1723 | resolved "https://registry.yarnpkg.com/globals/-/globals-12.4.0.tgz#a18813576a41b00a24a97e7f815918c2e19925f8" 1724 | dependencies: 1725 | type-fest "^0.8.1" 1726 | 1727 | globby@^11.0.1: 1728 | version "11.0.1" 1729 | resolved "https://registry.yarnpkg.com/globby/-/globby-11.0.1.tgz#9a2bf107a068f3ffeabc49ad702c79ede8cfd357" 1730 | dependencies: 1731 | array-union "^2.1.0" 1732 | dir-glob "^3.0.1" 1733 | fast-glob "^3.1.1" 1734 | ignore "^5.1.4" 1735 | merge2 "^1.3.0" 1736 | slash "^3.0.0" 1737 | 1738 | graceful-fs@^4.1.2, graceful-fs@^4.2.4: 1739 | version "4.2.4" 1740 | resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.2.4.tgz#2256bde14d3632958c465ebc96dc467ca07a29fb" 1741 | 1742 | growly@^1.3.0: 1743 | version "1.3.0" 1744 | resolved "https://registry.yarnpkg.com/growly/-/growly-1.3.0.tgz#f10748cbe76af964b7c96c93c6bcc28af120c081" 1745 | 1746 | has-flag@^3.0.0: 1747 | version "3.0.0" 1748 | resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-3.0.0.tgz#b5d454dc2199ae225699f3467e5a07f3b955bafd" 1749 | 1750 | has-flag@^4.0.0: 1751 | version "4.0.0" 1752 | resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-4.0.0.tgz#944771fd9c81c81265c4d6941860da06bb59479b" 1753 | 1754 | has-symbols@^1.0.1: 1755 | version "1.0.1" 1756 | resolved "https://registry.yarnpkg.com/has-symbols/-/has-symbols-1.0.1.tgz#9f5214758a44196c406d9bd76cebf81ec2dd31e8" 1757 | 1758 | has-value@^0.3.1: 1759 | version "0.3.1" 1760 | resolved "https://registry.yarnpkg.com/has-value/-/has-value-0.3.1.tgz#7b1f58bada62ca827ec0a2078025654845995e1f" 1761 | dependencies: 1762 | get-value "^2.0.3" 1763 | has-values "^0.1.4" 1764 | isobject "^2.0.0" 1765 | 1766 | has-value@^1.0.0: 1767 | version "1.0.0" 1768 | resolved "https://registry.yarnpkg.com/has-value/-/has-value-1.0.0.tgz#18b281da585b1c5c51def24c930ed29a0be6b177" 1769 | dependencies: 1770 | get-value "^2.0.6" 1771 | has-values "^1.0.0" 1772 | isobject "^3.0.0" 1773 | 1774 | has-values@^0.1.4: 1775 | version "0.1.4" 1776 | resolved "https://registry.yarnpkg.com/has-values/-/has-values-0.1.4.tgz#6d61de95d91dfca9b9a02089ad384bff8f62b771" 1777 | 1778 | has-values@^1.0.0: 1779 | version "1.0.0" 1780 | resolved "https://registry.yarnpkg.com/has-values/-/has-values-1.0.0.tgz#95b0b63fec2146619a6fe57fe75628d5a39efe4f" 1781 | dependencies: 1782 | is-number "^3.0.0" 1783 | kind-of "^4.0.0" 1784 | 1785 | has@^1.0.3: 1786 | version "1.0.3" 1787 | resolved "https://registry.yarnpkg.com/has/-/has-1.0.3.tgz#722d7cbfc1f6aa8241f16dd814e011e1f41e8796" 1788 | dependencies: 1789 | function-bind "^1.1.1" 1790 | 1791 | hosted-git-info@^2.1.4: 1792 | version "2.8.9" 1793 | resolved "https://registry.yarnpkg.com/hosted-git-info/-/hosted-git-info-2.8.9.tgz#dffc0bf9a21c02209090f2aa69429e1414daf3f9" 1794 | 1795 | html-encoding-sniffer@^2.0.1: 1796 | version "2.0.1" 1797 | resolved "https://registry.yarnpkg.com/html-encoding-sniffer/-/html-encoding-sniffer-2.0.1.tgz#42a6dc4fd33f00281176e8b23759ca4e4fa185f3" 1798 | dependencies: 1799 | whatwg-encoding "^1.0.5" 1800 | 1801 | html-escaper@^2.0.0: 1802 | version "2.0.2" 1803 | resolved "https://registry.yarnpkg.com/html-escaper/-/html-escaper-2.0.2.tgz#dfd60027da36a36dfcbe236262c00a5822681453" 1804 | 1805 | http-proxy-agent@^4.0.1: 1806 | version "4.0.1" 1807 | resolved "https://registry.yarnpkg.com/http-proxy-agent/-/http-proxy-agent-4.0.1.tgz#8a8c8ef7f5932ccf953c296ca8291b95aa74aa3a" 1808 | dependencies: 1809 | "@tootallnate/once" "1" 1810 | agent-base "6" 1811 | debug "4" 1812 | 1813 | https-proxy-agent@^5.0.0: 1814 | version "5.0.1" 1815 | resolved "https://registry.yarnpkg.com/https-proxy-agent/-/https-proxy-agent-5.0.1.tgz#c59ef224a04fe8b754f3db0063a25ea30d0005d6" 1816 | dependencies: 1817 | agent-base "6" 1818 | debug "4" 1819 | 1820 | human-signals@^1.1.1: 1821 | version "1.1.1" 1822 | resolved "https://registry.yarnpkg.com/human-signals/-/human-signals-1.1.1.tgz#c5b1cd14f50aeae09ab6c59fe63ba3395fe4dfa3" 1823 | 1824 | husky@^4.3.0: 1825 | version "4.3.0" 1826 | resolved "https://registry.yarnpkg.com/husky/-/husky-4.3.0.tgz#0b2ec1d66424e9219d359e26a51c58ec5278f0de" 1827 | dependencies: 1828 | chalk "^4.0.0" 1829 | ci-info "^2.0.0" 1830 | compare-versions "^3.6.0" 1831 | cosmiconfig "^7.0.0" 1832 | find-versions "^3.2.0" 1833 | opencollective-postinstall "^2.0.2" 1834 | pkg-dir "^4.2.0" 1835 | please-upgrade-node "^3.2.0" 1836 | slash "^3.0.0" 1837 | which-pm-runs "^1.0.0" 1838 | 1839 | iconv-lite@0.4.24: 1840 | version "0.4.24" 1841 | resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.4.24.tgz#2022b4b25fbddc21d2f524974a474aafe733908b" 1842 | dependencies: 1843 | safer-buffer ">= 2.1.2 < 3" 1844 | 1845 | ignore@^4.0.6: 1846 | version "4.0.6" 1847 | resolved "https://registry.yarnpkg.com/ignore/-/ignore-4.0.6.tgz#750e3db5862087b4737ebac8207ffd1ef27b25fc" 1848 | 1849 | ignore@^5.1.4: 1850 | version "5.1.8" 1851 | resolved "https://registry.yarnpkg.com/ignore/-/ignore-5.1.8.tgz#f150a8b50a34289b33e22f5889abd4d8016f0e57" 1852 | 1853 | import-fresh@^3.0.0, import-fresh@^3.2.1: 1854 | version "3.2.1" 1855 | resolved "https://registry.yarnpkg.com/import-fresh/-/import-fresh-3.2.1.tgz#633ff618506e793af5ac91bf48b72677e15cbe66" 1856 | dependencies: 1857 | parent-module "^1.0.0" 1858 | resolve-from "^4.0.0" 1859 | 1860 | import-local@^3.0.2: 1861 | version "3.0.2" 1862 | resolved "https://registry.yarnpkg.com/import-local/-/import-local-3.0.2.tgz#a8cfd0431d1de4a2199703d003e3e62364fa6db6" 1863 | dependencies: 1864 | pkg-dir "^4.2.0" 1865 | resolve-cwd "^3.0.0" 1866 | 1867 | imurmurhash@^0.1.4: 1868 | version "0.1.4" 1869 | resolved "https://registry.yarnpkg.com/imurmurhash/-/imurmurhash-0.1.4.tgz#9218b9b2b928a238b13dc4fb6b6d576f231453ea" 1870 | 1871 | inflight@^1.0.4: 1872 | version "1.0.6" 1873 | resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9" 1874 | dependencies: 1875 | once "^1.3.0" 1876 | wrappy "1" 1877 | 1878 | inherits@2: 1879 | version "2.0.4" 1880 | resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.4.tgz#0fa2c64f932917c3433a0ded55363aae37416b7c" 1881 | 1882 | is-accessor-descriptor@^0.1.6: 1883 | version "0.1.6" 1884 | resolved "https://registry.yarnpkg.com/is-accessor-descriptor/-/is-accessor-descriptor-0.1.6.tgz#a9e12cb3ae8d876727eeef3843f8a0897b5c98d6" 1885 | dependencies: 1886 | kind-of "^3.0.2" 1887 | 1888 | is-accessor-descriptor@^1.0.0: 1889 | version "1.0.0" 1890 | resolved "https://registry.yarnpkg.com/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz#169c2f6d3df1f992618072365c9b0ea1f6878656" 1891 | dependencies: 1892 | kind-of "^6.0.0" 1893 | 1894 | is-arrayish@^0.2.1: 1895 | version "0.2.1" 1896 | resolved "https://registry.yarnpkg.com/is-arrayish/-/is-arrayish-0.2.1.tgz#77c99840527aa8ecb1a8ba697b80645a7a926a9d" 1897 | 1898 | is-buffer@^1.1.5: 1899 | version "1.1.6" 1900 | resolved "https://registry.yarnpkg.com/is-buffer/-/is-buffer-1.1.6.tgz#efaa2ea9daa0d7ab2ea13a97b2b8ad51fefbe8be" 1901 | 1902 | is-callable@^1.1.4, is-callable@^1.2.0: 1903 | version "1.2.1" 1904 | resolved "https://registry.yarnpkg.com/is-callable/-/is-callable-1.2.1.tgz#4d1e21a4f437509d25ce55f8184350771421c96d" 1905 | 1906 | is-ci@^2.0.0: 1907 | version "2.0.0" 1908 | resolved "https://registry.yarnpkg.com/is-ci/-/is-ci-2.0.0.tgz#6bc6334181810e04b5c22b3d589fdca55026404c" 1909 | dependencies: 1910 | ci-info "^2.0.0" 1911 | 1912 | is-data-descriptor@^0.1.4: 1913 | version "0.1.4" 1914 | resolved "https://registry.yarnpkg.com/is-data-descriptor/-/is-data-descriptor-0.1.4.tgz#0b5ee648388e2c860282e793f1856fec3f301b56" 1915 | dependencies: 1916 | kind-of "^3.0.2" 1917 | 1918 | is-data-descriptor@^1.0.0: 1919 | version "1.0.0" 1920 | resolved "https://registry.yarnpkg.com/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz#d84876321d0e7add03990406abbbbd36ba9268c7" 1921 | dependencies: 1922 | kind-of "^6.0.0" 1923 | 1924 | is-date-object@^1.0.1: 1925 | version "1.0.2" 1926 | resolved "https://registry.yarnpkg.com/is-date-object/-/is-date-object-1.0.2.tgz#bda736f2cd8fd06d32844e7743bfa7494c3bfd7e" 1927 | 1928 | is-descriptor@^0.1.0: 1929 | version "0.1.6" 1930 | resolved "https://registry.yarnpkg.com/is-descriptor/-/is-descriptor-0.1.6.tgz#366d8240dde487ca51823b1ab9f07a10a78251ca" 1931 | dependencies: 1932 | is-accessor-descriptor "^0.1.6" 1933 | is-data-descriptor "^0.1.4" 1934 | kind-of "^5.0.0" 1935 | 1936 | is-descriptor@^1.0.0, is-descriptor@^1.0.2: 1937 | version "1.0.2" 1938 | resolved "https://registry.yarnpkg.com/is-descriptor/-/is-descriptor-1.0.2.tgz#3b159746a66604b04f8c81524ba365c5f14d86ec" 1939 | dependencies: 1940 | is-accessor-descriptor "^1.0.0" 1941 | is-data-descriptor "^1.0.0" 1942 | kind-of "^6.0.2" 1943 | 1944 | is-docker@^2.0.0: 1945 | version "2.1.1" 1946 | resolved "https://registry.yarnpkg.com/is-docker/-/is-docker-2.1.1.tgz#4125a88e44e450d384e09047ede71adc2d144156" 1947 | 1948 | is-extendable@^0.1.0, is-extendable@^0.1.1: 1949 | version "0.1.1" 1950 | resolved "https://registry.yarnpkg.com/is-extendable/-/is-extendable-0.1.1.tgz#62b110e289a471418e3ec36a617d472e301dfc89" 1951 | 1952 | is-extendable@^1.0.1: 1953 | version "1.0.1" 1954 | resolved "https://registry.yarnpkg.com/is-extendable/-/is-extendable-1.0.1.tgz#a7470f9e426733d81bd81e1155264e3a3507cab4" 1955 | dependencies: 1956 | is-plain-object "^2.0.4" 1957 | 1958 | is-extglob@^2.1.1: 1959 | version "2.1.1" 1960 | resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-2.1.1.tgz#a88c02535791f02ed37c76a1b9ea9773c833f8c2" 1961 | 1962 | is-fullwidth-code-point@^2.0.0: 1963 | version "2.0.0" 1964 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz#a3b30a5c4f199183167aaab93beefae3ddfb654f" 1965 | 1966 | is-fullwidth-code-point@^3.0.0: 1967 | version "3.0.0" 1968 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz#f116f8064fe90b3f7844a38997c0b75051269f1d" 1969 | 1970 | is-generator-fn@^2.0.0: 1971 | version "2.1.0" 1972 | resolved "https://registry.yarnpkg.com/is-generator-fn/-/is-generator-fn-2.1.0.tgz#7d140adc389aaf3011a8f2a2a4cfa6faadffb118" 1973 | 1974 | is-glob@^4.0.0, is-glob@^4.0.1: 1975 | version "4.0.1" 1976 | resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-4.0.1.tgz#7567dbe9f2f5e2467bc77ab83c4a29482407a5dc" 1977 | dependencies: 1978 | is-extglob "^2.1.1" 1979 | 1980 | is-negative-zero@^2.0.0: 1981 | version "2.0.0" 1982 | resolved "https://registry.yarnpkg.com/is-negative-zero/-/is-negative-zero-2.0.0.tgz#9553b121b0fac28869da9ed459e20c7543788461" 1983 | 1984 | is-number@^3.0.0: 1985 | version "3.0.0" 1986 | resolved "https://registry.yarnpkg.com/is-number/-/is-number-3.0.0.tgz#24fd6201a4782cf50561c810276afc7d12d71195" 1987 | dependencies: 1988 | kind-of "^3.0.2" 1989 | 1990 | is-number@^7.0.0: 1991 | version "7.0.0" 1992 | resolved "https://registry.yarnpkg.com/is-number/-/is-number-7.0.0.tgz#7535345b896734d5f80c4d06c50955527a14f12b" 1993 | 1994 | is-plain-object@^2.0.3, is-plain-object@^2.0.4: 1995 | version "2.0.4" 1996 | resolved "https://registry.yarnpkg.com/is-plain-object/-/is-plain-object-2.0.4.tgz#2c163b3fafb1b606d9d17928f05c2a1c38e07677" 1997 | dependencies: 1998 | isobject "^3.0.1" 1999 | 2000 | is-potential-custom-element-name@^1.0.1: 2001 | version "1.0.1" 2002 | resolved "https://registry.yarnpkg.com/is-potential-custom-element-name/-/is-potential-custom-element-name-1.0.1.tgz#171ed6f19e3ac554394edf78caa05784a45bebb5" 2003 | 2004 | is-regex@^1.1.0, is-regex@^1.1.1: 2005 | version "1.1.1" 2006 | resolved "https://registry.yarnpkg.com/is-regex/-/is-regex-1.1.1.tgz#c6f98aacc546f6cec5468a07b7b153ab564a57b9" 2007 | dependencies: 2008 | has-symbols "^1.0.1" 2009 | 2010 | is-stream@^1.1.0: 2011 | version "1.1.0" 2012 | resolved "https://registry.yarnpkg.com/is-stream/-/is-stream-1.1.0.tgz#12d4a3dd4e68e0b79ceb8dbc84173ae80d91ca44" 2013 | 2014 | is-stream@^2.0.0: 2015 | version "2.0.0" 2016 | resolved "https://registry.yarnpkg.com/is-stream/-/is-stream-2.0.0.tgz#bde9c32680d6fae04129d6ac9d921ce7815f78e3" 2017 | 2018 | is-string@^1.0.5: 2019 | version "1.0.5" 2020 | resolved "https://registry.yarnpkg.com/is-string/-/is-string-1.0.5.tgz#40493ed198ef3ff477b8c7f92f644ec82a5cd3a6" 2021 | 2022 | is-symbol@^1.0.2: 2023 | version "1.0.3" 2024 | resolved "https://registry.yarnpkg.com/is-symbol/-/is-symbol-1.0.3.tgz#38e1014b9e6329be0de9d24a414fd7441ec61937" 2025 | dependencies: 2026 | has-symbols "^1.0.1" 2027 | 2028 | is-typedarray@^1.0.0: 2029 | version "1.0.0" 2030 | resolved "https://registry.yarnpkg.com/is-typedarray/-/is-typedarray-1.0.0.tgz#e479c80858df0c1b11ddda6940f96011fcda4a9a" 2031 | 2032 | is-windows@^1.0.2: 2033 | version "1.0.2" 2034 | resolved "https://registry.yarnpkg.com/is-windows/-/is-windows-1.0.2.tgz#d1850eb9791ecd18e6182ce12a30f396634bb19d" 2035 | 2036 | is-wsl@^2.2.0: 2037 | version "2.2.0" 2038 | resolved "https://registry.yarnpkg.com/is-wsl/-/is-wsl-2.2.0.tgz#74a4c76e77ca9fd3f932f290c17ea326cd157271" 2039 | dependencies: 2040 | is-docker "^2.0.0" 2041 | 2042 | isarray@1.0.0, isarray@^1.0.0: 2043 | version "1.0.0" 2044 | resolved "https://registry.yarnpkg.com/isarray/-/isarray-1.0.0.tgz#bb935d48582cba168c06834957a54a3e07124f11" 2045 | 2046 | isexe@^2.0.0: 2047 | version "2.0.0" 2048 | resolved "https://registry.yarnpkg.com/isexe/-/isexe-2.0.0.tgz#e8fbf374dc556ff8947a10dcb0572d633f2cfa10" 2049 | 2050 | isobject@^2.0.0: 2051 | version "2.1.0" 2052 | resolved "https://registry.yarnpkg.com/isobject/-/isobject-2.1.0.tgz#f065561096a3f1da2ef46272f815c840d87e0c89" 2053 | dependencies: 2054 | isarray "1.0.0" 2055 | 2056 | isobject@^3.0.0, isobject@^3.0.1: 2057 | version "3.0.1" 2058 | resolved "https://registry.yarnpkg.com/isobject/-/isobject-3.0.1.tgz#4e431e92b11a9731636aa1f9c8d1ccbcfdab78df" 2059 | 2060 | istanbul-lib-coverage@^3.0.0: 2061 | version "3.0.0" 2062 | resolved "https://registry.yarnpkg.com/istanbul-lib-coverage/-/istanbul-lib-coverage-3.0.0.tgz#f5944a37c70b550b02a78a5c3b2055b280cec8ec" 2063 | 2064 | istanbul-lib-instrument@^4.0.0, istanbul-lib-instrument@^4.0.3: 2065 | version "4.0.3" 2066 | resolved "https://registry.yarnpkg.com/istanbul-lib-instrument/-/istanbul-lib-instrument-4.0.3.tgz#873c6fff897450118222774696a3f28902d77c1d" 2067 | dependencies: 2068 | "@babel/core" "^7.7.5" 2069 | "@istanbuljs/schema" "^0.1.2" 2070 | istanbul-lib-coverage "^3.0.0" 2071 | semver "^6.3.0" 2072 | 2073 | istanbul-lib-report@^3.0.0: 2074 | version "3.0.0" 2075 | resolved "https://registry.yarnpkg.com/istanbul-lib-report/-/istanbul-lib-report-3.0.0.tgz#7518fe52ea44de372f460a76b5ecda9ffb73d8a6" 2076 | dependencies: 2077 | istanbul-lib-coverage "^3.0.0" 2078 | make-dir "^3.0.0" 2079 | supports-color "^7.1.0" 2080 | 2081 | istanbul-lib-source-maps@^4.0.0: 2082 | version "4.0.0" 2083 | resolved "https://registry.yarnpkg.com/istanbul-lib-source-maps/-/istanbul-lib-source-maps-4.0.0.tgz#75743ce6d96bb86dc7ee4352cf6366a23f0b1ad9" 2084 | dependencies: 2085 | debug "^4.1.1" 2086 | istanbul-lib-coverage "^3.0.0" 2087 | source-map "^0.6.1" 2088 | 2089 | istanbul-reports@^3.0.2: 2090 | version "3.0.2" 2091 | resolved "https://registry.yarnpkg.com/istanbul-reports/-/istanbul-reports-3.0.2.tgz#d593210e5000683750cb09fc0644e4b6e27fd53b" 2092 | dependencies: 2093 | html-escaper "^2.0.0" 2094 | istanbul-lib-report "^3.0.0" 2095 | 2096 | jest-changed-files@^26.3.0: 2097 | version "26.3.0" 2098 | resolved "https://registry.yarnpkg.com/jest-changed-files/-/jest-changed-files-26.3.0.tgz#68fb2a7eb125f50839dab1f5a17db3607fe195b1" 2099 | dependencies: 2100 | "@jest/types" "^26.3.0" 2101 | execa "^4.0.0" 2102 | throat "^5.0.0" 2103 | 2104 | jest-cli@^26.4.2: 2105 | version "26.4.2" 2106 | resolved "https://registry.yarnpkg.com/jest-cli/-/jest-cli-26.4.2.tgz#24afc6e4dfc25cde4c7ec4226fb7db5f157c21da" 2107 | dependencies: 2108 | "@jest/core" "^26.4.2" 2109 | "@jest/test-result" "^26.3.0" 2110 | "@jest/types" "^26.3.0" 2111 | chalk "^4.0.0" 2112 | exit "^0.1.2" 2113 | graceful-fs "^4.2.4" 2114 | import-local "^3.0.2" 2115 | is-ci "^2.0.0" 2116 | jest-config "^26.4.2" 2117 | jest-util "^26.3.0" 2118 | jest-validate "^26.4.2" 2119 | prompts "^2.0.1" 2120 | yargs "^15.3.1" 2121 | 2122 | jest-config@^26.4.2: 2123 | version "26.4.2" 2124 | resolved "https://registry.yarnpkg.com/jest-config/-/jest-config-26.4.2.tgz#da0cbb7dc2c131ffe831f0f7f2a36256e6086558" 2125 | dependencies: 2126 | "@babel/core" "^7.1.0" 2127 | "@jest/test-sequencer" "^26.4.2" 2128 | "@jest/types" "^26.3.0" 2129 | babel-jest "^26.3.0" 2130 | chalk "^4.0.0" 2131 | deepmerge "^4.2.2" 2132 | glob "^7.1.1" 2133 | graceful-fs "^4.2.4" 2134 | jest-environment-jsdom "^26.3.0" 2135 | jest-environment-node "^26.3.0" 2136 | jest-get-type "^26.3.0" 2137 | jest-jasmine2 "^26.4.2" 2138 | jest-regex-util "^26.0.0" 2139 | jest-resolve "^26.4.0" 2140 | jest-util "^26.3.0" 2141 | jest-validate "^26.4.2" 2142 | micromatch "^4.0.2" 2143 | pretty-format "^26.4.2" 2144 | 2145 | jest-diff@^25.2.1: 2146 | version "25.5.0" 2147 | resolved "https://registry.yarnpkg.com/jest-diff/-/jest-diff-25.5.0.tgz#1dd26ed64f96667c068cef026b677dfa01afcfa9" 2148 | dependencies: 2149 | chalk "^3.0.0" 2150 | diff-sequences "^25.2.6" 2151 | jest-get-type "^25.2.6" 2152 | pretty-format "^25.5.0" 2153 | 2154 | jest-diff@^26.4.2: 2155 | version "26.4.2" 2156 | resolved "https://registry.yarnpkg.com/jest-diff/-/jest-diff-26.4.2.tgz#a1b7b303bcc534aabdb3bd4a7caf594ac059f5aa" 2157 | dependencies: 2158 | chalk "^4.0.0" 2159 | diff-sequences "^26.3.0" 2160 | jest-get-type "^26.3.0" 2161 | pretty-format "^26.4.2" 2162 | 2163 | jest-docblock@^26.0.0: 2164 | version "26.0.0" 2165 | resolved "https://registry.yarnpkg.com/jest-docblock/-/jest-docblock-26.0.0.tgz#3e2fa20899fc928cb13bd0ff68bd3711a36889b5" 2166 | dependencies: 2167 | detect-newline "^3.0.0" 2168 | 2169 | jest-each@^26.4.2: 2170 | version "26.4.2" 2171 | resolved "https://registry.yarnpkg.com/jest-each/-/jest-each-26.4.2.tgz#bb14f7f4304f2bb2e2b81f783f989449b8b6ffae" 2172 | dependencies: 2173 | "@jest/types" "^26.3.0" 2174 | chalk "^4.0.0" 2175 | jest-get-type "^26.3.0" 2176 | jest-util "^26.3.0" 2177 | pretty-format "^26.4.2" 2178 | 2179 | jest-environment-jsdom@^26.3.0: 2180 | version "26.3.0" 2181 | resolved "https://registry.yarnpkg.com/jest-environment-jsdom/-/jest-environment-jsdom-26.3.0.tgz#3b749ba0f3a78e92ba2c9ce519e16e5dd515220c" 2182 | dependencies: 2183 | "@jest/environment" "^26.3.0" 2184 | "@jest/fake-timers" "^26.3.0" 2185 | "@jest/types" "^26.3.0" 2186 | "@types/node" "*" 2187 | jest-mock "^26.3.0" 2188 | jest-util "^26.3.0" 2189 | jsdom "^16.2.2" 2190 | 2191 | jest-environment-node@^26.3.0: 2192 | version "26.3.0" 2193 | resolved "https://registry.yarnpkg.com/jest-environment-node/-/jest-environment-node-26.3.0.tgz#56c6cfb506d1597f94ee8d717072bda7228df849" 2194 | dependencies: 2195 | "@jest/environment" "^26.3.0" 2196 | "@jest/fake-timers" "^26.3.0" 2197 | "@jest/types" "^26.3.0" 2198 | "@types/node" "*" 2199 | jest-mock "^26.3.0" 2200 | jest-util "^26.3.0" 2201 | 2202 | jest-get-type@^25.2.6: 2203 | version "25.2.6" 2204 | resolved "https://registry.yarnpkg.com/jest-get-type/-/jest-get-type-25.2.6.tgz#0b0a32fab8908b44d508be81681487dbabb8d877" 2205 | 2206 | jest-get-type@^26.3.0: 2207 | version "26.3.0" 2208 | resolved "https://registry.yarnpkg.com/jest-get-type/-/jest-get-type-26.3.0.tgz#e97dc3c3f53c2b406ca7afaed4493b1d099199e0" 2209 | 2210 | jest-haste-map@^26.3.0: 2211 | version "26.3.0" 2212 | resolved "https://registry.yarnpkg.com/jest-haste-map/-/jest-haste-map-26.3.0.tgz#c51a3b40100d53ab777bfdad382d2e7a00e5c726" 2213 | dependencies: 2214 | "@jest/types" "^26.3.0" 2215 | "@types/graceful-fs" "^4.1.2" 2216 | "@types/node" "*" 2217 | anymatch "^3.0.3" 2218 | fb-watchman "^2.0.0" 2219 | graceful-fs "^4.2.4" 2220 | jest-regex-util "^26.0.0" 2221 | jest-serializer "^26.3.0" 2222 | jest-util "^26.3.0" 2223 | jest-worker "^26.3.0" 2224 | micromatch "^4.0.2" 2225 | sane "^4.0.3" 2226 | walker "^1.0.7" 2227 | optionalDependencies: 2228 | fsevents "^2.1.2" 2229 | 2230 | jest-jasmine2@^26.4.2: 2231 | version "26.4.2" 2232 | resolved "https://registry.yarnpkg.com/jest-jasmine2/-/jest-jasmine2-26.4.2.tgz#18a9d5bec30904267ac5e9797570932aec1e2257" 2233 | dependencies: 2234 | "@babel/traverse" "^7.1.0" 2235 | "@jest/environment" "^26.3.0" 2236 | "@jest/source-map" "^26.3.0" 2237 | "@jest/test-result" "^26.3.0" 2238 | "@jest/types" "^26.3.0" 2239 | "@types/node" "*" 2240 | chalk "^4.0.0" 2241 | co "^4.6.0" 2242 | expect "^26.4.2" 2243 | is-generator-fn "^2.0.0" 2244 | jest-each "^26.4.2" 2245 | jest-matcher-utils "^26.4.2" 2246 | jest-message-util "^26.3.0" 2247 | jest-runtime "^26.4.2" 2248 | jest-snapshot "^26.4.2" 2249 | jest-util "^26.3.0" 2250 | pretty-format "^26.4.2" 2251 | throat "^5.0.0" 2252 | 2253 | jest-leak-detector@^26.4.2: 2254 | version "26.4.2" 2255 | resolved "https://registry.yarnpkg.com/jest-leak-detector/-/jest-leak-detector-26.4.2.tgz#c73e2fa8757bf905f6f66fb9e0070b70fa0f573f" 2256 | dependencies: 2257 | jest-get-type "^26.3.0" 2258 | pretty-format "^26.4.2" 2259 | 2260 | jest-matcher-utils@^26.4.2: 2261 | version "26.4.2" 2262 | resolved "https://registry.yarnpkg.com/jest-matcher-utils/-/jest-matcher-utils-26.4.2.tgz#fa81f3693f7cb67e5fc1537317525ef3b85f4b06" 2263 | dependencies: 2264 | chalk "^4.0.0" 2265 | jest-diff "^26.4.2" 2266 | jest-get-type "^26.3.0" 2267 | pretty-format "^26.4.2" 2268 | 2269 | jest-message-util@^26.3.0: 2270 | version "26.3.0" 2271 | resolved "https://registry.yarnpkg.com/jest-message-util/-/jest-message-util-26.3.0.tgz#3bdb538af27bb417f2d4d16557606fd082d5841a" 2272 | dependencies: 2273 | "@babel/code-frame" "^7.0.0" 2274 | "@jest/types" "^26.3.0" 2275 | "@types/stack-utils" "^1.0.1" 2276 | chalk "^4.0.0" 2277 | graceful-fs "^4.2.4" 2278 | micromatch "^4.0.2" 2279 | slash "^3.0.0" 2280 | stack-utils "^2.0.2" 2281 | 2282 | jest-mock@^26.3.0: 2283 | version "26.3.0" 2284 | resolved "https://registry.yarnpkg.com/jest-mock/-/jest-mock-26.3.0.tgz#ee62207c3c5ebe5f35b760e1267fee19a1cfdeba" 2285 | dependencies: 2286 | "@jest/types" "^26.3.0" 2287 | "@types/node" "*" 2288 | 2289 | jest-pnp-resolver@^1.2.2: 2290 | version "1.2.2" 2291 | resolved "https://registry.yarnpkg.com/jest-pnp-resolver/-/jest-pnp-resolver-1.2.2.tgz#b704ac0ae028a89108a4d040b3f919dfddc8e33c" 2292 | 2293 | jest-regex-util@^26.0.0: 2294 | version "26.0.0" 2295 | resolved "https://registry.yarnpkg.com/jest-regex-util/-/jest-regex-util-26.0.0.tgz#d25e7184b36e39fd466c3bc41be0971e821fee28" 2296 | 2297 | jest-resolve-dependencies@^26.4.2: 2298 | version "26.4.2" 2299 | resolved "https://registry.yarnpkg.com/jest-resolve-dependencies/-/jest-resolve-dependencies-26.4.2.tgz#739bdb027c14befb2fe5aabbd03f7bab355f1dc5" 2300 | dependencies: 2301 | "@jest/types" "^26.3.0" 2302 | jest-regex-util "^26.0.0" 2303 | jest-snapshot "^26.4.2" 2304 | 2305 | jest-resolve@^26.4.0: 2306 | version "26.4.0" 2307 | resolved "https://registry.yarnpkg.com/jest-resolve/-/jest-resolve-26.4.0.tgz#6dc0af7fb93e65b73fec0368ca2b76f3eb59a6d7" 2308 | dependencies: 2309 | "@jest/types" "^26.3.0" 2310 | chalk "^4.0.0" 2311 | graceful-fs "^4.2.4" 2312 | jest-pnp-resolver "^1.2.2" 2313 | jest-util "^26.3.0" 2314 | read-pkg-up "^7.0.1" 2315 | resolve "^1.17.0" 2316 | slash "^3.0.0" 2317 | 2318 | jest-runner@^26.4.2: 2319 | version "26.4.2" 2320 | resolved "https://registry.yarnpkg.com/jest-runner/-/jest-runner-26.4.2.tgz#c3ec5482c8edd31973bd3935df5a449a45b5b853" 2321 | dependencies: 2322 | "@jest/console" "^26.3.0" 2323 | "@jest/environment" "^26.3.0" 2324 | "@jest/test-result" "^26.3.0" 2325 | "@jest/types" "^26.3.0" 2326 | "@types/node" "*" 2327 | chalk "^4.0.0" 2328 | emittery "^0.7.1" 2329 | exit "^0.1.2" 2330 | graceful-fs "^4.2.4" 2331 | jest-config "^26.4.2" 2332 | jest-docblock "^26.0.0" 2333 | jest-haste-map "^26.3.0" 2334 | jest-leak-detector "^26.4.2" 2335 | jest-message-util "^26.3.0" 2336 | jest-resolve "^26.4.0" 2337 | jest-runtime "^26.4.2" 2338 | jest-util "^26.3.0" 2339 | jest-worker "^26.3.0" 2340 | source-map-support "^0.5.6" 2341 | throat "^5.0.0" 2342 | 2343 | jest-runtime@^26.4.2: 2344 | version "26.4.2" 2345 | resolved "https://registry.yarnpkg.com/jest-runtime/-/jest-runtime-26.4.2.tgz#94ce17890353c92e4206580c73a8f0c024c33c42" 2346 | dependencies: 2347 | "@jest/console" "^26.3.0" 2348 | "@jest/environment" "^26.3.0" 2349 | "@jest/fake-timers" "^26.3.0" 2350 | "@jest/globals" "^26.4.2" 2351 | "@jest/source-map" "^26.3.0" 2352 | "@jest/test-result" "^26.3.0" 2353 | "@jest/transform" "^26.3.0" 2354 | "@jest/types" "^26.3.0" 2355 | "@types/yargs" "^15.0.0" 2356 | chalk "^4.0.0" 2357 | collect-v8-coverage "^1.0.0" 2358 | exit "^0.1.2" 2359 | glob "^7.1.3" 2360 | graceful-fs "^4.2.4" 2361 | jest-config "^26.4.2" 2362 | jest-haste-map "^26.3.0" 2363 | jest-message-util "^26.3.0" 2364 | jest-mock "^26.3.0" 2365 | jest-regex-util "^26.0.0" 2366 | jest-resolve "^26.4.0" 2367 | jest-snapshot "^26.4.2" 2368 | jest-util "^26.3.0" 2369 | jest-validate "^26.4.2" 2370 | slash "^3.0.0" 2371 | strip-bom "^4.0.0" 2372 | yargs "^15.3.1" 2373 | 2374 | jest-serializer@^26.3.0: 2375 | version "26.3.0" 2376 | resolved "https://registry.yarnpkg.com/jest-serializer/-/jest-serializer-26.3.0.tgz#1c9d5e1b74d6e5f7e7f9627080fa205d976c33ef" 2377 | dependencies: 2378 | "@types/node" "*" 2379 | graceful-fs "^4.2.4" 2380 | 2381 | jest-snapshot@^26.4.2: 2382 | version "26.4.2" 2383 | resolved "https://registry.yarnpkg.com/jest-snapshot/-/jest-snapshot-26.4.2.tgz#87d3ac2f2bd87ea8003602fbebd8fcb9e94104f6" 2384 | dependencies: 2385 | "@babel/types" "^7.0.0" 2386 | "@jest/types" "^26.3.0" 2387 | "@types/prettier" "^2.0.0" 2388 | chalk "^4.0.0" 2389 | expect "^26.4.2" 2390 | graceful-fs "^4.2.4" 2391 | jest-diff "^26.4.2" 2392 | jest-get-type "^26.3.0" 2393 | jest-haste-map "^26.3.0" 2394 | jest-matcher-utils "^26.4.2" 2395 | jest-message-util "^26.3.0" 2396 | jest-resolve "^26.4.0" 2397 | natural-compare "^1.4.0" 2398 | pretty-format "^26.4.2" 2399 | semver "^7.3.2" 2400 | 2401 | jest-util@26.x, jest-util@^26.3.0: 2402 | version "26.3.0" 2403 | resolved "https://registry.yarnpkg.com/jest-util/-/jest-util-26.3.0.tgz#a8974b191df30e2bf523ebbfdbaeb8efca535b3e" 2404 | dependencies: 2405 | "@jest/types" "^26.3.0" 2406 | "@types/node" "*" 2407 | chalk "^4.0.0" 2408 | graceful-fs "^4.2.4" 2409 | is-ci "^2.0.0" 2410 | micromatch "^4.0.2" 2411 | 2412 | jest-validate@^26.4.2: 2413 | version "26.4.2" 2414 | resolved "https://registry.yarnpkg.com/jest-validate/-/jest-validate-26.4.2.tgz#e871b0dfe97747133014dcf6445ee8018398f39c" 2415 | dependencies: 2416 | "@jest/types" "^26.3.0" 2417 | camelcase "^6.0.0" 2418 | chalk "^4.0.0" 2419 | jest-get-type "^26.3.0" 2420 | leven "^3.1.0" 2421 | pretty-format "^26.4.2" 2422 | 2423 | jest-watcher@^26.3.0: 2424 | version "26.3.0" 2425 | resolved "https://registry.yarnpkg.com/jest-watcher/-/jest-watcher-26.3.0.tgz#f8ef3068ddb8af160ef868400318dc4a898eed08" 2426 | dependencies: 2427 | "@jest/test-result" "^26.3.0" 2428 | "@jest/types" "^26.3.0" 2429 | "@types/node" "*" 2430 | ansi-escapes "^4.2.1" 2431 | chalk "^4.0.0" 2432 | jest-util "^26.3.0" 2433 | string-length "^4.0.1" 2434 | 2435 | jest-worker@^26.3.0: 2436 | version "26.3.0" 2437 | resolved "https://registry.yarnpkg.com/jest-worker/-/jest-worker-26.3.0.tgz#7c8a97e4f4364b4f05ed8bca8ca0c24de091871f" 2438 | dependencies: 2439 | "@types/node" "*" 2440 | merge-stream "^2.0.0" 2441 | supports-color "^7.0.0" 2442 | 2443 | jest@^26.4.2: 2444 | version "26.4.2" 2445 | resolved "https://registry.yarnpkg.com/jest/-/jest-26.4.2.tgz#7e8bfb348ec33f5459adeaffc1a25d5752d9d312" 2446 | dependencies: 2447 | "@jest/core" "^26.4.2" 2448 | import-local "^3.0.2" 2449 | jest-cli "^26.4.2" 2450 | 2451 | js-tokens@^4.0.0: 2452 | version "4.0.0" 2453 | resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-4.0.0.tgz#19203fb59991df98e3a287050d4647cdeaf32499" 2454 | 2455 | js-yaml@^3.13.1: 2456 | version "3.14.0" 2457 | resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-3.14.0.tgz#a7a34170f26a21bb162424d8adacb4113a69e482" 2458 | dependencies: 2459 | argparse "^1.0.7" 2460 | esprima "^4.0.0" 2461 | 2462 | jsdom@^16.2.2: 2463 | version "16.7.0" 2464 | resolved "https://registry.yarnpkg.com/jsdom/-/jsdom-16.7.0.tgz#918ae71965424b197c819f8183a754e18977b710" 2465 | dependencies: 2466 | abab "^2.0.5" 2467 | acorn "^8.2.4" 2468 | acorn-globals "^6.0.0" 2469 | cssom "^0.4.4" 2470 | cssstyle "^2.3.0" 2471 | data-urls "^2.0.0" 2472 | decimal.js "^10.2.1" 2473 | domexception "^2.0.1" 2474 | escodegen "^2.0.0" 2475 | form-data "^3.0.0" 2476 | html-encoding-sniffer "^2.0.1" 2477 | http-proxy-agent "^4.0.1" 2478 | https-proxy-agent "^5.0.0" 2479 | is-potential-custom-element-name "^1.0.1" 2480 | nwsapi "^2.2.0" 2481 | parse5 "6.0.1" 2482 | saxes "^5.0.1" 2483 | symbol-tree "^3.2.4" 2484 | tough-cookie "^4.0.0" 2485 | w3c-hr-time "^1.0.2" 2486 | w3c-xmlserializer "^2.0.0" 2487 | webidl-conversions "^6.1.0" 2488 | whatwg-encoding "^1.0.5" 2489 | whatwg-mimetype "^2.3.0" 2490 | whatwg-url "^8.5.0" 2491 | ws "^7.4.6" 2492 | xml-name-validator "^3.0.0" 2493 | 2494 | jsesc@^2.5.1: 2495 | version "2.5.2" 2496 | resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-2.5.2.tgz#80564d2e483dacf6e8ef209650a67df3f0c283a4" 2497 | 2498 | json-parse-even-better-errors@^2.3.0: 2499 | version "2.3.1" 2500 | resolved "https://registry.yarnpkg.com/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz#7c47805a94319928e05777405dc12e1f7a4ee02d" 2501 | 2502 | json-schema-traverse@^0.4.1: 2503 | version "0.4.1" 2504 | resolved "https://registry.yarnpkg.com/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz#69f6a87d9513ab8bb8fe63bdb0979c448e684660" 2505 | 2506 | json-stable-stringify-without-jsonify@^1.0.1: 2507 | version "1.0.1" 2508 | resolved "https://registry.yarnpkg.com/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz#9db7b59496ad3f3cfef30a75142d2d930ad72651" 2509 | 2510 | json5@2.x, json5@^2.1.2: 2511 | version "2.1.3" 2512 | resolved "https://registry.yarnpkg.com/json5/-/json5-2.1.3.tgz#c9b0f7fa9233bfe5807fe66fcf3a5617ed597d43" 2513 | dependencies: 2514 | minimist "^1.2.5" 2515 | 2516 | json5@^1.0.1: 2517 | version "1.0.2" 2518 | resolved "https://registry.yarnpkg.com/json5/-/json5-1.0.2.tgz#63d98d60f21b313b77c4d6da18bfa69d80e1d593" 2519 | dependencies: 2520 | minimist "^1.2.0" 2521 | 2522 | kind-of@^3.0.2, kind-of@^3.0.3, kind-of@^3.2.0: 2523 | version "3.2.2" 2524 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-3.2.2.tgz#31ea21a734bab9bbb0f32466d893aea51e4a3c64" 2525 | dependencies: 2526 | is-buffer "^1.1.5" 2527 | 2528 | kind-of@^4.0.0: 2529 | version "4.0.0" 2530 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-4.0.0.tgz#20813df3d712928b207378691a45066fae72dd57" 2531 | dependencies: 2532 | is-buffer "^1.1.5" 2533 | 2534 | kind-of@^5.0.0: 2535 | version "5.1.0" 2536 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-5.1.0.tgz#729c91e2d857b7a419a1f9aa65685c4c33f5845d" 2537 | 2538 | kind-of@^6.0.0, kind-of@^6.0.2: 2539 | version "6.0.3" 2540 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-6.0.3.tgz#07c05034a6c349fa06e24fa35aa76db4580ce4dd" 2541 | 2542 | kleur@^3.0.3: 2543 | version "3.0.3" 2544 | resolved "https://registry.yarnpkg.com/kleur/-/kleur-3.0.3.tgz#a79c9ecc86ee1ce3fa6206d1216c501f147fc07e" 2545 | 2546 | leven@^3.1.0: 2547 | version "3.1.0" 2548 | resolved "https://registry.yarnpkg.com/leven/-/leven-3.1.0.tgz#77891de834064cccba82ae7842bb6b14a13ed7f2" 2549 | 2550 | levn@^0.4.1: 2551 | version "0.4.1" 2552 | resolved "https://registry.yarnpkg.com/levn/-/levn-0.4.1.tgz#ae4562c007473b932a6200d403268dd2fffc6ade" 2553 | dependencies: 2554 | prelude-ls "^1.2.1" 2555 | type-check "~0.4.0" 2556 | 2557 | levn@~0.3.0: 2558 | version "0.3.0" 2559 | resolved "https://registry.yarnpkg.com/levn/-/levn-0.3.0.tgz#3b09924edf9f083c0490fdd4c0bc4421e04764ee" 2560 | dependencies: 2561 | prelude-ls "~1.1.2" 2562 | type-check "~0.3.2" 2563 | 2564 | lines-and-columns@^1.1.6: 2565 | version "1.1.6" 2566 | resolved "https://registry.yarnpkg.com/lines-and-columns/-/lines-and-columns-1.1.6.tgz#1c00c743b433cd0a4e80758f7b64a57440d9ff00" 2567 | 2568 | load-json-file@^2.0.0: 2569 | version "2.0.0" 2570 | resolved "https://registry.yarnpkg.com/load-json-file/-/load-json-file-2.0.0.tgz#7947e42149af80d696cbf797bcaabcfe1fe29ca8" 2571 | dependencies: 2572 | graceful-fs "^4.1.2" 2573 | parse-json "^2.2.0" 2574 | pify "^2.0.0" 2575 | strip-bom "^3.0.0" 2576 | 2577 | locate-path@^2.0.0: 2578 | version "2.0.0" 2579 | resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-2.0.0.tgz#2b568b265eec944c6d9c0de9c3dbbbca0354cd8e" 2580 | dependencies: 2581 | p-locate "^2.0.0" 2582 | path-exists "^3.0.0" 2583 | 2584 | locate-path@^5.0.0: 2585 | version "5.0.0" 2586 | resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-5.0.0.tgz#1afba396afd676a6d42504d0a67a3a7eb9f62aa0" 2587 | dependencies: 2588 | p-locate "^4.1.0" 2589 | 2590 | lodash.memoize@4.x: 2591 | version "4.1.2" 2592 | resolved "https://registry.yarnpkg.com/lodash.memoize/-/lodash.memoize-4.1.2.tgz#bcc6c49a42a2840ed997f323eada5ecd182e0bfe" 2593 | 2594 | lodash@^4.17.14, lodash@^4.17.15, lodash@^4.17.19, lodash@^4.7.0: 2595 | version "4.17.21" 2596 | resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.21.tgz#679591c564c3bffaae8454cf0b3df370c3d6911c" 2597 | 2598 | lru-cache@^6.0.0: 2599 | version "6.0.0" 2600 | resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-6.0.0.tgz#6d6fe6570ebd96aaf90fcad1dafa3b2566db3a94" 2601 | dependencies: 2602 | yallist "^4.0.0" 2603 | 2604 | make-dir@^3.0.0: 2605 | version "3.1.0" 2606 | resolved "https://registry.yarnpkg.com/make-dir/-/make-dir-3.1.0.tgz#415e967046b3a7f1d185277d84aa58203726a13f" 2607 | dependencies: 2608 | semver "^6.0.0" 2609 | 2610 | make-error@1.x: 2611 | version "1.3.6" 2612 | resolved "https://registry.yarnpkg.com/make-error/-/make-error-1.3.6.tgz#2eb2e37ea9b67c4891f684a1394799af484cf7a2" 2613 | 2614 | makeerror@1.0.x: 2615 | version "1.0.11" 2616 | resolved "https://registry.yarnpkg.com/makeerror/-/makeerror-1.0.11.tgz#e01a5c9109f2af79660e4e8b9587790184f5a96c" 2617 | dependencies: 2618 | tmpl "1.0.x" 2619 | 2620 | map-cache@^0.2.2: 2621 | version "0.2.2" 2622 | resolved "https://registry.yarnpkg.com/map-cache/-/map-cache-0.2.2.tgz#c32abd0bd6525d9b051645bb4f26ac5dc98a0dbf" 2623 | 2624 | map-visit@^1.0.0: 2625 | version "1.0.0" 2626 | resolved "https://registry.yarnpkg.com/map-visit/-/map-visit-1.0.0.tgz#ecdca8f13144e660f1b5bd41f12f3479d98dfb8f" 2627 | dependencies: 2628 | object-visit "^1.0.0" 2629 | 2630 | merge-stream@^2.0.0: 2631 | version "2.0.0" 2632 | resolved "https://registry.yarnpkg.com/merge-stream/-/merge-stream-2.0.0.tgz#52823629a14dd00c9770fb6ad47dc6310f2c1f60" 2633 | 2634 | merge2@^1.3.0: 2635 | version "1.4.1" 2636 | resolved "https://registry.yarnpkg.com/merge2/-/merge2-1.4.1.tgz#4368892f885e907455a6fd7dc55c0c9d404990ae" 2637 | 2638 | micromatch@^3.1.4: 2639 | version "3.1.10" 2640 | resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-3.1.10.tgz#70859bc95c9840952f359a068a3fc49f9ecfac23" 2641 | dependencies: 2642 | arr-diff "^4.0.0" 2643 | array-unique "^0.3.2" 2644 | braces "^2.3.1" 2645 | define-property "^2.0.2" 2646 | extend-shallow "^3.0.2" 2647 | extglob "^2.0.4" 2648 | fragment-cache "^0.2.1" 2649 | kind-of "^6.0.2" 2650 | nanomatch "^1.2.9" 2651 | object.pick "^1.3.0" 2652 | regex-not "^1.0.0" 2653 | snapdragon "^0.8.1" 2654 | to-regex "^3.0.2" 2655 | 2656 | micromatch@^4.0.2: 2657 | version "4.0.2" 2658 | resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-4.0.2.tgz#4fcb0999bf9fbc2fcbdd212f6d629b9a56c39259" 2659 | dependencies: 2660 | braces "^3.0.1" 2661 | picomatch "^2.0.5" 2662 | 2663 | mime-db@1.52.0: 2664 | version "1.52.0" 2665 | resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.52.0.tgz#bbabcdc02859f4987301c856e3387ce5ec43bf70" 2666 | 2667 | mime-types@^2.1.12: 2668 | version "2.1.35" 2669 | resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.35.tgz#381a871b62a734450660ae3deee44813f70d959a" 2670 | dependencies: 2671 | mime-db "1.52.0" 2672 | 2673 | mimic-fn@^2.1.0: 2674 | version "2.1.0" 2675 | resolved "https://registry.yarnpkg.com/mimic-fn/-/mimic-fn-2.1.0.tgz#7ed2c2ccccaf84d3ffcb7a69b57711fc2083401b" 2676 | 2677 | minimatch@^3.0.4: 2678 | version "3.1.2" 2679 | resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.1.2.tgz#19cd194bfd3e428f049a70817c038d89ab4be35b" 2680 | dependencies: 2681 | brace-expansion "^1.1.7" 2682 | 2683 | minimist@^1.1.1, minimist@^1.2.0, minimist@^1.2.5: 2684 | version "1.2.7" 2685 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.7.tgz#daa1c4d91f507390437c6a8bc01078e7000c4d18" 2686 | 2687 | mixin-deep@^1.2.0: 2688 | version "1.3.2" 2689 | resolved "https://registry.yarnpkg.com/mixin-deep/-/mixin-deep-1.3.2.tgz#1120b43dc359a785dce65b55b82e257ccf479566" 2690 | dependencies: 2691 | for-in "^1.0.2" 2692 | is-extendable "^1.0.1" 2693 | 2694 | mkdirp@1.x: 2695 | version "1.0.4" 2696 | resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-1.0.4.tgz#3eb5ed62622756d79a5f0e2a221dfebad75c2f7e" 2697 | 2698 | mkdirp@^0.5.1: 2699 | version "0.5.5" 2700 | resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.5.5.tgz#d91cefd62d1436ca0f41620e251288d420099def" 2701 | dependencies: 2702 | minimist "^1.2.5" 2703 | 2704 | mri@^1.1.5: 2705 | version "1.1.6" 2706 | resolved "https://registry.yarnpkg.com/mri/-/mri-1.1.6.tgz#49952e1044db21dbf90f6cd92bc9c9a777d415a6" 2707 | 2708 | ms@2.0.0: 2709 | version "2.0.0" 2710 | resolved "https://registry.yarnpkg.com/ms/-/ms-2.0.0.tgz#5608aeadfc00be6c2901df5f9861788de0d597c8" 2711 | 2712 | ms@2.1.2, ms@^2.1.1: 2713 | version "2.1.2" 2714 | resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.2.tgz#d09d1f357b443f493382a8eb3ccd183872ae6009" 2715 | 2716 | multimatch@^4.0.0: 2717 | version "4.0.0" 2718 | resolved "https://registry.yarnpkg.com/multimatch/-/multimatch-4.0.0.tgz#8c3c0f6e3e8449ada0af3dd29efb491a375191b3" 2719 | dependencies: 2720 | "@types/minimatch" "^3.0.3" 2721 | array-differ "^3.0.0" 2722 | array-union "^2.1.0" 2723 | arrify "^2.0.1" 2724 | minimatch "^3.0.4" 2725 | 2726 | nanomatch@^1.2.9: 2727 | version "1.2.13" 2728 | resolved "https://registry.yarnpkg.com/nanomatch/-/nanomatch-1.2.13.tgz#b87a8aa4fc0de8fe6be88895b38983ff265bd119" 2729 | dependencies: 2730 | arr-diff "^4.0.0" 2731 | array-unique "^0.3.2" 2732 | define-property "^2.0.2" 2733 | extend-shallow "^3.0.2" 2734 | fragment-cache "^0.2.1" 2735 | is-windows "^1.0.2" 2736 | kind-of "^6.0.2" 2737 | object.pick "^1.3.0" 2738 | regex-not "^1.0.0" 2739 | snapdragon "^0.8.1" 2740 | to-regex "^3.0.1" 2741 | 2742 | natural-compare@^1.4.0: 2743 | version "1.4.0" 2744 | resolved "https://registry.yarnpkg.com/natural-compare/-/natural-compare-1.4.0.tgz#4abebfeed7541f2c27acfb29bdbbd15c8d5ba4f7" 2745 | 2746 | nice-try@^1.0.4: 2747 | version "1.0.5" 2748 | resolved "https://registry.yarnpkg.com/nice-try/-/nice-try-1.0.5.tgz#a3378a7696ce7d223e88fc9b764bd7ef1089e366" 2749 | 2750 | node-int64@^0.4.0: 2751 | version "0.4.0" 2752 | resolved "https://registry.yarnpkg.com/node-int64/-/node-int64-0.4.0.tgz#87a9065cdb355d3182d8f94ce11188b825c68a3b" 2753 | 2754 | node-modules-regexp@^1.0.0: 2755 | version "1.0.0" 2756 | resolved "https://registry.yarnpkg.com/node-modules-regexp/-/node-modules-regexp-1.0.0.tgz#8d9dbe28964a4ac5712e9131642107c71e90ec40" 2757 | 2758 | node-notifier@^8.0.0: 2759 | version "8.0.1" 2760 | resolved "https://registry.yarnpkg.com/node-notifier/-/node-notifier-8.0.1.tgz#f86e89bbc925f2b068784b31f382afdc6ca56be1" 2761 | dependencies: 2762 | growly "^1.3.0" 2763 | is-wsl "^2.2.0" 2764 | semver "^7.3.2" 2765 | shellwords "^0.1.1" 2766 | uuid "^8.3.0" 2767 | which "^2.0.2" 2768 | 2769 | normalize-package-data@^2.3.2, normalize-package-data@^2.5.0: 2770 | version "2.5.0" 2771 | resolved "https://registry.yarnpkg.com/normalize-package-data/-/normalize-package-data-2.5.0.tgz#e66db1838b200c1dfc233225d12cb36520e234a8" 2772 | dependencies: 2773 | hosted-git-info "^2.1.4" 2774 | resolve "^1.10.0" 2775 | semver "2 || 3 || 4 || 5" 2776 | validate-npm-package-license "^3.0.1" 2777 | 2778 | normalize-path@^2.1.1: 2779 | version "2.1.1" 2780 | resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-2.1.1.tgz#1ab28b556e198363a8c1a6f7e6fa20137fe6aed9" 2781 | dependencies: 2782 | remove-trailing-separator "^1.0.1" 2783 | 2784 | normalize-path@^3.0.0: 2785 | version "3.0.0" 2786 | resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-3.0.0.tgz#0dcd69ff23a1c9b11fd0978316644a0388216a65" 2787 | 2788 | npm-run-path@^2.0.0: 2789 | version "2.0.2" 2790 | resolved "https://registry.yarnpkg.com/npm-run-path/-/npm-run-path-2.0.2.tgz#35a9232dfa35d7067b4cb2ddf2357b1871536c5f" 2791 | dependencies: 2792 | path-key "^2.0.0" 2793 | 2794 | npm-run-path@^4.0.0: 2795 | version "4.0.1" 2796 | resolved "https://registry.yarnpkg.com/npm-run-path/-/npm-run-path-4.0.1.tgz#b7ecd1e5ed53da8e37a55e1c2269e0b97ed748ea" 2797 | dependencies: 2798 | path-key "^3.0.0" 2799 | 2800 | nwsapi@^2.2.0: 2801 | version "2.2.0" 2802 | resolved "https://registry.yarnpkg.com/nwsapi/-/nwsapi-2.2.0.tgz#204879a9e3d068ff2a55139c2c772780681a38b7" 2803 | 2804 | object-copy@^0.1.0: 2805 | version "0.1.0" 2806 | resolved "https://registry.yarnpkg.com/object-copy/-/object-copy-0.1.0.tgz#7e7d858b781bd7c991a41ba975ed3812754e998c" 2807 | dependencies: 2808 | copy-descriptor "^0.1.0" 2809 | define-property "^0.2.5" 2810 | kind-of "^3.0.3" 2811 | 2812 | object-inspect@^1.7.0, object-inspect@^1.8.0: 2813 | version "1.8.0" 2814 | resolved "https://registry.yarnpkg.com/object-inspect/-/object-inspect-1.8.0.tgz#df807e5ecf53a609cc6bfe93eac3cc7be5b3a9d0" 2815 | 2816 | object-keys@^1.0.12, object-keys@^1.1.1: 2817 | version "1.1.1" 2818 | resolved "https://registry.yarnpkg.com/object-keys/-/object-keys-1.1.1.tgz#1c47f272df277f3b1daf061677d9c82e2322c60e" 2819 | 2820 | object-visit@^1.0.0: 2821 | version "1.0.1" 2822 | resolved "https://registry.yarnpkg.com/object-visit/-/object-visit-1.0.1.tgz#f79c4493af0c5377b59fe39d395e41042dd045bb" 2823 | dependencies: 2824 | isobject "^3.0.0" 2825 | 2826 | object.assign@^4.1.0: 2827 | version "4.1.1" 2828 | resolved "https://registry.yarnpkg.com/object.assign/-/object.assign-4.1.1.tgz#303867a666cdd41936ecdedfb1f8f3e32a478cdd" 2829 | dependencies: 2830 | define-properties "^1.1.3" 2831 | es-abstract "^1.18.0-next.0" 2832 | has-symbols "^1.0.1" 2833 | object-keys "^1.1.1" 2834 | 2835 | object.pick@^1.3.0: 2836 | version "1.3.0" 2837 | resolved "https://registry.yarnpkg.com/object.pick/-/object.pick-1.3.0.tgz#87a10ac4c1694bd2e1cbf53591a66141fb5dd747" 2838 | dependencies: 2839 | isobject "^3.0.1" 2840 | 2841 | object.values@^1.1.1: 2842 | version "1.1.1" 2843 | resolved "https://registry.yarnpkg.com/object.values/-/object.values-1.1.1.tgz#68a99ecde356b7e9295a3c5e0ce31dc8c953de5e" 2844 | dependencies: 2845 | define-properties "^1.1.3" 2846 | es-abstract "^1.17.0-next.1" 2847 | function-bind "^1.1.1" 2848 | has "^1.0.3" 2849 | 2850 | once@^1.3.0, once@^1.3.1, once@^1.4.0: 2851 | version "1.4.0" 2852 | resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1" 2853 | dependencies: 2854 | wrappy "1" 2855 | 2856 | onetime@^5.1.0: 2857 | version "5.1.2" 2858 | resolved "https://registry.yarnpkg.com/onetime/-/onetime-5.1.2.tgz#d0e96ebb56b07476df1dd9c4806e5237985ca45e" 2859 | dependencies: 2860 | mimic-fn "^2.1.0" 2861 | 2862 | opencollective-postinstall@^2.0.2: 2863 | version "2.0.3" 2864 | resolved "https://registry.yarnpkg.com/opencollective-postinstall/-/opencollective-postinstall-2.0.3.tgz#7a0fff978f6dbfa4d006238fbac98ed4198c3259" 2865 | 2866 | optionator@^0.8.1: 2867 | version "0.8.3" 2868 | resolved "https://registry.yarnpkg.com/optionator/-/optionator-0.8.3.tgz#84fa1d036fe9d3c7e21d99884b601167ec8fb495" 2869 | dependencies: 2870 | deep-is "~0.1.3" 2871 | fast-levenshtein "~2.0.6" 2872 | levn "~0.3.0" 2873 | prelude-ls "~1.1.2" 2874 | type-check "~0.3.2" 2875 | word-wrap "~1.2.3" 2876 | 2877 | optionator@^0.9.1: 2878 | version "0.9.1" 2879 | resolved "https://registry.yarnpkg.com/optionator/-/optionator-0.9.1.tgz#4f236a6373dae0566a6d43e1326674f50c291499" 2880 | dependencies: 2881 | deep-is "^0.1.3" 2882 | fast-levenshtein "^2.0.6" 2883 | levn "^0.4.1" 2884 | prelude-ls "^1.2.1" 2885 | type-check "^0.4.0" 2886 | word-wrap "^1.2.3" 2887 | 2888 | p-each-series@^2.1.0: 2889 | version "2.1.0" 2890 | resolved "https://registry.yarnpkg.com/p-each-series/-/p-each-series-2.1.0.tgz#961c8dd3f195ea96c747e636b262b800a6b1af48" 2891 | 2892 | p-finally@^1.0.0: 2893 | version "1.0.0" 2894 | resolved "https://registry.yarnpkg.com/p-finally/-/p-finally-1.0.0.tgz#3fbcfb15b899a44123b34b6dcc18b724336a2cae" 2895 | 2896 | p-limit@^1.1.0: 2897 | version "1.3.0" 2898 | resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-1.3.0.tgz#b86bd5f0c25690911c7590fcbfc2010d54b3ccb8" 2899 | dependencies: 2900 | p-try "^1.0.0" 2901 | 2902 | p-limit@^2.2.0: 2903 | version "2.3.0" 2904 | resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-2.3.0.tgz#3dd33c647a214fdfffd835933eb086da0dc21db1" 2905 | dependencies: 2906 | p-try "^2.0.0" 2907 | 2908 | p-locate@^2.0.0: 2909 | version "2.0.0" 2910 | resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-2.0.0.tgz#20a0103b222a70c8fd39cc2e580680f3dde5ec43" 2911 | dependencies: 2912 | p-limit "^1.1.0" 2913 | 2914 | p-locate@^4.1.0: 2915 | version "4.1.0" 2916 | resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-4.1.0.tgz#a3428bb7088b3a60292f66919278b7c297ad4f07" 2917 | dependencies: 2918 | p-limit "^2.2.0" 2919 | 2920 | p-try@^1.0.0: 2921 | version "1.0.0" 2922 | resolved "https://registry.yarnpkg.com/p-try/-/p-try-1.0.0.tgz#cbc79cdbaf8fd4228e13f621f2b1a237c1b207b3" 2923 | 2924 | p-try@^2.0.0: 2925 | version "2.2.0" 2926 | resolved "https://registry.yarnpkg.com/p-try/-/p-try-2.2.0.tgz#cb2868540e313d61de58fafbe35ce9004d5540e6" 2927 | 2928 | parent-module@^1.0.0: 2929 | version "1.0.1" 2930 | resolved "https://registry.yarnpkg.com/parent-module/-/parent-module-1.0.1.tgz#691d2709e78c79fae3a156622452d00762caaaa2" 2931 | dependencies: 2932 | callsites "^3.0.0" 2933 | 2934 | parse-json@^2.2.0: 2935 | version "2.2.0" 2936 | resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-2.2.0.tgz#f480f40434ef80741f8469099f8dea18f55a4dc9" 2937 | dependencies: 2938 | error-ex "^1.2.0" 2939 | 2940 | parse-json@^5.0.0: 2941 | version "5.1.0" 2942 | resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-5.1.0.tgz#f96088cdf24a8faa9aea9a009f2d9d942c999646" 2943 | dependencies: 2944 | "@babel/code-frame" "^7.0.0" 2945 | error-ex "^1.3.1" 2946 | json-parse-even-better-errors "^2.3.0" 2947 | lines-and-columns "^1.1.6" 2948 | 2949 | parse5@6.0.1: 2950 | version "6.0.1" 2951 | resolved "https://registry.yarnpkg.com/parse5/-/parse5-6.0.1.tgz#e1a1c085c569b3dc08321184f19a39cc27f7c30b" 2952 | 2953 | pascalcase@^0.1.1: 2954 | version "0.1.1" 2955 | resolved "https://registry.yarnpkg.com/pascalcase/-/pascalcase-0.1.1.tgz#b363e55e8006ca6fe21784d2db22bd15d7917f14" 2956 | 2957 | path-exists@^3.0.0: 2958 | version "3.0.0" 2959 | resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-3.0.0.tgz#ce0ebeaa5f78cb18925ea7d810d7b59b010fd515" 2960 | 2961 | path-exists@^4.0.0: 2962 | version "4.0.0" 2963 | resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-4.0.0.tgz#513bdbe2d3b95d7762e8c1137efa195c6c61b5b3" 2964 | 2965 | path-is-absolute@^1.0.0: 2966 | version "1.0.1" 2967 | resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f" 2968 | 2969 | path-key@^2.0.0, path-key@^2.0.1: 2970 | version "2.0.1" 2971 | resolved "https://registry.yarnpkg.com/path-key/-/path-key-2.0.1.tgz#411cadb574c5a140d3a4b1910d40d80cc9f40b40" 2972 | 2973 | path-key@^3.0.0, path-key@^3.1.0: 2974 | version "3.1.1" 2975 | resolved "https://registry.yarnpkg.com/path-key/-/path-key-3.1.1.tgz#581f6ade658cbba65a0d3380de7753295054f375" 2976 | 2977 | path-parse@^1.0.6: 2978 | version "1.0.7" 2979 | resolved "https://registry.yarnpkg.com/path-parse/-/path-parse-1.0.7.tgz#fbc114b60ca42b30d9daf5858e4bd68bbedb6735" 2980 | 2981 | path-type@^2.0.0: 2982 | version "2.0.0" 2983 | resolved "https://registry.yarnpkg.com/path-type/-/path-type-2.0.0.tgz#f012ccb8415b7096fc2daa1054c3d72389594c73" 2984 | dependencies: 2985 | pify "^2.0.0" 2986 | 2987 | path-type@^4.0.0: 2988 | version "4.0.0" 2989 | resolved "https://registry.yarnpkg.com/path-type/-/path-type-4.0.0.tgz#84ed01c0a7ba380afe09d90a8c180dcd9d03043b" 2990 | 2991 | picomatch@^2.0.4, picomatch@^2.0.5, picomatch@^2.2.1: 2992 | version "2.2.2" 2993 | resolved "https://registry.yarnpkg.com/picomatch/-/picomatch-2.2.2.tgz#21f333e9b6b8eaff02468f5146ea406d345f4dad" 2994 | 2995 | pify@^2.0.0: 2996 | version "2.3.0" 2997 | resolved "https://registry.yarnpkg.com/pify/-/pify-2.3.0.tgz#ed141a6ac043a849ea588498e7dca8b15330e90c" 2998 | 2999 | pirates@^4.0.1: 3000 | version "4.0.1" 3001 | resolved "https://registry.yarnpkg.com/pirates/-/pirates-4.0.1.tgz#643a92caf894566f91b2b986d2c66950a8e2fb87" 3002 | dependencies: 3003 | node-modules-regexp "^1.0.0" 3004 | 3005 | pkg-dir@^2.0.0: 3006 | version "2.0.0" 3007 | resolved "https://registry.yarnpkg.com/pkg-dir/-/pkg-dir-2.0.0.tgz#f6d5d1109e19d63edf428e0bd57e12777615334b" 3008 | dependencies: 3009 | find-up "^2.1.0" 3010 | 3011 | pkg-dir@^4.2.0: 3012 | version "4.2.0" 3013 | resolved "https://registry.yarnpkg.com/pkg-dir/-/pkg-dir-4.2.0.tgz#f099133df7ede422e81d1d8448270eeb3e4261f3" 3014 | dependencies: 3015 | find-up "^4.0.0" 3016 | 3017 | please-upgrade-node@^3.2.0: 3018 | version "3.2.0" 3019 | resolved "https://registry.yarnpkg.com/please-upgrade-node/-/please-upgrade-node-3.2.0.tgz#aeddd3f994c933e4ad98b99d9a556efa0e2fe942" 3020 | dependencies: 3021 | semver-compare "^1.0.0" 3022 | 3023 | posix-character-classes@^0.1.0: 3024 | version "0.1.1" 3025 | resolved "https://registry.yarnpkg.com/posix-character-classes/-/posix-character-classes-0.1.1.tgz#01eac0fe3b5af71a2a6c02feabb8c1fef7e00eab" 3026 | 3027 | prelude-ls@^1.2.1: 3028 | version "1.2.1" 3029 | resolved "https://registry.yarnpkg.com/prelude-ls/-/prelude-ls-1.2.1.tgz#debc6489d7a6e6b0e7611888cec880337d316396" 3030 | 3031 | prelude-ls@~1.1.2: 3032 | version "1.1.2" 3033 | resolved "https://registry.yarnpkg.com/prelude-ls/-/prelude-ls-1.1.2.tgz#21932a549f5e52ffd9a827f570e04be62a97da54" 3034 | 3035 | prettier@^2.1.1: 3036 | version "2.1.1" 3037 | resolved "https://registry.yarnpkg.com/prettier/-/prettier-2.1.1.tgz#d9485dd5e499daa6cb547023b87a6cf51bee37d6" 3038 | 3039 | pretty-format@^25.2.1, pretty-format@^25.5.0: 3040 | version "25.5.0" 3041 | resolved "https://registry.yarnpkg.com/pretty-format/-/pretty-format-25.5.0.tgz#7873c1d774f682c34b8d48b6743a2bf2ac55791a" 3042 | dependencies: 3043 | "@jest/types" "^25.5.0" 3044 | ansi-regex "^5.0.0" 3045 | ansi-styles "^4.0.0" 3046 | react-is "^16.12.0" 3047 | 3048 | pretty-format@^26.4.2: 3049 | version "26.4.2" 3050 | resolved "https://registry.yarnpkg.com/pretty-format/-/pretty-format-26.4.2.tgz#d081d032b398e801e2012af2df1214ef75a81237" 3051 | dependencies: 3052 | "@jest/types" "^26.3.0" 3053 | ansi-regex "^5.0.0" 3054 | ansi-styles "^4.0.0" 3055 | react-is "^16.12.0" 3056 | 3057 | pretty-quick@^3.0.2: 3058 | version "3.0.2" 3059 | resolved "https://registry.yarnpkg.com/pretty-quick/-/pretty-quick-3.0.2.tgz#7ed460f7e43a647b1044ad8b7f41a0c8a7f1c51c" 3060 | dependencies: 3061 | chalk "^3.0.0" 3062 | execa "^4.0.0" 3063 | find-up "^4.1.0" 3064 | ignore "^5.1.4" 3065 | mri "^1.1.5" 3066 | multimatch "^4.0.0" 3067 | 3068 | progress@^2.0.0: 3069 | version "2.0.3" 3070 | resolved "https://registry.yarnpkg.com/progress/-/progress-2.0.3.tgz#7e8cf8d8f5b8f239c1bc68beb4eb78567d572ef8" 3071 | 3072 | prompts@^2.0.1: 3073 | version "2.3.2" 3074 | resolved "https://registry.yarnpkg.com/prompts/-/prompts-2.3.2.tgz#480572d89ecf39566d2bd3fe2c9fccb7c4c0b068" 3075 | dependencies: 3076 | kleur "^3.0.3" 3077 | sisteransi "^1.0.4" 3078 | 3079 | psl@^1.1.33: 3080 | version "1.8.0" 3081 | resolved "https://registry.yarnpkg.com/psl/-/psl-1.8.0.tgz#9326f8bcfb013adcc005fdff056acce020e51c24" 3082 | 3083 | pump@^3.0.0: 3084 | version "3.0.0" 3085 | resolved "https://registry.yarnpkg.com/pump/-/pump-3.0.0.tgz#b4a2116815bde2f4e1ea602354e8c75565107a64" 3086 | dependencies: 3087 | end-of-stream "^1.1.0" 3088 | once "^1.3.1" 3089 | 3090 | punycode@^2.1.0, punycode@^2.1.1: 3091 | version "2.1.1" 3092 | resolved "https://registry.yarnpkg.com/punycode/-/punycode-2.1.1.tgz#b58b010ac40c22c5657616c8d2c2c02c7bf479ec" 3093 | 3094 | react-is@^16.12.0: 3095 | version "16.13.1" 3096 | resolved "https://registry.yarnpkg.com/react-is/-/react-is-16.13.1.tgz#789729a4dc36de2999dc156dd6c1d9c18cea56a4" 3097 | 3098 | read-pkg-up@^2.0.0: 3099 | version "2.0.0" 3100 | resolved "https://registry.yarnpkg.com/read-pkg-up/-/read-pkg-up-2.0.0.tgz#6b72a8048984e0c41e79510fd5e9fa99b3b549be" 3101 | dependencies: 3102 | find-up "^2.0.0" 3103 | read-pkg "^2.0.0" 3104 | 3105 | read-pkg-up@^7.0.1: 3106 | version "7.0.1" 3107 | resolved "https://registry.yarnpkg.com/read-pkg-up/-/read-pkg-up-7.0.1.tgz#f3a6135758459733ae2b95638056e1854e7ef507" 3108 | dependencies: 3109 | find-up "^4.1.0" 3110 | read-pkg "^5.2.0" 3111 | type-fest "^0.8.1" 3112 | 3113 | read-pkg@^2.0.0: 3114 | version "2.0.0" 3115 | resolved "https://registry.yarnpkg.com/read-pkg/-/read-pkg-2.0.0.tgz#8ef1c0623c6a6db0dc6713c4bfac46332b2368f8" 3116 | dependencies: 3117 | load-json-file "^2.0.0" 3118 | normalize-package-data "^2.3.2" 3119 | path-type "^2.0.0" 3120 | 3121 | read-pkg@^5.2.0: 3122 | version "5.2.0" 3123 | resolved "https://registry.yarnpkg.com/read-pkg/-/read-pkg-5.2.0.tgz#7bf295438ca5a33e56cd30e053b34ee7250c93cc" 3124 | dependencies: 3125 | "@types/normalize-package-data" "^2.4.0" 3126 | normalize-package-data "^2.5.0" 3127 | parse-json "^5.0.0" 3128 | type-fest "^0.6.0" 3129 | 3130 | regex-not@^1.0.0, regex-not@^1.0.2: 3131 | version "1.0.2" 3132 | resolved "https://registry.yarnpkg.com/regex-not/-/regex-not-1.0.2.tgz#1f4ece27e00b0b65e0247a6810e6a85d83a5752c" 3133 | dependencies: 3134 | extend-shallow "^3.0.2" 3135 | safe-regex "^1.1.0" 3136 | 3137 | regexpp@^3.0.0, regexpp@^3.1.0: 3138 | version "3.1.0" 3139 | resolved "https://registry.yarnpkg.com/regexpp/-/regexpp-3.1.0.tgz#206d0ad0a5648cffbdb8ae46438f3dc51c9f78e2" 3140 | 3141 | remove-trailing-separator@^1.0.1: 3142 | version "1.1.0" 3143 | resolved "https://registry.yarnpkg.com/remove-trailing-separator/-/remove-trailing-separator-1.1.0.tgz#c24bce2a283adad5bc3f58e0d48249b92379d8ef" 3144 | 3145 | repeat-element@^1.1.2: 3146 | version "1.1.3" 3147 | resolved "https://registry.yarnpkg.com/repeat-element/-/repeat-element-1.1.3.tgz#782e0d825c0c5a3bb39731f84efee6b742e6b1ce" 3148 | 3149 | repeat-string@^1.6.1: 3150 | version "1.6.1" 3151 | resolved "https://registry.yarnpkg.com/repeat-string/-/repeat-string-1.6.1.tgz#8dcae470e1c88abc2d600fff4a776286da75e637" 3152 | 3153 | require-directory@^2.1.1: 3154 | version "2.1.1" 3155 | resolved "https://registry.yarnpkg.com/require-directory/-/require-directory-2.1.1.tgz#8c64ad5fd30dab1c976e2344ffe7f792a6a6df42" 3156 | 3157 | require-main-filename@^2.0.0: 3158 | version "2.0.0" 3159 | resolved "https://registry.yarnpkg.com/require-main-filename/-/require-main-filename-2.0.0.tgz#d0b329ecc7cc0f61649f62215be69af54aa8989b" 3160 | 3161 | resolve-cwd@^3.0.0: 3162 | version "3.0.0" 3163 | resolved "https://registry.yarnpkg.com/resolve-cwd/-/resolve-cwd-3.0.0.tgz#0f0075f1bb2544766cf73ba6a6e2adfebcb13f2d" 3164 | dependencies: 3165 | resolve-from "^5.0.0" 3166 | 3167 | resolve-from@^4.0.0: 3168 | version "4.0.0" 3169 | resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-4.0.0.tgz#4abcd852ad32dd7baabfe9b40e00a36db5f392e6" 3170 | 3171 | resolve-from@^5.0.0: 3172 | version "5.0.0" 3173 | resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-5.0.0.tgz#c35225843df8f776df21c57557bc087e9dfdfc69" 3174 | 3175 | resolve-url@^0.2.1: 3176 | version "0.2.1" 3177 | resolved "https://registry.yarnpkg.com/resolve-url/-/resolve-url-0.2.1.tgz#2c637fe77c893afd2a663fe21aa9080068e2052a" 3178 | 3179 | resolve@^1.10.0, resolve@^1.13.1, resolve@^1.17.0, resolve@^1.3.2: 3180 | version "1.17.0" 3181 | resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.17.0.tgz#b25941b54968231cc2d1bb76a79cb7f2c0bf8444" 3182 | dependencies: 3183 | path-parse "^1.0.6" 3184 | 3185 | ret@~0.1.10: 3186 | version "0.1.15" 3187 | resolved "https://registry.yarnpkg.com/ret/-/ret-0.1.15.tgz#b8a4825d5bdb1fc3f6f53c2bc33f81388681c7bc" 3188 | 3189 | reusify@^1.0.4: 3190 | version "1.0.4" 3191 | resolved "https://registry.yarnpkg.com/reusify/-/reusify-1.0.4.tgz#90da382b1e126efc02146e90845a88db12925d76" 3192 | 3193 | rimraf@2.6.3: 3194 | version "2.6.3" 3195 | resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.6.3.tgz#b2d104fe0d8fb27cf9e0a1cda8262dd3833c6cab" 3196 | dependencies: 3197 | glob "^7.1.3" 3198 | 3199 | rimraf@^3.0.0: 3200 | version "3.0.2" 3201 | resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-3.0.2.tgz#f1a5402ba6220ad52cc1282bac1ae3aa49fd061a" 3202 | dependencies: 3203 | glob "^7.1.3" 3204 | 3205 | rsvp@^4.8.4: 3206 | version "4.8.5" 3207 | resolved "https://registry.yarnpkg.com/rsvp/-/rsvp-4.8.5.tgz#c8f155311d167f68f21e168df71ec5b083113734" 3208 | 3209 | run-parallel@^1.1.9: 3210 | version "1.1.9" 3211 | resolved "https://registry.yarnpkg.com/run-parallel/-/run-parallel-1.1.9.tgz#c9dd3a7cf9f4b2c4b6244e173a6ed866e61dd679" 3212 | 3213 | safe-buffer@~5.1.1: 3214 | version "5.1.2" 3215 | resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.1.2.tgz#991ec69d296e0313747d59bdfd2b745c35f8828d" 3216 | 3217 | safe-regex@^1.1.0: 3218 | version "1.1.0" 3219 | resolved "https://registry.yarnpkg.com/safe-regex/-/safe-regex-1.1.0.tgz#40a3669f3b077d1e943d44629e157dd48023bf2e" 3220 | dependencies: 3221 | ret "~0.1.10" 3222 | 3223 | "safer-buffer@>= 2.1.2 < 3": 3224 | version "2.1.2" 3225 | resolved "https://registry.yarnpkg.com/safer-buffer/-/safer-buffer-2.1.2.tgz#44fa161b0187b9549dd84bb91802f9bd8385cd6a" 3226 | 3227 | sane@^4.0.3: 3228 | version "4.1.0" 3229 | resolved "https://registry.yarnpkg.com/sane/-/sane-4.1.0.tgz#ed881fd922733a6c461bc189dc2b6c006f3ffded" 3230 | dependencies: 3231 | "@cnakazawa/watch" "^1.0.3" 3232 | anymatch "^2.0.0" 3233 | capture-exit "^2.0.0" 3234 | exec-sh "^0.3.2" 3235 | execa "^1.0.0" 3236 | fb-watchman "^2.0.0" 3237 | micromatch "^3.1.4" 3238 | minimist "^1.1.1" 3239 | walker "~1.0.5" 3240 | 3241 | saxes@^5.0.1: 3242 | version "5.0.1" 3243 | resolved "https://registry.yarnpkg.com/saxes/-/saxes-5.0.1.tgz#eebab953fa3b7608dbe94e5dadb15c888fa6696d" 3244 | dependencies: 3245 | xmlchars "^2.2.0" 3246 | 3247 | semver-compare@^1.0.0: 3248 | version "1.0.0" 3249 | resolved "https://registry.yarnpkg.com/semver-compare/-/semver-compare-1.0.0.tgz#0dee216a1c941ab37e9efb1788f6afc5ff5537fc" 3250 | 3251 | semver-regex@^2.0.0: 3252 | version "2.0.0" 3253 | resolved "https://registry.yarnpkg.com/semver-regex/-/semver-regex-2.0.0.tgz#a93c2c5844539a770233379107b38c7b4ac9d338" 3254 | 3255 | "semver@2 || 3 || 4 || 5", semver@^5.4.1, semver@^5.5.0: 3256 | version "5.7.1" 3257 | resolved "https://registry.yarnpkg.com/semver/-/semver-5.7.1.tgz#a954f931aeba508d307bbf069eff0c01c96116f7" 3258 | 3259 | semver@7.x, semver@^7.2.1, semver@^7.3.2: 3260 | version "7.3.4" 3261 | resolved "https://registry.yarnpkg.com/semver/-/semver-7.3.4.tgz#27aaa7d2e4ca76452f98d3add093a72c943edc97" 3262 | dependencies: 3263 | lru-cache "^6.0.0" 3264 | 3265 | semver@^6.0.0, semver@^6.3.0: 3266 | version "6.3.0" 3267 | resolved "https://registry.yarnpkg.com/semver/-/semver-6.3.0.tgz#ee0a64c8af5e8ceea67687b133761e1becbd1d3d" 3268 | 3269 | set-blocking@^2.0.0: 3270 | version "2.0.0" 3271 | resolved "https://registry.yarnpkg.com/set-blocking/-/set-blocking-2.0.0.tgz#045f9782d011ae9a6803ddd382b24392b3d890f7" 3272 | 3273 | set-value@^2.0.0, set-value@^2.0.1: 3274 | version "2.0.1" 3275 | resolved "https://registry.yarnpkg.com/set-value/-/set-value-2.0.1.tgz#a18d40530e6f07de4228c7defe4227af8cad005b" 3276 | dependencies: 3277 | extend-shallow "^2.0.1" 3278 | is-extendable "^0.1.1" 3279 | is-plain-object "^2.0.3" 3280 | split-string "^3.0.1" 3281 | 3282 | shebang-command@^1.2.0: 3283 | version "1.2.0" 3284 | resolved "https://registry.yarnpkg.com/shebang-command/-/shebang-command-1.2.0.tgz#44aac65b695b03398968c39f363fee5deafdf1ea" 3285 | dependencies: 3286 | shebang-regex "^1.0.0" 3287 | 3288 | shebang-command@^2.0.0: 3289 | version "2.0.0" 3290 | resolved "https://registry.yarnpkg.com/shebang-command/-/shebang-command-2.0.0.tgz#ccd0af4f8835fbdc265b82461aaf0c36663f34ea" 3291 | dependencies: 3292 | shebang-regex "^3.0.0" 3293 | 3294 | shebang-regex@^1.0.0: 3295 | version "1.0.0" 3296 | resolved "https://registry.yarnpkg.com/shebang-regex/-/shebang-regex-1.0.0.tgz#da42f49740c0b42db2ca9728571cb190c98efea3" 3297 | 3298 | shebang-regex@^3.0.0: 3299 | version "3.0.0" 3300 | resolved "https://registry.yarnpkg.com/shebang-regex/-/shebang-regex-3.0.0.tgz#ae16f1644d873ecad843b0307b143362d4c42172" 3301 | 3302 | shellwords@^0.1.1: 3303 | version "0.1.1" 3304 | resolved "https://registry.yarnpkg.com/shellwords/-/shellwords-0.1.1.tgz#d6b9181c1a48d397324c84871efbcfc73fc0654b" 3305 | 3306 | signal-exit@^3.0.0, signal-exit@^3.0.2: 3307 | version "3.0.3" 3308 | resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.3.tgz#a1410c2edd8f077b08b4e253c8eacfcaf057461c" 3309 | 3310 | sisteransi@^1.0.4: 3311 | version "1.0.5" 3312 | resolved "https://registry.yarnpkg.com/sisteransi/-/sisteransi-1.0.5.tgz#134d681297756437cc05ca01370d3a7a571075ed" 3313 | 3314 | slash@^3.0.0: 3315 | version "3.0.0" 3316 | resolved "https://registry.yarnpkg.com/slash/-/slash-3.0.0.tgz#6539be870c165adbd5240220dbe361f1bc4d4634" 3317 | 3318 | slice-ansi@^2.1.0: 3319 | version "2.1.0" 3320 | resolved "https://registry.yarnpkg.com/slice-ansi/-/slice-ansi-2.1.0.tgz#cacd7693461a637a5788d92a7dd4fba068e81636" 3321 | dependencies: 3322 | ansi-styles "^3.2.0" 3323 | astral-regex "^1.0.0" 3324 | is-fullwidth-code-point "^2.0.0" 3325 | 3326 | snapdragon-node@^2.0.1: 3327 | version "2.1.1" 3328 | resolved "https://registry.yarnpkg.com/snapdragon-node/-/snapdragon-node-2.1.1.tgz#6c175f86ff14bdb0724563e8f3c1b021a286853b" 3329 | dependencies: 3330 | define-property "^1.0.0" 3331 | isobject "^3.0.0" 3332 | snapdragon-util "^3.0.1" 3333 | 3334 | snapdragon-util@^3.0.1: 3335 | version "3.0.1" 3336 | resolved "https://registry.yarnpkg.com/snapdragon-util/-/snapdragon-util-3.0.1.tgz#f956479486f2acd79700693f6f7b805e45ab56e2" 3337 | dependencies: 3338 | kind-of "^3.2.0" 3339 | 3340 | snapdragon@^0.8.1: 3341 | version "0.8.2" 3342 | resolved "https://registry.yarnpkg.com/snapdragon/-/snapdragon-0.8.2.tgz#64922e7c565b0e14204ba1aa7d6964278d25182d" 3343 | dependencies: 3344 | base "^0.11.1" 3345 | debug "^2.2.0" 3346 | define-property "^0.2.5" 3347 | extend-shallow "^2.0.1" 3348 | map-cache "^0.2.2" 3349 | source-map "^0.5.6" 3350 | source-map-resolve "^0.5.0" 3351 | use "^3.1.0" 3352 | 3353 | source-map-resolve@^0.5.0: 3354 | version "0.5.3" 3355 | resolved "https://registry.yarnpkg.com/source-map-resolve/-/source-map-resolve-0.5.3.tgz#190866bece7553e1f8f267a2ee82c606b5509a1a" 3356 | dependencies: 3357 | atob "^2.1.2" 3358 | decode-uri-component "^0.2.0" 3359 | resolve-url "^0.2.1" 3360 | source-map-url "^0.4.0" 3361 | urix "^0.1.0" 3362 | 3363 | source-map-support@^0.5.6: 3364 | version "0.5.19" 3365 | resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.5.19.tgz#a98b62f86dcaf4f67399648c085291ab9e8fed61" 3366 | dependencies: 3367 | buffer-from "^1.0.0" 3368 | source-map "^0.6.0" 3369 | 3370 | source-map-url@^0.4.0: 3371 | version "0.4.0" 3372 | resolved "https://registry.yarnpkg.com/source-map-url/-/source-map-url-0.4.0.tgz#3e935d7ddd73631b97659956d55128e87b5084a3" 3373 | 3374 | source-map@^0.5.0, source-map@^0.5.6: 3375 | version "0.5.7" 3376 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.5.7.tgz#8a039d2d1021d22d1ea14c80d8ea468ba2ef3fcc" 3377 | 3378 | source-map@^0.6.0, source-map@^0.6.1, source-map@~0.6.1: 3379 | version "0.6.1" 3380 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.6.1.tgz#74722af32e9614e9c287a8d0bbde48b5e2f1a263" 3381 | 3382 | source-map@^0.7.3: 3383 | version "0.7.3" 3384 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.7.3.tgz#5302f8169031735226544092e64981f751750383" 3385 | 3386 | spdx-correct@^3.0.0: 3387 | version "3.1.1" 3388 | resolved "https://registry.yarnpkg.com/spdx-correct/-/spdx-correct-3.1.1.tgz#dece81ac9c1e6713e5f7d1b6f17d468fa53d89a9" 3389 | dependencies: 3390 | spdx-expression-parse "^3.0.0" 3391 | spdx-license-ids "^3.0.0" 3392 | 3393 | spdx-exceptions@^2.1.0: 3394 | version "2.3.0" 3395 | resolved "https://registry.yarnpkg.com/spdx-exceptions/-/spdx-exceptions-2.3.0.tgz#3f28ce1a77a00372683eade4a433183527a2163d" 3396 | 3397 | spdx-expression-parse@^3.0.0: 3398 | version "3.0.1" 3399 | resolved "https://registry.yarnpkg.com/spdx-expression-parse/-/spdx-expression-parse-3.0.1.tgz#cf70f50482eefdc98e3ce0a6833e4a53ceeba679" 3400 | dependencies: 3401 | spdx-exceptions "^2.1.0" 3402 | spdx-license-ids "^3.0.0" 3403 | 3404 | spdx-license-ids@^3.0.0: 3405 | version "3.0.5" 3406 | resolved "https://registry.yarnpkg.com/spdx-license-ids/-/spdx-license-ids-3.0.5.tgz#3694b5804567a458d3c8045842a6358632f62654" 3407 | 3408 | split-string@^3.0.1, split-string@^3.0.2: 3409 | version "3.1.0" 3410 | resolved "https://registry.yarnpkg.com/split-string/-/split-string-3.1.0.tgz#7cb09dda3a86585705c64b39a6466038682e8fe2" 3411 | dependencies: 3412 | extend-shallow "^3.0.0" 3413 | 3414 | sprintf-js@~1.0.2: 3415 | version "1.0.3" 3416 | resolved "https://registry.yarnpkg.com/sprintf-js/-/sprintf-js-1.0.3.tgz#04e6926f662895354f3dd015203633b857297e2c" 3417 | 3418 | stack-utils@^2.0.2: 3419 | version "2.0.2" 3420 | resolved "https://registry.yarnpkg.com/stack-utils/-/stack-utils-2.0.2.tgz#5cf48b4557becb4638d0bc4f21d23f5d19586593" 3421 | dependencies: 3422 | escape-string-regexp "^2.0.0" 3423 | 3424 | static-extend@^0.1.1: 3425 | version "0.1.2" 3426 | resolved "https://registry.yarnpkg.com/static-extend/-/static-extend-0.1.2.tgz#60809c39cbff55337226fd5e0b520f341f1fb5c6" 3427 | dependencies: 3428 | define-property "^0.2.5" 3429 | object-copy "^0.1.0" 3430 | 3431 | string-length@^4.0.1: 3432 | version "4.0.1" 3433 | resolved "https://registry.yarnpkg.com/string-length/-/string-length-4.0.1.tgz#4a973bf31ef77c4edbceadd6af2611996985f8a1" 3434 | dependencies: 3435 | char-regex "^1.0.2" 3436 | strip-ansi "^6.0.0" 3437 | 3438 | string-width@^3.0.0: 3439 | version "3.1.0" 3440 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-3.1.0.tgz#22767be21b62af1081574306f69ac51b62203961" 3441 | dependencies: 3442 | emoji-regex "^7.0.1" 3443 | is-fullwidth-code-point "^2.0.0" 3444 | strip-ansi "^5.1.0" 3445 | 3446 | string-width@^4.1.0, string-width@^4.2.0: 3447 | version "4.2.0" 3448 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-4.2.0.tgz#952182c46cc7b2c313d1596e623992bd163b72b5" 3449 | dependencies: 3450 | emoji-regex "^8.0.0" 3451 | is-fullwidth-code-point "^3.0.0" 3452 | strip-ansi "^6.0.0" 3453 | 3454 | string.prototype.trimend@^1.0.1: 3455 | version "1.0.1" 3456 | resolved "https://registry.yarnpkg.com/string.prototype.trimend/-/string.prototype.trimend-1.0.1.tgz#85812a6b847ac002270f5808146064c995fb6913" 3457 | dependencies: 3458 | define-properties "^1.1.3" 3459 | es-abstract "^1.17.5" 3460 | 3461 | string.prototype.trimstart@^1.0.1: 3462 | version "1.0.1" 3463 | resolved "https://registry.yarnpkg.com/string.prototype.trimstart/-/string.prototype.trimstart-1.0.1.tgz#14af6d9f34b053f7cfc89b72f8f2ee14b9039a54" 3464 | dependencies: 3465 | define-properties "^1.1.3" 3466 | es-abstract "^1.17.5" 3467 | 3468 | strip-ansi@^5.1.0: 3469 | version "5.2.0" 3470 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-5.2.0.tgz#8c9a536feb6afc962bdfa5b104a5091c1ad9c0ae" 3471 | dependencies: 3472 | ansi-regex "^4.1.0" 3473 | 3474 | strip-ansi@^6.0.0: 3475 | version "6.0.0" 3476 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-6.0.0.tgz#0b1571dd7669ccd4f3e06e14ef1eed26225ae532" 3477 | dependencies: 3478 | ansi-regex "^5.0.0" 3479 | 3480 | strip-bom@^3.0.0: 3481 | version "3.0.0" 3482 | resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-3.0.0.tgz#2334c18e9c759f7bdd56fdef7e9ae3d588e68ed3" 3483 | 3484 | strip-bom@^4.0.0: 3485 | version "4.0.0" 3486 | resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-4.0.0.tgz#9c3505c1db45bcedca3d9cf7a16f5c5aa3901878" 3487 | 3488 | strip-eof@^1.0.0: 3489 | version "1.0.0" 3490 | resolved "https://registry.yarnpkg.com/strip-eof/-/strip-eof-1.0.0.tgz#bb43ff5598a6eb05d89b59fcd129c983313606bf" 3491 | 3492 | strip-final-newline@^2.0.0: 3493 | version "2.0.0" 3494 | resolved "https://registry.yarnpkg.com/strip-final-newline/-/strip-final-newline-2.0.0.tgz#89b852fb2fcbe936f6f4b3187afb0a12c1ab58ad" 3495 | 3496 | strip-json-comments@^3.1.0, strip-json-comments@^3.1.1: 3497 | version "3.1.1" 3498 | resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-3.1.1.tgz#31f1281b3832630434831c310c01cccda8cbe006" 3499 | 3500 | supports-color@^5.3.0: 3501 | version "5.5.0" 3502 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-5.5.0.tgz#e2e69a44ac8772f78a1ec0b35b689df6530efc8f" 3503 | dependencies: 3504 | has-flag "^3.0.0" 3505 | 3506 | supports-color@^7.0.0, supports-color@^7.1.0: 3507 | version "7.2.0" 3508 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-7.2.0.tgz#1b7dcdcb32b8138801b3e478ba6a51caa89648da" 3509 | dependencies: 3510 | has-flag "^4.0.0" 3511 | 3512 | supports-hyperlinks@^2.0.0: 3513 | version "2.1.0" 3514 | resolved "https://registry.yarnpkg.com/supports-hyperlinks/-/supports-hyperlinks-2.1.0.tgz#f663df252af5f37c5d49bbd7eeefa9e0b9e59e47" 3515 | dependencies: 3516 | has-flag "^4.0.0" 3517 | supports-color "^7.0.0" 3518 | 3519 | symbol-tree@^3.2.4: 3520 | version "3.2.4" 3521 | resolved "https://registry.yarnpkg.com/symbol-tree/-/symbol-tree-3.2.4.tgz#430637d248ba77e078883951fb9aa0eed7c63fa2" 3522 | 3523 | table@^5.2.3: 3524 | version "5.4.6" 3525 | resolved "https://registry.yarnpkg.com/table/-/table-5.4.6.tgz#1292d19500ce3f86053b05f0e8e7e4a3bb21079e" 3526 | dependencies: 3527 | ajv "^6.10.2" 3528 | lodash "^4.17.14" 3529 | slice-ansi "^2.1.0" 3530 | string-width "^3.0.0" 3531 | 3532 | terminal-link@^2.0.0: 3533 | version "2.1.1" 3534 | resolved "https://registry.yarnpkg.com/terminal-link/-/terminal-link-2.1.1.tgz#14a64a27ab3c0df933ea546fba55f2d078edc994" 3535 | dependencies: 3536 | ansi-escapes "^4.2.1" 3537 | supports-hyperlinks "^2.0.0" 3538 | 3539 | test-exclude@^6.0.0: 3540 | version "6.0.0" 3541 | resolved "https://registry.yarnpkg.com/test-exclude/-/test-exclude-6.0.0.tgz#04a8698661d805ea6fa293b6cb9e63ac044ef15e" 3542 | dependencies: 3543 | "@istanbuljs/schema" "^0.1.2" 3544 | glob "^7.1.4" 3545 | minimatch "^3.0.4" 3546 | 3547 | text-table@^0.2.0: 3548 | version "0.2.0" 3549 | resolved "https://registry.yarnpkg.com/text-table/-/text-table-0.2.0.tgz#7f5ee823ae805207c00af2df4a84ec3fcfa570b4" 3550 | 3551 | throat@^5.0.0: 3552 | version "5.0.0" 3553 | resolved "https://registry.yarnpkg.com/throat/-/throat-5.0.0.tgz#c5199235803aad18754a667d659b5e72ce16764b" 3554 | 3555 | tmpl@1.0.x: 3556 | version "1.0.5" 3557 | resolved "https://registry.yarnpkg.com/tmpl/-/tmpl-1.0.5.tgz#8683e0b902bb9c20c4f726e3c0b69f36518c07cc" 3558 | 3559 | to-fast-properties@^2.0.0: 3560 | version "2.0.0" 3561 | resolved "https://registry.yarnpkg.com/to-fast-properties/-/to-fast-properties-2.0.0.tgz#dc5e698cbd079265bc73e0377681a4e4e83f616e" 3562 | 3563 | to-object-path@^0.3.0: 3564 | version "0.3.0" 3565 | resolved "https://registry.yarnpkg.com/to-object-path/-/to-object-path-0.3.0.tgz#297588b7b0e7e0ac08e04e672f85c1f4999e17af" 3566 | dependencies: 3567 | kind-of "^3.0.2" 3568 | 3569 | to-regex-range@^2.1.0: 3570 | version "2.1.1" 3571 | resolved "https://registry.yarnpkg.com/to-regex-range/-/to-regex-range-2.1.1.tgz#7c80c17b9dfebe599e27367e0d4dd5590141db38" 3572 | dependencies: 3573 | is-number "^3.0.0" 3574 | repeat-string "^1.6.1" 3575 | 3576 | to-regex-range@^5.0.1: 3577 | version "5.0.1" 3578 | resolved "https://registry.yarnpkg.com/to-regex-range/-/to-regex-range-5.0.1.tgz#1648c44aae7c8d988a326018ed72f5b4dd0392e4" 3579 | dependencies: 3580 | is-number "^7.0.0" 3581 | 3582 | to-regex@^3.0.1, to-regex@^3.0.2: 3583 | version "3.0.2" 3584 | resolved "https://registry.yarnpkg.com/to-regex/-/to-regex-3.0.2.tgz#13cfdd9b336552f30b51f33a8ae1b42a7a7599ce" 3585 | dependencies: 3586 | define-property "^2.0.2" 3587 | extend-shallow "^3.0.2" 3588 | regex-not "^1.0.2" 3589 | safe-regex "^1.1.0" 3590 | 3591 | tough-cookie@^4.0.0: 3592 | version "4.0.0" 3593 | resolved "https://registry.yarnpkg.com/tough-cookie/-/tough-cookie-4.0.0.tgz#d822234eeca882f991f0f908824ad2622ddbece4" 3594 | dependencies: 3595 | psl "^1.1.33" 3596 | punycode "^2.1.1" 3597 | universalify "^0.1.2" 3598 | 3599 | tr46@^2.1.0: 3600 | version "2.1.0" 3601 | resolved "https://registry.yarnpkg.com/tr46/-/tr46-2.1.0.tgz#fa87aa81ca5d5941da8cbf1f9b749dc969a4e240" 3602 | dependencies: 3603 | punycode "^2.1.1" 3604 | 3605 | ts-jest@^26.3.0: 3606 | version "26.3.0" 3607 | resolved "https://registry.yarnpkg.com/ts-jest/-/ts-jest-26.3.0.tgz#6b2845045347dce394f069bb59358253bc1338a9" 3608 | dependencies: 3609 | "@types/jest" "26.x" 3610 | bs-logger "0.x" 3611 | buffer-from "1.x" 3612 | fast-json-stable-stringify "2.x" 3613 | jest-util "26.x" 3614 | json5 "2.x" 3615 | lodash.memoize "4.x" 3616 | make-error "1.x" 3617 | mkdirp "1.x" 3618 | semver "7.x" 3619 | yargs-parser "18.x" 3620 | 3621 | tsconfig-paths@^3.9.0: 3622 | version "3.9.0" 3623 | resolved "https://registry.yarnpkg.com/tsconfig-paths/-/tsconfig-paths-3.9.0.tgz#098547a6c4448807e8fcb8eae081064ee9a3c90b" 3624 | dependencies: 3625 | "@types/json5" "^0.0.29" 3626 | json5 "^1.0.1" 3627 | minimist "^1.2.0" 3628 | strip-bom "^3.0.0" 3629 | 3630 | tslib@^1.11.1, tslib@^1.8.1: 3631 | version "1.13.0" 3632 | resolved "https://registry.yarnpkg.com/tslib/-/tslib-1.13.0.tgz#c881e13cc7015894ed914862d276436fa9a47043" 3633 | 3634 | tsutils@^3.17.1: 3635 | version "3.17.1" 3636 | resolved "https://registry.yarnpkg.com/tsutils/-/tsutils-3.17.1.tgz#ed719917f11ca0dee586272b2ac49e015a2dd759" 3637 | dependencies: 3638 | tslib "^1.8.1" 3639 | 3640 | type-check@^0.4.0, type-check@~0.4.0: 3641 | version "0.4.0" 3642 | resolved "https://registry.yarnpkg.com/type-check/-/type-check-0.4.0.tgz#07b8203bfa7056c0657050e3ccd2c37730bab8f1" 3643 | dependencies: 3644 | prelude-ls "^1.2.1" 3645 | 3646 | type-check@~0.3.2: 3647 | version "0.3.2" 3648 | resolved "https://registry.yarnpkg.com/type-check/-/type-check-0.3.2.tgz#5884cab512cf1d355e3fb784f30804b2b520db72" 3649 | dependencies: 3650 | prelude-ls "~1.1.2" 3651 | 3652 | type-detect@4.0.8: 3653 | version "4.0.8" 3654 | resolved "https://registry.yarnpkg.com/type-detect/-/type-detect-4.0.8.tgz#7646fb5f18871cfbb7749e69bd39a6388eb7450c" 3655 | 3656 | type-fest@^0.11.0: 3657 | version "0.11.0" 3658 | resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-0.11.0.tgz#97abf0872310fed88a5c466b25681576145e33f1" 3659 | 3660 | type-fest@^0.6.0: 3661 | version "0.6.0" 3662 | resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-0.6.0.tgz#8d2a2370d3df886eb5c90ada1c5bf6188acf838b" 3663 | 3664 | type-fest@^0.8.1: 3665 | version "0.8.1" 3666 | resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-0.8.1.tgz#09e249ebde851d3b1e48d27c105444667f17b83d" 3667 | 3668 | typedarray-to-buffer@^3.1.5: 3669 | version "3.1.5" 3670 | resolved "https://registry.yarnpkg.com/typedarray-to-buffer/-/typedarray-to-buffer-3.1.5.tgz#a97ee7a9ff42691b9f783ff1bc5112fe3fca9080" 3671 | dependencies: 3672 | is-typedarray "^1.0.0" 3673 | 3674 | typescript@^4.0.2: 3675 | version "4.0.2" 3676 | resolved "https://registry.yarnpkg.com/typescript/-/typescript-4.0.2.tgz#7ea7c88777c723c681e33bf7988be5d008d05ac2" 3677 | 3678 | union-value@^1.0.0: 3679 | version "1.0.1" 3680 | resolved "https://registry.yarnpkg.com/union-value/-/union-value-1.0.1.tgz#0b6fe7b835aecda61c6ea4d4f02c14221e109847" 3681 | dependencies: 3682 | arr-union "^3.1.0" 3683 | get-value "^2.0.6" 3684 | is-extendable "^0.1.1" 3685 | set-value "^2.0.1" 3686 | 3687 | universalify@^0.1.2: 3688 | version "0.1.2" 3689 | resolved "https://registry.yarnpkg.com/universalify/-/universalify-0.1.2.tgz#b646f69be3942dabcecc9d6639c80dc105efaa66" 3690 | 3691 | unset-value@^1.0.0: 3692 | version "1.0.0" 3693 | resolved "https://registry.yarnpkg.com/unset-value/-/unset-value-1.0.0.tgz#8376873f7d2335179ffb1e6fc3a8ed0dfc8ab559" 3694 | dependencies: 3695 | has-value "^0.3.1" 3696 | isobject "^3.0.0" 3697 | 3698 | uri-js@^4.2.2: 3699 | version "4.4.0" 3700 | resolved "https://registry.yarnpkg.com/uri-js/-/uri-js-4.4.0.tgz#aa714261de793e8a82347a7bcc9ce74e86f28602" 3701 | dependencies: 3702 | punycode "^2.1.0" 3703 | 3704 | urix@^0.1.0: 3705 | version "0.1.0" 3706 | resolved "https://registry.yarnpkg.com/urix/-/urix-0.1.0.tgz#da937f7a62e21fec1fd18d49b35c2935067a6c72" 3707 | 3708 | use@^3.1.0: 3709 | version "3.1.1" 3710 | resolved "https://registry.yarnpkg.com/use/-/use-3.1.1.tgz#d50c8cac79a19fbc20f2911f56eb973f4e10070f" 3711 | 3712 | uuid@^8.3.0: 3713 | version "8.3.2" 3714 | resolved "https://registry.yarnpkg.com/uuid/-/uuid-8.3.2.tgz#80d5b5ced271bb9af6c445f21a1a04c606cefbe2" 3715 | 3716 | v8-compile-cache@^2.0.3: 3717 | version "2.1.1" 3718 | resolved "https://registry.yarnpkg.com/v8-compile-cache/-/v8-compile-cache-2.1.1.tgz#54bc3cdd43317bca91e35dcaf305b1a7237de745" 3719 | 3720 | v8-to-istanbul@^5.0.1: 3721 | version "5.0.1" 3722 | resolved "https://registry.yarnpkg.com/v8-to-istanbul/-/v8-to-istanbul-5.0.1.tgz#0608f5b49a481458625edb058488607f25498ba5" 3723 | dependencies: 3724 | "@types/istanbul-lib-coverage" "^2.0.1" 3725 | convert-source-map "^1.6.0" 3726 | source-map "^0.7.3" 3727 | 3728 | validate-npm-package-license@^3.0.1: 3729 | version "3.0.4" 3730 | resolved "https://registry.yarnpkg.com/validate-npm-package-license/-/validate-npm-package-license-3.0.4.tgz#fc91f6b9c7ba15c857f4cb2c5defeec39d4f410a" 3731 | dependencies: 3732 | spdx-correct "^3.0.0" 3733 | spdx-expression-parse "^3.0.0" 3734 | 3735 | w3c-hr-time@^1.0.2: 3736 | version "1.0.2" 3737 | resolved "https://registry.yarnpkg.com/w3c-hr-time/-/w3c-hr-time-1.0.2.tgz#0a89cdf5cc15822df9c360543676963e0cc308cd" 3738 | dependencies: 3739 | browser-process-hrtime "^1.0.0" 3740 | 3741 | w3c-xmlserializer@^2.0.0: 3742 | version "2.0.0" 3743 | resolved "https://registry.yarnpkg.com/w3c-xmlserializer/-/w3c-xmlserializer-2.0.0.tgz#3e7104a05b75146cc60f564380b7f683acf1020a" 3744 | dependencies: 3745 | xml-name-validator "^3.0.0" 3746 | 3747 | walker@^1.0.7, walker@~1.0.5: 3748 | version "1.0.7" 3749 | resolved "https://registry.yarnpkg.com/walker/-/walker-1.0.7.tgz#2f7f9b8fd10d677262b18a884e28d19618e028fb" 3750 | dependencies: 3751 | makeerror "1.0.x" 3752 | 3753 | webidl-conversions@^5.0.0: 3754 | version "5.0.0" 3755 | resolved "https://registry.yarnpkg.com/webidl-conversions/-/webidl-conversions-5.0.0.tgz#ae59c8a00b121543a2acc65c0434f57b0fc11aff" 3756 | 3757 | webidl-conversions@^6.1.0: 3758 | version "6.1.0" 3759 | resolved "https://registry.yarnpkg.com/webidl-conversions/-/webidl-conversions-6.1.0.tgz#9111b4d7ea80acd40f5270d666621afa78b69514" 3760 | 3761 | whatwg-encoding@^1.0.5: 3762 | version "1.0.5" 3763 | resolved "https://registry.yarnpkg.com/whatwg-encoding/-/whatwg-encoding-1.0.5.tgz#5abacf777c32166a51d085d6b4f3e7d27113ddb0" 3764 | dependencies: 3765 | iconv-lite "0.4.24" 3766 | 3767 | whatwg-mimetype@^2.3.0: 3768 | version "2.3.0" 3769 | resolved "https://registry.yarnpkg.com/whatwg-mimetype/-/whatwg-mimetype-2.3.0.tgz#3d4b1e0312d2079879f826aff18dbeeca5960fbf" 3770 | 3771 | whatwg-url@^8.0.0, whatwg-url@^8.5.0: 3772 | version "8.7.0" 3773 | resolved "https://registry.yarnpkg.com/whatwg-url/-/whatwg-url-8.7.0.tgz#656a78e510ff8f3937bc0bcbe9f5c0ac35941b77" 3774 | dependencies: 3775 | lodash "^4.7.0" 3776 | tr46 "^2.1.0" 3777 | webidl-conversions "^6.1.0" 3778 | 3779 | which-module@^2.0.0: 3780 | version "2.0.0" 3781 | resolved "https://registry.yarnpkg.com/which-module/-/which-module-2.0.0.tgz#d9ef07dce77b9902b8a3a8fa4b31c3e3f7e6e87a" 3782 | 3783 | which-pm-runs@^1.0.0: 3784 | version "1.0.0" 3785 | resolved "https://registry.yarnpkg.com/which-pm-runs/-/which-pm-runs-1.0.0.tgz#670b3afbc552e0b55df6b7780ca74615f23ad1cb" 3786 | 3787 | which@^1.2.9: 3788 | version "1.3.1" 3789 | resolved "https://registry.yarnpkg.com/which/-/which-1.3.1.tgz#a45043d54f5805316da8d62f9f50918d3da70b0a" 3790 | dependencies: 3791 | isexe "^2.0.0" 3792 | 3793 | which@^2.0.1, which@^2.0.2: 3794 | version "2.0.2" 3795 | resolved "https://registry.yarnpkg.com/which/-/which-2.0.2.tgz#7c6a8dd0a636a0327e10b59c9286eee93f3f51b1" 3796 | dependencies: 3797 | isexe "^2.0.0" 3798 | 3799 | word-wrap@^1.2.3, word-wrap@~1.2.3: 3800 | version "1.2.3" 3801 | resolved "https://registry.yarnpkg.com/word-wrap/-/word-wrap-1.2.3.tgz#610636f6b1f703891bd34771ccb17fb93b47079c" 3802 | 3803 | wrap-ansi@^6.2.0: 3804 | version "6.2.0" 3805 | resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-6.2.0.tgz#e9393ba07102e6c91a3b221478f0257cd2856e53" 3806 | dependencies: 3807 | ansi-styles "^4.0.0" 3808 | string-width "^4.1.0" 3809 | strip-ansi "^6.0.0" 3810 | 3811 | wrappy@1: 3812 | version "1.0.2" 3813 | resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f" 3814 | 3815 | write-file-atomic@^3.0.0: 3816 | version "3.0.3" 3817 | resolved "https://registry.yarnpkg.com/write-file-atomic/-/write-file-atomic-3.0.3.tgz#56bd5c5a5c70481cd19c571bd39ab965a5de56e8" 3818 | dependencies: 3819 | imurmurhash "^0.1.4" 3820 | is-typedarray "^1.0.0" 3821 | signal-exit "^3.0.2" 3822 | typedarray-to-buffer "^3.1.5" 3823 | 3824 | write@1.0.3: 3825 | version "1.0.3" 3826 | resolved "https://registry.yarnpkg.com/write/-/write-1.0.3.tgz#0800e14523b923a387e415123c865616aae0f5c3" 3827 | dependencies: 3828 | mkdirp "^0.5.1" 3829 | 3830 | ws@^7.4.6: 3831 | version "7.5.8" 3832 | resolved "https://registry.yarnpkg.com/ws/-/ws-7.5.8.tgz#ac2729881ab9e7cbaf8787fe3469a48c5c7f636a" 3833 | 3834 | xml-name-validator@^3.0.0: 3835 | version "3.0.0" 3836 | resolved "https://registry.yarnpkg.com/xml-name-validator/-/xml-name-validator-3.0.0.tgz#6ae73e06de4d8c6e47f9fb181f78d648ad457c6a" 3837 | 3838 | xmlchars@^2.2.0: 3839 | version "2.2.0" 3840 | resolved "https://registry.yarnpkg.com/xmlchars/-/xmlchars-2.2.0.tgz#060fe1bcb7f9c76fe2a17db86a9bc3ab894210cb" 3841 | 3842 | y18n@^4.0.0: 3843 | version "4.0.1" 3844 | resolved "https://registry.yarnpkg.com/y18n/-/y18n-4.0.1.tgz#8db2b83c31c5d75099bb890b23f3094891e247d4" 3845 | 3846 | yallist@^4.0.0: 3847 | version "4.0.0" 3848 | resolved "https://registry.yarnpkg.com/yallist/-/yallist-4.0.0.tgz#9bb92790d9c0effec63be73519e11a35019a3a72" 3849 | 3850 | yaml@^1.10.0: 3851 | version "1.10.0" 3852 | resolved "https://registry.yarnpkg.com/yaml/-/yaml-1.10.0.tgz#3b593add944876077d4d683fee01081bd9fff31e" 3853 | 3854 | yargs-parser@18.x, yargs-parser@^18.1.2: 3855 | version "18.1.3" 3856 | resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-18.1.3.tgz#be68c4975c6b2abf469236b0c870362fab09a7b0" 3857 | dependencies: 3858 | camelcase "^5.0.0" 3859 | decamelize "^1.2.0" 3860 | 3861 | yargs@^15.3.1: 3862 | version "15.4.1" 3863 | resolved "https://registry.yarnpkg.com/yargs/-/yargs-15.4.1.tgz#0d87a16de01aee9d8bec2bfbf74f67851730f4f8" 3864 | dependencies: 3865 | cliui "^6.0.0" 3866 | decamelize "^1.2.0" 3867 | find-up "^4.1.0" 3868 | get-caller-file "^2.0.1" 3869 | require-directory "^2.1.1" 3870 | require-main-filename "^2.0.0" 3871 | set-blocking "^2.0.0" 3872 | string-width "^4.2.0" 3873 | which-module "^2.0.0" 3874 | y18n "^4.0.0" 3875 | yargs-parser "^18.1.2" 3876 | --------------------------------------------------------------------------------