├── .babelrc
├── .gitignore
├── src
├── Specimens
│ ├── Example.js
│ ├── Hint.js
│ ├── Audio.js
│ ├── Video.js
│ ├── Typography.js
│ ├── Download.js
│ ├── ColorPalette.js
│ └── Color.js
├── gatsby-browser.js
├── utils
│ ├── svg.js
│ ├── parser.js
│ ├── colors.js
│ └── Transformer.js
└── index.js
├── .npmignore
├── LICENSE
├── package.json
├── .eslintrc
├── README.md
├── theme
└── gatsby-remark-design-system-theme.scss
└── yarn.lock
/.babelrc:
--------------------------------------------------------------------------------
1 | {
2 | "presets": [
3 | "env",
4 | "stage-0"
5 | ]
6 | }
--------------------------------------------------------------------------------
/.gitignore:
--------------------------------------------------------------------------------
1 | index.js
2 | gatsby-browser.js
3 | /Specimens
4 | /utils
5 | /node_modules
6 | .idea
7 | !/src/gatsby-browser.js
8 | !/src/index.js
--------------------------------------------------------------------------------
/src/Specimens/Example.js:
--------------------------------------------------------------------------------
1 | module.exports = class Example {
2 | constructor(classPrefix, node, index, parent) {
3 | this.classPrefix = classPrefix;
4 | this.node = node;
5 | this.index = index;
6 | this._index = this.index + 1;
7 | this.parent = parent;
8 | }
9 |
10 | output() {
11 | this.parent.children.splice(this._index, 0, {
12 | ...this.node,
13 | type: 'code',
14 | lang: 'html',
15 | });
16 |
17 | return `
18 |
19 | ${this.node.value}
20 |
21 | `;
22 | }
23 | };
24 |
--------------------------------------------------------------------------------
/src/gatsby-browser.js:
--------------------------------------------------------------------------------
1 | /* eslint no-new: 0 */
2 | const Clipboard = require('clipboard');
3 |
4 | exports.onClientEntry = () => {
5 | const clipboard = new Clipboard('.clippy');
6 |
7 | function showTooltip(elem) {
8 | elem.setAttribute('class', 'clippy tooltipped tooltipped-n');
9 | elem.setAttribute('aria-label', 'Copied to clipboard');
10 | setTimeout(() => {
11 | elem.setAttribute('class', 'clippy');
12 | elem.removeAttribute('aria-label');
13 | }, 1500);
14 | }
15 |
16 | clipboard.on('success', e => {
17 | e.clearSelection();
18 | showTooltip(e.trigger);
19 | });
20 | };
21 |
--------------------------------------------------------------------------------
/src/Specimens/Hint.js:
--------------------------------------------------------------------------------
1 | module.exports = class Hint {
2 | constructor(classPrefix, nodeValue, SpecimenOption = 'neutral') {
3 | this.classPrefix = classPrefix;
4 | this.nodeValue = nodeValue;
5 | this.SpecimenOption = SpecimenOption;
6 | }
7 |
8 | option() {
9 | if (this.SpecimenOption === 'directive') {
10 | return `${this.classPrefix}-hint__directive`;
11 | } else if (this.SpecimenOption === 'warning') {
12 | return `${this.classPrefix}-hint__warning`;
13 | }
14 | return '';
15 | }
16 |
17 | output() {
18 | return `
19 |
20 | ${this.nodeValue}
21 |
22 | `;
23 | }
24 | };
25 |
--------------------------------------------------------------------------------
/src/utils/svg.js:
--------------------------------------------------------------------------------
1 | module.exports.audio = () =>
2 | `
3 |
4 | `;
5 |
6 | module.exports.video = () =>
7 | `
8 |
9 | `;
10 |
11 | module.exports.download = () =>
12 | `
13 |
14 | `;
15 |
--------------------------------------------------------------------------------
/.npmignore:
--------------------------------------------------------------------------------
1 | # Logs
2 | logs
3 | *.log
4 |
5 | # Runtime data
6 | pids
7 | *.pid
8 | *.seed
9 |
10 | # Directory for instrumented libs generated by jscoverage/JSCover
11 | lib-cov
12 |
13 | # Coverage directory used by tools like istanbul
14 | coverage
15 |
16 | # Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files)
17 | .grunt
18 |
19 | # node-waf configuration
20 | .lock-wscript
21 |
22 | # Compiled binary addons (http://nodejs.org/api/addons.html)
23 | build/Release
24 |
25 | # Dependency directory
26 | # https://www.npmjs.org/doc/misc/npm-faq.html#should-i-check-my-node_modules-folder-into-git
27 | node_modules
28 | *.un~
29 | yarn.lock
30 | package.lock
31 | src
32 | flow-typed
33 | coverage
34 | decls
35 | examples
36 | .eslintrc
37 | .idea
--------------------------------------------------------------------------------
/src/Specimens/Audio.js:
--------------------------------------------------------------------------------
1 | const svg = require('../utils/svg');
2 |
3 | module.exports = class Audio {
4 | constructor(autoplay = 'false', classPrefix, loop = 'false', name = 'No name defined', src) {
5 | this.autoplay = autoplay;
6 | this.classPrefix = classPrefix;
7 | this.loop = loop;
8 | this.name = name;
9 | this.src = src;
10 | }
11 |
12 | output() {
13 | return `
14 |
15 |
${svg.audio()}${this.name}
16 |
19 |
20 | `;
21 | }
22 | };
23 |
--------------------------------------------------------------------------------
/src/Specimens/Video.js:
--------------------------------------------------------------------------------
1 | const svg = require('../utils/svg');
2 |
3 | module.exports = class Video {
4 | constructor(autoplay = 'false', classPrefix, loop = 'false', muted = 'false', name = 'No name defined', src) {
5 | this.autoplay = autoplay;
6 | this.classPrefix = classPrefix;
7 | this.loop = loop;
8 | this.muted = muted;
9 | this.name = name;
10 | this.src = src;
11 | }
12 |
13 | output() {
14 | return `
15 |
16 |
${svg.video()}${this.name}
17 |
20 |
21 | `;
22 | }
23 | };
24 |
--------------------------------------------------------------------------------
/src/utils/parser.js:
--------------------------------------------------------------------------------
1 | const fromPairs = require('lodash/fromPairs');
2 |
3 | module.exports.standardParse = function standardParse(input) {
4 | return fromPairs(input.split('\n').map(e => e.split(/:(?!\/\/|\d)/).map(x => x.trim()))); // Keep our forward slashes in URLs
5 | };
6 |
7 | module.exports.paletteParse = function paletteParse(input) {
8 | return input
9 | .split('\n')
10 | .map(x => x.split(','))
11 | .map(p => ({ name: p[0].trim(), color: p[1].trim() }));
12 | };
13 |
14 | module.exports.typographyParse = function typographyParse(input) {
15 | return input
16 | .split('\n')
17 | .map(x => x.split('|'))
18 | .map(p => ({
19 | size: p[0].trim(),
20 | weight: p[1].trim(),
21 | name: p[2].trim(),
22 | metrics: p[3].trim(),
23 | weightDesc: p[4].trim(),
24 | usage: p[5].trim(),
25 | }));
26 | };
27 |
--------------------------------------------------------------------------------
/LICENSE:
--------------------------------------------------------------------------------
1 | MIT License
2 |
3 | Copyright (c) 2018 Lennart
4 |
5 | Permission is hereby granted, free of charge, to any person obtaining a copy
6 | of this software and associated documentation files (the "Software"), to deal
7 | in the Software without restriction, including without limitation the rights
8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9 | copies of the Software, and to permit persons to whom the Software is
10 | furnished to do so, subject to the following conditions:
11 |
12 | The above copyright notice and this permission notice shall be included in all
13 | copies or substantial portions of the Software.
14 |
15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21 | SOFTWARE.
22 |
--------------------------------------------------------------------------------
/src/Specimens/Typography.js:
--------------------------------------------------------------------------------
1 | module.exports = class Typography {
2 | constructor(classPrefix, valueMap) {
3 | this.classPrefix = classPrefix;
4 | this.valueMap = valueMap;
5 | }
6 |
7 | typo() {
8 | return this.valueMap
9 | .map(
10 | t => `
11 |
12 | ${t.name}
13 |
14 |
15 |
16 |
Metrics
17 |
${t.metrics}
18 |
19 |
20 |
Weight
21 |
${t.weightDesc}
22 |
23 |
24 |
Usage
25 |
${t.usage}
26 |
27 |
28 |
`
29 | )
30 | .join('');
31 | }
32 |
33 | output() {
34 | return `
35 |
36 | ${this.typo()}
37 |
38 | `;
39 | }
40 | };
41 |
--------------------------------------------------------------------------------
/src/utils/colors.js:
--------------------------------------------------------------------------------
1 | module.exports.RGBToCMYK = function RGBToCMYK(_r, _g, _b) {
2 | let c;
3 | let m;
4 | let y;
5 | let k;
6 |
7 | const r = parseInt(`${_r}`.replace(/\s/g, ''), 10);
8 | const g = parseInt(`${_g}`.replace(/\s/g, ''), 10);
9 | const b = parseInt(`${_b}`.replace(/\s/g, ''), 10);
10 |
11 | if (r == null || g == null || b == null || isNaN(r) || isNaN(g) || isNaN(b)) {
12 | console.warn('Please enter numeric RGB values!');
13 | return;
14 | }
15 | if (r < 0 || g < 0 || b < 0 || r > 255 || g > 255 || b > 255) {
16 | console.warn('RGB values must be in the range 0 to 255.');
17 | return;
18 | }
19 |
20 | if (r === 0 && g === 0 && b === 0) {
21 | k = 1;
22 | return {
23 | C: 0,
24 | M: 0,
25 | Y: 0,
26 | K: 1,
27 | };
28 | }
29 |
30 | c = 1 - r / 255;
31 | m = 1 - g / 255;
32 | y = 1 - b / 255;
33 |
34 | const minCMY = Math.min(c, Math.min(m, y));
35 | c = (c - minCMY) / (1 - minCMY);
36 | m = (m - minCMY) / (1 - minCMY);
37 | y = (y - minCMY) / (1 - minCMY);
38 | k = minCMY;
39 |
40 | c = Math.round(c * 100);
41 | m = Math.round(m * 100);
42 | y = Math.round(y * 100);
43 | k = Math.round(k * 100);
44 |
45 | return {
46 | C: c,
47 | M: m,
48 | Y: y,
49 | K: k,
50 | };
51 | };
52 |
--------------------------------------------------------------------------------
/src/Specimens/Download.js:
--------------------------------------------------------------------------------
1 | const svg = require('../utils/svg');
2 | const kebabCase = require('lodash/kebabCase');
3 |
4 | module.exports = class Download {
5 | constructor(classPrefix, color, image = 'false', src, subtitle = '', title = 'No title defined', width = '200px') {
6 | this.classPrefix = classPrefix;
7 | this.color = color;
8 | this.image = image;
9 | this.src = src;
10 | this.subtitle = subtitle;
11 | this.title = title;
12 | this.width = width;
13 | this.filename = kebabCase(this.title);
14 | }
15 |
16 | output() {
17 | return `
18 |
19 |
20 |
21 | ${svg.download()}${this.title}
22 |
23 |
24 | ${this.subtitle}
25 |
26 |
27 | ${
28 | this.image === 'true'
29 | ? `
30 |
33 |
`
34 | : ''
35 | }
36 |
37 | `;
38 | }
39 | };
40 |
--------------------------------------------------------------------------------
/package.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "gatsby-remark-design-system",
3 | "description": "Remark plugin to create your design system with preconfigured specimens",
4 | "version": "2.0.1",
5 | "author": "LekoArts ",
6 | "repository": {
7 | "type": "git",
8 | "url": "https://github.com/LeKoArts/gatsby-remark-design-system"
9 | },
10 | "homepage": "https://github.com/LeKoArts/gatsby-remark-design-system/blob/master/README.md",
11 | "dependencies": {
12 | "babel-runtime": "^6.26.0",
13 | "clipboard": "^2.0.4",
14 | "lodash": "^4.17.15",
15 | "tinycolor2": "^1.4.1",
16 | "unist-util-visit": "^2.0.0"
17 | },
18 | "devDependencies": {
19 | "babel-cli": "^6.26.0",
20 | "babel-eslint": "^10.0.2",
21 | "babel-preset-env": "^1.7.0",
22 | "babel-preset-stage-0": "^6.24.1",
23 | "cross-env": "^5.2.0",
24 | "eslint": "^6.2.1",
25 | "eslint-config-airbnb": "^18.0.1",
26 | "eslint-config-prettier": "^6.1.0",
27 | "eslint-plugin-import": "^2.18.2",
28 | "eslint-plugin-jsx-a11y": "^6.2.3",
29 | "eslint-plugin-prettier": "^3.1.0",
30 | "eslint-plugin-react": "^7.14.3",
31 | "prettier": "^1.18.2",
32 | "remark": "^11.0.1"
33 | },
34 | "peerDependencies": {
35 | "gatsby": ">=2"
36 | },
37 | "keywords": [
38 | "gatsby",
39 | "gatsby-plugin",
40 | "remark",
41 | "design-system",
42 | "specimens"
43 | ],
44 | "license": "MIT",
45 | "main": "index.js",
46 | "scripts": {
47 | "build": "babel src --out-dir . --ignore __tests__",
48 | "prepublish": "cross-env NODE_ENV=production npm run build",
49 | "watch": "babel -w src --out-dir . --ignore __tests__"
50 | }
51 | }
52 |
--------------------------------------------------------------------------------
/.eslintrc:
--------------------------------------------------------------------------------
1 | {
2 | "extends": ["airbnb", "prettier", "prettier/react"],
3 | "parser": "babel-eslint",
4 | "parserOptions": {
5 | "ecmaVersion": 2017,
6 | "ecmaFeatures": {
7 | "experimentalObjectRestSpread": true,
8 | "impliedStrict": true,
9 | "classes": true
10 | }
11 | },
12 | "env": {
13 | "browser": true,
14 | "node": true,
15 | "jquery": true
16 | },
17 | "rules": {
18 | "no-unused-vars": [
19 | 1,
20 | {
21 | "argsIgnorePattern": "res|next|^err"
22 | }
23 | ],
24 | "arrow-body-style": [2, "as-needed"],
25 | "no-param-reassign": [
26 | 2,
27 | {
28 | "props": false
29 | }
30 | ],
31 | "no-console": 0,
32 | "linebreak-style": 0,
33 | "no-use-before-define": 0,
34 | "import/prefer-default-export": 0,
35 | "import": 0,
36 | "func-names": 0,
37 | "space-before-function-paren": 0,
38 | "import/extensions": 0,
39 | "no-underscore-dangle": 0,
40 | "consistent-return": 0,
41 | "react/display-name": 1,
42 | "react/react-in-jsx-scope": 0,
43 | "react/forbid-prop-types": 0,
44 | "react/no-unescaped-entities": 0,
45 | "react/jsx-filename-extension": [
46 | 1,
47 | {
48 | "extensions": [".js", ".jsx"]
49 | }
50 | ],
51 | "quotes": [
52 | 2,
53 | "single",
54 | {
55 | "avoidEscape": true,
56 | "allowTemplateLiterals": true
57 | }
58 | ],
59 | "prettier/prettier": [
60 | "error",
61 | {
62 | "trailingComma": "es5",
63 | "singleQuote": true,
64 | "printWidth": 120
65 | }
66 | ]
67 | },
68 | "plugins": ["prettier"]
69 | }
70 |
--------------------------------------------------------------------------------
/src/index.js:
--------------------------------------------------------------------------------
1 | const visit = require('unist-util-visit');
2 | const Transformer = require('./utils/Transformer');
3 |
4 | function width(Span) {
5 | if (Span === 6) {
6 | return `flex-basis: 100%; max-width: 100%;`;
7 | }
8 | return `flex-basis: calc(${Span} / 6 * 100% - 10px); max-width: calc(${Span} / 6 * 100% - 10px)`;
9 | }
10 |
11 | module.exports = ({ markdownAST }, { classPrefix = `grds` } = {}) => {
12 | visit(markdownAST, 'code', (node, index, parent) => {
13 | // Get the specimen name (required) and the options (optional)
14 | let spec = false;
15 | let specOpt = false;
16 | // Don't parse code blocks without language
17 | if (node.lang) {
18 | spec = node.lang.split('|')[0];
19 | specOpt = node.lang.split('|')[1];
20 | }
21 |
22 | let SpecimenName = 'none';
23 | let SpecimenOption = 'none';
24 | if (spec) {
25 | SpecimenName = spec.toLowerCase().trim();
26 | }
27 | if (specOpt) {
28 | SpecimenOption = specOpt.toLowerCase().trim();
29 | }
30 |
31 | // Set the outer class name
32 | const className = `${classPrefix}-${SpecimenName}`;
33 |
34 | const TransformedSpecimen = Transformer.transform(SpecimenName, SpecimenOption, node, classPrefix, index, parent);
35 | const Span = TransformedSpecimen.SpecimenSpan;
36 | const Output = TransformedSpecimen.SpecimenOutput;
37 |
38 | // Keep other code blocks which are not a specimen untouched
39 | if (Output != null) {
40 | // Output our specimen
41 | node.type = `html`;
42 | node.value = `
45 | ${Output}
46 |
`;
47 | }
48 | });
49 | };
50 |
--------------------------------------------------------------------------------
/src/Specimens/ColorPalette.js:
--------------------------------------------------------------------------------
1 | const ty = require('tinycolor2');
2 | const colors = require('../utils/colors');
3 |
4 | module.exports = class ColorPalette {
5 | constructor(classPrefix, valueMap) {
6 | this.classPrefix = classPrefix;
7 | this.valueMap = valueMap;
8 | }
9 |
10 | colors() {
11 | return this.valueMap
12 | .map(c => {
13 | const tyColor = ty(c.color);
14 | const hex = tyColor.toHexString();
15 | const rgb = tyColor.toRgb();
16 | const cmyk = colors.RGBToCMYK(rgb.r, rgb.g, rgb.b);
17 | return `
18 |
19 |
20 |
21 |
22 | ${c.name}
23 |
24 |
25 |
26 |
27 | HEX
28 | ${hex}
29 |
30 |
31 | RGB
32 | ${rgb.r}, ${rgb.g}, ${rgb.b}
33 |
34 |
35 | CMYK
36 | ${cmyk.C}, ${cmyk.M}, ${cmyk.Y}, ${cmyk.K}
37 |
38 |
39 |
40 | `;
41 | })
42 | .join('');
43 | }
44 |
45 | output() {
46 | return `
47 |
48 | ${this.colors()}
49 |
50 | `;
51 | }
52 | };
53 |
--------------------------------------------------------------------------------
/src/Specimens/Color.js:
--------------------------------------------------------------------------------
1 | const ty = require('tinycolor2');
2 | const colors = require('../utils/colors');
3 |
4 | module.exports = class Color {
5 | constructor(classPrefix, color, name = 'No name defined') {
6 | this.classPrefix = classPrefix;
7 | this.color = color;
8 | this.name = name;
9 | this.tyColor = ty(this.color);
10 | this.hex = this.tyColor.toHexString();
11 | this.rgb = this.tyColor.toRgb();
12 | this.cmyk = colors.RGBToCMYK(this.rgb.r, this.rgb.g, this.rgb.b);
13 | }
14 |
15 | blackSmall() {
16 | return ty.isReadable('black', this.color, { level: 'AA', size: 'small' });
17 | }
18 |
19 | blackLarge() {
20 | return ty.isReadable('black', this.color, { level: 'AA', size: 'large' });
21 | }
22 |
23 | whiteSmall() {
24 | return ty.isReadable('white', this.color, { level: 'AA', size: 'small' });
25 | }
26 |
27 | whiteLarge() {
28 | return ty.isReadable('white', this.color, { level: 'AA', size: 'large' });
29 | }
30 |
31 | output() {
32 | return `
33 |
34 |
35 |
36 |
37 | A
38 |
39 |
40 | ${this.blackSmall() ? 'Pass' : 'Fail'}
41 |
42 |
43 |
44 |
45 | A
46 |
47 |
48 | ${this.blackLarge() ? 'Pass' : 'Fail'}
49 |
50 |
51 |
52 |
53 | A
54 |
55 |
56 | ${this.whiteSmall() ? 'Pass' : 'Fail'}
57 |
58 |
59 |
60 |
61 | A
62 |
63 |
64 | ${this.whiteLarge() ? 'Pass' : 'Fail'}
65 |
66 |
67 |
68 |
69 |
70 |
Name
71 |
${this.name}
72 |
73 |
74 |
Hex
75 |
${this.hex}
76 |
77 |
78 |
RGB
79 |
${this.rgb.r}, ${this.rgb.g}, ${
80 | this.rgb.b
81 | }
82 |
83 |
84 |
CMYK
85 |
${this.cmyk.C}, ${this.cmyk.M}, ${this.cmyk.Y}, ${this.cmyk.K}
86 |
87 |
88 |
89 | `;
90 | }
91 | };
92 |
--------------------------------------------------------------------------------
/src/utils/Transformer.js:
--------------------------------------------------------------------------------
1 | const parser = require('./parser');
2 | const Audio = require('../Specimens/Audio');
3 | const Color = require('../Specimens/Color');
4 | const ColorPalette = require('../Specimens/ColorPalette');
5 | const Download = require('../Specimens/Download');
6 | const Example = require('../Specimens/Example');
7 | const Hint = require('../Specimens/Hint');
8 | const Typography = require('../Specimens/Typography');
9 | const Video = require('../Specimens/Video');
10 |
11 | module.exports = class Transformer {
12 | static transform(SpecimenName, SpecimenOption, node, classPrefix, index, parent) {
13 | // Set the width to 6 by default which means 100% width
14 | let _span = 6;
15 | const nodeValue = node.value;
16 | if (SpecimenName === 'audio') {
17 | const value = parser.standardParse(nodeValue);
18 | const { autoplay, loop, name, src } = value;
19 | if (value.span) {
20 | _span = value.span;
21 | }
22 | const Specimen = new Audio(autoplay, classPrefix, loop, name, src);
23 | return {
24 | SpecimenSpan: _span,
25 | SpecimenOutput: Specimen.output(),
26 | };
27 | } else if (SpecimenName === 'color') {
28 | const value = parser.standardParse(nodeValue);
29 | const { color, name } = value;
30 | const Specimen = new Color(classPrefix, color, name);
31 | return {
32 | SpecimenSpan: _span,
33 | SpecimenOutput: Specimen.output(),
34 | };
35 | } else if (SpecimenName === 'color-palette') {
36 | const value = parser.paletteParse(nodeValue);
37 | const Specimen = new ColorPalette(classPrefix, value);
38 | return {
39 | SpecimenSpan: _span,
40 | SpecimenOutput: Specimen.output(),
41 | };
42 | } else if (SpecimenName === 'download') {
43 | const value = parser.standardParse(nodeValue);
44 | const { color, image, src, subtitle, title, width } = value;
45 | if (value.span) {
46 | _span = value.span;
47 | }
48 | const Specimen = new Download(classPrefix, color, image, src, subtitle, title, width);
49 | return {
50 | SpecimenSpan: _span,
51 | SpecimenOutput: Specimen.output(),
52 | };
53 | } else if (SpecimenName === 'example') {
54 | const Specimen = new Example(classPrefix, node, index, parent);
55 | return {
56 | SpecimenSpan: _span,
57 | SpecimenOutput: Specimen.output(),
58 | };
59 | } else if (SpecimenName === 'hint') {
60 | const Specimen = new Hint(classPrefix, nodeValue, SpecimenOption);
61 | return {
62 | SpecimenSpan: _span,
63 | SpecimenOutput: Specimen.output(),
64 | };
65 | } else if (SpecimenName === 'typography') {
66 | const value = parser.typographyParse(nodeValue);
67 | const Specimen = new Typography(classPrefix, value);
68 | return {
69 | SpecimenSpan: _span,
70 | SpecimenOutput: Specimen.output(),
71 | };
72 | } else if (SpecimenName === 'video') {
73 | const value = parser.standardParse(nodeValue);
74 | const { autoplay, loop, muted, name, src } = value;
75 | if (value.span) {
76 | _span = value.span;
77 | }
78 | const Specimen = new Video(autoplay, classPrefix, loop, muted, name, src);
79 | return {
80 | SpecimenSpan: _span,
81 | SpecimenOutput: Specimen.output(),
82 | };
83 | }
84 | return {
85 | SpecimenSpan: _span,
86 | SpecimenOutput: null,
87 | };
88 | }
89 | };
90 |
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 | [](https://github.com/LeKoArts/gatsby-remark-design-system/blob/master/LICENSE)
2 | [](https://www.npmjs.org/package/gatsby-remark-design-system)
3 | [](https://www.lekoarts.de)
4 |
5 | # gatsby-remark-design-system
6 | 🎨 Create your design system with Gatsby in Markdown
7 |
8 | See it [live in action](https://gatsby-remark-design-system.netlify.com/)!
9 | You can also have a look at the [example repo](https://github.com/LeKoArts/gatsby-remark-design-system-example).
10 |
11 | # Important note!
12 |
13 | This plugin will no longer be maintained (except critical security fixes) as all the functionality was ported to MDX and [`@lekoarts/gatsby-theme-specimens`](https://github.com/LekoArts/gatsby-themes/tree/master/themes/gatsby-theme-specimens). Building design systems with MDX is superior to Markdown and hence the new theme is way more powerful than the _remark_ version here. Please give the theme a try!
14 |
15 | # Scope of this plugin
16 |
17 | **gatsby-remark-design-system** (inspired by [Catalog](https://www.catalog.style/)) is a plugin that sits on top of Gatsby's remark transformer. You'll need to setup a Gatsby project and install *at least* the plugins `gatsby-source-filesystem`, `gatsby-transformer-remark` and `gatsby-plugin-sass`. You then can use the so called **Specimens** in your markdown files to create your design system or styleguide.
18 |
19 | Writing content in markdown is easy and so should be creating a design system. Including this plugin into your project will help you create a design system from scratch in no time - and you can also include other plugins, e.g. `gatsby-remark-prismjs` to have syntax highlighted code.
20 |
21 | # Install
22 |
23 | ```bash
24 | npm install gatsby-remark-design-system
25 | ```
26 |
27 | # How to use
28 |
29 | **Note:** If you're unsure about the instructions take a look at the implementation of the [example repo](https://github.com/LeKoArts/gatsby-remark-design-system-example)!
30 |
31 | ```js
32 | // In your gatsby-config.js
33 | plugins: [
34 | {
35 | resolve: 'gatsby-transformer-remark',
36 | options: {
37 | plugins: [
38 | {
39 | resolve: 'gatsby-remark-design-system',
40 | options: {
41 | // Class prefix for all elements of the design system specimens
42 | // This prefix also needs to be set on wrapper components in your Gatsby project
43 | // Default value is 'grds' - so if you want you can leave out this option entirely
44 | classPrefix: 'grds',
45 | }
46 | }
47 | ],
48 | },
49 | },
50 | ],
51 | ```
52 |
53 | ## Include CSS
54 |
55 | The plugin ships with a theme that you can easily include in your Gatsby project, or you can build your own theme by copying and modyfing the example.
56 | To load the theme, just require its SCSS, e.g.
57 |
58 | ```js
59 | // layouts/index.js
60 | require('gatsby-remark-design-system/theme/gatsby-remark-design-system-theme.scss');
61 | ```
62 |
63 | If you just want to change the `classPrefix` or other SCSS variables (but otherwise want to use the preconfigured theme) you should overwrite the variables like so:
64 |
65 | ```scss
66 | // Create a empty scss file that gets imported into your project (e.g. base.scss)
67 |
68 | $prefix: cool;
69 | $primary: #c93a3c;
70 |
71 | // Import your other scss files if necessary
72 | // .......
73 |
74 | // Import the theme
75 | @import '~gatsby-remark-design-system/theme/gatsby-remark-design-system-theme.scss';
76 | ```
77 |
78 | # Specimens
79 |
80 | You can use the specimens by using three backticks followed by the name. The content of the specimen then gets defined in the code block.
81 |
82 | ````
83 | ```name|option
84 | content
85 | ```
86 | ````
87 |
88 | ## Audio
89 |
90 | **Options**
91 |
92 | `autoplay: boolean` Default: false
93 | `loop: boolean` Default: false
94 | `name: string`
95 | `span: number[1-6]` Width of the specimen
96 | `src: string` The path/url to the file. Needs to be in quotes
97 |
98 | **Example**
99 |
100 | ````
101 | ```audio
102 | autoplay: false
103 | loop: false
104 | name: Sound File #1
105 | src: "/sound.mp3"
106 | span: 3
107 | ```
108 | ````
109 |
110 | ## Color
111 |
112 | **Options**
113 |
114 | `color: string` Define the color (in HEX, e.g. #b0f6ff)
115 | `name: string`
116 |
117 | **Example**
118 |
119 | ````
120 | ```color
121 | name: Smaragd
122 | color: #939d7b
123 | ```
124 | ````
125 |
126 | ## Color-Palette
127 |
128 | **Options**
129 |
130 | `name: string, color: string`
131 | Each line represents a color. First define the name then after a comma the HEX value
132 |
133 | **Example**
134 |
135 | ````
136 | ```color-palette
137 | T400 - Shabby, #448c6c
138 | T300 - Legendary, #dca114
139 | T200 - Smoke, #6c3b0b
140 | ```
141 | ````
142 |
143 | ## Download
144 |
145 | **Options**
146 |
147 | `color: string` Define the background color (in HEX, e.g. white) of the preview box
148 | `image: boolean` If true the image will be shown below
149 | `span: number[1-6]` Width of the specimen
150 | `src: string` The path/url to the file. Needs to be in quotes
151 | `subtitle: string` The filesize or other information
152 | `title: string`
153 | `width: string` The width of the preview image (default: 200px)
154 |
155 | **Example**
156 |
157 | ````
158 | ```download
159 | color: white
160 | image: true
161 | span: 3
162 | src: "/logo.png"
163 | subtitle: 8KB
164 | title: Avatar Social
165 | width: 250px
166 | ```
167 | ````
168 |
169 | ## Example
170 |
171 | **Options**
172 |
173 | None
174 |
175 | **Example**
176 |
177 | ````
178 | ```example
179 | You can insert your HTML here
180 | ```
181 | ````
182 |
183 | ## Hint
184 |
185 | **Options**
186 |
187 | `directive` Green, positive note for showing Dos
188 | `warning` Red, warning note for showing Don'ts
189 | `neutral` Neutral note (Default)
190 |
191 | **Example**
192 |
193 | ````
194 | ```hint|directive
195 | Make it so!
196 | ```
197 |
198 | ```hint
199 | Neutral Hint
200 | ```
201 |
202 | ```hint|warning
203 | nooooooooo, not this way
204 | ```
205 | ````
206 |
207 | ## Typography
208 |
209 | **Options**
210 |
211 | `size: number|weight: number|metrics: string|weightDesc: string|usage: string`
212 | Each line represents a type. You have to define the values in the mentioned order and seperate with `|`
213 |
214 | **Example**
215 |
216 | ````
217 | ```typography
218 | 42|700|Display|42, line height is 1.1x|Bold, 700|Display type is used for visual impact and emphasis
219 | 32|400|Page title|32, line height is 1.1x|Normal, 400|Page title is used to provide hiearchy
220 | ```
221 | ````
222 |
223 | ## Video
224 |
225 | **Options**
226 |
227 | `autoplay: boolean` Default: false
228 | `loop: boolean` Default: false
229 | `muted: boolean` Default: false
230 | `name: string`
231 | `src: string` The path/url to the file. Needs to be in quotes
232 |
233 | **Example**
234 |
235 | ````
236 | ```video
237 | autoplay: false
238 | loop: false
239 | muted: false
240 | name: Animation Video
241 | src: "https://www.w3schools.com/html/mov_bbb.mp4"
242 | span: 3
243 | ```
244 | ````
--------------------------------------------------------------------------------
/theme/gatsby-remark-design-system-theme.scss:
--------------------------------------------------------------------------------
1 | // Variables
2 | // Make sure that your prefix is the same as "classPrefix" in your gatsby-config.js
3 |
4 | $prefix: grds !default;
5 | $primary: #48ba6f !default;
6 | $bg: #f4f6f8 !default;
7 | $pb: 20px !default;
8 | $br: 10px !default;
9 | $br--sm: 5px !default;
10 | $icon-size: 25px !default;
11 |
12 | $text--desc: #7d858c !default;
13 | $text--badge: #2e2e2e !default;
14 |
15 | $badge--bg: #c5d3e0 !default;
16 | $line: #c5d3e0 !default;
17 |
18 | $green--bg: #ecfaea !default;
19 | $green--border: #c0ebc8 !default;
20 | $green--text: #307c3f !default;
21 |
22 | $red--bg: #fef5f5 !default;
23 | $red--border: #fcddde !default;
24 | $red--text: #c93a3c !default;
25 |
26 | $grey--bg: #f4f6f8 !default;
27 | $grey--border: #d9eafa !default;
28 | $grey--text: #7a7d80 !default;
29 |
30 | // ------------------------------------------------
31 |
32 | .#{$prefix} {
33 | // General
34 | &-color {
35 | // The color specimen gets a fixed width
36 | flex-basis: 300px !important;
37 | max-width: 300px !important;
38 | }
39 | &-wrapper {
40 | color: black;
41 | // Under 700px all specimens get sorted in one column
42 | @media (max-width: 700px) {
43 | flex-basis: 100% !important;
44 | max-width: 100% !important;
45 | margin: 0 0 24px 0;
46 | }
47 | margin-bottom: 24px;
48 | }
49 | // Audio
50 | &-audio {
51 | margin-right: 10px;
52 | }
53 | &-audio__container {
54 | background: $bg;
55 | padding: $pb;
56 | border-radius: $br;
57 | width: 100%;
58 | }
59 | &-audio__title {
60 | margin-bottom: 1rem;
61 | display: flex;
62 | align-items: center;
63 | svg {
64 | height: $icon-size;
65 | width: $icon-size;
66 | fill: $primary;
67 | margin-right: 1.5rem;
68 | }
69 | }
70 | &-audio__audiofile {
71 | width: 100%;
72 | }
73 | // Color
74 | &-color {
75 | display: inline-block !important;
76 | margin-right: 10px;
77 | @media (max-width: 700px) {
78 | display: block !important;
79 | }
80 | }
81 | &-color__container {
82 | border-radius: $br;
83 | width: 300px;
84 | display: flex;
85 | flex-direction: column;
86 | @media (max-width: 700px) {
87 | width: 100%;
88 | }
89 | }
90 | &-color__swatch {
91 | height: 150px;
92 | border-radius: $br $br 0 0;
93 | position: relative;
94 | display: flex;
95 | align-items: flex-end;
96 | padding-bottom: 10px;
97 | justify-content: center;
98 | }
99 | &-color__swatch__a11y {
100 | display: flex;
101 | flex-direction: column;
102 | width: 50px;
103 | margin: 0 3px;
104 | }
105 | &-color__swatch__a11y__char {
106 | color: white;
107 | text-align: center;
108 | }
109 | &-color__swatch__a11y__status {
110 | color: white;
111 | background: black;
112 | padding: 2px 5px;
113 | display: inline-block;
114 | border-radius: $br--sm;
115 | font-size: 0.9rem;
116 | text-align: center;
117 | }
118 | &-color__info {
119 | display: flex;
120 | flex-wrap: wrap;
121 | padding: 10px;
122 | background: $bg;
123 | border-radius: 0 0 $br $br;
124 | }
125 | &-color__info__item {
126 | .clippy {
127 | display: inline-block;
128 | }
129 | p:first-child {
130 | text-transform: uppercase;
131 | color: $text--desc;
132 | font-size: 0.75rem;
133 | }
134 | p {
135 | margin-bottom: 0.25rem;
136 | margin-top: 0.5rem;
137 | }
138 | margin-bottom: 1rem;
139 | margin-top: 0.5rem;
140 | flex-basis: 50%;
141 | }
142 | // Color-Palette
143 | &-color-palette__container {
144 | background: $bg;
145 | border-radius: $br;
146 | width: 100%;
147 | }
148 | &-color-palette__item {
149 | padding: $pb;
150 | border-bottom: 2px solid $line;
151 | display: flex;
152 | justify-content: space-between;
153 | flex-wrap: wrap;
154 | }
155 | &-color-palette__item:last-child {
156 | border-bottom: none;
157 | }
158 | &-color-palette__left {
159 | display: flex;
160 | align-items: center;
161 | flex-wrap: wrap;
162 | }
163 | &-color-palette__right {
164 | display: flex;
165 | align-items: center;
166 | flex-wrap: wrap;
167 | }
168 | &-color-palette__item__swatch {
169 | width: 50px;
170 | height: 50px;
171 | border-radius: $br;
172 | margin-right: 20px;
173 | margin-top: 10px;
174 | margin-bottom: 10px;
175 | }
176 | &-color-palette__item__name {
177 | padding: 0.5rem 1rem 0.5rem 0;
178 | }
179 | &-color-palette__item__color:first-child {
180 | width: 115px;
181 | }
182 | &-color-palette__item__color {
183 | margin: 0.4rem 0;
184 | width: 140px;
185 | span:first-child {
186 | background: $badge--bg;
187 | color: $text--badge;
188 | padding: 3px 5px;
189 | font-size: 0.7rem;
190 | border-radius: $br--sm;
191 | }
192 | span:last-child {
193 | margin-left: 0.25rem;
194 | font-size: 0.9rem;
195 | }
196 | }
197 | // Download
198 | &-download {
199 | margin-right: 10px;
200 | }
201 | &-download__container {
202 | background: $bg;
203 | padding: $pb;
204 | border-radius: $br;
205 | width: 100%;
206 | text-decoration: none;
207 | }
208 | &-download__info {
209 | display: flex;
210 | justify-content: space-between;
211 | align-items: center;
212 | }
213 | &-download__info__left {
214 | display: flex;
215 | align-items: center;
216 | svg {
217 | height: $icon-size;
218 | width: $icon-size;
219 | fill: $primary;
220 | margin-right: 1.5rem;
221 | }
222 | }
223 | &-download__info__right {
224 | font-size: 0.75rem;
225 | color: $text--desc;
226 | }
227 | &-download__preview {
228 | padding: $pb;
229 | border-radius: $br;
230 | margin-top: 40px;
231 | display: flex;
232 | justify-content: center;
233 | box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.1);
234 | }
235 | &-download__image {
236 | object-fit: cover;
237 | height: 100%;
238 | margin-bottom: 0;
239 | }
240 | // Example
241 | &-example {
242 | border-radius: $br;
243 | border: 1px solid $line;
244 | }
245 | &-example__container {
246 | padding: $pb;
247 | }
248 | // Hint
249 | &-hint {
250 | border-radius: $br;
251 | padding: $pb;
252 | background: $grey--bg;
253 | color: $grey--text;
254 | border: 1px solid $grey--border;
255 | width: 100%;
256 | }
257 | &-hint__directive {
258 | background: $green--bg;
259 | color: $green--text;
260 | border: 1px solid $green--border;
261 | }
262 | &-hint__warning {
263 | background: $red--bg;
264 | color: $red--text;
265 | border: 1px solid $red--border;
266 | }
267 | // Typography
268 | &-typo__container {
269 | width: 100%;
270 | }
271 | &-typo__item {
272 | display: flex;
273 | flex-direction: column;
274 | border-bottom: 2px solid $line;
275 | padding-bottom: 1rem;
276 | margin-bottom: 2rem;
277 | }
278 | &-typo__item__name {
279 | margin-bottom: 1.5rem;
280 | }
281 | &-typo__item__info {
282 | display: flex;
283 | flex-direction: row;
284 | flex-wrap: wrap;
285 | justify-content: flex-start;
286 | width: 100%;
287 | p:first-child {
288 | text-transform: uppercase;
289 | font-size: 0.75rem;
290 | color: $text--desc;
291 | margin-bottom: 0;
292 | }
293 | p:last-child {
294 | margin-top: 0.5rem;
295 | }
296 | }
297 | &-typo__item__info__desc {
298 | margin-right: 2rem;
299 | }
300 | // Video
301 | &-video {
302 | margin-right: 10px;
303 | }
304 | &-video__container {
305 | background: $bg;
306 | padding: $pb;
307 | border-radius: $br;
308 | width: 100%;
309 | }
310 | &-video__title {
311 | margin-bottom: 15px;
312 | display: flex;
313 | align-items: center;
314 | svg {
315 | height: $icon-size;
316 | width: $icon-size;
317 | fill: $primary;
318 | margin-right: 1.5rem;
319 | }
320 | }
321 | &-video__videofile {
322 | width: 100%;
323 | }
324 | }
325 |
326 | // ------------------------------------------------
327 | // Primer Tooltip
328 | // ------------------------------------------------
329 |
330 | .clippy:hover {
331 | cursor: pointer;
332 | }
333 |
334 | .tooltipped {
335 | position: relative;
336 | }
337 |
338 | // This is the tooltip bubble
339 | .tooltipped::after {
340 | position: absolute;
341 | z-index: 1000000;
342 | display: inline-block;
343 | text-decoration: none;
344 | padding: 0.1rem 0.3rem;
345 | font: normal normal 11px/1.5 sans-serif;
346 | -webkit-font-smoothing: subpixel-antialiased;
347 | color: white;
348 | text-align: center;
349 | text-shadow: none;
350 | text-transform: none;
351 | letter-spacing: normal;
352 | word-wrap: break-word;
353 | white-space: pre;
354 | pointer-events: none;
355 | content: attr(aria-label);
356 | background: black;
357 | border-radius: 3px;
358 | }
359 |
360 | // This is the tooltip arrow
361 | .tooltipped::before {
362 | position: absolute;
363 | z-index: 1000001;
364 | display: inline-block;
365 | text-decoration: none;
366 | width: 0;
367 | height: 0;
368 | color: black;
369 | pointer-events: none;
370 | content: "";
371 | border: 6px solid transparent;
372 | }
373 |
374 | // Tooltips above the object
375 | .tooltipped-n {
376 | &::after {
377 | right: 50%;
378 | bottom: 100%;
379 | margin-bottom: 6px;
380 | }
381 |
382 | &::before {
383 | top: -7px;
384 | right: 50%;
385 | bottom: auto;
386 | margin-right: -6px;
387 | border-top-color: black;
388 | }
389 | }
390 |
391 | // Move the tooltip body to the center of the object.
392 | .tooltipped-n::after {
393 | transform: translateX(50%);
394 | }
395 |
--------------------------------------------------------------------------------
/yarn.lock:
--------------------------------------------------------------------------------
1 | # THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY.
2 | # yarn lockfile v1
3 |
4 |
5 | "@babel/code-frame@^7.0.0", "@babel/code-frame@^7.5.5":
6 | version "7.5.5"
7 | resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.5.5.tgz#bc0782f6d69f7b7d49531219699b988f669a8f9d"
8 | integrity sha512-27d4lZoomVyo51VegxI20xZPuSHusqbQag/ztrBC7wegWoQ1nLREPVSKSW8byhTlzTKyNE4ifaTA6lCp7JjpFw==
9 | dependencies:
10 | "@babel/highlight" "^7.0.0"
11 |
12 | "@babel/generator@^7.5.5":
13 | version "7.5.5"
14 | resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.5.5.tgz#873a7f936a3c89491b43536d12245b626664e3cf"
15 | integrity sha512-ETI/4vyTSxTzGnU2c49XHv2zhExkv9JHLTwDAFz85kmcwuShvYG2H08FwgIguQf4JC75CBnXAUM5PqeF4fj0nQ==
16 | dependencies:
17 | "@babel/types" "^7.5.5"
18 | jsesc "^2.5.1"
19 | lodash "^4.17.13"
20 | source-map "^0.5.0"
21 | trim-right "^1.0.1"
22 |
23 | "@babel/helper-function-name@^7.1.0":
24 | version "7.1.0"
25 | resolved "https://registry.yarnpkg.com/@babel/helper-function-name/-/helper-function-name-7.1.0.tgz#a0ceb01685f73355d4360c1247f582bfafc8ff53"
26 | integrity sha512-A95XEoCpb3TO+KZzJ4S/5uW5fNe26DjBGqf1o9ucyLyCmi1dXq/B3c8iaWTfBk3VvetUxl16e8tIrd5teOCfGw==
27 | dependencies:
28 | "@babel/helper-get-function-arity" "^7.0.0"
29 | "@babel/template" "^7.1.0"
30 | "@babel/types" "^7.0.0"
31 |
32 | "@babel/helper-get-function-arity@^7.0.0":
33 | version "7.0.0"
34 | resolved "https://registry.yarnpkg.com/@babel/helper-get-function-arity/-/helper-get-function-arity-7.0.0.tgz#83572d4320e2a4657263734113c42868b64e49c3"
35 | integrity sha512-r2DbJeg4svYvt3HOS74U4eWKsUAMRH01Z1ds1zx8KNTPtpTL5JAsdFv8BNyOpVqdFhHkkRDIg5B4AsxmkjAlmQ==
36 | dependencies:
37 | "@babel/types" "^7.0.0"
38 |
39 | "@babel/helper-split-export-declaration@^7.4.4":
40 | version "7.4.4"
41 | resolved "https://registry.yarnpkg.com/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.4.4.tgz#ff94894a340be78f53f06af038b205c49d993677"
42 | integrity sha512-Ro/XkzLf3JFITkW6b+hNxzZ1n5OQ80NvIUdmHspih1XAhtN3vPTuUFT4eQnela+2MaZ5ulH+iyP513KJrxbN7Q==
43 | dependencies:
44 | "@babel/types" "^7.4.4"
45 |
46 | "@babel/highlight@^7.0.0":
47 | version "7.5.0"
48 | resolved "https://registry.yarnpkg.com/@babel/highlight/-/highlight-7.5.0.tgz#56d11312bd9248fa619591d02472be6e8cb32540"
49 | integrity sha512-7dV4eu9gBxoM0dAnj/BCFDW9LFU0zvTrkq0ugM7pnHEgguOEeOz1so2ZghEdzviYzQEED0r4EAgpsBChKy1TRQ==
50 | dependencies:
51 | chalk "^2.0.0"
52 | esutils "^2.0.2"
53 | js-tokens "^4.0.0"
54 |
55 | "@babel/parser@^7.0.0", "@babel/parser@^7.4.4", "@babel/parser@^7.5.5":
56 | version "7.5.5"
57 | resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.5.5.tgz#02f077ac8817d3df4a832ef59de67565e71cca4b"
58 | integrity sha512-E5BN68cqR7dhKan1SfqgPGhQ178bkVKpXTPEXnFJBrEt8/DKRZlybmy+IgYLTeN7tp1R5Ccmbm2rBk17sHYU3g==
59 |
60 | "@babel/runtime@^7.4.5":
61 | version "7.5.5"
62 | resolved "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.5.5.tgz#74fba56d35efbeca444091c7850ccd494fd2f132"
63 | integrity sha512-28QvEGyQyNkB0/m2B4FU7IEZGK2NUrcMtT6BZEFALTguLk+AUT6ofsHtPk5QyjAdUkpMJ+/Em+quwz4HOt30AQ==
64 | dependencies:
65 | regenerator-runtime "^0.13.2"
66 |
67 | "@babel/template@^7.1.0":
68 | version "7.4.4"
69 | resolved "https://registry.yarnpkg.com/@babel/template/-/template-7.4.4.tgz#f4b88d1225689a08f5bc3a17483545be9e4ed237"
70 | integrity sha512-CiGzLN9KgAvgZsnivND7rkA+AeJ9JB0ciPOD4U59GKbQP2iQl+olF1l76kJOupqidozfZ32ghwBEJDhnk9MEcw==
71 | dependencies:
72 | "@babel/code-frame" "^7.0.0"
73 | "@babel/parser" "^7.4.4"
74 | "@babel/types" "^7.4.4"
75 |
76 | "@babel/traverse@^7.0.0":
77 | version "7.5.5"
78 | resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.5.5.tgz#f664f8f368ed32988cd648da9f72d5ca70f165bb"
79 | integrity sha512-MqB0782whsfffYfSjH4TM+LMjrJnhCNEDMDIjeTpl+ASaUvxcjoiVCo/sM1GhS1pHOXYfWVCYneLjMckuUxDaQ==
80 | dependencies:
81 | "@babel/code-frame" "^7.5.5"
82 | "@babel/generator" "^7.5.5"
83 | "@babel/helper-function-name" "^7.1.0"
84 | "@babel/helper-split-export-declaration" "^7.4.4"
85 | "@babel/parser" "^7.5.5"
86 | "@babel/types" "^7.5.5"
87 | debug "^4.1.0"
88 | globals "^11.1.0"
89 | lodash "^4.17.13"
90 |
91 | "@babel/types@^7.0.0", "@babel/types@^7.4.4", "@babel/types@^7.5.5":
92 | version "7.5.5"
93 | resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.5.5.tgz#97b9f728e182785909aa4ab56264f090a028d18a"
94 | integrity sha512-s63F9nJioLqOlW3UkyMd+BYhXt44YuaFm/VV0VwuteqjYwRrObkU7ra9pY4wAJR3oXi8hJrMcrcJdO/HH33vtw==
95 | dependencies:
96 | esutils "^2.0.2"
97 | lodash "^4.17.13"
98 | to-fast-properties "^2.0.0"
99 |
100 | "@types/unist@^2.0.0", "@types/unist@^2.0.2", "@types/unist@^2.0.3":
101 | version "2.0.3"
102 | resolved "https://registry.yarnpkg.com/@types/unist/-/unist-2.0.3.tgz#9c088679876f374eb5983f150d4787aa6fb32d7e"
103 | integrity sha512-FvUupuM3rlRsRtCN+fDudtmytGO6iHJuuRKS1Ss0pG5z8oX0diNEw94UEL7hgDbpN94rgaK5R7sWm6RrSkZuAQ==
104 |
105 | abbrev@1:
106 | version "1.1.1"
107 | resolved "https://registry.yarnpkg.com/abbrev/-/abbrev-1.1.1.tgz#f8f2c887ad10bf67f634f005b6987fed3179aac8"
108 | integrity sha512-nne9/IiQ/hzIhY6pdDnbBtz7DjPTKrY00P/zvPSm5pOFkl6xuGrGnXn/VtTNNfNtAfZ9/1RtehkszU9qcTii0Q==
109 |
110 | acorn-jsx@^5.0.0:
111 | version "5.0.2"
112 | resolved "https://registry.yarnpkg.com/acorn-jsx/-/acorn-jsx-5.0.2.tgz#84b68ea44b373c4f8686023a551f61a21b7c4a4f"
113 | integrity sha512-tiNTrP1MP0QrChmD2DdupCr6HWSFeKVw5d/dHTu4Y7rkAkRhU/Dt7dphAfIUyxtHpl/eBVip5uTNSpQJHylpAw==
114 |
115 | acorn@^7.0.0:
116 | version "7.0.0"
117 | resolved "https://registry.yarnpkg.com/acorn/-/acorn-7.0.0.tgz#26b8d1cd9a9b700350b71c0905546f64d1284e7a"
118 | integrity sha512-PaF/MduxijYYt7unVGRuds1vBC9bFxbNf+VWqhOClfdgy7RlVkQqt610ig1/yxTgsDIfW1cWDel5EBbOy3jdtQ==
119 |
120 | ajv@^6.10.0, ajv@^6.10.2:
121 | version "6.10.2"
122 | resolved "https://registry.yarnpkg.com/ajv/-/ajv-6.10.2.tgz#d3cea04d6b017b2894ad69040fec8b623eb4bd52"
123 | integrity sha512-TXtUUEYHuaTEbLZWIKUr5pmBuhDLy+8KYtPYdcV8qC+pOZL+NKqYwvWSRrVXHn+ZmRRAu8vJTAznH7Oag6RVRw==
124 | dependencies:
125 | fast-deep-equal "^2.0.1"
126 | fast-json-stable-stringify "^2.0.0"
127 | json-schema-traverse "^0.4.1"
128 | uri-js "^4.2.2"
129 |
130 | ansi-escapes@^4.2.1:
131 | version "4.2.1"
132 | resolved "https://registry.yarnpkg.com/ansi-escapes/-/ansi-escapes-4.2.1.tgz#4dccdb846c3eee10f6d64dea66273eab90c37228"
133 | integrity sha512-Cg3ymMAdN10wOk/VYfLV7KCQyv7EDirJ64500sU7n9UlmioEtDuU5Gd+hj73hXSU/ex7tHJSssmyftDdkMLO8Q==
134 | dependencies:
135 | type-fest "^0.5.2"
136 |
137 | ansi-regex@^2.0.0:
138 | version "2.1.1"
139 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-2.1.1.tgz#c3b33ab5ee360d86e0e628f0468ae7ef27d654df"
140 | integrity sha1-w7M6te42DYbg5ijwRorn7yfWVN8=
141 |
142 | ansi-regex@^3.0.0:
143 | version "3.0.0"
144 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-3.0.0.tgz#ed0317c322064f79466c02966bddb605ab37d998"
145 | integrity sha1-7QMXwyIGT3lGbAKWa922Bas32Zg=
146 |
147 | ansi-regex@^4.1.0:
148 | version "4.1.0"
149 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-4.1.0.tgz#8b9f8f08cf1acb843756a839ca8c7e3168c51997"
150 | integrity sha512-1apePfXM1UOSqw0o9IiFAovVz9M5S1Dg+4TrDwfMewQ6p/rmMueb7tWZjQ1rx4Loy1ArBggoqGpfqqdI4rondg==
151 |
152 | ansi-styles@^2.2.1:
153 | version "2.2.1"
154 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-2.2.1.tgz#b432dd3358b634cf75e1e4664368240533c1ddbe"
155 | integrity sha1-tDLdM1i2NM914eRmQ2gkBTPB3b4=
156 |
157 | ansi-styles@^3.2.0, ansi-styles@^3.2.1:
158 | version "3.2.1"
159 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-3.2.1.tgz#41fbb20243e50b12be0f04b8dedbf07520ce841d"
160 | integrity sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==
161 | dependencies:
162 | color-convert "^1.9.0"
163 |
164 | anymatch@^1.3.0:
165 | version "1.3.2"
166 | resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-1.3.2.tgz#553dcb8f91e3c889845dfdba34c77721b90b9d7a"
167 | integrity sha512-0XNayC8lTHQ2OI8aljNCN3sSx6hsr/1+rlcDAotXJR7C1oZZHCNsfpbKwMjRA3Uqb5tF1Rae2oloTr4xpq+WjA==
168 | dependencies:
169 | micromatch "^2.1.5"
170 | normalize-path "^2.0.0"
171 |
172 | aproba@^1.0.3:
173 | version "1.2.0"
174 | resolved "https://registry.yarnpkg.com/aproba/-/aproba-1.2.0.tgz#6802e6264efd18c790a1b0d517f0f2627bf2c94a"
175 | integrity sha512-Y9J6ZjXtoYh8RnXVCMOU/ttDmk1aBjunq9vO0ta5x85WDQiQfUF9sIPBITdbiiIVcBo03Hi3jMxigBtsddlXRw==
176 |
177 | are-we-there-yet@~1.1.2:
178 | version "1.1.5"
179 | resolved "https://registry.yarnpkg.com/are-we-there-yet/-/are-we-there-yet-1.1.5.tgz#4b35c2944f062a8bfcda66410760350fe9ddfc21"
180 | integrity sha512-5hYdAkZlcG8tOLujVDTgCT+uPX0VnpAH28gWsLfzpXYm7wP6mp5Q/gYyR7YQ0cKVJcXJnl3j2kpBan13PtQf6w==
181 | dependencies:
182 | delegates "^1.0.0"
183 | readable-stream "^2.0.6"
184 |
185 | argparse@^1.0.7:
186 | version "1.0.10"
187 | resolved "https://registry.yarnpkg.com/argparse/-/argparse-1.0.10.tgz#bcd6791ea5ae09725e17e5ad988134cd40b3d911"
188 | integrity sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==
189 | dependencies:
190 | sprintf-js "~1.0.2"
191 |
192 | aria-query@^3.0.0:
193 | version "3.0.0"
194 | resolved "https://registry.yarnpkg.com/aria-query/-/aria-query-3.0.0.tgz#65b3fcc1ca1155a8c9ae64d6eee297f15d5133cc"
195 | integrity sha1-ZbP8wcoRVajJrmTW7uKX8V1RM8w=
196 | dependencies:
197 | ast-types-flow "0.0.7"
198 | commander "^2.11.0"
199 |
200 | arr-diff@^2.0.0:
201 | version "2.0.0"
202 | resolved "https://registry.yarnpkg.com/arr-diff/-/arr-diff-2.0.0.tgz#8f3b827f955a8bd669697e4a4256ac3ceae356cf"
203 | integrity sha1-jzuCf5Vai9ZpaX5KQlasPOrjVs8=
204 | dependencies:
205 | arr-flatten "^1.0.1"
206 |
207 | arr-diff@^4.0.0:
208 | version "4.0.0"
209 | resolved "https://registry.yarnpkg.com/arr-diff/-/arr-diff-4.0.0.tgz#d6461074febfec71e7e15235761a329a5dc7c520"
210 | integrity sha1-1kYQdP6/7HHn4VI1dhoyml3HxSA=
211 |
212 | arr-flatten@^1.0.1, arr-flatten@^1.1.0:
213 | version "1.1.0"
214 | resolved "https://registry.yarnpkg.com/arr-flatten/-/arr-flatten-1.1.0.tgz#36048bbff4e7b47e136644316c99669ea5ae91f1"
215 | integrity sha512-L3hKV5R/p5o81R7O02IGnwpDmkp6E982XhtbuwSe3O4qOtMMMtodicASA1Cny2U+aCXcNpml+m4dPsvsJ3jatg==
216 |
217 | arr-union@^3.1.0:
218 | version "3.1.0"
219 | resolved "https://registry.yarnpkg.com/arr-union/-/arr-union-3.1.0.tgz#e39b09aea9def866a8f206e288af63919bae39c4"
220 | integrity sha1-45sJrqne+Gao8gbiiK9jkZuuOcQ=
221 |
222 | array-includes@^3.0.3:
223 | version "3.0.3"
224 | resolved "https://registry.yarnpkg.com/array-includes/-/array-includes-3.0.3.tgz#184b48f62d92d7452bb31b323165c7f8bd02266d"
225 | integrity sha1-GEtI9i2S10UrsxsyMWXH+L0CJm0=
226 | dependencies:
227 | define-properties "^1.1.2"
228 | es-abstract "^1.7.0"
229 |
230 | array-unique@^0.2.1:
231 | version "0.2.1"
232 | resolved "https://registry.yarnpkg.com/array-unique/-/array-unique-0.2.1.tgz#a1d97ccafcbc2625cc70fadceb36a50c58b01a53"
233 | integrity sha1-odl8yvy8JiXMcPrc6zalDFiwGlM=
234 |
235 | array-unique@^0.3.2:
236 | version "0.3.2"
237 | resolved "https://registry.yarnpkg.com/array-unique/-/array-unique-0.3.2.tgz#a894b75d4bc4f6cd679ef3244a9fd8f46ae2d428"
238 | integrity sha1-qJS3XUvE9s1nnvMkSp/Y9Gri1Cg=
239 |
240 | assign-symbols@^1.0.0:
241 | version "1.0.0"
242 | resolved "https://registry.yarnpkg.com/assign-symbols/-/assign-symbols-1.0.0.tgz#59667f41fadd4f20ccbc2bb96b8d4f7f78ec0367"
243 | integrity sha1-WWZ/QfrdTyDMvCu5a41Pf3jsA2c=
244 |
245 | ast-types-flow@0.0.7, ast-types-flow@^0.0.7:
246 | version "0.0.7"
247 | resolved "https://registry.yarnpkg.com/ast-types-flow/-/ast-types-flow-0.0.7.tgz#f70b735c6bca1a5c9c22d982c3e39e7feba3bdad"
248 | integrity sha1-9wtzXGvKGlycItmCw+Oef+ujva0=
249 |
250 | astral-regex@^1.0.0:
251 | version "1.0.0"
252 | resolved "https://registry.yarnpkg.com/astral-regex/-/astral-regex-1.0.0.tgz#6c8c3fb827dd43ee3918f27b82782ab7658a6fd9"
253 | integrity sha512-+Ryf6g3BKoRc7jfp7ad8tM4TtMiaWvbF/1/sQcZPkkS7ag3D5nMBCe2UfOTONtAkaG0tO0ij3C5Lwmf1EiyjHg==
254 |
255 | async-each@^1.0.0:
256 | version "1.0.3"
257 | resolved "https://registry.yarnpkg.com/async-each/-/async-each-1.0.3.tgz#b727dbf87d7651602f06f4d4ac387f47d91b0cbf"
258 | integrity sha512-z/WhQ5FPySLdvREByI2vZiTWwCnF0moMJ1hK9YQwDTHKh6I7/uSckMetoRGb5UBZPC1z0jlw+n/XCgjeH7y1AQ==
259 |
260 | atob@^2.1.1:
261 | version "2.1.2"
262 | resolved "https://registry.yarnpkg.com/atob/-/atob-2.1.2.tgz#6d9517eb9e030d2436666651e86bd9f6f13533c9"
263 | integrity sha512-Wm6ukoaOGJi/73p/cl2GvLjTI5JM1k/O14isD73YML8StrH/7/lRFgmg8nICZgD3bZZvjwCGxtMOD3wWNAu8cg==
264 |
265 | axobject-query@^2.0.2:
266 | version "2.0.2"
267 | resolved "https://registry.yarnpkg.com/axobject-query/-/axobject-query-2.0.2.tgz#ea187abe5b9002b377f925d8bf7d1c561adf38f9"
268 | integrity sha512-MCeek8ZH7hKyO1rWUbKNQBbl4l2eY0ntk7OGi+q0RlafrCnfPxC06WZA+uebCfmYp4mNU9jRBP1AhGyf8+W3ww==
269 | dependencies:
270 | ast-types-flow "0.0.7"
271 |
272 | babel-cli@^6.26.0:
273 | version "6.26.0"
274 | resolved "https://registry.yarnpkg.com/babel-cli/-/babel-cli-6.26.0.tgz#502ab54874d7db88ad00b887a06383ce03d002f1"
275 | integrity sha1-UCq1SHTX24itALiHoGODzgPQAvE=
276 | dependencies:
277 | babel-core "^6.26.0"
278 | babel-polyfill "^6.26.0"
279 | babel-register "^6.26.0"
280 | babel-runtime "^6.26.0"
281 | commander "^2.11.0"
282 | convert-source-map "^1.5.0"
283 | fs-readdir-recursive "^1.0.0"
284 | glob "^7.1.2"
285 | lodash "^4.17.4"
286 | output-file-sync "^1.1.2"
287 | path-is-absolute "^1.0.1"
288 | slash "^1.0.0"
289 | source-map "^0.5.6"
290 | v8flags "^2.1.1"
291 | optionalDependencies:
292 | chokidar "^1.6.1"
293 |
294 | babel-code-frame@^6.26.0:
295 | version "6.26.0"
296 | resolved "https://registry.yarnpkg.com/babel-code-frame/-/babel-code-frame-6.26.0.tgz#63fd43f7dc1e3bb7ce35947db8fe369a3f58c74b"
297 | integrity sha1-Y/1D99weO7fONZR9uP42mj9Yx0s=
298 | dependencies:
299 | chalk "^1.1.3"
300 | esutils "^2.0.2"
301 | js-tokens "^3.0.2"
302 |
303 | babel-core@^6.26.0:
304 | version "6.26.3"
305 | resolved "https://registry.yarnpkg.com/babel-core/-/babel-core-6.26.3.tgz#b2e2f09e342d0f0c88e2f02e067794125e75c207"
306 | integrity sha512-6jyFLuDmeidKmUEb3NM+/yawG0M2bDZ9Z1qbZP59cyHLz8kYGKYwpJP0UwUKKUiTRNvxfLesJnTedqczP7cTDA==
307 | dependencies:
308 | babel-code-frame "^6.26.0"
309 | babel-generator "^6.26.0"
310 | babel-helpers "^6.24.1"
311 | babel-messages "^6.23.0"
312 | babel-register "^6.26.0"
313 | babel-runtime "^6.26.0"
314 | babel-template "^6.26.0"
315 | babel-traverse "^6.26.0"
316 | babel-types "^6.26.0"
317 | babylon "^6.18.0"
318 | convert-source-map "^1.5.1"
319 | debug "^2.6.9"
320 | json5 "^0.5.1"
321 | lodash "^4.17.4"
322 | minimatch "^3.0.4"
323 | path-is-absolute "^1.0.1"
324 | private "^0.1.8"
325 | slash "^1.0.0"
326 | source-map "^0.5.7"
327 |
328 | babel-eslint@^10.0.2:
329 | version "10.0.2"
330 | resolved "https://registry.yarnpkg.com/babel-eslint/-/babel-eslint-10.0.2.tgz#182d5ac204579ff0881684b040560fdcc1558456"
331 | integrity sha512-UdsurWPtgiPgpJ06ryUnuaSXC2s0WoSZnQmEpbAH65XZSdwowgN5MvyP7e88nW07FYXv72erVtpBkxyDVKhH1Q==
332 | dependencies:
333 | "@babel/code-frame" "^7.0.0"
334 | "@babel/parser" "^7.0.0"
335 | "@babel/traverse" "^7.0.0"
336 | "@babel/types" "^7.0.0"
337 | eslint-scope "3.7.1"
338 | eslint-visitor-keys "^1.0.0"
339 |
340 | babel-generator@^6.26.0:
341 | version "6.26.1"
342 | resolved "https://registry.yarnpkg.com/babel-generator/-/babel-generator-6.26.1.tgz#1844408d3b8f0d35a404ea7ac180f087a601bd90"
343 | integrity sha512-HyfwY6ApZj7BYTcJURpM5tznulaBvyio7/0d4zFOeMPUmfxkCjHocCuoLa2SAGzBI8AREcH3eP3758F672DppA==
344 | dependencies:
345 | babel-messages "^6.23.0"
346 | babel-runtime "^6.26.0"
347 | babel-types "^6.26.0"
348 | detect-indent "^4.0.0"
349 | jsesc "^1.3.0"
350 | lodash "^4.17.4"
351 | source-map "^0.5.7"
352 | trim-right "^1.0.1"
353 |
354 | babel-helper-bindify-decorators@^6.24.1:
355 | version "6.24.1"
356 | resolved "https://registry.yarnpkg.com/babel-helper-bindify-decorators/-/babel-helper-bindify-decorators-6.24.1.tgz#14c19e5f142d7b47f19a52431e52b1ccbc40a330"
357 | integrity sha1-FMGeXxQte0fxmlJDHlKxzLxAozA=
358 | dependencies:
359 | babel-runtime "^6.22.0"
360 | babel-traverse "^6.24.1"
361 | babel-types "^6.24.1"
362 |
363 | babel-helper-builder-binary-assignment-operator-visitor@^6.24.1:
364 | version "6.24.1"
365 | resolved "https://registry.yarnpkg.com/babel-helper-builder-binary-assignment-operator-visitor/-/babel-helper-builder-binary-assignment-operator-visitor-6.24.1.tgz#cce4517ada356f4220bcae8a02c2b346f9a56664"
366 | integrity sha1-zORReto1b0IgvK6KAsKzRvmlZmQ=
367 | dependencies:
368 | babel-helper-explode-assignable-expression "^6.24.1"
369 | babel-runtime "^6.22.0"
370 | babel-types "^6.24.1"
371 |
372 | babel-helper-call-delegate@^6.24.1:
373 | version "6.24.1"
374 | resolved "https://registry.yarnpkg.com/babel-helper-call-delegate/-/babel-helper-call-delegate-6.24.1.tgz#ece6aacddc76e41c3461f88bfc575bd0daa2df8d"
375 | integrity sha1-7Oaqzdx25Bw0YfiL/Fdb0Nqi340=
376 | dependencies:
377 | babel-helper-hoist-variables "^6.24.1"
378 | babel-runtime "^6.22.0"
379 | babel-traverse "^6.24.1"
380 | babel-types "^6.24.1"
381 |
382 | babel-helper-define-map@^6.24.1:
383 | version "6.26.0"
384 | resolved "https://registry.yarnpkg.com/babel-helper-define-map/-/babel-helper-define-map-6.26.0.tgz#a5f56dab41a25f97ecb498c7ebaca9819f95be5f"
385 | integrity sha1-pfVtq0GiX5fstJjH66ypgZ+Vvl8=
386 | dependencies:
387 | babel-helper-function-name "^6.24.1"
388 | babel-runtime "^6.26.0"
389 | babel-types "^6.26.0"
390 | lodash "^4.17.4"
391 |
392 | babel-helper-explode-assignable-expression@^6.24.1:
393 | version "6.24.1"
394 | resolved "https://registry.yarnpkg.com/babel-helper-explode-assignable-expression/-/babel-helper-explode-assignable-expression-6.24.1.tgz#f25b82cf7dc10433c55f70592d5746400ac22caa"
395 | integrity sha1-8luCz33BBDPFX3BZLVdGQArCLKo=
396 | dependencies:
397 | babel-runtime "^6.22.0"
398 | babel-traverse "^6.24.1"
399 | babel-types "^6.24.1"
400 |
401 | babel-helper-explode-class@^6.24.1:
402 | version "6.24.1"
403 | resolved "https://registry.yarnpkg.com/babel-helper-explode-class/-/babel-helper-explode-class-6.24.1.tgz#7dc2a3910dee007056e1e31d640ced3d54eaa9eb"
404 | integrity sha1-fcKjkQ3uAHBW4eMdZAztPVTqqes=
405 | dependencies:
406 | babel-helper-bindify-decorators "^6.24.1"
407 | babel-runtime "^6.22.0"
408 | babel-traverse "^6.24.1"
409 | babel-types "^6.24.1"
410 |
411 | babel-helper-function-name@^6.24.1:
412 | version "6.24.1"
413 | resolved "https://registry.yarnpkg.com/babel-helper-function-name/-/babel-helper-function-name-6.24.1.tgz#d3475b8c03ed98242a25b48351ab18399d3580a9"
414 | integrity sha1-00dbjAPtmCQqJbSDUasYOZ01gKk=
415 | dependencies:
416 | babel-helper-get-function-arity "^6.24.1"
417 | babel-runtime "^6.22.0"
418 | babel-template "^6.24.1"
419 | babel-traverse "^6.24.1"
420 | babel-types "^6.24.1"
421 |
422 | babel-helper-get-function-arity@^6.24.1:
423 | version "6.24.1"
424 | resolved "https://registry.yarnpkg.com/babel-helper-get-function-arity/-/babel-helper-get-function-arity-6.24.1.tgz#8f7782aa93407c41d3aa50908f89b031b1b6853d"
425 | integrity sha1-j3eCqpNAfEHTqlCQj4mwMbG2hT0=
426 | dependencies:
427 | babel-runtime "^6.22.0"
428 | babel-types "^6.24.1"
429 |
430 | babel-helper-hoist-variables@^6.24.1:
431 | version "6.24.1"
432 | resolved "https://registry.yarnpkg.com/babel-helper-hoist-variables/-/babel-helper-hoist-variables-6.24.1.tgz#1ecb27689c9d25513eadbc9914a73f5408be7a76"
433 | integrity sha1-HssnaJydJVE+rbyZFKc/VAi+enY=
434 | dependencies:
435 | babel-runtime "^6.22.0"
436 | babel-types "^6.24.1"
437 |
438 | babel-helper-optimise-call-expression@^6.24.1:
439 | version "6.24.1"
440 | resolved "https://registry.yarnpkg.com/babel-helper-optimise-call-expression/-/babel-helper-optimise-call-expression-6.24.1.tgz#f7a13427ba9f73f8f4fa993c54a97882d1244257"
441 | integrity sha1-96E0J7qfc/j0+pk8VKl4gtEkQlc=
442 | dependencies:
443 | babel-runtime "^6.22.0"
444 | babel-types "^6.24.1"
445 |
446 | babel-helper-regex@^6.24.1:
447 | version "6.26.0"
448 | resolved "https://registry.yarnpkg.com/babel-helper-regex/-/babel-helper-regex-6.26.0.tgz#325c59f902f82f24b74faceed0363954f6495e72"
449 | integrity sha1-MlxZ+QL4LyS3T6zu0DY5VPZJXnI=
450 | dependencies:
451 | babel-runtime "^6.26.0"
452 | babel-types "^6.26.0"
453 | lodash "^4.17.4"
454 |
455 | babel-helper-remap-async-to-generator@^6.24.1:
456 | version "6.24.1"
457 | resolved "https://registry.yarnpkg.com/babel-helper-remap-async-to-generator/-/babel-helper-remap-async-to-generator-6.24.1.tgz#5ec581827ad723fecdd381f1c928390676e4551b"
458 | integrity sha1-XsWBgnrXI/7N04HxySg5BnbkVRs=
459 | dependencies:
460 | babel-helper-function-name "^6.24.1"
461 | babel-runtime "^6.22.0"
462 | babel-template "^6.24.1"
463 | babel-traverse "^6.24.1"
464 | babel-types "^6.24.1"
465 |
466 | babel-helper-replace-supers@^6.24.1:
467 | version "6.24.1"
468 | resolved "https://registry.yarnpkg.com/babel-helper-replace-supers/-/babel-helper-replace-supers-6.24.1.tgz#bf6dbfe43938d17369a213ca8a8bf74b6a90ab1a"
469 | integrity sha1-v22/5Dk40XNpohPKiov3S2qQqxo=
470 | dependencies:
471 | babel-helper-optimise-call-expression "^6.24.1"
472 | babel-messages "^6.23.0"
473 | babel-runtime "^6.22.0"
474 | babel-template "^6.24.1"
475 | babel-traverse "^6.24.1"
476 | babel-types "^6.24.1"
477 |
478 | babel-helpers@^6.24.1:
479 | version "6.24.1"
480 | resolved "https://registry.yarnpkg.com/babel-helpers/-/babel-helpers-6.24.1.tgz#3471de9caec388e5c850e597e58a26ddf37602b2"
481 | integrity sha1-NHHenK7DiOXIUOWX5Yom3fN2ArI=
482 | dependencies:
483 | babel-runtime "^6.22.0"
484 | babel-template "^6.24.1"
485 |
486 | babel-messages@^6.23.0:
487 | version "6.23.0"
488 | resolved "https://registry.yarnpkg.com/babel-messages/-/babel-messages-6.23.0.tgz#f3cdf4703858035b2a2951c6ec5edf6c62f2630e"
489 | integrity sha1-8830cDhYA1sqKVHG7F7fbGLyYw4=
490 | dependencies:
491 | babel-runtime "^6.22.0"
492 |
493 | babel-plugin-check-es2015-constants@^6.22.0:
494 | version "6.22.0"
495 | resolved "https://registry.yarnpkg.com/babel-plugin-check-es2015-constants/-/babel-plugin-check-es2015-constants-6.22.0.tgz#35157b101426fd2ffd3da3f75c7d1e91835bbf8a"
496 | integrity sha1-NRV7EBQm/S/9PaP3XH0ekYNbv4o=
497 | dependencies:
498 | babel-runtime "^6.22.0"
499 |
500 | babel-plugin-syntax-async-functions@^6.8.0:
501 | version "6.13.0"
502 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-async-functions/-/babel-plugin-syntax-async-functions-6.13.0.tgz#cad9cad1191b5ad634bf30ae0872391e0647be95"
503 | integrity sha1-ytnK0RkbWtY0vzCuCHI5HgZHvpU=
504 |
505 | babel-plugin-syntax-async-generators@^6.5.0:
506 | version "6.13.0"
507 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-async-generators/-/babel-plugin-syntax-async-generators-6.13.0.tgz#6bc963ebb16eccbae6b92b596eb7f35c342a8b9a"
508 | integrity sha1-a8lj67FuzLrmuStZbrfzXDQqi5o=
509 |
510 | babel-plugin-syntax-class-constructor-call@^6.18.0:
511 | version "6.18.0"
512 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-class-constructor-call/-/babel-plugin-syntax-class-constructor-call-6.18.0.tgz#9cb9d39fe43c8600bec8146456ddcbd4e1a76416"
513 | integrity sha1-nLnTn+Q8hgC+yBRkVt3L1OGnZBY=
514 |
515 | babel-plugin-syntax-class-properties@^6.8.0:
516 | version "6.13.0"
517 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-class-properties/-/babel-plugin-syntax-class-properties-6.13.0.tgz#d7eb23b79a317f8543962c505b827c7d6cac27de"
518 | integrity sha1-1+sjt5oxf4VDlixQW4J8fWysJ94=
519 |
520 | babel-plugin-syntax-decorators@^6.13.0:
521 | version "6.13.0"
522 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-decorators/-/babel-plugin-syntax-decorators-6.13.0.tgz#312563b4dbde3cc806cee3e416cceeaddd11ac0b"
523 | integrity sha1-MSVjtNvePMgGzuPkFszurd0RrAs=
524 |
525 | babel-plugin-syntax-do-expressions@^6.8.0:
526 | version "6.13.0"
527 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-do-expressions/-/babel-plugin-syntax-do-expressions-6.13.0.tgz#5747756139aa26d390d09410b03744ba07e4796d"
528 | integrity sha1-V0d1YTmqJtOQ0JQQsDdEugfkeW0=
529 |
530 | babel-plugin-syntax-dynamic-import@^6.18.0:
531 | version "6.18.0"
532 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-dynamic-import/-/babel-plugin-syntax-dynamic-import-6.18.0.tgz#8d6a26229c83745a9982a441051572caa179b1da"
533 | integrity sha1-jWomIpyDdFqZgqRBBRVyyqF5sdo=
534 |
535 | babel-plugin-syntax-exponentiation-operator@^6.8.0:
536 | version "6.13.0"
537 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-exponentiation-operator/-/babel-plugin-syntax-exponentiation-operator-6.13.0.tgz#9ee7e8337290da95288201a6a57f4170317830de"
538 | integrity sha1-nufoM3KQ2pUoggGmpX9BcDF4MN4=
539 |
540 | babel-plugin-syntax-export-extensions@^6.8.0:
541 | version "6.13.0"
542 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-export-extensions/-/babel-plugin-syntax-export-extensions-6.13.0.tgz#70a1484f0f9089a4e84ad44bac353c95b9b12721"
543 | integrity sha1-cKFITw+QiaToStRLrDU8lbmxJyE=
544 |
545 | babel-plugin-syntax-function-bind@^6.8.0:
546 | version "6.13.0"
547 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-function-bind/-/babel-plugin-syntax-function-bind-6.13.0.tgz#48c495f177bdf31a981e732f55adc0bdd2601f46"
548 | integrity sha1-SMSV8Xe98xqYHnMvVa3AvdJgH0Y=
549 |
550 | babel-plugin-syntax-object-rest-spread@^6.8.0:
551 | version "6.13.0"
552 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-object-rest-spread/-/babel-plugin-syntax-object-rest-spread-6.13.0.tgz#fd6536f2bce13836ffa3a5458c4903a597bb3bf5"
553 | integrity sha1-/WU28rzhODb/o6VFjEkDpZe7O/U=
554 |
555 | babel-plugin-syntax-trailing-function-commas@^6.22.0:
556 | version "6.22.0"
557 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-trailing-function-commas/-/babel-plugin-syntax-trailing-function-commas-6.22.0.tgz#ba0360937f8d06e40180a43fe0d5616fff532cf3"
558 | integrity sha1-ugNgk3+NBuQBgKQ/4NVhb/9TLPM=
559 |
560 | babel-plugin-transform-async-generator-functions@^6.24.1:
561 | version "6.24.1"
562 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-async-generator-functions/-/babel-plugin-transform-async-generator-functions-6.24.1.tgz#f058900145fd3e9907a6ddf28da59f215258a5db"
563 | integrity sha1-8FiQAUX9PpkHpt3yjaWfIVJYpds=
564 | dependencies:
565 | babel-helper-remap-async-to-generator "^6.24.1"
566 | babel-plugin-syntax-async-generators "^6.5.0"
567 | babel-runtime "^6.22.0"
568 |
569 | babel-plugin-transform-async-to-generator@^6.22.0, babel-plugin-transform-async-to-generator@^6.24.1:
570 | version "6.24.1"
571 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-async-to-generator/-/babel-plugin-transform-async-to-generator-6.24.1.tgz#6536e378aff6cb1d5517ac0e40eb3e9fc8d08761"
572 | integrity sha1-ZTbjeK/2yx1VF6wOQOs+n8jQh2E=
573 | dependencies:
574 | babel-helper-remap-async-to-generator "^6.24.1"
575 | babel-plugin-syntax-async-functions "^6.8.0"
576 | babel-runtime "^6.22.0"
577 |
578 | babel-plugin-transform-class-constructor-call@^6.24.1:
579 | version "6.24.1"
580 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-class-constructor-call/-/babel-plugin-transform-class-constructor-call-6.24.1.tgz#80dc285505ac067dcb8d6c65e2f6f11ab7765ef9"
581 | integrity sha1-gNwoVQWsBn3LjWxl4vbxGrd2Xvk=
582 | dependencies:
583 | babel-plugin-syntax-class-constructor-call "^6.18.0"
584 | babel-runtime "^6.22.0"
585 | babel-template "^6.24.1"
586 |
587 | babel-plugin-transform-class-properties@^6.24.1:
588 | version "6.24.1"
589 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-class-properties/-/babel-plugin-transform-class-properties-6.24.1.tgz#6a79763ea61d33d36f37b611aa9def81a81b46ac"
590 | integrity sha1-anl2PqYdM9NvN7YRqp3vgagbRqw=
591 | dependencies:
592 | babel-helper-function-name "^6.24.1"
593 | babel-plugin-syntax-class-properties "^6.8.0"
594 | babel-runtime "^6.22.0"
595 | babel-template "^6.24.1"
596 |
597 | babel-plugin-transform-decorators@^6.24.1:
598 | version "6.24.1"
599 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-decorators/-/babel-plugin-transform-decorators-6.24.1.tgz#788013d8f8c6b5222bdf7b344390dfd77569e24d"
600 | integrity sha1-eIAT2PjGtSIr33s0Q5Df13Vp4k0=
601 | dependencies:
602 | babel-helper-explode-class "^6.24.1"
603 | babel-plugin-syntax-decorators "^6.13.0"
604 | babel-runtime "^6.22.0"
605 | babel-template "^6.24.1"
606 | babel-types "^6.24.1"
607 |
608 | babel-plugin-transform-do-expressions@^6.22.0:
609 | version "6.22.0"
610 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-do-expressions/-/babel-plugin-transform-do-expressions-6.22.0.tgz#28ccaf92812d949c2cd1281f690c8fdc468ae9bb"
611 | integrity sha1-KMyvkoEtlJws0SgfaQyP3EaK6bs=
612 | dependencies:
613 | babel-plugin-syntax-do-expressions "^6.8.0"
614 | babel-runtime "^6.22.0"
615 |
616 | babel-plugin-transform-es2015-arrow-functions@^6.22.0:
617 | version "6.22.0"
618 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-arrow-functions/-/babel-plugin-transform-es2015-arrow-functions-6.22.0.tgz#452692cb711d5f79dc7f85e440ce41b9f244d221"
619 | integrity sha1-RSaSy3EdX3ncf4XkQM5BufJE0iE=
620 | dependencies:
621 | babel-runtime "^6.22.0"
622 |
623 | babel-plugin-transform-es2015-block-scoped-functions@^6.22.0:
624 | version "6.22.0"
625 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-block-scoped-functions/-/babel-plugin-transform-es2015-block-scoped-functions-6.22.0.tgz#bbc51b49f964d70cb8d8e0b94e820246ce3a6141"
626 | integrity sha1-u8UbSflk1wy42OC5ToICRs46YUE=
627 | dependencies:
628 | babel-runtime "^6.22.0"
629 |
630 | babel-plugin-transform-es2015-block-scoping@^6.23.0:
631 | version "6.26.0"
632 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-block-scoping/-/babel-plugin-transform-es2015-block-scoping-6.26.0.tgz#d70f5299c1308d05c12f463813b0a09e73b1895f"
633 | integrity sha1-1w9SmcEwjQXBL0Y4E7CgnnOxiV8=
634 | dependencies:
635 | babel-runtime "^6.26.0"
636 | babel-template "^6.26.0"
637 | babel-traverse "^6.26.0"
638 | babel-types "^6.26.0"
639 | lodash "^4.17.4"
640 |
641 | babel-plugin-transform-es2015-classes@^6.23.0:
642 | version "6.24.1"
643 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-classes/-/babel-plugin-transform-es2015-classes-6.24.1.tgz#5a4c58a50c9c9461e564b4b2a3bfabc97a2584db"
644 | integrity sha1-WkxYpQyclGHlZLSyo7+ryXolhNs=
645 | dependencies:
646 | babel-helper-define-map "^6.24.1"
647 | babel-helper-function-name "^6.24.1"
648 | babel-helper-optimise-call-expression "^6.24.1"
649 | babel-helper-replace-supers "^6.24.1"
650 | babel-messages "^6.23.0"
651 | babel-runtime "^6.22.0"
652 | babel-template "^6.24.1"
653 | babel-traverse "^6.24.1"
654 | babel-types "^6.24.1"
655 |
656 | babel-plugin-transform-es2015-computed-properties@^6.22.0:
657 | version "6.24.1"
658 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-computed-properties/-/babel-plugin-transform-es2015-computed-properties-6.24.1.tgz#6fe2a8d16895d5634f4cd999b6d3480a308159b3"
659 | integrity sha1-b+Ko0WiV1WNPTNmZttNICjCBWbM=
660 | dependencies:
661 | babel-runtime "^6.22.0"
662 | babel-template "^6.24.1"
663 |
664 | babel-plugin-transform-es2015-destructuring@^6.23.0:
665 | version "6.23.0"
666 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-destructuring/-/babel-plugin-transform-es2015-destructuring-6.23.0.tgz#997bb1f1ab967f682d2b0876fe358d60e765c56d"
667 | integrity sha1-mXux8auWf2gtKwh2/jWNYOdlxW0=
668 | dependencies:
669 | babel-runtime "^6.22.0"
670 |
671 | babel-plugin-transform-es2015-duplicate-keys@^6.22.0:
672 | version "6.24.1"
673 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-duplicate-keys/-/babel-plugin-transform-es2015-duplicate-keys-6.24.1.tgz#73eb3d310ca969e3ef9ec91c53741a6f1576423e"
674 | integrity sha1-c+s9MQypaePvnskcU3QabxV2Qj4=
675 | dependencies:
676 | babel-runtime "^6.22.0"
677 | babel-types "^6.24.1"
678 |
679 | babel-plugin-transform-es2015-for-of@^6.23.0:
680 | version "6.23.0"
681 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-for-of/-/babel-plugin-transform-es2015-for-of-6.23.0.tgz#f47c95b2b613df1d3ecc2fdb7573623c75248691"
682 | integrity sha1-9HyVsrYT3x0+zC/bdXNiPHUkhpE=
683 | dependencies:
684 | babel-runtime "^6.22.0"
685 |
686 | babel-plugin-transform-es2015-function-name@^6.22.0:
687 | version "6.24.1"
688 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-function-name/-/babel-plugin-transform-es2015-function-name-6.24.1.tgz#834c89853bc36b1af0f3a4c5dbaa94fd8eacaa8b"
689 | integrity sha1-g0yJhTvDaxrw86TF26qU/Y6sqos=
690 | dependencies:
691 | babel-helper-function-name "^6.24.1"
692 | babel-runtime "^6.22.0"
693 | babel-types "^6.24.1"
694 |
695 | babel-plugin-transform-es2015-literals@^6.22.0:
696 | version "6.22.0"
697 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-literals/-/babel-plugin-transform-es2015-literals-6.22.0.tgz#4f54a02d6cd66cf915280019a31d31925377ca2e"
698 | integrity sha1-T1SgLWzWbPkVKAAZox0xklN3yi4=
699 | dependencies:
700 | babel-runtime "^6.22.0"
701 |
702 | babel-plugin-transform-es2015-modules-amd@^6.22.0, babel-plugin-transform-es2015-modules-amd@^6.24.1:
703 | version "6.24.1"
704 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-amd/-/babel-plugin-transform-es2015-modules-amd-6.24.1.tgz#3b3e54017239842d6d19c3011c4bd2f00a00d154"
705 | integrity sha1-Oz5UAXI5hC1tGcMBHEvS8AoA0VQ=
706 | dependencies:
707 | babel-plugin-transform-es2015-modules-commonjs "^6.24.1"
708 | babel-runtime "^6.22.0"
709 | babel-template "^6.24.1"
710 |
711 | babel-plugin-transform-es2015-modules-commonjs@^6.23.0, babel-plugin-transform-es2015-modules-commonjs@^6.24.1:
712 | version "6.26.2"
713 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-commonjs/-/babel-plugin-transform-es2015-modules-commonjs-6.26.2.tgz#58a793863a9e7ca870bdc5a881117ffac27db6f3"
714 | integrity sha512-CV9ROOHEdrjcwhIaJNBGMBCodN+1cfkwtM1SbUHmvyy35KGT7fohbpOxkE2uLz1o6odKK2Ck/tz47z+VqQfi9Q==
715 | dependencies:
716 | babel-plugin-transform-strict-mode "^6.24.1"
717 | babel-runtime "^6.26.0"
718 | babel-template "^6.26.0"
719 | babel-types "^6.26.0"
720 |
721 | babel-plugin-transform-es2015-modules-systemjs@^6.23.0:
722 | version "6.24.1"
723 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-systemjs/-/babel-plugin-transform-es2015-modules-systemjs-6.24.1.tgz#ff89a142b9119a906195f5f106ecf305d9407d23"
724 | integrity sha1-/4mhQrkRmpBhlfXxBuzzBdlAfSM=
725 | dependencies:
726 | babel-helper-hoist-variables "^6.24.1"
727 | babel-runtime "^6.22.0"
728 | babel-template "^6.24.1"
729 |
730 | babel-plugin-transform-es2015-modules-umd@^6.23.0:
731 | version "6.24.1"
732 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-umd/-/babel-plugin-transform-es2015-modules-umd-6.24.1.tgz#ac997e6285cd18ed6176adb607d602344ad38468"
733 | integrity sha1-rJl+YoXNGO1hdq22B9YCNErThGg=
734 | dependencies:
735 | babel-plugin-transform-es2015-modules-amd "^6.24.1"
736 | babel-runtime "^6.22.0"
737 | babel-template "^6.24.1"
738 |
739 | babel-plugin-transform-es2015-object-super@^6.22.0:
740 | version "6.24.1"
741 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-object-super/-/babel-plugin-transform-es2015-object-super-6.24.1.tgz#24cef69ae21cb83a7f8603dad021f572eb278f8d"
742 | integrity sha1-JM72muIcuDp/hgPa0CH1cusnj40=
743 | dependencies:
744 | babel-helper-replace-supers "^6.24.1"
745 | babel-runtime "^6.22.0"
746 |
747 | babel-plugin-transform-es2015-parameters@^6.23.0:
748 | version "6.24.1"
749 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-parameters/-/babel-plugin-transform-es2015-parameters-6.24.1.tgz#57ac351ab49caf14a97cd13b09f66fdf0a625f2b"
750 | integrity sha1-V6w1GrScrxSpfNE7CfZv3wpiXys=
751 | dependencies:
752 | babel-helper-call-delegate "^6.24.1"
753 | babel-helper-get-function-arity "^6.24.1"
754 | babel-runtime "^6.22.0"
755 | babel-template "^6.24.1"
756 | babel-traverse "^6.24.1"
757 | babel-types "^6.24.1"
758 |
759 | babel-plugin-transform-es2015-shorthand-properties@^6.22.0:
760 | version "6.24.1"
761 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-shorthand-properties/-/babel-plugin-transform-es2015-shorthand-properties-6.24.1.tgz#24f875d6721c87661bbd99a4622e51f14de38aa0"
762 | integrity sha1-JPh11nIch2YbvZmkYi5R8U3jiqA=
763 | dependencies:
764 | babel-runtime "^6.22.0"
765 | babel-types "^6.24.1"
766 |
767 | babel-plugin-transform-es2015-spread@^6.22.0:
768 | version "6.22.0"
769 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-spread/-/babel-plugin-transform-es2015-spread-6.22.0.tgz#d6d68a99f89aedc4536c81a542e8dd9f1746f8d1"
770 | integrity sha1-1taKmfia7cRTbIGlQujdnxdG+NE=
771 | dependencies:
772 | babel-runtime "^6.22.0"
773 |
774 | babel-plugin-transform-es2015-sticky-regex@^6.22.0:
775 | version "6.24.1"
776 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-sticky-regex/-/babel-plugin-transform-es2015-sticky-regex-6.24.1.tgz#00c1cdb1aca71112cdf0cf6126c2ed6b457ccdbc"
777 | integrity sha1-AMHNsaynERLN8M9hJsLta0V8zbw=
778 | dependencies:
779 | babel-helper-regex "^6.24.1"
780 | babel-runtime "^6.22.0"
781 | babel-types "^6.24.1"
782 |
783 | babel-plugin-transform-es2015-template-literals@^6.22.0:
784 | version "6.22.0"
785 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-template-literals/-/babel-plugin-transform-es2015-template-literals-6.22.0.tgz#a84b3450f7e9f8f1f6839d6d687da84bb1236d8d"
786 | integrity sha1-qEs0UPfp+PH2g51taH2oS7EjbY0=
787 | dependencies:
788 | babel-runtime "^6.22.0"
789 |
790 | babel-plugin-transform-es2015-typeof-symbol@^6.23.0:
791 | version "6.23.0"
792 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-typeof-symbol/-/babel-plugin-transform-es2015-typeof-symbol-6.23.0.tgz#dec09f1cddff94b52ac73d505c84df59dcceb372"
793 | integrity sha1-3sCfHN3/lLUqxz1QXITfWdzOs3I=
794 | dependencies:
795 | babel-runtime "^6.22.0"
796 |
797 | babel-plugin-transform-es2015-unicode-regex@^6.22.0:
798 | version "6.24.1"
799 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-unicode-regex/-/babel-plugin-transform-es2015-unicode-regex-6.24.1.tgz#d38b12f42ea7323f729387f18a7c5ae1faeb35e9"
800 | integrity sha1-04sS9C6nMj9yk4fxinxa4frrNek=
801 | dependencies:
802 | babel-helper-regex "^6.24.1"
803 | babel-runtime "^6.22.0"
804 | regexpu-core "^2.0.0"
805 |
806 | babel-plugin-transform-exponentiation-operator@^6.22.0, babel-plugin-transform-exponentiation-operator@^6.24.1:
807 | version "6.24.1"
808 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-exponentiation-operator/-/babel-plugin-transform-exponentiation-operator-6.24.1.tgz#2ab0c9c7f3098fa48907772bb813fe41e8de3a0e"
809 | integrity sha1-KrDJx/MJj6SJB3cruBP+QejeOg4=
810 | dependencies:
811 | babel-helper-builder-binary-assignment-operator-visitor "^6.24.1"
812 | babel-plugin-syntax-exponentiation-operator "^6.8.0"
813 | babel-runtime "^6.22.0"
814 |
815 | babel-plugin-transform-export-extensions@^6.22.0:
816 | version "6.22.0"
817 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-export-extensions/-/babel-plugin-transform-export-extensions-6.22.0.tgz#53738b47e75e8218589eea946cbbd39109bbe653"
818 | integrity sha1-U3OLR+deghhYnuqUbLvTkQm75lM=
819 | dependencies:
820 | babel-plugin-syntax-export-extensions "^6.8.0"
821 | babel-runtime "^6.22.0"
822 |
823 | babel-plugin-transform-function-bind@^6.22.0:
824 | version "6.22.0"
825 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-function-bind/-/babel-plugin-transform-function-bind-6.22.0.tgz#c6fb8e96ac296a310b8cf8ea401462407ddf6a97"
826 | integrity sha1-xvuOlqwpajELjPjqQBRiQH3fapc=
827 | dependencies:
828 | babel-plugin-syntax-function-bind "^6.8.0"
829 | babel-runtime "^6.22.0"
830 |
831 | babel-plugin-transform-object-rest-spread@^6.22.0:
832 | version "6.26.0"
833 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-object-rest-spread/-/babel-plugin-transform-object-rest-spread-6.26.0.tgz#0f36692d50fef6b7e2d4b3ac1478137a963b7b06"
834 | integrity sha1-DzZpLVD+9rfi1LOsFHgTepY7ewY=
835 | dependencies:
836 | babel-plugin-syntax-object-rest-spread "^6.8.0"
837 | babel-runtime "^6.26.0"
838 |
839 | babel-plugin-transform-regenerator@^6.22.0:
840 | version "6.26.0"
841 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-regenerator/-/babel-plugin-transform-regenerator-6.26.0.tgz#e0703696fbde27f0a3efcacf8b4dca2f7b3a8f2f"
842 | integrity sha1-4HA2lvveJ/Cj78rPi03KL3s6jy8=
843 | dependencies:
844 | regenerator-transform "^0.10.0"
845 |
846 | babel-plugin-transform-strict-mode@^6.24.1:
847 | version "6.24.1"
848 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-strict-mode/-/babel-plugin-transform-strict-mode-6.24.1.tgz#d5faf7aa578a65bbe591cf5edae04a0c67020758"
849 | integrity sha1-1fr3qleKZbvlkc9e2uBKDGcCB1g=
850 | dependencies:
851 | babel-runtime "^6.22.0"
852 | babel-types "^6.24.1"
853 |
854 | babel-polyfill@^6.26.0:
855 | version "6.26.0"
856 | resolved "https://registry.yarnpkg.com/babel-polyfill/-/babel-polyfill-6.26.0.tgz#379937abc67d7895970adc621f284cd966cf2153"
857 | integrity sha1-N5k3q8Z9eJWXCtxiHyhM2WbPIVM=
858 | dependencies:
859 | babel-runtime "^6.26.0"
860 | core-js "^2.5.0"
861 | regenerator-runtime "^0.10.5"
862 |
863 | babel-preset-env@^1.7.0:
864 | version "1.7.0"
865 | resolved "https://registry.yarnpkg.com/babel-preset-env/-/babel-preset-env-1.7.0.tgz#dea79fa4ebeb883cd35dab07e260c1c9c04df77a"
866 | integrity sha512-9OR2afuKDneX2/q2EurSftUYM0xGu4O2D9adAhVfADDhrYDaxXV0rBbevVYoY9n6nyX1PmQW/0jtpJvUNr9CHg==
867 | dependencies:
868 | babel-plugin-check-es2015-constants "^6.22.0"
869 | babel-plugin-syntax-trailing-function-commas "^6.22.0"
870 | babel-plugin-transform-async-to-generator "^6.22.0"
871 | babel-plugin-transform-es2015-arrow-functions "^6.22.0"
872 | babel-plugin-transform-es2015-block-scoped-functions "^6.22.0"
873 | babel-plugin-transform-es2015-block-scoping "^6.23.0"
874 | babel-plugin-transform-es2015-classes "^6.23.0"
875 | babel-plugin-transform-es2015-computed-properties "^6.22.0"
876 | babel-plugin-transform-es2015-destructuring "^6.23.0"
877 | babel-plugin-transform-es2015-duplicate-keys "^6.22.0"
878 | babel-plugin-transform-es2015-for-of "^6.23.0"
879 | babel-plugin-transform-es2015-function-name "^6.22.0"
880 | babel-plugin-transform-es2015-literals "^6.22.0"
881 | babel-plugin-transform-es2015-modules-amd "^6.22.0"
882 | babel-plugin-transform-es2015-modules-commonjs "^6.23.0"
883 | babel-plugin-transform-es2015-modules-systemjs "^6.23.0"
884 | babel-plugin-transform-es2015-modules-umd "^6.23.0"
885 | babel-plugin-transform-es2015-object-super "^6.22.0"
886 | babel-plugin-transform-es2015-parameters "^6.23.0"
887 | babel-plugin-transform-es2015-shorthand-properties "^6.22.0"
888 | babel-plugin-transform-es2015-spread "^6.22.0"
889 | babel-plugin-transform-es2015-sticky-regex "^6.22.0"
890 | babel-plugin-transform-es2015-template-literals "^6.22.0"
891 | babel-plugin-transform-es2015-typeof-symbol "^6.23.0"
892 | babel-plugin-transform-es2015-unicode-regex "^6.22.0"
893 | babel-plugin-transform-exponentiation-operator "^6.22.0"
894 | babel-plugin-transform-regenerator "^6.22.0"
895 | browserslist "^3.2.6"
896 | invariant "^2.2.2"
897 | semver "^5.3.0"
898 |
899 | babel-preset-stage-0@^6.24.1:
900 | version "6.24.1"
901 | resolved "https://registry.yarnpkg.com/babel-preset-stage-0/-/babel-preset-stage-0-6.24.1.tgz#5642d15042f91384d7e5af8bc88b1db95b039e6a"
902 | integrity sha1-VkLRUEL5E4TX5a+LyIsduVsDnmo=
903 | dependencies:
904 | babel-plugin-transform-do-expressions "^6.22.0"
905 | babel-plugin-transform-function-bind "^6.22.0"
906 | babel-preset-stage-1 "^6.24.1"
907 |
908 | babel-preset-stage-1@^6.24.1:
909 | version "6.24.1"
910 | resolved "https://registry.yarnpkg.com/babel-preset-stage-1/-/babel-preset-stage-1-6.24.1.tgz#7692cd7dcd6849907e6ae4a0a85589cfb9e2bfb0"
911 | integrity sha1-dpLNfc1oSZB+auSgqFWJz7niv7A=
912 | dependencies:
913 | babel-plugin-transform-class-constructor-call "^6.24.1"
914 | babel-plugin-transform-export-extensions "^6.22.0"
915 | babel-preset-stage-2 "^6.24.1"
916 |
917 | babel-preset-stage-2@^6.24.1:
918 | version "6.24.1"
919 | resolved "https://registry.yarnpkg.com/babel-preset-stage-2/-/babel-preset-stage-2-6.24.1.tgz#d9e2960fb3d71187f0e64eec62bc07767219bdc1"
920 | integrity sha1-2eKWD7PXEYfw5k7sYrwHdnIZvcE=
921 | dependencies:
922 | babel-plugin-syntax-dynamic-import "^6.18.0"
923 | babel-plugin-transform-class-properties "^6.24.1"
924 | babel-plugin-transform-decorators "^6.24.1"
925 | babel-preset-stage-3 "^6.24.1"
926 |
927 | babel-preset-stage-3@^6.24.1:
928 | version "6.24.1"
929 | resolved "https://registry.yarnpkg.com/babel-preset-stage-3/-/babel-preset-stage-3-6.24.1.tgz#836ada0a9e7a7fa37cb138fb9326f87934a48395"
930 | integrity sha1-g2raCp56f6N8sTj7kyb4eTSkg5U=
931 | dependencies:
932 | babel-plugin-syntax-trailing-function-commas "^6.22.0"
933 | babel-plugin-transform-async-generator-functions "^6.24.1"
934 | babel-plugin-transform-async-to-generator "^6.24.1"
935 | babel-plugin-transform-exponentiation-operator "^6.24.1"
936 | babel-plugin-transform-object-rest-spread "^6.22.0"
937 |
938 | babel-register@^6.26.0:
939 | version "6.26.0"
940 | resolved "https://registry.yarnpkg.com/babel-register/-/babel-register-6.26.0.tgz#6ed021173e2fcb486d7acb45c6009a856f647071"
941 | integrity sha1-btAhFz4vy0htestFxgCahW9kcHE=
942 | dependencies:
943 | babel-core "^6.26.0"
944 | babel-runtime "^6.26.0"
945 | core-js "^2.5.0"
946 | home-or-tmp "^2.0.0"
947 | lodash "^4.17.4"
948 | mkdirp "^0.5.1"
949 | source-map-support "^0.4.15"
950 |
951 | babel-runtime@^6.18.0, babel-runtime@^6.22.0, babel-runtime@^6.26.0:
952 | version "6.26.0"
953 | resolved "https://registry.yarnpkg.com/babel-runtime/-/babel-runtime-6.26.0.tgz#965c7058668e82b55d7bfe04ff2337bc8b5647fe"
954 | integrity sha1-llxwWGaOgrVde/4E/yM3vItWR/4=
955 | dependencies:
956 | core-js "^2.4.0"
957 | regenerator-runtime "^0.11.0"
958 |
959 | babel-template@^6.24.1, babel-template@^6.26.0:
960 | version "6.26.0"
961 | resolved "https://registry.yarnpkg.com/babel-template/-/babel-template-6.26.0.tgz#de03e2d16396b069f46dd9fff8521fb1a0e35e02"
962 | integrity sha1-3gPi0WOWsGn0bdn/+FIfsaDjXgI=
963 | dependencies:
964 | babel-runtime "^6.26.0"
965 | babel-traverse "^6.26.0"
966 | babel-types "^6.26.0"
967 | babylon "^6.18.0"
968 | lodash "^4.17.4"
969 |
970 | babel-traverse@^6.24.1, babel-traverse@^6.26.0:
971 | version "6.26.0"
972 | resolved "https://registry.yarnpkg.com/babel-traverse/-/babel-traverse-6.26.0.tgz#46a9cbd7edcc62c8e5c064e2d2d8d0f4035766ee"
973 | integrity sha1-RqnL1+3MYsjlwGTi0tjQ9ANXZu4=
974 | dependencies:
975 | babel-code-frame "^6.26.0"
976 | babel-messages "^6.23.0"
977 | babel-runtime "^6.26.0"
978 | babel-types "^6.26.0"
979 | babylon "^6.18.0"
980 | debug "^2.6.8"
981 | globals "^9.18.0"
982 | invariant "^2.2.2"
983 | lodash "^4.17.4"
984 |
985 | babel-types@^6.19.0, babel-types@^6.24.1, babel-types@^6.26.0:
986 | version "6.26.0"
987 | resolved "https://registry.yarnpkg.com/babel-types/-/babel-types-6.26.0.tgz#a3b073f94ab49eb6fa55cd65227a334380632497"
988 | integrity sha1-o7Bz+Uq0nrb6Vc1lInozQ4BjJJc=
989 | dependencies:
990 | babel-runtime "^6.26.0"
991 | esutils "^2.0.2"
992 | lodash "^4.17.4"
993 | to-fast-properties "^1.0.3"
994 |
995 | babylon@^6.18.0:
996 | version "6.18.0"
997 | resolved "https://registry.yarnpkg.com/babylon/-/babylon-6.18.0.tgz#af2f3b88fa6f5c1e4c634d1a0f8eac4f55b395e3"
998 | integrity sha512-q/UEjfGJ2Cm3oKV71DJz9d25TPnq5rhBVL2Q4fA5wcC3jcrdn7+SssEybFIxwAvvP+YCsCYNKughoF33GxgycQ==
999 |
1000 | bail@^1.0.0:
1001 | version "1.0.4"
1002 | resolved "https://registry.yarnpkg.com/bail/-/bail-1.0.4.tgz#7181b66d508aa3055d3f6c13f0a0c720641dde9b"
1003 | integrity sha512-S8vuDB4w6YpRhICUDET3guPlQpaJl7od94tpZ0Fvnyp+MKW/HyDTcRDck+29C9g+d/qQHnddRH3+94kZdrW0Ww==
1004 |
1005 | balanced-match@^1.0.0:
1006 | version "1.0.0"
1007 | resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.0.tgz#89b4d199ab2bee49de164ea02b89ce462d71b767"
1008 | integrity sha1-ibTRmasr7kneFk6gK4nORi1xt2c=
1009 |
1010 | base@^0.11.1:
1011 | version "0.11.2"
1012 | resolved "https://registry.yarnpkg.com/base/-/base-0.11.2.tgz#7bde5ced145b6d551a90db87f83c558b4eb48a8f"
1013 | integrity sha512-5T6P4xPgpp0YDFvSWwEZ4NoE3aM4QBQXDzmVbraCkFj8zHM+mba8SyqB5DbZWyR7mYHo6Y7BdQo3MoA4m0TeQg==
1014 | dependencies:
1015 | cache-base "^1.0.1"
1016 | class-utils "^0.3.5"
1017 | component-emitter "^1.2.1"
1018 | define-property "^1.0.0"
1019 | isobject "^3.0.1"
1020 | mixin-deep "^1.2.0"
1021 | pascalcase "^0.1.1"
1022 |
1023 | binary-extensions@^1.0.0:
1024 | version "1.13.1"
1025 | resolved "https://registry.yarnpkg.com/binary-extensions/-/binary-extensions-1.13.1.tgz#598afe54755b2868a5330d2aff9d4ebb53209b65"
1026 | integrity sha512-Un7MIEDdUC5gNpcGDV97op1Ywk748MpHcFTHoYs6qnj1Z3j7I53VG3nwZhKzoBZmbdRNnb6WRdFlwl7tSDuZGw==
1027 |
1028 | brace-expansion@^1.1.7:
1029 | version "1.1.11"
1030 | resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.11.tgz#3c7fcbf529d87226f3d2f52b966ff5271eb441dd"
1031 | integrity sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==
1032 | dependencies:
1033 | balanced-match "^1.0.0"
1034 | concat-map "0.0.1"
1035 |
1036 | braces@^1.8.2:
1037 | version "1.8.5"
1038 | resolved "https://registry.yarnpkg.com/braces/-/braces-1.8.5.tgz#ba77962e12dff969d6b76711e914b737857bf6a7"
1039 | integrity sha1-uneWLhLf+WnWt2cR6RS3N4V79qc=
1040 | dependencies:
1041 | expand-range "^1.8.1"
1042 | preserve "^0.2.0"
1043 | repeat-element "^1.1.2"
1044 |
1045 | braces@^2.3.1:
1046 | version "2.3.2"
1047 | resolved "https://registry.yarnpkg.com/braces/-/braces-2.3.2.tgz#5979fd3f14cd531565e5fa2df1abfff1dfaee729"
1048 | integrity sha512-aNdbnj9P8PjdXU4ybaWLK2IF3jc/EoDYbC7AazW6to3TRsfXxscC9UXOB5iDiEQrkyIbWp2SLQda4+QAa7nc3w==
1049 | dependencies:
1050 | arr-flatten "^1.1.0"
1051 | array-unique "^0.3.2"
1052 | extend-shallow "^2.0.1"
1053 | fill-range "^4.0.0"
1054 | isobject "^3.0.1"
1055 | repeat-element "^1.1.2"
1056 | snapdragon "^0.8.1"
1057 | snapdragon-node "^2.0.1"
1058 | split-string "^3.0.2"
1059 | to-regex "^3.0.1"
1060 |
1061 | browserslist@^3.2.6:
1062 | version "3.2.8"
1063 | resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-3.2.8.tgz#b0005361d6471f0f5952797a76fc985f1f978fc6"
1064 | integrity sha512-WHVocJYavUwVgVViC0ORikPHQquXwVh939TaelZ4WDqpWgTX/FsGhl/+P4qBUAGcRvtOgDgC+xftNWWp2RUTAQ==
1065 | dependencies:
1066 | caniuse-lite "^1.0.30000844"
1067 | electron-to-chromium "^1.3.47"
1068 |
1069 | cache-base@^1.0.1:
1070 | version "1.0.1"
1071 | resolved "https://registry.yarnpkg.com/cache-base/-/cache-base-1.0.1.tgz#0a7f46416831c8b662ee36fe4e7c59d76f666ab2"
1072 | integrity sha512-AKcdTnFSWATd5/GCPRxr2ChwIJ85CeyrEyjRHlKxQ56d4XJMGym0uAiKn0xbLOGOl3+yRpOTi484dVCEc5AUzQ==
1073 | dependencies:
1074 | collection-visit "^1.0.0"
1075 | component-emitter "^1.2.1"
1076 | get-value "^2.0.6"
1077 | has-value "^1.0.0"
1078 | isobject "^3.0.1"
1079 | set-value "^2.0.0"
1080 | to-object-path "^0.3.0"
1081 | union-value "^1.0.0"
1082 | unset-value "^1.0.0"
1083 |
1084 | callsites@^3.0.0:
1085 | version "3.1.0"
1086 | resolved "https://registry.yarnpkg.com/callsites/-/callsites-3.1.0.tgz#b3630abd8943432f54b3f0519238e33cd7df2f73"
1087 | integrity sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==
1088 |
1089 | caniuse-lite@^1.0.30000844:
1090 | version "1.0.30000989"
1091 | resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30000989.tgz#b9193e293ccf7e4426c5245134b8f2a56c0ac4b9"
1092 | integrity sha512-vrMcvSuMz16YY6GSVZ0dWDTJP8jqk3iFQ/Aq5iqblPwxSVVZI+zxDyTX0VPqtQsDnfdrBDcsmhgTEOh5R8Lbpw==
1093 |
1094 | ccount@^1.0.0:
1095 | version "1.0.4"
1096 | resolved "https://registry.yarnpkg.com/ccount/-/ccount-1.0.4.tgz#9cf2de494ca84060a2a8d2854edd6dfb0445f386"
1097 | integrity sha512-fpZ81yYfzentuieinmGnphk0pLkOTMm6MZdVqwd77ROvhko6iujLNGrHH5E7utq3ygWklwfmwuG+A7P+NpqT6w==
1098 |
1099 | chalk@^1.1.3:
1100 | version "1.1.3"
1101 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-1.1.3.tgz#a8115c55e4a702fe4d150abd3872822a7e09fc98"
1102 | integrity sha1-qBFcVeSnAv5NFQq9OHKCKn4J/Jg=
1103 | dependencies:
1104 | ansi-styles "^2.2.1"
1105 | escape-string-regexp "^1.0.2"
1106 | has-ansi "^2.0.0"
1107 | strip-ansi "^3.0.0"
1108 | supports-color "^2.0.0"
1109 |
1110 | chalk@^2.0.0, chalk@^2.1.0, chalk@^2.4.2:
1111 | version "2.4.2"
1112 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-2.4.2.tgz#cd42541677a54333cf541a49108c1432b44c9424"
1113 | integrity sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==
1114 | dependencies:
1115 | ansi-styles "^3.2.1"
1116 | escape-string-regexp "^1.0.5"
1117 | supports-color "^5.3.0"
1118 |
1119 | character-entities-html4@^1.0.0:
1120 | version "1.1.3"
1121 | resolved "https://registry.yarnpkg.com/character-entities-html4/-/character-entities-html4-1.1.3.tgz#5ce6e01618e47048ac22f34f7f39db5c6fd679ef"
1122 | integrity sha512-SwnyZ7jQBCRHELk9zf2CN5AnGEc2nA+uKMZLHvcqhpPprjkYhiLn0DywMHgN5ttFZuITMATbh68M6VIVKwJbcg==
1123 |
1124 | character-entities-legacy@^1.0.0:
1125 | version "1.1.3"
1126 | resolved "https://registry.yarnpkg.com/character-entities-legacy/-/character-entities-legacy-1.1.3.tgz#3c729991d9293da0ede6dddcaf1f2ce1009ee8b4"
1127 | integrity sha512-YAxUpPoPwxYFsslbdKkhrGnXAtXoHNgYjlBM3WMXkWGTl5RsY3QmOyhwAgL8Nxm9l5LBThXGawxKPn68y6/fww==
1128 |
1129 | character-entities@^1.0.0:
1130 | version "1.2.3"
1131 | resolved "https://registry.yarnpkg.com/character-entities/-/character-entities-1.2.3.tgz#bbed4a52fe7ef98cc713c6d80d9faa26916d54e6"
1132 | integrity sha512-yB4oYSAa9yLcGyTbB4ItFwHw43QHdH129IJ5R+WvxOkWlyFnR5FAaBNnUq4mcxsTVZGh28bHoeTHMKXH1wZf3w==
1133 |
1134 | character-reference-invalid@^1.0.0:
1135 | version "1.1.3"
1136 | resolved "https://registry.yarnpkg.com/character-reference-invalid/-/character-reference-invalid-1.1.3.tgz#1647f4f726638d3ea4a750cf5d1975c1c7919a85"
1137 | integrity sha512-VOq6PRzQBam/8Jm6XBGk2fNEnHXAdGd6go0rtd4weAGECBamHDwwCQSOT12TACIYUZegUXnV6xBXqUssijtxIg==
1138 |
1139 | chardet@^0.7.0:
1140 | version "0.7.0"
1141 | resolved "https://registry.yarnpkg.com/chardet/-/chardet-0.7.0.tgz#90094849f0937f2eedc2425d0d28a9e5f0cbad9e"
1142 | integrity sha512-mT8iDcrh03qDGRRmoA2hmBJnxpllMR+0/0qlzjqZES6NdiWDcZkCNAk4rPFZ9Q85r27unkiNNg8ZOiwZXBHwcA==
1143 |
1144 | chokidar@^1.6.1:
1145 | version "1.7.0"
1146 | resolved "https://registry.yarnpkg.com/chokidar/-/chokidar-1.7.0.tgz#798e689778151c8076b4b360e5edd28cda2bb468"
1147 | integrity sha1-eY5ol3gVHIB2tLNg5e3SjNortGg=
1148 | dependencies:
1149 | anymatch "^1.3.0"
1150 | async-each "^1.0.0"
1151 | glob-parent "^2.0.0"
1152 | inherits "^2.0.1"
1153 | is-binary-path "^1.0.0"
1154 | is-glob "^2.0.0"
1155 | path-is-absolute "^1.0.0"
1156 | readdirp "^2.0.0"
1157 | optionalDependencies:
1158 | fsevents "^1.0.0"
1159 |
1160 | chownr@^1.1.1:
1161 | version "1.1.2"
1162 | resolved "https://registry.yarnpkg.com/chownr/-/chownr-1.1.2.tgz#a18f1e0b269c8a6a5d3c86eb298beb14c3dd7bf6"
1163 | integrity sha512-GkfeAQh+QNy3wquu9oIZr6SS5x7wGdSgNQvD10X3r+AZr1Oys22HW8kAmDMvNg2+Dm0TeGaEuO8gFwdBXxwO8A==
1164 |
1165 | class-utils@^0.3.5:
1166 | version "0.3.6"
1167 | resolved "https://registry.yarnpkg.com/class-utils/-/class-utils-0.3.6.tgz#f93369ae8b9a7ce02fd41faad0ca83033190c463"
1168 | integrity sha512-qOhPa/Fj7s6TY8H8esGu5QNpMMQxz79h+urzrNYN6mn+9BnxlDGf5QZ+XeCDsxSjPqsSR56XOZOJmpeurnLMeg==
1169 | dependencies:
1170 | arr-union "^3.1.0"
1171 | define-property "^0.2.5"
1172 | isobject "^3.0.0"
1173 | static-extend "^0.1.1"
1174 |
1175 | cli-cursor@^3.1.0:
1176 | version "3.1.0"
1177 | resolved "https://registry.yarnpkg.com/cli-cursor/-/cli-cursor-3.1.0.tgz#264305a7ae490d1d03bf0c9ba7c925d1753af307"
1178 | integrity sha512-I/zHAwsKf9FqGoXM4WWRACob9+SNukZTd94DWF57E4toouRulbCxcUh6RKUEOQlYTHJnzkPMySvPNaaSLNfLZw==
1179 | dependencies:
1180 | restore-cursor "^3.1.0"
1181 |
1182 | cli-width@^2.0.0:
1183 | version "2.2.0"
1184 | resolved "https://registry.yarnpkg.com/cli-width/-/cli-width-2.2.0.tgz#ff19ede8a9a5e579324147b0c11f0fbcbabed639"
1185 | integrity sha1-/xnt6Kml5XkyQUewwR8PvLq+1jk=
1186 |
1187 | clipboard@^2.0.4:
1188 | version "2.0.4"
1189 | resolved "https://registry.yarnpkg.com/clipboard/-/clipboard-2.0.4.tgz#836dafd66cf0fea5d71ce5d5b0bf6e958009112d"
1190 | integrity sha512-Vw26VSLRpJfBofiVaFb/I8PVfdI1OxKcYShe6fm0sP/DtmiWQNCjhM/okTvdCo0G+lMMm1rMYbk4IK4x1X+kgQ==
1191 | dependencies:
1192 | good-listener "^1.2.2"
1193 | select "^1.1.2"
1194 | tiny-emitter "^2.0.0"
1195 |
1196 | code-point-at@^1.0.0:
1197 | version "1.1.0"
1198 | resolved "https://registry.yarnpkg.com/code-point-at/-/code-point-at-1.1.0.tgz#0d070b4d043a5bea33a2f1a40e2edb3d9a4ccf77"
1199 | integrity sha1-DQcLTQQ6W+ozovGkDi7bPZpMz3c=
1200 |
1201 | collapse-white-space@^1.0.2:
1202 | version "1.0.5"
1203 | resolved "https://registry.yarnpkg.com/collapse-white-space/-/collapse-white-space-1.0.5.tgz#c2495b699ab1ed380d29a1091e01063e75dbbe3a"
1204 | integrity sha512-703bOOmytCYAX9cXYqoikYIx6twmFCXsnzRQheBcTG3nzKYBR4P/+wkYeH+Mvj7qUz8zZDtdyzbxfnEi/kYzRQ==
1205 |
1206 | collection-visit@^1.0.0:
1207 | version "1.0.0"
1208 | resolved "https://registry.yarnpkg.com/collection-visit/-/collection-visit-1.0.0.tgz#4bc0373c164bc3291b4d368c829cf1a80a59dca0"
1209 | integrity sha1-S8A3PBZLwykbTTaMgpzxqApZ3KA=
1210 | dependencies:
1211 | map-visit "^1.0.0"
1212 | object-visit "^1.0.0"
1213 |
1214 | color-convert@^1.9.0:
1215 | version "1.9.3"
1216 | resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-1.9.3.tgz#bb71850690e1f136567de629d2d5471deda4c1e8"
1217 | integrity sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==
1218 | dependencies:
1219 | color-name "1.1.3"
1220 |
1221 | color-name@1.1.3:
1222 | version "1.1.3"
1223 | resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.3.tgz#a7d0558bd89c42f795dd42328f740831ca53bc25"
1224 | integrity sha1-p9BVi9icQveV3UIyj3QIMcpTvCU=
1225 |
1226 | commander@^2.11.0:
1227 | version "2.20.0"
1228 | resolved "https://registry.yarnpkg.com/commander/-/commander-2.20.0.tgz#d58bb2b5c1ee8f87b0d340027e9e94e222c5a422"
1229 | integrity sha512-7j2y+40w61zy6YC2iRNpUe/NwhNyoXrYpHMrSunaMG64nRnaf96zO/KMQR4OyN/UnE5KLyEBnKHd4aG3rskjpQ==
1230 |
1231 | component-emitter@^1.2.1:
1232 | version "1.3.0"
1233 | resolved "https://registry.yarnpkg.com/component-emitter/-/component-emitter-1.3.0.tgz#16e4070fba8ae29b679f2215853ee181ab2eabc0"
1234 | integrity sha512-Rd3se6QB+sO1TwqZjscQrurpEPIfO0/yYnSin6Q/rD3mOutHvUrCAhJub3r90uNb+SESBuE0QYoB90YdfatsRg==
1235 |
1236 | concat-map@0.0.1:
1237 | version "0.0.1"
1238 | resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b"
1239 | integrity sha1-2Klr13/Wjfd5OnMDajug1UBdR3s=
1240 |
1241 | confusing-browser-globals@^1.0.7:
1242 | version "1.0.8"
1243 | resolved "https://registry.yarnpkg.com/confusing-browser-globals/-/confusing-browser-globals-1.0.8.tgz#93ffec1f82a6e2bf2bc36769cc3a92fa20e502f3"
1244 | integrity sha512-lI7asCibVJ6Qd3FGU7mu4sfG4try4LX3+GVS+Gv8UlrEf2AeW57piecapnog2UHZSbcX/P/1UDWVaTsblowlZg==
1245 |
1246 | console-control-strings@^1.0.0, console-control-strings@~1.1.0:
1247 | version "1.1.0"
1248 | resolved "https://registry.yarnpkg.com/console-control-strings/-/console-control-strings-1.1.0.tgz#3d7cf4464db6446ea644bf4b39507f9851008e8e"
1249 | integrity sha1-PXz0Rk22RG6mRL9LOVB/mFEAjo4=
1250 |
1251 | contains-path@^0.1.0:
1252 | version "0.1.0"
1253 | resolved "https://registry.yarnpkg.com/contains-path/-/contains-path-0.1.0.tgz#fe8cf184ff6670b6baef01a9d4861a5cbec4120a"
1254 | integrity sha1-/ozxhP9mcLa67wGp1IYaXL7EEgo=
1255 |
1256 | convert-source-map@^1.5.0, convert-source-map@^1.5.1:
1257 | version "1.6.0"
1258 | resolved "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-1.6.0.tgz#51b537a8c43e0f04dec1993bffcdd504e758ac20"
1259 | integrity sha512-eFu7XigvxdZ1ETfbgPBohgyQ/Z++C0eEhTor0qRwBw9unw+L0/6V8wkSuGgzdThkiS5lSpdptOQPD8Ak40a+7A==
1260 | dependencies:
1261 | safe-buffer "~5.1.1"
1262 |
1263 | copy-descriptor@^0.1.0:
1264 | version "0.1.1"
1265 | resolved "https://registry.yarnpkg.com/copy-descriptor/-/copy-descriptor-0.1.1.tgz#676f6eb3c39997c2ee1ac3a924fd6124748f578d"
1266 | integrity sha1-Z29us8OZl8LuGsOpJP1hJHSPV40=
1267 |
1268 | core-js@^2.4.0, core-js@^2.5.0:
1269 | version "2.6.9"
1270 | resolved "https://registry.yarnpkg.com/core-js/-/core-js-2.6.9.tgz#6b4b214620c834152e179323727fc19741b084f2"
1271 | integrity sha512-HOpZf6eXmnl7la+cUdMnLvUxKNqLUzJvgIziQ0DiF3JwSImNphIqdGqzj6hIKyX04MmV0poclQ7+wjWvxQyR2A==
1272 |
1273 | core-util-is@~1.0.0:
1274 | version "1.0.2"
1275 | resolved "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.2.tgz#b5fd54220aa2bc5ab57aab7140c940754503c1a7"
1276 | integrity sha1-tf1UIgqivFq1eqtxQMlAdUUDwac=
1277 |
1278 | cross-env@^5.2.0:
1279 | version "5.2.0"
1280 | resolved "https://registry.yarnpkg.com/cross-env/-/cross-env-5.2.0.tgz#6ecd4c015d5773e614039ee529076669b9d126f2"
1281 | integrity sha512-jtdNFfFW1hB7sMhr/H6rW1Z45LFqyI431m3qU6bFXcQ3Eh7LtBuG3h74o7ohHZ3crrRkkqHlo4jYHFPcjroANg==
1282 | dependencies:
1283 | cross-spawn "^6.0.5"
1284 | is-windows "^1.0.0"
1285 |
1286 | cross-spawn@^6.0.5:
1287 | version "6.0.5"
1288 | resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-6.0.5.tgz#4a5ec7c64dfae22c3a14124dbacdee846d80cbc4"
1289 | integrity sha512-eTVLrBSt7fjbDygz805pMnstIs2VTBNkRm0qxZd+M7A5XDdxVRWO5MxGBXZhjY4cqLYLdtrGqRf8mBPmzwSpWQ==
1290 | dependencies:
1291 | nice-try "^1.0.4"
1292 | path-key "^2.0.1"
1293 | semver "^5.5.0"
1294 | shebang-command "^1.2.0"
1295 | which "^1.2.9"
1296 |
1297 | damerau-levenshtein@^1.0.4:
1298 | version "1.0.5"
1299 | resolved "https://registry.yarnpkg.com/damerau-levenshtein/-/damerau-levenshtein-1.0.5.tgz#780cf7144eb2e8dbd1c3bb83ae31100ccc31a414"
1300 | integrity sha512-CBCRqFnpu715iPmw1KrdOrzRqbdFwQTwAWyyyYS42+iAgHCuXZ+/TdMgQkUENPomxEz9z1BEzuQU2Xw0kUuAgA==
1301 |
1302 | debug@^2.2.0, debug@^2.3.3, debug@^2.6.8, debug@^2.6.9:
1303 | version "2.6.9"
1304 | resolved "https://registry.yarnpkg.com/debug/-/debug-2.6.9.tgz#5d128515df134ff327e90a4c93f4e077a536341f"
1305 | integrity sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==
1306 | dependencies:
1307 | ms "2.0.0"
1308 |
1309 | debug@^3.2.6:
1310 | version "3.2.6"
1311 | resolved "https://registry.yarnpkg.com/debug/-/debug-3.2.6.tgz#e83d17de16d8a7efb7717edbe5fb10135eee629b"
1312 | integrity sha512-mel+jf7nrtEl5Pn1Qx46zARXKDpBbvzezse7p7LqINmdoIk8PYP5SySaxEmYv6TZ0JyEKA1hsCId6DIhgITtWQ==
1313 | dependencies:
1314 | ms "^2.1.1"
1315 |
1316 | debug@^4.0.1, debug@^4.1.0:
1317 | version "4.1.1"
1318 | resolved "https://registry.yarnpkg.com/debug/-/debug-4.1.1.tgz#3b72260255109c6b589cee050f1d516139664791"
1319 | integrity sha512-pYAIzeRo8J6KPEaJ0VWOh5Pzkbw/RetuzehGM7QRRX5he4fPHx2rdKMB256ehJCkX+XRQm16eZLqLNS8RSZXZw==
1320 | dependencies:
1321 | ms "^2.1.1"
1322 |
1323 | decode-uri-component@^0.2.0:
1324 | version "0.2.0"
1325 | resolved "https://registry.yarnpkg.com/decode-uri-component/-/decode-uri-component-0.2.0.tgz#eb3913333458775cb84cd1a1fae062106bb87545"
1326 | integrity sha1-6zkTMzRYd1y4TNGh+uBiEGu4dUU=
1327 |
1328 | deep-extend@^0.6.0:
1329 | version "0.6.0"
1330 | resolved "https://registry.yarnpkg.com/deep-extend/-/deep-extend-0.6.0.tgz#c4fa7c95404a17a9c3e8ca7e1537312b736330ac"
1331 | integrity sha512-LOHxIOaPYdHlJRtCQfDIVZtfw/ufM8+rVj649RIHzcm/vGwQRXFt6OPqIFWsm2XEMrNIEtWR64sY1LEKD2vAOA==
1332 |
1333 | deep-is@~0.1.3:
1334 | version "0.1.3"
1335 | resolved "https://registry.yarnpkg.com/deep-is/-/deep-is-0.1.3.tgz#b369d6fb5dbc13eecf524f91b070feedc357cf34"
1336 | integrity sha1-s2nW+128E+7PUk+RsHD+7cNXzzQ=
1337 |
1338 | define-properties@^1.1.2, define-properties@^1.1.3:
1339 | version "1.1.3"
1340 | resolved "https://registry.yarnpkg.com/define-properties/-/define-properties-1.1.3.tgz#cf88da6cbee26fe6db7094f61d870cbd84cee9f1"
1341 | integrity sha512-3MqfYKj2lLzdMSf8ZIZE/V+Zuy+BgD6f164e8K2w7dgnpKArBDerGYpM46IYYcjnkdPNMjPk9A6VFB8+3SKlXQ==
1342 | dependencies:
1343 | object-keys "^1.0.12"
1344 |
1345 | define-property@^0.2.5:
1346 | version "0.2.5"
1347 | resolved "https://registry.yarnpkg.com/define-property/-/define-property-0.2.5.tgz#c35b1ef918ec3c990f9a5bc57be04aacec5c8116"
1348 | integrity sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY=
1349 | dependencies:
1350 | is-descriptor "^0.1.0"
1351 |
1352 | define-property@^1.0.0:
1353 | version "1.0.0"
1354 | resolved "https://registry.yarnpkg.com/define-property/-/define-property-1.0.0.tgz#769ebaaf3f4a63aad3af9e8d304c9bbe79bfb0e6"
1355 | integrity sha1-dp66rz9KY6rTr56NMEybvnm/sOY=
1356 | dependencies:
1357 | is-descriptor "^1.0.0"
1358 |
1359 | define-property@^2.0.2:
1360 | version "2.0.2"
1361 | resolved "https://registry.yarnpkg.com/define-property/-/define-property-2.0.2.tgz#d459689e8d654ba77e02a817f8710d702cb16e9d"
1362 | integrity sha512-jwK2UV4cnPpbcG7+VRARKTZPUWowwXA8bzH5NP6ud0oeAxyYPuGZUAC7hMugpCdz4BeSZl2Dl9k66CHJ/46ZYQ==
1363 | dependencies:
1364 | is-descriptor "^1.0.2"
1365 | isobject "^3.0.1"
1366 |
1367 | delegate@^3.1.2:
1368 | version "3.2.0"
1369 | resolved "https://registry.yarnpkg.com/delegate/-/delegate-3.2.0.tgz#b66b71c3158522e8ab5744f720d8ca0c2af59166"
1370 | integrity sha512-IofjkYBZaZivn0V8nnsMJGBr4jVLxHDheKSW88PyxS5QC4Vo9ZbZVvhzlSxY87fVq3STR6r+4cGepyHkcWOQSw==
1371 |
1372 | delegates@^1.0.0:
1373 | version "1.0.0"
1374 | resolved "https://registry.yarnpkg.com/delegates/-/delegates-1.0.0.tgz#84c6e159b81904fdca59a0ef44cd870d31250f9a"
1375 | integrity sha1-hMbhWbgZBP3KWaDvRM2HDTElD5o=
1376 |
1377 | detect-indent@^4.0.0:
1378 | version "4.0.0"
1379 | resolved "https://registry.yarnpkg.com/detect-indent/-/detect-indent-4.0.0.tgz#f76d064352cdf43a1cb6ce619c4ee3a9475de208"
1380 | integrity sha1-920GQ1LN9Docts5hnE7jqUdd4gg=
1381 | dependencies:
1382 | repeating "^2.0.0"
1383 |
1384 | detect-libc@^1.0.2:
1385 | version "1.0.3"
1386 | resolved "https://registry.yarnpkg.com/detect-libc/-/detect-libc-1.0.3.tgz#fa137c4bd698edf55cd5cd02ac559f91a4c4ba9b"
1387 | integrity sha1-+hN8S9aY7fVc1c0CrFWfkaTEups=
1388 |
1389 | doctrine@1.5.0:
1390 | version "1.5.0"
1391 | resolved "https://registry.yarnpkg.com/doctrine/-/doctrine-1.5.0.tgz#379dce730f6166f76cefa4e6707a159b02c5a6fa"
1392 | integrity sha1-N53Ocw9hZvds76TmcHoVmwLFpvo=
1393 | dependencies:
1394 | esutils "^2.0.2"
1395 | isarray "^1.0.0"
1396 |
1397 | doctrine@^2.1.0:
1398 | version "2.1.0"
1399 | resolved "https://registry.yarnpkg.com/doctrine/-/doctrine-2.1.0.tgz#5cd01fc101621b42c4cd7f5d1a66243716d3f39d"
1400 | integrity sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==
1401 | dependencies:
1402 | esutils "^2.0.2"
1403 |
1404 | doctrine@^3.0.0:
1405 | version "3.0.0"
1406 | resolved "https://registry.yarnpkg.com/doctrine/-/doctrine-3.0.0.tgz#addebead72a6574db783639dc87a121773973961"
1407 | integrity sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==
1408 | dependencies:
1409 | esutils "^2.0.2"
1410 |
1411 | electron-to-chromium@^1.3.47:
1412 | version "1.3.237"
1413 | resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.3.237.tgz#39c5d1da59d6fd16ff705b97e772bb3b5dfda7e4"
1414 | integrity sha512-SPAFjDr/7iiVK2kgTluwxela6eaWjjFkS9rO/iYpB/KGXgccUom5YC7OIf19c8m8GGptWxLU0Em8xM64A/N7Fg==
1415 |
1416 | emoji-regex@^7.0.1, emoji-regex@^7.0.2:
1417 | version "7.0.3"
1418 | resolved "https://registry.yarnpkg.com/emoji-regex/-/emoji-regex-7.0.3.tgz#933a04052860c85e83c122479c4748a8e4c72156"
1419 | integrity sha512-CwBLREIQ7LvYFB0WyRvwhq5N5qPhc6PMjD6bYggFlI5YyDgl+0vxq5VHbMOFqLg7hfWzmu8T5Z1QofhmTIhItA==
1420 |
1421 | emoji-regex@^8.0.0:
1422 | version "8.0.0"
1423 | resolved "https://registry.yarnpkg.com/emoji-regex/-/emoji-regex-8.0.0.tgz#e818fd69ce5ccfcb404594f842963bf53164cc37"
1424 | integrity sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==
1425 |
1426 | error-ex@^1.2.0:
1427 | version "1.3.2"
1428 | resolved "https://registry.yarnpkg.com/error-ex/-/error-ex-1.3.2.tgz#b4ac40648107fdcdcfae242f428bea8a14d4f1bf"
1429 | integrity sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==
1430 | dependencies:
1431 | is-arrayish "^0.2.1"
1432 |
1433 | es-abstract@^1.11.0, es-abstract@^1.12.0, es-abstract@^1.7.0:
1434 | version "1.13.0"
1435 | resolved "https://registry.yarnpkg.com/es-abstract/-/es-abstract-1.13.0.tgz#ac86145fdd5099d8dd49558ccba2eaf9b88e24e9"
1436 | integrity sha512-vDZfg/ykNxQVwup/8E1BZhVzFfBxs9NqMzGcvIJrqg5k2/5Za2bWo40dK2J1pgLngZ7c+Shh8lwYtLGyrwPutg==
1437 | dependencies:
1438 | es-to-primitive "^1.2.0"
1439 | function-bind "^1.1.1"
1440 | has "^1.0.3"
1441 | is-callable "^1.1.4"
1442 | is-regex "^1.0.4"
1443 | object-keys "^1.0.12"
1444 |
1445 | es-to-primitive@^1.2.0:
1446 | version "1.2.0"
1447 | resolved "https://registry.yarnpkg.com/es-to-primitive/-/es-to-primitive-1.2.0.tgz#edf72478033456e8dda8ef09e00ad9650707f377"
1448 | integrity sha512-qZryBOJjV//LaxLTV6UC//WewneB3LcXOL9NP++ozKVXsIIIpm/2c13UDiD9Jp2eThsecw9m3jPqDwTyobcdbg==
1449 | dependencies:
1450 | is-callable "^1.1.4"
1451 | is-date-object "^1.0.1"
1452 | is-symbol "^1.0.2"
1453 |
1454 | escape-string-regexp@^1.0.2, escape-string-regexp@^1.0.5:
1455 | version "1.0.5"
1456 | resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4"
1457 | integrity sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ=
1458 |
1459 | eslint-config-airbnb-base@^14.0.0:
1460 | version "14.0.0"
1461 | resolved "https://registry.yarnpkg.com/eslint-config-airbnb-base/-/eslint-config-airbnb-base-14.0.0.tgz#8a7bcb9643d13c55df4dd7444f138bf4efa61e17"
1462 | integrity sha512-2IDHobw97upExLmsebhtfoD3NAKhV4H0CJWP3Uprd/uk+cHuWYOczPVxQ8PxLFUAw7o3Th1RAU8u1DoUpr+cMA==
1463 | dependencies:
1464 | confusing-browser-globals "^1.0.7"
1465 | object.assign "^4.1.0"
1466 | object.entries "^1.1.0"
1467 |
1468 | eslint-config-airbnb@^18.0.1:
1469 | version "18.0.1"
1470 | resolved "https://registry.yarnpkg.com/eslint-config-airbnb/-/eslint-config-airbnb-18.0.1.tgz#a3a74cc29b46413b6096965025381df8fb908559"
1471 | integrity sha512-hLb/ccvW4grVhvd6CT83bECacc+s4Z3/AEyWQdIT2KeTsG9dR7nx1gs7Iw4tDmGKozCNHFn4yZmRm3Tgy+XxyQ==
1472 | dependencies:
1473 | eslint-config-airbnb-base "^14.0.0"
1474 | object.assign "^4.1.0"
1475 | object.entries "^1.1.0"
1476 |
1477 | eslint-config-prettier@^6.1.0:
1478 | version "6.1.0"
1479 | resolved "https://registry.yarnpkg.com/eslint-config-prettier/-/eslint-config-prettier-6.1.0.tgz#e6f678ba367fbd1273998d5510f76f004e9dce7b"
1480 | integrity sha512-k9fny9sPjIBQ2ftFTesJV21Rg4R/7a7t7LCtZVrYQiHEp8Nnuk3EGaDmsKSAnsPj0BYcgB2zxzHa2NTkIxcOLg==
1481 | dependencies:
1482 | get-stdin "^6.0.0"
1483 |
1484 | eslint-import-resolver-node@^0.3.2:
1485 | version "0.3.2"
1486 | resolved "https://registry.yarnpkg.com/eslint-import-resolver-node/-/eslint-import-resolver-node-0.3.2.tgz#58f15fb839b8d0576ca980413476aab2472db66a"
1487 | integrity sha512-sfmTqJfPSizWu4aymbPr4Iidp5yKm8yDkHp+Ir3YiTHiiDfxh69mOUsmiqW6RZ9zRXFaF64GtYmN7e+8GHBv6Q==
1488 | dependencies:
1489 | debug "^2.6.9"
1490 | resolve "^1.5.0"
1491 |
1492 | eslint-module-utils@^2.4.0:
1493 | version "2.4.1"
1494 | resolved "https://registry.yarnpkg.com/eslint-module-utils/-/eslint-module-utils-2.4.1.tgz#7b4675875bf96b0dbf1b21977456e5bb1f5e018c"
1495 | integrity sha512-H6DOj+ejw7Tesdgbfs4jeS4YMFrT8uI8xwd1gtQqXssaR0EQ26L+2O/w6wkYFy2MymON0fTwHmXBvvfLNZVZEw==
1496 | dependencies:
1497 | debug "^2.6.8"
1498 | pkg-dir "^2.0.0"
1499 |
1500 | eslint-plugin-import@^2.18.2:
1501 | version "2.18.2"
1502 | resolved "https://registry.yarnpkg.com/eslint-plugin-import/-/eslint-plugin-import-2.18.2.tgz#02f1180b90b077b33d447a17a2326ceb400aceb6"
1503 | integrity sha512-5ohpsHAiUBRNaBWAF08izwUGlbrJoJJ+W9/TBwsGoR1MnlgfwMIKrFeSjWbt6moabiXW9xNvtFz+97KHRfI4HQ==
1504 | dependencies:
1505 | array-includes "^3.0.3"
1506 | contains-path "^0.1.0"
1507 | debug "^2.6.9"
1508 | doctrine "1.5.0"
1509 | eslint-import-resolver-node "^0.3.2"
1510 | eslint-module-utils "^2.4.0"
1511 | has "^1.0.3"
1512 | minimatch "^3.0.4"
1513 | object.values "^1.1.0"
1514 | read-pkg-up "^2.0.0"
1515 | resolve "^1.11.0"
1516 |
1517 | eslint-plugin-jsx-a11y@^6.2.3:
1518 | version "6.2.3"
1519 | resolved "https://registry.yarnpkg.com/eslint-plugin-jsx-a11y/-/eslint-plugin-jsx-a11y-6.2.3.tgz#b872a09d5de51af70a97db1eea7dc933043708aa"
1520 | integrity sha512-CawzfGt9w83tyuVekn0GDPU9ytYtxyxyFZ3aSWROmnRRFQFT2BiPJd7jvRdzNDi6oLWaS2asMeYSNMjWTV4eNg==
1521 | dependencies:
1522 | "@babel/runtime" "^7.4.5"
1523 | aria-query "^3.0.0"
1524 | array-includes "^3.0.3"
1525 | ast-types-flow "^0.0.7"
1526 | axobject-query "^2.0.2"
1527 | damerau-levenshtein "^1.0.4"
1528 | emoji-regex "^7.0.2"
1529 | has "^1.0.3"
1530 | jsx-ast-utils "^2.2.1"
1531 |
1532 | eslint-plugin-prettier@^3.1.0:
1533 | version "3.1.0"
1534 | resolved "https://registry.yarnpkg.com/eslint-plugin-prettier/-/eslint-plugin-prettier-3.1.0.tgz#8695188f95daa93b0dc54b249347ca3b79c4686d"
1535 | integrity sha512-XWX2yVuwVNLOUhQijAkXz+rMPPoCr7WFiAl8ig6I7Xn+pPVhDhzg4DxHpmbeb0iqjO9UronEA3Tb09ChnFVHHA==
1536 | dependencies:
1537 | prettier-linter-helpers "^1.0.0"
1538 |
1539 | eslint-plugin-react@^7.14.3:
1540 | version "7.14.3"
1541 | resolved "https://registry.yarnpkg.com/eslint-plugin-react/-/eslint-plugin-react-7.14.3.tgz#911030dd7e98ba49e1b2208599571846a66bdf13"
1542 | integrity sha512-EzdyyBWC4Uz2hPYBiEJrKCUi2Fn+BJ9B/pJQcjw5X+x/H2Nm59S4MJIvL4O5NEE0+WbnQwEBxWY03oUk+Bc3FA==
1543 | dependencies:
1544 | array-includes "^3.0.3"
1545 | doctrine "^2.1.0"
1546 | has "^1.0.3"
1547 | jsx-ast-utils "^2.1.0"
1548 | object.entries "^1.1.0"
1549 | object.fromentries "^2.0.0"
1550 | object.values "^1.1.0"
1551 | prop-types "^15.7.2"
1552 | resolve "^1.10.1"
1553 |
1554 | eslint-scope@3.7.1:
1555 | version "3.7.1"
1556 | resolved "https://registry.yarnpkg.com/eslint-scope/-/eslint-scope-3.7.1.tgz#3d63c3edfda02e06e01a452ad88caacc7cdcb6e8"
1557 | integrity sha1-PWPD7f2gLgbgGkUq2IyqzHzctug=
1558 | dependencies:
1559 | esrecurse "^4.1.0"
1560 | estraverse "^4.1.1"
1561 |
1562 | eslint-scope@^5.0.0:
1563 | version "5.0.0"
1564 | resolved "https://registry.yarnpkg.com/eslint-scope/-/eslint-scope-5.0.0.tgz#e87c8887c73e8d1ec84f1ca591645c358bfc8fb9"
1565 | integrity sha512-oYrhJW7S0bxAFDvWqzvMPRm6pcgcnWc4QnofCAqRTRfQC0JcwenzGglTtsLyIuuWFfkqDG9vz67cnttSd53djw==
1566 | dependencies:
1567 | esrecurse "^4.1.0"
1568 | estraverse "^4.1.1"
1569 |
1570 | eslint-utils@^1.4.2:
1571 | version "1.4.2"
1572 | resolved "https://registry.yarnpkg.com/eslint-utils/-/eslint-utils-1.4.2.tgz#166a5180ef6ab7eb462f162fd0e6f2463d7309ab"
1573 | integrity sha512-eAZS2sEUMlIeCjBeubdj45dmBHQwPHWyBcT1VSYB7o9x9WRRqKxyUoiXlRjyAwzN7YEzHJlYg0NmzDRWx6GP4Q==
1574 | dependencies:
1575 | eslint-visitor-keys "^1.0.0"
1576 |
1577 | eslint-visitor-keys@^1.0.0, eslint-visitor-keys@^1.1.0:
1578 | version "1.1.0"
1579 | resolved "https://registry.yarnpkg.com/eslint-visitor-keys/-/eslint-visitor-keys-1.1.0.tgz#e2a82cea84ff246ad6fb57f9bde5b46621459ec2"
1580 | integrity sha512-8y9YjtM1JBJU/A9Kc+SbaOV4y29sSWckBwMHa+FGtVj5gN/sbnKDf6xJUl+8g7FAij9LVaP8C24DUiH/f/2Z9A==
1581 |
1582 | eslint@^6.2.1:
1583 | version "6.2.1"
1584 | resolved "https://registry.yarnpkg.com/eslint/-/eslint-6.2.1.tgz#66c2e4fe8b6356b9f01e828adc3ad04030122df1"
1585 | integrity sha512-ES7BzEzr0Q6m5TK9i+/iTpKjclXitOdDK4vT07OqbkBT2/VcN/gO9EL1C4HlK3TAOXYv2ItcmbVR9jO1MR0fJg==
1586 | dependencies:
1587 | "@babel/code-frame" "^7.0.0"
1588 | ajv "^6.10.0"
1589 | chalk "^2.1.0"
1590 | cross-spawn "^6.0.5"
1591 | debug "^4.0.1"
1592 | doctrine "^3.0.0"
1593 | eslint-scope "^5.0.0"
1594 | eslint-utils "^1.4.2"
1595 | eslint-visitor-keys "^1.1.0"
1596 | espree "^6.1.0"
1597 | esquery "^1.0.1"
1598 | esutils "^2.0.2"
1599 | file-entry-cache "^5.0.1"
1600 | functional-red-black-tree "^1.0.1"
1601 | glob-parent "^5.0.0"
1602 | globals "^11.7.0"
1603 | ignore "^4.0.6"
1604 | import-fresh "^3.0.0"
1605 | imurmurhash "^0.1.4"
1606 | inquirer "^6.4.1"
1607 | is-glob "^4.0.0"
1608 | js-yaml "^3.13.1"
1609 | json-stable-stringify-without-jsonify "^1.0.1"
1610 | levn "^0.3.0"
1611 | lodash "^4.17.14"
1612 | minimatch "^3.0.4"
1613 | mkdirp "^0.5.1"
1614 | natural-compare "^1.4.0"
1615 | optionator "^0.8.2"
1616 | progress "^2.0.0"
1617 | regexpp "^2.0.1"
1618 | semver "^6.1.2"
1619 | strip-ansi "^5.2.0"
1620 | strip-json-comments "^3.0.1"
1621 | table "^5.2.3"
1622 | text-table "^0.2.0"
1623 | v8-compile-cache "^2.0.3"
1624 |
1625 | espree@^6.1.0:
1626 | version "6.1.0"
1627 | resolved "https://registry.yarnpkg.com/espree/-/espree-6.1.0.tgz#a1e8aa65bf29a331d70351ed814a80e7534e0884"
1628 | integrity sha512-boA7CHRLlVWUSg3iL5Kmlt/xT3Q+sXnKoRYYzj1YeM10A76TEJBbotV5pKbnK42hEUIr121zTv+QLRM5LsCPXQ==
1629 | dependencies:
1630 | acorn "^7.0.0"
1631 | acorn-jsx "^5.0.0"
1632 | eslint-visitor-keys "^1.1.0"
1633 |
1634 | esprima@^4.0.0:
1635 | version "4.0.1"
1636 | resolved "https://registry.yarnpkg.com/esprima/-/esprima-4.0.1.tgz#13b04cdb3e6c5d19df91ab6987a8695619b0aa71"
1637 | integrity sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==
1638 |
1639 | esquery@^1.0.1:
1640 | version "1.0.1"
1641 | resolved "https://registry.yarnpkg.com/esquery/-/esquery-1.0.1.tgz#406c51658b1f5991a5f9b62b1dc25b00e3e5c708"
1642 | integrity sha512-SmiyZ5zIWH9VM+SRUReLS5Q8a7GxtRdxEBVZpm98rJM7Sb+A9DVCndXfkeFUd3byderg+EbDkfnevfCwynWaNA==
1643 | dependencies:
1644 | estraverse "^4.0.0"
1645 |
1646 | esrecurse@^4.1.0:
1647 | version "4.2.1"
1648 | resolved "https://registry.yarnpkg.com/esrecurse/-/esrecurse-4.2.1.tgz#007a3b9fdbc2b3bb87e4879ea19c92fdbd3942cf"
1649 | integrity sha512-64RBB++fIOAXPw3P9cy89qfMlvZEXZkqqJkjqqXIvzP5ezRZjW+lPWjw35UX/3EhUPFYbg5ER4JYgDw4007/DQ==
1650 | dependencies:
1651 | estraverse "^4.1.0"
1652 |
1653 | estraverse@^4.0.0, estraverse@^4.1.0, estraverse@^4.1.1:
1654 | version "4.3.0"
1655 | resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-4.3.0.tgz#398ad3f3c5a24948be7725e83d11a7de28cdbd1d"
1656 | integrity sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==
1657 |
1658 | esutils@^2.0.2:
1659 | version "2.0.3"
1660 | resolved "https://registry.yarnpkg.com/esutils/-/esutils-2.0.3.tgz#74d2eb4de0b8da1293711910d50775b9b710ef64"
1661 | integrity sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==
1662 |
1663 | expand-brackets@^0.1.4:
1664 | version "0.1.5"
1665 | resolved "https://registry.yarnpkg.com/expand-brackets/-/expand-brackets-0.1.5.tgz#df07284e342a807cd733ac5af72411e581d1177b"
1666 | integrity sha1-3wcoTjQqgHzXM6xa9yQR5YHRF3s=
1667 | dependencies:
1668 | is-posix-bracket "^0.1.0"
1669 |
1670 | expand-brackets@^2.1.4:
1671 | version "2.1.4"
1672 | resolved "https://registry.yarnpkg.com/expand-brackets/-/expand-brackets-2.1.4.tgz#b77735e315ce30f6b6eff0f83b04151a22449622"
1673 | integrity sha1-t3c14xXOMPa27/D4OwQVGiJEliI=
1674 | dependencies:
1675 | debug "^2.3.3"
1676 | define-property "^0.2.5"
1677 | extend-shallow "^2.0.1"
1678 | posix-character-classes "^0.1.0"
1679 | regex-not "^1.0.0"
1680 | snapdragon "^0.8.1"
1681 | to-regex "^3.0.1"
1682 |
1683 | expand-range@^1.8.1:
1684 | version "1.8.2"
1685 | resolved "https://registry.yarnpkg.com/expand-range/-/expand-range-1.8.2.tgz#a299effd335fe2721ebae8e257ec79644fc85337"
1686 | integrity sha1-opnv/TNf4nIeuujiV+x5ZE/IUzc=
1687 | dependencies:
1688 | fill-range "^2.1.0"
1689 |
1690 | extend-shallow@^2.0.1:
1691 | version "2.0.1"
1692 | resolved "https://registry.yarnpkg.com/extend-shallow/-/extend-shallow-2.0.1.tgz#51af7d614ad9a9f610ea1bafbb989d6b1c56890f"
1693 | integrity sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=
1694 | dependencies:
1695 | is-extendable "^0.1.0"
1696 |
1697 | extend-shallow@^3.0.0, extend-shallow@^3.0.2:
1698 | version "3.0.2"
1699 | resolved "https://registry.yarnpkg.com/extend-shallow/-/extend-shallow-3.0.2.tgz#26a71aaf073b39fb2127172746131c2704028db8"
1700 | integrity sha1-Jqcarwc7OfshJxcnRhMcJwQCjbg=
1701 | dependencies:
1702 | assign-symbols "^1.0.0"
1703 | is-extendable "^1.0.1"
1704 |
1705 | extend@^3.0.0:
1706 | version "3.0.2"
1707 | resolved "https://registry.yarnpkg.com/extend/-/extend-3.0.2.tgz#f8b1136b4071fbd8eb140aff858b1019ec2915fa"
1708 | integrity sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==
1709 |
1710 | external-editor@^3.0.3:
1711 | version "3.1.0"
1712 | resolved "https://registry.yarnpkg.com/external-editor/-/external-editor-3.1.0.tgz#cb03f740befae03ea4d283caed2741a83f335495"
1713 | integrity sha512-hMQ4CX1p1izmuLYyZqLMO/qGNw10wSv9QDCPfzXfyFrOaCSSoRfqE1Kf1s5an66J5JZC62NewG+mK49jOCtQew==
1714 | dependencies:
1715 | chardet "^0.7.0"
1716 | iconv-lite "^0.4.24"
1717 | tmp "^0.0.33"
1718 |
1719 | extglob@^0.3.1:
1720 | version "0.3.2"
1721 | resolved "https://registry.yarnpkg.com/extglob/-/extglob-0.3.2.tgz#2e18ff3d2f49ab2765cec9023f011daa8d8349a1"
1722 | integrity sha1-Lhj/PS9JqydlzskCPwEdqo2DSaE=
1723 | dependencies:
1724 | is-extglob "^1.0.0"
1725 |
1726 | extglob@^2.0.4:
1727 | version "2.0.4"
1728 | resolved "https://registry.yarnpkg.com/extglob/-/extglob-2.0.4.tgz#ad00fe4dc612a9232e8718711dc5cb5ab0285543"
1729 | integrity sha512-Nmb6QXkELsuBr24CJSkilo6UHHgbekK5UiZgfE6UHD3Eb27YC6oD+bhcT+tJ6cl8dmsgdQxnWlcry8ksBIBLpw==
1730 | dependencies:
1731 | array-unique "^0.3.2"
1732 | define-property "^1.0.0"
1733 | expand-brackets "^2.1.4"
1734 | extend-shallow "^2.0.1"
1735 | fragment-cache "^0.2.1"
1736 | regex-not "^1.0.0"
1737 | snapdragon "^0.8.1"
1738 | to-regex "^3.0.1"
1739 |
1740 | fast-deep-equal@^2.0.1:
1741 | version "2.0.1"
1742 | resolved "https://registry.yarnpkg.com/fast-deep-equal/-/fast-deep-equal-2.0.1.tgz#7b05218ddf9667bf7f370bf7fdb2cb15fdd0aa49"
1743 | integrity sha1-ewUhjd+WZ79/Nwv3/bLLFf3Qqkk=
1744 |
1745 | fast-diff@^1.1.2:
1746 | version "1.2.0"
1747 | resolved "https://registry.yarnpkg.com/fast-diff/-/fast-diff-1.2.0.tgz#73ee11982d86caaf7959828d519cfe927fac5f03"
1748 | integrity sha512-xJuoT5+L99XlZ8twedaRf6Ax2TgQVxvgZOYoPKqZufmJib0tL2tegPBOZb1pVNgIhlqDlA0eO0c3wBvQcmzx4w==
1749 |
1750 | fast-json-stable-stringify@^2.0.0:
1751 | version "2.0.0"
1752 | resolved "https://registry.yarnpkg.com/fast-json-stable-stringify/-/fast-json-stable-stringify-2.0.0.tgz#d5142c0caee6b1189f87d3a76111064f86c8bbf2"
1753 | integrity sha1-1RQsDK7msRifh9OnYREGT4bIu/I=
1754 |
1755 | fast-levenshtein@~2.0.4:
1756 | version "2.0.6"
1757 | resolved "https://registry.yarnpkg.com/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz#3d8a5c66883a16a30ca8643e851f19baa7797917"
1758 | integrity sha1-PYpcZog6FqMMqGQ+hR8Zuqd5eRc=
1759 |
1760 | figures@^3.0.0:
1761 | version "3.0.0"
1762 | resolved "https://registry.yarnpkg.com/figures/-/figures-3.0.0.tgz#756275c964646163cc6f9197c7a0295dbfd04de9"
1763 | integrity sha512-HKri+WoWoUgr83pehn/SIgLOMZ9nAWC6dcGj26RY2R4F50u4+RTUz0RCrUlOV3nKRAICW1UGzyb+kcX2qK1S/g==
1764 | dependencies:
1765 | escape-string-regexp "^1.0.5"
1766 |
1767 | file-entry-cache@^5.0.1:
1768 | version "5.0.1"
1769 | resolved "https://registry.yarnpkg.com/file-entry-cache/-/file-entry-cache-5.0.1.tgz#ca0f6efa6dd3d561333fb14515065c2fafdf439c"
1770 | integrity sha512-bCg29ictuBaKUwwArK4ouCaqDgLZcysCFLmM/Yn/FDoqndh/9vNuQfXRDvTuXKLxfD/JtZQGKFT8MGcJBK644g==
1771 | dependencies:
1772 | flat-cache "^2.0.1"
1773 |
1774 | filename-regex@^2.0.0:
1775 | version "2.0.1"
1776 | resolved "https://registry.yarnpkg.com/filename-regex/-/filename-regex-2.0.1.tgz#c1c4b9bee3e09725ddb106b75c1e301fe2f18b26"
1777 | integrity sha1-wcS5vuPglyXdsQa3XB4wH+LxiyY=
1778 |
1779 | fill-range@^2.1.0:
1780 | version "2.2.4"
1781 | resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-2.2.4.tgz#eb1e773abb056dcd8df2bfdf6af59b8b3a936565"
1782 | integrity sha512-cnrcCbj01+j2gTG921VZPnHbjmdAf8oQV/iGeV2kZxGSyfYjjTyY79ErsK1WJWMpw6DaApEX72binqJE+/d+5Q==
1783 | dependencies:
1784 | is-number "^2.1.0"
1785 | isobject "^2.0.0"
1786 | randomatic "^3.0.0"
1787 | repeat-element "^1.1.2"
1788 | repeat-string "^1.5.2"
1789 |
1790 | fill-range@^4.0.0:
1791 | version "4.0.0"
1792 | resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-4.0.0.tgz#d544811d428f98eb06a63dc402d2403c328c38f7"
1793 | integrity sha1-1USBHUKPmOsGpj3EAtJAPDKMOPc=
1794 | dependencies:
1795 | extend-shallow "^2.0.1"
1796 | is-number "^3.0.0"
1797 | repeat-string "^1.6.1"
1798 | to-regex-range "^2.1.0"
1799 |
1800 | find-up@^2.0.0, find-up@^2.1.0:
1801 | version "2.1.0"
1802 | resolved "https://registry.yarnpkg.com/find-up/-/find-up-2.1.0.tgz#45d1b7e506c717ddd482775a2b77920a3c0c57a7"
1803 | integrity sha1-RdG35QbHF93UgndaK3eSCjwMV6c=
1804 | dependencies:
1805 | locate-path "^2.0.0"
1806 |
1807 | flat-cache@^2.0.1:
1808 | version "2.0.1"
1809 | resolved "https://registry.yarnpkg.com/flat-cache/-/flat-cache-2.0.1.tgz#5d296d6f04bda44a4630a301413bdbc2ec085ec0"
1810 | integrity sha512-LoQe6yDuUMDzQAEH8sgmh4Md6oZnc/7PjtwjNFSzveXqSHt6ka9fPBuso7IGf9Rz4uqnSnWiFH2B/zj24a5ReA==
1811 | dependencies:
1812 | flatted "^2.0.0"
1813 | rimraf "2.6.3"
1814 | write "1.0.3"
1815 |
1816 | flatted@^2.0.0:
1817 | version "2.0.1"
1818 | resolved "https://registry.yarnpkg.com/flatted/-/flatted-2.0.1.tgz#69e57caa8f0eacbc281d2e2cb458d46fdb449e08"
1819 | integrity sha512-a1hQMktqW9Nmqr5aktAux3JMNqaucxGcjtjWnZLHX7yyPCmlSV3M54nGYbqT8K+0GhF3NBgmJCc3ma+WOgX8Jg==
1820 |
1821 | for-in@^1.0.1, for-in@^1.0.2:
1822 | version "1.0.2"
1823 | resolved "https://registry.yarnpkg.com/for-in/-/for-in-1.0.2.tgz#81068d295a8142ec0ac726c6e2200c30fb6d5e80"
1824 | integrity sha1-gQaNKVqBQuwKxybG4iAMMPttXoA=
1825 |
1826 | for-own@^0.1.4:
1827 | version "0.1.5"
1828 | resolved "https://registry.yarnpkg.com/for-own/-/for-own-0.1.5.tgz#5265c681a4f294dabbf17c9509b6763aa84510ce"
1829 | integrity sha1-UmXGgaTylNq78XyVCbZ2OqhFEM4=
1830 | dependencies:
1831 | for-in "^1.0.1"
1832 |
1833 | fragment-cache@^0.2.1:
1834 | version "0.2.1"
1835 | resolved "https://registry.yarnpkg.com/fragment-cache/-/fragment-cache-0.2.1.tgz#4290fad27f13e89be7f33799c6bc5a0abfff0d19"
1836 | integrity sha1-QpD60n8T6Jvn8zeZxrxaCr//DRk=
1837 | dependencies:
1838 | map-cache "^0.2.2"
1839 |
1840 | fs-minipass@^1.2.5:
1841 | version "1.2.6"
1842 | resolved "https://registry.yarnpkg.com/fs-minipass/-/fs-minipass-1.2.6.tgz#2c5cc30ded81282bfe8a0d7c7c1853ddeb102c07"
1843 | integrity sha512-crhvyXcMejjv3Z5d2Fa9sf5xLYVCF5O1c71QxbVnbLsmYMBEvDAftewesN/HhY03YRoA7zOMxjNGrF5svGaaeQ==
1844 | dependencies:
1845 | minipass "^2.2.1"
1846 |
1847 | fs-readdir-recursive@^1.0.0:
1848 | version "1.1.0"
1849 | resolved "https://registry.yarnpkg.com/fs-readdir-recursive/-/fs-readdir-recursive-1.1.0.tgz#e32fc030a2ccee44a6b5371308da54be0b397d27"
1850 | integrity sha512-GNanXlVr2pf02+sPN40XN8HG+ePaNcvM0q5mZBd668Obwb0yD5GiUbZOFgwn8kGMY6I3mdyDJzieUy3PTYyTRA==
1851 |
1852 | fs.realpath@^1.0.0:
1853 | version "1.0.0"
1854 | resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f"
1855 | integrity sha1-FQStJSMVjKpA20onh8sBQRmU6k8=
1856 |
1857 | fsevents@^1.0.0:
1858 | version "1.2.9"
1859 | resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-1.2.9.tgz#3f5ed66583ccd6f400b5a00db6f7e861363e388f"
1860 | integrity sha512-oeyj2H3EjjonWcFjD5NvZNE9Rqe4UW+nQBU2HNeKw0koVLEFIhtyETyAakeAM3de7Z/SW5kcA+fZUait9EApnw==
1861 | dependencies:
1862 | nan "^2.12.1"
1863 | node-pre-gyp "^0.12.0"
1864 |
1865 | function-bind@^1.1.1:
1866 | version "1.1.1"
1867 | resolved "https://registry.yarnpkg.com/function-bind/-/function-bind-1.1.1.tgz#a56899d3ea3c9bab874bb9773b7c5ede92f4895d"
1868 | integrity sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==
1869 |
1870 | functional-red-black-tree@^1.0.1:
1871 | version "1.0.1"
1872 | resolved "https://registry.yarnpkg.com/functional-red-black-tree/-/functional-red-black-tree-1.0.1.tgz#1b0ab3bd553b2a0d6399d29c0e3ea0b252078327"
1873 | integrity sha1-GwqzvVU7Kg1jmdKcDj6gslIHgyc=
1874 |
1875 | gauge@~2.7.3:
1876 | version "2.7.4"
1877 | resolved "https://registry.yarnpkg.com/gauge/-/gauge-2.7.4.tgz#2c03405c7538c39d7eb37b317022e325fb018bf7"
1878 | integrity sha1-LANAXHU4w51+s3sxcCLjJfsBi/c=
1879 | dependencies:
1880 | aproba "^1.0.3"
1881 | console-control-strings "^1.0.0"
1882 | has-unicode "^2.0.0"
1883 | object-assign "^4.1.0"
1884 | signal-exit "^3.0.0"
1885 | string-width "^1.0.1"
1886 | strip-ansi "^3.0.1"
1887 | wide-align "^1.1.0"
1888 |
1889 | get-stdin@^6.0.0:
1890 | version "6.0.0"
1891 | resolved "https://registry.yarnpkg.com/get-stdin/-/get-stdin-6.0.0.tgz#9e09bf712b360ab9225e812048f71fde9c89657b"
1892 | integrity sha512-jp4tHawyV7+fkkSKyvjuLZswblUtz+SQKzSWnBbii16BuZksJlU1wuBYXY75r+duh/llF1ur6oNwi+2ZzjKZ7g==
1893 |
1894 | get-value@^2.0.3, get-value@^2.0.6:
1895 | version "2.0.6"
1896 | resolved "https://registry.yarnpkg.com/get-value/-/get-value-2.0.6.tgz#dc15ca1c672387ca76bd37ac0a395ba2042a2c28"
1897 | integrity sha1-3BXKHGcjh8p2vTesCjlbogQqLCg=
1898 |
1899 | glob-base@^0.3.0:
1900 | version "0.3.0"
1901 | resolved "https://registry.yarnpkg.com/glob-base/-/glob-base-0.3.0.tgz#dbb164f6221b1c0b1ccf82aea328b497df0ea3c4"
1902 | integrity sha1-27Fk9iIbHAscz4Kuoyi0l98Oo8Q=
1903 | dependencies:
1904 | glob-parent "^2.0.0"
1905 | is-glob "^2.0.0"
1906 |
1907 | glob-parent@^2.0.0:
1908 | version "2.0.0"
1909 | resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-2.0.0.tgz#81383d72db054fcccf5336daa902f182f6edbb28"
1910 | integrity sha1-gTg9ctsFT8zPUzbaqQLxgvbtuyg=
1911 | dependencies:
1912 | is-glob "^2.0.0"
1913 |
1914 | glob-parent@^5.0.0:
1915 | version "5.0.0"
1916 | resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-5.0.0.tgz#1dc99f0f39b006d3e92c2c284068382f0c20e954"
1917 | integrity sha512-Z2RwiujPRGluePM6j699ktJYxmPpJKCfpGA13jz2hmFZC7gKetzrWvg5KN3+OsIFmydGyZ1AVwERCq1w/ZZwRg==
1918 | dependencies:
1919 | is-glob "^4.0.1"
1920 |
1921 | glob@^7.1.2, glob@^7.1.3:
1922 | version "7.1.4"
1923 | resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.4.tgz#aa608a2f6c577ad357e1ae5a5c26d9a8d1969255"
1924 | integrity sha512-hkLPepehmnKk41pUGm3sYxoFs/umurYfYJCerbXEyFIWcAzvpipAgVkBqqT9RBKMGjnq6kMuyYwha6csxbiM1A==
1925 | dependencies:
1926 | fs.realpath "^1.0.0"
1927 | inflight "^1.0.4"
1928 | inherits "2"
1929 | minimatch "^3.0.4"
1930 | once "^1.3.0"
1931 | path-is-absolute "^1.0.0"
1932 |
1933 | globals@^11.1.0, globals@^11.7.0:
1934 | version "11.12.0"
1935 | resolved "https://registry.yarnpkg.com/globals/-/globals-11.12.0.tgz#ab8795338868a0babd8525758018c2a7eb95c42e"
1936 | integrity sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==
1937 |
1938 | globals@^9.18.0:
1939 | version "9.18.0"
1940 | resolved "https://registry.yarnpkg.com/globals/-/globals-9.18.0.tgz#aa3896b3e69b487f17e31ed2143d69a8e30c2d8a"
1941 | integrity sha512-S0nG3CLEQiY/ILxqtztTWH/3iRRdyBLw6KMDxnKMchrtbj2OFmehVh0WUCfW3DUrIgx/qFrJPICrq4Z4sTR9UQ==
1942 |
1943 | good-listener@^1.2.2:
1944 | version "1.2.2"
1945 | resolved "https://registry.yarnpkg.com/good-listener/-/good-listener-1.2.2.tgz#d53b30cdf9313dffb7dc9a0d477096aa6d145c50"
1946 | integrity sha1-1TswzfkxPf+33JoNR3CWqm0UXFA=
1947 | dependencies:
1948 | delegate "^3.1.2"
1949 |
1950 | graceful-fs@^4.1.11, graceful-fs@^4.1.2, graceful-fs@^4.1.4:
1951 | version "4.2.2"
1952 | resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.2.2.tgz#6f0952605d0140c1cfdb138ed005775b92d67b02"
1953 | integrity sha512-IItsdsea19BoLC7ELy13q1iJFNmd7ofZH5+X/pJr90/nRoPEX0DJo1dHDbgtYWOhJhcCgMDTOw84RZ72q6lB+Q==
1954 |
1955 | has-ansi@^2.0.0:
1956 | version "2.0.0"
1957 | resolved "https://registry.yarnpkg.com/has-ansi/-/has-ansi-2.0.0.tgz#34f5049ce1ecdf2b0649af3ef24e45ed35416d91"
1958 | integrity sha1-NPUEnOHs3ysGSa8+8k5F7TVBbZE=
1959 | dependencies:
1960 | ansi-regex "^2.0.0"
1961 |
1962 | has-flag@^3.0.0:
1963 | version "3.0.0"
1964 | resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-3.0.0.tgz#b5d454dc2199ae225699f3467e5a07f3b955bafd"
1965 | integrity sha1-tdRU3CGZriJWmfNGfloH87lVuv0=
1966 |
1967 | has-symbols@^1.0.0:
1968 | version "1.0.0"
1969 | resolved "https://registry.yarnpkg.com/has-symbols/-/has-symbols-1.0.0.tgz#ba1a8f1af2a0fc39650f5c850367704122063b44"
1970 | integrity sha1-uhqPGvKg/DllD1yFA2dwQSIGO0Q=
1971 |
1972 | has-unicode@^2.0.0:
1973 | version "2.0.1"
1974 | resolved "https://registry.yarnpkg.com/has-unicode/-/has-unicode-2.0.1.tgz#e0e6fe6a28cf51138855e086d1691e771de2a8b9"
1975 | integrity sha1-4Ob+aijPUROIVeCG0Wkedx3iqLk=
1976 |
1977 | has-value@^0.3.1:
1978 | version "0.3.1"
1979 | resolved "https://registry.yarnpkg.com/has-value/-/has-value-0.3.1.tgz#7b1f58bada62ca827ec0a2078025654845995e1f"
1980 | integrity sha1-ex9YutpiyoJ+wKIHgCVlSEWZXh8=
1981 | dependencies:
1982 | get-value "^2.0.3"
1983 | has-values "^0.1.4"
1984 | isobject "^2.0.0"
1985 |
1986 | has-value@^1.0.0:
1987 | version "1.0.0"
1988 | resolved "https://registry.yarnpkg.com/has-value/-/has-value-1.0.0.tgz#18b281da585b1c5c51def24c930ed29a0be6b177"
1989 | integrity sha1-GLKB2lhbHFxR3vJMkw7SmgvmsXc=
1990 | dependencies:
1991 | get-value "^2.0.6"
1992 | has-values "^1.0.0"
1993 | isobject "^3.0.0"
1994 |
1995 | has-values@^0.1.4:
1996 | version "0.1.4"
1997 | resolved "https://registry.yarnpkg.com/has-values/-/has-values-0.1.4.tgz#6d61de95d91dfca9b9a02089ad384bff8f62b771"
1998 | integrity sha1-bWHeldkd/Km5oCCJrThL/49it3E=
1999 |
2000 | has-values@^1.0.0:
2001 | version "1.0.0"
2002 | resolved "https://registry.yarnpkg.com/has-values/-/has-values-1.0.0.tgz#95b0b63fec2146619a6fe57fe75628d5a39efe4f"
2003 | integrity sha1-lbC2P+whRmGab+V/51Yo1aOe/k8=
2004 | dependencies:
2005 | is-number "^3.0.0"
2006 | kind-of "^4.0.0"
2007 |
2008 | has@^1.0.1, has@^1.0.3:
2009 | version "1.0.3"
2010 | resolved "https://registry.yarnpkg.com/has/-/has-1.0.3.tgz#722d7cbfc1f6aa8241f16dd814e011e1f41e8796"
2011 | integrity sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==
2012 | dependencies:
2013 | function-bind "^1.1.1"
2014 |
2015 | home-or-tmp@^2.0.0:
2016 | version "2.0.0"
2017 | resolved "https://registry.yarnpkg.com/home-or-tmp/-/home-or-tmp-2.0.0.tgz#e36c3f2d2cae7d746a857e38d18d5f32a7882db8"
2018 | integrity sha1-42w/LSyufXRqhX440Y1fMqeILbg=
2019 | dependencies:
2020 | os-homedir "^1.0.0"
2021 | os-tmpdir "^1.0.1"
2022 |
2023 | hosted-git-info@^2.1.4:
2024 | version "2.8.4"
2025 | resolved "https://registry.yarnpkg.com/hosted-git-info/-/hosted-git-info-2.8.4.tgz#44119abaf4bc64692a16ace34700fed9c03e2546"
2026 | integrity sha512-pzXIvANXEFrc5oFFXRMkbLPQ2rXRoDERwDLyrcUxGhaZhgP54BBSl9Oheh7Vv0T090cszWBxPjkQQ5Sq1PbBRQ==
2027 |
2028 | iconv-lite@^0.4.24, iconv-lite@^0.4.4:
2029 | version "0.4.24"
2030 | resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.4.24.tgz#2022b4b25fbddc21d2f524974a474aafe733908b"
2031 | integrity sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==
2032 | dependencies:
2033 | safer-buffer ">= 2.1.2 < 3"
2034 |
2035 | ignore-walk@^3.0.1:
2036 | version "3.0.1"
2037 | resolved "https://registry.yarnpkg.com/ignore-walk/-/ignore-walk-3.0.1.tgz#a83e62e7d272ac0e3b551aaa82831a19b69f82f8"
2038 | integrity sha512-DTVlMx3IYPe0/JJcYP7Gxg7ttZZu3IInhuEhbchuqneY9wWe5Ojy2mXLBaQFUQmo0AW2r3qG7m1mg86js+gnlQ==
2039 | dependencies:
2040 | minimatch "^3.0.4"
2041 |
2042 | ignore@^4.0.6:
2043 | version "4.0.6"
2044 | resolved "https://registry.yarnpkg.com/ignore/-/ignore-4.0.6.tgz#750e3db5862087b4737ebac8207ffd1ef27b25fc"
2045 | integrity sha512-cyFDKrqc/YdcWFniJhzI42+AzS+gNwmUzOSFcRCQYwySuBBBy/KjuxWLZ/FHEH6Moq1NizMOBWyTcv8O4OZIMg==
2046 |
2047 | import-fresh@^3.0.0:
2048 | version "3.1.0"
2049 | resolved "https://registry.yarnpkg.com/import-fresh/-/import-fresh-3.1.0.tgz#6d33fa1dcef6df930fae003446f33415af905118"
2050 | integrity sha512-PpuksHKGt8rXfWEr9m9EHIpgyyaltBy8+eF6GJM0QCAxMgxCfucMF3mjecK2QsJr0amJW7gTqh5/wht0z2UhEQ==
2051 | dependencies:
2052 | parent-module "^1.0.0"
2053 | resolve-from "^4.0.0"
2054 |
2055 | imurmurhash@^0.1.4:
2056 | version "0.1.4"
2057 | resolved "https://registry.yarnpkg.com/imurmurhash/-/imurmurhash-0.1.4.tgz#9218b9b2b928a238b13dc4fb6b6d576f231453ea"
2058 | integrity sha1-khi5srkoojixPcT7a21XbyMUU+o=
2059 |
2060 | inflight@^1.0.4:
2061 | version "1.0.6"
2062 | resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9"
2063 | integrity sha1-Sb1jMdfQLQwJvJEKEHW6gWW1bfk=
2064 | dependencies:
2065 | once "^1.3.0"
2066 | wrappy "1"
2067 |
2068 | inherits@2, inherits@^2.0.1, inherits@~2.0.3:
2069 | version "2.0.4"
2070 | resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.4.tgz#0fa2c64f932917c3433a0ded55363aae37416b7c"
2071 | integrity sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==
2072 |
2073 | ini@~1.3.0:
2074 | version "1.3.5"
2075 | resolved "https://registry.yarnpkg.com/ini/-/ini-1.3.5.tgz#eee25f56db1c9ec6085e0c22778083f596abf927"
2076 | integrity sha512-RZY5huIKCMRWDUqZlEi72f/lmXKMvuszcMBduliQ3nnWbx9X/ZBQO7DijMEYS9EhHBb2qacRUMtC7svLwe0lcw==
2077 |
2078 | inquirer@^6.4.1:
2079 | version "6.5.1"
2080 | resolved "https://registry.yarnpkg.com/inquirer/-/inquirer-6.5.1.tgz#8bfb7a5ac02dac6ff641ac4c5ff17da112fcdb42"
2081 | integrity sha512-uxNHBeQhRXIoHWTSNYUFhQVrHYFThIt6IVo2fFmSe8aBwdR3/w6b58hJpiL/fMukFkvGzjg+hSxFtwvVmKZmXw==
2082 | dependencies:
2083 | ansi-escapes "^4.2.1"
2084 | chalk "^2.4.2"
2085 | cli-cursor "^3.1.0"
2086 | cli-width "^2.0.0"
2087 | external-editor "^3.0.3"
2088 | figures "^3.0.0"
2089 | lodash "^4.17.15"
2090 | mute-stream "0.0.8"
2091 | run-async "^2.2.0"
2092 | rxjs "^6.4.0"
2093 | string-width "^4.1.0"
2094 | strip-ansi "^5.1.0"
2095 | through "^2.3.6"
2096 |
2097 | invariant@^2.2.2:
2098 | version "2.2.4"
2099 | resolved "https://registry.yarnpkg.com/invariant/-/invariant-2.2.4.tgz#610f3c92c9359ce1db616e538008d23ff35158e6"
2100 | integrity sha512-phJfQVBuaJM5raOpJjSfkiD6BpbCE4Ns//LaXl6wGYtUBY83nWS6Rf9tXm2e8VaK60JEjYldbPif/A2B1C2gNA==
2101 | dependencies:
2102 | loose-envify "^1.0.0"
2103 |
2104 | is-accessor-descriptor@^0.1.6:
2105 | version "0.1.6"
2106 | resolved "https://registry.yarnpkg.com/is-accessor-descriptor/-/is-accessor-descriptor-0.1.6.tgz#a9e12cb3ae8d876727eeef3843f8a0897b5c98d6"
2107 | integrity sha1-qeEss66Nh2cn7u84Q/igiXtcmNY=
2108 | dependencies:
2109 | kind-of "^3.0.2"
2110 |
2111 | is-accessor-descriptor@^1.0.0:
2112 | version "1.0.0"
2113 | resolved "https://registry.yarnpkg.com/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz#169c2f6d3df1f992618072365c9b0ea1f6878656"
2114 | integrity sha512-m5hnHTkcVsPfqx3AKlyttIPb7J+XykHvJP2B9bZDjlhLIoEq4XoK64Vg7boZlVWYK6LUY94dYPEE7Lh0ZkZKcQ==
2115 | dependencies:
2116 | kind-of "^6.0.0"
2117 |
2118 | is-alphabetical@^1.0.0:
2119 | version "1.0.3"
2120 | resolved "https://registry.yarnpkg.com/is-alphabetical/-/is-alphabetical-1.0.3.tgz#eb04cc47219a8895d8450ace4715abff2258a1f8"
2121 | integrity sha512-eEMa6MKpHFzw38eKm56iNNi6GJ7lf6aLLio7Kr23sJPAECscgRtZvOBYybejWDQ2bM949Y++61PY+udzj5QMLA==
2122 |
2123 | is-alphanumeric@^1.0.0:
2124 | version "1.0.0"
2125 | resolved "https://registry.yarnpkg.com/is-alphanumeric/-/is-alphanumeric-1.0.0.tgz#4a9cef71daf4c001c1d81d63d140cf53fd6889f4"
2126 | integrity sha1-Spzvcdr0wAHB2B1j0UDPU/1oifQ=
2127 |
2128 | is-alphanumerical@^1.0.0:
2129 | version "1.0.3"
2130 | resolved "https://registry.yarnpkg.com/is-alphanumerical/-/is-alphanumerical-1.0.3.tgz#57ae21c374277b3defe0274c640a5704b8f6657c"
2131 | integrity sha512-A1IGAPO5AW9vSh7omxIlOGwIqEvpW/TA+DksVOPM5ODuxKlZS09+TEM1E3275lJqO2oJ38vDpeAL3DCIiHE6eA==
2132 | dependencies:
2133 | is-alphabetical "^1.0.0"
2134 | is-decimal "^1.0.0"
2135 |
2136 | is-arrayish@^0.2.1:
2137 | version "0.2.1"
2138 | resolved "https://registry.yarnpkg.com/is-arrayish/-/is-arrayish-0.2.1.tgz#77c99840527aa8ecb1a8ba697b80645a7a926a9d"
2139 | integrity sha1-d8mYQFJ6qOyxqLppe4BkWnqSap0=
2140 |
2141 | is-binary-path@^1.0.0:
2142 | version "1.0.1"
2143 | resolved "https://registry.yarnpkg.com/is-binary-path/-/is-binary-path-1.0.1.tgz#75f16642b480f187a711c814161fd3a4a7655898"
2144 | integrity sha1-dfFmQrSA8YenEcgUFh/TpKdlWJg=
2145 | dependencies:
2146 | binary-extensions "^1.0.0"
2147 |
2148 | is-buffer@^1.1.5:
2149 | version "1.1.6"
2150 | resolved "https://registry.yarnpkg.com/is-buffer/-/is-buffer-1.1.6.tgz#efaa2ea9daa0d7ab2ea13a97b2b8ad51fefbe8be"
2151 | integrity sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w==
2152 |
2153 | is-buffer@^2.0.0:
2154 | version "2.0.3"
2155 | resolved "https://registry.yarnpkg.com/is-buffer/-/is-buffer-2.0.3.tgz#4ecf3fcf749cbd1e472689e109ac66261a25e725"
2156 | integrity sha512-U15Q7MXTuZlrbymiz95PJpZxu8IlipAp4dtS3wOdgPXx3mqBnslrWU14kxfHB+Py/+2PVKSr37dMAgM2A4uArw==
2157 |
2158 | is-callable@^1.1.4:
2159 | version "1.1.4"
2160 | resolved "https://registry.yarnpkg.com/is-callable/-/is-callable-1.1.4.tgz#1e1adf219e1eeb684d691f9d6a05ff0d30a24d75"
2161 | integrity sha512-r5p9sxJjYnArLjObpjA4xu5EKI3CuKHkJXMhT7kwbpUyIFD1n5PMAsoPvWnvtZiNz7LjkYDRZhd7FlI0eMijEA==
2162 |
2163 | is-data-descriptor@^0.1.4:
2164 | version "0.1.4"
2165 | resolved "https://registry.yarnpkg.com/is-data-descriptor/-/is-data-descriptor-0.1.4.tgz#0b5ee648388e2c860282e793f1856fec3f301b56"
2166 | integrity sha1-C17mSDiOLIYCgueT8YVv7D8wG1Y=
2167 | dependencies:
2168 | kind-of "^3.0.2"
2169 |
2170 | is-data-descriptor@^1.0.0:
2171 | version "1.0.0"
2172 | resolved "https://registry.yarnpkg.com/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz#d84876321d0e7add03990406abbbbd36ba9268c7"
2173 | integrity sha512-jbRXy1FmtAoCjQkVmIVYwuuqDFUbaOeDjmed1tOGPrsMhtJA4rD9tkgA0F1qJ3gRFRXcHYVkdeaP50Q5rE/jLQ==
2174 | dependencies:
2175 | kind-of "^6.0.0"
2176 |
2177 | is-date-object@^1.0.1:
2178 | version "1.0.1"
2179 | resolved "https://registry.yarnpkg.com/is-date-object/-/is-date-object-1.0.1.tgz#9aa20eb6aeebbff77fbd33e74ca01b33581d3a16"
2180 | integrity sha1-mqIOtq7rv/d/vTPnTKAbM1gdOhY=
2181 |
2182 | is-decimal@^1.0.0, is-decimal@^1.0.2:
2183 | version "1.0.3"
2184 | resolved "https://registry.yarnpkg.com/is-decimal/-/is-decimal-1.0.3.tgz#381068759b9dc807d8c0dc0bfbae2b68e1da48b7"
2185 | integrity sha512-bvLSwoDg2q6Gf+E2LEPiklHZxxiSi3XAh4Mav65mKqTfCO1HM3uBs24TjEH8iJX3bbDdLXKJXBTmGzuTUuAEjQ==
2186 |
2187 | is-descriptor@^0.1.0:
2188 | version "0.1.6"
2189 | resolved "https://registry.yarnpkg.com/is-descriptor/-/is-descriptor-0.1.6.tgz#366d8240dde487ca51823b1ab9f07a10a78251ca"
2190 | integrity sha512-avDYr0SB3DwO9zsMov0gKCESFYqCnE4hq/4z3TdUlukEy5t9C0YRq7HLrsN52NAcqXKaepeCD0n+B0arnVG3Hg==
2191 | dependencies:
2192 | is-accessor-descriptor "^0.1.6"
2193 | is-data-descriptor "^0.1.4"
2194 | kind-of "^5.0.0"
2195 |
2196 | is-descriptor@^1.0.0, is-descriptor@^1.0.2:
2197 | version "1.0.2"
2198 | resolved "https://registry.yarnpkg.com/is-descriptor/-/is-descriptor-1.0.2.tgz#3b159746a66604b04f8c81524ba365c5f14d86ec"
2199 | integrity sha512-2eis5WqQGV7peooDyLmNEPUrps9+SXX5c9pL3xEB+4e9HnGuDa7mB7kHxHw4CbqS9k1T2hOH3miL8n8WtiYVtg==
2200 | dependencies:
2201 | is-accessor-descriptor "^1.0.0"
2202 | is-data-descriptor "^1.0.0"
2203 | kind-of "^6.0.2"
2204 |
2205 | is-dotfile@^1.0.0:
2206 | version "1.0.3"
2207 | resolved "https://registry.yarnpkg.com/is-dotfile/-/is-dotfile-1.0.3.tgz#a6a2f32ffd2dfb04f5ca25ecd0f6b83cf798a1e1"
2208 | integrity sha1-pqLzL/0t+wT1yiXs0Pa4PPeYoeE=
2209 |
2210 | is-equal-shallow@^0.1.3:
2211 | version "0.1.3"
2212 | resolved "https://registry.yarnpkg.com/is-equal-shallow/-/is-equal-shallow-0.1.3.tgz#2238098fc221de0bcfa5d9eac4c45d638aa1c534"
2213 | integrity sha1-IjgJj8Ih3gvPpdnqxMRdY4qhxTQ=
2214 | dependencies:
2215 | is-primitive "^2.0.0"
2216 |
2217 | is-extendable@^0.1.0, is-extendable@^0.1.1:
2218 | version "0.1.1"
2219 | resolved "https://registry.yarnpkg.com/is-extendable/-/is-extendable-0.1.1.tgz#62b110e289a471418e3ec36a617d472e301dfc89"
2220 | integrity sha1-YrEQ4omkcUGOPsNqYX1HLjAd/Ik=
2221 |
2222 | is-extendable@^1.0.1:
2223 | version "1.0.1"
2224 | resolved "https://registry.yarnpkg.com/is-extendable/-/is-extendable-1.0.1.tgz#a7470f9e426733d81bd81e1155264e3a3507cab4"
2225 | integrity sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==
2226 | dependencies:
2227 | is-plain-object "^2.0.4"
2228 |
2229 | is-extglob@^1.0.0:
2230 | version "1.0.0"
2231 | resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-1.0.0.tgz#ac468177c4943405a092fc8f29760c6ffc6206c0"
2232 | integrity sha1-rEaBd8SUNAWgkvyPKXYMb/xiBsA=
2233 |
2234 | is-extglob@^2.1.1:
2235 | version "2.1.1"
2236 | resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-2.1.1.tgz#a88c02535791f02ed37c76a1b9ea9773c833f8c2"
2237 | integrity sha1-qIwCU1eR8C7TfHahueqXc8gz+MI=
2238 |
2239 | is-finite@^1.0.0:
2240 | version "1.0.2"
2241 | resolved "https://registry.yarnpkg.com/is-finite/-/is-finite-1.0.2.tgz#cc6677695602be550ef11e8b4aa6305342b6d0aa"
2242 | integrity sha1-zGZ3aVYCvlUO8R6LSqYwU0K20Ko=
2243 | dependencies:
2244 | number-is-nan "^1.0.0"
2245 |
2246 | is-fullwidth-code-point@^1.0.0:
2247 | version "1.0.0"
2248 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz#ef9e31386f031a7f0d643af82fde50c457ef00cb"
2249 | integrity sha1-754xOG8DGn8NZDr4L95QxFfvAMs=
2250 | dependencies:
2251 | number-is-nan "^1.0.0"
2252 |
2253 | is-fullwidth-code-point@^2.0.0:
2254 | version "2.0.0"
2255 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz#a3b30a5c4f199183167aaab93beefae3ddfb654f"
2256 | integrity sha1-o7MKXE8ZkYMWeqq5O+764937ZU8=
2257 |
2258 | is-fullwidth-code-point@^3.0.0:
2259 | version "3.0.0"
2260 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz#f116f8064fe90b3f7844a38997c0b75051269f1d"
2261 | integrity sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==
2262 |
2263 | is-glob@^2.0.0, is-glob@^2.0.1:
2264 | version "2.0.1"
2265 | resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-2.0.1.tgz#d096f926a3ded5600f3fdfd91198cb0888c2d863"
2266 | integrity sha1-0Jb5JqPe1WAPP9/ZEZjLCIjC2GM=
2267 | dependencies:
2268 | is-extglob "^1.0.0"
2269 |
2270 | is-glob@^4.0.0, is-glob@^4.0.1:
2271 | version "4.0.1"
2272 | resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-4.0.1.tgz#7567dbe9f2f5e2467bc77ab83c4a29482407a5dc"
2273 | integrity sha512-5G0tKtBTFImOqDnLB2hG6Bp2qcKEFduo4tZu9MT/H6NQv/ghhy30o55ufafxJ/LdH79LLs2Kfrn85TLKyA7BUg==
2274 | dependencies:
2275 | is-extglob "^2.1.1"
2276 |
2277 | is-hexadecimal@^1.0.0:
2278 | version "1.0.3"
2279 | resolved "https://registry.yarnpkg.com/is-hexadecimal/-/is-hexadecimal-1.0.3.tgz#e8a426a69b6d31470d3a33a47bb825cda02506ee"
2280 | integrity sha512-zxQ9//Q3D/34poZf8fiy3m3XVpbQc7ren15iKqrTtLPwkPD/t3Scy9Imp63FujULGxuK0ZlCwoo5xNpktFgbOA==
2281 |
2282 | is-number@^2.1.0:
2283 | version "2.1.0"
2284 | resolved "https://registry.yarnpkg.com/is-number/-/is-number-2.1.0.tgz#01fcbbb393463a548f2f466cce16dece49db908f"
2285 | integrity sha1-Afy7s5NGOlSPL0ZszhbezknbkI8=
2286 | dependencies:
2287 | kind-of "^3.0.2"
2288 |
2289 | is-number@^3.0.0:
2290 | version "3.0.0"
2291 | resolved "https://registry.yarnpkg.com/is-number/-/is-number-3.0.0.tgz#24fd6201a4782cf50561c810276afc7d12d71195"
2292 | integrity sha1-JP1iAaR4LPUFYcgQJ2r8fRLXEZU=
2293 | dependencies:
2294 | kind-of "^3.0.2"
2295 |
2296 | is-number@^4.0.0:
2297 | version "4.0.0"
2298 | resolved "https://registry.yarnpkg.com/is-number/-/is-number-4.0.0.tgz#0026e37f5454d73e356dfe6564699867c6a7f0ff"
2299 | integrity sha512-rSklcAIlf1OmFdyAqbnWTLVelsQ58uvZ66S/ZyawjWqIviTWCjg2PzVGw8WUA+nNuPTqb4wgA+NszrJ+08LlgQ==
2300 |
2301 | is-plain-obj@^2.0.0:
2302 | version "2.0.0"
2303 | resolved "https://registry.yarnpkg.com/is-plain-obj/-/is-plain-obj-2.0.0.tgz#7fd1a7f1b69e160cde9181d2313f445c68aa2679"
2304 | integrity sha512-EYisGhpgSCwspmIuRHGjROWTon2Xp8Z7U03Wubk/bTL5TTRC5R1rGVgyjzBrk9+ULdH6cRD06KRcw/xfqhVYKQ==
2305 |
2306 | is-plain-object@^2.0.3, is-plain-object@^2.0.4:
2307 | version "2.0.4"
2308 | resolved "https://registry.yarnpkg.com/is-plain-object/-/is-plain-object-2.0.4.tgz#2c163b3fafb1b606d9d17928f05c2a1c38e07677"
2309 | integrity sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==
2310 | dependencies:
2311 | isobject "^3.0.1"
2312 |
2313 | is-posix-bracket@^0.1.0:
2314 | version "0.1.1"
2315 | resolved "https://registry.yarnpkg.com/is-posix-bracket/-/is-posix-bracket-0.1.1.tgz#3334dc79774368e92f016e6fbc0a88f5cd6e6bc4"
2316 | integrity sha1-MzTceXdDaOkvAW5vvAqI9c1ua8Q=
2317 |
2318 | is-primitive@^2.0.0:
2319 | version "2.0.0"
2320 | resolved "https://registry.yarnpkg.com/is-primitive/-/is-primitive-2.0.0.tgz#207bab91638499c07b2adf240a41a87210034575"
2321 | integrity sha1-IHurkWOEmcB7Kt8kCkGochADRXU=
2322 |
2323 | is-promise@^2.1.0:
2324 | version "2.1.0"
2325 | resolved "https://registry.yarnpkg.com/is-promise/-/is-promise-2.1.0.tgz#79a2a9ece7f096e80f36d2b2f3bc16c1ff4bf3fa"
2326 | integrity sha1-eaKp7OfwlugPNtKy87wWwf9L8/o=
2327 |
2328 | is-regex@^1.0.4:
2329 | version "1.0.4"
2330 | resolved "https://registry.yarnpkg.com/is-regex/-/is-regex-1.0.4.tgz#5517489b547091b0930e095654ced25ee97e9491"
2331 | integrity sha1-VRdIm1RwkbCTDglWVM7SXul+lJE=
2332 | dependencies:
2333 | has "^1.0.1"
2334 |
2335 | is-symbol@^1.0.2:
2336 | version "1.0.2"
2337 | resolved "https://registry.yarnpkg.com/is-symbol/-/is-symbol-1.0.2.tgz#a055f6ae57192caee329e7a860118b497a950f38"
2338 | integrity sha512-HS8bZ9ox60yCJLH9snBpIwv9pYUAkcuLhSA1oero1UB5y9aiQpRA8y2ex945AOtCZL1lJDeIk3G5LthswI46Lw==
2339 | dependencies:
2340 | has-symbols "^1.0.0"
2341 |
2342 | is-whitespace-character@^1.0.0:
2343 | version "1.0.3"
2344 | resolved "https://registry.yarnpkg.com/is-whitespace-character/-/is-whitespace-character-1.0.3.tgz#b3ad9546d916d7d3ffa78204bca0c26b56257fac"
2345 | integrity sha512-SNPgMLz9JzPccD3nPctcj8sZlX9DAMJSKH8bP7Z6bohCwuNgX8xbWr1eTAYXX9Vpi/aSn8Y1akL9WgM3t43YNQ==
2346 |
2347 | is-windows@^1.0.0, is-windows@^1.0.2:
2348 | version "1.0.2"
2349 | resolved "https://registry.yarnpkg.com/is-windows/-/is-windows-1.0.2.tgz#d1850eb9791ecd18e6182ce12a30f396634bb19d"
2350 | integrity sha512-eXK1UInq2bPmjyX6e3VHIzMLobc4J94i4AWn+Hpq3OU5KkrRC96OAcR3PRJ/pGu6m8TRnBHP9dkXQVsT/COVIA==
2351 |
2352 | is-word-character@^1.0.0:
2353 | version "1.0.3"
2354 | resolved "https://registry.yarnpkg.com/is-word-character/-/is-word-character-1.0.3.tgz#264d15541cbad0ba833d3992c34e6b40873b08aa"
2355 | integrity sha512-0wfcrFgOOOBdgRNT9H33xe6Zi6yhX/uoc4U8NBZGeQQB0ctU1dnlNTyL9JM2646bHDTpsDm1Brb3VPoCIMrd/A==
2356 |
2357 | isarray@1.0.0, isarray@^1.0.0, isarray@~1.0.0:
2358 | version "1.0.0"
2359 | resolved "https://registry.yarnpkg.com/isarray/-/isarray-1.0.0.tgz#bb935d48582cba168c06834957a54a3e07124f11"
2360 | integrity sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE=
2361 |
2362 | isexe@^2.0.0:
2363 | version "2.0.0"
2364 | resolved "https://registry.yarnpkg.com/isexe/-/isexe-2.0.0.tgz#e8fbf374dc556ff8947a10dcb0572d633f2cfa10"
2365 | integrity sha1-6PvzdNxVb/iUehDcsFctYz8s+hA=
2366 |
2367 | isobject@^2.0.0:
2368 | version "2.1.0"
2369 | resolved "https://registry.yarnpkg.com/isobject/-/isobject-2.1.0.tgz#f065561096a3f1da2ef46272f815c840d87e0c89"
2370 | integrity sha1-8GVWEJaj8dou9GJy+BXIQNh+DIk=
2371 | dependencies:
2372 | isarray "1.0.0"
2373 |
2374 | isobject@^3.0.0, isobject@^3.0.1:
2375 | version "3.0.1"
2376 | resolved "https://registry.yarnpkg.com/isobject/-/isobject-3.0.1.tgz#4e431e92b11a9731636aa1f9c8d1ccbcfdab78df"
2377 | integrity sha1-TkMekrEalzFjaqH5yNHMvP2reN8=
2378 |
2379 | "js-tokens@^3.0.0 || ^4.0.0", js-tokens@^4.0.0:
2380 | version "4.0.0"
2381 | resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-4.0.0.tgz#19203fb59991df98e3a287050d4647cdeaf32499"
2382 | integrity sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==
2383 |
2384 | js-tokens@^3.0.2:
2385 | version "3.0.2"
2386 | resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-3.0.2.tgz#9866df395102130e38f7f996bceb65443209c25b"
2387 | integrity sha1-mGbfOVECEw449/mWvOtlRDIJwls=
2388 |
2389 | js-yaml@^3.13.1:
2390 | version "3.13.1"
2391 | resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-3.13.1.tgz#aff151b30bfdfa8e49e05da22e7415e9dfa37847"
2392 | integrity sha512-YfbcO7jXDdyj0DGxYVSlSeQNHbD7XPWvrVWeVUujrQEoZzWJIRrCPoyk6kL6IAjAG2IolMK4T0hNUe0HOUs5Jw==
2393 | dependencies:
2394 | argparse "^1.0.7"
2395 | esprima "^4.0.0"
2396 |
2397 | jsesc@^1.3.0:
2398 | version "1.3.0"
2399 | resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-1.3.0.tgz#46c3fec8c1892b12b0833db9bc7622176dbab34b"
2400 | integrity sha1-RsP+yMGJKxKwgz25vHYiF226s0s=
2401 |
2402 | jsesc@^2.5.1:
2403 | version "2.5.2"
2404 | resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-2.5.2.tgz#80564d2e483dacf6e8ef209650a67df3f0c283a4"
2405 | integrity sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA==
2406 |
2407 | jsesc@~0.5.0:
2408 | version "0.5.0"
2409 | resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-0.5.0.tgz#e7dee66e35d6fc16f710fe91d5cf69f70f08911d"
2410 | integrity sha1-597mbjXW/Bb3EP6R1c9p9w8IkR0=
2411 |
2412 | json-schema-traverse@^0.4.1:
2413 | version "0.4.1"
2414 | resolved "https://registry.yarnpkg.com/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz#69f6a87d9513ab8bb8fe63bdb0979c448e684660"
2415 | integrity sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==
2416 |
2417 | json-stable-stringify-without-jsonify@^1.0.1:
2418 | version "1.0.1"
2419 | resolved "https://registry.yarnpkg.com/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz#9db7b59496ad3f3cfef30a75142d2d930ad72651"
2420 | integrity sha1-nbe1lJatPzz+8wp1FC0tkwrXJlE=
2421 |
2422 | json5@^0.5.1:
2423 | version "0.5.1"
2424 | resolved "https://registry.yarnpkg.com/json5/-/json5-0.5.1.tgz#1eade7acc012034ad84e2396767ead9fa5495821"
2425 | integrity sha1-Hq3nrMASA0rYTiOWdn6tn6VJWCE=
2426 |
2427 | jsx-ast-utils@^2.1.0, jsx-ast-utils@^2.2.1:
2428 | version "2.2.1"
2429 | resolved "https://registry.yarnpkg.com/jsx-ast-utils/-/jsx-ast-utils-2.2.1.tgz#4d4973ebf8b9d2837ee91a8208cc66f3a2776cfb"
2430 | integrity sha512-v3FxCcAf20DayI+uxnCuw795+oOIkVu6EnJ1+kSzhqqTZHNkTZ7B66ZgLp4oLJ/gbA64cI0B7WRoHZMSRdyVRQ==
2431 | dependencies:
2432 | array-includes "^3.0.3"
2433 | object.assign "^4.1.0"
2434 |
2435 | kind-of@^3.0.2, kind-of@^3.0.3, kind-of@^3.2.0:
2436 | version "3.2.2"
2437 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-3.2.2.tgz#31ea21a734bab9bbb0f32466d893aea51e4a3c64"
2438 | integrity sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=
2439 | dependencies:
2440 | is-buffer "^1.1.5"
2441 |
2442 | kind-of@^4.0.0:
2443 | version "4.0.0"
2444 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-4.0.0.tgz#20813df3d712928b207378691a45066fae72dd57"
2445 | integrity sha1-IIE989cSkosgc3hpGkUGb65y3Vc=
2446 | dependencies:
2447 | is-buffer "^1.1.5"
2448 |
2449 | kind-of@^5.0.0:
2450 | version "5.1.0"
2451 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-5.1.0.tgz#729c91e2d857b7a419a1f9aa65685c4c33f5845d"
2452 | integrity sha512-NGEErnH6F2vUuXDh+OlbcKW7/wOcfdRHaZ7VWtqCztfHri/++YKmP51OdWeGPuqCOba6kk2OTe5d02VmTB80Pw==
2453 |
2454 | kind-of@^6.0.0, kind-of@^6.0.2:
2455 | version "6.0.2"
2456 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-6.0.2.tgz#01146b36a6218e64e58f3a8d66de5d7fc6f6d051"
2457 | integrity sha512-s5kLOcnH0XqDO+FvuaLX8DDjZ18CGFk7VygH40QoKPUQhW4e2rvM0rwUq0t8IQDOwYSeLK01U90OjzBTme2QqA==
2458 |
2459 | levn@^0.3.0, levn@~0.3.0:
2460 | version "0.3.0"
2461 | resolved "https://registry.yarnpkg.com/levn/-/levn-0.3.0.tgz#3b09924edf9f083c0490fdd4c0bc4421e04764ee"
2462 | integrity sha1-OwmSTt+fCDwEkP3UwLxEIeBHZO4=
2463 | dependencies:
2464 | prelude-ls "~1.1.2"
2465 | type-check "~0.3.2"
2466 |
2467 | load-json-file@^2.0.0:
2468 | version "2.0.0"
2469 | resolved "https://registry.yarnpkg.com/load-json-file/-/load-json-file-2.0.0.tgz#7947e42149af80d696cbf797bcaabcfe1fe29ca8"
2470 | integrity sha1-eUfkIUmvgNaWy/eXvKq8/h/inKg=
2471 | dependencies:
2472 | graceful-fs "^4.1.2"
2473 | parse-json "^2.2.0"
2474 | pify "^2.0.0"
2475 | strip-bom "^3.0.0"
2476 |
2477 | locate-path@^2.0.0:
2478 | version "2.0.0"
2479 | resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-2.0.0.tgz#2b568b265eec944c6d9c0de9c3dbbbca0354cd8e"
2480 | integrity sha1-K1aLJl7slExtnA3pw9u7ygNUzY4=
2481 | dependencies:
2482 | p-locate "^2.0.0"
2483 | path-exists "^3.0.0"
2484 |
2485 | lodash@^4.17.13, lodash@^4.17.14, lodash@^4.17.15, lodash@^4.17.4:
2486 | version "4.17.15"
2487 | resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.15.tgz#b447f6670a0455bbfeedd11392eff330ea097548"
2488 | integrity sha512-8xOcRHvCjnocdS5cpwXQXVzmmh5e5+saE2QGoeQmbKmRS6J3VQppPOIt0MnmE+4xlZoumy0GPG0D0MVIQbNA1A==
2489 |
2490 | longest-streak@^2.0.1:
2491 | version "2.0.3"
2492 | resolved "https://registry.yarnpkg.com/longest-streak/-/longest-streak-2.0.3.tgz#3de7a3f47ee18e9074ded8575b5c091f5d0a4105"
2493 | integrity sha512-9lz5IVdpwsKLMzQi0MQ+oD9EA0mIGcWYP7jXMTZVXP8D42PwuAk+M/HBFYQoxt1G5OR8m7aSIgb1UymfWGBWEw==
2494 |
2495 | loose-envify@^1.0.0, loose-envify@^1.4.0:
2496 | version "1.4.0"
2497 | resolved "https://registry.yarnpkg.com/loose-envify/-/loose-envify-1.4.0.tgz#71ee51fa7be4caec1a63839f7e682d8132d30caf"
2498 | integrity sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==
2499 | dependencies:
2500 | js-tokens "^3.0.0 || ^4.0.0"
2501 |
2502 | map-cache@^0.2.2:
2503 | version "0.2.2"
2504 | resolved "https://registry.yarnpkg.com/map-cache/-/map-cache-0.2.2.tgz#c32abd0bd6525d9b051645bb4f26ac5dc98a0dbf"
2505 | integrity sha1-wyq9C9ZSXZsFFkW7TyasXcmKDb8=
2506 |
2507 | map-visit@^1.0.0:
2508 | version "1.0.0"
2509 | resolved "https://registry.yarnpkg.com/map-visit/-/map-visit-1.0.0.tgz#ecdca8f13144e660f1b5bd41f12f3479d98dfb8f"
2510 | integrity sha1-7Nyo8TFE5mDxtb1B8S80edmN+48=
2511 | dependencies:
2512 | object-visit "^1.0.0"
2513 |
2514 | markdown-escapes@^1.0.0:
2515 | version "1.0.3"
2516 | resolved "https://registry.yarnpkg.com/markdown-escapes/-/markdown-escapes-1.0.3.tgz#6155e10416efaafab665d466ce598216375195f5"
2517 | integrity sha512-XUi5HJhhV5R74k8/0H2oCbCiYf/u4cO/rX8tnGkRvrqhsr5BRNU6Mg0yt/8UIx1iIS8220BNJsDb7XnILhLepw==
2518 |
2519 | markdown-table@^1.1.0:
2520 | version "1.1.3"
2521 | resolved "https://registry.yarnpkg.com/markdown-table/-/markdown-table-1.1.3.tgz#9fcb69bcfdb8717bfd0398c6ec2d93036ef8de60"
2522 | integrity sha512-1RUZVgQlpJSPWYbFSpmudq5nHY1doEIv89gBtF0s4gW1GF2XorxcA/70M5vq7rLv0a6mhOUccRsqkwhwLCIQ2Q==
2523 |
2524 | math-random@^1.0.1:
2525 | version "1.0.4"
2526 | resolved "https://registry.yarnpkg.com/math-random/-/math-random-1.0.4.tgz#5dd6943c938548267016d4e34f057583080c514c"
2527 | integrity sha512-rUxjysqif/BZQH2yhd5Aaq7vXMSx9NdEsQcyA07uEzIvxgI7zIr33gGsh+RU0/XjmQpCW7RsVof1vlkvQVCK5A==
2528 |
2529 | mdast-util-compact@^1.0.0:
2530 | version "1.0.3"
2531 | resolved "https://registry.yarnpkg.com/mdast-util-compact/-/mdast-util-compact-1.0.3.tgz#98a25cc8a7865761a41477b3a87d1dcef0b1e79d"
2532 | integrity sha512-nRiU5GpNy62rZppDKbLwhhtw5DXoFMqw9UNZFmlPsNaQCZ//WLjGKUwWMdJrUH+Se7UvtO2gXtAMe0g/N+eI5w==
2533 | dependencies:
2534 | unist-util-visit "^1.1.0"
2535 |
2536 | micromatch@^2.1.5:
2537 | version "2.3.11"
2538 | resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-2.3.11.tgz#86677c97d1720b363431d04d0d15293bd38c1565"
2539 | integrity sha1-hmd8l9FyCzY0MdBNDRUpO9OMFWU=
2540 | dependencies:
2541 | arr-diff "^2.0.0"
2542 | array-unique "^0.2.1"
2543 | braces "^1.8.2"
2544 | expand-brackets "^0.1.4"
2545 | extglob "^0.3.1"
2546 | filename-regex "^2.0.0"
2547 | is-extglob "^1.0.0"
2548 | is-glob "^2.0.1"
2549 | kind-of "^3.0.2"
2550 | normalize-path "^2.0.1"
2551 | object.omit "^2.0.0"
2552 | parse-glob "^3.0.4"
2553 | regex-cache "^0.4.2"
2554 |
2555 | micromatch@^3.1.10:
2556 | version "3.1.10"
2557 | resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-3.1.10.tgz#70859bc95c9840952f359a068a3fc49f9ecfac23"
2558 | integrity sha512-MWikgl9n9M3w+bpsY3He8L+w9eF9338xRl8IAO5viDizwSzziFEyUzo2xrrloB64ADbTf8uA8vRqqttDTOmccg==
2559 | dependencies:
2560 | arr-diff "^4.0.0"
2561 | array-unique "^0.3.2"
2562 | braces "^2.3.1"
2563 | define-property "^2.0.2"
2564 | extend-shallow "^3.0.2"
2565 | extglob "^2.0.4"
2566 | fragment-cache "^0.2.1"
2567 | kind-of "^6.0.2"
2568 | nanomatch "^1.2.9"
2569 | object.pick "^1.3.0"
2570 | regex-not "^1.0.0"
2571 | snapdragon "^0.8.1"
2572 | to-regex "^3.0.2"
2573 |
2574 | mimic-fn@^2.1.0:
2575 | version "2.1.0"
2576 | resolved "https://registry.yarnpkg.com/mimic-fn/-/mimic-fn-2.1.0.tgz#7ed2c2ccccaf84d3ffcb7a69b57711fc2083401b"
2577 | integrity sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==
2578 |
2579 | minimatch@^3.0.4:
2580 | version "3.0.4"
2581 | resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.0.4.tgz#5166e286457f03306064be5497e8dbb0c3d32083"
2582 | integrity sha512-yJHVQEhyqPLUTgt9B83PXu6W3rx4MvvHvSUvToogpwoGDOUQ+yDrR0HRot+yOCdCO7u4hX3pWft6kWBBcqh0UA==
2583 | dependencies:
2584 | brace-expansion "^1.1.7"
2585 |
2586 | minimist@0.0.8:
2587 | version "0.0.8"
2588 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-0.0.8.tgz#857fcabfc3397d2625b8228262e86aa7a011b05d"
2589 | integrity sha1-hX/Kv8M5fSYluCKCYuhqp6ARsF0=
2590 |
2591 | minimist@^1.2.0:
2592 | version "1.2.0"
2593 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.0.tgz#a35008b20f41383eec1fb914f4cd5df79a264284"
2594 | integrity sha1-o1AIsg9BOD7sH7kU9M1d95omQoQ=
2595 |
2596 | minipass@^2.2.1, minipass@^2.3.5:
2597 | version "2.3.5"
2598 | resolved "https://registry.yarnpkg.com/minipass/-/minipass-2.3.5.tgz#cacebe492022497f656b0f0f51e2682a9ed2d848"
2599 | integrity sha512-Gi1W4k059gyRbyVUZQ4mEqLm0YIUiGYfvxhF6SIlk3ui1WVxMTGfGdQ2SInh3PDrRTVvPKgULkpJtT4RH10+VA==
2600 | dependencies:
2601 | safe-buffer "^5.1.2"
2602 | yallist "^3.0.0"
2603 |
2604 | minizlib@^1.2.1:
2605 | version "1.2.1"
2606 | resolved "https://registry.yarnpkg.com/minizlib/-/minizlib-1.2.1.tgz#dd27ea6136243c7c880684e8672bb3a45fd9b614"
2607 | integrity sha512-7+4oTUOWKg7AuL3vloEWekXY2/D20cevzsrNT2kGWm+39J9hGTCBv8VI5Pm5lXZ/o3/mdR4f8rflAPhnQb8mPA==
2608 | dependencies:
2609 | minipass "^2.2.1"
2610 |
2611 | mixin-deep@^1.2.0:
2612 | version "1.3.2"
2613 | resolved "https://registry.yarnpkg.com/mixin-deep/-/mixin-deep-1.3.2.tgz#1120b43dc359a785dce65b55b82e257ccf479566"
2614 | integrity sha512-WRoDn//mXBiJ1H40rqa3vH0toePwSsGb45iInWlTySa+Uu4k3tYUSxa2v1KqAiLtvlrSzaExqS1gtk96A9zvEA==
2615 | dependencies:
2616 | for-in "^1.0.2"
2617 | is-extendable "^1.0.1"
2618 |
2619 | mkdirp@^0.5.0, mkdirp@^0.5.1:
2620 | version "0.5.1"
2621 | resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.5.1.tgz#30057438eac6cf7f8c4767f38648d6697d75c903"
2622 | integrity sha1-MAV0OOrGz3+MR2fzhkjWaX11yQM=
2623 | dependencies:
2624 | minimist "0.0.8"
2625 |
2626 | ms@2.0.0:
2627 | version "2.0.0"
2628 | resolved "https://registry.yarnpkg.com/ms/-/ms-2.0.0.tgz#5608aeadfc00be6c2901df5f9861788de0d597c8"
2629 | integrity sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=
2630 |
2631 | ms@^2.1.1:
2632 | version "2.1.2"
2633 | resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.2.tgz#d09d1f357b443f493382a8eb3ccd183872ae6009"
2634 | integrity sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==
2635 |
2636 | mute-stream@0.0.8:
2637 | version "0.0.8"
2638 | resolved "https://registry.yarnpkg.com/mute-stream/-/mute-stream-0.0.8.tgz#1630c42b2251ff81e2a283de96a5497ea92e5e0d"
2639 | integrity sha512-nnbWWOkoWyUsTjKrhgD0dcz22mdkSnpYqbEjIm2nhwhuxlSkpywJmBo8h0ZqJdkp73mb90SssHkN4rsRaBAfAA==
2640 |
2641 | nan@^2.12.1:
2642 | version "2.14.0"
2643 | resolved "https://registry.yarnpkg.com/nan/-/nan-2.14.0.tgz#7818f722027b2459a86f0295d434d1fc2336c52c"
2644 | integrity sha512-INOFj37C7k3AfaNTtX8RhsTw7qRy7eLET14cROi9+5HAVbbHuIWUHEauBv5qT4Av2tWasiTY1Jw6puUNqRJXQg==
2645 |
2646 | nanomatch@^1.2.9:
2647 | version "1.2.13"
2648 | resolved "https://registry.yarnpkg.com/nanomatch/-/nanomatch-1.2.13.tgz#b87a8aa4fc0de8fe6be88895b38983ff265bd119"
2649 | integrity sha512-fpoe2T0RbHwBTBUOftAfBPaDEi06ufaUai0mE6Yn1kacc3SnTErfb/h+X94VXzI64rKFHYImXSvdwGGCmwOqCA==
2650 | dependencies:
2651 | arr-diff "^4.0.0"
2652 | array-unique "^0.3.2"
2653 | define-property "^2.0.2"
2654 | extend-shallow "^3.0.2"
2655 | fragment-cache "^0.2.1"
2656 | is-windows "^1.0.2"
2657 | kind-of "^6.0.2"
2658 | object.pick "^1.3.0"
2659 | regex-not "^1.0.0"
2660 | snapdragon "^0.8.1"
2661 | to-regex "^3.0.1"
2662 |
2663 | natural-compare@^1.4.0:
2664 | version "1.4.0"
2665 | resolved "https://registry.yarnpkg.com/natural-compare/-/natural-compare-1.4.0.tgz#4abebfeed7541f2c27acfb29bdbbd15c8d5ba4f7"
2666 | integrity sha1-Sr6/7tdUHywnrPspvbvRXI1bpPc=
2667 |
2668 | needle@^2.2.1:
2669 | version "2.4.0"
2670 | resolved "https://registry.yarnpkg.com/needle/-/needle-2.4.0.tgz#6833e74975c444642590e15a750288c5f939b57c"
2671 | integrity sha512-4Hnwzr3mi5L97hMYeNl8wRW/Onhy4nUKR/lVemJ8gJedxxUyBLm9kkrDColJvoSfwi0jCNhD+xCdOtiGDQiRZg==
2672 | dependencies:
2673 | debug "^3.2.6"
2674 | iconv-lite "^0.4.4"
2675 | sax "^1.2.4"
2676 |
2677 | nice-try@^1.0.4:
2678 | version "1.0.5"
2679 | resolved "https://registry.yarnpkg.com/nice-try/-/nice-try-1.0.5.tgz#a3378a7696ce7d223e88fc9b764bd7ef1089e366"
2680 | integrity sha512-1nh45deeb5olNY7eX82BkPO7SSxR5SSYJiPTrTdFUVYwAl8CKMA5N9PjTYkHiRjisVcxcQ1HXdLhx2qxxJzLNQ==
2681 |
2682 | node-pre-gyp@^0.12.0:
2683 | version "0.12.0"
2684 | resolved "https://registry.yarnpkg.com/node-pre-gyp/-/node-pre-gyp-0.12.0.tgz#39ba4bb1439da030295f899e3b520b7785766149"
2685 | integrity sha512-4KghwV8vH5k+g2ylT+sLTjy5wmUOb9vPhnM8NHvRf9dHmnW/CndrFXy2aRPaPST6dugXSdHXfeaHQm77PIz/1A==
2686 | dependencies:
2687 | detect-libc "^1.0.2"
2688 | mkdirp "^0.5.1"
2689 | needle "^2.2.1"
2690 | nopt "^4.0.1"
2691 | npm-packlist "^1.1.6"
2692 | npmlog "^4.0.2"
2693 | rc "^1.2.7"
2694 | rimraf "^2.6.1"
2695 | semver "^5.3.0"
2696 | tar "^4"
2697 |
2698 | nopt@^4.0.1:
2699 | version "4.0.1"
2700 | resolved "https://registry.yarnpkg.com/nopt/-/nopt-4.0.1.tgz#d0d4685afd5415193c8c7505602d0d17cd64474d"
2701 | integrity sha1-0NRoWv1UFRk8jHUFYC0NF81kR00=
2702 | dependencies:
2703 | abbrev "1"
2704 | osenv "^0.1.4"
2705 |
2706 | normalize-package-data@^2.3.2:
2707 | version "2.5.0"
2708 | resolved "https://registry.yarnpkg.com/normalize-package-data/-/normalize-package-data-2.5.0.tgz#e66db1838b200c1dfc233225d12cb36520e234a8"
2709 | integrity sha512-/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA==
2710 | dependencies:
2711 | hosted-git-info "^2.1.4"
2712 | resolve "^1.10.0"
2713 | semver "2 || 3 || 4 || 5"
2714 | validate-npm-package-license "^3.0.1"
2715 |
2716 | normalize-path@^2.0.0, normalize-path@^2.0.1:
2717 | version "2.1.1"
2718 | resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-2.1.1.tgz#1ab28b556e198363a8c1a6f7e6fa20137fe6aed9"
2719 | integrity sha1-GrKLVW4Zg2Oowab35vogE3/mrtk=
2720 | dependencies:
2721 | remove-trailing-separator "^1.0.1"
2722 |
2723 | npm-bundled@^1.0.1:
2724 | version "1.0.6"
2725 | resolved "https://registry.yarnpkg.com/npm-bundled/-/npm-bundled-1.0.6.tgz#e7ba9aadcef962bb61248f91721cd932b3fe6bdd"
2726 | integrity sha512-8/JCaftHwbd//k6y2rEWp6k1wxVfpFzB6t1p825+cUb7Ym2XQfhwIC5KwhrvzZRJu+LtDE585zVaS32+CGtf0g==
2727 |
2728 | npm-packlist@^1.1.6:
2729 | version "1.4.4"
2730 | resolved "https://registry.yarnpkg.com/npm-packlist/-/npm-packlist-1.4.4.tgz#866224233850ac534b63d1a6e76050092b5d2f44"
2731 | integrity sha512-zTLo8UcVYtDU3gdeaFu2Xu0n0EvelfHDGuqtNIn5RO7yQj4H1TqNdBc/yZjxnWA0PVB8D3Woyp0i5B43JwQ6Vw==
2732 | dependencies:
2733 | ignore-walk "^3.0.1"
2734 | npm-bundled "^1.0.1"
2735 |
2736 | npmlog@^4.0.2:
2737 | version "4.1.2"
2738 | resolved "https://registry.yarnpkg.com/npmlog/-/npmlog-4.1.2.tgz#08a7f2a8bf734604779a9efa4ad5cc717abb954b"
2739 | integrity sha512-2uUqazuKlTaSI/dC8AzicUck7+IrEaOnN/e0jd3Xtt1KcGpwx30v50mL7oPyr/h9bL3E4aZccVwpwP+5W9Vjkg==
2740 | dependencies:
2741 | are-we-there-yet "~1.1.2"
2742 | console-control-strings "~1.1.0"
2743 | gauge "~2.7.3"
2744 | set-blocking "~2.0.0"
2745 |
2746 | number-is-nan@^1.0.0:
2747 | version "1.0.1"
2748 | resolved "https://registry.yarnpkg.com/number-is-nan/-/number-is-nan-1.0.1.tgz#097b602b53422a522c1afb8790318336941a011d"
2749 | integrity sha1-CXtgK1NCKlIsGvuHkDGDNpQaAR0=
2750 |
2751 | object-assign@^4.1.0, object-assign@^4.1.1:
2752 | version "4.1.1"
2753 | resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863"
2754 | integrity sha1-IQmtx5ZYh8/AXLvUQsrIv7s2CGM=
2755 |
2756 | object-copy@^0.1.0:
2757 | version "0.1.0"
2758 | resolved "https://registry.yarnpkg.com/object-copy/-/object-copy-0.1.0.tgz#7e7d858b781bd7c991a41ba975ed3812754e998c"
2759 | integrity sha1-fn2Fi3gb18mRpBupde04EnVOmYw=
2760 | dependencies:
2761 | copy-descriptor "^0.1.0"
2762 | define-property "^0.2.5"
2763 | kind-of "^3.0.3"
2764 |
2765 | object-keys@^1.0.11, object-keys@^1.0.12:
2766 | version "1.1.1"
2767 | resolved "https://registry.yarnpkg.com/object-keys/-/object-keys-1.1.1.tgz#1c47f272df277f3b1daf061677d9c82e2322c60e"
2768 | integrity sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==
2769 |
2770 | object-visit@^1.0.0:
2771 | version "1.0.1"
2772 | resolved "https://registry.yarnpkg.com/object-visit/-/object-visit-1.0.1.tgz#f79c4493af0c5377b59fe39d395e41042dd045bb"
2773 | integrity sha1-95xEk68MU3e1n+OdOV5BBC3QRbs=
2774 | dependencies:
2775 | isobject "^3.0.0"
2776 |
2777 | object.assign@^4.1.0:
2778 | version "4.1.0"
2779 | resolved "https://registry.yarnpkg.com/object.assign/-/object.assign-4.1.0.tgz#968bf1100d7956bb3ca086f006f846b3bc4008da"
2780 | integrity sha512-exHJeq6kBKj58mqGyTQ9DFvrZC/eR6OwxzoM9YRoGBqrXYonaFyGiFMuc9VZrXf7DarreEwMpurG3dd+CNyW5w==
2781 | dependencies:
2782 | define-properties "^1.1.2"
2783 | function-bind "^1.1.1"
2784 | has-symbols "^1.0.0"
2785 | object-keys "^1.0.11"
2786 |
2787 | object.entries@^1.1.0:
2788 | version "1.1.0"
2789 | resolved "https://registry.yarnpkg.com/object.entries/-/object.entries-1.1.0.tgz#2024fc6d6ba246aee38bdb0ffd5cfbcf371b7519"
2790 | integrity sha512-l+H6EQ8qzGRxbkHOd5I/aHRhHDKoQXQ8g0BYt4uSweQU1/J6dZUOyWh9a2Vky35YCKjzmgxOzta2hH6kf9HuXA==
2791 | dependencies:
2792 | define-properties "^1.1.3"
2793 | es-abstract "^1.12.0"
2794 | function-bind "^1.1.1"
2795 | has "^1.0.3"
2796 |
2797 | object.fromentries@^2.0.0:
2798 | version "2.0.0"
2799 | resolved "https://registry.yarnpkg.com/object.fromentries/-/object.fromentries-2.0.0.tgz#49a543d92151f8277b3ac9600f1e930b189d30ab"
2800 | integrity sha512-9iLiI6H083uiqUuvzyY6qrlmc/Gz8hLQFOcb/Ri/0xXFkSNS3ctV+CbE6yM2+AnkYfOB3dGjdzC0wrMLIhQICA==
2801 | dependencies:
2802 | define-properties "^1.1.2"
2803 | es-abstract "^1.11.0"
2804 | function-bind "^1.1.1"
2805 | has "^1.0.1"
2806 |
2807 | object.omit@^2.0.0:
2808 | version "2.0.1"
2809 | resolved "https://registry.yarnpkg.com/object.omit/-/object.omit-2.0.1.tgz#1a9c744829f39dbb858c76ca3579ae2a54ebd1fa"
2810 | integrity sha1-Gpx0SCnznbuFjHbKNXmuKlTr0fo=
2811 | dependencies:
2812 | for-own "^0.1.4"
2813 | is-extendable "^0.1.1"
2814 |
2815 | object.pick@^1.3.0:
2816 | version "1.3.0"
2817 | resolved "https://registry.yarnpkg.com/object.pick/-/object.pick-1.3.0.tgz#87a10ac4c1694bd2e1cbf53591a66141fb5dd747"
2818 | integrity sha1-h6EKxMFpS9Lhy/U1kaZhQftd10c=
2819 | dependencies:
2820 | isobject "^3.0.1"
2821 |
2822 | object.values@^1.1.0:
2823 | version "1.1.0"
2824 | resolved "https://registry.yarnpkg.com/object.values/-/object.values-1.1.0.tgz#bf6810ef5da3e5325790eaaa2be213ea84624da9"
2825 | integrity sha512-8mf0nKLAoFX6VlNVdhGj31SVYpaNFtUnuoOXWyFEstsWRgU837AK+JYM0iAxwkSzGRbwn8cbFmgbyxj1j4VbXg==
2826 | dependencies:
2827 | define-properties "^1.1.3"
2828 | es-abstract "^1.12.0"
2829 | function-bind "^1.1.1"
2830 | has "^1.0.3"
2831 |
2832 | once@^1.3.0:
2833 | version "1.4.0"
2834 | resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1"
2835 | integrity sha1-WDsap3WWHUsROsF9nFC6753Xa9E=
2836 | dependencies:
2837 | wrappy "1"
2838 |
2839 | onetime@^5.1.0:
2840 | version "5.1.0"
2841 | resolved "https://registry.yarnpkg.com/onetime/-/onetime-5.1.0.tgz#fff0f3c91617fe62bb50189636e99ac8a6df7be5"
2842 | integrity sha512-5NcSkPHhwTVFIQN+TUqXoS5+dlElHXdpAWu9I0HP20YOtIi+aZ0Ct82jdlILDxjLEAWwvm+qj1m6aEtsDVmm6Q==
2843 | dependencies:
2844 | mimic-fn "^2.1.0"
2845 |
2846 | optionator@^0.8.2:
2847 | version "0.8.2"
2848 | resolved "https://registry.yarnpkg.com/optionator/-/optionator-0.8.2.tgz#364c5e409d3f4d6301d6c0b4c05bba50180aeb64"
2849 | integrity sha1-NkxeQJ0/TWMB1sC0wFu6UBgK62Q=
2850 | dependencies:
2851 | deep-is "~0.1.3"
2852 | fast-levenshtein "~2.0.4"
2853 | levn "~0.3.0"
2854 | prelude-ls "~1.1.2"
2855 | type-check "~0.3.2"
2856 | wordwrap "~1.0.0"
2857 |
2858 | os-homedir@^1.0.0:
2859 | version "1.0.2"
2860 | resolved "https://registry.yarnpkg.com/os-homedir/-/os-homedir-1.0.2.tgz#ffbc4988336e0e833de0c168c7ef152121aa7fb3"
2861 | integrity sha1-/7xJiDNuDoM94MFox+8VISGqf7M=
2862 |
2863 | os-tmpdir@^1.0.0, os-tmpdir@^1.0.1, os-tmpdir@~1.0.2:
2864 | version "1.0.2"
2865 | resolved "https://registry.yarnpkg.com/os-tmpdir/-/os-tmpdir-1.0.2.tgz#bbe67406c79aa85c5cfec766fe5734555dfa1274"
2866 | integrity sha1-u+Z0BseaqFxc/sdm/lc0VV36EnQ=
2867 |
2868 | osenv@^0.1.4:
2869 | version "0.1.5"
2870 | resolved "https://registry.yarnpkg.com/osenv/-/osenv-0.1.5.tgz#85cdfafaeb28e8677f416e287592b5f3f49ea410"
2871 | integrity sha512-0CWcCECdMVc2Rw3U5w9ZjqX6ga6ubk1xDVKxtBQPK7wis/0F2r9T6k4ydGYhecl7YUBxBVxhL5oisPsNxAPe2g==
2872 | dependencies:
2873 | os-homedir "^1.0.0"
2874 | os-tmpdir "^1.0.0"
2875 |
2876 | output-file-sync@^1.1.2:
2877 | version "1.1.2"
2878 | resolved "https://registry.yarnpkg.com/output-file-sync/-/output-file-sync-1.1.2.tgz#d0a33eefe61a205facb90092e826598d5245ce76"
2879 | integrity sha1-0KM+7+YaIF+suQCS6CZZjVJFznY=
2880 | dependencies:
2881 | graceful-fs "^4.1.4"
2882 | mkdirp "^0.5.1"
2883 | object-assign "^4.1.0"
2884 |
2885 | p-limit@^1.1.0:
2886 | version "1.3.0"
2887 | resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-1.3.0.tgz#b86bd5f0c25690911c7590fcbfc2010d54b3ccb8"
2888 | integrity sha512-vvcXsLAJ9Dr5rQOPk7toZQZJApBl2K4J6dANSsEuh6QI41JYcsS/qhTGa9ErIUUgK3WNQoJYvylxvjqmiqEA9Q==
2889 | dependencies:
2890 | p-try "^1.0.0"
2891 |
2892 | p-locate@^2.0.0:
2893 | version "2.0.0"
2894 | resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-2.0.0.tgz#20a0103b222a70c8fd39cc2e580680f3dde5ec43"
2895 | integrity sha1-IKAQOyIqcMj9OcwuWAaA893l7EM=
2896 | dependencies:
2897 | p-limit "^1.1.0"
2898 |
2899 | p-try@^1.0.0:
2900 | version "1.0.0"
2901 | resolved "https://registry.yarnpkg.com/p-try/-/p-try-1.0.0.tgz#cbc79cdbaf8fd4228e13f621f2b1a237c1b207b3"
2902 | integrity sha1-y8ec26+P1CKOE/Yh8rGiN8GyB7M=
2903 |
2904 | parent-module@^1.0.0:
2905 | version "1.0.1"
2906 | resolved "https://registry.yarnpkg.com/parent-module/-/parent-module-1.0.1.tgz#691d2709e78c79fae3a156622452d00762caaaa2"
2907 | integrity sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==
2908 | dependencies:
2909 | callsites "^3.0.0"
2910 |
2911 | parse-entities@^1.0.2, parse-entities@^1.1.0:
2912 | version "1.2.2"
2913 | resolved "https://registry.yarnpkg.com/parse-entities/-/parse-entities-1.2.2.tgz#c31bf0f653b6661354f8973559cb86dd1d5edf50"
2914 | integrity sha512-NzfpbxW/NPrzZ/yYSoQxyqUZMZXIdCfE0OIN4ESsnptHJECoUk3FZktxNuzQf4tjt5UEopnxpYJbvYuxIFDdsg==
2915 | dependencies:
2916 | character-entities "^1.0.0"
2917 | character-entities-legacy "^1.0.0"
2918 | character-reference-invalid "^1.0.0"
2919 | is-alphanumerical "^1.0.0"
2920 | is-decimal "^1.0.0"
2921 | is-hexadecimal "^1.0.0"
2922 |
2923 | parse-glob@^3.0.4:
2924 | version "3.0.4"
2925 | resolved "https://registry.yarnpkg.com/parse-glob/-/parse-glob-3.0.4.tgz#b2c376cfb11f35513badd173ef0bb6e3a388391c"
2926 | integrity sha1-ssN2z7EfNVE7rdFz7wu246OIORw=
2927 | dependencies:
2928 | glob-base "^0.3.0"
2929 | is-dotfile "^1.0.0"
2930 | is-extglob "^1.0.0"
2931 | is-glob "^2.0.0"
2932 |
2933 | parse-json@^2.2.0:
2934 | version "2.2.0"
2935 | resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-2.2.0.tgz#f480f40434ef80741f8469099f8dea18f55a4dc9"
2936 | integrity sha1-9ID0BDTvgHQfhGkJn43qGPVaTck=
2937 | dependencies:
2938 | error-ex "^1.2.0"
2939 |
2940 | pascalcase@^0.1.1:
2941 | version "0.1.1"
2942 | resolved "https://registry.yarnpkg.com/pascalcase/-/pascalcase-0.1.1.tgz#b363e55e8006ca6fe21784d2db22bd15d7917f14"
2943 | integrity sha1-s2PlXoAGym/iF4TS2yK9FdeRfxQ=
2944 |
2945 | path-exists@^3.0.0:
2946 | version "3.0.0"
2947 | resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-3.0.0.tgz#ce0ebeaa5f78cb18925ea7d810d7b59b010fd515"
2948 | integrity sha1-zg6+ql94yxiSXqfYENe1mwEP1RU=
2949 |
2950 | path-is-absolute@^1.0.0, path-is-absolute@^1.0.1:
2951 | version "1.0.1"
2952 | resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f"
2953 | integrity sha1-F0uSaHNVNP+8es5r9TpanhtcX18=
2954 |
2955 | path-key@^2.0.1:
2956 | version "2.0.1"
2957 | resolved "https://registry.yarnpkg.com/path-key/-/path-key-2.0.1.tgz#411cadb574c5a140d3a4b1910d40d80cc9f40b40"
2958 | integrity sha1-QRyttXTFoUDTpLGRDUDYDMn0C0A=
2959 |
2960 | path-parse@^1.0.6:
2961 | version "1.0.6"
2962 | resolved "https://registry.yarnpkg.com/path-parse/-/path-parse-1.0.6.tgz#d62dbb5679405d72c4737ec58600e9ddcf06d24c"
2963 | integrity sha512-GSmOT2EbHrINBf9SR7CDELwlJ8AENk3Qn7OikK4nFYAu3Ote2+JYNVvkpAEQm3/TLNEJFD/xZJjzyxg3KBWOzw==
2964 |
2965 | path-type@^2.0.0:
2966 | version "2.0.0"
2967 | resolved "https://registry.yarnpkg.com/path-type/-/path-type-2.0.0.tgz#f012ccb8415b7096fc2daa1054c3d72389594c73"
2968 | integrity sha1-8BLMuEFbcJb8LaoQVMPXI4lZTHM=
2969 | dependencies:
2970 | pify "^2.0.0"
2971 |
2972 | pify@^2.0.0:
2973 | version "2.3.0"
2974 | resolved "https://registry.yarnpkg.com/pify/-/pify-2.3.0.tgz#ed141a6ac043a849ea588498e7dca8b15330e90c"
2975 | integrity sha1-7RQaasBDqEnqWISY59yosVMw6Qw=
2976 |
2977 | pkg-dir@^2.0.0:
2978 | version "2.0.0"
2979 | resolved "https://registry.yarnpkg.com/pkg-dir/-/pkg-dir-2.0.0.tgz#f6d5d1109e19d63edf428e0bd57e12777615334b"
2980 | integrity sha1-9tXREJ4Z1j7fQo4L1X4Sd3YVM0s=
2981 | dependencies:
2982 | find-up "^2.1.0"
2983 |
2984 | posix-character-classes@^0.1.0:
2985 | version "0.1.1"
2986 | resolved "https://registry.yarnpkg.com/posix-character-classes/-/posix-character-classes-0.1.1.tgz#01eac0fe3b5af71a2a6c02feabb8c1fef7e00eab"
2987 | integrity sha1-AerA/jta9xoqbAL+q7jB/vfgDqs=
2988 |
2989 | prelude-ls@~1.1.2:
2990 | version "1.1.2"
2991 | resolved "https://registry.yarnpkg.com/prelude-ls/-/prelude-ls-1.1.2.tgz#21932a549f5e52ffd9a827f570e04be62a97da54"
2992 | integrity sha1-IZMqVJ9eUv/ZqCf1cOBL5iqX2lQ=
2993 |
2994 | preserve@^0.2.0:
2995 | version "0.2.0"
2996 | resolved "https://registry.yarnpkg.com/preserve/-/preserve-0.2.0.tgz#815ed1f6ebc65926f865b310c0713bcb3315ce4b"
2997 | integrity sha1-gV7R9uvGWSb4ZbMQwHE7yzMVzks=
2998 |
2999 | prettier-linter-helpers@^1.0.0:
3000 | version "1.0.0"
3001 | resolved "https://registry.yarnpkg.com/prettier-linter-helpers/-/prettier-linter-helpers-1.0.0.tgz#d23d41fe1375646de2d0104d3454a3008802cf7b"
3002 | integrity sha512-GbK2cP9nraSSUF9N2XwUwqfzlAFlMNYYl+ShE/V+H8a9uNl/oUqB1w2EL54Jh0OlyRSd8RfWYJ3coVS4TROP2w==
3003 | dependencies:
3004 | fast-diff "^1.1.2"
3005 |
3006 | prettier@^1.18.2:
3007 | version "1.18.2"
3008 | resolved "https://registry.yarnpkg.com/prettier/-/prettier-1.18.2.tgz#6823e7c5900017b4bd3acf46fe9ac4b4d7bda9ea"
3009 | integrity sha512-OeHeMc0JhFE9idD4ZdtNibzY0+TPHSpSSb9h8FqtP+YnoZZ1sl8Vc9b1sasjfymH3SonAF4QcA2+mzHPhMvIiw==
3010 |
3011 | private@^0.1.6, private@^0.1.8:
3012 | version "0.1.8"
3013 | resolved "https://registry.yarnpkg.com/private/-/private-0.1.8.tgz#2381edb3689f7a53d653190060fcf822d2f368ff"
3014 | integrity sha512-VvivMrbvd2nKkiG38qjULzlc+4Vx4wm/whI9pQD35YrARNnhxeiRktSOhSukRLFNlzg6Br/cJPet5J/u19r/mg==
3015 |
3016 | process-nextick-args@~2.0.0:
3017 | version "2.0.1"
3018 | resolved "https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-2.0.1.tgz#7820d9b16120cc55ca9ae7792680ae7dba6d7fe2"
3019 | integrity sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==
3020 |
3021 | progress@^2.0.0:
3022 | version "2.0.3"
3023 | resolved "https://registry.yarnpkg.com/progress/-/progress-2.0.3.tgz#7e8cf8d8f5b8f239c1bc68beb4eb78567d572ef8"
3024 | integrity sha512-7PiHtLll5LdnKIMw100I+8xJXR5gW2QwWYkT6iJva0bXitZKa/XMrSbdmg3r2Xnaidz9Qumd0VPaMrZlF9V9sA==
3025 |
3026 | prop-types@^15.7.2:
3027 | version "15.7.2"
3028 | resolved "https://registry.yarnpkg.com/prop-types/-/prop-types-15.7.2.tgz#52c41e75b8c87e72b9d9360e0206b99dcbffa6c5"
3029 | integrity sha512-8QQikdH7//R2vurIJSutZ1smHYTcLpRWEOlHnzcWHmBYrOGUysKwSsrC89BCiFj3CbrfJ/nXFdJepOVrY1GCHQ==
3030 | dependencies:
3031 | loose-envify "^1.4.0"
3032 | object-assign "^4.1.1"
3033 | react-is "^16.8.1"
3034 |
3035 | punycode@^2.1.0:
3036 | version "2.1.1"
3037 | resolved "https://registry.yarnpkg.com/punycode/-/punycode-2.1.1.tgz#b58b010ac40c22c5657616c8d2c2c02c7bf479ec"
3038 | integrity sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A==
3039 |
3040 | randomatic@^3.0.0:
3041 | version "3.1.1"
3042 | resolved "https://registry.yarnpkg.com/randomatic/-/randomatic-3.1.1.tgz#b776efc59375984e36c537b2f51a1f0aff0da1ed"
3043 | integrity sha512-TuDE5KxZ0J461RVjrJZCJc+J+zCkTb1MbH9AQUq68sMhOMcy9jLcb3BrZKgp9q9Ncltdg4QVqWrH02W2EFFVYw==
3044 | dependencies:
3045 | is-number "^4.0.0"
3046 | kind-of "^6.0.0"
3047 | math-random "^1.0.1"
3048 |
3049 | rc@^1.2.7:
3050 | version "1.2.8"
3051 | resolved "https://registry.yarnpkg.com/rc/-/rc-1.2.8.tgz#cd924bf5200a075b83c188cd6b9e211b7fc0d3ed"
3052 | integrity sha512-y3bGgqKj3QBdxLbLkomlohkvsA8gdAiUQlSBJnBhfn+BPxg4bc62d8TcBW15wavDfgexCgccckhcZvywyQYPOw==
3053 | dependencies:
3054 | deep-extend "^0.6.0"
3055 | ini "~1.3.0"
3056 | minimist "^1.2.0"
3057 | strip-json-comments "~2.0.1"
3058 |
3059 | react-is@^16.8.1:
3060 | version "16.9.0"
3061 | resolved "https://registry.yarnpkg.com/react-is/-/react-is-16.9.0.tgz#21ca9561399aad0ff1a7701c01683e8ca981edcb"
3062 | integrity sha512-tJBzzzIgnnRfEm046qRcURvwQnZVXmuCbscxUO5RWrGTXpon2d4c8mI0D8WE6ydVIm29JiLB6+RslkIvym9Rjw==
3063 |
3064 | read-pkg-up@^2.0.0:
3065 | version "2.0.0"
3066 | resolved "https://registry.yarnpkg.com/read-pkg-up/-/read-pkg-up-2.0.0.tgz#6b72a8048984e0c41e79510fd5e9fa99b3b549be"
3067 | integrity sha1-a3KoBImE4MQeeVEP1en6mbO1Sb4=
3068 | dependencies:
3069 | find-up "^2.0.0"
3070 | read-pkg "^2.0.0"
3071 |
3072 | read-pkg@^2.0.0:
3073 | version "2.0.0"
3074 | resolved "https://registry.yarnpkg.com/read-pkg/-/read-pkg-2.0.0.tgz#8ef1c0623c6a6db0dc6713c4bfac46332b2368f8"
3075 | integrity sha1-jvHAYjxqbbDcZxPEv6xGMysjaPg=
3076 | dependencies:
3077 | load-json-file "^2.0.0"
3078 | normalize-package-data "^2.3.2"
3079 | path-type "^2.0.0"
3080 |
3081 | readable-stream@^2.0.2, readable-stream@^2.0.6:
3082 | version "2.3.6"
3083 | resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.3.6.tgz#b11c27d88b8ff1fbe070643cf94b0c79ae1b0aaf"
3084 | integrity sha512-tQtKA9WIAhBF3+VLAseyMqZeBjW0AHJoxOtYqSUZNJxauErmLbVm2FW1y+J/YA9dUrAC39ITejlZWhVIwawkKw==
3085 | dependencies:
3086 | core-util-is "~1.0.0"
3087 | inherits "~2.0.3"
3088 | isarray "~1.0.0"
3089 | process-nextick-args "~2.0.0"
3090 | safe-buffer "~5.1.1"
3091 | string_decoder "~1.1.1"
3092 | util-deprecate "~1.0.1"
3093 |
3094 | readdirp@^2.0.0:
3095 | version "2.2.1"
3096 | resolved "https://registry.yarnpkg.com/readdirp/-/readdirp-2.2.1.tgz#0e87622a3325aa33e892285caf8b4e846529a525"
3097 | integrity sha512-1JU/8q+VgFZyxwrJ+SVIOsh+KywWGpds3NTqikiKpDMZWScmAYyKIgqkO+ARvNWJfXeXR1zxz7aHF4u4CyH6vQ==
3098 | dependencies:
3099 | graceful-fs "^4.1.11"
3100 | micromatch "^3.1.10"
3101 | readable-stream "^2.0.2"
3102 |
3103 | regenerate@^1.2.1:
3104 | version "1.4.0"
3105 | resolved "https://registry.yarnpkg.com/regenerate/-/regenerate-1.4.0.tgz#4a856ec4b56e4077c557589cae85e7a4c8869a11"
3106 | integrity sha512-1G6jJVDWrt0rK99kBjvEtziZNCICAuvIPkSiUFIQxVP06RCVpq3dmDo2oi6ABpYaDYaTRr67BEhL8r1wgEZZKg==
3107 |
3108 | regenerator-runtime@^0.10.5:
3109 | version "0.10.5"
3110 | resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.10.5.tgz#336c3efc1220adcedda2c9fab67b5a7955a33658"
3111 | integrity sha1-M2w+/BIgrc7dosn6tntaeVWjNlg=
3112 |
3113 | regenerator-runtime@^0.11.0:
3114 | version "0.11.1"
3115 | resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.11.1.tgz#be05ad7f9bf7d22e056f9726cee5017fbf19e2e9"
3116 | integrity sha512-MguG95oij0fC3QV3URf4V2SDYGJhJnJGqvIIgdECeODCT98wSWDAJ94SSuVpYQUoTcGUIL6L4yNB7j1DFFHSBg==
3117 |
3118 | regenerator-runtime@^0.13.2:
3119 | version "0.13.3"
3120 | resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.13.3.tgz#7cf6a77d8f5c6f60eb73c5fc1955b2ceb01e6bf5"
3121 | integrity sha512-naKIZz2GQ8JWh///G7L3X6LaQUAMp2lvb1rvwwsURe/VXwD6VMfr+/1NuNw3ag8v2kY1aQ/go5SNn79O9JU7yw==
3122 |
3123 | regenerator-transform@^0.10.0:
3124 | version "0.10.1"
3125 | resolved "https://registry.yarnpkg.com/regenerator-transform/-/regenerator-transform-0.10.1.tgz#1e4996837231da8b7f3cf4114d71b5691a0680dd"
3126 | integrity sha512-PJepbvDbuK1xgIgnau7Y90cwaAmO/LCLMI2mPvaXq2heGMR3aWW5/BQvYrhJ8jgmQjXewXvBjzfqKcVOmhjZ6Q==
3127 | dependencies:
3128 | babel-runtime "^6.18.0"
3129 | babel-types "^6.19.0"
3130 | private "^0.1.6"
3131 |
3132 | regex-cache@^0.4.2:
3133 | version "0.4.4"
3134 | resolved "https://registry.yarnpkg.com/regex-cache/-/regex-cache-0.4.4.tgz#75bdc58a2a1496cec48a12835bc54c8d562336dd"
3135 | integrity sha512-nVIZwtCjkC9YgvWkpM55B5rBhBYRZhAaJbgcFYXXsHnbZ9UZI9nnVWYZpBlCqv9ho2eZryPnWrZGsOdPwVWXWQ==
3136 | dependencies:
3137 | is-equal-shallow "^0.1.3"
3138 |
3139 | regex-not@^1.0.0, regex-not@^1.0.2:
3140 | version "1.0.2"
3141 | resolved "https://registry.yarnpkg.com/regex-not/-/regex-not-1.0.2.tgz#1f4ece27e00b0b65e0247a6810e6a85d83a5752c"
3142 | integrity sha512-J6SDjUgDxQj5NusnOtdFxDwN/+HWykR8GELwctJ7mdqhcyy1xEc4SRFHUXvxTp661YaVKAjfRLZ9cCqS6tn32A==
3143 | dependencies:
3144 | extend-shallow "^3.0.2"
3145 | safe-regex "^1.1.0"
3146 |
3147 | regexpp@^2.0.1:
3148 | version "2.0.1"
3149 | resolved "https://registry.yarnpkg.com/regexpp/-/regexpp-2.0.1.tgz#8d19d31cf632482b589049f8281f93dbcba4d07f"
3150 | integrity sha512-lv0M6+TkDVniA3aD1Eg0DVpfU/booSu7Eev3TDO/mZKHBfVjgCGTV4t4buppESEYDtkArYFOxTJWv6S5C+iaNw==
3151 |
3152 | regexpu-core@^2.0.0:
3153 | version "2.0.0"
3154 | resolved "https://registry.yarnpkg.com/regexpu-core/-/regexpu-core-2.0.0.tgz#49d038837b8dcf8bfa5b9a42139938e6ea2ae240"
3155 | integrity sha1-SdA4g3uNz4v6W5pCE5k45uoq4kA=
3156 | dependencies:
3157 | regenerate "^1.2.1"
3158 | regjsgen "^0.2.0"
3159 | regjsparser "^0.1.4"
3160 |
3161 | regjsgen@^0.2.0:
3162 | version "0.2.0"
3163 | resolved "https://registry.yarnpkg.com/regjsgen/-/regjsgen-0.2.0.tgz#6c016adeac554f75823fe37ac05b92d5a4edb1f7"
3164 | integrity sha1-bAFq3qxVT3WCP+N6wFuS1aTtsfc=
3165 |
3166 | regjsparser@^0.1.4:
3167 | version "0.1.5"
3168 | resolved "https://registry.yarnpkg.com/regjsparser/-/regjsparser-0.1.5.tgz#7ee8f84dc6fa792d3fd0ae228d24bd949ead205c"
3169 | integrity sha1-fuj4Tcb6eS0/0K4ijSS9lJ6tIFw=
3170 | dependencies:
3171 | jsesc "~0.5.0"
3172 |
3173 | remark-parse@^7.0.0:
3174 | version "7.0.1"
3175 | resolved "https://registry.yarnpkg.com/remark-parse/-/remark-parse-7.0.1.tgz#0c13d67e0d7b82c2ad2d8b6604ec5fae6c333c2b"
3176 | integrity sha512-WOZLa545jYXtSy+txza6ACudKWByQac4S2DmGk+tAGO/3XnVTOxwyCIxB7nTcLlk8Aayhcuf3cV1WV6U6L7/DQ==
3177 | dependencies:
3178 | collapse-white-space "^1.0.2"
3179 | is-alphabetical "^1.0.0"
3180 | is-decimal "^1.0.0"
3181 | is-whitespace-character "^1.0.0"
3182 | is-word-character "^1.0.0"
3183 | markdown-escapes "^1.0.0"
3184 | parse-entities "^1.1.0"
3185 | repeat-string "^1.5.4"
3186 | state-toggle "^1.0.0"
3187 | trim "0.0.1"
3188 | trim-trailing-lines "^1.0.0"
3189 | unherit "^1.0.4"
3190 | unist-util-remove-position "^1.0.0"
3191 | vfile-location "^2.0.0"
3192 | xtend "^4.0.1"
3193 |
3194 | remark-stringify@^7.0.0:
3195 | version "7.0.2"
3196 | resolved "https://registry.yarnpkg.com/remark-stringify/-/remark-stringify-7.0.2.tgz#1b87716e3bf278ef5dd6c230e47c633d89b81d76"
3197 | integrity sha512-+Fr2xUe+P9b4XwRBjtIQF6DuHtQEQAVsBv8Uv+Gz3d3gkFxwEIzKFjzHo13KgWkASn/MQIY1C9vmOTm0kwlGXw==
3198 | dependencies:
3199 | ccount "^1.0.0"
3200 | is-alphanumeric "^1.0.0"
3201 | is-decimal "^1.0.0"
3202 | is-whitespace-character "^1.0.0"
3203 | longest-streak "^2.0.1"
3204 | markdown-escapes "^1.0.0"
3205 | markdown-table "^1.1.0"
3206 | mdast-util-compact "^1.0.0"
3207 | parse-entities "^1.0.2"
3208 | repeat-string "^1.5.4"
3209 | state-toggle "^1.0.0"
3210 | stringify-entities "^2.0.0"
3211 | unherit "^1.0.4"
3212 | xtend "^4.0.1"
3213 |
3214 | remark@^11.0.1:
3215 | version "11.0.1"
3216 | resolved "https://registry.yarnpkg.com/remark/-/remark-11.0.1.tgz#3c16e1ed84c78a661299991bb8d5fa7ee5d18e3c"
3217 | integrity sha512-Fl2AvN+yU6sOBAjUz3xNC5iEvLkXV8PZicLOOLifjU8uKGusNvhHfGRCfETsqyvRHZ24JXqEyDY4hRLhoUd30A==
3218 | dependencies:
3219 | remark-parse "^7.0.0"
3220 | remark-stringify "^7.0.0"
3221 | unified "^8.2.0"
3222 |
3223 | remove-trailing-separator@^1.0.1:
3224 | version "1.1.0"
3225 | resolved "https://registry.yarnpkg.com/remove-trailing-separator/-/remove-trailing-separator-1.1.0.tgz#c24bce2a283adad5bc3f58e0d48249b92379d8ef"
3226 | integrity sha1-wkvOKig62tW8P1jg1IJJuSN52O8=
3227 |
3228 | repeat-element@^1.1.2:
3229 | version "1.1.3"
3230 | resolved "https://registry.yarnpkg.com/repeat-element/-/repeat-element-1.1.3.tgz#782e0d825c0c5a3bb39731f84efee6b742e6b1ce"
3231 | integrity sha512-ahGq0ZnV5m5XtZLMb+vP76kcAM5nkLqk0lpqAuojSKGgQtn4eRi4ZZGm2olo2zKFH+sMsWaqOCW1dqAnOru72g==
3232 |
3233 | repeat-string@^1.5.2, repeat-string@^1.5.4, repeat-string@^1.6.1:
3234 | version "1.6.1"
3235 | resolved "https://registry.yarnpkg.com/repeat-string/-/repeat-string-1.6.1.tgz#8dcae470e1c88abc2d600fff4a776286da75e637"
3236 | integrity sha1-jcrkcOHIirwtYA//Sndihtp15jc=
3237 |
3238 | repeating@^2.0.0:
3239 | version "2.0.1"
3240 | resolved "https://registry.yarnpkg.com/repeating/-/repeating-2.0.1.tgz#5214c53a926d3552707527fbab415dbc08d06dda"
3241 | integrity sha1-UhTFOpJtNVJwdSf7q0FdvAjQbdo=
3242 | dependencies:
3243 | is-finite "^1.0.0"
3244 |
3245 | replace-ext@1.0.0:
3246 | version "1.0.0"
3247 | resolved "https://registry.yarnpkg.com/replace-ext/-/replace-ext-1.0.0.tgz#de63128373fcbf7c3ccfa4de5a480c45a67958eb"
3248 | integrity sha1-3mMSg3P8v3w8z6TeWkgMRaZ5WOs=
3249 |
3250 | resolve-from@^4.0.0:
3251 | version "4.0.0"
3252 | resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-4.0.0.tgz#4abcd852ad32dd7baabfe9b40e00a36db5f392e6"
3253 | integrity sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==
3254 |
3255 | resolve-url@^0.2.1:
3256 | version "0.2.1"
3257 | resolved "https://registry.yarnpkg.com/resolve-url/-/resolve-url-0.2.1.tgz#2c637fe77c893afd2a663fe21aa9080068e2052a"
3258 | integrity sha1-LGN/53yJOv0qZj/iGqkIAGjiBSo=
3259 |
3260 | resolve@^1.10.0, resolve@^1.10.1, resolve@^1.11.0, resolve@^1.5.0:
3261 | version "1.12.0"
3262 | resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.12.0.tgz#3fc644a35c84a48554609ff26ec52b66fa577df6"
3263 | integrity sha512-B/dOmuoAik5bKcD6s6nXDCjzUKnaDvdkRyAk6rsmsKLipWj4797iothd7jmmUhWTfinVMU+wc56rYKsit2Qy4w==
3264 | dependencies:
3265 | path-parse "^1.0.6"
3266 |
3267 | restore-cursor@^3.1.0:
3268 | version "3.1.0"
3269 | resolved "https://registry.yarnpkg.com/restore-cursor/-/restore-cursor-3.1.0.tgz#39f67c54b3a7a58cea5236d95cf0034239631f7e"
3270 | integrity sha512-l+sSefzHpj5qimhFSE5a8nufZYAM3sBSVMAPtYkmC+4EH2anSGaEMXSD0izRQbu9nfyQ9y5JrVmp7E8oZrUjvA==
3271 | dependencies:
3272 | onetime "^5.1.0"
3273 | signal-exit "^3.0.2"
3274 |
3275 | ret@~0.1.10:
3276 | version "0.1.15"
3277 | resolved "https://registry.yarnpkg.com/ret/-/ret-0.1.15.tgz#b8a4825d5bdb1fc3f6f53c2bc33f81388681c7bc"
3278 | integrity sha512-TTlYpa+OL+vMMNG24xSlQGEJ3B/RzEfUlLct7b5G/ytav+wPrplCpVMFuwzXbkecJrb6IYo1iFb0S9v37754mg==
3279 |
3280 | rimraf@2.6.3:
3281 | version "2.6.3"
3282 | resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.6.3.tgz#b2d104fe0d8fb27cf9e0a1cda8262dd3833c6cab"
3283 | integrity sha512-mwqeW5XsA2qAejG46gYdENaxXjx9onRNCfn7L0duuP4hCuTIi/QO7PDK07KJfp1d+izWPrzEJDcSqBa0OZQriA==
3284 | dependencies:
3285 | glob "^7.1.3"
3286 |
3287 | rimraf@^2.6.1:
3288 | version "2.7.1"
3289 | resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.7.1.tgz#35797f13a7fdadc566142c29d4f07ccad483e3ec"
3290 | integrity sha512-uWjbaKIK3T1OSVptzX7Nl6PvQ3qAGtKEtVRjRuazjfL3Bx5eI409VZSqgND+4UNnmzLVdPj9FqFJNPqBZFve4w==
3291 | dependencies:
3292 | glob "^7.1.3"
3293 |
3294 | run-async@^2.2.0:
3295 | version "2.3.0"
3296 | resolved "https://registry.yarnpkg.com/run-async/-/run-async-2.3.0.tgz#0371ab4ae0bdd720d4166d7dfda64ff7a445a6c0"
3297 | integrity sha1-A3GrSuC91yDUFm19/aZP96RFpsA=
3298 | dependencies:
3299 | is-promise "^2.1.0"
3300 |
3301 | rxjs@^6.4.0:
3302 | version "6.5.2"
3303 | resolved "https://registry.yarnpkg.com/rxjs/-/rxjs-6.5.2.tgz#2e35ce815cd46d84d02a209fb4e5921e051dbec7"
3304 | integrity sha512-HUb7j3kvb7p7eCUHE3FqjoDsC1xfZQ4AHFWfTKSpZ+sAhhz5X1WX0ZuUqWbzB2QhSLp3DoLUG+hMdEDKqWo2Zg==
3305 | dependencies:
3306 | tslib "^1.9.0"
3307 |
3308 | safe-buffer@^5.1.2:
3309 | version "5.2.0"
3310 | resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.2.0.tgz#b74daec49b1148f88c64b68d49b1e815c1f2f519"
3311 | integrity sha512-fZEwUGbVl7kouZs1jCdMLdt95hdIv0ZeHg6L7qPeciMZhZ+/gdesW4wgTARkrFWEpspjEATAzUGPG8N2jJiwbg==
3312 |
3313 | safe-buffer@~5.1.0, safe-buffer@~5.1.1:
3314 | version "5.1.2"
3315 | resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.1.2.tgz#991ec69d296e0313747d59bdfd2b745c35f8828d"
3316 | integrity sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==
3317 |
3318 | safe-regex@^1.1.0:
3319 | version "1.1.0"
3320 | resolved "https://registry.yarnpkg.com/safe-regex/-/safe-regex-1.1.0.tgz#40a3669f3b077d1e943d44629e157dd48023bf2e"
3321 | integrity sha1-QKNmnzsHfR6UPURinhV91IAjvy4=
3322 | dependencies:
3323 | ret "~0.1.10"
3324 |
3325 | "safer-buffer@>= 2.1.2 < 3":
3326 | version "2.1.2"
3327 | resolved "https://registry.yarnpkg.com/safer-buffer/-/safer-buffer-2.1.2.tgz#44fa161b0187b9549dd84bb91802f9bd8385cd6a"
3328 | integrity sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==
3329 |
3330 | sax@^1.2.4:
3331 | version "1.2.4"
3332 | resolved "https://registry.yarnpkg.com/sax/-/sax-1.2.4.tgz#2816234e2378bddc4e5354fab5caa895df7100d9"
3333 | integrity sha512-NqVDv9TpANUjFm0N8uM5GxL36UgKi9/atZw+x7YFnQ8ckwFGKrl4xX4yWtrey3UJm5nP1kUbnYgLopqWNSRhWw==
3334 |
3335 | select@^1.1.2:
3336 | version "1.1.2"
3337 | resolved "https://registry.yarnpkg.com/select/-/select-1.1.2.tgz#0e7350acdec80b1108528786ec1d4418d11b396d"
3338 | integrity sha1-DnNQrN7ICxEIUoeG7B1EGNEbOW0=
3339 |
3340 | "semver@2 || 3 || 4 || 5", semver@^5.3.0, semver@^5.5.0:
3341 | version "5.7.1"
3342 | resolved "https://registry.yarnpkg.com/semver/-/semver-5.7.1.tgz#a954f931aeba508d307bbf069eff0c01c96116f7"
3343 | integrity sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==
3344 |
3345 | semver@^6.1.2:
3346 | version "6.3.0"
3347 | resolved "https://registry.yarnpkg.com/semver/-/semver-6.3.0.tgz#ee0a64c8af5e8ceea67687b133761e1becbd1d3d"
3348 | integrity sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==
3349 |
3350 | set-blocking@~2.0.0:
3351 | version "2.0.0"
3352 | resolved "https://registry.yarnpkg.com/set-blocking/-/set-blocking-2.0.0.tgz#045f9782d011ae9a6803ddd382b24392b3d890f7"
3353 | integrity sha1-BF+XgtARrppoA93TgrJDkrPYkPc=
3354 |
3355 | set-value@^2.0.0, set-value@^2.0.1:
3356 | version "2.0.1"
3357 | resolved "https://registry.yarnpkg.com/set-value/-/set-value-2.0.1.tgz#a18d40530e6f07de4228c7defe4227af8cad005b"
3358 | integrity sha512-JxHc1weCN68wRY0fhCoXpyK55m/XPHafOmK4UWD7m2CI14GMcFypt4w/0+NV5f/ZMby2F6S2wwA7fgynh9gWSw==
3359 | dependencies:
3360 | extend-shallow "^2.0.1"
3361 | is-extendable "^0.1.1"
3362 | is-plain-object "^2.0.3"
3363 | split-string "^3.0.1"
3364 |
3365 | shebang-command@^1.2.0:
3366 | version "1.2.0"
3367 | resolved "https://registry.yarnpkg.com/shebang-command/-/shebang-command-1.2.0.tgz#44aac65b695b03398968c39f363fee5deafdf1ea"
3368 | integrity sha1-RKrGW2lbAzmJaMOfNj/uXer98eo=
3369 | dependencies:
3370 | shebang-regex "^1.0.0"
3371 |
3372 | shebang-regex@^1.0.0:
3373 | version "1.0.0"
3374 | resolved "https://registry.yarnpkg.com/shebang-regex/-/shebang-regex-1.0.0.tgz#da42f49740c0b42db2ca9728571cb190c98efea3"
3375 | integrity sha1-2kL0l0DAtC2yypcoVxyxkMmO/qM=
3376 |
3377 | signal-exit@^3.0.0, signal-exit@^3.0.2:
3378 | version "3.0.2"
3379 | resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.2.tgz#b5fdc08f1287ea1178628e415e25132b73646c6d"
3380 | integrity sha1-tf3AjxKH6hF4Yo5BXiUTK3NkbG0=
3381 |
3382 | slash@^1.0.0:
3383 | version "1.0.0"
3384 | resolved "https://registry.yarnpkg.com/slash/-/slash-1.0.0.tgz#c41f2f6c39fc16d1cd17ad4b5d896114ae470d55"
3385 | integrity sha1-xB8vbDn8FtHNF61LXYlhFK5HDVU=
3386 |
3387 | slice-ansi@^2.1.0:
3388 | version "2.1.0"
3389 | resolved "https://registry.yarnpkg.com/slice-ansi/-/slice-ansi-2.1.0.tgz#cacd7693461a637a5788d92a7dd4fba068e81636"
3390 | integrity sha512-Qu+VC3EwYLldKa1fCxuuvULvSJOKEgk9pi8dZeCVK7TqBfUNTH4sFkk4joj8afVSfAYgJoSOetjx9QWOJ5mYoQ==
3391 | dependencies:
3392 | ansi-styles "^3.2.0"
3393 | astral-regex "^1.0.0"
3394 | is-fullwidth-code-point "^2.0.0"
3395 |
3396 | snapdragon-node@^2.0.1:
3397 | version "2.1.1"
3398 | resolved "https://registry.yarnpkg.com/snapdragon-node/-/snapdragon-node-2.1.1.tgz#6c175f86ff14bdb0724563e8f3c1b021a286853b"
3399 | integrity sha512-O27l4xaMYt/RSQ5TR3vpWCAB5Kb/czIcqUFOM/C4fYcLnbZUc1PkjTAMjof2pBWaSTwOUd6qUHcFGVGj7aIwnw==
3400 | dependencies:
3401 | define-property "^1.0.0"
3402 | isobject "^3.0.0"
3403 | snapdragon-util "^3.0.1"
3404 |
3405 | snapdragon-util@^3.0.1:
3406 | version "3.0.1"
3407 | resolved "https://registry.yarnpkg.com/snapdragon-util/-/snapdragon-util-3.0.1.tgz#f956479486f2acd79700693f6f7b805e45ab56e2"
3408 | integrity sha512-mbKkMdQKsjX4BAL4bRYTj21edOf8cN7XHdYUJEe+Zn99hVEYcMvKPct1IqNe7+AZPirn8BCDOQBHQZknqmKlZQ==
3409 | dependencies:
3410 | kind-of "^3.2.0"
3411 |
3412 | snapdragon@^0.8.1:
3413 | version "0.8.2"
3414 | resolved "https://registry.yarnpkg.com/snapdragon/-/snapdragon-0.8.2.tgz#64922e7c565b0e14204ba1aa7d6964278d25182d"
3415 | integrity sha512-FtyOnWN/wCHTVXOMwvSv26d+ko5vWlIDD6zoUJ7LW8vh+ZBC8QdljveRP+crNrtBwioEUWy/4dMtbBjA4ioNlg==
3416 | dependencies:
3417 | base "^0.11.1"
3418 | debug "^2.2.0"
3419 | define-property "^0.2.5"
3420 | extend-shallow "^2.0.1"
3421 | map-cache "^0.2.2"
3422 | source-map "^0.5.6"
3423 | source-map-resolve "^0.5.0"
3424 | use "^3.1.0"
3425 |
3426 | source-map-resolve@^0.5.0:
3427 | version "0.5.2"
3428 | resolved "https://registry.yarnpkg.com/source-map-resolve/-/source-map-resolve-0.5.2.tgz#72e2cc34095543e43b2c62b2c4c10d4a9054f259"
3429 | integrity sha512-MjqsvNwyz1s0k81Goz/9vRBe9SZdB09Bdw+/zYyO+3CuPk6fouTaxscHkgtE8jKvf01kVfl8riHzERQ/kefaSA==
3430 | dependencies:
3431 | atob "^2.1.1"
3432 | decode-uri-component "^0.2.0"
3433 | resolve-url "^0.2.1"
3434 | source-map-url "^0.4.0"
3435 | urix "^0.1.0"
3436 |
3437 | source-map-support@^0.4.15:
3438 | version "0.4.18"
3439 | resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.4.18.tgz#0286a6de8be42641338594e97ccea75f0a2c585f"
3440 | integrity sha512-try0/JqxPLF9nOjvSta7tVondkP5dwgyLDjVoyMDlmjugT2lRZ1OfsrYTkCd2hkDnJTKRbO/Rl3orm8vlsUzbA==
3441 | dependencies:
3442 | source-map "^0.5.6"
3443 |
3444 | source-map-url@^0.4.0:
3445 | version "0.4.0"
3446 | resolved "https://registry.yarnpkg.com/source-map-url/-/source-map-url-0.4.0.tgz#3e935d7ddd73631b97659956d55128e87b5084a3"
3447 | integrity sha1-PpNdfd1zYxuXZZlW1VEo6HtQhKM=
3448 |
3449 | source-map@^0.5.0, source-map@^0.5.6, source-map@^0.5.7:
3450 | version "0.5.7"
3451 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.5.7.tgz#8a039d2d1021d22d1ea14c80d8ea468ba2ef3fcc"
3452 | integrity sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w=
3453 |
3454 | spdx-correct@^3.0.0:
3455 | version "3.1.0"
3456 | resolved "https://registry.yarnpkg.com/spdx-correct/-/spdx-correct-3.1.0.tgz#fb83e504445268f154b074e218c87c003cd31df4"
3457 | integrity sha512-lr2EZCctC2BNR7j7WzJ2FpDznxky1sjfxvvYEyzxNyb6lZXHODmEoJeFu4JupYlkfha1KZpJyoqiJ7pgA1qq8Q==
3458 | dependencies:
3459 | spdx-expression-parse "^3.0.0"
3460 | spdx-license-ids "^3.0.0"
3461 |
3462 | spdx-exceptions@^2.1.0:
3463 | version "2.2.0"
3464 | resolved "https://registry.yarnpkg.com/spdx-exceptions/-/spdx-exceptions-2.2.0.tgz#2ea450aee74f2a89bfb94519c07fcd6f41322977"
3465 | integrity sha512-2XQACfElKi9SlVb1CYadKDXvoajPgBVPn/gOQLrTvHdElaVhr7ZEbqJaRnJLVNeaI4cMEAgVCeBMKF6MWRDCRA==
3466 |
3467 | spdx-expression-parse@^3.0.0:
3468 | version "3.0.0"
3469 | resolved "https://registry.yarnpkg.com/spdx-expression-parse/-/spdx-expression-parse-3.0.0.tgz#99e119b7a5da00e05491c9fa338b7904823b41d0"
3470 | integrity sha512-Yg6D3XpRD4kkOmTpdgbUiEJFKghJH03fiC1OPll5h/0sO6neh2jqRDVHOQ4o/LMea0tgCkbMgea5ip/e+MkWyg==
3471 | dependencies:
3472 | spdx-exceptions "^2.1.0"
3473 | spdx-license-ids "^3.0.0"
3474 |
3475 | spdx-license-ids@^3.0.0:
3476 | version "3.0.5"
3477 | resolved "https://registry.yarnpkg.com/spdx-license-ids/-/spdx-license-ids-3.0.5.tgz#3694b5804567a458d3c8045842a6358632f62654"
3478 | integrity sha512-J+FWzZoynJEXGphVIS+XEh3kFSjZX/1i9gFBaWQcB+/tmpe2qUsSBABpcxqxnAxFdiUFEgAX1bjYGQvIZmoz9Q==
3479 |
3480 | split-string@^3.0.1, split-string@^3.0.2:
3481 | version "3.1.0"
3482 | resolved "https://registry.yarnpkg.com/split-string/-/split-string-3.1.0.tgz#7cb09dda3a86585705c64b39a6466038682e8fe2"
3483 | integrity sha512-NzNVhJDYpwceVVii8/Hu6DKfD2G+NrQHlS/V/qgv763EYudVwEcMQNxd2lh+0VrUByXN/oJkl5grOhYWvQUYiw==
3484 | dependencies:
3485 | extend-shallow "^3.0.0"
3486 |
3487 | sprintf-js@~1.0.2:
3488 | version "1.0.3"
3489 | resolved "https://registry.yarnpkg.com/sprintf-js/-/sprintf-js-1.0.3.tgz#04e6926f662895354f3dd015203633b857297e2c"
3490 | integrity sha1-BOaSb2YolTVPPdAVIDYzuFcpfiw=
3491 |
3492 | state-toggle@^1.0.0:
3493 | version "1.0.2"
3494 | resolved "https://registry.yarnpkg.com/state-toggle/-/state-toggle-1.0.2.tgz#75e93a61944116b4959d665c8db2d243631d6ddc"
3495 | integrity sha512-8LpelPGR0qQM4PnfLiplOQNJcIN1/r2Gy0xKB2zKnIW2YzPMt2sR4I/+gtPjhN7Svh9kw+zqEg2SFwpBO9iNiw==
3496 |
3497 | static-extend@^0.1.1:
3498 | version "0.1.2"
3499 | resolved "https://registry.yarnpkg.com/static-extend/-/static-extend-0.1.2.tgz#60809c39cbff55337226fd5e0b520f341f1fb5c6"
3500 | integrity sha1-YICcOcv/VTNyJv1eC1IPNB8ftcY=
3501 | dependencies:
3502 | define-property "^0.2.5"
3503 | object-copy "^0.1.0"
3504 |
3505 | string-width@^1.0.1:
3506 | version "1.0.2"
3507 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-1.0.2.tgz#118bdf5b8cdc51a2a7e70d211e07e2b0b9b107d3"
3508 | integrity sha1-EYvfW4zcUaKn5w0hHgfisLmxB9M=
3509 | dependencies:
3510 | code-point-at "^1.0.0"
3511 | is-fullwidth-code-point "^1.0.0"
3512 | strip-ansi "^3.0.0"
3513 |
3514 | "string-width@^1.0.2 || 2":
3515 | version "2.1.1"
3516 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-2.1.1.tgz#ab93f27a8dc13d28cac815c462143a6d9012ae9e"
3517 | integrity sha512-nOqH59deCq9SRHlxq1Aw85Jnt4w6KvLKqWVik6oA9ZklXLNIOlqg4F2yrT1MVaTjAqvVwdfeZ7w7aCvJD7ugkw==
3518 | dependencies:
3519 | is-fullwidth-code-point "^2.0.0"
3520 | strip-ansi "^4.0.0"
3521 |
3522 | string-width@^3.0.0:
3523 | version "3.1.0"
3524 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-3.1.0.tgz#22767be21b62af1081574306f69ac51b62203961"
3525 | integrity sha512-vafcv6KjVZKSgz06oM/H6GDBrAtz8vdhQakGjFIvNrHA6y3HCF1CInLy+QLq8dTJPQ1b+KDUqDFctkdRW44e1w==
3526 | dependencies:
3527 | emoji-regex "^7.0.1"
3528 | is-fullwidth-code-point "^2.0.0"
3529 | strip-ansi "^5.1.0"
3530 |
3531 | string-width@^4.1.0:
3532 | version "4.1.0"
3533 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-4.1.0.tgz#ba846d1daa97c3c596155308063e075ed1c99aff"
3534 | integrity sha512-NrX+1dVVh+6Y9dnQ19pR0pP4FiEIlUvdTGn8pw6CKTNq5sgib2nIhmUNT5TAmhWmvKr3WcxBcP3E8nWezuipuQ==
3535 | dependencies:
3536 | emoji-regex "^8.0.0"
3537 | is-fullwidth-code-point "^3.0.0"
3538 | strip-ansi "^5.2.0"
3539 |
3540 | string_decoder@~1.1.1:
3541 | version "1.1.1"
3542 | resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.1.1.tgz#9cf1611ba62685d7030ae9e4ba34149c3af03fc8"
3543 | integrity sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==
3544 | dependencies:
3545 | safe-buffer "~5.1.0"
3546 |
3547 | stringify-entities@^2.0.0:
3548 | version "2.0.0"
3549 | resolved "https://registry.yarnpkg.com/stringify-entities/-/stringify-entities-2.0.0.tgz#fa7ca6614b355fb6c28448140a20c4ede7462827"
3550 | integrity sha512-fqqhZzXyAM6pGD9lky/GOPq6V4X0SeTAFBl0iXb/BzOegl40gpf/bV3QQP7zULNYvjr6+Dx8SCaDULjVoOru0A==
3551 | dependencies:
3552 | character-entities-html4 "^1.0.0"
3553 | character-entities-legacy "^1.0.0"
3554 | is-alphanumerical "^1.0.0"
3555 | is-decimal "^1.0.2"
3556 | is-hexadecimal "^1.0.0"
3557 |
3558 | strip-ansi@^3.0.0, strip-ansi@^3.0.1:
3559 | version "3.0.1"
3560 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-3.0.1.tgz#6a385fb8853d952d5ff05d0e8aaf94278dc63dcf"
3561 | integrity sha1-ajhfuIU9lS1f8F0Oiq+UJ43GPc8=
3562 | dependencies:
3563 | ansi-regex "^2.0.0"
3564 |
3565 | strip-ansi@^4.0.0:
3566 | version "4.0.0"
3567 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-4.0.0.tgz#a8479022eb1ac368a871389b635262c505ee368f"
3568 | integrity sha1-qEeQIusaw2iocTibY1JixQXuNo8=
3569 | dependencies:
3570 | ansi-regex "^3.0.0"
3571 |
3572 | strip-ansi@^5.1.0, strip-ansi@^5.2.0:
3573 | version "5.2.0"
3574 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-5.2.0.tgz#8c9a536feb6afc962bdfa5b104a5091c1ad9c0ae"
3575 | integrity sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA==
3576 | dependencies:
3577 | ansi-regex "^4.1.0"
3578 |
3579 | strip-bom@^3.0.0:
3580 | version "3.0.0"
3581 | resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-3.0.0.tgz#2334c18e9c759f7bdd56fdef7e9ae3d588e68ed3"
3582 | integrity sha1-IzTBjpx1n3vdVv3vfprj1YjmjtM=
3583 |
3584 | strip-json-comments@^3.0.1:
3585 | version "3.0.1"
3586 | resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-3.0.1.tgz#85713975a91fb87bf1b305cca77395e40d2a64a7"
3587 | integrity sha512-VTyMAUfdm047mwKl+u79WIdrZxtFtn+nBxHeb844XBQ9uMNTuTHdx2hc5RiAJYqwTj3wc/xe5HLSdJSkJ+WfZw==
3588 |
3589 | strip-json-comments@~2.0.1:
3590 | version "2.0.1"
3591 | resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-2.0.1.tgz#3c531942e908c2697c0ec344858c286c7ca0a60a"
3592 | integrity sha1-PFMZQukIwml8DsNEhYwobHygpgo=
3593 |
3594 | supports-color@^2.0.0:
3595 | version "2.0.0"
3596 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-2.0.0.tgz#535d045ce6b6363fa40117084629995e9df324c7"
3597 | integrity sha1-U10EXOa2Nj+kARcIRimZXp3zJMc=
3598 |
3599 | supports-color@^5.3.0:
3600 | version "5.5.0"
3601 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-5.5.0.tgz#e2e69a44ac8772f78a1ec0b35b689df6530efc8f"
3602 | integrity sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==
3603 | dependencies:
3604 | has-flag "^3.0.0"
3605 |
3606 | table@^5.2.3:
3607 | version "5.4.6"
3608 | resolved "https://registry.yarnpkg.com/table/-/table-5.4.6.tgz#1292d19500ce3f86053b05f0e8e7e4a3bb21079e"
3609 | integrity sha512-wmEc8m4fjnob4gt5riFRtTu/6+4rSe12TpAELNSqHMfF3IqnA+CH37USM6/YR3qRZv7e56kAEAtd6nKZaxe0Ug==
3610 | dependencies:
3611 | ajv "^6.10.2"
3612 | lodash "^4.17.14"
3613 | slice-ansi "^2.1.0"
3614 | string-width "^3.0.0"
3615 |
3616 | tar@^4:
3617 | version "4.4.10"
3618 | resolved "https://registry.yarnpkg.com/tar/-/tar-4.4.10.tgz#946b2810b9a5e0b26140cf78bea6b0b0d689eba1"
3619 | integrity sha512-g2SVs5QIxvo6OLp0GudTqEf05maawKUxXru104iaayWA09551tFCTI8f1Asb4lPfkBr91k07iL4c11XO3/b0tA==
3620 | dependencies:
3621 | chownr "^1.1.1"
3622 | fs-minipass "^1.2.5"
3623 | minipass "^2.3.5"
3624 | minizlib "^1.2.1"
3625 | mkdirp "^0.5.0"
3626 | safe-buffer "^5.1.2"
3627 | yallist "^3.0.3"
3628 |
3629 | text-table@^0.2.0:
3630 | version "0.2.0"
3631 | resolved "https://registry.yarnpkg.com/text-table/-/text-table-0.2.0.tgz#7f5ee823ae805207c00af2df4a84ec3fcfa570b4"
3632 | integrity sha1-f17oI66AUgfACvLfSoTsP8+lcLQ=
3633 |
3634 | through@^2.3.6:
3635 | version "2.3.8"
3636 | resolved "https://registry.yarnpkg.com/through/-/through-2.3.8.tgz#0dd4c9ffaabc357960b1b724115d7e0e86a2e1f5"
3637 | integrity sha1-DdTJ/6q8NXlgsbckEV1+Doai4fU=
3638 |
3639 | tiny-emitter@^2.0.0:
3640 | version "2.1.0"
3641 | resolved "https://registry.yarnpkg.com/tiny-emitter/-/tiny-emitter-2.1.0.tgz#1d1a56edfc51c43e863cbb5382a72330e3555423"
3642 | integrity sha512-NB6Dk1A9xgQPMoGqC5CVXn123gWyte215ONT5Pp5a0yt4nlEoO1ZWeCwpncaekPHXO60i47ihFnZPiRPjRMq4Q==
3643 |
3644 | tinycolor2@^1.4.1:
3645 | version "1.4.1"
3646 | resolved "https://registry.yarnpkg.com/tinycolor2/-/tinycolor2-1.4.1.tgz#f4fad333447bc0b07d4dc8e9209d8f39a8ac77e8"
3647 | integrity sha1-9PrTM0R7wLB9TcjpIJ2POaisd+g=
3648 |
3649 | tmp@^0.0.33:
3650 | version "0.0.33"
3651 | resolved "https://registry.yarnpkg.com/tmp/-/tmp-0.0.33.tgz#6d34335889768d21b2bcda0aa277ced3b1bfadf9"
3652 | integrity sha512-jRCJlojKnZ3addtTOjdIqoRuPEKBvNXcGYqzO6zWZX8KfKEpnGY5jfggJQ3EjKuu8D4bJRr0y+cYJFmYbImXGw==
3653 | dependencies:
3654 | os-tmpdir "~1.0.2"
3655 |
3656 | to-fast-properties@^1.0.3:
3657 | version "1.0.3"
3658 | resolved "https://registry.yarnpkg.com/to-fast-properties/-/to-fast-properties-1.0.3.tgz#b83571fa4d8c25b82e231b06e3a3055de4ca1a47"
3659 | integrity sha1-uDVx+k2MJbguIxsG46MFXeTKGkc=
3660 |
3661 | to-fast-properties@^2.0.0:
3662 | version "2.0.0"
3663 | resolved "https://registry.yarnpkg.com/to-fast-properties/-/to-fast-properties-2.0.0.tgz#dc5e698cbd079265bc73e0377681a4e4e83f616e"
3664 | integrity sha1-3F5pjL0HkmW8c+A3doGk5Og/YW4=
3665 |
3666 | to-object-path@^0.3.0:
3667 | version "0.3.0"
3668 | resolved "https://registry.yarnpkg.com/to-object-path/-/to-object-path-0.3.0.tgz#297588b7b0e7e0ac08e04e672f85c1f4999e17af"
3669 | integrity sha1-KXWIt7Dn4KwI4E5nL4XB9JmeF68=
3670 | dependencies:
3671 | kind-of "^3.0.2"
3672 |
3673 | to-regex-range@^2.1.0:
3674 | version "2.1.1"
3675 | resolved "https://registry.yarnpkg.com/to-regex-range/-/to-regex-range-2.1.1.tgz#7c80c17b9dfebe599e27367e0d4dd5590141db38"
3676 | integrity sha1-fIDBe53+vlmeJzZ+DU3VWQFB2zg=
3677 | dependencies:
3678 | is-number "^3.0.0"
3679 | repeat-string "^1.6.1"
3680 |
3681 | to-regex@^3.0.1, to-regex@^3.0.2:
3682 | version "3.0.2"
3683 | resolved "https://registry.yarnpkg.com/to-regex/-/to-regex-3.0.2.tgz#13cfdd9b336552f30b51f33a8ae1b42a7a7599ce"
3684 | integrity sha512-FWtleNAtZ/Ki2qtqej2CXTOayOH9bHDQF+Q48VpWyDXjbYxA4Yz8iDB31zXOBUlOHHKidDbqGVrTUvQMPmBGBw==
3685 | dependencies:
3686 | define-property "^2.0.2"
3687 | extend-shallow "^3.0.2"
3688 | regex-not "^1.0.2"
3689 | safe-regex "^1.1.0"
3690 |
3691 | trim-right@^1.0.1:
3692 | version "1.0.1"
3693 | resolved "https://registry.yarnpkg.com/trim-right/-/trim-right-1.0.1.tgz#cb2e1203067e0c8de1f614094b9fe45704ea6003"
3694 | integrity sha1-yy4SAwZ+DI3h9hQJS5/kVwTqYAM=
3695 |
3696 | trim-trailing-lines@^1.0.0:
3697 | version "1.1.2"
3698 | resolved "https://registry.yarnpkg.com/trim-trailing-lines/-/trim-trailing-lines-1.1.2.tgz#d2f1e153161152e9f02fabc670fb40bec2ea2e3a"
3699 | integrity sha512-MUjYItdrqqj2zpcHFTkMa9WAv4JHTI6gnRQGPFLrt5L9a6tRMiDnIqYl8JBvu2d2Tc3lWJKQwlGCp0K8AvCM+Q==
3700 |
3701 | trim@0.0.1:
3702 | version "0.0.1"
3703 | resolved "https://registry.yarnpkg.com/trim/-/trim-0.0.1.tgz#5858547f6b290757ee95cccc666fb50084c460dd"
3704 | integrity sha1-WFhUf2spB1fulczMZm+1AITEYN0=
3705 |
3706 | trough@^1.0.0:
3707 | version "1.0.4"
3708 | resolved "https://registry.yarnpkg.com/trough/-/trough-1.0.4.tgz#3b52b1f13924f460c3fbfd0df69b587dbcbc762e"
3709 | integrity sha512-tdzBRDGWcI1OpPVmChbdSKhvSVurznZ8X36AYURAcl+0o2ldlCY2XPzyXNNxwJwwyIU+rIglTCG4kxtNKBQH7Q==
3710 |
3711 | tslib@^1.9.0:
3712 | version "1.10.0"
3713 | resolved "https://registry.yarnpkg.com/tslib/-/tslib-1.10.0.tgz#c3c19f95973fb0a62973fb09d90d961ee43e5c8a"
3714 | integrity sha512-qOebF53frne81cf0S9B41ByenJ3/IuH8yJKngAX35CmiZySA0khhkovshKK+jGCaMnVomla7gVlIcc3EvKPbTQ==
3715 |
3716 | type-check@~0.3.2:
3717 | version "0.3.2"
3718 | resolved "https://registry.yarnpkg.com/type-check/-/type-check-0.3.2.tgz#5884cab512cf1d355e3fb784f30804b2b520db72"
3719 | integrity sha1-WITKtRLPHTVeP7eE8wgEsrUg23I=
3720 | dependencies:
3721 | prelude-ls "~1.1.2"
3722 |
3723 | type-fest@^0.5.2:
3724 | version "0.5.2"
3725 | resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-0.5.2.tgz#d6ef42a0356c6cd45f49485c3b6281fc148e48a2"
3726 | integrity sha512-DWkS49EQKVX//Tbupb9TFa19c7+MK1XmzkrZUR8TAktmE/DizXoaoJV6TZ/tSIPXipqNiRI6CyAe7x69Jb6RSw==
3727 |
3728 | unherit@^1.0.4:
3729 | version "1.1.2"
3730 | resolved "https://registry.yarnpkg.com/unherit/-/unherit-1.1.2.tgz#14f1f397253ee4ec95cec167762e77df83678449"
3731 | integrity sha512-W3tMnpaMG7ZY6xe/moK04U9fBhi6wEiCYHUW5Mop/wQHf12+79EQGwxYejNdhEz2mkqkBlGwm7pxmgBKMVUj0w==
3732 | dependencies:
3733 | inherits "^2.0.1"
3734 | xtend "^4.0.1"
3735 |
3736 | unified@^8.2.0:
3737 | version "8.3.2"
3738 | resolved "https://registry.yarnpkg.com/unified/-/unified-8.3.2.tgz#aed69d0e577d6ef27268431c63a10faef60e63ab"
3739 | integrity sha512-NDtUAXcd4c+mKppCbsZHzmhkKEQuhveZNBrFYmNgMIMk2K9bc8hmG3mLEGVtRmSNodobwyMePAnvIGVWZfPdzQ==
3740 | dependencies:
3741 | bail "^1.0.0"
3742 | extend "^3.0.0"
3743 | is-plain-obj "^2.0.0"
3744 | trough "^1.0.0"
3745 | vfile "^4.0.0"
3746 |
3747 | union-value@^1.0.0:
3748 | version "1.0.1"
3749 | resolved "https://registry.yarnpkg.com/union-value/-/union-value-1.0.1.tgz#0b6fe7b835aecda61c6ea4d4f02c14221e109847"
3750 | integrity sha512-tJfXmxMeWYnczCVs7XAEvIV7ieppALdyepWMkHkwciRpZraG/xwT+s2JN8+pr1+8jCRf80FFzvr+MpQeeoF4Xg==
3751 | dependencies:
3752 | arr-union "^3.1.0"
3753 | get-value "^2.0.6"
3754 | is-extendable "^0.1.1"
3755 | set-value "^2.0.1"
3756 |
3757 | unist-util-is@^3.0.0:
3758 | version "3.0.0"
3759 | resolved "https://registry.yarnpkg.com/unist-util-is/-/unist-util-is-3.0.0.tgz#d9e84381c2468e82629e4a5be9d7d05a2dd324cd"
3760 | integrity sha512-sVZZX3+kspVNmLWBPAB6r+7D9ZgAFPNWm66f7YNb420RlQSbn+n8rG8dGZSkrER7ZIXGQYNm5pqC3v3HopH24A==
3761 |
3762 | unist-util-is@^4.0.0:
3763 | version "4.0.0"
3764 | resolved "https://registry.yarnpkg.com/unist-util-is/-/unist-util-is-4.0.0.tgz#85672993f0d88a8bffb45137aba003ee8da11a38"
3765 | integrity sha512-E5JLUKRQlAYiJmN2PVBdSz01R3rUKRSM00X+0DB/yLqxdLu6wZZkRdTIsxDp9X+bkxh8Eq+O2YYRbZvLZtQT1A==
3766 |
3767 | unist-util-remove-position@^1.0.0:
3768 | version "1.1.3"
3769 | resolved "https://registry.yarnpkg.com/unist-util-remove-position/-/unist-util-remove-position-1.1.3.tgz#d91aa8b89b30cb38bad2924da11072faa64fd972"
3770 | integrity sha512-CtszTlOjP2sBGYc2zcKA/CvNdTdEs3ozbiJ63IPBxh8iZg42SCCb8m04f8z2+V1aSk5a7BxbZKEdoDjadmBkWA==
3771 | dependencies:
3772 | unist-util-visit "^1.1.0"
3773 |
3774 | unist-util-stringify-position@^2.0.0:
3775 | version "2.0.1"
3776 | resolved "https://registry.yarnpkg.com/unist-util-stringify-position/-/unist-util-stringify-position-2.0.1.tgz#de2a2bc8d3febfa606652673a91455b6a36fb9f3"
3777 | integrity sha512-Zqlf6+FRI39Bah8Q6ZnNGrEHUhwJOkHde2MHVk96lLyftfJJckaPslKgzhVcviXj8KcE9UJM9F+a4JEiBUTYgA==
3778 | dependencies:
3779 | "@types/unist" "^2.0.2"
3780 |
3781 | unist-util-visit-parents@^2.0.0:
3782 | version "2.1.2"
3783 | resolved "https://registry.yarnpkg.com/unist-util-visit-parents/-/unist-util-visit-parents-2.1.2.tgz#25e43e55312166f3348cae6743588781d112c1e9"
3784 | integrity sha512-DyN5vD4NE3aSeB+PXYNKxzGsfocxp6asDc2XXE3b0ekO2BaRUpBicbbUygfSvYfUz1IkmjFR1YF7dPklraMZ2g==
3785 | dependencies:
3786 | unist-util-is "^3.0.0"
3787 |
3788 | unist-util-visit-parents@^3.0.0:
3789 | version "3.0.0"
3790 | resolved "https://registry.yarnpkg.com/unist-util-visit-parents/-/unist-util-visit-parents-3.0.0.tgz#dd4cdcd86d505ec7a81bdc01bc790f9def742bee"
3791 | integrity sha512-H3K8d81S4V3XVXVwLvrLGk+R5VILryfUotD06/R/rLsTsPLGjkn6gIP8qEEVITcuIySNYj0ocJLsePjm9F/Vcg==
3792 | dependencies:
3793 | "@types/unist" "^2.0.3"
3794 | unist-util-is "^4.0.0"
3795 |
3796 | unist-util-visit@^1.1.0:
3797 | version "1.4.1"
3798 | resolved "https://registry.yarnpkg.com/unist-util-visit/-/unist-util-visit-1.4.1.tgz#4724aaa8486e6ee6e26d7ff3c8685960d560b1e3"
3799 | integrity sha512-AvGNk7Bb//EmJZyhtRUnNMEpId/AZ5Ph/KUpTI09WHQuDZHKovQ1oEv3mfmKpWKtoMzyMC4GLBm1Zy5k12fjIw==
3800 | dependencies:
3801 | unist-util-visit-parents "^2.0.0"
3802 |
3803 | unist-util-visit@^2.0.0:
3804 | version "2.0.0"
3805 | resolved "https://registry.yarnpkg.com/unist-util-visit/-/unist-util-visit-2.0.0.tgz#1fdae5ea88251651bfe49b7e84390d664fc227c5"
3806 | integrity sha512-kiTpWKsF54u/78L/UU/i7lxrnqGiEWBgqCpaIZBYP0gwUC+Akq0Ajm4U8JiNIoQNfAioBdsyarnOcTEAb9mLeQ==
3807 | dependencies:
3808 | "@types/unist" "^2.0.0"
3809 | unist-util-is "^4.0.0"
3810 | unist-util-visit-parents "^3.0.0"
3811 |
3812 | unset-value@^1.0.0:
3813 | version "1.0.0"
3814 | resolved "https://registry.yarnpkg.com/unset-value/-/unset-value-1.0.0.tgz#8376873f7d2335179ffb1e6fc3a8ed0dfc8ab559"
3815 | integrity sha1-g3aHP30jNRef+x5vw6jtDfyKtVk=
3816 | dependencies:
3817 | has-value "^0.3.1"
3818 | isobject "^3.0.0"
3819 |
3820 | uri-js@^4.2.2:
3821 | version "4.2.2"
3822 | resolved "https://registry.yarnpkg.com/uri-js/-/uri-js-4.2.2.tgz#94c540e1ff772956e2299507c010aea6c8838eb0"
3823 | integrity sha512-KY9Frmirql91X2Qgjry0Wd4Y+YTdrdZheS8TFwvkbLWf/G5KNJDCh6pKL5OZctEW4+0Baa5idK2ZQuELRwPznQ==
3824 | dependencies:
3825 | punycode "^2.1.0"
3826 |
3827 | urix@^0.1.0:
3828 | version "0.1.0"
3829 | resolved "https://registry.yarnpkg.com/urix/-/urix-0.1.0.tgz#da937f7a62e21fec1fd18d49b35c2935067a6c72"
3830 | integrity sha1-2pN/emLiH+wf0Y1Js1wpNQZ6bHI=
3831 |
3832 | use@^3.1.0:
3833 | version "3.1.1"
3834 | resolved "https://registry.yarnpkg.com/use/-/use-3.1.1.tgz#d50c8cac79a19fbc20f2911f56eb973f4e10070f"
3835 | integrity sha512-cwESVXlO3url9YWlFW/TA9cshCEhtu7IKJ/p5soJ/gGpj7vbvFrAY/eIioQ6Dw23KjZhYgiIo8HOs1nQ2vr/oQ==
3836 |
3837 | user-home@^1.1.1:
3838 | version "1.1.1"
3839 | resolved "https://registry.yarnpkg.com/user-home/-/user-home-1.1.1.tgz#2b5be23a32b63a7c9deb8d0f28d485724a3df190"
3840 | integrity sha1-K1viOjK2Onyd640PKNSFcko98ZA=
3841 |
3842 | util-deprecate@~1.0.1:
3843 | version "1.0.2"
3844 | resolved "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf"
3845 | integrity sha1-RQ1Nyfpw3nMnYvvS1KKJgUGaDM8=
3846 |
3847 | v8-compile-cache@^2.0.3:
3848 | version "2.1.0"
3849 | resolved "https://registry.yarnpkg.com/v8-compile-cache/-/v8-compile-cache-2.1.0.tgz#e14de37b31a6d194f5690d67efc4e7f6fc6ab30e"
3850 | integrity sha512-usZBT3PW+LOjM25wbqIlZwPeJV+3OSz3M1k1Ws8snlW39dZyYL9lOGC5FgPVHfk0jKmjiDV8Z0mIbVQPiwFs7g==
3851 |
3852 | v8flags@^2.1.1:
3853 | version "2.1.1"
3854 | resolved "https://registry.yarnpkg.com/v8flags/-/v8flags-2.1.1.tgz#aab1a1fa30d45f88dd321148875ac02c0b55e5b4"
3855 | integrity sha1-qrGh+jDUX4jdMhFIh1rALAtV5bQ=
3856 | dependencies:
3857 | user-home "^1.1.1"
3858 |
3859 | validate-npm-package-license@^3.0.1:
3860 | version "3.0.4"
3861 | resolved "https://registry.yarnpkg.com/validate-npm-package-license/-/validate-npm-package-license-3.0.4.tgz#fc91f6b9c7ba15c857f4cb2c5defeec39d4f410a"
3862 | integrity sha512-DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew==
3863 | dependencies:
3864 | spdx-correct "^3.0.0"
3865 | spdx-expression-parse "^3.0.0"
3866 |
3867 | vfile-location@^2.0.0:
3868 | version "2.0.5"
3869 | resolved "https://registry.yarnpkg.com/vfile-location/-/vfile-location-2.0.5.tgz#c83eb02f8040228a8d2b3f10e485be3e3433e0a2"
3870 | integrity sha512-Pa1ey0OzYBkLPxPZI3d9E+S4BmvfVwNAAXrrqGbwTVXWaX2p9kM1zZ+n35UtVM06shmWKH4RPRN8KI80qE3wNQ==
3871 |
3872 | vfile-message@^2.0.0:
3873 | version "2.0.1"
3874 | resolved "https://registry.yarnpkg.com/vfile-message/-/vfile-message-2.0.1.tgz#951881861c22fc1eb39f873c0b93e336a64e8f6d"
3875 | integrity sha512-KtasSV+uVU7RWhUn4Lw+wW1Zl/nW8JWx7JCPps10Y9JRRIDeDXf8wfBLoOSsJLyo27DqMyAi54C6Jf/d6Kr2Bw==
3876 | dependencies:
3877 | "@types/unist" "^2.0.2"
3878 | unist-util-stringify-position "^2.0.0"
3879 |
3880 | vfile@^4.0.0:
3881 | version "4.0.1"
3882 | resolved "https://registry.yarnpkg.com/vfile/-/vfile-4.0.1.tgz#fc3d43a1c71916034216bf65926d5ee3c64ed60c"
3883 | integrity sha512-lRHFCuC4SQBFr7Uq91oJDJxlnftoTLQ7eKIpMdubhYcVMho4781a8MWXLy3qZrZ0/STD1kRiKc0cQOHm4OkPeA==
3884 | dependencies:
3885 | "@types/unist" "^2.0.0"
3886 | is-buffer "^2.0.0"
3887 | replace-ext "1.0.0"
3888 | unist-util-stringify-position "^2.0.0"
3889 | vfile-message "^2.0.0"
3890 |
3891 | which@^1.2.9:
3892 | version "1.3.1"
3893 | resolved "https://registry.yarnpkg.com/which/-/which-1.3.1.tgz#a45043d54f5805316da8d62f9f50918d3da70b0a"
3894 | integrity sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==
3895 | dependencies:
3896 | isexe "^2.0.0"
3897 |
3898 | wide-align@^1.1.0:
3899 | version "1.1.3"
3900 | resolved "https://registry.yarnpkg.com/wide-align/-/wide-align-1.1.3.tgz#ae074e6bdc0c14a431e804e624549c633b000457"
3901 | integrity sha512-QGkOQc8XL6Bt5PwnsExKBPuMKBxnGxWWW3fU55Xt4feHozMUhdUMaBCk290qpm/wG5u/RSKzwdAC4i51YigihA==
3902 | dependencies:
3903 | string-width "^1.0.2 || 2"
3904 |
3905 | wordwrap@~1.0.0:
3906 | version "1.0.0"
3907 | resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-1.0.0.tgz#27584810891456a4171c8d0226441ade90cbcaeb"
3908 | integrity sha1-J1hIEIkUVqQXHI0CJkQa3pDLyus=
3909 |
3910 | wrappy@1:
3911 | version "1.0.2"
3912 | resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f"
3913 | integrity sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8=
3914 |
3915 | write@1.0.3:
3916 | version "1.0.3"
3917 | resolved "https://registry.yarnpkg.com/write/-/write-1.0.3.tgz#0800e14523b923a387e415123c865616aae0f5c3"
3918 | integrity sha512-/lg70HAjtkUgWPVZhZcm+T4hkL8Zbtp1nFNOn3lRrxnlv50SRBv7cR7RqR+GMsd3hUXy9hWBo4CHTbFTcOYwig==
3919 | dependencies:
3920 | mkdirp "^0.5.1"
3921 |
3922 | xtend@^4.0.1:
3923 | version "4.0.2"
3924 | resolved "https://registry.yarnpkg.com/xtend/-/xtend-4.0.2.tgz#bb72779f5fa465186b1f438f674fa347fdb5db54"
3925 | integrity sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ==
3926 |
3927 | yallist@^3.0.0, yallist@^3.0.3:
3928 | version "3.0.3"
3929 | resolved "https://registry.yarnpkg.com/yallist/-/yallist-3.0.3.tgz#b4b049e314be545e3ce802236d6cd22cd91c3de9"
3930 | integrity sha512-S+Zk8DEWE6oKpV+vI3qWkaK+jSbIK86pCwe2IF/xwIpQ8jEuxpw9NyaGjmp9+BoJv5FV2piqCDcoCtStppiq2A==
3931 |
--------------------------------------------------------------------------------