├── .babelrc
├── .github
└── workflows
│ └── test.yml
├── .gitignore
├── LICENSE
├── README.md
├── example
├── example.js
├── index.html
├── input.js
├── output.js
└── package.json
├── package.json
├── src
├── ASTDataContainer.js
├── ASTGenerator.js
├── ASTOutput.js
├── ASTParser.js
├── ASTSource.js
├── babel-parse-to-esprima.js
└── utils
│ ├── ast-healing-util.js
│ ├── filepath-util.js
│ └── find-parser.js
├── test
├── ASTSource-test.js
└── mocha.opts
└── yarn.lock
/.babelrc:
--------------------------------------------------------------------------------
1 | {
2 | "presets": [
3 | "@babel/env"
4 | ]
5 | }
6 |
--------------------------------------------------------------------------------
/.github/workflows/test.yml:
--------------------------------------------------------------------------------
1 | name: test
2 | on: [push, pull_request]
3 | jobs:
4 | test:
5 | name: "Test on Node.js ${{ matrix.node-version }}"
6 | runs-on: ubuntu-latest
7 | strategy:
8 | matrix:
9 | node-version: [12, 14, 16]
10 | steps:
11 | - name: checkout
12 | uses: actions/checkout@v2
13 | - name: setup Node.js ${{ matrix.node-version }}
14 | uses: actions/setup-node@v2
15 | with:
16 | node-version: ${{ matrix.node-version }}
17 | - name: Install
18 | run: yarn install
19 | - name: Test
20 | run: yarn test
21 |
--------------------------------------------------------------------------------
/.gitignore:
--------------------------------------------------------------------------------
1 | ### https://raw.github.com/github/gitignore/408c616ae0ad8f4b8101d8e876b9b67ac6b14059/Node.gitignore
2 |
3 | # Logs
4 | logs
5 | *.log
6 |
7 | # Runtime data
8 | pids
9 | *.pid
10 | *.seed
11 |
12 | # Directory for instrumented libs generated by jscoverage/JSCover
13 | lib-cov
14 |
15 | # Coverage directory used by tools like istanbul
16 | coverage
17 |
18 | # Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files)
19 | .grunt
20 |
21 | # node-waf configuration
22 | .lock-wscript
23 |
24 | # Compiled binary addons (http://nodejs.org/api/addons.html)
25 | build/Release
26 |
27 | # Dependency directory
28 | # Commenting this out is preferred by some people, see
29 | # https://www.npmjs.org/doc/misc/npm-faq.html#should-i-check-my-node_modules-folder-into-git-
30 | node_modules
31 |
32 |
33 | ### https://raw.github.com/github/gitignore/408c616ae0ad8f4b8101d8e876b9b67ac6b14059/Global/JetBrains.gitignore
34 |
35 | # Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm
36 |
37 | *.iml
38 |
39 | ## Directory-based project format:
40 | .idea/
41 | # if you remove the above rule, at least ignore the following:
42 |
43 | # User-specific stuff:
44 | # .idea/workspace.xml
45 | # .idea/tasks.xml
46 | # .idea/dictionaries
47 |
48 | # Sensitive or high-churn files:
49 | # .idea/dataSources.ids
50 | # .idea/dataSources.xml
51 | # .idea/sqlDataSources.xml
52 | # .idea/dynamic.xml
53 | # .idea/uiDesigner.xml
54 |
55 | # Gradle:
56 | # .idea/gradle.xml
57 | # .idea/libraries
58 |
59 | # Mongo Explorer plugin:
60 | # .idea/mongoSettings.xml
61 |
62 | ## File-based project format:
63 | *.ipr
64 | *.iws
65 |
66 | ## Plugin-specific files:
67 |
68 | # IntelliJ
69 | out/
70 |
71 | # mpeltonen/sbt-idea plugin
72 | .idea_modules/
73 |
74 | # JIRA plugin
75 | atlassian-ide-plugin.xml
76 |
77 | # Crashlytics plugin (for Android Studio and IntelliJ)
78 | com_crashlytics_export_strings.xml
79 | crashlytics.properties
80 | crashlytics-build.properties
81 |
82 |
83 |
84 | lib
--------------------------------------------------------------------------------
/LICENSE:
--------------------------------------------------------------------------------
1 | Copyright (c) 2015 azu
2 |
3 | Permission is hereby granted, free of charge, to any person obtaining a copy
4 | of this software and associated documentation files (the "Software"), to deal
5 | in the Software without restriction, including without limitation the rights
6 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
7 | copies of the Software, and to permit persons to whom the Software is
8 | furnished to do so, subject to the following conditions:
9 |
10 | The above copyright notice and this permission notice shall be included in all
11 | copies or substantial portions of the Software.
12 |
13 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
14 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
15 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
16 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
17 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
18 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
19 | SOFTWARE.
20 |
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 | # ast-source [](https://github.com/azu/ast-source/actions?query=workflow%3A"test")
2 |
3 | AST helper to transform source code.
4 |
5 | On purpose make you focus to develop AST transforming function.
6 |
7 |
8 | ## Installation
9 |
10 | npm install ast-source
11 |
12 | ## Feature
13 |
14 | - Automatically select JavaScript parser like esprima or babel(babylon)
15 | - It make you focus to develop AST transforming function.
16 | - SourceMap support is first class.
17 | - Always get clean AST if you want.
18 | - AST transforming function pollute AST's meta info(`range`, `loc` etc..).
19 | - `ASTSource#transformStrict` provide always clean AST by options.
20 |
21 | ## Example
22 |
23 | - [azu/comment-to-assert: convert single line comment to assert.](https://github.com/azu/comment-to-assert)
24 | - [azu/power-doctest: JavaScript: doctest + power-assert.](https://github.com/azu/power-doctest)
25 |
26 |
27 | ## Usage
28 |
29 | ### API
30 |
31 | #### ASTSource(code, options)
32 |
33 | ASTSource's input is source code, output is `ASTOutput`.
34 |
35 | ```js
36 | var source = new ASTSource(code, options)
37 | ```
38 |
39 | All options are optional. often set `filePath` as options.
40 |
41 | ```js
42 | /**
43 | * @namespace
44 | * @type {Object} ASTSourceOptions
45 | * @property {string} ASTSourceOptions.filePath? path to source code
46 | * @property {string} ASTSourceOptions.sourceRoot? source root path to source code
47 | * @property {parserType} ASTSourceOptions.parserType? what parser is used
48 | * @property {boolean} ASTSourceOptions.esprimaTokens? tokens
49 | * @property {boolean} ASTSourceOptions.range? range
50 | * @property {boolean} ASTSourceOptions.loc? location
51 | * @property {boolean} ASTSourceOptions.comment?
52 | */
53 | const defaultOptions = {
54 | filePath: null,
55 | disableSourceMap: false,
56 | parserType: null,
57 | esprimaTokens: true,
58 | loc: true,
59 | range: true,
60 | comment: true
61 | };
62 | ```
63 |
64 | ##### value(): AST
65 |
66 | Returns current AST
67 |
68 | ##### cloneValue(): AST
69 |
70 | Return current AST that is [espurify](https://github.com/estools/espurify "espurify")ed.
71 |
72 | ##### transform(fn)
73 |
74 | Transform current AST by `fn`.
75 |
76 | ```js
77 | function transformFn(AST){
78 | return modify(AST)
79 | }
80 | var source = new ASTSource(code, options)
81 | source.transform(transformFn);
82 | ```
83 |
84 | ##### transformStrict(fn)
85 |
86 | Transform AST by `fn` after healing the AST.
87 |
88 | re-calculate `range`, `loc`, `comment` the AST and transform.
89 |
90 | ##### output(): ASTOutput
91 |
92 | Returns `ASTOutput`
93 |
94 | #### ASTOutput
95 |
96 | ASTOutput's input is source code, output are source code and source-map.
97 |
98 | ##### code: string
99 |
100 | Returns source code of the results.
101 |
102 | ##### map: Object
103 |
104 | Returns source map of the results.
105 |
106 | ##### codeWithMap: string
107 |
108 | Returns source code that include base64ed comment of source map.
109 |
110 | ### Example
111 |
112 | See [example](./example).
113 |
114 | Run `npm test` on `example/`
115 |
116 | ```js
117 | import ASTSource from "ast-source"
118 | import estraverse from "estraverse"
119 | import fs from "fs"
120 |
121 | function transform(AST) {
122 | var replaced = {
123 | "type": "Literal",
124 | "value": 42,
125 | "raw": "42"
126 | };
127 | return estraverse.replace(AST, {
128 | enter: function (node) {
129 | if (node.type === estraverse.Syntax.Literal) {
130 | return replaced;
131 | }
132 | }
133 | });
134 | }
135 |
136 | var source = new ASTSource(fs.readFileSync("./input.js", "utf-8"), {
137 | filePath: "./input.js"
138 | });
139 | var output = source.transform(transform).output();
140 | console.log(output.code);// => "var a = 42;"
141 | console.dir(output.map.toString()); // => source map
142 | fs.writeFileSync("./output.js", output.codeWithMap, "utf-8");
143 |
144 | ```
145 |
146 | ## Tests
147 |
148 | npm test
149 |
150 | ## Contributing
151 |
152 | 1. Fork it!
153 | 2. Create your feature branch: `git checkout -b my-new-feature`
154 | 3. Commit your changes: `git commit -am 'Add some feature'`
155 | 4. Push to the branch: `git push origin my-new-feature`
156 | 5. Submit a pull request :D
157 |
158 | ## License
159 |
160 | MIT
161 |
--------------------------------------------------------------------------------
/example/example.js:
--------------------------------------------------------------------------------
1 | // LICENSE : MIT
2 | "use strict";
3 | // TODO: use es6 import/export
4 | const ASTSource = require("ast-source").default;
5 | const estraverse = require("estraverse");
6 | const fs = require("fs");
7 |
8 | function transform(AST) {
9 | var replaced = {
10 | type: "Literal",
11 | value: 42,
12 | raw: "42"
13 | };
14 | return estraverse.replace(AST, {
15 | enter: function(node) {
16 | if (node.type === estraverse.Syntax.Literal) {
17 | return replaced;
18 | }
19 | }
20 | });
21 | }
22 |
23 | var source = new ASTSource(fs.readFileSync("./input.js", "utf-8"), {
24 | filePath: "./input.js"
25 | });
26 | var output = source.transform(transform).output();
27 | console.log(output.code); // => "var a = 42;"
28 | console.dir(output.map.toString()); // => source map
29 | fs.writeFileSync("./output.js", output.codeWithMap, "utf-8");
30 |
--------------------------------------------------------------------------------
/example/index.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
--------------------------------------------------------------------------------
/example/input.js:
--------------------------------------------------------------------------------
1 | var a = 1;
2 |
--------------------------------------------------------------------------------
/example/output.js:
--------------------------------------------------------------------------------
1 | var a = 42;
2 | //# sourceMappingURL=data:application/json;charset=utf-8;base64,eyJ2ZXJzaW9uIjozLCJzb3VyY2VzIjpbIi4vaW5wdXQuanMiXSwibmFtZXMiOlsiYSJdLCJtYXBwaW5ncyI6IkFBQUEsSUFBSUEsQ0FBQSxHLEVBQUoiLCJzb3VyY2VzQ29udGVudCI6WyJ2YXIgYSA9IDE7XG4iXX0=
--------------------------------------------------------------------------------
/example/package.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "example",
3 | "version": "1.0.0",
4 | "description": "",
5 | "main": "index.js",
6 | "scripts": {
7 | "test": "rm -rf node_modules/ && npm i --no-package-lock && node example.js"
8 | },
9 | "author": "azu",
10 | "license": "MIT",
11 | "dependencies": {
12 | "ast-source": "file:..",
13 | "estraverse": "^4.1.0"
14 | }
15 | }
16 |
--------------------------------------------------------------------------------
/package.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "ast-source",
3 | "repository": {
4 | "type": "git",
5 | "url": "https://github.com/azu/ast-source.git"
6 | },
7 | "author": "azu",
8 | "email": "azuciao@gmail.com",
9 | "homepage": "https://github.com/azu/ast-source",
10 | "license": "MIT",
11 | "bugs": {
12 | "url": "https://github.com/azu/ast-source/issues"
13 | },
14 | "version": "4.0.0",
15 | "description": "AST helper to transform source code.",
16 | "main": "lib/ASTSource.js",
17 | "files": [
18 | "lib",
19 | "src"
20 | ],
21 | "directories": {
22 | "test": "test"
23 | },
24 | "scripts": {
25 | "prepare": "npm run --if-present build",
26 | "build": "babel src --out-dir lib --source-maps",
27 | "watch": "babel src --out-dir lib --watch --source-maps",
28 | "prepublish": "npm run --if-present build",
29 | "test": "mocha && (cd example && npm test)",
30 | "prettier": "prettier --write \"**/*.{js,jsx,ts,tsx,css}\""
31 | },
32 | "keywords": [
33 | "ast",
34 | "generator",
35 | "sourcemap",
36 | "source-map"
37 | ],
38 | "dependencies": {
39 | "@babel/core": "^7.0.0",
40 | "@babel/generator": "^7.0.0",
41 | "@babel/traverse": "^7.0.0",
42 | "acorn-to-esprima": "^2.0.8",
43 | "babylon": "^6.6.5",
44 | "convert-source-map": "^1.1.1",
45 | "debug": "^4.1.0",
46 | "escodegen": "^1.6.1",
47 | "esprima-next": "^5.8.4",
48 | "espurify": "^1.3.0",
49 | "object-assign": "^4.0.1",
50 | "path-is-absolute": "^1.0.0"
51 | },
52 | "devDependencies": {
53 | "@babel/cli": "^7.0.0",
54 | "@babel/core": "^7.0.0",
55 | "@babel/preset-env": "^7.0.0",
56 | "@babel/register": "^7.0.0",
57 | "ast-equal": "^1.0.2",
58 | "comment-to-assert": "^1.0.1",
59 | "husky": "^1.1.2",
60 | "lint-staged": "^7.3.0",
61 | "mocha": "^5.2.0",
62 | "prettier": "^1.8.1"
63 | },
64 | "prettier": {
65 | "singleQuote": false,
66 | "printWidth": 120,
67 | "tabWidth": 4
68 | },
69 | "husky": {
70 | "hooks": {
71 | "precommit": "lint-staged"
72 | }
73 | },
74 | "lint-staged": {
75 | "*.{js,jsx,ts,tsx,css}": [
76 | "prettier --write",
77 | "git add"
78 | ]
79 | }
80 | }
81 |
--------------------------------------------------------------------------------
/src/ASTDataContainer.js:
--------------------------------------------------------------------------------
1 | // LICENSE : MIT
2 | "use strict";
3 | import assert from "assert";
4 | import espurify from "espurify";
5 | import { healingAST } from "./utils/ast-healing-util";
6 | /**
7 | * ASTDataContainer has AST as `value` and transform `value`
8 | */
9 | export default class ASTDataContainer {
10 | /**
11 | *
12 | * @param {Object} ast
13 | */
14 | constructor(ast) {
15 | this.value = ast;
16 | }
17 |
18 | cloneValue() {
19 | return espurify(this.value);
20 | }
21 |
22 | transform(transformFn) {
23 | const result = transformFn(this.value);
24 | if (result == null) {
25 | throw new Error("transform function should not return null");
26 | }
27 | this.value = result;
28 | }
29 |
30 | /**
31 | * @param transformFn
32 | * @param {ASTSourceOptions} options
33 | */
34 | transformStrict(transformFn, options) {
35 | var AST = healingAST(this.value, options);
36 | var result = transformFn(AST);
37 | assert(result != null && typeof result === "object", "transform function should not return null");
38 | this.value = result;
39 | }
40 | }
41 |
--------------------------------------------------------------------------------
/src/ASTGenerator.js:
--------------------------------------------------------------------------------
1 | // LICENSE : MIT
2 | "use strict";
3 | import assert from "assert";
4 | import { generate } from "escodegen";
5 | import babelGenerate from "@babel/generator";
6 | import { adjustFilePath } from "./utils/filepath-util";
7 | import { ParserTypes, findParserType } from "./utils/find-parser";
8 | export default class ASTGenerator {
9 | /**
10 | * @param {ASTSourceOptions} options
11 | */
12 | constructor(options) {
13 | /**
14 | * @type {ASTSourceOptions}
15 | */
16 | this.options = options;
17 | this.type = findParserType(options);
18 | }
19 |
20 | _sourceCodePath() {
21 | return adjustFilePath(this.options.filePath, this.options.sourceRoot);
22 | }
23 |
24 | /**
25 | * generate code(only)
26 | * @param {Object}AST
27 | * @returns {string}
28 | */
29 | generateCode(AST) {
30 | if (this.type === ParserTypes.Esprima) {
31 | return generate(AST, {
32 | comment: this.options.comment
33 | });
34 | } else if (this.type === ParserTypes.Babylon) {
35 | return babelGenerate(AST);
36 | }
37 | }
38 |
39 | /**
40 | * generate code and source map
41 | * @param {Object} AST
42 | * @param {{sourceContent: string}} sourceContent sourceContent is original code for SourceMap
43 | * @returns {{code: string, map: Object}}
44 | */
45 | generateCodeWithMap(AST, { sourceContent }) {
46 | assert(sourceContent != null, "sourceContent is required. `generate(AST, {sourceContent})`");
47 | if (this.type === ParserTypes.Esprima) {
48 | const generateOption = {
49 | comment: this.options.comment,
50 | sourceMap: this._sourceCodePath(),
51 | sourceContent: sourceContent,
52 | sourceMapWithCode: true
53 | };
54 | const { code, map } = generate(AST, generateOption);
55 | return { code, map };
56 | } else if (this.type === ParserTypes.Babylon) {
57 | return babelGenerate(AST, {}, sourceContent);
58 | }
59 | }
60 | }
61 |
--------------------------------------------------------------------------------
/src/ASTOutput.js:
--------------------------------------------------------------------------------
1 | // LICENSE : MIT
2 | "use strict";
3 | import convert from "convert-source-map";
4 | export default class ASTOutput {
5 | constructor(code, map) {
6 | this._code = code;
7 | this._map = map;
8 | }
9 |
10 | get code() {
11 | return this._code;
12 | }
13 |
14 | get map() {
15 | return this._map;
16 | }
17 |
18 | get codeWithMap() {
19 | if (!this._map) {
20 | return this._code;
21 | }
22 | return this.code + "\n" + convert.fromObject(this.map).toComment();
23 | }
24 | }
25 |
--------------------------------------------------------------------------------
/src/ASTParser.js:
--------------------------------------------------------------------------------
1 | // LICENSE : MIT
2 | "use strict";
3 | import { ParserTypes, findParserType } from "./utils/find-parser";
4 |
5 | import { parseToEsprima } from "./babel-parse-to-esprima";
6 | // FIXME: why wrong import for espower-babel?
7 | const esprima = require("esprima-next");
8 |
9 | var debug = require("debug")("ASTSource");
10 |
11 | function attachComments(ast, comments, tokens) {
12 | if (comments.length) {
13 | var firstComment = comments[0];
14 | var lastComment = comments[comments.length - 1];
15 | // fixup program start
16 | if (!tokens.length) {
17 | // if no tokens, the program starts at the end of the last comment
18 | ast.start = lastComment.end;
19 | ast.loc.start.line = lastComment.loc.end.line;
20 | ast.loc.start.column = lastComment.loc.end.column;
21 | } else if (firstComment.start < tokens[0].start) {
22 | // if there are comments before the first token, the program starts at the first token
23 | var token = tokens[0];
24 | ast.start = token.start;
25 | ast.loc.start.line = token.loc.start.line;
26 | ast.loc.start.column = token.loc.start.column;
27 |
28 | // estraverse do not put leading comments on first node when the comment
29 | // appear before the first token
30 | if (ast.body.length) {
31 | var node = ast.body[0];
32 | node.leadingComments = [];
33 | var firstTokenStart = token.start;
34 | var len = comments.length;
35 | for (var i = 0; i < len && comments[i].start < firstTokenStart; i++) {
36 | node.leadingComments.push(comments[i]);
37 | }
38 | }
39 | }
40 | // fixup program end
41 | if (tokens.length) {
42 | var lastToken = tokens[tokens.length - 1];
43 | if (lastComment.end > lastToken.end) {
44 | // If there is a comment after the last token, the program ends at the
45 | // last token and not the comment
46 | ast.end = lastToken.end;
47 | ast.loc.end.line = lastToken.loc.end.line;
48 | ast.loc.end.column = lastToken.loc.end.column;
49 | }
50 | }
51 | }
52 | }
53 |
54 | export default class ASTParser {
55 | /**
56 | * @param {ASTSourceOptions} options
57 | */
58 | constructor(options) {
59 | this.options = options;
60 | this.type = findParserType(options);
61 | debug("ParserType: %s", this.type);
62 | }
63 |
64 | /**
65 | * change parser type
66 | * @param {ParserTypes} type
67 | */
68 | setType(type) {
69 | this.type = type;
70 | }
71 |
72 | parse(code) {
73 | if (this.type === ParserTypes.Esprima) {
74 | return this._parseByEsprima(code, this.options);
75 | } else if (this.type === ParserTypes.Babylon) {
76 | return this._parseByBabel(code, this.options);
77 | }
78 | throw new Error("unreachable #parse");
79 | }
80 |
81 | /**
82 | * @param code
83 | * @param {ASTSourceOptions} options
84 | * @returns {Object}
85 | * @private
86 | */
87 | _parseByEsprima(code, options) {
88 | var esprimaOptions = {
89 | source: options.filePath,
90 | loc: options.loc,
91 | range: options.range,
92 | comment: options.comment,
93 | attachComment: options.comment,
94 | tokens: options.esprimaTokens,
95 | sourceType: options.sourceType || "module"
96 | };
97 | return esprima.parse(code, esprimaOptions);
98 | }
99 |
100 | _parseByBabel(code, options) {
101 | var babylonOptions = {
102 | sourceFile: options.filePath,
103 | locations: options.loc,
104 | ranges: options.range,
105 | sourceType: options.sourceType || "module",
106 | strictMode: true,
107 | allowImportExportEverywhere: false, // consistent with espree
108 | allowReturnOutsideFunction: true,
109 | allowSuperOutsideMethod: true,
110 | plugins: [
111 | "flow",
112 | "jsx",
113 | "asyncFunctions",
114 | "asyncGenerators",
115 | "classConstructorCall",
116 | "classProperties",
117 | "decorators",
118 | "doExpressions",
119 | "exponentiationOperator",
120 | "exportExtensions",
121 | "functionBind",
122 | "functionSent",
123 | "objectRestSpread",
124 | "trailingFunctionCommas"
125 | ]
126 | };
127 | return parseToEsprima(code, babylonOptions);
128 | }
129 | }
130 |
--------------------------------------------------------------------------------
/src/ASTSource.js:
--------------------------------------------------------------------------------
1 | // LICENSE : MIT
2 | "use strict";
3 | import assert from "assert";
4 | import ASTParser from "./ASTParser";
5 | import ASTGenerator from "./ASTGenerator";
6 | import ASTOutput from "./ASTOutput";
7 | import ObjectAssign from "object-assign";
8 | export { ParserTypes } from "./utils/find-parser";
9 | import ASTDataContainer from "./ASTDataContainer";
10 | export { ASTDataContainer };
11 | var debug = require("debug")("ASTSource");
12 | /**
13 | * @type {Object} ASTSourceOptions
14 | * @property {string} ASTSourceOptions.filePath? path to source code
15 | * @property {string} ASTSourceOptions.sourceRoot? source root path to source code
16 | * @property {parserType} ASTSourceOptions.parserType? what parser is used
17 | * @property {boolean} ASTSourceOptions.esprimaTokens? tokens
18 | * @property {boolean} ASTSourceOptions.range? range
19 | * @property {boolean} ASTSourceOptions.loc? location
20 | * @property {boolean} ASTSourceOptions.comment?
21 | */
22 | const defaultOptions = {
23 | filePath: null,
24 | disableSourceMap: false,
25 | parserType: null,
26 | esprimaTokens: true,
27 | loc: true,
28 | range: true,
29 | comment: true
30 | };
31 | export function validateCode(code) {
32 | assert(typeof code !== "undefined");
33 | }
34 | export function validateOptions(options) {
35 | if (!options.disableSourceMap) {
36 | assert(typeof options.filePath === "string", "`options.filePath` is required for sourcemap support");
37 | }
38 | }
39 | export default class ASTSource {
40 | constructor(code, options) {
41 | this.code = code;
42 | this.options = ObjectAssign({}, defaultOptions, options);
43 | validateCode(code);
44 | validateOptions(this.options);
45 | this.parser = new ASTParser(this.options);
46 | this.generator = new ASTGenerator(this.options);
47 | /** @type {Object} AST object */
48 | this.dataContainer = new ASTDataContainer(this.parse(this.code));
49 | debug("options: %o", this.options);
50 | }
51 |
52 | value() {
53 | return this.dataContainer.value;
54 | }
55 |
56 | /**
57 | * return cloned AST
58 | * @return {Object}
59 | */
60 | cloneValue() {
61 | return this.dataContainer.cloneValue();
62 | }
63 |
64 | parse(code) {
65 | return this.parser.parse(code);
66 | }
67 |
68 | /**
69 | * transform AST by transformFn.
70 | * @param {function} transformFn
71 | * @example
72 | * function transformFn(AST){
73 | * return modify(AST)
74 | * }
75 | * source.transform(transformFn);
76 | */
77 | transform(transformFn) {
78 | this.dataContainer.transform(transformFn);
79 | return this;
80 | }
81 |
82 | /**
83 | * transform AST after healing the AST.
84 | * @param {function} transformFn
85 | */
86 | transformStrict(transformFn) {
87 | this.dataContainer.transformStrict(transformFn, this.options);
88 | return this;
89 | }
90 |
91 | /**
92 | * @returns {ASTOutput}
93 | */
94 | output() {
95 | // when sourcemap is disable, only generate code
96 | if (this.options.disableSourceMap) {
97 | return new ASTOutput(this.generator.generateCode(this.dataContainer.value));
98 | }
99 | var { code, map } = this.generator.generateCodeWithMap(this.dataContainer.value, {
100 | sourceContent: this.code
101 | });
102 | return new ASTOutput(code, map);
103 | }
104 | }
105 |
--------------------------------------------------------------------------------
/src/babel-parse-to-esprima.js:
--------------------------------------------------------------------------------
1 | // LICENSE : MIT
2 | "use strict";
3 |
4 | const parse = require("babylon").parse;
5 | const acornToEsprima = require("acorn-to-esprima");
6 | export function parseToEsprima(code, opts) {
7 | var comments = (opts.onComment = []);
8 | var tokens = (opts.onToken = []);
9 |
10 | var ast;
11 | try {
12 | ast = parse(code, opts);
13 | } catch (err) {
14 | throw err;
15 | }
16 |
17 | tokens.pop();
18 | if (opts.comment) {
19 | // add comments
20 | for (var i = 0; i < comments.length; i++) {
21 | var comment = comments[i];
22 | if (comment.type === "CommentBlock") {
23 | comment.type = "Block";
24 | } else if (comment.type === "CommentLine") {
25 | comment.type = "Line";
26 | }
27 | }
28 | ast.comments = comments;
29 | }
30 | // acorn to esprima
31 | if (opts.esprimaTokens) {
32 | // convert tokens
33 | ast.tokens = acornToEsprima.toTokens(tokens);
34 | acornToEsprima(ast, comments, ast.tokens);
35 |
36 | // transform esprima and acorn divergent nodes
37 | acornToEsprima.toAST(ast);
38 | }
39 | return ast;
40 | }
41 |
--------------------------------------------------------------------------------
/src/utils/ast-healing-util.js:
--------------------------------------------------------------------------------
1 | // LICENSE : MIT
2 | "use strict";
3 | import ASTGenerator from "./../ASTGenerator";
4 | import ASTParser from "./../ASTParser";
5 | /**
6 | * healing ast with options.
7 | * ensure valid AST for options.
8 | *
9 | * provide `range`, `loc` etc...
10 | * @param AST
11 | * @param {ASTSourceOptions} options
12 | */
13 | export function healingAST(AST, options) {
14 | var parser = new ASTParser(options);
15 | var generator = new ASTGenerator(options);
16 | return parser.parse(generator.generateCode(AST));
17 | }
18 |
--------------------------------------------------------------------------------
/src/utils/filepath-util.js:
--------------------------------------------------------------------------------
1 | // LICENSE : MIT
2 | "use strict";
3 | import fs from "fs";
4 | import isAbsolute from "path-is-absolute";
5 | // code from https://github.com/power-assert-js/espower-source
6 | export function adjustFilePath(filepath, sourceRoot) {
7 | if (!sourceRoot || !isAbsolute(filepath)) {
8 | return filepath;
9 | }
10 | var relativePath = _path.relative(sourceRoot, filepath);
11 | if (relativePath.split(_path.sep).indexOf("..") !== -1) {
12 | // if absolute filePath conflicts with sourceRoot, use filepath only.
13 | return filepath;
14 | }
15 | return relativePath;
16 | }
17 | export function hasExistDirectory(dirPath) {
18 | try {
19 | // Query the entry
20 | var stats = fs.lstatSync(dirPath);
21 |
22 | // Is it a directory?
23 | if (stats.isDirectory()) {
24 | return true;
25 | }
26 | } catch (e) {
27 | return false;
28 | }
29 | return false;
30 | }
31 |
--------------------------------------------------------------------------------
/src/utils/find-parser.js:
--------------------------------------------------------------------------------
1 | // LICENSE : MIT
2 | "use strict";
3 | import ObjectAssign from "object-assign";
4 | export const ParserTypes = {
5 | // https://github.com/babel/babel/tree/master/packages/babylon aka. using by Babel
6 | Babylon: "Babylon",
7 | Esprima: "Esprima",
8 | Unknown: "Unknown"
9 | };
10 |
11 | function isBabylon(dependecies) {
12 | if (!dependecies) {
13 | return false;
14 | }
15 | var keys = Object.keys(dependecies);
16 | var matchName = /^babel|^babylon/i;
17 | return keys.some(function(key) {
18 | return matchName.test(key);
19 | });
20 | }
21 |
22 | export function findParserType(options) {
23 | // default parser: esprima
24 | if (options.parserType) {
25 | return options.parserType;
26 | } else {
27 | return ParserTypes.Esprima;
28 | }
29 | }
30 |
--------------------------------------------------------------------------------
/test/ASTSource-test.js:
--------------------------------------------------------------------------------
1 | import assert from "assert";
2 | import astEqual from "ast-equal";
3 | import ASTSource from "../src/ASTSource";
4 | import ASTOutput from "../src/ASTOutput";
5 | import { ParserTypes } from "../src/ASTSource";
6 | import { toAssertFromAST } from "comment-to-assert";
7 |
8 | describe("ASTSource", () => {
9 | describe("Constructor", function() {
10 | it("should require `filePath`", function() {
11 | var source = new ASTSource("var a;", {
12 | filePath: "file.js"
13 | });
14 | assert(source instanceof ASTSource);
15 | });
16 | context("when `disableSourceMap` is true", function() {
17 | it("should not require `filePath`", function() {
18 | var source = new ASTSource("var a;", {
19 | disableSourceMap: true
20 | });
21 | assert(source instanceof ASTSource);
22 | });
23 | });
24 | it("support ES2018 code", function() {
25 | var source = new ASTSource("async function a(){}", {
26 | disableSourceMap: true
27 | });
28 | assert(source instanceof ASTSource);
29 | });
30 | });
31 |
32 | describe("#parse", function() {
33 | it("should parse source code", function() {
34 | var source = new ASTSource("var a = 1", {
35 | filePath: "file.js",
36 | parserType: ParserTypes.Babylon
37 | });
38 | assert(source.value());
39 | var AST = source.parse("var b");
40 | assert(typeof AST !== "undefined");
41 | });
42 | it("should use parser by defined parserType", function() {
43 | var source = new ASTSource("var jsx = ", {
44 | filePath: "file.js",
45 | parserType: ParserTypes.Babylon
46 | });
47 | assert(source.value());
48 | });
49 | });
50 | describe("#transform", function() {
51 | it("should update .value", function() {
52 | var source = new ASTSource("1;// => 1", {
53 | filePath: "file.js"
54 | });
55 | var beforeValue = source.cloneValue();
56 | source.transform(toAssertFromAST);
57 | var afterValue = source.cloneValue();
58 | assert.notDeepEqual(beforeValue, afterValue);
59 | var output = source.output();
60 | assert(typeof output.code !== "undefined");
61 | assert.equal(output.code, `assert.equal(1, 1);`);
62 | });
63 | it("should pass AST to transform function", function() {
64 | var source = new ASTSource("1;// => 1", {
65 | filePath: "file.js"
66 | });
67 | source.transform(function(AST) {
68 | assert(typeof AST !== "undefined");
69 | return AST;
70 | });
71 | });
72 | it("transform return null then throw Error", function() {
73 | var source = new ASTSource("1;// => 1", {
74 | filePath: "file.js"
75 | });
76 | assert.throws(function() {
77 | source.transform(function() {
78 | // too bad
79 | return null;
80 | });
81 | }, Error);
82 | });
83 | });
84 | describe("#output", function() {
85 | it("should return Object", function() {
86 | var code = "var a; // comment";
87 | var source = new ASTSource(code, {
88 | filePath: "file.js"
89 | });
90 | var result = source.output();
91 | assert(result instanceof ASTOutput);
92 | astEqual(result.code, code);
93 | });
94 | context("when `disableSourceMap` is true", function() {
95 | it("output should not has `map` property", function() {
96 | var code = "var a;";
97 | var source = new ASTSource(code, {
98 | disableSourceMap: true
99 | });
100 | var output = source.output();
101 | assert(typeof output.code !== "undefined");
102 | assert(output.map == null);
103 | assert.equal(output.codeWithMap, code);
104 | });
105 | });
106 | });
107 | });
108 |
--------------------------------------------------------------------------------
/test/mocha.opts:
--------------------------------------------------------------------------------
1 | --require @babel/register
2 |
--------------------------------------------------------------------------------
/yarn.lock:
--------------------------------------------------------------------------------
1 | # THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY.
2 | # yarn lockfile v1
3 |
4 |
5 | "@ampproject/remapping@^2.1.0":
6 | version "2.2.0"
7 | resolved "https://registry.yarnpkg.com/@ampproject/remapping/-/remapping-2.2.0.tgz#56c133824780de3174aed5ab6834f3026790154d"
8 | integrity sha512-qRmjj8nj9qmLTQXXmaR1cck3UXSRMPrbsLJAasZpF+t3riI71BXed5ebIOYwQntykeZuhjsdweEc9BxH5Jc26w==
9 | dependencies:
10 | "@jridgewell/gen-mapping" "^0.1.0"
11 | "@jridgewell/trace-mapping" "^0.3.9"
12 |
13 | "@babel/cli@^7.0.0":
14 | version "7.19.3"
15 | resolved "https://registry.yarnpkg.com/@babel/cli/-/cli-7.19.3.tgz#55914ed388e658e0b924b3a95da1296267e278e2"
16 | integrity sha512-643/TybmaCAe101m2tSVHi9UKpETXP9c/Ff4mD2tAwkdP6esKIfaauZFc67vGEM6r9fekbEGid+sZhbEnSe3dg==
17 | dependencies:
18 | "@jridgewell/trace-mapping" "^0.3.8"
19 | commander "^4.0.1"
20 | convert-source-map "^1.1.0"
21 | fs-readdir-recursive "^1.1.0"
22 | glob "^7.2.0"
23 | make-dir "^2.1.0"
24 | slash "^2.0.0"
25 | optionalDependencies:
26 | "@nicolo-ribaudo/chokidar-2" "2.1.8-no-fsevents.3"
27 | chokidar "^3.4.0"
28 |
29 | "@babel/code-frame@^7.18.6":
30 | version "7.18.6"
31 | resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.18.6.tgz#3b25d38c89600baa2dcc219edfa88a74eb2c427a"
32 | integrity sha512-TDCmlK5eOvH+eH7cdAFlNXeVJqWIQ7gW9tY1GJIpUtFb6CmjVyq2VM3u71bOyR8CRihcCgMUYoDNyLXao3+70Q==
33 | dependencies:
34 | "@babel/highlight" "^7.18.6"
35 |
36 | "@babel/compat-data@^7.17.7", "@babel/compat-data@^7.19.3", "@babel/compat-data@^7.19.4":
37 | version "7.19.4"
38 | resolved "https://registry.yarnpkg.com/@babel/compat-data/-/compat-data-7.19.4.tgz#95c86de137bf0317f3a570e1b6e996b427299747"
39 | integrity sha512-CHIGpJcUQ5lU9KrPHTjBMhVwQG6CQjxfg36fGXl3qk/Gik1WwWachaXFuo0uCWJT/mStOKtcbFJCaVLihC1CMw==
40 |
41 | "@babel/core@^7.0.0":
42 | version "7.19.3"
43 | resolved "https://registry.yarnpkg.com/@babel/core/-/core-7.19.3.tgz#2519f62a51458f43b682d61583c3810e7dcee64c"
44 | integrity sha512-WneDJxdsjEvyKtXKsaBGbDeiyOjR5vYq4HcShxnIbG0qixpoHjI3MqeZM9NDvsojNCEBItQE4juOo/bU6e72gQ==
45 | dependencies:
46 | "@ampproject/remapping" "^2.1.0"
47 | "@babel/code-frame" "^7.18.6"
48 | "@babel/generator" "^7.19.3"
49 | "@babel/helper-compilation-targets" "^7.19.3"
50 | "@babel/helper-module-transforms" "^7.19.0"
51 | "@babel/helpers" "^7.19.0"
52 | "@babel/parser" "^7.19.3"
53 | "@babel/template" "^7.18.10"
54 | "@babel/traverse" "^7.19.3"
55 | "@babel/types" "^7.19.3"
56 | convert-source-map "^1.7.0"
57 | debug "^4.1.0"
58 | gensync "^1.0.0-beta.2"
59 | json5 "^2.2.1"
60 | semver "^6.3.0"
61 |
62 | "@babel/generator@^7.0.0", "@babel/generator@^7.19.3", "@babel/generator@^7.19.4":
63 | version "7.19.4"
64 | resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.19.4.tgz#60050cf3f0a593d7b2471b4be4f62a56b949237f"
65 | integrity sha512-5T2lY5vXqS+5UEit/5TwcIUeCnwgCljcF8IQRT6XRQPBrvLeq5V8W+URv+GvwoF3FP8tkhp++evVyDzkDGzNmA==
66 | dependencies:
67 | "@babel/types" "^7.19.4"
68 | "@jridgewell/gen-mapping" "^0.3.2"
69 | jsesc "^2.5.1"
70 |
71 | "@babel/helper-annotate-as-pure@^7.18.6":
72 | version "7.18.6"
73 | resolved "https://registry.yarnpkg.com/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.18.6.tgz#eaa49f6f80d5a33f9a5dd2276e6d6e451be0a6bb"
74 | integrity sha512-duORpUiYrEpzKIop6iNbjnwKLAKnJ47csTyRACyEmWj0QdUrm5aqNJGHSSEQSUAvNW0ojX0dOmK9dZduvkfeXA==
75 | dependencies:
76 | "@babel/types" "^7.18.6"
77 |
78 | "@babel/helper-builder-binary-assignment-operator-visitor@^7.18.6":
79 | version "7.18.9"
80 | resolved "https://registry.yarnpkg.com/@babel/helper-builder-binary-assignment-operator-visitor/-/helper-builder-binary-assignment-operator-visitor-7.18.9.tgz#acd4edfd7a566d1d51ea975dff38fd52906981bb"
81 | integrity sha512-yFQ0YCHoIqarl8BCRwBL8ulYUaZpz3bNsA7oFepAzee+8/+ImtADXNOmO5vJvsPff3qi+hvpkY/NYBTrBQgdNw==
82 | dependencies:
83 | "@babel/helper-explode-assignable-expression" "^7.18.6"
84 | "@babel/types" "^7.18.9"
85 |
86 | "@babel/helper-compilation-targets@^7.17.7", "@babel/helper-compilation-targets@^7.18.9", "@babel/helper-compilation-targets@^7.19.0", "@babel/helper-compilation-targets@^7.19.3":
87 | version "7.19.3"
88 | resolved "https://registry.yarnpkg.com/@babel/helper-compilation-targets/-/helper-compilation-targets-7.19.3.tgz#a10a04588125675d7c7ae299af86fa1b2ee038ca"
89 | integrity sha512-65ESqLGyGmLvgR0mst5AdW1FkNlj9rQsCKduzEoEPhBCDFGXvz2jW6bXFG6i0/MrV2s7hhXjjb2yAzcPuQlLwg==
90 | dependencies:
91 | "@babel/compat-data" "^7.19.3"
92 | "@babel/helper-validator-option" "^7.18.6"
93 | browserslist "^4.21.3"
94 | semver "^6.3.0"
95 |
96 | "@babel/helper-create-class-features-plugin@^7.18.6":
97 | version "7.19.0"
98 | resolved "https://registry.yarnpkg.com/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.19.0.tgz#bfd6904620df4e46470bae4850d66be1054c404b"
99 | integrity sha512-NRz8DwF4jT3UfrmUoZjd0Uph9HQnP30t7Ash+weACcyNkiYTywpIjDBgReJMKgr+n86sn2nPVVmJ28Dm053Kqw==
100 | dependencies:
101 | "@babel/helper-annotate-as-pure" "^7.18.6"
102 | "@babel/helper-environment-visitor" "^7.18.9"
103 | "@babel/helper-function-name" "^7.19.0"
104 | "@babel/helper-member-expression-to-functions" "^7.18.9"
105 | "@babel/helper-optimise-call-expression" "^7.18.6"
106 | "@babel/helper-replace-supers" "^7.18.9"
107 | "@babel/helper-split-export-declaration" "^7.18.6"
108 |
109 | "@babel/helper-create-regexp-features-plugin@^7.18.6", "@babel/helper-create-regexp-features-plugin@^7.19.0":
110 | version "7.19.0"
111 | resolved "https://registry.yarnpkg.com/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.19.0.tgz#7976aca61c0984202baca73d84e2337a5424a41b"
112 | integrity sha512-htnV+mHX32DF81amCDrwIDr8nrp1PTm+3wfBN9/v8QJOLEioOCOG7qNyq0nHeFiWbT3Eb7gsPwEmV64UCQ1jzw==
113 | dependencies:
114 | "@babel/helper-annotate-as-pure" "^7.18.6"
115 | regexpu-core "^5.1.0"
116 |
117 | "@babel/helper-define-polyfill-provider@^0.3.3":
118 | version "0.3.3"
119 | resolved "https://registry.yarnpkg.com/@babel/helper-define-polyfill-provider/-/helper-define-polyfill-provider-0.3.3.tgz#8612e55be5d51f0cd1f36b4a5a83924e89884b7a"
120 | integrity sha512-z5aQKU4IzbqCC1XH0nAqfsFLMVSo22SBKUc0BxGrLkolTdPTructy0ToNnlO2zA4j9Q/7pjMZf0DSY+DSTYzww==
121 | dependencies:
122 | "@babel/helper-compilation-targets" "^7.17.7"
123 | "@babel/helper-plugin-utils" "^7.16.7"
124 | debug "^4.1.1"
125 | lodash.debounce "^4.0.8"
126 | resolve "^1.14.2"
127 | semver "^6.1.2"
128 |
129 | "@babel/helper-environment-visitor@^7.18.9":
130 | version "7.18.9"
131 | resolved "https://registry.yarnpkg.com/@babel/helper-environment-visitor/-/helper-environment-visitor-7.18.9.tgz#0c0cee9b35d2ca190478756865bb3528422f51be"
132 | integrity sha512-3r/aACDJ3fhQ/EVgFy0hpj8oHyHpQc+LPtJoY9SzTThAsStm4Ptegq92vqKoE3vD706ZVFWITnMnxucw+S9Ipg==
133 |
134 | "@babel/helper-explode-assignable-expression@^7.18.6":
135 | version "7.18.6"
136 | resolved "https://registry.yarnpkg.com/@babel/helper-explode-assignable-expression/-/helper-explode-assignable-expression-7.18.6.tgz#41f8228ef0a6f1a036b8dfdfec7ce94f9a6bc096"
137 | integrity sha512-eyAYAsQmB80jNfg4baAtLeWAQHfHFiR483rzFK+BhETlGZaQC9bsfrugfXDCbRHLQbIA7U5NxhhOxN7p/dWIcg==
138 | dependencies:
139 | "@babel/types" "^7.18.6"
140 |
141 | "@babel/helper-function-name@^7.18.9", "@babel/helper-function-name@^7.19.0":
142 | version "7.19.0"
143 | resolved "https://registry.yarnpkg.com/@babel/helper-function-name/-/helper-function-name-7.19.0.tgz#941574ed5390682e872e52d3f38ce9d1bef4648c"
144 | integrity sha512-WAwHBINyrpqywkUH0nTnNgI5ina5TFn85HKS0pbPDfxFfhyR/aNQEn4hGi1P1JyT//I0t4OgXUlofzWILRvS5w==
145 | dependencies:
146 | "@babel/template" "^7.18.10"
147 | "@babel/types" "^7.19.0"
148 |
149 | "@babel/helper-hoist-variables@^7.18.6":
150 | version "7.18.6"
151 | resolved "https://registry.yarnpkg.com/@babel/helper-hoist-variables/-/helper-hoist-variables-7.18.6.tgz#d4d2c8fb4baeaa5c68b99cc8245c56554f926678"
152 | integrity sha512-UlJQPkFqFULIcyW5sbzgbkxn2FKRgwWiRexcuaR8RNJRy8+LLveqPjwZV/bwrLZCN0eUHD/x8D0heK1ozuoo6Q==
153 | dependencies:
154 | "@babel/types" "^7.18.6"
155 |
156 | "@babel/helper-member-expression-to-functions@^7.18.9":
157 | version "7.18.9"
158 | resolved "https://registry.yarnpkg.com/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.18.9.tgz#1531661e8375af843ad37ac692c132841e2fd815"
159 | integrity sha512-RxifAh2ZoVU67PyKIO4AMi1wTenGfMR/O/ae0CCRqwgBAt5v7xjdtRw7UoSbsreKrQn5t7r89eruK/9JjYHuDg==
160 | dependencies:
161 | "@babel/types" "^7.18.9"
162 |
163 | "@babel/helper-module-imports@^7.18.6":
164 | version "7.18.6"
165 | resolved "https://registry.yarnpkg.com/@babel/helper-module-imports/-/helper-module-imports-7.18.6.tgz#1e3ebdbbd08aad1437b428c50204db13c5a3ca6e"
166 | integrity sha512-0NFvs3VkuSYbFi1x2Vd6tKrywq+z/cLeYC/RJNFrIX/30Bf5aiGYbtvGXolEktzJH8o5E5KJ3tT+nkxuuZFVlA==
167 | dependencies:
168 | "@babel/types" "^7.18.6"
169 |
170 | "@babel/helper-module-transforms@^7.18.6", "@babel/helper-module-transforms@^7.19.0":
171 | version "7.19.0"
172 | resolved "https://registry.yarnpkg.com/@babel/helper-module-transforms/-/helper-module-transforms-7.19.0.tgz#309b230f04e22c58c6a2c0c0c7e50b216d350c30"
173 | integrity sha512-3HBZ377Fe14RbLIA+ac3sY4PTgpxHVkFrESaWhoI5PuyXPBBX8+C34qblV9G89ZtycGJCmCI/Ut+VUDK4bltNQ==
174 | dependencies:
175 | "@babel/helper-environment-visitor" "^7.18.9"
176 | "@babel/helper-module-imports" "^7.18.6"
177 | "@babel/helper-simple-access" "^7.18.6"
178 | "@babel/helper-split-export-declaration" "^7.18.6"
179 | "@babel/helper-validator-identifier" "^7.18.6"
180 | "@babel/template" "^7.18.10"
181 | "@babel/traverse" "^7.19.0"
182 | "@babel/types" "^7.19.0"
183 |
184 | "@babel/helper-optimise-call-expression@^7.18.6":
185 | version "7.18.6"
186 | resolved "https://registry.yarnpkg.com/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.18.6.tgz#9369aa943ee7da47edab2cb4e838acf09d290ffe"
187 | integrity sha512-HP59oD9/fEHQkdcbgFCnbmgH5vIQTJbxh2yf+CdM89/glUNnuzr87Q8GIjGEnOktTROemO0Pe0iPAYbqZuOUiA==
188 | dependencies:
189 | "@babel/types" "^7.18.6"
190 |
191 | "@babel/helper-plugin-utils@^7.0.0", "@babel/helper-plugin-utils@^7.10.4", "@babel/helper-plugin-utils@^7.12.13", "@babel/helper-plugin-utils@^7.14.5", "@babel/helper-plugin-utils@^7.16.7", "@babel/helper-plugin-utils@^7.18.6", "@babel/helper-plugin-utils@^7.18.9", "@babel/helper-plugin-utils@^7.19.0", "@babel/helper-plugin-utils@^7.8.0", "@babel/helper-plugin-utils@^7.8.3":
192 | version "7.19.0"
193 | resolved "https://registry.yarnpkg.com/@babel/helper-plugin-utils/-/helper-plugin-utils-7.19.0.tgz#4796bb14961521f0f8715990bee2fb6e51ce21bf"
194 | integrity sha512-40Ryx7I8mT+0gaNxm8JGTZFUITNqdLAgdg0hXzeVZxVD6nFsdhQvip6v8dqkRHzsz1VFpFAaOCHNn0vKBL7Czw==
195 |
196 | "@babel/helper-remap-async-to-generator@^7.18.6", "@babel/helper-remap-async-to-generator@^7.18.9":
197 | version "7.18.9"
198 | resolved "https://registry.yarnpkg.com/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.18.9.tgz#997458a0e3357080e54e1d79ec347f8a8cd28519"
199 | integrity sha512-dI7q50YKd8BAv3VEfgg7PS7yD3Rtbi2J1XMXaalXO0W0164hYLnh8zpjRS0mte9MfVp/tltvr/cfdXPvJr1opA==
200 | dependencies:
201 | "@babel/helper-annotate-as-pure" "^7.18.6"
202 | "@babel/helper-environment-visitor" "^7.18.9"
203 | "@babel/helper-wrap-function" "^7.18.9"
204 | "@babel/types" "^7.18.9"
205 |
206 | "@babel/helper-replace-supers@^7.18.6", "@babel/helper-replace-supers@^7.18.9":
207 | version "7.19.1"
208 | resolved "https://registry.yarnpkg.com/@babel/helper-replace-supers/-/helper-replace-supers-7.19.1.tgz#e1592a9b4b368aa6bdb8784a711e0bcbf0612b78"
209 | integrity sha512-T7ahH7wV0Hfs46SFh5Jz3s0B6+o8g3c+7TMxu7xKfmHikg7EAZ3I2Qk9LFhjxXq8sL7UkP5JflezNwoZa8WvWw==
210 | dependencies:
211 | "@babel/helper-environment-visitor" "^7.18.9"
212 | "@babel/helper-member-expression-to-functions" "^7.18.9"
213 | "@babel/helper-optimise-call-expression" "^7.18.6"
214 | "@babel/traverse" "^7.19.1"
215 | "@babel/types" "^7.19.0"
216 |
217 | "@babel/helper-simple-access@^7.18.6":
218 | version "7.19.4"
219 | resolved "https://registry.yarnpkg.com/@babel/helper-simple-access/-/helper-simple-access-7.19.4.tgz#be553f4951ac6352df2567f7daa19a0ee15668e7"
220 | integrity sha512-f9Xq6WqBFqaDfbCzn2w85hwklswz5qsKlh7f08w4Y9yhJHpnNC0QemtSkK5YyOY8kPGvyiwdzZksGUhnGdaUIg==
221 | dependencies:
222 | "@babel/types" "^7.19.4"
223 |
224 | "@babel/helper-skip-transparent-expression-wrappers@^7.18.9":
225 | version "7.18.9"
226 | resolved "https://registry.yarnpkg.com/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.18.9.tgz#778d87b3a758d90b471e7b9918f34a9a02eb5818"
227 | integrity sha512-imytd2gHi3cJPsybLRbmFrF7u5BIEuI2cNheyKi3/iOBC63kNn3q8Crn2xVuESli0aM4KYsyEqKyS7lFL8YVtw==
228 | dependencies:
229 | "@babel/types" "^7.18.9"
230 |
231 | "@babel/helper-split-export-declaration@^7.18.6":
232 | version "7.18.6"
233 | resolved "https://registry.yarnpkg.com/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.18.6.tgz#7367949bc75b20c6d5a5d4a97bba2824ae8ef075"
234 | integrity sha512-bde1etTx6ZyTmobl9LLMMQsaizFVZrquTEHOqKeQESMKo4PlObf+8+JA25ZsIpZhT/WEd39+vOdLXAFG/nELpA==
235 | dependencies:
236 | "@babel/types" "^7.18.6"
237 |
238 | "@babel/helper-string-parser@^7.19.4":
239 | version "7.19.4"
240 | resolved "https://registry.yarnpkg.com/@babel/helper-string-parser/-/helper-string-parser-7.19.4.tgz#38d3acb654b4701a9b77fb0615a96f775c3a9e63"
241 | integrity sha512-nHtDoQcuqFmwYNYPz3Rah5ph2p8PFeFCsZk9A/48dPc/rGocJ5J3hAAZ7pb76VWX3fZKu+uEr/FhH5jLx7umrw==
242 |
243 | "@babel/helper-validator-identifier@^7.18.6", "@babel/helper-validator-identifier@^7.19.1":
244 | version "7.19.1"
245 | resolved "https://registry.yarnpkg.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.19.1.tgz#7eea834cf32901ffdc1a7ee555e2f9c27e249ca2"
246 | integrity sha512-awrNfaMtnHUr653GgGEs++LlAvW6w+DcPrOliSMXWCKo597CwL5Acf/wWdNkf/tfEQE3mjkeD1YOVZOUV/od1w==
247 |
248 | "@babel/helper-validator-option@^7.18.6":
249 | version "7.18.6"
250 | resolved "https://registry.yarnpkg.com/@babel/helper-validator-option/-/helper-validator-option-7.18.6.tgz#bf0d2b5a509b1f336099e4ff36e1a63aa5db4db8"
251 | integrity sha512-XO7gESt5ouv/LRJdrVjkShckw6STTaB7l9BrpBaAHDeF5YZT+01PCwmR0SJHnkW6i8OwW/EVWRShfi4j2x+KQw==
252 |
253 | "@babel/helper-wrap-function@^7.18.9":
254 | version "7.19.0"
255 | resolved "https://registry.yarnpkg.com/@babel/helper-wrap-function/-/helper-wrap-function-7.19.0.tgz#89f18335cff1152373222f76a4b37799636ae8b1"
256 | integrity sha512-txX8aN8CZyYGTwcLhlk87KRqncAzhh5TpQamZUa0/u3an36NtDpUP6bQgBCBcLeBs09R/OwQu3OjK0k/HwfNDg==
257 | dependencies:
258 | "@babel/helper-function-name" "^7.19.0"
259 | "@babel/template" "^7.18.10"
260 | "@babel/traverse" "^7.19.0"
261 | "@babel/types" "^7.19.0"
262 |
263 | "@babel/helpers@^7.19.0":
264 | version "7.19.4"
265 | resolved "https://registry.yarnpkg.com/@babel/helpers/-/helpers-7.19.4.tgz#42154945f87b8148df7203a25c31ba9a73be46c5"
266 | integrity sha512-G+z3aOx2nfDHwX/kyVii5fJq+bgscg89/dJNWpYeKeBv3v9xX8EIabmx1k6u9LS04H7nROFVRVK+e3k0VHp+sw==
267 | dependencies:
268 | "@babel/template" "^7.18.10"
269 | "@babel/traverse" "^7.19.4"
270 | "@babel/types" "^7.19.4"
271 |
272 | "@babel/highlight@^7.18.6":
273 | version "7.18.6"
274 | resolved "https://registry.yarnpkg.com/@babel/highlight/-/highlight-7.18.6.tgz#81158601e93e2563795adcbfbdf5d64be3f2ecdf"
275 | integrity sha512-u7stbOuYjaPezCuLj29hNW1v64M2Md2qupEKP1fHc7WdOA3DgLh37suiSrZYY7haUB7iBeQZ9P1uiRF359do3g==
276 | dependencies:
277 | "@babel/helper-validator-identifier" "^7.18.6"
278 | chalk "^2.0.0"
279 | js-tokens "^4.0.0"
280 |
281 | "@babel/parser@^7.18.10", "@babel/parser@^7.19.3", "@babel/parser@^7.19.4":
282 | version "7.19.4"
283 | resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.19.4.tgz#03c4339d2b8971eb3beca5252bafd9b9f79db3dc"
284 | integrity sha512-qpVT7gtuOLjWeDTKLkJ6sryqLliBaFpAtGeqw5cs5giLldvh+Ch0plqnUMKoVAUS6ZEueQQiZV+p5pxtPitEsA==
285 |
286 | "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@^7.18.6":
287 | version "7.18.6"
288 | resolved "https://registry.yarnpkg.com/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression/-/plugin-bugfix-safari-id-destructuring-collision-in-function-expression-7.18.6.tgz#da5b8f9a580acdfbe53494dba45ea389fb09a4d2"
289 | integrity sha512-Dgxsyg54Fx1d4Nge8UnvTrED63vrwOdPmyvPzlNN/boaliRP54pm3pGzZD1SJUwrBA+Cs/xdG8kXX6Mn/RfISQ==
290 | dependencies:
291 | "@babel/helper-plugin-utils" "^7.18.6"
292 |
293 | "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@^7.18.9":
294 | version "7.18.9"
295 | resolved "https://registry.yarnpkg.com/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/-/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.18.9.tgz#a11af19aa373d68d561f08e0a57242350ed0ec50"
296 | integrity sha512-AHrP9jadvH7qlOj6PINbgSuphjQUAK7AOT7DPjBo9EHoLhQTnnK5u45e1Hd4DbSQEO9nqPWtQ89r+XEOWFScKg==
297 | dependencies:
298 | "@babel/helper-plugin-utils" "^7.18.9"
299 | "@babel/helper-skip-transparent-expression-wrappers" "^7.18.9"
300 | "@babel/plugin-proposal-optional-chaining" "^7.18.9"
301 |
302 | "@babel/plugin-proposal-async-generator-functions@^7.19.1":
303 | version "7.19.1"
304 | resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-async-generator-functions/-/plugin-proposal-async-generator-functions-7.19.1.tgz#34f6f5174b688529342288cd264f80c9ea9fb4a7"
305 | integrity sha512-0yu8vNATgLy4ivqMNBIwb1HebCelqN7YX8SL3FDXORv/RqT0zEEWUCH4GH44JsSrvCu6GqnAdR5EBFAPeNBB4Q==
306 | dependencies:
307 | "@babel/helper-environment-visitor" "^7.18.9"
308 | "@babel/helper-plugin-utils" "^7.19.0"
309 | "@babel/helper-remap-async-to-generator" "^7.18.9"
310 | "@babel/plugin-syntax-async-generators" "^7.8.4"
311 |
312 | "@babel/plugin-proposal-class-properties@^7.18.6":
313 | version "7.18.6"
314 | resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-class-properties/-/plugin-proposal-class-properties-7.18.6.tgz#b110f59741895f7ec21a6fff696ec46265c446a3"
315 | integrity sha512-cumfXOF0+nzZrrN8Rf0t7M+tF6sZc7vhQwYQck9q1/5w2OExlD+b4v4RpMJFaV1Z7WcDRgO6FqvxqxGlwo+RHQ==
316 | dependencies:
317 | "@babel/helper-create-class-features-plugin" "^7.18.6"
318 | "@babel/helper-plugin-utils" "^7.18.6"
319 |
320 | "@babel/plugin-proposal-class-static-block@^7.18.6":
321 | version "7.18.6"
322 | resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-class-static-block/-/plugin-proposal-class-static-block-7.18.6.tgz#8aa81d403ab72d3962fc06c26e222dacfc9b9020"
323 | integrity sha512-+I3oIiNxrCpup3Gi8n5IGMwj0gOCAjcJUSQEcotNnCCPMEnixawOQ+KeJPlgfjzx+FKQ1QSyZOWe7wmoJp7vhw==
324 | dependencies:
325 | "@babel/helper-create-class-features-plugin" "^7.18.6"
326 | "@babel/helper-plugin-utils" "^7.18.6"
327 | "@babel/plugin-syntax-class-static-block" "^7.14.5"
328 |
329 | "@babel/plugin-proposal-dynamic-import@^7.18.6":
330 | version "7.18.6"
331 | resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-dynamic-import/-/plugin-proposal-dynamic-import-7.18.6.tgz#72bcf8d408799f547d759298c3c27c7e7faa4d94"
332 | integrity sha512-1auuwmK+Rz13SJj36R+jqFPMJWyKEDd7lLSdOj4oJK0UTgGueSAtkrCvz9ewmgyU/P941Rv2fQwZJN8s6QruXw==
333 | dependencies:
334 | "@babel/helper-plugin-utils" "^7.18.6"
335 | "@babel/plugin-syntax-dynamic-import" "^7.8.3"
336 |
337 | "@babel/plugin-proposal-export-namespace-from@^7.18.9":
338 | version "7.18.9"
339 | resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-export-namespace-from/-/plugin-proposal-export-namespace-from-7.18.9.tgz#5f7313ab348cdb19d590145f9247540e94761203"
340 | integrity sha512-k1NtHyOMvlDDFeb9G5PhUXuGj8m/wiwojgQVEhJ/fsVsMCpLyOP4h0uGEjYJKrRI+EVPlb5Jk+Gt9P97lOGwtA==
341 | dependencies:
342 | "@babel/helper-plugin-utils" "^7.18.9"
343 | "@babel/plugin-syntax-export-namespace-from" "^7.8.3"
344 |
345 | "@babel/plugin-proposal-json-strings@^7.18.6":
346 | version "7.18.6"
347 | resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-json-strings/-/plugin-proposal-json-strings-7.18.6.tgz#7e8788c1811c393aff762817e7dbf1ebd0c05f0b"
348 | integrity sha512-lr1peyn9kOdbYc0xr0OdHTZ5FMqS6Di+H0Fz2I/JwMzGmzJETNeOFq2pBySw6X/KFL5EWDjlJuMsUGRFb8fQgQ==
349 | dependencies:
350 | "@babel/helper-plugin-utils" "^7.18.6"
351 | "@babel/plugin-syntax-json-strings" "^7.8.3"
352 |
353 | "@babel/plugin-proposal-logical-assignment-operators@^7.18.9":
354 | version "7.18.9"
355 | resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-logical-assignment-operators/-/plugin-proposal-logical-assignment-operators-7.18.9.tgz#8148cbb350483bf6220af06fa6db3690e14b2e23"
356 | integrity sha512-128YbMpjCrP35IOExw2Fq+x55LMP42DzhOhX2aNNIdI9avSWl2PI0yuBWarr3RYpZBSPtabfadkH2yeRiMD61Q==
357 | dependencies:
358 | "@babel/helper-plugin-utils" "^7.18.9"
359 | "@babel/plugin-syntax-logical-assignment-operators" "^7.10.4"
360 |
361 | "@babel/plugin-proposal-nullish-coalescing-operator@^7.18.6":
362 | version "7.18.6"
363 | resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-nullish-coalescing-operator/-/plugin-proposal-nullish-coalescing-operator-7.18.6.tgz#fdd940a99a740e577d6c753ab6fbb43fdb9467e1"
364 | integrity sha512-wQxQzxYeJqHcfppzBDnm1yAY0jSRkUXR2z8RePZYrKwMKgMlE8+Z6LUno+bd6LvbGh8Gltvy74+9pIYkr+XkKA==
365 | dependencies:
366 | "@babel/helper-plugin-utils" "^7.18.6"
367 | "@babel/plugin-syntax-nullish-coalescing-operator" "^7.8.3"
368 |
369 | "@babel/plugin-proposal-numeric-separator@^7.18.6":
370 | version "7.18.6"
371 | resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-numeric-separator/-/plugin-proposal-numeric-separator-7.18.6.tgz#899b14fbafe87f053d2c5ff05b36029c62e13c75"
372 | integrity sha512-ozlZFogPqoLm8WBr5Z8UckIoE4YQ5KESVcNudyXOR8uqIkliTEgJ3RoketfG6pmzLdeZF0H/wjE9/cCEitBl7Q==
373 | dependencies:
374 | "@babel/helper-plugin-utils" "^7.18.6"
375 | "@babel/plugin-syntax-numeric-separator" "^7.10.4"
376 |
377 | "@babel/plugin-proposal-object-rest-spread@^7.19.4":
378 | version "7.19.4"
379 | resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-object-rest-spread/-/plugin-proposal-object-rest-spread-7.19.4.tgz#a8fc86e8180ff57290c91a75d83fe658189b642d"
380 | integrity sha512-wHmj6LDxVDnL+3WhXteUBaoM1aVILZODAUjg11kHqG4cOlfgMQGxw6aCgvrXrmaJR3Bn14oZhImyCPZzRpC93Q==
381 | dependencies:
382 | "@babel/compat-data" "^7.19.4"
383 | "@babel/helper-compilation-targets" "^7.19.3"
384 | "@babel/helper-plugin-utils" "^7.19.0"
385 | "@babel/plugin-syntax-object-rest-spread" "^7.8.3"
386 | "@babel/plugin-transform-parameters" "^7.18.8"
387 |
388 | "@babel/plugin-proposal-optional-catch-binding@^7.18.6":
389 | version "7.18.6"
390 | resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-optional-catch-binding/-/plugin-proposal-optional-catch-binding-7.18.6.tgz#f9400d0e6a3ea93ba9ef70b09e72dd6da638a2cb"
391 | integrity sha512-Q40HEhs9DJQyaZfUjjn6vE8Cv4GmMHCYuMGIWUnlxH6400VGxOuwWsPt4FxXxJkC/5eOzgn0z21M9gMT4MOhbw==
392 | dependencies:
393 | "@babel/helper-plugin-utils" "^7.18.6"
394 | "@babel/plugin-syntax-optional-catch-binding" "^7.8.3"
395 |
396 | "@babel/plugin-proposal-optional-chaining@^7.18.9":
397 | version "7.18.9"
398 | resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-optional-chaining/-/plugin-proposal-optional-chaining-7.18.9.tgz#e8e8fe0723f2563960e4bf5e9690933691915993"
399 | integrity sha512-v5nwt4IqBXihxGsW2QmCWMDS3B3bzGIk/EQVZz2ei7f3NJl8NzAJVvUmpDW5q1CRNY+Beb/k58UAH1Km1N411w==
400 | dependencies:
401 | "@babel/helper-plugin-utils" "^7.18.9"
402 | "@babel/helper-skip-transparent-expression-wrappers" "^7.18.9"
403 | "@babel/plugin-syntax-optional-chaining" "^7.8.3"
404 |
405 | "@babel/plugin-proposal-private-methods@^7.18.6":
406 | version "7.18.6"
407 | resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-private-methods/-/plugin-proposal-private-methods-7.18.6.tgz#5209de7d213457548a98436fa2882f52f4be6bea"
408 | integrity sha512-nutsvktDItsNn4rpGItSNV2sz1XwS+nfU0Rg8aCx3W3NOKVzdMjJRu0O5OkgDp3ZGICSTbgRpxZoWsxoKRvbeA==
409 | dependencies:
410 | "@babel/helper-create-class-features-plugin" "^7.18.6"
411 | "@babel/helper-plugin-utils" "^7.18.6"
412 |
413 | "@babel/plugin-proposal-private-property-in-object@^7.18.6":
414 | version "7.18.6"
415 | resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-private-property-in-object/-/plugin-proposal-private-property-in-object-7.18.6.tgz#a64137b232f0aca3733a67eb1a144c192389c503"
416 | integrity sha512-9Rysx7FOctvT5ouj5JODjAFAkgGoudQuLPamZb0v1TGLpapdNaftzifU8NTWQm0IRjqoYypdrSmyWgkocDQ8Dw==
417 | dependencies:
418 | "@babel/helper-annotate-as-pure" "^7.18.6"
419 | "@babel/helper-create-class-features-plugin" "^7.18.6"
420 | "@babel/helper-plugin-utils" "^7.18.6"
421 | "@babel/plugin-syntax-private-property-in-object" "^7.14.5"
422 |
423 | "@babel/plugin-proposal-unicode-property-regex@^7.18.6", "@babel/plugin-proposal-unicode-property-regex@^7.4.4":
424 | version "7.18.6"
425 | resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-unicode-property-regex/-/plugin-proposal-unicode-property-regex-7.18.6.tgz#af613d2cd5e643643b65cded64207b15c85cb78e"
426 | integrity sha512-2BShG/d5yoZyXZfVePH91urL5wTG6ASZU9M4o03lKK8u8UW1y08OMttBSOADTcJrnPMpvDXRG3G8fyLh4ovs8w==
427 | dependencies:
428 | "@babel/helper-create-regexp-features-plugin" "^7.18.6"
429 | "@babel/helper-plugin-utils" "^7.18.6"
430 |
431 | "@babel/plugin-syntax-async-generators@^7.8.4":
432 | version "7.8.4"
433 | resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-async-generators/-/plugin-syntax-async-generators-7.8.4.tgz#a983fb1aeb2ec3f6ed042a210f640e90e786fe0d"
434 | integrity sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==
435 | dependencies:
436 | "@babel/helper-plugin-utils" "^7.8.0"
437 |
438 | "@babel/plugin-syntax-class-properties@^7.12.13":
439 | version "7.12.13"
440 | resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-class-properties/-/plugin-syntax-class-properties-7.12.13.tgz#b5c987274c4a3a82b89714796931a6b53544ae10"
441 | integrity sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==
442 | dependencies:
443 | "@babel/helper-plugin-utils" "^7.12.13"
444 |
445 | "@babel/plugin-syntax-class-static-block@^7.14.5":
446 | version "7.14.5"
447 | resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-class-static-block/-/plugin-syntax-class-static-block-7.14.5.tgz#195df89b146b4b78b3bf897fd7a257c84659d406"
448 | integrity sha512-b+YyPmr6ldyNnM6sqYeMWE+bgJcJpO6yS4QD7ymxgH34GBPNDM/THBh8iunyvKIZztiwLH4CJZ0RxTk9emgpjw==
449 | dependencies:
450 | "@babel/helper-plugin-utils" "^7.14.5"
451 |
452 | "@babel/plugin-syntax-dynamic-import@^7.8.3":
453 | version "7.8.3"
454 | resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-dynamic-import/-/plugin-syntax-dynamic-import-7.8.3.tgz#62bf98b2da3cd21d626154fc96ee5b3cb68eacb3"
455 | integrity sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ==
456 | dependencies:
457 | "@babel/helper-plugin-utils" "^7.8.0"
458 |
459 | "@babel/plugin-syntax-export-namespace-from@^7.8.3":
460 | version "7.8.3"
461 | resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-export-namespace-from/-/plugin-syntax-export-namespace-from-7.8.3.tgz#028964a9ba80dbc094c915c487ad7c4e7a66465a"
462 | integrity sha512-MXf5laXo6c1IbEbegDmzGPwGNTsHZmEy6QGznu5Sh2UCWvueywb2ee+CCE4zQiZstxU9BMoQO9i6zUFSY0Kj0Q==
463 | dependencies:
464 | "@babel/helper-plugin-utils" "^7.8.3"
465 |
466 | "@babel/plugin-syntax-import-assertions@^7.18.6":
467 | version "7.18.6"
468 | resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-import-assertions/-/plugin-syntax-import-assertions-7.18.6.tgz#cd6190500a4fa2fe31990a963ffab4b63e4505e4"
469 | integrity sha512-/DU3RXad9+bZwrgWJQKbr39gYbJpLJHezqEzRzi/BHRlJ9zsQb4CK2CA/5apllXNomwA1qHwzvHl+AdEmC5krQ==
470 | dependencies:
471 | "@babel/helper-plugin-utils" "^7.18.6"
472 |
473 | "@babel/plugin-syntax-json-strings@^7.8.3":
474 | version "7.8.3"
475 | resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-json-strings/-/plugin-syntax-json-strings-7.8.3.tgz#01ca21b668cd8218c9e640cb6dd88c5412b2c96a"
476 | integrity sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==
477 | dependencies:
478 | "@babel/helper-plugin-utils" "^7.8.0"
479 |
480 | "@babel/plugin-syntax-logical-assignment-operators@^7.10.4":
481 | version "7.10.4"
482 | resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-logical-assignment-operators/-/plugin-syntax-logical-assignment-operators-7.10.4.tgz#ca91ef46303530448b906652bac2e9fe9941f699"
483 | integrity sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==
484 | dependencies:
485 | "@babel/helper-plugin-utils" "^7.10.4"
486 |
487 | "@babel/plugin-syntax-nullish-coalescing-operator@^7.8.3":
488 | version "7.8.3"
489 | resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-nullish-coalescing-operator/-/plugin-syntax-nullish-coalescing-operator-7.8.3.tgz#167ed70368886081f74b5c36c65a88c03b66d1a9"
490 | integrity sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==
491 | dependencies:
492 | "@babel/helper-plugin-utils" "^7.8.0"
493 |
494 | "@babel/plugin-syntax-numeric-separator@^7.10.4":
495 | version "7.10.4"
496 | resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-numeric-separator/-/plugin-syntax-numeric-separator-7.10.4.tgz#b9b070b3e33570cd9fd07ba7fa91c0dd37b9af97"
497 | integrity sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==
498 | dependencies:
499 | "@babel/helper-plugin-utils" "^7.10.4"
500 |
501 | "@babel/plugin-syntax-object-rest-spread@^7.8.3":
502 | version "7.8.3"
503 | resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-object-rest-spread/-/plugin-syntax-object-rest-spread-7.8.3.tgz#60e225edcbd98a640332a2e72dd3e66f1af55871"
504 | integrity sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==
505 | dependencies:
506 | "@babel/helper-plugin-utils" "^7.8.0"
507 |
508 | "@babel/plugin-syntax-optional-catch-binding@^7.8.3":
509 | version "7.8.3"
510 | resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-optional-catch-binding/-/plugin-syntax-optional-catch-binding-7.8.3.tgz#6111a265bcfb020eb9efd0fdfd7d26402b9ed6c1"
511 | integrity sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==
512 | dependencies:
513 | "@babel/helper-plugin-utils" "^7.8.0"
514 |
515 | "@babel/plugin-syntax-optional-chaining@^7.8.3":
516 | version "7.8.3"
517 | resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-optional-chaining/-/plugin-syntax-optional-chaining-7.8.3.tgz#4f69c2ab95167e0180cd5336613f8c5788f7d48a"
518 | integrity sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==
519 | dependencies:
520 | "@babel/helper-plugin-utils" "^7.8.0"
521 |
522 | "@babel/plugin-syntax-private-property-in-object@^7.14.5":
523 | version "7.14.5"
524 | resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-private-property-in-object/-/plugin-syntax-private-property-in-object-7.14.5.tgz#0dc6671ec0ea22b6e94a1114f857970cd39de1ad"
525 | integrity sha512-0wVnp9dxJ72ZUJDV27ZfbSj6iHLoytYZmh3rFcxNnvsJF3ktkzLDZPy/mA17HGsaQT3/DQsWYX1f1QGWkCoVUg==
526 | dependencies:
527 | "@babel/helper-plugin-utils" "^7.14.5"
528 |
529 | "@babel/plugin-syntax-top-level-await@^7.14.5":
530 | version "7.14.5"
531 | resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-top-level-await/-/plugin-syntax-top-level-await-7.14.5.tgz#c1cfdadc35a646240001f06138247b741c34d94c"
532 | integrity sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw==
533 | dependencies:
534 | "@babel/helper-plugin-utils" "^7.14.5"
535 |
536 | "@babel/plugin-transform-arrow-functions@^7.18.6":
537 | version "7.18.6"
538 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.18.6.tgz#19063fcf8771ec7b31d742339dac62433d0611fe"
539 | integrity sha512-9S9X9RUefzrsHZmKMbDXxweEH+YlE8JJEuat9FdvW9Qh1cw7W64jELCtWNkPBPX5En45uy28KGvA/AySqUh8CQ==
540 | dependencies:
541 | "@babel/helper-plugin-utils" "^7.18.6"
542 |
543 | "@babel/plugin-transform-async-to-generator@^7.18.6":
544 | version "7.18.6"
545 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.18.6.tgz#ccda3d1ab9d5ced5265fdb13f1882d5476c71615"
546 | integrity sha512-ARE5wZLKnTgPW7/1ftQmSi1CmkqqHo2DNmtztFhvgtOWSDfq0Cq9/9L+KnZNYSNrydBekhW3rwShduf59RoXag==
547 | dependencies:
548 | "@babel/helper-module-imports" "^7.18.6"
549 | "@babel/helper-plugin-utils" "^7.18.6"
550 | "@babel/helper-remap-async-to-generator" "^7.18.6"
551 |
552 | "@babel/plugin-transform-block-scoped-functions@^7.18.6":
553 | version "7.18.6"
554 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.18.6.tgz#9187bf4ba302635b9d70d986ad70f038726216a8"
555 | integrity sha512-ExUcOqpPWnliRcPqves5HJcJOvHvIIWfuS4sroBUenPuMdmW+SMHDakmtS7qOo13sVppmUijqeTv7qqGsvURpQ==
556 | dependencies:
557 | "@babel/helper-plugin-utils" "^7.18.6"
558 |
559 | "@babel/plugin-transform-block-scoping@^7.19.4":
560 | version "7.19.4"
561 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.19.4.tgz#315d70f68ce64426db379a3d830e7ac30be02e9b"
562 | integrity sha512-934S2VLLlt2hRJwPf4MczaOr4hYF0z+VKPwqTNxyKX7NthTiPfhuKFWQZHXRM0vh/wo/VyXB3s4bZUNA08l+tQ==
563 | dependencies:
564 | "@babel/helper-plugin-utils" "^7.19.0"
565 |
566 | "@babel/plugin-transform-classes@^7.19.0":
567 | version "7.19.0"
568 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-classes/-/plugin-transform-classes-7.19.0.tgz#0e61ec257fba409c41372175e7c1e606dc79bb20"
569 | integrity sha512-YfeEE9kCjqTS9IitkgfJuxjcEtLUHMqa8yUJ6zdz8vR7hKuo6mOy2C05P0F1tdMmDCeuyidKnlrw/iTppHcr2A==
570 | dependencies:
571 | "@babel/helper-annotate-as-pure" "^7.18.6"
572 | "@babel/helper-compilation-targets" "^7.19.0"
573 | "@babel/helper-environment-visitor" "^7.18.9"
574 | "@babel/helper-function-name" "^7.19.0"
575 | "@babel/helper-optimise-call-expression" "^7.18.6"
576 | "@babel/helper-plugin-utils" "^7.19.0"
577 | "@babel/helper-replace-supers" "^7.18.9"
578 | "@babel/helper-split-export-declaration" "^7.18.6"
579 | globals "^11.1.0"
580 |
581 | "@babel/plugin-transform-computed-properties@^7.18.9":
582 | version "7.18.9"
583 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.18.9.tgz#2357a8224d402dad623caf6259b611e56aec746e"
584 | integrity sha512-+i0ZU1bCDymKakLxn5srGHrsAPRELC2WIbzwjLhHW9SIE1cPYkLCL0NlnXMZaM1vhfgA2+M7hySk42VBvrkBRw==
585 | dependencies:
586 | "@babel/helper-plugin-utils" "^7.18.9"
587 |
588 | "@babel/plugin-transform-destructuring@^7.19.4":
589 | version "7.19.4"
590 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.19.4.tgz#46890722687b9b89e1369ad0bd8dc6c5a3b4319d"
591 | integrity sha512-t0j0Hgidqf0aM86dF8U+vXYReUgJnlv4bZLsyoPnwZNrGY+7/38o8YjaELrvHeVfTZao15kjR0PVv0nju2iduA==
592 | dependencies:
593 | "@babel/helper-plugin-utils" "^7.19.0"
594 |
595 | "@babel/plugin-transform-dotall-regex@^7.18.6", "@babel/plugin-transform-dotall-regex@^7.4.4":
596 | version "7.18.6"
597 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.18.6.tgz#b286b3e7aae6c7b861e45bed0a2fafd6b1a4fef8"
598 | integrity sha512-6S3jpun1eEbAxq7TdjLotAsl4WpQI9DxfkycRcKrjhQYzU87qpXdknpBg/e+TdcMehqGnLFi7tnFUBR02Vq6wg==
599 | dependencies:
600 | "@babel/helper-create-regexp-features-plugin" "^7.18.6"
601 | "@babel/helper-plugin-utils" "^7.18.6"
602 |
603 | "@babel/plugin-transform-duplicate-keys@^7.18.9":
604 | version "7.18.9"
605 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.18.9.tgz#687f15ee3cdad6d85191eb2a372c4528eaa0ae0e"
606 | integrity sha512-d2bmXCtZXYc59/0SanQKbiWINadaJXqtvIQIzd4+hNwkWBgyCd5F/2t1kXoUdvPMrxzPvhK6EMQRROxsue+mfw==
607 | dependencies:
608 | "@babel/helper-plugin-utils" "^7.18.9"
609 |
610 | "@babel/plugin-transform-exponentiation-operator@^7.18.6":
611 | version "7.18.6"
612 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.18.6.tgz#421c705f4521888c65e91fdd1af951bfefd4dacd"
613 | integrity sha512-wzEtc0+2c88FVR34aQmiz56dxEkxr2g8DQb/KfaFa1JYXOFVsbhvAonFN6PwVWj++fKmku8NP80plJ5Et4wqHw==
614 | dependencies:
615 | "@babel/helper-builder-binary-assignment-operator-visitor" "^7.18.6"
616 | "@babel/helper-plugin-utils" "^7.18.6"
617 |
618 | "@babel/plugin-transform-for-of@^7.18.8":
619 | version "7.18.8"
620 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.18.8.tgz#6ef8a50b244eb6a0bdbad0c7c61877e4e30097c1"
621 | integrity sha512-yEfTRnjuskWYo0k1mHUqrVWaZwrdq8AYbfrpqULOJOaucGSp4mNMVps+YtA8byoevxS/urwU75vyhQIxcCgiBQ==
622 | dependencies:
623 | "@babel/helper-plugin-utils" "^7.18.6"
624 |
625 | "@babel/plugin-transform-function-name@^7.18.9":
626 | version "7.18.9"
627 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.18.9.tgz#cc354f8234e62968946c61a46d6365440fc764e0"
628 | integrity sha512-WvIBoRPaJQ5yVHzcnJFor7oS5Ls0PYixlTYE63lCj2RtdQEl15M68FXQlxnG6wdraJIXRdR7KI+hQ7q/9QjrCQ==
629 | dependencies:
630 | "@babel/helper-compilation-targets" "^7.18.9"
631 | "@babel/helper-function-name" "^7.18.9"
632 | "@babel/helper-plugin-utils" "^7.18.9"
633 |
634 | "@babel/plugin-transform-literals@^7.18.9":
635 | version "7.18.9"
636 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-literals/-/plugin-transform-literals-7.18.9.tgz#72796fdbef80e56fba3c6a699d54f0de557444bc"
637 | integrity sha512-IFQDSRoTPnrAIrI5zoZv73IFeZu2dhu6irxQjY9rNjTT53VmKg9fenjvoiOWOkJ6mm4jKVPtdMzBY98Fp4Z4cg==
638 | dependencies:
639 | "@babel/helper-plugin-utils" "^7.18.9"
640 |
641 | "@babel/plugin-transform-member-expression-literals@^7.18.6":
642 | version "7.18.6"
643 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-member-expression-literals/-/plugin-transform-member-expression-literals-7.18.6.tgz#ac9fdc1a118620ac49b7e7a5d2dc177a1bfee88e"
644 | integrity sha512-qSF1ihLGO3q+/g48k85tUjD033C29TNTVB2paCwZPVmOsjn9pClvYYrM2VeJpBY2bcNkuny0YUyTNRyRxJ54KA==
645 | dependencies:
646 | "@babel/helper-plugin-utils" "^7.18.6"
647 |
648 | "@babel/plugin-transform-modules-amd@^7.18.6":
649 | version "7.18.6"
650 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.18.6.tgz#8c91f8c5115d2202f277549848874027d7172d21"
651 | integrity sha512-Pra5aXsmTsOnjM3IajS8rTaLCy++nGM4v3YR4esk5PCsyg9z8NA5oQLwxzMUtDBd8F+UmVza3VxoAaWCbzH1rg==
652 | dependencies:
653 | "@babel/helper-module-transforms" "^7.18.6"
654 | "@babel/helper-plugin-utils" "^7.18.6"
655 | babel-plugin-dynamic-import-node "^2.3.3"
656 |
657 | "@babel/plugin-transform-modules-commonjs@^7.18.6":
658 | version "7.18.6"
659 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.18.6.tgz#afd243afba166cca69892e24a8fd8c9f2ca87883"
660 | integrity sha512-Qfv2ZOWikpvmedXQJDSbxNqy7Xr/j2Y8/KfijM0iJyKkBTmWuvCA1yeH1yDM7NJhBW/2aXxeucLj6i80/LAJ/Q==
661 | dependencies:
662 | "@babel/helper-module-transforms" "^7.18.6"
663 | "@babel/helper-plugin-utils" "^7.18.6"
664 | "@babel/helper-simple-access" "^7.18.6"
665 | babel-plugin-dynamic-import-node "^2.3.3"
666 |
667 | "@babel/plugin-transform-modules-systemjs@^7.19.0":
668 | version "7.19.0"
669 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.19.0.tgz#5f20b471284430f02d9c5059d9b9a16d4b085a1f"
670 | integrity sha512-x9aiR0WXAWmOWsqcsnrzGR+ieaTMVyGyffPVA7F8cXAGt/UxefYv6uSHZLkAFChN5M5Iy1+wjE+xJuPt22H39A==
671 | dependencies:
672 | "@babel/helper-hoist-variables" "^7.18.6"
673 | "@babel/helper-module-transforms" "^7.19.0"
674 | "@babel/helper-plugin-utils" "^7.19.0"
675 | "@babel/helper-validator-identifier" "^7.18.6"
676 | babel-plugin-dynamic-import-node "^2.3.3"
677 |
678 | "@babel/plugin-transform-modules-umd@^7.18.6":
679 | version "7.18.6"
680 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-umd/-/plugin-transform-modules-umd-7.18.6.tgz#81d3832d6034b75b54e62821ba58f28ed0aab4b9"
681 | integrity sha512-dcegErExVeXcRqNtkRU/z8WlBLnvD4MRnHgNs3MytRO1Mn1sHRyhbcpYbVMGclAqOjdW+9cfkdZno9dFdfKLfQ==
682 | dependencies:
683 | "@babel/helper-module-transforms" "^7.18.6"
684 | "@babel/helper-plugin-utils" "^7.18.6"
685 |
686 | "@babel/plugin-transform-named-capturing-groups-regex@^7.19.1":
687 | version "7.19.1"
688 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.19.1.tgz#ec7455bab6cd8fb05c525a94876f435a48128888"
689 | integrity sha512-oWk9l9WItWBQYS4FgXD4Uyy5kq898lvkXpXQxoJEY1RnvPk4R/Dvu2ebXU9q8lP+rlMwUQTFf2Ok6d78ODa0kw==
690 | dependencies:
691 | "@babel/helper-create-regexp-features-plugin" "^7.19.0"
692 | "@babel/helper-plugin-utils" "^7.19.0"
693 |
694 | "@babel/plugin-transform-new-target@^7.18.6":
695 | version "7.18.6"
696 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-new-target/-/plugin-transform-new-target-7.18.6.tgz#d128f376ae200477f37c4ddfcc722a8a1b3246a8"
697 | integrity sha512-DjwFA/9Iu3Z+vrAn+8pBUGcjhxKguSMlsFqeCKbhb9BAV756v0krzVK04CRDi/4aqmk8BsHb4a/gFcaA5joXRw==
698 | dependencies:
699 | "@babel/helper-plugin-utils" "^7.18.6"
700 |
701 | "@babel/plugin-transform-object-super@^7.18.6":
702 | version "7.18.6"
703 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.18.6.tgz#fb3c6ccdd15939b6ff7939944b51971ddc35912c"
704 | integrity sha512-uvGz6zk+pZoS1aTZrOvrbj6Pp/kK2mp45t2B+bTDre2UgsZZ8EZLSJtUg7m/no0zOJUWgFONpB7Zv9W2tSaFlA==
705 | dependencies:
706 | "@babel/helper-plugin-utils" "^7.18.6"
707 | "@babel/helper-replace-supers" "^7.18.6"
708 |
709 | "@babel/plugin-transform-parameters@^7.18.8":
710 | version "7.18.8"
711 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.18.8.tgz#ee9f1a0ce6d78af58d0956a9378ea3427cccb48a"
712 | integrity sha512-ivfbE3X2Ss+Fj8nnXvKJS6sjRG4gzwPMsP+taZC+ZzEGjAYlvENixmt1sZ5Ca6tWls+BlKSGKPJ6OOXvXCbkFg==
713 | dependencies:
714 | "@babel/helper-plugin-utils" "^7.18.6"
715 |
716 | "@babel/plugin-transform-property-literals@^7.18.6":
717 | version "7.18.6"
718 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-property-literals/-/plugin-transform-property-literals-7.18.6.tgz#e22498903a483448e94e032e9bbb9c5ccbfc93a3"
719 | integrity sha512-cYcs6qlgafTud3PAzrrRNbQtfpQ8+y/+M5tKmksS9+M1ckbH6kzY8MrexEM9mcA6JDsukE19iIRvAyYl463sMg==
720 | dependencies:
721 | "@babel/helper-plugin-utils" "^7.18.6"
722 |
723 | "@babel/plugin-transform-regenerator@^7.18.6":
724 | version "7.18.6"
725 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.18.6.tgz#585c66cb84d4b4bf72519a34cfce761b8676ca73"
726 | integrity sha512-poqRI2+qiSdeldcz4wTSTXBRryoq3Gc70ye7m7UD5Ww0nE29IXqMl6r7Nd15WBgRd74vloEMlShtH6CKxVzfmQ==
727 | dependencies:
728 | "@babel/helper-plugin-utils" "^7.18.6"
729 | regenerator-transform "^0.15.0"
730 |
731 | "@babel/plugin-transform-reserved-words@^7.18.6":
732 | version "7.18.6"
733 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-reserved-words/-/plugin-transform-reserved-words-7.18.6.tgz#b1abd8ebf8edaa5f7fe6bbb8d2133d23b6a6f76a"
734 | integrity sha512-oX/4MyMoypzHjFrT1CdivfKZ+XvIPMFXwwxHp/r0Ddy2Vuomt4HDFGmft1TAY2yiTKiNSsh3kjBAzcM8kSdsjA==
735 | dependencies:
736 | "@babel/helper-plugin-utils" "^7.18.6"
737 |
738 | "@babel/plugin-transform-shorthand-properties@^7.18.6":
739 | version "7.18.6"
740 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.18.6.tgz#6d6df7983d67b195289be24909e3f12a8f664dc9"
741 | integrity sha512-eCLXXJqv8okzg86ywZJbRn19YJHU4XUa55oz2wbHhaQVn/MM+XhukiT7SYqp/7o00dg52Rj51Ny+Ecw4oyoygw==
742 | dependencies:
743 | "@babel/helper-plugin-utils" "^7.18.6"
744 |
745 | "@babel/plugin-transform-spread@^7.19.0":
746 | version "7.19.0"
747 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-spread/-/plugin-transform-spread-7.19.0.tgz#dd60b4620c2fec806d60cfaae364ec2188d593b6"
748 | integrity sha512-RsuMk7j6n+r752EtzyScnWkQyuJdli6LdO5Klv8Yx0OfPVTcQkIUfS8clx5e9yHXzlnhOZF3CbQ8C2uP5j074w==
749 | dependencies:
750 | "@babel/helper-plugin-utils" "^7.19.0"
751 | "@babel/helper-skip-transparent-expression-wrappers" "^7.18.9"
752 |
753 | "@babel/plugin-transform-sticky-regex@^7.18.6":
754 | version "7.18.6"
755 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.18.6.tgz#c6706eb2b1524028e317720339583ad0f444adcc"
756 | integrity sha512-kfiDrDQ+PBsQDO85yj1icueWMfGfJFKN1KCkndygtu/C9+XUfydLC8Iv5UYJqRwy4zk8EcplRxEOeLyjq1gm6Q==
757 | dependencies:
758 | "@babel/helper-plugin-utils" "^7.18.6"
759 |
760 | "@babel/plugin-transform-template-literals@^7.18.9":
761 | version "7.18.9"
762 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.18.9.tgz#04ec6f10acdaa81846689d63fae117dd9c243a5e"
763 | integrity sha512-S8cOWfT82gTezpYOiVaGHrCbhlHgKhQt8XH5ES46P2XWmX92yisoZywf5km75wv5sYcXDUCLMmMxOLCtthDgMA==
764 | dependencies:
765 | "@babel/helper-plugin-utils" "^7.18.9"
766 |
767 | "@babel/plugin-transform-typeof-symbol@^7.18.9":
768 | version "7.18.9"
769 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.18.9.tgz#c8cea68263e45addcd6afc9091429f80925762c0"
770 | integrity sha512-SRfwTtF11G2aemAZWivL7PD+C9z52v9EvMqH9BuYbabyPuKUvSWks3oCg6041pT925L4zVFqaVBeECwsmlguEw==
771 | dependencies:
772 | "@babel/helper-plugin-utils" "^7.18.9"
773 |
774 | "@babel/plugin-transform-unicode-escapes@^7.18.10":
775 | version "7.18.10"
776 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-unicode-escapes/-/plugin-transform-unicode-escapes-7.18.10.tgz#1ecfb0eda83d09bbcb77c09970c2dd55832aa246"
777 | integrity sha512-kKAdAI+YzPgGY/ftStBFXTI1LZFju38rYThnfMykS+IXy8BVx+res7s2fxf1l8I35DV2T97ezo6+SGrXz6B3iQ==
778 | dependencies:
779 | "@babel/helper-plugin-utils" "^7.18.9"
780 |
781 | "@babel/plugin-transform-unicode-regex@^7.18.6":
782 | version "7.18.6"
783 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.18.6.tgz#194317225d8c201bbae103364ffe9e2cea36cdca"
784 | integrity sha512-gE7A6Lt7YLnNOL3Pb9BNeZvi+d8l7tcRrG4+pwJjK9hD2xX4mEvjlQW60G9EEmfXVYRPv9VRQcyegIVHCql/AA==
785 | dependencies:
786 | "@babel/helper-create-regexp-features-plugin" "^7.18.6"
787 | "@babel/helper-plugin-utils" "^7.18.6"
788 |
789 | "@babel/preset-env@^7.0.0":
790 | version "7.19.4"
791 | resolved "https://registry.yarnpkg.com/@babel/preset-env/-/preset-env-7.19.4.tgz#4c91ce2e1f994f717efb4237891c3ad2d808c94b"
792 | integrity sha512-5QVOTXUdqTCjQuh2GGtdd7YEhoRXBMVGROAtsBeLGIbIz3obCBIfRMT1I3ZKkMgNzwkyCkftDXSSkHxnfVf4qg==
793 | dependencies:
794 | "@babel/compat-data" "^7.19.4"
795 | "@babel/helper-compilation-targets" "^7.19.3"
796 | "@babel/helper-plugin-utils" "^7.19.0"
797 | "@babel/helper-validator-option" "^7.18.6"
798 | "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression" "^7.18.6"
799 | "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining" "^7.18.9"
800 | "@babel/plugin-proposal-async-generator-functions" "^7.19.1"
801 | "@babel/plugin-proposal-class-properties" "^7.18.6"
802 | "@babel/plugin-proposal-class-static-block" "^7.18.6"
803 | "@babel/plugin-proposal-dynamic-import" "^7.18.6"
804 | "@babel/plugin-proposal-export-namespace-from" "^7.18.9"
805 | "@babel/plugin-proposal-json-strings" "^7.18.6"
806 | "@babel/plugin-proposal-logical-assignment-operators" "^7.18.9"
807 | "@babel/plugin-proposal-nullish-coalescing-operator" "^7.18.6"
808 | "@babel/plugin-proposal-numeric-separator" "^7.18.6"
809 | "@babel/plugin-proposal-object-rest-spread" "^7.19.4"
810 | "@babel/plugin-proposal-optional-catch-binding" "^7.18.6"
811 | "@babel/plugin-proposal-optional-chaining" "^7.18.9"
812 | "@babel/plugin-proposal-private-methods" "^7.18.6"
813 | "@babel/plugin-proposal-private-property-in-object" "^7.18.6"
814 | "@babel/plugin-proposal-unicode-property-regex" "^7.18.6"
815 | "@babel/plugin-syntax-async-generators" "^7.8.4"
816 | "@babel/plugin-syntax-class-properties" "^7.12.13"
817 | "@babel/plugin-syntax-class-static-block" "^7.14.5"
818 | "@babel/plugin-syntax-dynamic-import" "^7.8.3"
819 | "@babel/plugin-syntax-export-namespace-from" "^7.8.3"
820 | "@babel/plugin-syntax-import-assertions" "^7.18.6"
821 | "@babel/plugin-syntax-json-strings" "^7.8.3"
822 | "@babel/plugin-syntax-logical-assignment-operators" "^7.10.4"
823 | "@babel/plugin-syntax-nullish-coalescing-operator" "^7.8.3"
824 | "@babel/plugin-syntax-numeric-separator" "^7.10.4"
825 | "@babel/plugin-syntax-object-rest-spread" "^7.8.3"
826 | "@babel/plugin-syntax-optional-catch-binding" "^7.8.3"
827 | "@babel/plugin-syntax-optional-chaining" "^7.8.3"
828 | "@babel/plugin-syntax-private-property-in-object" "^7.14.5"
829 | "@babel/plugin-syntax-top-level-await" "^7.14.5"
830 | "@babel/plugin-transform-arrow-functions" "^7.18.6"
831 | "@babel/plugin-transform-async-to-generator" "^7.18.6"
832 | "@babel/plugin-transform-block-scoped-functions" "^7.18.6"
833 | "@babel/plugin-transform-block-scoping" "^7.19.4"
834 | "@babel/plugin-transform-classes" "^7.19.0"
835 | "@babel/plugin-transform-computed-properties" "^7.18.9"
836 | "@babel/plugin-transform-destructuring" "^7.19.4"
837 | "@babel/plugin-transform-dotall-regex" "^7.18.6"
838 | "@babel/plugin-transform-duplicate-keys" "^7.18.9"
839 | "@babel/plugin-transform-exponentiation-operator" "^7.18.6"
840 | "@babel/plugin-transform-for-of" "^7.18.8"
841 | "@babel/plugin-transform-function-name" "^7.18.9"
842 | "@babel/plugin-transform-literals" "^7.18.9"
843 | "@babel/plugin-transform-member-expression-literals" "^7.18.6"
844 | "@babel/plugin-transform-modules-amd" "^7.18.6"
845 | "@babel/plugin-transform-modules-commonjs" "^7.18.6"
846 | "@babel/plugin-transform-modules-systemjs" "^7.19.0"
847 | "@babel/plugin-transform-modules-umd" "^7.18.6"
848 | "@babel/plugin-transform-named-capturing-groups-regex" "^7.19.1"
849 | "@babel/plugin-transform-new-target" "^7.18.6"
850 | "@babel/plugin-transform-object-super" "^7.18.6"
851 | "@babel/plugin-transform-parameters" "^7.18.8"
852 | "@babel/plugin-transform-property-literals" "^7.18.6"
853 | "@babel/plugin-transform-regenerator" "^7.18.6"
854 | "@babel/plugin-transform-reserved-words" "^7.18.6"
855 | "@babel/plugin-transform-shorthand-properties" "^7.18.6"
856 | "@babel/plugin-transform-spread" "^7.19.0"
857 | "@babel/plugin-transform-sticky-regex" "^7.18.6"
858 | "@babel/plugin-transform-template-literals" "^7.18.9"
859 | "@babel/plugin-transform-typeof-symbol" "^7.18.9"
860 | "@babel/plugin-transform-unicode-escapes" "^7.18.10"
861 | "@babel/plugin-transform-unicode-regex" "^7.18.6"
862 | "@babel/preset-modules" "^0.1.5"
863 | "@babel/types" "^7.19.4"
864 | babel-plugin-polyfill-corejs2 "^0.3.3"
865 | babel-plugin-polyfill-corejs3 "^0.6.0"
866 | babel-plugin-polyfill-regenerator "^0.4.1"
867 | core-js-compat "^3.25.1"
868 | semver "^6.3.0"
869 |
870 | "@babel/preset-modules@^0.1.5":
871 | version "0.1.5"
872 | resolved "https://registry.yarnpkg.com/@babel/preset-modules/-/preset-modules-0.1.5.tgz#ef939d6e7f268827e1841638dc6ff95515e115d9"
873 | integrity sha512-A57th6YRG7oR3cq/yt/Y84MvGgE0eJG2F1JLhKuyG+jFxEgrd/HAMJatiFtmOiZurz+0DkrvbheCLaV5f2JfjA==
874 | dependencies:
875 | "@babel/helper-plugin-utils" "^7.0.0"
876 | "@babel/plugin-proposal-unicode-property-regex" "^7.4.4"
877 | "@babel/plugin-transform-dotall-regex" "^7.4.4"
878 | "@babel/types" "^7.4.4"
879 | esutils "^2.0.2"
880 |
881 | "@babel/register@^7.0.0":
882 | version "7.18.9"
883 | resolved "https://registry.yarnpkg.com/@babel/register/-/register-7.18.9.tgz#1888b24bc28d5cc41c412feb015e9ff6b96e439c"
884 | integrity sha512-ZlbnXDcNYHMR25ITwwNKT88JiaukkdVj/nG7r3wnuXkOTHc60Uy05PwMCPre0hSkY68E6zK3xz+vUJSP2jWmcw==
885 | dependencies:
886 | clone-deep "^4.0.1"
887 | find-cache-dir "^2.0.0"
888 | make-dir "^2.1.0"
889 | pirates "^4.0.5"
890 | source-map-support "^0.5.16"
891 |
892 | "@babel/runtime@^7.8.4":
893 | version "7.19.4"
894 | resolved "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.19.4.tgz#a42f814502ee467d55b38dd1c256f53a7b885c78"
895 | integrity sha512-EXpLCrk55f+cYqmHsSR+yD/0gAIMxxA9QK9lnQWzhMCvt+YmoBN7Zx94s++Kv0+unHk39vxNO8t+CMA2WSS3wA==
896 | dependencies:
897 | regenerator-runtime "^0.13.4"
898 |
899 | "@babel/template@^7.18.10":
900 | version "7.18.10"
901 | resolved "https://registry.yarnpkg.com/@babel/template/-/template-7.18.10.tgz#6f9134835970d1dbf0835c0d100c9f38de0c5e71"
902 | integrity sha512-TI+rCtooWHr3QJ27kJxfjutghu44DLnasDMwpDqCXVTal9RLp3RSYNh4NdBrRP2cQAoG9A8juOQl6P6oZG4JxA==
903 | dependencies:
904 | "@babel/code-frame" "^7.18.6"
905 | "@babel/parser" "^7.18.10"
906 | "@babel/types" "^7.18.10"
907 |
908 | "@babel/traverse@^7.0.0", "@babel/traverse@^7.19.0", "@babel/traverse@^7.19.1", "@babel/traverse@^7.19.3", "@babel/traverse@^7.19.4":
909 | version "7.19.4"
910 | resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.19.4.tgz#f117820e18b1e59448a6c1fa9d0ff08f7ac459a8"
911 | integrity sha512-w3K1i+V5u2aJUOXBFFC5pveFLmtq1s3qcdDNC2qRI6WPBQIDaKFqXxDEqDO/h1dQ3HjsZoZMyIy6jGLq0xtw+g==
912 | dependencies:
913 | "@babel/code-frame" "^7.18.6"
914 | "@babel/generator" "^7.19.4"
915 | "@babel/helper-environment-visitor" "^7.18.9"
916 | "@babel/helper-function-name" "^7.19.0"
917 | "@babel/helper-hoist-variables" "^7.18.6"
918 | "@babel/helper-split-export-declaration" "^7.18.6"
919 | "@babel/parser" "^7.19.4"
920 | "@babel/types" "^7.19.4"
921 | debug "^4.1.0"
922 | globals "^11.1.0"
923 |
924 | "@babel/types@^7.18.10", "@babel/types@^7.18.6", "@babel/types@^7.18.9", "@babel/types@^7.19.0", "@babel/types@^7.19.3", "@babel/types@^7.19.4", "@babel/types@^7.4.4":
925 | version "7.19.4"
926 | resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.19.4.tgz#0dd5c91c573a202d600490a35b33246fed8a41c7"
927 | integrity sha512-M5LK7nAeS6+9j7hAq+b3fQs+pNfUtTGq+yFFfHnauFA8zQtLRfmuipmsKDKKLuyG+wC8ABW43A153YNawNTEtw==
928 | dependencies:
929 | "@babel/helper-string-parser" "^7.19.4"
930 | "@babel/helper-validator-identifier" "^7.19.1"
931 | to-fast-properties "^2.0.0"
932 |
933 | "@jridgewell/gen-mapping@^0.1.0":
934 | version "0.1.1"
935 | resolved "https://registry.yarnpkg.com/@jridgewell/gen-mapping/-/gen-mapping-0.1.1.tgz#e5d2e450306a9491e3bd77e323e38d7aff315996"
936 | integrity sha512-sQXCasFk+U8lWYEe66WxRDOE9PjVz4vSM51fTu3Hw+ClTpUSQb718772vH3pyS5pShp6lvQM7SxgIDXXXmOX7w==
937 | dependencies:
938 | "@jridgewell/set-array" "^1.0.0"
939 | "@jridgewell/sourcemap-codec" "^1.4.10"
940 |
941 | "@jridgewell/gen-mapping@^0.3.2":
942 | version "0.3.2"
943 | resolved "https://registry.yarnpkg.com/@jridgewell/gen-mapping/-/gen-mapping-0.3.2.tgz#c1aedc61e853f2bb9f5dfe6d4442d3b565b253b9"
944 | integrity sha512-mh65xKQAzI6iBcFzwv28KVWSmCkdRBWoOh+bYQGW3+6OZvbbN3TqMGo5hqYxQniRcH9F2VZIoJCm4pa3BPDK/A==
945 | dependencies:
946 | "@jridgewell/set-array" "^1.0.1"
947 | "@jridgewell/sourcemap-codec" "^1.4.10"
948 | "@jridgewell/trace-mapping" "^0.3.9"
949 |
950 | "@jridgewell/resolve-uri@3.1.0":
951 | version "3.1.0"
952 | resolved "https://registry.yarnpkg.com/@jridgewell/resolve-uri/-/resolve-uri-3.1.0.tgz#2203b118c157721addfe69d47b70465463066d78"
953 | integrity sha512-F2msla3tad+Mfht5cJq7LSXcdudKTWCVYUgw6pLFOOHSTtZlj6SWNYAp+AhuqLmWdBO2X5hPrLcu8cVP8fy28w==
954 |
955 | "@jridgewell/set-array@^1.0.0", "@jridgewell/set-array@^1.0.1":
956 | version "1.1.2"
957 | resolved "https://registry.yarnpkg.com/@jridgewell/set-array/-/set-array-1.1.2.tgz#7c6cf998d6d20b914c0a55a91ae928ff25965e72"
958 | integrity sha512-xnkseuNADM0gt2bs+BvhO0p78Mk762YnZdsuzFV018NoG1Sj1SCQvpSqa7XUaTam5vAGasABV9qXASMKnFMwMw==
959 |
960 | "@jridgewell/sourcemap-codec@1.4.14", "@jridgewell/sourcemap-codec@^1.4.10":
961 | version "1.4.14"
962 | resolved "https://registry.yarnpkg.com/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.14.tgz#add4c98d341472a289190b424efbdb096991bb24"
963 | integrity sha512-XPSJHWmi394fuUuzDnGz1wiKqWfo1yXecHQMRf2l6hztTO+nPru658AyDngaBe7isIxEkRsPR3FZh+s7iVa4Uw==
964 |
965 | "@jridgewell/trace-mapping@^0.3.8", "@jridgewell/trace-mapping@^0.3.9":
966 | version "0.3.16"
967 | resolved "https://registry.yarnpkg.com/@jridgewell/trace-mapping/-/trace-mapping-0.3.16.tgz#a7982f16c18cae02be36274365433e5b49d7b23f"
968 | integrity sha512-LCQ+NeThyJ4k1W2d+vIKdxuSt9R3pQSZ4P92m7EakaYuXcVWbHuT5bjNcqLd4Rdgi6xYWYDvBJZJLZSLanjDcA==
969 | dependencies:
970 | "@jridgewell/resolve-uri" "3.1.0"
971 | "@jridgewell/sourcemap-codec" "1.4.14"
972 |
973 | "@nicolo-ribaudo/chokidar-2@2.1.8-no-fsevents.3":
974 | version "2.1.8-no-fsevents.3"
975 | resolved "https://registry.yarnpkg.com/@nicolo-ribaudo/chokidar-2/-/chokidar-2-2.1.8-no-fsevents.3.tgz#323d72dd25103d0c4fbdce89dadf574a787b1f9b"
976 | integrity sha512-s88O1aVtXftvp5bCPB7WnmXc5IwOZZ7YPuwNPt+GtOOXpPvad1LfbmjYv+qII7zP6RU2QGnqve27dnLycEnyEQ==
977 |
978 | "@samverschueren/stream-to-observable@^0.3.0":
979 | version "0.3.1"
980 | resolved "https://registry.yarnpkg.com/@samverschueren/stream-to-observable/-/stream-to-observable-0.3.1.tgz#a21117b19ee9be70c379ec1877537ef2e1c63301"
981 | integrity sha512-c/qwwcHyafOQuVQJj0IlBjf5yYgBI7YPJ77k4fOJYesb41jio65eaJODRUmfYKhTOFBrIZ66kgvGPlNbjuoRdQ==
982 | dependencies:
983 | any-observable "^0.3.0"
984 |
985 | acorn-jsx@^3.0.0:
986 | version "3.0.1"
987 | resolved "https://registry.yarnpkg.com/acorn-jsx/-/acorn-jsx-3.0.1.tgz#afdf9488fb1ecefc8348f6fb22f464e32a58b36b"
988 | integrity sha512-AU7pnZkguthwBjKgCg6998ByQNIMjbuDQZ8bb78QAFZwPfmKia8AIzgY/gWgqCjnht8JLdXmB4YxA0KaV60ncQ==
989 | dependencies:
990 | acorn "^3.0.4"
991 |
992 | acorn-to-esprima@^2.0.8:
993 | version "2.0.8"
994 | resolved "https://registry.yarnpkg.com/acorn-to-esprima/-/acorn-to-esprima-2.0.8.tgz#003f0c642eb92132f417d3708f14ada82adf2eb1"
995 | integrity sha512-b/FfVP95Kf/icFRVMh8hQho/9XcwHBMmsmFgRZ1qNM7NsnekwuC+a0VUAXWmB5JFo99IeoCpHqVe0i0C2YqzxA==
996 |
997 | acorn@^1.0.3:
998 | version "1.2.2"
999 | resolved "https://registry.yarnpkg.com/acorn/-/acorn-1.2.2.tgz#c8ce27de0acc76d896d2b1fad3df588d9e82f014"
1000 | integrity sha512-FsqWmApWGMGLKKNpHt12PMc5AK7BaZee0WRh04fCysmTzHe+rrKOa2MKjORhnzfpe4r0JnfdqHn02iDA9Dqj2A==
1001 |
1002 | acorn@^3.0.4:
1003 | version "3.3.0"
1004 | resolved "https://registry.yarnpkg.com/acorn/-/acorn-3.3.0.tgz#45e37fb39e8da3f25baee3ff5369e2bb5f22017a"
1005 | integrity sha512-OLUyIIZ7mF5oaAUT1w0TFqQS81q3saT46x8t7ukpPjMNk+nbs4ZHhs7ToV8EWnLYLepjETXd4XaCE4uxkMeqUw==
1006 |
1007 | acorn@^4.0.3:
1008 | version "4.0.13"
1009 | resolved "https://registry.yarnpkg.com/acorn/-/acorn-4.0.13.tgz#105495ae5361d697bd195c825192e1ad7f253787"
1010 | integrity sha512-fu2ygVGuMmlzG8ZeRJ0bvR41nsAkxxhbyk8bZ1SS521Z7vmgJFTQQlfz/Mp/nJexGBz+v8sC9bM6+lNgskt4Ug==
1011 |
1012 | acorn@^5.5.0:
1013 | version "5.7.4"
1014 | resolved "https://registry.yarnpkg.com/acorn/-/acorn-5.7.4.tgz#3e8d8a9947d0599a1796d10225d7432f4a4acf5e"
1015 | integrity sha512-1D++VG7BhrtvQpNbBzovKNc1FLGGEE/oGe7b9xJm/RFHMBeUaUGpluV9RLjZa47YFdPcDAenEYuq9pQPcMdLJg==
1016 |
1017 | ansi-escapes@^3.0.0:
1018 | version "3.2.0"
1019 | resolved "https://registry.yarnpkg.com/ansi-escapes/-/ansi-escapes-3.2.0.tgz#8780b98ff9dbf5638152d1f1fe5c1d7b4442976b"
1020 | integrity sha512-cBhpre4ma+U0T1oM5fXg7Dy1Jw7zzwv7lt/GoCpr+hDQJoYnKVPLL4dCvSEFMmQurOQvSrwT7SL/DAlhBI97RQ==
1021 |
1022 | ansi-regex@^2.0.0:
1023 | version "2.1.1"
1024 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-2.1.1.tgz#c3b33ab5ee360d86e0e628f0468ae7ef27d654df"
1025 | integrity sha512-TIGnTpdo+E3+pCyAluZvtED5p5wCqLdezCyhPZzKPcxvFplEt4i+W7OONCKgeZFT3+y5NZZfOOS/Bdcanm1MYA==
1026 |
1027 | ansi-regex@^3.0.0:
1028 | version "3.0.1"
1029 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-3.0.1.tgz#123d6479e92ad45ad897d4054e3c7ca7db4944e1"
1030 | integrity sha512-+O9Jct8wf++lXxxFc4hc8LsjaSq0HFzzL7cVsw8pRDIPdjKD2mT4ytDZlLuSBZ4cLKZFXIrMGO7DbQCtMJJMKw==
1031 |
1032 | ansi-styles@^2.2.1:
1033 | version "2.2.1"
1034 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-2.2.1.tgz#b432dd3358b634cf75e1e4664368240533c1ddbe"
1035 | integrity sha512-kmCevFghRiWM7HB5zTPULl4r9bVFSWjz62MhqizDGUrq2NWuNMQyuv4tHHoKJHs69M/MF64lEcHdYIocrdWQYA==
1036 |
1037 | ansi-styles@^3.2.0, ansi-styles@^3.2.1:
1038 | version "3.2.1"
1039 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-3.2.1.tgz#41fbb20243e50b12be0f04b8dedbf07520ce841d"
1040 | integrity sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==
1041 | dependencies:
1042 | color-convert "^1.9.0"
1043 |
1044 | any-observable@^0.3.0:
1045 | version "0.3.0"
1046 | resolved "https://registry.yarnpkg.com/any-observable/-/any-observable-0.3.0.tgz#af933475e5806a67d0d7df090dd5e8bef65d119b"
1047 | integrity sha512-/FQM1EDkTsf63Ub2C6O7GuYFDsSXUwsaZDurV0np41ocwq0jthUAYCmhBX9f+KwlaCgIuWyr/4WlUQUBfKfZog==
1048 |
1049 | anymatch@~3.1.2:
1050 | version "3.1.2"
1051 | resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-3.1.2.tgz#c0557c096af32f106198f4f4e2a383537e378716"
1052 | integrity sha512-P43ePfOAIupkguHUycrc4qJ9kz8ZiuOUijaETwX7THt0Y/GNK7v0aa8rY816xWjZ7rJdA5XdMcpVFTKMq+RvWg==
1053 | dependencies:
1054 | normalize-path "^3.0.0"
1055 | picomatch "^2.0.4"
1056 |
1057 | argparse@^1.0.7:
1058 | version "1.0.10"
1059 | resolved "https://registry.yarnpkg.com/argparse/-/argparse-1.0.10.tgz#bcd6791ea5ae09725e17e5ad988134cd40b3d911"
1060 | integrity sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==
1061 | dependencies:
1062 | sprintf-js "~1.0.2"
1063 |
1064 | arr-diff@^4.0.0:
1065 | version "4.0.0"
1066 | resolved "https://registry.yarnpkg.com/arr-diff/-/arr-diff-4.0.0.tgz#d6461074febfec71e7e15235761a329a5dc7c520"
1067 | integrity sha512-YVIQ82gZPGBebQV/a8dar4AitzCQs0jjXwMPZllpXMaGjXPYVUawSxQrRsjhjupyVxEvbHgUmIhKVlND+j02kA==
1068 |
1069 | arr-flatten@^1.1.0:
1070 | version "1.1.0"
1071 | resolved "https://registry.yarnpkg.com/arr-flatten/-/arr-flatten-1.1.0.tgz#36048bbff4e7b47e136644316c99669ea5ae91f1"
1072 | integrity sha512-L3hKV5R/p5o81R7O02IGnwpDmkp6E982XhtbuwSe3O4qOtMMMtodicASA1Cny2U+aCXcNpml+m4dPsvsJ3jatg==
1073 |
1074 | arr-union@^3.1.0:
1075 | version "3.1.0"
1076 | resolved "https://registry.yarnpkg.com/arr-union/-/arr-union-3.1.0.tgz#e39b09aea9def866a8f206e288af63919bae39c4"
1077 | integrity sha512-sKpyeERZ02v1FeCZT8lrfJq5u6goHCtpTAzPwJYe7c8SPFOboNjNg1vz2L4VTn9T4PQxEx13TbXLmYUcS6Ug7Q==
1078 |
1079 | array-unique@^0.3.2:
1080 | version "0.3.2"
1081 | resolved "https://registry.yarnpkg.com/array-unique/-/array-unique-0.3.2.tgz#a894b75d4bc4f6cd679ef3244a9fd8f46ae2d428"
1082 | integrity sha512-SleRWjh9JUud2wH1hPs9rZBZ33H6T9HOiL0uwGnGx9FpE6wKGyfWugmbkEOIs6qWrZhg0LWeLziLrEwQJhs5mQ==
1083 |
1084 | assign-symbols@^1.0.0:
1085 | version "1.0.0"
1086 | resolved "https://registry.yarnpkg.com/assign-symbols/-/assign-symbols-1.0.0.tgz#59667f41fadd4f20ccbc2bb96b8d4f7f78ec0367"
1087 | integrity sha512-Q+JC7Whu8HhmTdBph/Tq59IoRtoy6KAm5zzPv00WdujX82lbAL8K7WVjne7vdCsAmbF4AYaDOPyO3k0kl8qIrw==
1088 |
1089 | ast-equal@^1.0.2:
1090 | version "1.1.0"
1091 | resolved "https://registry.yarnpkg.com/ast-equal/-/ast-equal-1.1.0.tgz#a71d388f272416697c5439e4595d6776913d61bf"
1092 | integrity sha512-B/gAN646+AszsgiHA2DTkPEwYGY5OnWB9nLrPaDFewA84PqIAq9nBYEYa1NVR5El6jMZt4PRKh7/IPRbRcXL8Q==
1093 | dependencies:
1094 | escodegen "^1.6.1"
1095 | esprima "^2.5.0"
1096 | power-assert "^0.11.0"
1097 |
1098 | atob@^2.1.2:
1099 | version "2.1.2"
1100 | resolved "https://registry.yarnpkg.com/atob/-/atob-2.1.2.tgz#6d9517eb9e030d2436666651e86bd9f6f13533c9"
1101 | integrity sha512-Wm6ukoaOGJi/73p/cl2GvLjTI5JM1k/O14isD73YML8StrH/7/lRFgmg8nICZgD3bZZvjwCGxtMOD3wWNAu8cg==
1102 |
1103 | babel-plugin-dynamic-import-node@^2.3.3:
1104 | version "2.3.3"
1105 | resolved "https://registry.yarnpkg.com/babel-plugin-dynamic-import-node/-/babel-plugin-dynamic-import-node-2.3.3.tgz#84fda19c976ec5c6defef57f9427b3def66e17a3"
1106 | integrity sha512-jZVI+s9Zg3IqA/kdi0i6UDCybUI3aSBLnglhYbSSjKlV7yF1F/5LWv8MakQmvYpnbJDS6fcBL2KzHSxNCMtWSQ==
1107 | dependencies:
1108 | object.assign "^4.1.0"
1109 |
1110 | babel-plugin-polyfill-corejs2@^0.3.3:
1111 | version "0.3.3"
1112 | resolved "https://registry.yarnpkg.com/babel-plugin-polyfill-corejs2/-/babel-plugin-polyfill-corejs2-0.3.3.tgz#5d1bd3836d0a19e1b84bbf2d9640ccb6f951c122"
1113 | integrity sha512-8hOdmFYFSZhqg2C/JgLUQ+t52o5nirNwaWM2B9LWteozwIvM14VSwdsCAUET10qT+kmySAlseadmfeeSWFCy+Q==
1114 | dependencies:
1115 | "@babel/compat-data" "^7.17.7"
1116 | "@babel/helper-define-polyfill-provider" "^0.3.3"
1117 | semver "^6.1.1"
1118 |
1119 | babel-plugin-polyfill-corejs3@^0.6.0:
1120 | version "0.6.0"
1121 | resolved "https://registry.yarnpkg.com/babel-plugin-polyfill-corejs3/-/babel-plugin-polyfill-corejs3-0.6.0.tgz#56ad88237137eade485a71b52f72dbed57c6230a"
1122 | integrity sha512-+eHqR6OPcBhJOGgsIar7xoAB1GcSwVUA3XjAd7HJNzOXT4wv6/H7KIdA/Nc60cvUlDbKApmqNvD1B1bzOt4nyA==
1123 | dependencies:
1124 | "@babel/helper-define-polyfill-provider" "^0.3.3"
1125 | core-js-compat "^3.25.1"
1126 |
1127 | babel-plugin-polyfill-regenerator@^0.4.1:
1128 | version "0.4.1"
1129 | resolved "https://registry.yarnpkg.com/babel-plugin-polyfill-regenerator/-/babel-plugin-polyfill-regenerator-0.4.1.tgz#390f91c38d90473592ed43351e801a9d3e0fd747"
1130 | integrity sha512-NtQGmyQDXjQqQ+IzRkBVwEOz9lQ4zxAQZgoAYEtU9dJjnl1Oc98qnN7jcp+bE7O7aYzVpavXE3/VKXNzUbh7aw==
1131 | dependencies:
1132 | "@babel/helper-define-polyfill-provider" "^0.3.3"
1133 |
1134 | babylon@^6.6.5:
1135 | version "6.18.0"
1136 | resolved "https://registry.yarnpkg.com/babylon/-/babylon-6.18.0.tgz#af2f3b88fa6f5c1e4c634d1a0f8eac4f55b395e3"
1137 | integrity sha512-q/UEjfGJ2Cm3oKV71DJz9d25TPnq5rhBVL2Q4fA5wcC3jcrdn7+SssEybFIxwAvvP+YCsCYNKughoF33GxgycQ==
1138 |
1139 | balanced-match@^1.0.0:
1140 | version "1.0.2"
1141 | resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.2.tgz#e83e3a7e3f300b34cb9d87f615fa0cbf357690ee"
1142 | integrity sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==
1143 |
1144 | base@^0.11.1:
1145 | version "0.11.2"
1146 | resolved "https://registry.yarnpkg.com/base/-/base-0.11.2.tgz#7bde5ced145b6d551a90db87f83c558b4eb48a8f"
1147 | integrity sha512-5T6P4xPgpp0YDFvSWwEZ4NoE3aM4QBQXDzmVbraCkFj8zHM+mba8SyqB5DbZWyR7mYHo6Y7BdQo3MoA4m0TeQg==
1148 | dependencies:
1149 | cache-base "^1.0.1"
1150 | class-utils "^0.3.5"
1151 | component-emitter "^1.2.1"
1152 | define-property "^1.0.0"
1153 | isobject "^3.0.1"
1154 | mixin-deep "^1.2.0"
1155 | pascalcase "^0.1.1"
1156 |
1157 | binary-extensions@^2.0.0:
1158 | version "2.2.0"
1159 | resolved "https://registry.yarnpkg.com/binary-extensions/-/binary-extensions-2.2.0.tgz#75f502eeaf9ffde42fc98829645be4ea76bd9e2d"
1160 | integrity sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA==
1161 |
1162 | brace-expansion@^1.1.7:
1163 | version "1.1.11"
1164 | resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.11.tgz#3c7fcbf529d87226f3d2f52b966ff5271eb441dd"
1165 | integrity sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==
1166 | dependencies:
1167 | balanced-match "^1.0.0"
1168 | concat-map "0.0.1"
1169 |
1170 | braces@^2.3.1:
1171 | version "2.3.2"
1172 | resolved "https://registry.yarnpkg.com/braces/-/braces-2.3.2.tgz#5979fd3f14cd531565e5fa2df1abfff1dfaee729"
1173 | integrity sha512-aNdbnj9P8PjdXU4ybaWLK2IF3jc/EoDYbC7AazW6to3TRsfXxscC9UXOB5iDiEQrkyIbWp2SLQda4+QAa7nc3w==
1174 | dependencies:
1175 | arr-flatten "^1.1.0"
1176 | array-unique "^0.3.2"
1177 | extend-shallow "^2.0.1"
1178 | fill-range "^4.0.0"
1179 | isobject "^3.0.1"
1180 | repeat-element "^1.1.2"
1181 | snapdragon "^0.8.1"
1182 | snapdragon-node "^2.0.1"
1183 | split-string "^3.0.2"
1184 | to-regex "^3.0.1"
1185 |
1186 | braces@~3.0.2:
1187 | version "3.0.2"
1188 | resolved "https://registry.yarnpkg.com/braces/-/braces-3.0.2.tgz#3454e1a462ee8d599e236df336cd9ea4f8afe107"
1189 | integrity sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==
1190 | dependencies:
1191 | fill-range "^7.0.1"
1192 |
1193 | browser-stdout@1.3.1:
1194 | version "1.3.1"
1195 | resolved "https://registry.yarnpkg.com/browser-stdout/-/browser-stdout-1.3.1.tgz#baa559ee14ced73452229bad7326467c61fabd60"
1196 | integrity sha512-qhAVI1+Av2X7qelOfAIYwXONood6XlZE/fXaBSmW/T5SzLAmCgzi+eiWE7fUvbHaeNBQH13UftjpXxsfLkMpgw==
1197 |
1198 | browserslist@^4.21.3, browserslist@^4.21.4:
1199 | version "4.21.4"
1200 | resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-4.21.4.tgz#e7496bbc67b9e39dd0f98565feccdcb0d4ff6987"
1201 | integrity sha512-CBHJJdDmgjl3daYjN5Cp5kbTf1mUhZoS+beLklHIvkOWscs83YAhLlF3Wsh/lciQYAcbBJgTOD44VtG31ZM4Hw==
1202 | dependencies:
1203 | caniuse-lite "^1.0.30001400"
1204 | electron-to-chromium "^1.4.251"
1205 | node-releases "^2.0.6"
1206 | update-browserslist-db "^1.0.9"
1207 |
1208 | buffer-from@^1.0.0:
1209 | version "1.1.2"
1210 | resolved "https://registry.yarnpkg.com/buffer-from/-/buffer-from-1.1.2.tgz#2b146a6fd72e80b4f55d255f35ed59a3a9a41bd5"
1211 | integrity sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==
1212 |
1213 | cache-base@^1.0.1:
1214 | version "1.0.1"
1215 | resolved "https://registry.yarnpkg.com/cache-base/-/cache-base-1.0.1.tgz#0a7f46416831c8b662ee36fe4e7c59d76f666ab2"
1216 | integrity sha512-AKcdTnFSWATd5/GCPRxr2ChwIJ85CeyrEyjRHlKxQ56d4XJMGym0uAiKn0xbLOGOl3+yRpOTi484dVCEc5AUzQ==
1217 | dependencies:
1218 | collection-visit "^1.0.0"
1219 | component-emitter "^1.2.1"
1220 | get-value "^2.0.6"
1221 | has-value "^1.0.0"
1222 | isobject "^3.0.1"
1223 | set-value "^2.0.0"
1224 | to-object-path "^0.3.0"
1225 | union-value "^1.0.0"
1226 | unset-value "^1.0.0"
1227 |
1228 | call-bind@^1.0.2:
1229 | version "1.0.2"
1230 | resolved "https://registry.yarnpkg.com/call-bind/-/call-bind-1.0.2.tgz#b1d4e89e688119c3c9a903ad30abb2f6a919be3c"
1231 | integrity sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA==
1232 | dependencies:
1233 | function-bind "^1.1.1"
1234 | get-intrinsic "^1.0.2"
1235 |
1236 | call-matcher@^1.0.0:
1237 | version "1.1.0"
1238 | resolved "https://registry.yarnpkg.com/call-matcher/-/call-matcher-1.1.0.tgz#23b2c1bc7a8394c8be28609d77ddbd5786680432"
1239 | integrity sha512-IoQLeNwwf9KTNbtSA7aEBb1yfDbdnzwjCetjkC8io5oGeOmK2CBNdg0xr+tadRYKO0p7uQyZzvon0kXlZbvGrw==
1240 | dependencies:
1241 | core-js "^2.0.0"
1242 | deep-equal "^1.0.0"
1243 | espurify "^1.6.0"
1244 | estraverse "^4.0.0"
1245 |
1246 | caller-callsite@^2.0.0:
1247 | version "2.0.0"
1248 | resolved "https://registry.yarnpkg.com/caller-callsite/-/caller-callsite-2.0.0.tgz#847e0fce0a223750a9a027c54b33731ad3154134"
1249 | integrity sha512-JuG3qI4QOftFsZyOn1qq87fq5grLIyk1JYd5lJmdA+fG7aQ9pA/i3JIJGcO3q0MrRcHlOt1U+ZeHW8Dq9axALQ==
1250 | dependencies:
1251 | callsites "^2.0.0"
1252 |
1253 | caller-path@^2.0.0:
1254 | version "2.0.0"
1255 | resolved "https://registry.yarnpkg.com/caller-path/-/caller-path-2.0.0.tgz#468f83044e369ab2010fac5f06ceee15bb2cb1f4"
1256 | integrity sha512-MCL3sf6nCSXOwCTzvPKhN18TU7AHTvdtam8DAogxcrJ8Rjfbbg7Lgng64H9Iy+vUV6VGFClN/TyxBkAebLRR4A==
1257 | dependencies:
1258 | caller-callsite "^2.0.0"
1259 |
1260 | callsites@^2.0.0:
1261 | version "2.0.0"
1262 | resolved "https://registry.yarnpkg.com/callsites/-/callsites-2.0.0.tgz#06eb84f00eea413da86affefacbffb36093b3c50"
1263 | integrity sha512-ksWePWBloaWPxJYQ8TL0JHvtci6G5QTKwQ95RcWAa/lzoAKuAOflGdAK92hpHXjkwb8zLxoLNUoNYZgVsaJzvQ==
1264 |
1265 | caniuse-lite@^1.0.30001400:
1266 | version "1.0.30001418"
1267 | resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001418.tgz#5f459215192a024c99e3e3a53aac310fc7cf24e6"
1268 | integrity sha512-oIs7+JL3K9JRQ3jPZjlH6qyYDp+nBTCais7hjh0s+fuBwufc7uZ7hPYMXrDOJhV360KGMTcczMRObk0/iMqZRg==
1269 |
1270 | chalk@^1.0.0, chalk@^1.1.3:
1271 | version "1.1.3"
1272 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-1.1.3.tgz#a8115c55e4a702fe4d150abd3872822a7e09fc98"
1273 | integrity sha512-U3lRVLMSlsCfjqYPbLyVv11M9CPW4I728d6TCKMAOJueEeB9/8o+eSsMnxPJD+Q+K909sdESg7C+tIkoH6on1A==
1274 | dependencies:
1275 | ansi-styles "^2.2.1"
1276 | escape-string-regexp "^1.0.2"
1277 | has-ansi "^2.0.0"
1278 | strip-ansi "^3.0.0"
1279 | supports-color "^2.0.0"
1280 |
1281 | chalk@^2.0.0, chalk@^2.0.1, chalk@^2.3.1, chalk@^2.4.1:
1282 | version "2.4.2"
1283 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-2.4.2.tgz#cd42541677a54333cf541a49108c1432b44c9424"
1284 | integrity sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==
1285 | dependencies:
1286 | ansi-styles "^3.2.1"
1287 | escape-string-regexp "^1.0.5"
1288 | supports-color "^5.3.0"
1289 |
1290 | chokidar@^3.4.0:
1291 | version "3.5.3"
1292 | resolved "https://registry.yarnpkg.com/chokidar/-/chokidar-3.5.3.tgz#1cf37c8707b932bd1af1ae22c0432e2acd1903bd"
1293 | integrity sha512-Dr3sfKRP6oTcjf2JmUmFJfeVMvXBdegxB0iVQ5eb2V10uFJUCAS8OByZdVAyVb8xXNz3GjjTgj9kLWsZTqE6kw==
1294 | dependencies:
1295 | anymatch "~3.1.2"
1296 | braces "~3.0.2"
1297 | glob-parent "~5.1.2"
1298 | is-binary-path "~2.1.0"
1299 | is-glob "~4.0.1"
1300 | normalize-path "~3.0.0"
1301 | readdirp "~3.6.0"
1302 | optionalDependencies:
1303 | fsevents "~2.3.2"
1304 |
1305 | ci-info@^2.0.0:
1306 | version "2.0.0"
1307 | resolved "https://registry.yarnpkg.com/ci-info/-/ci-info-2.0.0.tgz#67a9e964be31a51e15e5010d58e6f12834002f46"
1308 | integrity sha512-5tK7EtrZ0N+OLFMthtqOj4fI2Jeb88C4CAZPu25LDVUgXJ0A3Js4PMGqrn0JU1W0Mh1/Z8wZzYPxqUrXeBboCQ==
1309 |
1310 | class-utils@^0.3.5:
1311 | version "0.3.6"
1312 | resolved "https://registry.yarnpkg.com/class-utils/-/class-utils-0.3.6.tgz#f93369ae8b9a7ce02fd41faad0ca83033190c463"
1313 | integrity sha512-qOhPa/Fj7s6TY8H8esGu5QNpMMQxz79h+urzrNYN6mn+9BnxlDGf5QZ+XeCDsxSjPqsSR56XOZOJmpeurnLMeg==
1314 | dependencies:
1315 | arr-union "^3.1.0"
1316 | define-property "^0.2.5"
1317 | isobject "^3.0.0"
1318 | static-extend "^0.1.1"
1319 |
1320 | cli-cursor@^2.0.0, cli-cursor@^2.1.0:
1321 | version "2.1.0"
1322 | resolved "https://registry.yarnpkg.com/cli-cursor/-/cli-cursor-2.1.0.tgz#b35dac376479facc3e94747d41d0d0f5238ffcb5"
1323 | integrity sha512-8lgKz8LmCRYZZQDpRyT2m5rKJ08TnU4tR9FFFW2rxpxR1FzWi4PQ/NfyODchAatHaUgnSPVcx/R5w6NuTBzFiw==
1324 | dependencies:
1325 | restore-cursor "^2.0.0"
1326 |
1327 | cli-truncate@^0.2.1:
1328 | version "0.2.1"
1329 | resolved "https://registry.yarnpkg.com/cli-truncate/-/cli-truncate-0.2.1.tgz#9f15cfbb0705005369216c626ac7d05ab90dd574"
1330 | integrity sha512-f4r4yJnbT++qUPI9NR4XLDLq41gQ+uqnPItWG0F5ZkehuNiTTa3EY0S4AqTSUOeJ7/zU41oWPQSNkW5BqPL9bg==
1331 | dependencies:
1332 | slice-ansi "0.0.4"
1333 | string-width "^1.0.1"
1334 |
1335 | clone-deep@^4.0.1:
1336 | version "4.0.1"
1337 | resolved "https://registry.yarnpkg.com/clone-deep/-/clone-deep-4.0.1.tgz#c19fd9bdbbf85942b4fd979c84dcf7d5f07c2387"
1338 | integrity sha512-neHB9xuzh/wk0dIHweyAXv2aPGZIVk3pLMe+/RNzINf17fe0OG96QroktYAUm7SM1PBnzTabaLboqqxDyMU+SQ==
1339 | dependencies:
1340 | is-plain-object "^2.0.4"
1341 | kind-of "^6.0.2"
1342 | shallow-clone "^3.0.0"
1343 |
1344 | code-point-at@^1.0.0:
1345 | version "1.1.0"
1346 | resolved "https://registry.yarnpkg.com/code-point-at/-/code-point-at-1.1.0.tgz#0d070b4d043a5bea33a2f1a40e2edb3d9a4ccf77"
1347 | integrity sha512-RpAVKQA5T63xEj6/giIbUEtZwJ4UFIc3ZtvEkiaUERylqe8xb5IvqcgOurZLahv93CLKfxcw5YI+DZcUBRyLXA==
1348 |
1349 | collection-visit@^1.0.0:
1350 | version "1.0.0"
1351 | resolved "https://registry.yarnpkg.com/collection-visit/-/collection-visit-1.0.0.tgz#4bc0373c164bc3291b4d368c829cf1a80a59dca0"
1352 | integrity sha512-lNkKvzEeMBBjUGHZ+q6z9pSJla0KWAQPvtzhEV9+iGyQYG+pBpl7xKDhxoNSOZH2hhv0v5k0y2yAM4o4SjoSkw==
1353 | dependencies:
1354 | map-visit "^1.0.0"
1355 | object-visit "^1.0.0"
1356 |
1357 | color-convert@^1.9.0:
1358 | version "1.9.3"
1359 | resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-1.9.3.tgz#bb71850690e1f136567de629d2d5471deda4c1e8"
1360 | integrity sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==
1361 | dependencies:
1362 | color-name "1.1.3"
1363 |
1364 | color-name@1.1.3:
1365 | version "1.1.3"
1366 | resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.3.tgz#a7d0558bd89c42f795dd42328f740831ca53bc25"
1367 | integrity sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==
1368 |
1369 | commander@2.15.1:
1370 | version "2.15.1"
1371 | resolved "https://registry.yarnpkg.com/commander/-/commander-2.15.1.tgz#df46e867d0fc2aec66a34662b406a9ccafff5b0f"
1372 | integrity sha512-VlfT9F3V0v+jr4yxPc5gg9s62/fIVWsd2Bk2iD435um1NlGMYdVCq+MjcXnhYq2icNOizHr1kK+5TI6H0Hy0ag==
1373 |
1374 | commander@^2.14.1, commander@^2.9.0:
1375 | version "2.20.3"
1376 | resolved "https://registry.yarnpkg.com/commander/-/commander-2.20.3.tgz#fd485e84c03eb4881c20722ba48035e8531aeb33"
1377 | integrity sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==
1378 |
1379 | commander@^4.0.1:
1380 | version "4.1.1"
1381 | resolved "https://registry.yarnpkg.com/commander/-/commander-4.1.1.tgz#9fd602bd936294e9e9ef46a3f4d6964044b18068"
1382 | integrity sha512-NOKm8xhkzAjzFx8B2v5OAHT+u5pRQc2UCa2Vq9jYL/31o2wi9mxBA7LIFs3sV5VSC49z6pEhfbMULvShKj26WA==
1383 |
1384 | comment-to-assert@^1.0.1:
1385 | version "1.5.1"
1386 | resolved "https://registry.yarnpkg.com/comment-to-assert/-/comment-to-assert-1.5.1.tgz#b3ef839c638ee175d7f61e2d5ca2719302396199"
1387 | integrity sha512-9W31ZnsNMfhG6ATKx6hLEZZRcAJhUEdQEW1Eg2w6McPS/x0IqEsbnAfGXAVrm6eS5gfDd025JOABLygKtoNsEA==
1388 | dependencies:
1389 | acorn "^4.0.3"
1390 | concat-stream "^1.5.0"
1391 | escodegen "^1.6.1"
1392 | espree "^3.1.5"
1393 | estraverse "^4.1.0"
1394 | esutils "^2.0.2"
1395 | tagged-template-to-ast "^2.0.0"
1396 |
1397 | commondir@^1.0.1:
1398 | version "1.0.1"
1399 | resolved "https://registry.yarnpkg.com/commondir/-/commondir-1.0.1.tgz#ddd800da0c66127393cca5950ea968a3aaf1253b"
1400 | integrity sha512-W9pAhw0ja1Edb5GVdIF1mjZw/ASI0AlShXM83UUGe2DVr5TdAPEA1OA8m/g8zWp9x6On7gqufY+FatDbC3MDQg==
1401 |
1402 | component-emitter@^1.2.1:
1403 | version "1.3.0"
1404 | resolved "https://registry.yarnpkg.com/component-emitter/-/component-emitter-1.3.0.tgz#16e4070fba8ae29b679f2215853ee181ab2eabc0"
1405 | integrity sha512-Rd3se6QB+sO1TwqZjscQrurpEPIfO0/yYnSin6Q/rD3mOutHvUrCAhJub3r90uNb+SESBuE0QYoB90YdfatsRg==
1406 |
1407 | concat-map@0.0.1:
1408 | version "0.0.1"
1409 | resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b"
1410 | integrity sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==
1411 |
1412 | concat-stream@^1.5.0:
1413 | version "1.6.2"
1414 | resolved "https://registry.yarnpkg.com/concat-stream/-/concat-stream-1.6.2.tgz#904bdf194cd3122fc675c77fc4ac3d4ff0fd1a34"
1415 | integrity sha512-27HBghJxjiZtIk3Ycvn/4kbJk/1uZuJFfuPEns6LaEvpvG1f0hTea8lilrouyo9mVc2GWdcEZ8OLoGmSADlrCw==
1416 | dependencies:
1417 | buffer-from "^1.0.0"
1418 | inherits "^2.0.3"
1419 | readable-stream "^2.2.2"
1420 | typedarray "^0.0.6"
1421 |
1422 | convert-source-map@^1.1.0, convert-source-map@^1.1.1, convert-source-map@^1.7.0:
1423 | version "1.8.0"
1424 | resolved "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-1.8.0.tgz#f3373c32d21b4d780dd8004514684fb791ca4369"
1425 | integrity sha512-+OQdjP49zViI/6i7nIJpA8rAl4sV/JdPfU9nZs3VqOwGIgizICvuN2ru6fMd+4llL0tar18UYJXfZ/TWtmhUjA==
1426 | dependencies:
1427 | safe-buffer "~5.1.1"
1428 |
1429 | copy-descriptor@^0.1.0:
1430 | version "0.1.1"
1431 | resolved "https://registry.yarnpkg.com/copy-descriptor/-/copy-descriptor-0.1.1.tgz#676f6eb3c39997c2ee1ac3a924fd6124748f578d"
1432 | integrity sha512-XgZ0pFcakEUlbwQEVNg3+QAis1FyTL3Qel9FYy8pSkQqoG3PNoT0bOCQtOXcOkur21r2Eq2kI+IE+gsmAEVlYw==
1433 |
1434 | core-js-compat@^3.25.1:
1435 | version "3.25.5"
1436 | resolved "https://registry.yarnpkg.com/core-js-compat/-/core-js-compat-3.25.5.tgz#0016e8158c904f7b059486639e6e82116eafa7d9"
1437 | integrity sha512-ovcyhs2DEBUIE0MGEKHP4olCUW/XYte3Vroyxuh38rD1wAO4dHohsovUC4eAOuzFxE6b+RXvBU3UZ9o0YhUTkA==
1438 | dependencies:
1439 | browserslist "^4.21.4"
1440 |
1441 | core-js@^2.0.0:
1442 | version "2.6.12"
1443 | resolved "https://registry.yarnpkg.com/core-js/-/core-js-2.6.12.tgz#d9333dfa7b065e347cc5682219d6f690859cc2ec"
1444 | integrity sha512-Kb2wC0fvsWfQrgk8HU5lW6U/Lcs8+9aaYcy4ZFc6DDlo4nZ7n70dEgE5rtR0oG6ufKDUnrwfWL1mXR5ljDatrQ==
1445 |
1446 | core-util-is@~1.0.0:
1447 | version "1.0.3"
1448 | resolved "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.3.tgz#a6042d3634c2b27e9328f837b965fac83808db85"
1449 | integrity sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ==
1450 |
1451 | cosmiconfig@^5.0.2, cosmiconfig@^5.0.7:
1452 | version "5.2.1"
1453 | resolved "https://registry.yarnpkg.com/cosmiconfig/-/cosmiconfig-5.2.1.tgz#040f726809c591e77a17c0a3626ca45b4f168b1a"
1454 | integrity sha512-H65gsXo1SKjf8zmrJ67eJk8aIRKV5ff2D4uKZIBZShbhGSpEmsQOPW/SKMKYhSTrqR7ufy6RP69rPogdaPh/kA==
1455 | dependencies:
1456 | import-fresh "^2.0.0"
1457 | is-directory "^0.3.1"
1458 | js-yaml "^3.13.1"
1459 | parse-json "^4.0.0"
1460 |
1461 | cross-spawn@^5.0.1:
1462 | version "5.1.0"
1463 | resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-5.1.0.tgz#e8bd0efee58fcff6f8f94510a0a554bbfa235449"
1464 | integrity sha512-pTgQJ5KC0d2hcY8eyL1IzlBPYjTkyH72XRZPnLyKus2mBfNjQs3klqbJU2VILqZryAZUt9JOb3h/mWMy23/f5A==
1465 | dependencies:
1466 | lru-cache "^4.0.1"
1467 | shebang-command "^1.2.0"
1468 | which "^1.2.9"
1469 |
1470 | cross-spawn@^6.0.0:
1471 | version "6.0.5"
1472 | resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-6.0.5.tgz#4a5ec7c64dfae22c3a14124dbacdee846d80cbc4"
1473 | integrity sha512-eTVLrBSt7fjbDygz805pMnstIs2VTBNkRm0qxZd+M7A5XDdxVRWO5MxGBXZhjY4cqLYLdtrGqRf8mBPmzwSpWQ==
1474 | dependencies:
1475 | nice-try "^1.0.4"
1476 | path-key "^2.0.1"
1477 | semver "^5.5.0"
1478 | shebang-command "^1.2.0"
1479 | which "^1.2.9"
1480 |
1481 | date-fns@^1.27.2:
1482 | version "1.30.1"
1483 | resolved "https://registry.yarnpkg.com/date-fns/-/date-fns-1.30.1.tgz#2e71bf0b119153dbb4cc4e88d9ea5acfb50dc05c"
1484 | integrity sha512-hBSVCvSmWC+QypYObzwGOd9wqdDpOt+0wl0KbU+R+uuZBS1jN8VsD1ss3irQDknRj5NvxiTF6oj/nDRnN/UQNw==
1485 |
1486 | debug@3.1.0:
1487 | version "3.1.0"
1488 | resolved "https://registry.yarnpkg.com/debug/-/debug-3.1.0.tgz#5bb5a0672628b64149566ba16819e61518c67261"
1489 | integrity sha512-OX8XqP7/1a9cqkxYw2yXss15f26NKWBpDXQd0/uK/KPqdQhxbPa994hnzjcE2VqQpDslf55723cKPUOGSmMY3g==
1490 | dependencies:
1491 | ms "2.0.0"
1492 |
1493 | debug@^2.2.0, debug@^2.3.3:
1494 | version "2.6.9"
1495 | resolved "https://registry.yarnpkg.com/debug/-/debug-2.6.9.tgz#5d128515df134ff327e90a4c93f4e077a536341f"
1496 | integrity sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==
1497 | dependencies:
1498 | ms "2.0.0"
1499 |
1500 | debug@^3.1.0:
1501 | version "3.2.7"
1502 | resolved "https://registry.yarnpkg.com/debug/-/debug-3.2.7.tgz#72580b7e9145fb39b6676f9c5e5fb100b934179a"
1503 | integrity sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==
1504 | dependencies:
1505 | ms "^2.1.1"
1506 |
1507 | debug@^4.1.0, debug@^4.1.1:
1508 | version "4.3.4"
1509 | resolved "https://registry.yarnpkg.com/debug/-/debug-4.3.4.tgz#1319f6579357f2338d3337d2cdd4914bb5dcc865"
1510 | integrity sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==
1511 | dependencies:
1512 | ms "2.1.2"
1513 |
1514 | decode-uri-component@^0.2.0:
1515 | version "0.2.0"
1516 | resolved "https://registry.yarnpkg.com/decode-uri-component/-/decode-uri-component-0.2.0.tgz#eb3913333458775cb84cd1a1fae062106bb87545"
1517 | integrity sha512-hjf+xovcEn31w/EUYdTXQh/8smFL/dzYjohQGEIgjyNavaJfBY2p5F527Bo1VPATxv0VYTUC2bOcXvqFwk78Og==
1518 |
1519 | dedent@^0.7.0:
1520 | version "0.7.0"
1521 | resolved "https://registry.yarnpkg.com/dedent/-/dedent-0.7.0.tgz#2495ddbaf6eb874abb0e1be9df22d2e5a544326c"
1522 | integrity sha512-Q6fKUPqnAHAyhiUgFU7BUzLiv0kd8saH9al7tnu5Q/okj6dnupxyTgFIBjVzJATdfIAm9NAsvXNzjaKa+bxVyA==
1523 |
1524 | deep-equal@^1.0.0:
1525 | version "1.1.1"
1526 | resolved "https://registry.yarnpkg.com/deep-equal/-/deep-equal-1.1.1.tgz#b5c98c942ceffaf7cb051e24e1434a25a2e6076a"
1527 | integrity sha512-yd9c5AdiqVcR+JjcwUQb9DkhJc8ngNr0MahEBGvDiJw8puWab2yZlh+nkasOnZP+EGTAP6rRp2JzJhJZzvNF8g==
1528 | dependencies:
1529 | is-arguments "^1.0.4"
1530 | is-date-object "^1.0.1"
1531 | is-regex "^1.0.4"
1532 | object-is "^1.0.1"
1533 | object-keys "^1.1.1"
1534 | regexp.prototype.flags "^1.2.0"
1535 |
1536 | deep-is@~0.1.3:
1537 | version "0.1.4"
1538 | resolved "https://registry.yarnpkg.com/deep-is/-/deep-is-0.1.4.tgz#a6f2dce612fadd2ef1f519b73551f17e85199831"
1539 | integrity sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==
1540 |
1541 | define-properties@^1.1.3, define-properties@^1.1.4:
1542 | version "1.1.4"
1543 | resolved "https://registry.yarnpkg.com/define-properties/-/define-properties-1.1.4.tgz#0b14d7bd7fbeb2f3572c3a7eda80ea5d57fb05b1"
1544 | integrity sha512-uckOqKcfaVvtBdsVkdPv3XjveQJsNQqmhXgRi8uhvWWuPYZCNlzT8qAyblUgNoXdHdjMTzAqeGjAoli8f+bzPA==
1545 | dependencies:
1546 | has-property-descriptors "^1.0.0"
1547 | object-keys "^1.1.1"
1548 |
1549 | define-property@^0.2.5:
1550 | version "0.2.5"
1551 | resolved "https://registry.yarnpkg.com/define-property/-/define-property-0.2.5.tgz#c35b1ef918ec3c990f9a5bc57be04aacec5c8116"
1552 | integrity sha512-Rr7ADjQZenceVOAKop6ALkkRAmH1A4Gx9hV/7ZujPUN2rkATqFO0JZLZInbAjpZYoJ1gUx8MRMQVkYemcbMSTA==
1553 | dependencies:
1554 | is-descriptor "^0.1.0"
1555 |
1556 | define-property@^1.0.0:
1557 | version "1.0.0"
1558 | resolved "https://registry.yarnpkg.com/define-property/-/define-property-1.0.0.tgz#769ebaaf3f4a63aad3af9e8d304c9bbe79bfb0e6"
1559 | integrity sha512-cZTYKFWspt9jZsMscWo8sc/5lbPC9Q0N5nBLgb+Yd915iL3udB1uFgS3B8YCx66UVHq018DAVFoee7x+gxggeA==
1560 | dependencies:
1561 | is-descriptor "^1.0.0"
1562 |
1563 | define-property@^2.0.2:
1564 | version "2.0.2"
1565 | resolved "https://registry.yarnpkg.com/define-property/-/define-property-2.0.2.tgz#d459689e8d654ba77e02a817f8710d702cb16e9d"
1566 | integrity sha512-jwK2UV4cnPpbcG7+VRARKTZPUWowwXA8bzH5NP6ud0oeAxyYPuGZUAC7hMugpCdz4BeSZl2Dl9k66CHJ/46ZYQ==
1567 | dependencies:
1568 | is-descriptor "^1.0.2"
1569 | isobject "^3.0.1"
1570 |
1571 | diff@3.5.0:
1572 | version "3.5.0"
1573 | resolved "https://registry.yarnpkg.com/diff/-/diff-3.5.0.tgz#800c0dd1e0a8bfbc95835c202ad220fe317e5a12"
1574 | integrity sha512-A46qtFgd+g7pDZinpnwiRJtxbC1hpgf0uzP3iG89scHk0AUC7A1TGxf5OiiOUv/JMZR8GOt8hL900hV0bOy5xA==
1575 |
1576 | eastasianwidth@^0.1.0:
1577 | version "0.1.1"
1578 | resolved "https://registry.yarnpkg.com/eastasianwidth/-/eastasianwidth-0.1.1.tgz#44d656de9da415694467335365fb3147b8572b7c"
1579 | integrity sha512-jqG4b6XUnaQf0SrCeTi4NVLetPQM44xmkyadAXqaqCQsa2zqy9NWMdSOTNC0reqQ0zj+ePFAIh3TYlcXc6MZLQ==
1580 |
1581 | electron-to-chromium@^1.4.251:
1582 | version "1.4.276"
1583 | resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.4.276.tgz#17837b19dafcc43aba885c4689358b298c19b520"
1584 | integrity sha512-EpuHPqu8YhonqLBXHoU6hDJCD98FCe6KDoet3/gY1qsQ6usjJoHqBH2YIVs8FXaAtHwVL8Uqa/fsYao/vq9VWQ==
1585 |
1586 | elegant-spinner@^1.0.1:
1587 | version "1.0.1"
1588 | resolved "https://registry.yarnpkg.com/elegant-spinner/-/elegant-spinner-1.0.1.tgz#db043521c95d7e303fd8f345bedc3349cfb0729e"
1589 | integrity sha512-B+ZM+RXvRqQaAmkMlO/oSe5nMUOaUnyfGYCEHoR8wrXsZR2mA0XVibsxV1bvTwxdRWah1PkQqso2EzhILGHtEQ==
1590 |
1591 | empower@^0.11.0:
1592 | version "0.11.0"
1593 | resolved "https://registry.yarnpkg.com/empower/-/empower-0.11.0.tgz#ae3b693552f02e98667f59a18f3075af664f7141"
1594 | integrity sha512-EYFQ8BRXV/DvHm9gCQrHivosfOgpTTL/hasqxGJP61eFVXkKvRzo4pDW+hA1p4Q3NHeXq8wo16q9HbsG75DFiA==
1595 | dependencies:
1596 | escallmatch "^1.3.1"
1597 | xtend "^4.0.0"
1598 |
1599 | end-of-stream@^1.1.0:
1600 | version "1.4.4"
1601 | resolved "https://registry.yarnpkg.com/end-of-stream/-/end-of-stream-1.4.4.tgz#5ae64a5f45057baf3626ec14da0ca5e4b2431eb0"
1602 | integrity sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q==
1603 | dependencies:
1604 | once "^1.4.0"
1605 |
1606 | error-ex@^1.3.1:
1607 | version "1.3.2"
1608 | resolved "https://registry.yarnpkg.com/error-ex/-/error-ex-1.3.2.tgz#b4ac40648107fdcdcfae242f428bea8a14d4f1bf"
1609 | integrity sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==
1610 | dependencies:
1611 | is-arrayish "^0.2.1"
1612 |
1613 | escalade@^3.1.1:
1614 | version "3.1.1"
1615 | resolved "https://registry.yarnpkg.com/escalade/-/escalade-3.1.1.tgz#d8cfdc7000965c5a0174b4a82eaa5c0552742e40"
1616 | integrity sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==
1617 |
1618 | escallmatch@^1.3.1:
1619 | version "1.5.0"
1620 | resolved "https://registry.yarnpkg.com/escallmatch/-/escallmatch-1.5.0.tgz#50099d86e8091b092df8ddfbc3f9a6fb05a024d0"
1621 | integrity sha512-iMF4I4I2E16DPusKDgTtQeIBNX0oOS53Ih6sr/2fh+1SDRsXvG8Y3ZOXGWlDkNNo066XBIkfaDRLfZpqcD+vGA==
1622 | dependencies:
1623 | call-matcher "^1.0.0"
1624 | esprima "^2.0.0"
1625 |
1626 | escape-string-regexp@1.0.5, escape-string-regexp@^1.0.2, escape-string-regexp@^1.0.5:
1627 | version "1.0.5"
1628 | resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4"
1629 | integrity sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==
1630 |
1631 | escodegen@^1.6.1:
1632 | version "1.14.3"
1633 | resolved "https://registry.yarnpkg.com/escodegen/-/escodegen-1.14.3.tgz#4e7b81fba61581dc97582ed78cab7f0e8d63f503"
1634 | integrity sha512-qFcX0XJkdg+PB3xjZZG/wKSuT1PnQWx57+TVSjIMmILd2yC/6ByYElPwJnslDsuWuSAp4AwJGumarAAmJch5Kw==
1635 | dependencies:
1636 | esprima "^4.0.1"
1637 | estraverse "^4.2.0"
1638 | esutils "^2.0.2"
1639 | optionator "^0.8.1"
1640 | optionalDependencies:
1641 | source-map "~0.6.1"
1642 |
1643 | espree@^3.1.5:
1644 | version "3.5.4"
1645 | resolved "https://registry.yarnpkg.com/espree/-/espree-3.5.4.tgz#b0f447187c8a8bed944b815a660bddf5deb5d1a7"
1646 | integrity sha512-yAcIQxtmMiB/jL32dzEp2enBeidsB7xWPLNiw3IIkpVds1P+h7qF9YwJq1yUNzp2OKXgAprs4F61ih66UsoD1A==
1647 | dependencies:
1648 | acorn "^5.5.0"
1649 | acorn-jsx "^3.0.0"
1650 |
1651 | esprima-next@^5.8.4:
1652 | version "5.8.4"
1653 | resolved "https://registry.yarnpkg.com/esprima-next/-/esprima-next-5.8.4.tgz#9f82c8093a33da7207a4e8621e997c66878c145a"
1654 | integrity sha512-8nYVZ4ioIH4Msjb/XmhnBdz5WRRBaYqevKa1cv9nGJdCehMbzZCPNEEnqfLCZVetUVrUPEcb5IYyu1GG4hFqgg==
1655 |
1656 | esprima@^2.0.0, esprima@^2.5.0:
1657 | version "2.7.3"
1658 | resolved "https://registry.yarnpkg.com/esprima/-/esprima-2.7.3.tgz#96e3b70d5779f6ad49cd032673d1c312767ba581"
1659 | integrity sha512-OarPfz0lFCiW4/AV2Oy1Rp9qu0iusTKqykwTspGCZtPxmF81JR4MmIebvF1F9+UOKth2ZubLQ4XGGaU+hSn99A==
1660 |
1661 | esprima@^4.0.0, esprima@^4.0.1:
1662 | version "4.0.1"
1663 | resolved "https://registry.yarnpkg.com/esprima/-/esprima-4.0.1.tgz#13b04cdb3e6c5d19df91ab6987a8695619b0aa71"
1664 | integrity sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==
1665 |
1666 | espurify@^1.3.0, espurify@^1.6.0:
1667 | version "1.8.1"
1668 | resolved "https://registry.yarnpkg.com/espurify/-/espurify-1.8.1.tgz#5746c6c1ab42d302de10bd1d5bf7f0e8c0515056"
1669 | integrity sha512-ZDko6eY/o+D/gHCWyHTU85mKDgYcS4FJj7S+YD6WIInm7GQ6AnOjmcL4+buFV/JOztVLELi/7MmuGU5NHta0Mg==
1670 | dependencies:
1671 | core-js "^2.0.0"
1672 |
1673 | estraverse@^3.1.0:
1674 | version "3.1.0"
1675 | resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-3.1.0.tgz#15e28a446b8b82bc700ccc8b96c78af4da0d6cba"
1676 | integrity sha512-JjhbPaYzDMWsgbYz3d/RvB/4LfCzvDjJ6R0UuKLDAzWeXoeoc7BPqu/LThnJ3fjeZjaJxZbDUI7ld8HUj0oRjw==
1677 |
1678 | estraverse@^4.0.0, estraverse@^4.1.0, estraverse@^4.2.0:
1679 | version "4.3.0"
1680 | resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-4.3.0.tgz#398ad3f3c5a24948be7725e83d11a7de28cdbd1d"
1681 | integrity sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==
1682 |
1683 | esutils@^2.0.2:
1684 | version "2.0.3"
1685 | resolved "https://registry.yarnpkg.com/esutils/-/esutils-2.0.3.tgz#74d2eb4de0b8da1293711910d50775b9b710ef64"
1686 | integrity sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==
1687 |
1688 | execa@^0.9.0:
1689 | version "0.9.0"
1690 | resolved "https://registry.yarnpkg.com/execa/-/execa-0.9.0.tgz#adb7ce62cf985071f60580deb4a88b9e34712d01"
1691 | integrity sha512-BbUMBiX4hqiHZUA5+JujIjNb6TyAlp2D5KLheMjMluwOuzcnylDL4AxZYLLn1n2AGB49eSWwyKvvEQoRpnAtmA==
1692 | dependencies:
1693 | cross-spawn "^5.0.1"
1694 | get-stream "^3.0.0"
1695 | is-stream "^1.1.0"
1696 | npm-run-path "^2.0.0"
1697 | p-finally "^1.0.0"
1698 | signal-exit "^3.0.0"
1699 | strip-eof "^1.0.0"
1700 |
1701 | execa@^1.0.0:
1702 | version "1.0.0"
1703 | resolved "https://registry.yarnpkg.com/execa/-/execa-1.0.0.tgz#c6236a5bb4df6d6f15e88e7f017798216749ddd8"
1704 | integrity sha512-adbxcyWV46qiHyvSp50TKt05tB4tK3HcmF7/nxfAdhnox83seTDbwnaqKO4sXRy7roHAIFqJP/Rw/AuEbX61LA==
1705 | dependencies:
1706 | cross-spawn "^6.0.0"
1707 | get-stream "^4.0.0"
1708 | is-stream "^1.1.0"
1709 | npm-run-path "^2.0.0"
1710 | p-finally "^1.0.0"
1711 | signal-exit "^3.0.0"
1712 | strip-eof "^1.0.0"
1713 |
1714 | expand-brackets@^2.1.4:
1715 | version "2.1.4"
1716 | resolved "https://registry.yarnpkg.com/expand-brackets/-/expand-brackets-2.1.4.tgz#b77735e315ce30f6b6eff0f83b04151a22449622"
1717 | integrity sha512-w/ozOKR9Obk3qoWeY/WDi6MFta9AoMR+zud60mdnbniMcBxRuFJyDt2LdX/14A1UABeqk+Uk+LDfUpvoGKppZA==
1718 | dependencies:
1719 | debug "^2.3.3"
1720 | define-property "^0.2.5"
1721 | extend-shallow "^2.0.1"
1722 | posix-character-classes "^0.1.0"
1723 | regex-not "^1.0.0"
1724 | snapdragon "^0.8.1"
1725 | to-regex "^3.0.1"
1726 |
1727 | extend-shallow@^2.0.1:
1728 | version "2.0.1"
1729 | resolved "https://registry.yarnpkg.com/extend-shallow/-/extend-shallow-2.0.1.tgz#51af7d614ad9a9f610ea1bafbb989d6b1c56890f"
1730 | integrity sha512-zCnTtlxNoAiDc3gqY2aYAWFx7XWWiasuF2K8Me5WbN8otHKTUKBwjPtNpRs/rbUZm7KxWAaNj7P1a/p52GbVug==
1731 | dependencies:
1732 | is-extendable "^0.1.0"
1733 |
1734 | extend-shallow@^3.0.0, extend-shallow@^3.0.2:
1735 | version "3.0.2"
1736 | resolved "https://registry.yarnpkg.com/extend-shallow/-/extend-shallow-3.0.2.tgz#26a71aaf073b39fb2127172746131c2704028db8"
1737 | integrity sha512-BwY5b5Ql4+qZoefgMj2NUmx+tehVTH/Kf4k1ZEtOHNFcm2wSxMRo992l6X3TIgni2eZVTZ85xMOjF31fwZAj6Q==
1738 | dependencies:
1739 | assign-symbols "^1.0.0"
1740 | is-extendable "^1.0.1"
1741 |
1742 | extglob@^2.0.4:
1743 | version "2.0.4"
1744 | resolved "https://registry.yarnpkg.com/extglob/-/extglob-2.0.4.tgz#ad00fe4dc612a9232e8718711dc5cb5ab0285543"
1745 | integrity sha512-Nmb6QXkELsuBr24CJSkilo6UHHgbekK5UiZgfE6UHD3Eb27YC6oD+bhcT+tJ6cl8dmsgdQxnWlcry8ksBIBLpw==
1746 | dependencies:
1747 | array-unique "^0.3.2"
1748 | define-property "^1.0.0"
1749 | expand-brackets "^2.1.4"
1750 | extend-shallow "^2.0.1"
1751 | fragment-cache "^0.2.1"
1752 | regex-not "^1.0.0"
1753 | snapdragon "^0.8.1"
1754 | to-regex "^3.0.1"
1755 |
1756 | fast-levenshtein@~2.0.6:
1757 | version "2.0.6"
1758 | resolved "https://registry.yarnpkg.com/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz#3d8a5c66883a16a30ca8643e851f19baa7797917"
1759 | integrity sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==
1760 |
1761 | figures@^1.7.0:
1762 | version "1.7.0"
1763 | resolved "https://registry.yarnpkg.com/figures/-/figures-1.7.0.tgz#cbe1e3affcf1cd44b80cadfed28dc793a9701d2e"
1764 | integrity sha512-UxKlfCRuCBxSXU4C6t9scbDyWZ4VlaFFdojKtzJuSkuOBQ5CNFum+zZXFwHjo+CxBC1t6zlYPgHIgFjL8ggoEQ==
1765 | dependencies:
1766 | escape-string-regexp "^1.0.5"
1767 | object-assign "^4.1.0"
1768 |
1769 | figures@^2.0.0:
1770 | version "2.0.0"
1771 | resolved "https://registry.yarnpkg.com/figures/-/figures-2.0.0.tgz#3ab1a2d2a62c8bfb431a0c94cb797a2fce27c962"
1772 | integrity sha512-Oa2M9atig69ZkfwiApY8F2Yy+tzMbazyvqv21R0NsSC8floSOC09BbT1ITWAdoMGQvJ/aZnR1KMwdx9tvHnTNA==
1773 | dependencies:
1774 | escape-string-regexp "^1.0.5"
1775 |
1776 | fill-range@^4.0.0:
1777 | version "4.0.0"
1778 | resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-4.0.0.tgz#d544811d428f98eb06a63dc402d2403c328c38f7"
1779 | integrity sha512-VcpLTWqWDiTerugjj8e3+esbg+skS3M9e54UuR3iCeIDMXCLTsAH8hTSzDQU/X6/6t3eYkOKoZSef2PlU6U1XQ==
1780 | dependencies:
1781 | extend-shallow "^2.0.1"
1782 | is-number "^3.0.0"
1783 | repeat-string "^1.6.1"
1784 | to-regex-range "^2.1.0"
1785 |
1786 | fill-range@^7.0.1:
1787 | version "7.0.1"
1788 | resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-7.0.1.tgz#1919a6a7c75fe38b2c7c77e5198535da9acdda40"
1789 | integrity sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==
1790 | dependencies:
1791 | to-regex-range "^5.0.1"
1792 |
1793 | find-cache-dir@^2.0.0:
1794 | version "2.1.0"
1795 | resolved "https://registry.yarnpkg.com/find-cache-dir/-/find-cache-dir-2.1.0.tgz#8d0f94cd13fe43c6c7c261a0d86115ca918c05f7"
1796 | integrity sha512-Tq6PixE0w/VMFfCgbONnkiQIVol/JJL7nRMi20fqzA4NRs9AfeqMGeRdPi3wIhYkxjeBaWh2rxwapn5Tu3IqOQ==
1797 | dependencies:
1798 | commondir "^1.0.1"
1799 | make-dir "^2.0.0"
1800 | pkg-dir "^3.0.0"
1801 |
1802 | find-parent-dir@^0.3.0:
1803 | version "0.3.1"
1804 | resolved "https://registry.yarnpkg.com/find-parent-dir/-/find-parent-dir-0.3.1.tgz#c5c385b96858c3351f95d446cab866cbf9f11125"
1805 | integrity sha512-o4UcykWV/XN9wm+jMEtWLPlV8RXCZnMhQI6F6OdHeSez7iiJWePw8ijOlskJZMsaQoGR/b7dH6lO02HhaTN7+A==
1806 |
1807 | find-up@^3.0.0:
1808 | version "3.0.0"
1809 | resolved "https://registry.yarnpkg.com/find-up/-/find-up-3.0.0.tgz#49169f1d7993430646da61ecc5ae355c21c97b73"
1810 | integrity sha512-1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg==
1811 | dependencies:
1812 | locate-path "^3.0.0"
1813 |
1814 | for-in@^1.0.2:
1815 | version "1.0.2"
1816 | resolved "https://registry.yarnpkg.com/for-in/-/for-in-1.0.2.tgz#81068d295a8142ec0ac726c6e2200c30fb6d5e80"
1817 | integrity sha512-7EwmXrOjyL+ChxMhmG5lnW9MPt1aIeZEwKhQzoBUdTV0N3zuwWDZYVJatDvZ2OyzPUvdIAZDsCetk3coyMfcnQ==
1818 |
1819 | fragment-cache@^0.2.1:
1820 | version "0.2.1"
1821 | resolved "https://registry.yarnpkg.com/fragment-cache/-/fragment-cache-0.2.1.tgz#4290fad27f13e89be7f33799c6bc5a0abfff0d19"
1822 | integrity sha512-GMBAbW9antB8iZRHLoGw0b3HANt57diZYFO/HL1JGIC1MjKrdmhxvrJbupnVvpys0zsz7yBApXdQyfepKly2kA==
1823 | dependencies:
1824 | map-cache "^0.2.2"
1825 |
1826 | fs-readdir-recursive@^1.1.0:
1827 | version "1.1.0"
1828 | resolved "https://registry.yarnpkg.com/fs-readdir-recursive/-/fs-readdir-recursive-1.1.0.tgz#e32fc030a2ccee44a6b5371308da54be0b397d27"
1829 | integrity sha512-GNanXlVr2pf02+sPN40XN8HG+ePaNcvM0q5mZBd668Obwb0yD5GiUbZOFgwn8kGMY6I3mdyDJzieUy3PTYyTRA==
1830 |
1831 | fs.realpath@^1.0.0:
1832 | version "1.0.0"
1833 | resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f"
1834 | integrity sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==
1835 |
1836 | fsevents@~2.3.2:
1837 | version "2.3.2"
1838 | resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-2.3.2.tgz#8a526f78b8fdf4623b709e0b975c52c24c02fd1a"
1839 | integrity sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA==
1840 |
1841 | function-bind@^1.1.1:
1842 | version "1.1.1"
1843 | resolved "https://registry.yarnpkg.com/function-bind/-/function-bind-1.1.1.tgz#a56899d3ea3c9bab874bb9773b7c5ede92f4895d"
1844 | integrity sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==
1845 |
1846 | functions-have-names@^1.2.2:
1847 | version "1.2.3"
1848 | resolved "https://registry.yarnpkg.com/functions-have-names/-/functions-have-names-1.2.3.tgz#0404fe4ee2ba2f607f0e0ec3c80bae994133b834"
1849 | integrity sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==
1850 |
1851 | gensync@^1.0.0-beta.2:
1852 | version "1.0.0-beta.2"
1853 | resolved "https://registry.yarnpkg.com/gensync/-/gensync-1.0.0-beta.2.tgz#32a6ee76c3d7f52d46b2b1ae5d93fea8580a25e0"
1854 | integrity sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==
1855 |
1856 | get-intrinsic@^1.0.2, get-intrinsic@^1.1.1:
1857 | version "1.1.3"
1858 | resolved "https://registry.yarnpkg.com/get-intrinsic/-/get-intrinsic-1.1.3.tgz#063c84329ad93e83893c7f4f243ef63ffa351385"
1859 | integrity sha512-QJVz1Tj7MS099PevUG5jvnt9tSkXN8K14dxQlikJuPt4uD9hHAHjLyLBiLR5zELelBdD9QNRAXZzsJx0WaDL9A==
1860 | dependencies:
1861 | function-bind "^1.1.1"
1862 | has "^1.0.3"
1863 | has-symbols "^1.0.3"
1864 |
1865 | get-own-enumerable-property-symbols@^3.0.0:
1866 | version "3.0.2"
1867 | resolved "https://registry.yarnpkg.com/get-own-enumerable-property-symbols/-/get-own-enumerable-property-symbols-3.0.2.tgz#b5fde77f22cbe35f390b4e089922c50bce6ef664"
1868 | integrity sha512-I0UBV/XOz1XkIJHEUDMZAbzCThU/H8DxmSfmdGcKPnVhu2VfFqr34jr9777IyaTYvxjedWhqVIilEDsCdP5G6g==
1869 |
1870 | get-stdin@^6.0.0:
1871 | version "6.0.0"
1872 | resolved "https://registry.yarnpkg.com/get-stdin/-/get-stdin-6.0.0.tgz#9e09bf712b360ab9225e812048f71fde9c89657b"
1873 | integrity sha512-jp4tHawyV7+fkkSKyvjuLZswblUtz+SQKzSWnBbii16BuZksJlU1wuBYXY75r+duh/llF1ur6oNwi+2ZzjKZ7g==
1874 |
1875 | get-stream@^3.0.0:
1876 | version "3.0.0"
1877 | resolved "https://registry.yarnpkg.com/get-stream/-/get-stream-3.0.0.tgz#8e943d1358dc37555054ecbe2edb05aa174ede14"
1878 | integrity sha512-GlhdIUuVakc8SJ6kK0zAFbiGzRFzNnY4jUuEbV9UROo4Y+0Ny4fjvcZFVTeDA4odpFyOQzaw6hXukJSq/f28sQ==
1879 |
1880 | get-stream@^4.0.0:
1881 | version "4.1.0"
1882 | resolved "https://registry.yarnpkg.com/get-stream/-/get-stream-4.1.0.tgz#c1b255575f3dc21d59bfc79cd3d2b46b1c3a54b5"
1883 | integrity sha512-GMat4EJ5161kIy2HevLlr4luNjBgvmj413KaQA7jt4V8B4RDsfpHk7WQ9GVqfYyyx8OS/L66Kox+rJRNklLK7w==
1884 | dependencies:
1885 | pump "^3.0.0"
1886 |
1887 | get-value@^2.0.3, get-value@^2.0.6:
1888 | version "2.0.6"
1889 | resolved "https://registry.yarnpkg.com/get-value/-/get-value-2.0.6.tgz#dc15ca1c672387ca76bd37ac0a395ba2042a2c28"
1890 | integrity sha512-Ln0UQDlxH1BapMu3GPtf7CuYNwRZf2gwCuPqbyG6pB8WfmFpzqcy4xtAaAMUhnNqjMKTiCPZG2oMT3YSx8U2NA==
1891 |
1892 | glob-parent@~5.1.2:
1893 | version "5.1.2"
1894 | resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-5.1.2.tgz#869832c58034fe68a4093c17dc15e8340d8401c4"
1895 | integrity sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==
1896 | dependencies:
1897 | is-glob "^4.0.1"
1898 |
1899 | glob@7.1.2:
1900 | version "7.1.2"
1901 | resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.2.tgz#c19c9df9a028702d678612384a6552404c636d15"
1902 | integrity sha512-MJTUg1kjuLeQCJ+ccE4Vpa6kKVXkPYJ2mOCQyUuKLcLQsdrMCpBPUi8qVE6+YuaJkozeA9NusTAw3hLr8Xe5EQ==
1903 | dependencies:
1904 | fs.realpath "^1.0.0"
1905 | inflight "^1.0.4"
1906 | inherits "2"
1907 | minimatch "^3.0.4"
1908 | once "^1.3.0"
1909 | path-is-absolute "^1.0.0"
1910 |
1911 | glob@^7.2.0:
1912 | version "7.2.3"
1913 | resolved "https://registry.yarnpkg.com/glob/-/glob-7.2.3.tgz#b8df0fb802bbfa8e89bd1d938b4e16578ed44f2b"
1914 | integrity sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==
1915 | dependencies:
1916 | fs.realpath "^1.0.0"
1917 | inflight "^1.0.4"
1918 | inherits "2"
1919 | minimatch "^3.1.1"
1920 | once "^1.3.0"
1921 | path-is-absolute "^1.0.0"
1922 |
1923 | globals@^11.1.0:
1924 | version "11.12.0"
1925 | resolved "https://registry.yarnpkg.com/globals/-/globals-11.12.0.tgz#ab8795338868a0babd8525758018c2a7eb95c42e"
1926 | integrity sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==
1927 |
1928 | googlediff@^0.1.0:
1929 | version "0.1.0"
1930 | resolved "https://registry.yarnpkg.com/googlediff/-/googlediff-0.1.0.tgz#99acf05cc06223eb66c29008d81f9b2d18c2453d"
1931 | integrity sha512-71ZD3jCKckWRnh1DTPJABge1uZwwqMTUD1qyiao2VkAKvsO1keNf7/PGKXaDNGrq7EHOm1Z8TVT5jvG3SQuZAg==
1932 |
1933 | growl@1.10.5:
1934 | version "1.10.5"
1935 | resolved "https://registry.yarnpkg.com/growl/-/growl-1.10.5.tgz#f2735dc2283674fa67478b10181059355c369e5e"
1936 | integrity sha512-qBr4OuELkhPenW6goKVXiv47US3clb3/IbuWF9KNKEijAy9oeHxU9IgzjvJhHkUzhaj7rOUD7+YGWqUjLp5oSA==
1937 |
1938 | has-ansi@^2.0.0:
1939 | version "2.0.0"
1940 | resolved "https://registry.yarnpkg.com/has-ansi/-/has-ansi-2.0.0.tgz#34f5049ce1ecdf2b0649af3ef24e45ed35416d91"
1941 | integrity sha512-C8vBJ8DwUCx19vhm7urhTuUsr4/IyP6l4VzNQDv+ryHQObW3TTTp9yB68WpYgRe2bbaGuZ/se74IqFeVnMnLZg==
1942 | dependencies:
1943 | ansi-regex "^2.0.0"
1944 |
1945 | has-flag@^3.0.0:
1946 | version "3.0.0"
1947 | resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-3.0.0.tgz#b5d454dc2199ae225699f3467e5a07f3b955bafd"
1948 | integrity sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==
1949 |
1950 | has-property-descriptors@^1.0.0:
1951 | version "1.0.0"
1952 | resolved "https://registry.yarnpkg.com/has-property-descriptors/-/has-property-descriptors-1.0.0.tgz#610708600606d36961ed04c196193b6a607fa861"
1953 | integrity sha512-62DVLZGoiEBDHQyqG4w9xCuZ7eJEwNmJRWw2VY84Oedb7WFcA27fiEVe8oUQx9hAUJ4ekurquucTGwsyO1XGdQ==
1954 | dependencies:
1955 | get-intrinsic "^1.1.1"
1956 |
1957 | has-symbols@^1.0.2, has-symbols@^1.0.3:
1958 | version "1.0.3"
1959 | resolved "https://registry.yarnpkg.com/has-symbols/-/has-symbols-1.0.3.tgz#bb7b2c4349251dce87b125f7bdf874aa7c8b39f8"
1960 | integrity sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==
1961 |
1962 | has-tostringtag@^1.0.0:
1963 | version "1.0.0"
1964 | resolved "https://registry.yarnpkg.com/has-tostringtag/-/has-tostringtag-1.0.0.tgz#7e133818a7d394734f941e73c3d3f9291e658b25"
1965 | integrity sha512-kFjcSNhnlGV1kyoGk7OXKSawH5JOb/LzUc5w9B02hOTO0dfFRjbHQKvg1d6cf3HbeUmtU9VbbV3qzZ2Teh97WQ==
1966 | dependencies:
1967 | has-symbols "^1.0.2"
1968 |
1969 | has-value@^0.3.1:
1970 | version "0.3.1"
1971 | resolved "https://registry.yarnpkg.com/has-value/-/has-value-0.3.1.tgz#7b1f58bada62ca827ec0a2078025654845995e1f"
1972 | integrity sha512-gpG936j8/MzaeID5Yif+577c17TxaDmhuyVgSwtnL/q8UUTySg8Mecb+8Cf1otgLoD7DDH75axp86ER7LFsf3Q==
1973 | dependencies:
1974 | get-value "^2.0.3"
1975 | has-values "^0.1.4"
1976 | isobject "^2.0.0"
1977 |
1978 | has-value@^1.0.0:
1979 | version "1.0.0"
1980 | resolved "https://registry.yarnpkg.com/has-value/-/has-value-1.0.0.tgz#18b281da585b1c5c51def24c930ed29a0be6b177"
1981 | integrity sha512-IBXk4GTsLYdQ7Rvt+GRBrFSVEkmuOUy4re0Xjd9kJSUQpnTrWR4/y9RpfexN9vkAPMFuQoeWKwqzPozRTlasGw==
1982 | dependencies:
1983 | get-value "^2.0.6"
1984 | has-values "^1.0.0"
1985 | isobject "^3.0.0"
1986 |
1987 | has-values@^0.1.4:
1988 | version "0.1.4"
1989 | resolved "https://registry.yarnpkg.com/has-values/-/has-values-0.1.4.tgz#6d61de95d91dfca9b9a02089ad384bff8f62b771"
1990 | integrity sha512-J8S0cEdWuQbqD9//tlZxiMuMNmxB8PlEwvYwuxsTmR1G5RXUePEX/SJn7aD0GMLieuZYSwNH0cQuJGwnYunXRQ==
1991 |
1992 | has-values@^1.0.0:
1993 | version "1.0.0"
1994 | resolved "https://registry.yarnpkg.com/has-values/-/has-values-1.0.0.tgz#95b0b63fec2146619a6fe57fe75628d5a39efe4f"
1995 | integrity sha512-ODYZC64uqzmtfGMEAX/FvZiRyWLpAC3vYnNunURUnkGVTS+mI0smVsWaPydRBsE3g+ok7h960jChO8mFcWlHaQ==
1996 | dependencies:
1997 | is-number "^3.0.0"
1998 | kind-of "^4.0.0"
1999 |
2000 | has@^1.0.3:
2001 | version "1.0.3"
2002 | resolved "https://registry.yarnpkg.com/has/-/has-1.0.3.tgz#722d7cbfc1f6aa8241f16dd814e011e1f41e8796"
2003 | integrity sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==
2004 | dependencies:
2005 | function-bind "^1.1.1"
2006 |
2007 | he@1.1.1:
2008 | version "1.1.1"
2009 | resolved "https://registry.yarnpkg.com/he/-/he-1.1.1.tgz#93410fd21b009735151f8868c2f271f3427e23fd"
2010 | integrity sha512-z/GDPjlRMNOa2XJiB4em8wJpuuBfrFOlYKTZxtpkdr1uPdibHI8rYA3MY0KDObpVyaes0e/aunid/t88ZI2EKA==
2011 |
2012 | hosted-git-info@^2.1.4:
2013 | version "2.8.9"
2014 | resolved "https://registry.yarnpkg.com/hosted-git-info/-/hosted-git-info-2.8.9.tgz#dffc0bf9a21c02209090f2aa69429e1414daf3f9"
2015 | integrity sha512-mxIDAb9Lsm6DoOJ7xH+5+X4y1LU/4Hi50L9C5sIswK3JzULS4bwk1FvjdBgvYR4bzT4tuUQiC15FE2f5HbLvYw==
2016 |
2017 | husky@^1.1.2:
2018 | version "1.3.1"
2019 | resolved "https://registry.yarnpkg.com/husky/-/husky-1.3.1.tgz#26823e399300388ca2afff11cfa8a86b0033fae0"
2020 | integrity sha512-86U6sVVVf4b5NYSZ0yvv88dRgBSSXXmHaiq5pP4KDj5JVzdwKgBjEtUPOm8hcoytezFwbU+7gotXNhpHdystlg==
2021 | dependencies:
2022 | cosmiconfig "^5.0.7"
2023 | execa "^1.0.0"
2024 | find-up "^3.0.0"
2025 | get-stdin "^6.0.0"
2026 | is-ci "^2.0.0"
2027 | pkg-dir "^3.0.0"
2028 | please-upgrade-node "^3.1.1"
2029 | read-pkg "^4.0.1"
2030 | run-node "^1.0.0"
2031 | slash "^2.0.0"
2032 |
2033 | import-fresh@^2.0.0:
2034 | version "2.0.0"
2035 | resolved "https://registry.yarnpkg.com/import-fresh/-/import-fresh-2.0.0.tgz#d81355c15612d386c61f9ddd3922d4304822a546"
2036 | integrity sha512-eZ5H8rcgYazHbKC3PG4ClHNykCSxtAhxSSEM+2mb+7evD2CKF5V7c0dNum7AdpDh0ZdICwZY9sRSn8f+KH96sg==
2037 | dependencies:
2038 | caller-path "^2.0.0"
2039 | resolve-from "^3.0.0"
2040 |
2041 | indent-string@^3.0.0:
2042 | version "3.2.0"
2043 | resolved "https://registry.yarnpkg.com/indent-string/-/indent-string-3.2.0.tgz#4a5fd6d27cc332f37e5419a504dbb837105c9289"
2044 | integrity sha512-BYqTHXTGUIvg7t1r4sJNKcbDZkL92nkXA8YtRpbjFHRHGDL/NtUeiBJMeE60kIFN/Mg8ESaWQvftaYMGJzQZCQ==
2045 |
2046 | inflight@^1.0.4:
2047 | version "1.0.6"
2048 | resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9"
2049 | integrity sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==
2050 | dependencies:
2051 | once "^1.3.0"
2052 | wrappy "1"
2053 |
2054 | inherits@2, inherits@^2.0.3, inherits@~2.0.3:
2055 | version "2.0.4"
2056 | resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.4.tgz#0fa2c64f932917c3433a0ded55363aae37416b7c"
2057 | integrity sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==
2058 |
2059 | is-accessor-descriptor@^0.1.6:
2060 | version "0.1.6"
2061 | resolved "https://registry.yarnpkg.com/is-accessor-descriptor/-/is-accessor-descriptor-0.1.6.tgz#a9e12cb3ae8d876727eeef3843f8a0897b5c98d6"
2062 | integrity sha512-e1BM1qnDbMRG3ll2U9dSK0UMHuWOs3pY3AtcFsmvwPtKL3MML/Q86i+GilLfvqEs4GW+ExB91tQ3Ig9noDIZ+A==
2063 | dependencies:
2064 | kind-of "^3.0.2"
2065 |
2066 | is-accessor-descriptor@^1.0.0:
2067 | version "1.0.0"
2068 | resolved "https://registry.yarnpkg.com/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz#169c2f6d3df1f992618072365c9b0ea1f6878656"
2069 | integrity sha512-m5hnHTkcVsPfqx3AKlyttIPb7J+XykHvJP2B9bZDjlhLIoEq4XoK64Vg7boZlVWYK6LUY94dYPEE7Lh0ZkZKcQ==
2070 | dependencies:
2071 | kind-of "^6.0.0"
2072 |
2073 | is-arguments@^1.0.4:
2074 | version "1.1.1"
2075 | resolved "https://registry.yarnpkg.com/is-arguments/-/is-arguments-1.1.1.tgz#15b3f88fda01f2a97fec84ca761a560f123efa9b"
2076 | integrity sha512-8Q7EARjzEnKpt/PCD7e1cgUS0a6X8u5tdSiMqXhojOdoV9TsMsiO+9VLC5vAmO8N7/GmXn7yjR8qnA6bVAEzfA==
2077 | dependencies:
2078 | call-bind "^1.0.2"
2079 | has-tostringtag "^1.0.0"
2080 |
2081 | is-arrayish@^0.2.1:
2082 | version "0.2.1"
2083 | resolved "https://registry.yarnpkg.com/is-arrayish/-/is-arrayish-0.2.1.tgz#77c99840527aa8ecb1a8ba697b80645a7a926a9d"
2084 | integrity sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==
2085 |
2086 | is-binary-path@~2.1.0:
2087 | version "2.1.0"
2088 | resolved "https://registry.yarnpkg.com/is-binary-path/-/is-binary-path-2.1.0.tgz#ea1f7f3b80f064236e83470f86c09c254fb45b09"
2089 | integrity sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==
2090 | dependencies:
2091 | binary-extensions "^2.0.0"
2092 |
2093 | is-buffer@^1.1.5:
2094 | version "1.1.6"
2095 | resolved "https://registry.yarnpkg.com/is-buffer/-/is-buffer-1.1.6.tgz#efaa2ea9daa0d7ab2ea13a97b2b8ad51fefbe8be"
2096 | integrity sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w==
2097 |
2098 | is-ci@^2.0.0:
2099 | version "2.0.0"
2100 | resolved "https://registry.yarnpkg.com/is-ci/-/is-ci-2.0.0.tgz#6bc6334181810e04b5c22b3d589fdca55026404c"
2101 | integrity sha512-YfJT7rkpQB0updsdHLGWrvhBJfcfzNNawYDNIyQXJz0IViGf75O8EBPKSdvw2rF+LGCsX4FZ8tcr3b19LcZq4w==
2102 | dependencies:
2103 | ci-info "^2.0.0"
2104 |
2105 | is-core-module@^2.9.0:
2106 | version "2.10.0"
2107 | resolved "https://registry.yarnpkg.com/is-core-module/-/is-core-module-2.10.0.tgz#9012ede0a91c69587e647514e1d5277019e728ed"
2108 | integrity sha512-Erxj2n/LDAZ7H8WNJXd9tw38GYM3dv8rk8Zcs+jJuxYTW7sozH+SS8NtrSjVL1/vpLvWi1hxy96IzjJ3EHTJJg==
2109 | dependencies:
2110 | has "^1.0.3"
2111 |
2112 | is-data-descriptor@^0.1.4:
2113 | version "0.1.4"
2114 | resolved "https://registry.yarnpkg.com/is-data-descriptor/-/is-data-descriptor-0.1.4.tgz#0b5ee648388e2c860282e793f1856fec3f301b56"
2115 | integrity sha512-+w9D5ulSoBNlmw9OHn3U2v51SyoCd0he+bB3xMl62oijhrspxowjU+AIcDY0N3iEJbUEkB15IlMASQsxYigvXg==
2116 | dependencies:
2117 | kind-of "^3.0.2"
2118 |
2119 | is-data-descriptor@^1.0.0:
2120 | version "1.0.0"
2121 | resolved "https://registry.yarnpkg.com/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz#d84876321d0e7add03990406abbbbd36ba9268c7"
2122 | integrity sha512-jbRXy1FmtAoCjQkVmIVYwuuqDFUbaOeDjmed1tOGPrsMhtJA4rD9tkgA0F1qJ3gRFRXcHYVkdeaP50Q5rE/jLQ==
2123 | dependencies:
2124 | kind-of "^6.0.0"
2125 |
2126 | is-date-object@^1.0.1:
2127 | version "1.0.5"
2128 | resolved "https://registry.yarnpkg.com/is-date-object/-/is-date-object-1.0.5.tgz#0841d5536e724c25597bf6ea62e1bd38298df31f"
2129 | integrity sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ==
2130 | dependencies:
2131 | has-tostringtag "^1.0.0"
2132 |
2133 | is-descriptor@^0.1.0:
2134 | version "0.1.6"
2135 | resolved "https://registry.yarnpkg.com/is-descriptor/-/is-descriptor-0.1.6.tgz#366d8240dde487ca51823b1ab9f07a10a78251ca"
2136 | integrity sha512-avDYr0SB3DwO9zsMov0gKCESFYqCnE4hq/4z3TdUlukEy5t9C0YRq7HLrsN52NAcqXKaepeCD0n+B0arnVG3Hg==
2137 | dependencies:
2138 | is-accessor-descriptor "^0.1.6"
2139 | is-data-descriptor "^0.1.4"
2140 | kind-of "^5.0.0"
2141 |
2142 | is-descriptor@^1.0.0, is-descriptor@^1.0.2:
2143 | version "1.0.2"
2144 | resolved "https://registry.yarnpkg.com/is-descriptor/-/is-descriptor-1.0.2.tgz#3b159746a66604b04f8c81524ba365c5f14d86ec"
2145 | integrity sha512-2eis5WqQGV7peooDyLmNEPUrps9+SXX5c9pL3xEB+4e9HnGuDa7mB7kHxHw4CbqS9k1T2hOH3miL8n8WtiYVtg==
2146 | dependencies:
2147 | is-accessor-descriptor "^1.0.0"
2148 | is-data-descriptor "^1.0.0"
2149 | kind-of "^6.0.2"
2150 |
2151 | is-directory@^0.3.1:
2152 | version "0.3.1"
2153 | resolved "https://registry.yarnpkg.com/is-directory/-/is-directory-0.3.1.tgz#61339b6f2475fc772fd9c9d83f5c8575dc154ae1"
2154 | integrity sha512-yVChGzahRFvbkscn2MlwGismPO12i9+znNruC5gVEntG3qu0xQMzsGg/JFbrsqDOHtHFPci+V5aP5T9I+yeKqw==
2155 |
2156 | is-extendable@^0.1.0, is-extendable@^0.1.1:
2157 | version "0.1.1"
2158 | resolved "https://registry.yarnpkg.com/is-extendable/-/is-extendable-0.1.1.tgz#62b110e289a471418e3ec36a617d472e301dfc89"
2159 | integrity sha512-5BMULNob1vgFX6EjQw5izWDxrecWK9AM72rugNr0TFldMOi0fj6Jk+zeKIt0xGj4cEfQIJth4w3OKWOJ4f+AFw==
2160 |
2161 | is-extendable@^1.0.1:
2162 | version "1.0.1"
2163 | resolved "https://registry.yarnpkg.com/is-extendable/-/is-extendable-1.0.1.tgz#a7470f9e426733d81bd81e1155264e3a3507cab4"
2164 | integrity sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==
2165 | dependencies:
2166 | is-plain-object "^2.0.4"
2167 |
2168 | is-extglob@^2.1.1:
2169 | version "2.1.1"
2170 | resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-2.1.1.tgz#a88c02535791f02ed37c76a1b9ea9773c833f8c2"
2171 | integrity sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==
2172 |
2173 | is-fullwidth-code-point@^1.0.0:
2174 | version "1.0.0"
2175 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz#ef9e31386f031a7f0d643af82fde50c457ef00cb"
2176 | integrity sha512-1pqUqRjkhPJ9miNq9SwMfdvi6lBJcd6eFxvfaivQhaH3SgisfiuudvFntdKOmxuee/77l+FPjKrQjWvmPjWrRw==
2177 | dependencies:
2178 | number-is-nan "^1.0.0"
2179 |
2180 | is-fullwidth-code-point@^2.0.0:
2181 | version "2.0.0"
2182 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz#a3b30a5c4f199183167aaab93beefae3ddfb654f"
2183 | integrity sha512-VHskAKYM8RfSFXwee5t5cbN5PZeq1Wrh6qd5bkyiXIf6UQcN6w/A0eXM9r6t8d+GYOh+o6ZhiEnb88LN/Y8m2w==
2184 |
2185 | is-glob@^4.0.0, is-glob@^4.0.1, is-glob@~4.0.1:
2186 | version "4.0.3"
2187 | resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-4.0.3.tgz#64f61e42cbbb2eec2071a9dac0b28ba1e65d5084"
2188 | integrity sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==
2189 | dependencies:
2190 | is-extglob "^2.1.1"
2191 |
2192 | is-number@^3.0.0:
2193 | version "3.0.0"
2194 | resolved "https://registry.yarnpkg.com/is-number/-/is-number-3.0.0.tgz#24fd6201a4782cf50561c810276afc7d12d71195"
2195 | integrity sha512-4cboCqIpliH+mAvFNegjZQ4kgKc3ZUhQVr3HvWbSh5q3WH2v82ct+T2Y1hdU5Gdtorx/cLifQjqCbL7bpznLTg==
2196 | dependencies:
2197 | kind-of "^3.0.2"
2198 |
2199 | is-number@^7.0.0:
2200 | version "7.0.0"
2201 | resolved "https://registry.yarnpkg.com/is-number/-/is-number-7.0.0.tgz#7535345b896734d5f80c4d06c50955527a14f12b"
2202 | integrity sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==
2203 |
2204 | is-obj@^1.0.1:
2205 | version "1.0.1"
2206 | resolved "https://registry.yarnpkg.com/is-obj/-/is-obj-1.0.1.tgz#3e4729ac1f5fde025cd7d83a896dab9f4f67db0f"
2207 | integrity sha512-l4RyHgRqGN4Y3+9JHVrNqO+tN0rV5My76uW5/nuO4K1b6vw5G8d/cmFjP9tRfEsdhZNt0IFdZuK/c2Vr4Nb+Qg==
2208 |
2209 | is-observable@^1.1.0:
2210 | version "1.1.0"
2211 | resolved "https://registry.yarnpkg.com/is-observable/-/is-observable-1.1.0.tgz#b3e986c8f44de950867cab5403f5a3465005975e"
2212 | integrity sha512-NqCa4Sa2d+u7BWc6CukaObG3Fh+CU9bvixbpcXYhy2VvYS7vVGIdAgnIS5Ks3A/cqk4rebLJ9s8zBstT2aKnIA==
2213 | dependencies:
2214 | symbol-observable "^1.1.0"
2215 |
2216 | is-plain-object@^2.0.3, is-plain-object@^2.0.4:
2217 | version "2.0.4"
2218 | resolved "https://registry.yarnpkg.com/is-plain-object/-/is-plain-object-2.0.4.tgz#2c163b3fafb1b606d9d17928f05c2a1c38e07677"
2219 | integrity sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==
2220 | dependencies:
2221 | isobject "^3.0.1"
2222 |
2223 | is-promise@^2.1.0:
2224 | version "2.2.2"
2225 | resolved "https://registry.yarnpkg.com/is-promise/-/is-promise-2.2.2.tgz#39ab959ccbf9a774cf079f7b40c7a26f763135f1"
2226 | integrity sha512-+lP4/6lKUBfQjZ2pdxThZvLUAafmZb8OAxFb8XXtiQmS35INgr85hdOGoEs124ez1FCnZJt6jau/T+alh58QFQ==
2227 |
2228 | is-regex@^1.0.4:
2229 | version "1.1.4"
2230 | resolved "https://registry.yarnpkg.com/is-regex/-/is-regex-1.1.4.tgz#eef5663cd59fa4c0ae339505323df6854bb15958"
2231 | integrity sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg==
2232 | dependencies:
2233 | call-bind "^1.0.2"
2234 | has-tostringtag "^1.0.0"
2235 |
2236 | is-regexp@^1.0.0:
2237 | version "1.0.0"
2238 | resolved "https://registry.yarnpkg.com/is-regexp/-/is-regexp-1.0.0.tgz#fd2d883545c46bac5a633e7b9a09e87fa2cb5069"
2239 | integrity sha512-7zjFAPO4/gwyQAAgRRmqeEeyIICSdmCqa3tsVHMdBzaXXRiqopZL4Cyghg/XulGWrtABTpbnYYzzIRffLkP4oA==
2240 |
2241 | is-stream@^1.1.0:
2242 | version "1.1.0"
2243 | resolved "https://registry.yarnpkg.com/is-stream/-/is-stream-1.1.0.tgz#12d4a3dd4e68e0b79ceb8dbc84173ae80d91ca44"
2244 | integrity sha512-uQPm8kcs47jx38atAcWTVxyltQYoPT68y9aWYdV6yWXSyW8mzSat0TL6CiWdZeCdF3KrAvpVtnHbTv4RN+rqdQ==
2245 |
2246 | is-windows@^1.0.2:
2247 | version "1.0.2"
2248 | resolved "https://registry.yarnpkg.com/is-windows/-/is-windows-1.0.2.tgz#d1850eb9791ecd18e6182ce12a30f396634bb19d"
2249 | integrity sha512-eXK1UInq2bPmjyX6e3VHIzMLobc4J94i4AWn+Hpq3OU5KkrRC96OAcR3PRJ/pGu6m8TRnBHP9dkXQVsT/COVIA==
2250 |
2251 | isarray@1.0.0, isarray@~1.0.0:
2252 | version "1.0.0"
2253 | resolved "https://registry.yarnpkg.com/isarray/-/isarray-1.0.0.tgz#bb935d48582cba168c06834957a54a3e07124f11"
2254 | integrity sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ==
2255 |
2256 | isexe@^2.0.0:
2257 | version "2.0.0"
2258 | resolved "https://registry.yarnpkg.com/isexe/-/isexe-2.0.0.tgz#e8fbf374dc556ff8947a10dcb0572d633f2cfa10"
2259 | integrity sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==
2260 |
2261 | isobject@^2.0.0:
2262 | version "2.1.0"
2263 | resolved "https://registry.yarnpkg.com/isobject/-/isobject-2.1.0.tgz#f065561096a3f1da2ef46272f815c840d87e0c89"
2264 | integrity sha512-+OUdGJlgjOBZDfxnDjYYG6zp487z0JGNQq3cYQYg5f5hKR+syHMsaztzGeml/4kGG55CSpKSpWTY+jYGgsHLgA==
2265 | dependencies:
2266 | isarray "1.0.0"
2267 |
2268 | isobject@^3.0.0, isobject@^3.0.1:
2269 | version "3.0.1"
2270 | resolved "https://registry.yarnpkg.com/isobject/-/isobject-3.0.1.tgz#4e431e92b11a9731636aa1f9c8d1ccbcfdab78df"
2271 | integrity sha512-WhB9zCku7EGTj/HQQRz5aUQEUeoQZH2bWcltRErOpymJ4boYE6wL9Tbr23krRPSZ+C5zqNSrSw+Cc7sZZ4b7vg==
2272 |
2273 | jest-get-type@^22.1.0:
2274 | version "22.4.3"
2275 | resolved "https://registry.yarnpkg.com/jest-get-type/-/jest-get-type-22.4.3.tgz#e3a8504d8479342dd4420236b322869f18900ce4"
2276 | integrity sha512-/jsz0Y+V29w1chdXVygEKSz2nBoHoYqNShPe+QgxSNjAuP1i8+k4LbQNrfoliKej0P45sivkSCh7yiD6ubHS3w==
2277 |
2278 | jest-validate@^23.5.0:
2279 | version "23.6.0"
2280 | resolved "https://registry.yarnpkg.com/jest-validate/-/jest-validate-23.6.0.tgz#36761f99d1ed33fcd425b4e4c5595d62b6597474"
2281 | integrity sha512-OFKapYxe72yz7agrDAWi8v2WL8GIfVqcbKRCLbRG9PAxtzF9b1SEDdTpytNDN12z2fJynoBwpMpvj2R39plI2A==
2282 | dependencies:
2283 | chalk "^2.0.1"
2284 | jest-get-type "^22.1.0"
2285 | leven "^2.1.0"
2286 | pretty-format "^23.6.0"
2287 |
2288 | js-tokens@^4.0.0:
2289 | version "4.0.0"
2290 | resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-4.0.0.tgz#19203fb59991df98e3a287050d4647cdeaf32499"
2291 | integrity sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==
2292 |
2293 | js-yaml@^3.13.1:
2294 | version "3.14.1"
2295 | resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-3.14.1.tgz#dae812fdb3825fa306609a8717383c50c36a0537"
2296 | integrity sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g==
2297 | dependencies:
2298 | argparse "^1.0.7"
2299 | esprima "^4.0.0"
2300 |
2301 | jsesc@^2.5.1:
2302 | version "2.5.2"
2303 | resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-2.5.2.tgz#80564d2e483dacf6e8ef209650a67df3f0c283a4"
2304 | integrity sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA==
2305 |
2306 | jsesc@~0.5.0:
2307 | version "0.5.0"
2308 | resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-0.5.0.tgz#e7dee66e35d6fc16f710fe91d5cf69f70f08911d"
2309 | integrity sha512-uZz5UnB7u4T9LvwmFqXii7pZSouaRPorGs5who1Ip7VO0wxanFvBL7GkM6dTHlgX+jhBApRetaWpnDabOeTcnA==
2310 |
2311 | json-parse-better-errors@^1.0.1:
2312 | version "1.0.2"
2313 | resolved "https://registry.yarnpkg.com/json-parse-better-errors/-/json-parse-better-errors-1.0.2.tgz#bb867cfb3450e69107c131d1c514bab3dc8bcaa9"
2314 | integrity sha512-mrqyZKfX5EhL7hvqcV6WG1yYjnjeuYDzDhhcAAUrq8Po85NBQBJP+ZDUT75qZQ98IkUoBqdkExkukOU7Ts2wrw==
2315 |
2316 | json5@^2.2.1:
2317 | version "2.2.1"
2318 | resolved "https://registry.yarnpkg.com/json5/-/json5-2.2.1.tgz#655d50ed1e6f95ad1a3caababd2b0efda10b395c"
2319 | integrity sha512-1hqLFMSrGHRHxav9q9gNjJ5EXznIxGVO09xQRrwplcS8qs28pZ8s8hupZAmqDwZUmVZ2Qb2jnyPOWcDH8m8dlA==
2320 |
2321 | kind-of@^3.0.2, kind-of@^3.0.3, kind-of@^3.2.0:
2322 | version "3.2.2"
2323 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-3.2.2.tgz#31ea21a734bab9bbb0f32466d893aea51e4a3c64"
2324 | integrity sha512-NOW9QQXMoZGg/oqnVNoNTTIFEIid1627WCffUBJEdMxYApq7mNE7CpzucIPc+ZQg25Phej7IJSmX3hO+oblOtQ==
2325 | dependencies:
2326 | is-buffer "^1.1.5"
2327 |
2328 | kind-of@^4.0.0:
2329 | version "4.0.0"
2330 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-4.0.0.tgz#20813df3d712928b207378691a45066fae72dd57"
2331 | integrity sha512-24XsCxmEbRwEDbz/qz3stgin8TTzZ1ESR56OMCN0ujYg+vRutNSiOj9bHH9u85DKgXguraugV5sFuvbD4FW/hw==
2332 | dependencies:
2333 | is-buffer "^1.1.5"
2334 |
2335 | kind-of@^5.0.0:
2336 | version "5.1.0"
2337 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-5.1.0.tgz#729c91e2d857b7a419a1f9aa65685c4c33f5845d"
2338 | integrity sha512-NGEErnH6F2vUuXDh+OlbcKW7/wOcfdRHaZ7VWtqCztfHri/++YKmP51OdWeGPuqCOba6kk2OTe5d02VmTB80Pw==
2339 |
2340 | kind-of@^6.0.0, kind-of@^6.0.2:
2341 | version "6.0.3"
2342 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-6.0.3.tgz#07c05034a6c349fa06e24fa35aa76db4580ce4dd"
2343 | integrity sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==
2344 |
2345 | leven@^2.1.0:
2346 | version "2.1.0"
2347 | resolved "https://registry.yarnpkg.com/leven/-/leven-2.1.0.tgz#c2e7a9f772094dee9d34202ae8acce4687875580"
2348 | integrity sha512-nvVPLpIHUxCUoRLrFqTgSxXJ614d8AgQoWl7zPe/2VadE8+1dpU3LBhowRuBAcuwruWtOdD8oYC9jDNJjXDPyA==
2349 |
2350 | levn@~0.3.0:
2351 | version "0.3.0"
2352 | resolved "https://registry.yarnpkg.com/levn/-/levn-0.3.0.tgz#3b09924edf9f083c0490fdd4c0bc4421e04764ee"
2353 | integrity sha512-0OO4y2iOHix2W6ujICbKIaEQXvFQHue65vUG3pb5EUomzPI90z9hsA1VsO/dbIIpC53J8gxM9Q4Oho0jrCM/yA==
2354 | dependencies:
2355 | prelude-ls "~1.1.2"
2356 | type-check "~0.3.2"
2357 |
2358 | lint-staged@^7.3.0:
2359 | version "7.3.0"
2360 | resolved "https://registry.yarnpkg.com/lint-staged/-/lint-staged-7.3.0.tgz#90ff33e5ca61ed3dbac35b6f6502dbefdc0db58d"
2361 | integrity sha512-AXk40M9DAiPi7f4tdJggwuKIViUplYtVj1os1MVEteW7qOkU50EOehayCfO9TsoGK24o/EsWb41yrEgfJDDjCw==
2362 | dependencies:
2363 | chalk "^2.3.1"
2364 | commander "^2.14.1"
2365 | cosmiconfig "^5.0.2"
2366 | debug "^3.1.0"
2367 | dedent "^0.7.0"
2368 | execa "^0.9.0"
2369 | find-parent-dir "^0.3.0"
2370 | is-glob "^4.0.0"
2371 | is-windows "^1.0.2"
2372 | jest-validate "^23.5.0"
2373 | listr "^0.14.1"
2374 | lodash "^4.17.5"
2375 | log-symbols "^2.2.0"
2376 | micromatch "^3.1.8"
2377 | npm-which "^3.0.1"
2378 | p-map "^1.1.1"
2379 | path-is-inside "^1.0.2"
2380 | pify "^3.0.0"
2381 | please-upgrade-node "^3.0.2"
2382 | staged-git-files "1.1.1"
2383 | string-argv "^0.0.2"
2384 | stringify-object "^3.2.2"
2385 |
2386 | listr-silent-renderer@^1.1.1:
2387 | version "1.1.1"
2388 | resolved "https://registry.yarnpkg.com/listr-silent-renderer/-/listr-silent-renderer-1.1.1.tgz#924b5a3757153770bf1a8e3fbf74b8bbf3f9242e"
2389 | integrity sha512-L26cIFm7/oZeSNVhWB6faeorXhMg4HNlb/dS/7jHhr708jxlXrtrBWo4YUxZQkc6dGoxEAe6J/D3juTRBUzjtA==
2390 |
2391 | listr-update-renderer@^0.5.0:
2392 | version "0.5.0"
2393 | resolved "https://registry.yarnpkg.com/listr-update-renderer/-/listr-update-renderer-0.5.0.tgz#4ea8368548a7b8aecb7e06d8c95cb45ae2ede6a2"
2394 | integrity sha512-tKRsZpKz8GSGqoI/+caPmfrypiaq+OQCbd+CovEC24uk1h952lVj5sC7SqyFUm+OaJ5HN/a1YLt5cit2FMNsFA==
2395 | dependencies:
2396 | chalk "^1.1.3"
2397 | cli-truncate "^0.2.1"
2398 | elegant-spinner "^1.0.1"
2399 | figures "^1.7.0"
2400 | indent-string "^3.0.0"
2401 | log-symbols "^1.0.2"
2402 | log-update "^2.3.0"
2403 | strip-ansi "^3.0.1"
2404 |
2405 | listr-verbose-renderer@^0.5.0:
2406 | version "0.5.0"
2407 | resolved "https://registry.yarnpkg.com/listr-verbose-renderer/-/listr-verbose-renderer-0.5.0.tgz#f1132167535ea4c1261102b9f28dac7cba1e03db"
2408 | integrity sha512-04PDPqSlsqIOaaaGZ+41vq5FejI9auqTInicFRndCBgE3bXG8D6W1I+mWhk+1nqbHmyhla/6BUrd5OSiHwKRXw==
2409 | dependencies:
2410 | chalk "^2.4.1"
2411 | cli-cursor "^2.1.0"
2412 | date-fns "^1.27.2"
2413 | figures "^2.0.0"
2414 |
2415 | listr@^0.14.1:
2416 | version "0.14.3"
2417 | resolved "https://registry.yarnpkg.com/listr/-/listr-0.14.3.tgz#2fea909604e434be464c50bddba0d496928fa586"
2418 | integrity sha512-RmAl7su35BFd/xoMamRjpIE4j3v+L28o8CT5YhAXQJm1fD+1l9ngXY8JAQRJ+tFK2i5njvi0iRUKV09vPwA0iA==
2419 | dependencies:
2420 | "@samverschueren/stream-to-observable" "^0.3.0"
2421 | is-observable "^1.1.0"
2422 | is-promise "^2.1.0"
2423 | is-stream "^1.1.0"
2424 | listr-silent-renderer "^1.1.1"
2425 | listr-update-renderer "^0.5.0"
2426 | listr-verbose-renderer "^0.5.0"
2427 | p-map "^2.0.0"
2428 | rxjs "^6.3.3"
2429 |
2430 | locate-path@^3.0.0:
2431 | version "3.0.0"
2432 | resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-3.0.0.tgz#dbec3b3ab759758071b58fe59fc41871af21400e"
2433 | integrity sha512-7AO748wWnIhNqAuaty2ZWHkQHRSNfPVIsPIfwEOWO22AmaoVrWavlOcMR5nzTLNYvp36X220/maaRsrec1G65A==
2434 | dependencies:
2435 | p-locate "^3.0.0"
2436 | path-exists "^3.0.0"
2437 |
2438 | lodash.debounce@^4.0.8:
2439 | version "4.0.8"
2440 | resolved "https://registry.yarnpkg.com/lodash.debounce/-/lodash.debounce-4.0.8.tgz#82d79bff30a67c4005ffd5e2515300ad9ca4d7af"
2441 | integrity sha512-FT1yDzDYEoYWhnSGnpE/4Kj1fLZkDFyqRb7fNt6FdYOSxlUWAtp42Eh6Wb0rGIv/m9Bgo7x4GhQbm5Ys4SG5ow==
2442 |
2443 | lodash@^4.17.5:
2444 | version "4.17.21"
2445 | resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.21.tgz#679591c564c3bffaae8454cf0b3df370c3d6911c"
2446 | integrity sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==
2447 |
2448 | log-symbols@^1.0.2:
2449 | version "1.0.2"
2450 | resolved "https://registry.yarnpkg.com/log-symbols/-/log-symbols-1.0.2.tgz#376ff7b58ea3086a0f09facc74617eca501e1a18"
2451 | integrity sha512-mmPrW0Fh2fxOzdBbFv4g1m6pR72haFLPJ2G5SJEELf1y+iaQrDG6cWCPjy54RHYbZAt7X+ls690Kw62AdWXBzQ==
2452 | dependencies:
2453 | chalk "^1.0.0"
2454 |
2455 | log-symbols@^2.2.0:
2456 | version "2.2.0"
2457 | resolved "https://registry.yarnpkg.com/log-symbols/-/log-symbols-2.2.0.tgz#5740e1c5d6f0dfda4ad9323b5332107ef6b4c40a"
2458 | integrity sha512-VeIAFslyIerEJLXHziedo2basKbMKtTw3vfn5IzG0XTjhAVEJyNHnL2p7vc+wBDSdQuUpNw3M2u6xb9QsAY5Eg==
2459 | dependencies:
2460 | chalk "^2.0.1"
2461 |
2462 | log-update@^2.3.0:
2463 | version "2.3.0"
2464 | resolved "https://registry.yarnpkg.com/log-update/-/log-update-2.3.0.tgz#88328fd7d1ce7938b29283746f0b1bc126b24708"
2465 | integrity sha512-vlP11XfFGyeNQlmEn9tJ66rEW1coA/79m5z6BCkudjbAGE83uhAcGYrBFwfs3AdLiLzGRusRPAbSPK9xZteCmg==
2466 | dependencies:
2467 | ansi-escapes "^3.0.0"
2468 | cli-cursor "^2.0.0"
2469 | wrap-ansi "^3.0.1"
2470 |
2471 | lru-cache@^4.0.1:
2472 | version "4.1.5"
2473 | resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-4.1.5.tgz#8bbe50ea85bed59bc9e33dcab8235ee9bcf443cd"
2474 | integrity sha512-sWZlbEP2OsHNkXrMl5GYk/jKk70MBng6UU4YI/qGDYbgf6YbP4EvmqISbXCoJiRKs+1bSpFHVgQxvJ17F2li5g==
2475 | dependencies:
2476 | pseudomap "^1.0.2"
2477 | yallist "^2.1.2"
2478 |
2479 | make-dir@^2.0.0, make-dir@^2.1.0:
2480 | version "2.1.0"
2481 | resolved "https://registry.yarnpkg.com/make-dir/-/make-dir-2.1.0.tgz#5f0310e18b8be898cc07009295a30ae41e91e6f5"
2482 | integrity sha512-LS9X+dc8KLxXCb8dni79fLIIUA5VyZoyjSMCwTluaXA0o27cCK0bhXkpgw+sTXVpPy/lSO57ilRixqk0vDmtRA==
2483 | dependencies:
2484 | pify "^4.0.1"
2485 | semver "^5.6.0"
2486 |
2487 | map-cache@^0.2.2:
2488 | version "0.2.2"
2489 | resolved "https://registry.yarnpkg.com/map-cache/-/map-cache-0.2.2.tgz#c32abd0bd6525d9b051645bb4f26ac5dc98a0dbf"
2490 | integrity sha512-8y/eV9QQZCiyn1SprXSrCmqJN0yNRATe+PO8ztwqrvrbdRLA3eYJF0yaR0YayLWkMbsQSKWS9N2gPcGEc4UsZg==
2491 |
2492 | map-visit@^1.0.0:
2493 | version "1.0.0"
2494 | resolved "https://registry.yarnpkg.com/map-visit/-/map-visit-1.0.0.tgz#ecdca8f13144e660f1b5bd41f12f3479d98dfb8f"
2495 | integrity sha512-4y7uGv8bd2WdM9vpQsiQNo41Ln1NvhvDRuVt0k2JZQ+ezN2uaQes7lZeZ+QQUHOLQAtDaBJ+7wCbi+ab/KFs+w==
2496 | dependencies:
2497 | object-visit "^1.0.0"
2498 |
2499 | micromatch@^3.1.8:
2500 | version "3.1.10"
2501 | resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-3.1.10.tgz#70859bc95c9840952f359a068a3fc49f9ecfac23"
2502 | integrity sha512-MWikgl9n9M3w+bpsY3He8L+w9eF9338xRl8IAO5viDizwSzziFEyUzo2xrrloB64ADbTf8uA8vRqqttDTOmccg==
2503 | dependencies:
2504 | arr-diff "^4.0.0"
2505 | array-unique "^0.3.2"
2506 | braces "^2.3.1"
2507 | define-property "^2.0.2"
2508 | extend-shallow "^3.0.2"
2509 | extglob "^2.0.4"
2510 | fragment-cache "^0.2.1"
2511 | kind-of "^6.0.2"
2512 | nanomatch "^1.2.9"
2513 | object.pick "^1.3.0"
2514 | regex-not "^1.0.0"
2515 | snapdragon "^0.8.1"
2516 | to-regex "^3.0.2"
2517 |
2518 | mimic-fn@^1.0.0:
2519 | version "1.2.0"
2520 | resolved "https://registry.yarnpkg.com/mimic-fn/-/mimic-fn-1.2.0.tgz#820c86a39334640e99516928bd03fca88057d022"
2521 | integrity sha512-jf84uxzwiuiIVKiOLpfYk7N46TSy8ubTonmneY9vrpHNAnp0QBt2BxWV9dO3/j+BoVAb+a5G6YDPW3M5HOdMWQ==
2522 |
2523 | minimatch@3.0.4:
2524 | version "3.0.4"
2525 | resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.0.4.tgz#5166e286457f03306064be5497e8dbb0c3d32083"
2526 | integrity sha512-yJHVQEhyqPLUTgt9B83PXu6W3rx4MvvHvSUvToogpwoGDOUQ+yDrR0HRot+yOCdCO7u4hX3pWft6kWBBcqh0UA==
2527 | dependencies:
2528 | brace-expansion "^1.1.7"
2529 |
2530 | minimatch@^3.0.4, minimatch@^3.1.1:
2531 | version "3.1.2"
2532 | resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.1.2.tgz#19cd194bfd3e428f049a70817c038d89ab4be35b"
2533 | integrity sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==
2534 | dependencies:
2535 | brace-expansion "^1.1.7"
2536 |
2537 | minimist@0.0.8:
2538 | version "0.0.8"
2539 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-0.0.8.tgz#857fcabfc3397d2625b8228262e86aa7a011b05d"
2540 | integrity sha512-miQKw5Hv4NS1Psg2517mV4e4dYNaO3++hjAvLOAzKqZ61rH8NS1SK+vbfBWZ5PY/Me/bEWhUwqMghEW5Fb9T7Q==
2541 |
2542 | mixin-deep@^1.2.0:
2543 | version "1.3.2"
2544 | resolved "https://registry.yarnpkg.com/mixin-deep/-/mixin-deep-1.3.2.tgz#1120b43dc359a785dce65b55b82e257ccf479566"
2545 | integrity sha512-WRoDn//mXBiJ1H40rqa3vH0toePwSsGb45iInWlTySa+Uu4k3tYUSxa2v1KqAiLtvlrSzaExqS1gtk96A9zvEA==
2546 | dependencies:
2547 | for-in "^1.0.2"
2548 | is-extendable "^1.0.1"
2549 |
2550 | mkdirp@0.5.1:
2551 | version "0.5.1"
2552 | resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.5.1.tgz#30057438eac6cf7f8c4767f38648d6697d75c903"
2553 | integrity sha512-SknJC52obPfGQPnjIkXbmA6+5H15E+fR+E4iR2oQ3zzCLbd7/ONua69R/Gw7AgkTLsRG+r5fzksYwWe1AgTyWA==
2554 | dependencies:
2555 | minimist "0.0.8"
2556 |
2557 | mocha@^5.2.0:
2558 | version "5.2.0"
2559 | resolved "https://registry.yarnpkg.com/mocha/-/mocha-5.2.0.tgz#6d8ae508f59167f940f2b5b3c4a612ae50c90ae6"
2560 | integrity sha512-2IUgKDhc3J7Uug+FxMXuqIyYzH7gJjXECKe/w43IGgQHTSj3InJi+yAA7T24L9bQMRKiUEHxEX37G5JpVUGLcQ==
2561 | dependencies:
2562 | browser-stdout "1.3.1"
2563 | commander "2.15.1"
2564 | debug "3.1.0"
2565 | diff "3.5.0"
2566 | escape-string-regexp "1.0.5"
2567 | glob "7.1.2"
2568 | growl "1.10.5"
2569 | he "1.1.1"
2570 | minimatch "3.0.4"
2571 | mkdirp "0.5.1"
2572 | supports-color "5.4.0"
2573 |
2574 | ms@2.0.0:
2575 | version "2.0.0"
2576 | resolved "https://registry.yarnpkg.com/ms/-/ms-2.0.0.tgz#5608aeadfc00be6c2901df5f9861788de0d597c8"
2577 | integrity sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==
2578 |
2579 | ms@2.1.2:
2580 | version "2.1.2"
2581 | resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.2.tgz#d09d1f357b443f493382a8eb3ccd183872ae6009"
2582 | integrity sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==
2583 |
2584 | ms@^2.1.1:
2585 | version "2.1.3"
2586 | resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.3.tgz#574c8138ce1d2b5861f0b44579dbadd60c6615b2"
2587 | integrity sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==
2588 |
2589 | nanomatch@^1.2.9:
2590 | version "1.2.13"
2591 | resolved "https://registry.yarnpkg.com/nanomatch/-/nanomatch-1.2.13.tgz#b87a8aa4fc0de8fe6be88895b38983ff265bd119"
2592 | integrity sha512-fpoe2T0RbHwBTBUOftAfBPaDEi06ufaUai0mE6Yn1kacc3SnTErfb/h+X94VXzI64rKFHYImXSvdwGGCmwOqCA==
2593 | dependencies:
2594 | arr-diff "^4.0.0"
2595 | array-unique "^0.3.2"
2596 | define-property "^2.0.2"
2597 | extend-shallow "^3.0.2"
2598 | fragment-cache "^0.2.1"
2599 | is-windows "^1.0.2"
2600 | kind-of "^6.0.2"
2601 | object.pick "^1.3.0"
2602 | regex-not "^1.0.0"
2603 | snapdragon "^0.8.1"
2604 | to-regex "^3.0.1"
2605 |
2606 | nice-try@^1.0.4:
2607 | version "1.0.5"
2608 | resolved "https://registry.yarnpkg.com/nice-try/-/nice-try-1.0.5.tgz#a3378a7696ce7d223e88fc9b764bd7ef1089e366"
2609 | integrity sha512-1nh45deeb5olNY7eX82BkPO7SSxR5SSYJiPTrTdFUVYwAl8CKMA5N9PjTYkHiRjisVcxcQ1HXdLhx2qxxJzLNQ==
2610 |
2611 | node-releases@^2.0.6:
2612 | version "2.0.6"
2613 | resolved "https://registry.yarnpkg.com/node-releases/-/node-releases-2.0.6.tgz#8a7088c63a55e493845683ebf3c828d8c51c5503"
2614 | integrity sha512-PiVXnNuFm5+iYkLBNeq5211hvO38y63T0i2KKh2KnUs3RpzJ+JtODFjkD8yjLwnDkTYF1eKXheUwdssR+NRZdg==
2615 |
2616 | normalize-package-data@^2.3.2:
2617 | version "2.5.0"
2618 | resolved "https://registry.yarnpkg.com/normalize-package-data/-/normalize-package-data-2.5.0.tgz#e66db1838b200c1dfc233225d12cb36520e234a8"
2619 | integrity sha512-/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA==
2620 | dependencies:
2621 | hosted-git-info "^2.1.4"
2622 | resolve "^1.10.0"
2623 | semver "2 || 3 || 4 || 5"
2624 | validate-npm-package-license "^3.0.1"
2625 |
2626 | normalize-path@^3.0.0, normalize-path@~3.0.0:
2627 | version "3.0.0"
2628 | resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-3.0.0.tgz#0dcd69ff23a1c9b11fd0978316644a0388216a65"
2629 | integrity sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==
2630 |
2631 | npm-path@^2.0.2:
2632 | version "2.0.4"
2633 | resolved "https://registry.yarnpkg.com/npm-path/-/npm-path-2.0.4.tgz#c641347a5ff9d6a09e4d9bce5580c4f505278e64"
2634 | integrity sha512-IFsj0R9C7ZdR5cP+ET342q77uSRdtWOlWpih5eC+lu29tIDbNEgDbzgVJ5UFvYHWhxDZ5TFkJafFioO0pPQjCw==
2635 | dependencies:
2636 | which "^1.2.10"
2637 |
2638 | npm-run-path@^2.0.0:
2639 | version "2.0.2"
2640 | resolved "https://registry.yarnpkg.com/npm-run-path/-/npm-run-path-2.0.2.tgz#35a9232dfa35d7067b4cb2ddf2357b1871536c5f"
2641 | integrity sha512-lJxZYlT4DW/bRUtFh1MQIWqmLwQfAxnqWG4HhEdjMlkrJYnJn0Jrr2u3mgxqaWsdiBc76TYkTG/mhrnYTuzfHw==
2642 | dependencies:
2643 | path-key "^2.0.0"
2644 |
2645 | npm-which@^3.0.1:
2646 | version "3.0.1"
2647 | resolved "https://registry.yarnpkg.com/npm-which/-/npm-which-3.0.1.tgz#9225f26ec3a285c209cae67c3b11a6b4ab7140aa"
2648 | integrity sha512-CM8vMpeFQ7MAPin0U3wzDhSGV0hMHNwHU0wjo402IVizPDrs45jSfSuoC+wThevY88LQti8VvaAnqYAeVy3I1A==
2649 | dependencies:
2650 | commander "^2.9.0"
2651 | npm-path "^2.0.2"
2652 | which "^1.2.10"
2653 |
2654 | number-is-nan@^1.0.0:
2655 | version "1.0.1"
2656 | resolved "https://registry.yarnpkg.com/number-is-nan/-/number-is-nan-1.0.1.tgz#097b602b53422a522c1afb8790318336941a011d"
2657 | integrity sha512-4jbtZXNAsfZbAHiiqjLPBiCl16dES1zI4Hpzzxw61Tk+loF+sBDBKx1ICKKKwIqQ7M0mFn1TmkN7euSncWgHiQ==
2658 |
2659 | object-assign@^4.0.1, object-assign@^4.1.0:
2660 | version "4.1.1"
2661 | resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863"
2662 | integrity sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==
2663 |
2664 | object-copy@^0.1.0:
2665 | version "0.1.0"
2666 | resolved "https://registry.yarnpkg.com/object-copy/-/object-copy-0.1.0.tgz#7e7d858b781bd7c991a41ba975ed3812754e998c"
2667 | integrity sha512-79LYn6VAb63zgtmAteVOWo9Vdj71ZVBy3Pbse+VqxDpEP83XuujMrGqHIwAXJ5I/aM0zU7dIyIAhifVTPrNItQ==
2668 | dependencies:
2669 | copy-descriptor "^0.1.0"
2670 | define-property "^0.2.5"
2671 | kind-of "^3.0.3"
2672 |
2673 | object-is@^1.0.1:
2674 | version "1.1.5"
2675 | resolved "https://registry.yarnpkg.com/object-is/-/object-is-1.1.5.tgz#b9deeaa5fc7f1846a0faecdceec138e5778f53ac"
2676 | integrity sha512-3cyDsyHgtmi7I7DfSSI2LDp6SK2lwvtbg0p0R1e0RvTqF5ceGx+K2dfSjm1bKDMVCFEDAQvy+o8c6a7VujOddw==
2677 | dependencies:
2678 | call-bind "^1.0.2"
2679 | define-properties "^1.1.3"
2680 |
2681 | object-keys@^1.0.3, object-keys@^1.1.1:
2682 | version "1.1.1"
2683 | resolved "https://registry.yarnpkg.com/object-keys/-/object-keys-1.1.1.tgz#1c47f272df277f3b1daf061677d9c82e2322c60e"
2684 | integrity sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==
2685 |
2686 | object-visit@^1.0.0:
2687 | version "1.0.1"
2688 | resolved "https://registry.yarnpkg.com/object-visit/-/object-visit-1.0.1.tgz#f79c4493af0c5377b59fe39d395e41042dd045bb"
2689 | integrity sha512-GBaMwwAVK9qbQN3Scdo0OyvgPW7l3lnaVMj84uTOZlswkX0KpF6fyDBJhtTthf7pymztoN36/KEr1DyhF96zEA==
2690 | dependencies:
2691 | isobject "^3.0.0"
2692 |
2693 | object.assign@^4.1.0:
2694 | version "4.1.4"
2695 | resolved "https://registry.yarnpkg.com/object.assign/-/object.assign-4.1.4.tgz#9673c7c7c351ab8c4d0b516f4343ebf4dfb7799f"
2696 | integrity sha512-1mxKf0e58bvyjSCtKYY4sRe9itRk3PJpquJOjeIkz885CczcI4IvJJDLPS72oowuSh+pBxUFROpX+TU++hxhZQ==
2697 | dependencies:
2698 | call-bind "^1.0.2"
2699 | define-properties "^1.1.4"
2700 | has-symbols "^1.0.3"
2701 | object-keys "^1.1.1"
2702 |
2703 | object.pick@^1.3.0:
2704 | version "1.3.0"
2705 | resolved "https://registry.yarnpkg.com/object.pick/-/object.pick-1.3.0.tgz#87a10ac4c1694bd2e1cbf53591a66141fb5dd747"
2706 | integrity sha512-tqa/UMy/CCoYmj+H5qc07qvSL9dqcs/WZENZ1JbtWBlATP+iVOe778gE6MSijnyCnORzDuX6hU+LA4SZ09YjFQ==
2707 | dependencies:
2708 | isobject "^3.0.1"
2709 |
2710 | once@^1.3.0, once@^1.3.1, once@^1.4.0:
2711 | version "1.4.0"
2712 | resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1"
2713 | integrity sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==
2714 | dependencies:
2715 | wrappy "1"
2716 |
2717 | onetime@^2.0.0:
2718 | version "2.0.1"
2719 | resolved "https://registry.yarnpkg.com/onetime/-/onetime-2.0.1.tgz#067428230fd67443b2794b22bba528b6867962d4"
2720 | integrity sha512-oyyPpiMaKARvvcgip+JV+7zci5L8D1W9RZIz2l1o08AM3pfspitVWnPt3mzHcBPp12oYMTy0pqrFs/C+m3EwsQ==
2721 | dependencies:
2722 | mimic-fn "^1.0.0"
2723 |
2724 | optionator@^0.8.1:
2725 | version "0.8.3"
2726 | resolved "https://registry.yarnpkg.com/optionator/-/optionator-0.8.3.tgz#84fa1d036fe9d3c7e21d99884b601167ec8fb495"
2727 | integrity sha512-+IW9pACdk3XWmmTXG8m3upGUJst5XRGzxMRjXzAuJ1XnIFNvfhjjIuYkDvysnPQ7qzqVzLt78BCruntqRhWQbA==
2728 | dependencies:
2729 | deep-is "~0.1.3"
2730 | fast-levenshtein "~2.0.6"
2731 | levn "~0.3.0"
2732 | prelude-ls "~1.1.2"
2733 | type-check "~0.3.2"
2734 | word-wrap "~1.2.3"
2735 |
2736 | p-finally@^1.0.0:
2737 | version "1.0.0"
2738 | resolved "https://registry.yarnpkg.com/p-finally/-/p-finally-1.0.0.tgz#3fbcfb15b899a44123b34b6dcc18b724336a2cae"
2739 | integrity sha512-LICb2p9CB7FS+0eR1oqWnHhp0FljGLZCWBE9aix0Uye9W8LTQPwMTYVGWQWIw9RdQiDg4+epXQODwIYJtSJaow==
2740 |
2741 | p-limit@^2.0.0:
2742 | version "2.3.0"
2743 | resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-2.3.0.tgz#3dd33c647a214fdfffd835933eb086da0dc21db1"
2744 | integrity sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==
2745 | dependencies:
2746 | p-try "^2.0.0"
2747 |
2748 | p-locate@^3.0.0:
2749 | version "3.0.0"
2750 | resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-3.0.0.tgz#322d69a05c0264b25997d9f40cd8a891ab0064a4"
2751 | integrity sha512-x+12w/To+4GFfgJhBEpiDcLozRJGegY+Ei7/z0tSLkMmxGZNybVMSfWj9aJn8Z5Fc7dBUNJOOVgPv2H7IwulSQ==
2752 | dependencies:
2753 | p-limit "^2.0.0"
2754 |
2755 | p-map@^1.1.1:
2756 | version "1.2.0"
2757 | resolved "https://registry.yarnpkg.com/p-map/-/p-map-1.2.0.tgz#e4e94f311eabbc8633a1e79908165fca26241b6b"
2758 | integrity sha512-r6zKACMNhjPJMTl8KcFH4li//gkrXWfbD6feV8l6doRHlzljFWGJ2AP6iKaCJXyZmAUMOPtvbW7EXkbWO/pLEA==
2759 |
2760 | p-map@^2.0.0:
2761 | version "2.1.0"
2762 | resolved "https://registry.yarnpkg.com/p-map/-/p-map-2.1.0.tgz#310928feef9c9ecc65b68b17693018a665cea175"
2763 | integrity sha512-y3b8Kpd8OAN444hxfBbFfj1FY/RjtTd8tzYwhUqNYXx0fXx2iX4maP4Qr6qhIKbQXI02wTLAda4fYUbDagTUFw==
2764 |
2765 | p-try@^2.0.0:
2766 | version "2.2.0"
2767 | resolved "https://registry.yarnpkg.com/p-try/-/p-try-2.2.0.tgz#cb2868540e313d61de58fafbe35ce9004d5540e6"
2768 | integrity sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==
2769 |
2770 | parse-json@^4.0.0:
2771 | version "4.0.0"
2772 | resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-4.0.0.tgz#be35f5425be1f7f6c747184f98a788cb99477ee0"
2773 | integrity sha512-aOIos8bujGN93/8Ox/jPLh7RwVnPEysynVFE+fQZyg6jKELEHwzgKdLRFHUgXJL6kylijVSBC4BvN9OmsB48Rw==
2774 | dependencies:
2775 | error-ex "^1.3.1"
2776 | json-parse-better-errors "^1.0.1"
2777 |
2778 | pascalcase@^0.1.1:
2779 | version "0.1.1"
2780 | resolved "https://registry.yarnpkg.com/pascalcase/-/pascalcase-0.1.1.tgz#b363e55e8006ca6fe21784d2db22bd15d7917f14"
2781 | integrity sha512-XHXfu/yOQRy9vYOtUDVMN60OEJjW013GoObG1o+xwQTpB9eYJX/BjXMsdW13ZDPruFhYYn0AG22w0xgQMwl3Nw==
2782 |
2783 | path-exists@^3.0.0:
2784 | version "3.0.0"
2785 | resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-3.0.0.tgz#ce0ebeaa5f78cb18925ea7d810d7b59b010fd515"
2786 | integrity sha512-bpC7GYwiDYQ4wYLe+FA8lhRjhQCMcQGuSgGGqDkg/QerRWw9CmGRT0iSOVRSZJ29NMLZgIzqaljJ63oaL4NIJQ==
2787 |
2788 | path-is-absolute@^1.0.0:
2789 | version "1.0.1"
2790 | resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f"
2791 | integrity sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==
2792 |
2793 | path-is-inside@^1.0.2:
2794 | version "1.0.2"
2795 | resolved "https://registry.yarnpkg.com/path-is-inside/-/path-is-inside-1.0.2.tgz#365417dede44430d1c11af61027facf074bdfc53"
2796 | integrity sha512-DUWJr3+ULp4zXmol/SZkFf3JGsS9/SIv+Y3Rt93/UjPpDpklB5f1er4O3POIbUuUJ3FXgqte2Q7SrU6zAqwk8w==
2797 |
2798 | path-key@^2.0.0, path-key@^2.0.1:
2799 | version "2.0.1"
2800 | resolved "https://registry.yarnpkg.com/path-key/-/path-key-2.0.1.tgz#411cadb574c5a140d3a4b1910d40d80cc9f40b40"
2801 | integrity sha512-fEHGKCSmUSDPv4uoj8AlD+joPlq3peND+HRYyxFz4KPw4z926S/b8rIuFs2FYJg3BwsxJf6A9/3eIdLaYC+9Dw==
2802 |
2803 | path-parse@^1.0.7:
2804 | version "1.0.7"
2805 | resolved "https://registry.yarnpkg.com/path-parse/-/path-parse-1.0.7.tgz#fbc114b60ca42b30d9daf5858e4bd68bbedb6735"
2806 | integrity sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==
2807 |
2808 | picocolors@^1.0.0:
2809 | version "1.0.0"
2810 | resolved "https://registry.yarnpkg.com/picocolors/-/picocolors-1.0.0.tgz#cb5bdc74ff3f51892236eaf79d68bc44564ab81c"
2811 | integrity sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==
2812 |
2813 | picomatch@^2.0.4, picomatch@^2.2.1:
2814 | version "2.3.1"
2815 | resolved "https://registry.yarnpkg.com/picomatch/-/picomatch-2.3.1.tgz#3ba3833733646d9d3e4995946c1365a67fb07a42"
2816 | integrity sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==
2817 |
2818 | pify@^3.0.0:
2819 | version "3.0.0"
2820 | resolved "https://registry.yarnpkg.com/pify/-/pify-3.0.0.tgz#e5a4acd2c101fdf3d9a4d07f0dbc4db49dd28176"
2821 | integrity sha512-C3FsVNH1udSEX48gGX1xfvwTWfsYWj5U+8/uK15BGzIGrKoUpghX8hWZwa/OFnakBiiVNmBvemTJR5mcy7iPcg==
2822 |
2823 | pify@^4.0.1:
2824 | version "4.0.1"
2825 | resolved "https://registry.yarnpkg.com/pify/-/pify-4.0.1.tgz#4b2cd25c50d598735c50292224fd8c6df41e3231"
2826 | integrity sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g==
2827 |
2828 | pirates@^4.0.5:
2829 | version "4.0.5"
2830 | resolved "https://registry.yarnpkg.com/pirates/-/pirates-4.0.5.tgz#feec352ea5c3268fb23a37c702ab1699f35a5f3b"
2831 | integrity sha512-8V9+HQPupnaXMA23c5hvl69zXvTwTzyAYasnkb0Tts4XvO4CliqONMOnvlq26rkhLC3nWDFBJf73LU1e1VZLaQ==
2832 |
2833 | pkg-dir@^3.0.0:
2834 | version "3.0.0"
2835 | resolved "https://registry.yarnpkg.com/pkg-dir/-/pkg-dir-3.0.0.tgz#2749020f239ed990881b1f71210d51eb6523bea3"
2836 | integrity sha512-/E57AYkoeQ25qkxMj5PBOVgF8Kiu/h7cYS30Z5+R7WaiCCBfLq58ZI/dSeaEKb9WVJV5n/03QwrN3IeWIFllvw==
2837 | dependencies:
2838 | find-up "^3.0.0"
2839 |
2840 | please-upgrade-node@^3.0.2, please-upgrade-node@^3.1.1:
2841 | version "3.2.0"
2842 | resolved "https://registry.yarnpkg.com/please-upgrade-node/-/please-upgrade-node-3.2.0.tgz#aeddd3f994c933e4ad98b99d9a556efa0e2fe942"
2843 | integrity sha512-gQR3WpIgNIKwBMVLkpMUeR3e1/E1y42bqDQZfql+kDeXd8COYfM8PQA4X6y7a8u9Ua9FHmsrrmirW2vHs45hWg==
2844 | dependencies:
2845 | semver-compare "^1.0.0"
2846 |
2847 | posix-character-classes@^0.1.0:
2848 | version "0.1.1"
2849 | resolved "https://registry.yarnpkg.com/posix-character-classes/-/posix-character-classes-0.1.1.tgz#01eac0fe3b5af71a2a6c02feabb8c1fef7e00eab"
2850 | integrity sha512-xTgYBc3fuo7Yt7JbiuFxSYGToMoz8fLoE6TC9Wx1P/u+LfeThMOAqmuyECnlBaaJb+u1m9hHiXUEtwW4OzfUJg==
2851 |
2852 | power-assert-formatter@^0.11.0:
2853 | version "0.11.0"
2854 | resolved "https://registry.yarnpkg.com/power-assert-formatter/-/power-assert-formatter-0.11.0.tgz#195ccc85b165e5b6c81a0f14e28c4dd1a979abf7"
2855 | integrity sha512-cW4J1lSr3iJRhvb9GNFGllxNk7+80yl3hm8OgTmnOLQCuAhJvhDlYk67opkjXIie269HHivor8qWTEp2pUR+Sg==
2856 | dependencies:
2857 | acorn "^1.0.3"
2858 | eastasianwidth "^0.1.0"
2859 | estraverse "^3.1.0"
2860 | googlediff "^0.1.0"
2861 | object-keys "^1.0.3"
2862 | stringifier "^1.0.1"
2863 | type-name "^1.0.1"
2864 | xtend "^4.0.0"
2865 |
2866 | power-assert@^0.11.0:
2867 | version "0.11.0"
2868 | resolved "https://registry.yarnpkg.com/power-assert/-/power-assert-0.11.0.tgz#8b1f8744b098d7a79733b989f853a56edf71dcf9"
2869 | integrity sha512-MtjQI01F8DNkU9Ng1AO6BXQoNwh2T6bFVIMK0mHDJCtDDxGGxuKwQJUO0OMMlZHKqRS6SY3xQTIpOxwsmsyNoA==
2870 | dependencies:
2871 | empower "^0.11.0"
2872 | power-assert-formatter "^0.11.0"
2873 | xtend "^4.0.0"
2874 |
2875 | prelude-ls@~1.1.2:
2876 | version "1.1.2"
2877 | resolved "https://registry.yarnpkg.com/prelude-ls/-/prelude-ls-1.1.2.tgz#21932a549f5e52ffd9a827f570e04be62a97da54"
2878 | integrity sha512-ESF23V4SKG6lVSGZgYNpbsiaAkdab6ZgOxe52p7+Kid3W3u3bxR4Vfd/o21dmN7jSt0IwgZ4v5MUd26FEtXE9w==
2879 |
2880 | prettier@^1.8.1:
2881 | version "1.19.1"
2882 | resolved "https://registry.yarnpkg.com/prettier/-/prettier-1.19.1.tgz#f7d7f5ff8a9cd872a7be4ca142095956a60797cb"
2883 | integrity sha512-s7PoyDv/II1ObgQunCbB9PdLmUcBZcnWOcxDh7O0N/UwDEsHyqkW+Qh28jW+mVuCdx7gLB0BotYI1Y6uI9iyew==
2884 |
2885 | pretty-format@^23.6.0:
2886 | version "23.6.0"
2887 | resolved "https://registry.yarnpkg.com/pretty-format/-/pretty-format-23.6.0.tgz#5eaac8eeb6b33b987b7fe6097ea6a8a146ab5760"
2888 | integrity sha512-zf9NV1NSlDLDjycnwm6hpFATCGl/K1lt0R/GdkAK2O5LN/rwJoB+Mh93gGJjut4YbmecbfgLWVGSTCr0Ewvvbw==
2889 | dependencies:
2890 | ansi-regex "^3.0.0"
2891 | ansi-styles "^3.2.0"
2892 |
2893 | process-nextick-args@~2.0.0:
2894 | version "2.0.1"
2895 | resolved "https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-2.0.1.tgz#7820d9b16120cc55ca9ae7792680ae7dba6d7fe2"
2896 | integrity sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==
2897 |
2898 | pseudomap@^1.0.2:
2899 | version "1.0.2"
2900 | resolved "https://registry.yarnpkg.com/pseudomap/-/pseudomap-1.0.2.tgz#f052a28da70e618917ef0a8ac34c1ae5a68286b3"
2901 | integrity sha512-b/YwNhb8lk1Zz2+bXXpS/LK9OisiZZ1SNsSLxN1x2OXVEhW2Ckr/7mWE5vrC1ZTiJlD9g19jWszTmJsB+oEpFQ==
2902 |
2903 | pump@^3.0.0:
2904 | version "3.0.0"
2905 | resolved "https://registry.yarnpkg.com/pump/-/pump-3.0.0.tgz#b4a2116815bde2f4e1ea602354e8c75565107a64"
2906 | integrity sha512-LwZy+p3SFs1Pytd/jYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww==
2907 | dependencies:
2908 | end-of-stream "^1.1.0"
2909 | once "^1.3.1"
2910 |
2911 | read-pkg@^4.0.1:
2912 | version "4.0.1"
2913 | resolved "https://registry.yarnpkg.com/read-pkg/-/read-pkg-4.0.1.tgz#963625378f3e1c4d48c85872b5a6ec7d5d093237"
2914 | integrity sha512-+UBirHHDm5J+3WDmLBZYSklRYg82nMlz+enn+GMZ22nSR2f4bzxmhso6rzQW/3mT2PVzpzDTiYIZahk8UmZ44w==
2915 | dependencies:
2916 | normalize-package-data "^2.3.2"
2917 | parse-json "^4.0.0"
2918 | pify "^3.0.0"
2919 |
2920 | readable-stream@^2.2.2:
2921 | version "2.3.7"
2922 | resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.3.7.tgz#1eca1cf711aef814c04f62252a36a62f6cb23b57"
2923 | integrity sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==
2924 | dependencies:
2925 | core-util-is "~1.0.0"
2926 | inherits "~2.0.3"
2927 | isarray "~1.0.0"
2928 | process-nextick-args "~2.0.0"
2929 | safe-buffer "~5.1.1"
2930 | string_decoder "~1.1.1"
2931 | util-deprecate "~1.0.1"
2932 |
2933 | readdirp@~3.6.0:
2934 | version "3.6.0"
2935 | resolved "https://registry.yarnpkg.com/readdirp/-/readdirp-3.6.0.tgz#74a370bd857116e245b29cc97340cd431a02a6c7"
2936 | integrity sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==
2937 | dependencies:
2938 | picomatch "^2.2.1"
2939 |
2940 | regenerate-unicode-properties@^10.1.0:
2941 | version "10.1.0"
2942 | resolved "https://registry.yarnpkg.com/regenerate-unicode-properties/-/regenerate-unicode-properties-10.1.0.tgz#7c3192cab6dd24e21cb4461e5ddd7dd24fa8374c"
2943 | integrity sha512-d1VudCLoIGitcU/hEg2QqvyGZQmdC0Lf8BqdOMXGFSvJP4bNV1+XqbPQeHHLD51Jh4QJJ225dlIFvY4Ly6MXmQ==
2944 | dependencies:
2945 | regenerate "^1.4.2"
2946 |
2947 | regenerate@^1.4.2:
2948 | version "1.4.2"
2949 | resolved "https://registry.yarnpkg.com/regenerate/-/regenerate-1.4.2.tgz#b9346d8827e8f5a32f7ba29637d398b69014848a"
2950 | integrity sha512-zrceR/XhGYU/d/opr2EKO7aRHUeiBI8qjtfHqADTwZd6Szfy16la6kqD0MIUs5z5hx6AaKa+PixpPrR289+I0A==
2951 |
2952 | regenerator-runtime@^0.13.4:
2953 | version "0.13.9"
2954 | resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.13.9.tgz#8925742a98ffd90814988d7566ad30ca3b263b52"
2955 | integrity sha512-p3VT+cOEgxFsRRA9X4lkI1E+k2/CtnKtU4gcxyaCUreilL/vqI6CdZ3wxVUx3UOUg+gnUOQQcRI7BmSI656MYA==
2956 |
2957 | regenerator-transform@^0.15.0:
2958 | version "0.15.0"
2959 | resolved "https://registry.yarnpkg.com/regenerator-transform/-/regenerator-transform-0.15.0.tgz#cbd9ead5d77fae1a48d957cf889ad0586adb6537"
2960 | integrity sha512-LsrGtPmbYg19bcPHwdtmXwbW+TqNvtY4riE3P83foeHRroMbH6/2ddFBfab3t7kbzc7v7p4wbkIecHImqt0QNg==
2961 | dependencies:
2962 | "@babel/runtime" "^7.8.4"
2963 |
2964 | regex-not@^1.0.0, regex-not@^1.0.2:
2965 | version "1.0.2"
2966 | resolved "https://registry.yarnpkg.com/regex-not/-/regex-not-1.0.2.tgz#1f4ece27e00b0b65e0247a6810e6a85d83a5752c"
2967 | integrity sha512-J6SDjUgDxQj5NusnOtdFxDwN/+HWykR8GELwctJ7mdqhcyy1xEc4SRFHUXvxTp661YaVKAjfRLZ9cCqS6tn32A==
2968 | dependencies:
2969 | extend-shallow "^3.0.2"
2970 | safe-regex "^1.1.0"
2971 |
2972 | regexp.prototype.flags@^1.2.0:
2973 | version "1.4.3"
2974 | resolved "https://registry.yarnpkg.com/regexp.prototype.flags/-/regexp.prototype.flags-1.4.3.tgz#87cab30f80f66660181a3bb7bf5981a872b367ac"
2975 | integrity sha512-fjggEOO3slI6Wvgjwflkc4NFRCTZAu5CnNfBd5qOMYhWdn67nJBBu34/TkD++eeFmd8C9r9jfXJ27+nSiRkSUA==
2976 | dependencies:
2977 | call-bind "^1.0.2"
2978 | define-properties "^1.1.3"
2979 | functions-have-names "^1.2.2"
2980 |
2981 | regexpu-core@^5.1.0:
2982 | version "5.2.1"
2983 | resolved "https://registry.yarnpkg.com/regexpu-core/-/regexpu-core-5.2.1.tgz#a69c26f324c1e962e9ffd0b88b055caba8089139"
2984 | integrity sha512-HrnlNtpvqP1Xkb28tMhBUO2EbyUHdQlsnlAhzWcwHy8WJR53UWr7/MAvqrsQKMbV4qdpv03oTMG8iIhfsPFktQ==
2985 | dependencies:
2986 | regenerate "^1.4.2"
2987 | regenerate-unicode-properties "^10.1.0"
2988 | regjsgen "^0.7.1"
2989 | regjsparser "^0.9.1"
2990 | unicode-match-property-ecmascript "^2.0.0"
2991 | unicode-match-property-value-ecmascript "^2.0.0"
2992 |
2993 | regjsgen@^0.7.1:
2994 | version "0.7.1"
2995 | resolved "https://registry.yarnpkg.com/regjsgen/-/regjsgen-0.7.1.tgz#ee5ef30e18d3f09b7c369b76e7c2373ed25546f6"
2996 | integrity sha512-RAt+8H2ZEzHeYWxZ3H2z6tF18zyyOnlcdaafLrm21Bguj7uZy6ULibiAFdXEtKQY4Sy7wDTwDiOazasMLc4KPA==
2997 |
2998 | regjsparser@^0.9.1:
2999 | version "0.9.1"
3000 | resolved "https://registry.yarnpkg.com/regjsparser/-/regjsparser-0.9.1.tgz#272d05aa10c7c1f67095b1ff0addae8442fc5709"
3001 | integrity sha512-dQUtn90WanSNl+7mQKcXAgZxvUe7Z0SqXlgzv0za4LwiUhyzBC58yQO3liFoUgu8GiJVInAhJjkj1N0EtQ5nkQ==
3002 | dependencies:
3003 | jsesc "~0.5.0"
3004 |
3005 | repeat-element@^1.1.2:
3006 | version "1.1.4"
3007 | resolved "https://registry.yarnpkg.com/repeat-element/-/repeat-element-1.1.4.tgz#be681520847ab58c7568ac75fbfad28ed42d39e9"
3008 | integrity sha512-LFiNfRcSu7KK3evMyYOuCzv3L10TW7yC1G2/+StMjK8Y6Vqd2MG7r/Qjw4ghtuCOjFvlnms/iMmLqpvW/ES/WQ==
3009 |
3010 | repeat-string@^1.6.1:
3011 | version "1.6.1"
3012 | resolved "https://registry.yarnpkg.com/repeat-string/-/repeat-string-1.6.1.tgz#8dcae470e1c88abc2d600fff4a776286da75e637"
3013 | integrity sha512-PV0dzCYDNfRi1jCDbJzpW7jNNDRuCOG/jI5ctQcGKt/clZD+YcPS3yIlWuTJMmESC8aevCFmWJy5wjAFgNqN6w==
3014 |
3015 | resolve-from@^3.0.0:
3016 | version "3.0.0"
3017 | resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-3.0.0.tgz#b22c7af7d9d6881bc8b6e653335eebcb0a188748"
3018 | integrity sha512-GnlH6vxLymXJNMBo7XP1fJIzBFbdYt49CuTwmB/6N53t+kMPRMFKz783LlQ4tv28XoQfMWinAJX6WCGf2IlaIw==
3019 |
3020 | resolve-url@^0.2.1:
3021 | version "0.2.1"
3022 | resolved "https://registry.yarnpkg.com/resolve-url/-/resolve-url-0.2.1.tgz#2c637fe77c893afd2a663fe21aa9080068e2052a"
3023 | integrity sha512-ZuF55hVUQaaczgOIwqWzkEcEidmlD/xl44x1UZnhOXcYuFN2S6+rcxpG+C1N3So0wvNI3DmJICUFfu2SxhBmvg==
3024 |
3025 | resolve@^1.10.0, resolve@^1.14.2:
3026 | version "1.22.1"
3027 | resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.22.1.tgz#27cb2ebb53f91abb49470a928bba7558066ac177"
3028 | integrity sha512-nBpuuYuY5jFsli/JIs1oldw6fOQCBioohqWZg/2hiaOybXOft4lonv85uDOKXdf8rhyK159cxU5cDcK/NKk8zw==
3029 | dependencies:
3030 | is-core-module "^2.9.0"
3031 | path-parse "^1.0.7"
3032 | supports-preserve-symlinks-flag "^1.0.0"
3033 |
3034 | restore-cursor@^2.0.0:
3035 | version "2.0.0"
3036 | resolved "https://registry.yarnpkg.com/restore-cursor/-/restore-cursor-2.0.0.tgz#9f7ee287f82fd326d4fd162923d62129eee0dfaf"
3037 | integrity sha512-6IzJLuGi4+R14vwagDHX+JrXmPVtPpn4mffDJ1UdR7/Edm87fl6yi8mMBIVvFtJaNTUvjughmW4hwLhRG7gC1Q==
3038 | dependencies:
3039 | onetime "^2.0.0"
3040 | signal-exit "^3.0.2"
3041 |
3042 | ret@~0.1.10:
3043 | version "0.1.15"
3044 | resolved "https://registry.yarnpkg.com/ret/-/ret-0.1.15.tgz#b8a4825d5bdb1fc3f6f53c2bc33f81388681c7bc"
3045 | integrity sha512-TTlYpa+OL+vMMNG24xSlQGEJ3B/RzEfUlLct7b5G/ytav+wPrplCpVMFuwzXbkecJrb6IYo1iFb0S9v37754mg==
3046 |
3047 | run-node@^1.0.0:
3048 | version "1.0.0"
3049 | resolved "https://registry.yarnpkg.com/run-node/-/run-node-1.0.0.tgz#46b50b946a2aa2d4947ae1d886e9856fd9cabe5e"
3050 | integrity sha512-kc120TBlQ3mih1LSzdAJXo4xn/GWS2ec0l3S+syHDXP9uRr0JAT8Qd3mdMuyjqCzeZktgP3try92cEgf9Nks8A==
3051 |
3052 | rxjs@^6.3.3:
3053 | version "6.6.7"
3054 | resolved "https://registry.yarnpkg.com/rxjs/-/rxjs-6.6.7.tgz#90ac018acabf491bf65044235d5863c4dab804c9"
3055 | integrity sha512-hTdwr+7yYNIT5n4AMYp85KA6yw2Va0FLa3Rguvbpa4W3I5xynaBZo41cM3XM+4Q6fRMj3sBYIR1VAmZMXYJvRQ==
3056 | dependencies:
3057 | tslib "^1.9.0"
3058 |
3059 | safe-buffer@~5.1.0, safe-buffer@~5.1.1:
3060 | version "5.1.2"
3061 | resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.1.2.tgz#991ec69d296e0313747d59bdfd2b745c35f8828d"
3062 | integrity sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==
3063 |
3064 | safe-regex@^1.1.0:
3065 | version "1.1.0"
3066 | resolved "https://registry.yarnpkg.com/safe-regex/-/safe-regex-1.1.0.tgz#40a3669f3b077d1e943d44629e157dd48023bf2e"
3067 | integrity sha512-aJXcif4xnaNUzvUuC5gcb46oTS7zvg4jpMTnuqtrEPlR3vFr4pxtdTwaF1Qs3Enjn9HK+ZlwQui+a7z0SywIzg==
3068 | dependencies:
3069 | ret "~0.1.10"
3070 |
3071 | semver-compare@^1.0.0:
3072 | version "1.0.0"
3073 | resolved "https://registry.yarnpkg.com/semver-compare/-/semver-compare-1.0.0.tgz#0dee216a1c941ab37e9efb1788f6afc5ff5537fc"
3074 | integrity sha512-YM3/ITh2MJ5MtzaM429anh+x2jiLVjqILF4m4oyQB18W7Ggea7BfqdH/wGMK7dDiMghv/6WG7znWMwUDzJiXow==
3075 |
3076 | "semver@2 || 3 || 4 || 5", semver@^5.5.0, semver@^5.6.0:
3077 | version "5.7.1"
3078 | resolved "https://registry.yarnpkg.com/semver/-/semver-5.7.1.tgz#a954f931aeba508d307bbf069eff0c01c96116f7"
3079 | integrity sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==
3080 |
3081 | semver@^6.1.1, semver@^6.1.2, semver@^6.3.0:
3082 | version "6.3.0"
3083 | resolved "https://registry.yarnpkg.com/semver/-/semver-6.3.0.tgz#ee0a64c8af5e8ceea67687b133761e1becbd1d3d"
3084 | integrity sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==
3085 |
3086 | set-value@^2.0.0, set-value@^2.0.1:
3087 | version "2.0.1"
3088 | resolved "https://registry.yarnpkg.com/set-value/-/set-value-2.0.1.tgz#a18d40530e6f07de4228c7defe4227af8cad005b"
3089 | integrity sha512-JxHc1weCN68wRY0fhCoXpyK55m/XPHafOmK4UWD7m2CI14GMcFypt4w/0+NV5f/ZMby2F6S2wwA7fgynh9gWSw==
3090 | dependencies:
3091 | extend-shallow "^2.0.1"
3092 | is-extendable "^0.1.1"
3093 | is-plain-object "^2.0.3"
3094 | split-string "^3.0.1"
3095 |
3096 | shallow-clone@^3.0.0:
3097 | version "3.0.1"
3098 | resolved "https://registry.yarnpkg.com/shallow-clone/-/shallow-clone-3.0.1.tgz#8f2981ad92531f55035b01fb230769a40e02efa3"
3099 | integrity sha512-/6KqX+GVUdqPuPPd2LxDDxzX6CAbjJehAAOKlNpqqUpAqPM6HeL8f+o3a+JsyGjn2lv0WY8UsTgUJjU9Ok55NA==
3100 | dependencies:
3101 | kind-of "^6.0.2"
3102 |
3103 | shebang-command@^1.2.0:
3104 | version "1.2.0"
3105 | resolved "https://registry.yarnpkg.com/shebang-command/-/shebang-command-1.2.0.tgz#44aac65b695b03398968c39f363fee5deafdf1ea"
3106 | integrity sha512-EV3L1+UQWGor21OmnvojK36mhg+TyIKDh3iFBKBohr5xeXIhNBcx8oWdgkTEEQ+BEFFYdLRuqMfd5L84N1V5Vg==
3107 | dependencies:
3108 | shebang-regex "^1.0.0"
3109 |
3110 | shebang-regex@^1.0.0:
3111 | version "1.0.0"
3112 | resolved "https://registry.yarnpkg.com/shebang-regex/-/shebang-regex-1.0.0.tgz#da42f49740c0b42db2ca9728571cb190c98efea3"
3113 | integrity sha512-wpoSFAxys6b2a2wHZ1XpDSgD7N9iVjg29Ph9uV/uaP9Ex/KXlkTZTeddxDPSYQpgvzKLGJke2UU0AzoGCjNIvQ==
3114 |
3115 | signal-exit@^3.0.0, signal-exit@^3.0.2:
3116 | version "3.0.7"
3117 | resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.7.tgz#a9a1767f8af84155114eaabd73f99273c8f59ad9"
3118 | integrity sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==
3119 |
3120 | slash@^2.0.0:
3121 | version "2.0.0"
3122 | resolved "https://registry.yarnpkg.com/slash/-/slash-2.0.0.tgz#de552851a1759df3a8f206535442f5ec4ddeab44"
3123 | integrity sha512-ZYKh3Wh2z1PpEXWr0MpSBZ0V6mZHAQfYevttO11c51CaWjGTaadiKZ+wVt1PbMlDV5qhMFslpZCemhwOK7C89A==
3124 |
3125 | slice-ansi@0.0.4:
3126 | version "0.0.4"
3127 | resolved "https://registry.yarnpkg.com/slice-ansi/-/slice-ansi-0.0.4.tgz#edbf8903f66f7ce2f8eafd6ceed65e264c831b35"
3128 | integrity sha512-up04hB2hR92PgjpyU3y/eg91yIBILyjVY26NvvciY3EVVPjybkMszMpXQ9QAkcS3I5rtJBDLoTxxg+qvW8c7rw==
3129 |
3130 | snapdragon-node@^2.0.1:
3131 | version "2.1.1"
3132 | resolved "https://registry.yarnpkg.com/snapdragon-node/-/snapdragon-node-2.1.1.tgz#6c175f86ff14bdb0724563e8f3c1b021a286853b"
3133 | integrity sha512-O27l4xaMYt/RSQ5TR3vpWCAB5Kb/czIcqUFOM/C4fYcLnbZUc1PkjTAMjof2pBWaSTwOUd6qUHcFGVGj7aIwnw==
3134 | dependencies:
3135 | define-property "^1.0.0"
3136 | isobject "^3.0.0"
3137 | snapdragon-util "^3.0.1"
3138 |
3139 | snapdragon-util@^3.0.1:
3140 | version "3.0.1"
3141 | resolved "https://registry.yarnpkg.com/snapdragon-util/-/snapdragon-util-3.0.1.tgz#f956479486f2acd79700693f6f7b805e45ab56e2"
3142 | integrity sha512-mbKkMdQKsjX4BAL4bRYTj21edOf8cN7XHdYUJEe+Zn99hVEYcMvKPct1IqNe7+AZPirn8BCDOQBHQZknqmKlZQ==
3143 | dependencies:
3144 | kind-of "^3.2.0"
3145 |
3146 | snapdragon@^0.8.1:
3147 | version "0.8.2"
3148 | resolved "https://registry.yarnpkg.com/snapdragon/-/snapdragon-0.8.2.tgz#64922e7c565b0e14204ba1aa7d6964278d25182d"
3149 | integrity sha512-FtyOnWN/wCHTVXOMwvSv26d+ko5vWlIDD6zoUJ7LW8vh+ZBC8QdljveRP+crNrtBwioEUWy/4dMtbBjA4ioNlg==
3150 | dependencies:
3151 | base "^0.11.1"
3152 | debug "^2.2.0"
3153 | define-property "^0.2.5"
3154 | extend-shallow "^2.0.1"
3155 | map-cache "^0.2.2"
3156 | source-map "^0.5.6"
3157 | source-map-resolve "^0.5.0"
3158 | use "^3.1.0"
3159 |
3160 | source-map-resolve@^0.5.0:
3161 | version "0.5.3"
3162 | resolved "https://registry.yarnpkg.com/source-map-resolve/-/source-map-resolve-0.5.3.tgz#190866bece7553e1f8f267a2ee82c606b5509a1a"
3163 | integrity sha512-Htz+RnsXWk5+P2slx5Jh3Q66vhQj1Cllm0zvnaY98+NFx+Dv2CF/f5O/t8x+KaNdrdIAsruNzoh/KpialbqAnw==
3164 | dependencies:
3165 | atob "^2.1.2"
3166 | decode-uri-component "^0.2.0"
3167 | resolve-url "^0.2.1"
3168 | source-map-url "^0.4.0"
3169 | urix "^0.1.0"
3170 |
3171 | source-map-support@^0.5.16:
3172 | version "0.5.21"
3173 | resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.5.21.tgz#04fe7c7f9e1ed2d662233c28cb2b35b9f63f6e4f"
3174 | integrity sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w==
3175 | dependencies:
3176 | buffer-from "^1.0.0"
3177 | source-map "^0.6.0"
3178 |
3179 | source-map-url@^0.4.0:
3180 | version "0.4.1"
3181 | resolved "https://registry.yarnpkg.com/source-map-url/-/source-map-url-0.4.1.tgz#0af66605a745a5a2f91cf1bbf8a7afbc283dec56"
3182 | integrity sha512-cPiFOTLUKvJFIg4SKVScy4ilPPW6rFgMgfuZJPNoDuMs3nC1HbMUycBoJw77xFIp6z1UJQJOfx6C9GMH80DiTw==
3183 |
3184 | source-map@^0.5.6:
3185 | version "0.5.7"
3186 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.5.7.tgz#8a039d2d1021d22d1ea14c80d8ea468ba2ef3fcc"
3187 | integrity sha512-LbrmJOMUSdEVxIKvdcJzQC+nQhe8FUZQTXQy6+I75skNgn3OoQ0DZA8YnFa7gp8tqtL3KPf1kmo0R5DoApeSGQ==
3188 |
3189 | source-map@^0.6.0, source-map@~0.6.1:
3190 | version "0.6.1"
3191 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.6.1.tgz#74722af32e9614e9c287a8d0bbde48b5e2f1a263"
3192 | integrity sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==
3193 |
3194 | spdx-correct@^3.0.0:
3195 | version "3.1.1"
3196 | resolved "https://registry.yarnpkg.com/spdx-correct/-/spdx-correct-3.1.1.tgz#dece81ac9c1e6713e5f7d1b6f17d468fa53d89a9"
3197 | integrity sha512-cOYcUWwhCuHCXi49RhFRCyJEK3iPj1Ziz9DpViV3tbZOwXD49QzIN3MpOLJNxh2qwq2lJJZaKMVw9qNi4jTC0w==
3198 | dependencies:
3199 | spdx-expression-parse "^3.0.0"
3200 | spdx-license-ids "^3.0.0"
3201 |
3202 | spdx-exceptions@^2.1.0:
3203 | version "2.3.0"
3204 | resolved "https://registry.yarnpkg.com/spdx-exceptions/-/spdx-exceptions-2.3.0.tgz#3f28ce1a77a00372683eade4a433183527a2163d"
3205 | integrity sha512-/tTrYOC7PPI1nUAgx34hUpqXuyJG+DTHJTnIULG4rDygi4xu/tfgmq1e1cIRwRzwZgo4NLySi+ricLkZkw4i5A==
3206 |
3207 | spdx-expression-parse@^3.0.0:
3208 | version "3.0.1"
3209 | resolved "https://registry.yarnpkg.com/spdx-expression-parse/-/spdx-expression-parse-3.0.1.tgz#cf70f50482eefdc98e3ce0a6833e4a53ceeba679"
3210 | integrity sha512-cbqHunsQWnJNE6KhVSMsMeH5H/L9EpymbzqTQ3uLwNCLZ1Q481oWaofqH7nO6V07xlXwY6PhQdQ2IedWx/ZK4Q==
3211 | dependencies:
3212 | spdx-exceptions "^2.1.0"
3213 | spdx-license-ids "^3.0.0"
3214 |
3215 | spdx-license-ids@^3.0.0:
3216 | version "3.0.12"
3217 | resolved "https://registry.yarnpkg.com/spdx-license-ids/-/spdx-license-ids-3.0.12.tgz#69077835abe2710b65f03969898b6637b505a779"
3218 | integrity sha512-rr+VVSXtRhO4OHbXUiAF7xW3Bo9DuuF6C5jH+q/x15j2jniycgKbxU09Hr0WqlSLUs4i4ltHGXqTe7VHclYWyA==
3219 |
3220 | split-string@^3.0.1, split-string@^3.0.2:
3221 | version "3.1.0"
3222 | resolved "https://registry.yarnpkg.com/split-string/-/split-string-3.1.0.tgz#7cb09dda3a86585705c64b39a6466038682e8fe2"
3223 | integrity sha512-NzNVhJDYpwceVVii8/Hu6DKfD2G+NrQHlS/V/qgv763EYudVwEcMQNxd2lh+0VrUByXN/oJkl5grOhYWvQUYiw==
3224 | dependencies:
3225 | extend-shallow "^3.0.0"
3226 |
3227 | sprintf-js@~1.0.2:
3228 | version "1.0.3"
3229 | resolved "https://registry.yarnpkg.com/sprintf-js/-/sprintf-js-1.0.3.tgz#04e6926f662895354f3dd015203633b857297e2c"
3230 | integrity sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g==
3231 |
3232 | staged-git-files@1.1.1:
3233 | version "1.1.1"
3234 | resolved "https://registry.yarnpkg.com/staged-git-files/-/staged-git-files-1.1.1.tgz#37c2218ef0d6d26178b1310719309a16a59f8f7b"
3235 | integrity sha512-H89UNKr1rQJvI1c/PIR3kiAMBV23yvR7LItZiV74HWZwzt7f3YHuujJ9nJZlt58WlFox7XQsOahexwk7nTe69A==
3236 |
3237 | static-extend@^0.1.1:
3238 | version "0.1.2"
3239 | resolved "https://registry.yarnpkg.com/static-extend/-/static-extend-0.1.2.tgz#60809c39cbff55337226fd5e0b520f341f1fb5c6"
3240 | integrity sha512-72E9+uLc27Mt718pMHt9VMNiAL4LMsmDbBva8mxWUCkT07fSzEGMYUCk0XWY6lp0j6RBAG4cJ3mWuZv2OE3s0g==
3241 | dependencies:
3242 | define-property "^0.2.5"
3243 | object-copy "^0.1.0"
3244 |
3245 | string-argv@^0.0.2:
3246 | version "0.0.2"
3247 | resolved "https://registry.yarnpkg.com/string-argv/-/string-argv-0.0.2.tgz#dac30408690c21f3c3630a3ff3a05877bdcbd736"
3248 | integrity sha512-p6/Mqq0utTQWUeGMi/m0uBtlLZEwXSY3+mXzeRRqw7fz5ezUb28Wr0R99NlfbWaMmL/jCyT9be4jpn7Yz8IO8w==
3249 |
3250 | string-width@^1.0.1:
3251 | version "1.0.2"
3252 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-1.0.2.tgz#118bdf5b8cdc51a2a7e70d211e07e2b0b9b107d3"
3253 | integrity sha512-0XsVpQLnVCXHJfyEs8tC0zpTVIr5PKKsQtkT29IwupnPTjtPmQ3xT/4yCREF9hYkV/3M3kzcUTSAZT6a6h81tw==
3254 | dependencies:
3255 | code-point-at "^1.0.0"
3256 | is-fullwidth-code-point "^1.0.0"
3257 | strip-ansi "^3.0.0"
3258 |
3259 | string-width@^2.1.1:
3260 | version "2.1.1"
3261 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-2.1.1.tgz#ab93f27a8dc13d28cac815c462143a6d9012ae9e"
3262 | integrity sha512-nOqH59deCq9SRHlxq1Aw85Jnt4w6KvLKqWVik6oA9ZklXLNIOlqg4F2yrT1MVaTjAqvVwdfeZ7w7aCvJD7ugkw==
3263 | dependencies:
3264 | is-fullwidth-code-point "^2.0.0"
3265 | strip-ansi "^4.0.0"
3266 |
3267 | string_decoder@~1.1.1:
3268 | version "1.1.1"
3269 | resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.1.1.tgz#9cf1611ba62685d7030ae9e4ba34149c3af03fc8"
3270 | integrity sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==
3271 | dependencies:
3272 | safe-buffer "~5.1.0"
3273 |
3274 | stringifier@^1.0.1:
3275 | version "1.4.0"
3276 | resolved "https://registry.yarnpkg.com/stringifier/-/stringifier-1.4.0.tgz#d704581567f4526265d00ed8ecb354a02c3fec28"
3277 | integrity sha512-cNsMOqqrcbLcHTXEVmkw9y0fwDwkdgtZwlfyolzpQDoAE1xdNGhQhxBUfiDvvZIKl1hnUEgMv66nHwtMz3OjPw==
3278 | dependencies:
3279 | core-js "^2.0.0"
3280 | traverse "^0.6.6"
3281 | type-name "^2.0.1"
3282 |
3283 | stringify-object@^3.2.2:
3284 | version "3.3.0"
3285 | resolved "https://registry.yarnpkg.com/stringify-object/-/stringify-object-3.3.0.tgz#703065aefca19300d3ce88af4f5b3956d7556629"
3286 | integrity sha512-rHqiFh1elqCQ9WPLIC8I0Q/g/wj5J1eMkyoiD6eoQApWHP0FtlK7rqnhmabL5VUY9JQCcqwwvlOaSuutekgyrw==
3287 | dependencies:
3288 | get-own-enumerable-property-symbols "^3.0.0"
3289 | is-obj "^1.0.1"
3290 | is-regexp "^1.0.0"
3291 |
3292 | strip-ansi@^3.0.0, strip-ansi@^3.0.1:
3293 | version "3.0.1"
3294 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-3.0.1.tgz#6a385fb8853d952d5ff05d0e8aaf94278dc63dcf"
3295 | integrity sha512-VhumSSbBqDTP8p2ZLKj40UjBCV4+v8bUSEpUb4KjRgWk9pbqGF4REFj6KEagidb2f/M6AzC0EmFyDNGaw9OCzg==
3296 | dependencies:
3297 | ansi-regex "^2.0.0"
3298 |
3299 | strip-ansi@^4.0.0:
3300 | version "4.0.0"
3301 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-4.0.0.tgz#a8479022eb1ac368a871389b635262c505ee368f"
3302 | integrity sha512-4XaJ2zQdCzROZDivEVIDPkcQn8LMFSa8kj8Gxb/Lnwzv9A8VctNZ+lfivC/sV3ivW8ElJTERXZoPBRrZKkNKow==
3303 | dependencies:
3304 | ansi-regex "^3.0.0"
3305 |
3306 | strip-eof@^1.0.0:
3307 | version "1.0.0"
3308 | resolved "https://registry.yarnpkg.com/strip-eof/-/strip-eof-1.0.0.tgz#bb43ff5598a6eb05d89b59fcd129c983313606bf"
3309 | integrity sha512-7FCwGGmx8mD5xQd3RPUvnSpUXHM3BWuzjtpD4TXsfcZ9EL4azvVVUscFYwD9nx8Kh+uCBC00XBtAykoMHwTh8Q==
3310 |
3311 | supports-color@5.4.0:
3312 | version "5.4.0"
3313 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-5.4.0.tgz#1c6b337402c2137605efe19f10fec390f6faab54"
3314 | integrity sha512-zjaXglF5nnWpsq470jSv6P9DwPvgLkuapYmfDm3JWOm0vkNTVF2tI4UrN2r6jH1qM/uc/WtxYY1hYoA2dOKj5w==
3315 | dependencies:
3316 | has-flag "^3.0.0"
3317 |
3318 | supports-color@^2.0.0:
3319 | version "2.0.0"
3320 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-2.0.0.tgz#535d045ce6b6363fa40117084629995e9df324c7"
3321 | integrity sha512-KKNVtd6pCYgPIKU4cp2733HWYCpplQhddZLBUryaAHou723x+FRzQ5Df824Fj+IyyuiQTRoub4SnIFfIcrp70g==
3322 |
3323 | supports-color@^5.3.0:
3324 | version "5.5.0"
3325 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-5.5.0.tgz#e2e69a44ac8772f78a1ec0b35b689df6530efc8f"
3326 | integrity sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==
3327 | dependencies:
3328 | has-flag "^3.0.0"
3329 |
3330 | supports-preserve-symlinks-flag@^1.0.0:
3331 | version "1.0.0"
3332 | resolved "https://registry.yarnpkg.com/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz#6eda4bd344a3c94aea376d4cc31bc77311039e09"
3333 | integrity sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==
3334 |
3335 | symbol-observable@^1.1.0:
3336 | version "1.2.0"
3337 | resolved "https://registry.yarnpkg.com/symbol-observable/-/symbol-observable-1.2.0.tgz#c22688aed4eab3cdc2dfeacbb561660560a00804"
3338 | integrity sha512-e900nM8RRtGhlV36KGEU9k65K3mPb1WV70OdjfxlG2EAuM1noi/E/BaW/uMhL7bPEssK8QV57vN3esixjUvcXQ==
3339 |
3340 | tagged-template-to-ast@^2.0.0:
3341 | version "2.0.0"
3342 | resolved "https://registry.yarnpkg.com/tagged-template-to-ast/-/tagged-template-to-ast-2.0.0.tgz#750b3cd98988ef0506c054475c24a558d695e908"
3343 | integrity sha512-JFSnZvW0xUbf3GyRyezYNcb1713L9xEtc8jUOvf10b6GiiDXt0jhThWglVFw0jclohru9KJ3juv0hnQ3ee5t+w==
3344 | dependencies:
3345 | escodegen "^1.6.1"
3346 | espree "^3.1.5"
3347 |
3348 | to-fast-properties@^2.0.0:
3349 | version "2.0.0"
3350 | resolved "https://registry.yarnpkg.com/to-fast-properties/-/to-fast-properties-2.0.0.tgz#dc5e698cbd079265bc73e0377681a4e4e83f616e"
3351 | integrity sha512-/OaKK0xYrs3DmxRYqL/yDc+FxFUVYhDlXMhRmv3z915w2HF1tnN1omB354j8VUGO/hbRzyD6Y3sA7v7GS/ceog==
3352 |
3353 | to-object-path@^0.3.0:
3354 | version "0.3.0"
3355 | resolved "https://registry.yarnpkg.com/to-object-path/-/to-object-path-0.3.0.tgz#297588b7b0e7e0ac08e04e672f85c1f4999e17af"
3356 | integrity sha512-9mWHdnGRuh3onocaHzukyvCZhzvr6tiflAy/JRFXcJX0TjgfWA9pk9t8CMbzmBE4Jfw58pXbkngtBtqYxzNEyg==
3357 | dependencies:
3358 | kind-of "^3.0.2"
3359 |
3360 | to-regex-range@^2.1.0:
3361 | version "2.1.1"
3362 | resolved "https://registry.yarnpkg.com/to-regex-range/-/to-regex-range-2.1.1.tgz#7c80c17b9dfebe599e27367e0d4dd5590141db38"
3363 | integrity sha512-ZZWNfCjUokXXDGXFpZehJIkZqq91BcULFq/Pi7M5i4JnxXdhMKAK682z8bCW3o8Hj1wuuzoKcW3DfVzaP6VuNg==
3364 | dependencies:
3365 | is-number "^3.0.0"
3366 | repeat-string "^1.6.1"
3367 |
3368 | to-regex-range@^5.0.1:
3369 | version "5.0.1"
3370 | resolved "https://registry.yarnpkg.com/to-regex-range/-/to-regex-range-5.0.1.tgz#1648c44aae7c8d988a326018ed72f5b4dd0392e4"
3371 | integrity sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==
3372 | dependencies:
3373 | is-number "^7.0.0"
3374 |
3375 | to-regex@^3.0.1, to-regex@^3.0.2:
3376 | version "3.0.2"
3377 | resolved "https://registry.yarnpkg.com/to-regex/-/to-regex-3.0.2.tgz#13cfdd9b336552f30b51f33a8ae1b42a7a7599ce"
3378 | integrity sha512-FWtleNAtZ/Ki2qtqej2CXTOayOH9bHDQF+Q48VpWyDXjbYxA4Yz8iDB31zXOBUlOHHKidDbqGVrTUvQMPmBGBw==
3379 | dependencies:
3380 | define-property "^2.0.2"
3381 | extend-shallow "^3.0.2"
3382 | regex-not "^1.0.2"
3383 | safe-regex "^1.1.0"
3384 |
3385 | traverse@^0.6.6:
3386 | version "0.6.6"
3387 | resolved "https://registry.yarnpkg.com/traverse/-/traverse-0.6.6.tgz#cbdf560fd7b9af632502fed40f918c157ea97137"
3388 | integrity sha512-kdf4JKs8lbARxWdp7RKdNzoJBhGUcIalSYibuGyHJbmk40pOysQ0+QPvlkCOICOivDWU2IJo2rkrxyTK2AH4fw==
3389 |
3390 | tslib@^1.9.0:
3391 | version "1.14.1"
3392 | resolved "https://registry.yarnpkg.com/tslib/-/tslib-1.14.1.tgz#cf2d38bdc34a134bcaf1091c41f6619e2f672d00"
3393 | integrity sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==
3394 |
3395 | type-check@~0.3.2:
3396 | version "0.3.2"
3397 | resolved "https://registry.yarnpkg.com/type-check/-/type-check-0.3.2.tgz#5884cab512cf1d355e3fb784f30804b2b520db72"
3398 | integrity sha512-ZCmOJdvOWDBYJlzAoFkC+Q0+bUyEOS1ltgp1MGU03fqHG+dbi9tBFU2Rd9QKiDZFAYrhPh2JUf7rZRIuHRKtOg==
3399 | dependencies:
3400 | prelude-ls "~1.1.2"
3401 |
3402 | type-name@^1.0.1:
3403 | version "1.1.0"
3404 | resolved "https://registry.yarnpkg.com/type-name/-/type-name-1.1.0.tgz#ad9c3f7c330f5b2f08de7d79f56d2b9451e42b0e"
3405 | integrity sha512-CDtdRdtLvu7B9rJSiD17HJsvzX/ieeSEjzktXaCOTPkJLko2MS+xi9Um9EbQp+ChwRoFgFKCD0OU1P5UGjehqw==
3406 |
3407 | type-name@^2.0.1:
3408 | version "2.0.2"
3409 | resolved "https://registry.yarnpkg.com/type-name/-/type-name-2.0.2.tgz#efe7d4123d8ac52afff7f40c7e4dec5266008fb4"
3410 | integrity sha512-kkgkuqR/jKdKO5oh/I2SMu2dGbLXoJq0zkdgbxaqYK+hr9S9edwVVGf+tMUFTx2gH9TN2+Zu9JZ/Njonb3cjhA==
3411 |
3412 | typedarray@^0.0.6:
3413 | version "0.0.6"
3414 | resolved "https://registry.yarnpkg.com/typedarray/-/typedarray-0.0.6.tgz#867ac74e3864187b1d3d47d996a78ec5c8830777"
3415 | integrity sha512-/aCDEGatGvZ2BIk+HmLf4ifCJFwvKFNb9/JeZPMulfgFracn9QFcAf5GO8B/mweUjSoblS5In0cWhqpfs/5PQA==
3416 |
3417 | unicode-canonical-property-names-ecmascript@^2.0.0:
3418 | version "2.0.0"
3419 | resolved "https://registry.yarnpkg.com/unicode-canonical-property-names-ecmascript/-/unicode-canonical-property-names-ecmascript-2.0.0.tgz#301acdc525631670d39f6146e0e77ff6bbdebddc"
3420 | integrity sha512-yY5PpDlfVIU5+y/BSCxAJRBIS1Zc2dDG3Ujq+sR0U+JjUevW2JhocOF+soROYDSaAezOzOKuyyixhD6mBknSmQ==
3421 |
3422 | unicode-match-property-ecmascript@^2.0.0:
3423 | version "2.0.0"
3424 | resolved "https://registry.yarnpkg.com/unicode-match-property-ecmascript/-/unicode-match-property-ecmascript-2.0.0.tgz#54fd16e0ecb167cf04cf1f756bdcc92eba7976c3"
3425 | integrity sha512-5kaZCrbp5mmbz5ulBkDkbY0SsPOjKqVS35VpL9ulMPfSl0J0Xsm+9Evphv9CoIZFwre7aJoa94AY6seMKGVN5Q==
3426 | dependencies:
3427 | unicode-canonical-property-names-ecmascript "^2.0.0"
3428 | unicode-property-aliases-ecmascript "^2.0.0"
3429 |
3430 | unicode-match-property-value-ecmascript@^2.0.0:
3431 | version "2.0.0"
3432 | resolved "https://registry.yarnpkg.com/unicode-match-property-value-ecmascript/-/unicode-match-property-value-ecmascript-2.0.0.tgz#1a01aa57247c14c568b89775a54938788189a714"
3433 | integrity sha512-7Yhkc0Ye+t4PNYzOGKedDhXbYIBe1XEQYQxOPyhcXNMJ0WCABqqj6ckydd6pWRZTHV4GuCPKdBAUiMc60tsKVw==
3434 |
3435 | unicode-property-aliases-ecmascript@^2.0.0:
3436 | version "2.1.0"
3437 | resolved "https://registry.yarnpkg.com/unicode-property-aliases-ecmascript/-/unicode-property-aliases-ecmascript-2.1.0.tgz#43d41e3be698bd493ef911077c9b131f827e8ccd"
3438 | integrity sha512-6t3foTQI9qne+OZoVQB/8x8rk2k1eVy1gRXhV3oFQ5T6R1dqQ1xtin3XqSlx3+ATBkliTaR/hHyJBm+LVPNM8w==
3439 |
3440 | union-value@^1.0.0:
3441 | version "1.0.1"
3442 | resolved "https://registry.yarnpkg.com/union-value/-/union-value-1.0.1.tgz#0b6fe7b835aecda61c6ea4d4f02c14221e109847"
3443 | integrity sha512-tJfXmxMeWYnczCVs7XAEvIV7ieppALdyepWMkHkwciRpZraG/xwT+s2JN8+pr1+8jCRf80FFzvr+MpQeeoF4Xg==
3444 | dependencies:
3445 | arr-union "^3.1.0"
3446 | get-value "^2.0.6"
3447 | is-extendable "^0.1.1"
3448 | set-value "^2.0.1"
3449 |
3450 | unset-value@^1.0.0:
3451 | version "1.0.0"
3452 | resolved "https://registry.yarnpkg.com/unset-value/-/unset-value-1.0.0.tgz#8376873f7d2335179ffb1e6fc3a8ed0dfc8ab559"
3453 | integrity sha512-PcA2tsuGSF9cnySLHTLSh2qrQiJ70mn+r+Glzxv2TWZblxsxCC52BDlZoPCsz7STd9pN7EZetkWZBAvk4cgZdQ==
3454 | dependencies:
3455 | has-value "^0.3.1"
3456 | isobject "^3.0.0"
3457 |
3458 | update-browserslist-db@^1.0.9:
3459 | version "1.0.10"
3460 | resolved "https://registry.yarnpkg.com/update-browserslist-db/-/update-browserslist-db-1.0.10.tgz#0f54b876545726f17d00cd9a2561e6dade943ff3"
3461 | integrity sha512-OztqDenkfFkbSG+tRxBeAnCVPckDBcvibKd35yDONx6OU8N7sqgwc7rCbkJ/WcYtVRZ4ba68d6byhC21GFh7sQ==
3462 | dependencies:
3463 | escalade "^3.1.1"
3464 | picocolors "^1.0.0"
3465 |
3466 | urix@^0.1.0:
3467 | version "0.1.0"
3468 | resolved "https://registry.yarnpkg.com/urix/-/urix-0.1.0.tgz#da937f7a62e21fec1fd18d49b35c2935067a6c72"
3469 | integrity sha512-Am1ousAhSLBeB9cG/7k7r2R0zj50uDRlZHPGbazid5s9rlF1F/QKYObEKSIunSjIOkJZqwRRLpvewjEkM7pSqg==
3470 |
3471 | use@^3.1.0:
3472 | version "3.1.1"
3473 | resolved "https://registry.yarnpkg.com/use/-/use-3.1.1.tgz#d50c8cac79a19fbc20f2911f56eb973f4e10070f"
3474 | integrity sha512-cwESVXlO3url9YWlFW/TA9cshCEhtu7IKJ/p5soJ/gGpj7vbvFrAY/eIioQ6Dw23KjZhYgiIo8HOs1nQ2vr/oQ==
3475 |
3476 | util-deprecate@~1.0.1:
3477 | version "1.0.2"
3478 | resolved "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf"
3479 | integrity sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==
3480 |
3481 | validate-npm-package-license@^3.0.1:
3482 | version "3.0.4"
3483 | resolved "https://registry.yarnpkg.com/validate-npm-package-license/-/validate-npm-package-license-3.0.4.tgz#fc91f6b9c7ba15c857f4cb2c5defeec39d4f410a"
3484 | integrity sha512-DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew==
3485 | dependencies:
3486 | spdx-correct "^3.0.0"
3487 | spdx-expression-parse "^3.0.0"
3488 |
3489 | which@^1.2.10, which@^1.2.9:
3490 | version "1.3.1"
3491 | resolved "https://registry.yarnpkg.com/which/-/which-1.3.1.tgz#a45043d54f5805316da8d62f9f50918d3da70b0a"
3492 | integrity sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==
3493 | dependencies:
3494 | isexe "^2.0.0"
3495 |
3496 | word-wrap@~1.2.3:
3497 | version "1.2.3"
3498 | resolved "https://registry.yarnpkg.com/word-wrap/-/word-wrap-1.2.3.tgz#610636f6b1f703891bd34771ccb17fb93b47079c"
3499 | integrity sha512-Hz/mrNwitNRh/HUAtM/VT/5VH+ygD6DV7mYKZAtHOrbs8U7lvPS6xf7EJKMF0uW1KJCl0H701g3ZGus+muE5vQ==
3500 |
3501 | wrap-ansi@^3.0.1:
3502 | version "3.0.1"
3503 | resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-3.0.1.tgz#288a04d87eda5c286e060dfe8f135ce8d007f8ba"
3504 | integrity sha512-iXR3tDXpbnTpzjKSylUJRkLuOrEC7hwEB221cgn6wtF8wpmz28puFXAEfPT5zrjM3wahygB//VuWEr1vTkDcNQ==
3505 | dependencies:
3506 | string-width "^2.1.1"
3507 | strip-ansi "^4.0.0"
3508 |
3509 | wrappy@1:
3510 | version "1.0.2"
3511 | resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f"
3512 | integrity sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==
3513 |
3514 | xtend@^4.0.0:
3515 | version "4.0.2"
3516 | resolved "https://registry.yarnpkg.com/xtend/-/xtend-4.0.2.tgz#bb72779f5fa465186b1f438f674fa347fdb5db54"
3517 | integrity sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ==
3518 |
3519 | yallist@^2.1.2:
3520 | version "2.1.2"
3521 | resolved "https://registry.yarnpkg.com/yallist/-/yallist-2.1.2.tgz#1c11f9218f076089a47dd512f93c6699a6a81d52"
3522 | integrity sha512-ncTzHV7NvsQZkYe1DW7cbDLm0YpzHmZF5r/iyP3ZnQtMiJ+pjzisCiMNI+Sj+xQF5pXhSHxSB3uDbsBTzY/c2A==
3523 |
--------------------------------------------------------------------------------