├── .babelrc
├── .gitignore
├── .travis.yml
├── README.md
├── assets
├── hook-and-loop.gif
└── loops-vs-mapkeys.png
├── package.json
├── react-loops.d.ts
├── react-loops.js
├── react-loops.js.flow
├── react-loops.test.js
└── yarn.lock
/.babelrc:
--------------------------------------------------------------------------------
1 | {
2 | "presets": [
3 | [
4 | "@babel/preset-env",
5 | {
6 | "targets": {
7 | "node": "current"
8 | }
9 | }
10 | ],
11 | "@babel/preset-react"
12 | ]
13 | }
14 |
--------------------------------------------------------------------------------
/.gitignore:
--------------------------------------------------------------------------------
1 | node_modules
2 |
--------------------------------------------------------------------------------
/.travis.yml:
--------------------------------------------------------------------------------
1 | language: node_js
2 | node_js:
3 | - "6"
4 | script: "yarn ci"
5 |
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 |
2 |
3 | # React Loops — _React Velcro Architecture_
4 |
5 | [](https://travis-ci.com/leebyron/react-loops) [](https://coveralls.io/github/leebyron/react-loops?branch=master)
6 |
7 | React Loops work alongside React Hooks as part of the novel _React Velcro_
8 | architecture for building sticky, secure user interfaces that don't come apart
9 | under pressure.
10 |
11 | [Version Changelog](https://github.com/leebyron/react-loops/releases)
12 |
13 | ## Get started with Velcro by installing React Loops!
14 |
15 | Install with yarn or npm.
16 |
17 | ```sh
18 | yarn add react-loops
19 | ```
20 |
21 | And import into your Javascript.
22 |
23 | ```js
24 | import { For } from 'react-loops'
25 | ```
26 |
27 | React Loops comes ready with both Flow and TypeScript types for high quality
28 | integration into codebases that use these tools.
29 |
30 | ## For-of Loops
31 |
32 | Use the props `of` to provide the list and `as` to provide an element for
33 | each item in the list. The `of` prop accepts Arrays, Array-likes,
34 | and Iterables (such as [`Map`], [`Set`], and [Immutable.js]).
35 |
36 | [`Map`]: https://developer.mozilla.org/en/docs/Web/JavaScript/Reference/Global_Objects/Map
37 | [`Set`]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Set
38 | [Immutable.js]: https://immutable-js.github.io/immutable-js/
39 |
40 | ```js
41 | import { For } from 'react-loops'
42 |
43 | function Bulleted({ list }) {
44 | return (
45 |
46 |
47 | - {item}
48 | }/>
49 |
50 | )
51 | }
52 | ```
53 |
54 | Or provide a "render prop" function as a child.
55 |
56 | ```js
57 | import { For } from 'react-loops'
58 |
59 | function Bulleted({ list }) {
60 | return (
61 |
62 |
63 | {item =>
64 | - {item}
65 | }
66 |
67 |
68 | )
69 | }
70 | ```
71 |
72 | ## For-in Loops
73 |
74 | Use the prop `in` to provide an Object instead of an Array or Iterable.
75 |
76 | ```js
77 | import { For } from 'react-loops'
78 |
79 | function BulletedDefinitions({ terms }) {
80 | return (
81 |
82 |
83 | - {key}: {item}
84 | }/>
85 |
86 | )
87 | }
88 | ```
89 |
90 | ## Loop empty conditions
91 |
92 | A common pattern when rendering a collection is to render a special case when
93 | the collection is empty. Optionally provide an `ifEmpty` prop to handle this
94 | case for both `` and `` loops.
95 |
96 | The `ifEmpty` prop accepts anything renderable (strings, numbers, JSX) or a
97 | *function* which returns anything renderable.
98 |
99 | ```js
100 | import { For } from 'react-loops'
101 |
102 | function BulletedWithFallback({ list }) {
103 | return (
104 |
105 | Nothing here!}>
106 | {item =>
107 | - {item}
108 | }
109 |
110 |
111 | )
112 | }
113 | ```
114 |
115 | ## Loop iteration metadata
116 |
117 | Access additional information about each iteration by destructuring the
118 | second callback argument:
119 |
120 | - `index`: A number from 0 to the length of the list
121 | - `length`: The length of the list
122 | - `key`: The key for this item in the list, same as `index` for Arrays
123 | but string Object properties for `in` loops
124 | - `isFirst`: True for the first iteration
125 | - `isLast`: True for the last iteration
126 |
127 | ```js
128 | import { For } from 'react-loops'
129 |
130 | function BulletedSentence({ list }) {
131 | return (
132 |
133 |
134 | - {isLast && "and "}{item}
135 | }/>
136 |
137 | )
138 | }
139 | ```
140 |
141 | ## React Keys & Reorderable Collections
142 |
143 | React Loops provides a `key` prop automatically on each child by default (by
144 | using the `{ key }` loop iteration metadata). This is a great default if your
145 | collection will not later reorder and an ergonomic improvement over your trained muscle memory of adding `key={i}` to every `list.map()` return value.
146 |
147 | However, reorderable collections should still directly provide the `key` prop on
148 | the element returned from the loop callback. Read more about [Lists and Keys](https://reactjs.org/docs/lists-and-keys.html) in the React documentation.
149 |
150 | ```js
151 | import { For } from 'react-loops'
152 |
153 | function BulletedReorderable({ list }) {
154 | return (
155 |
156 |
157 | - {item.label}
158 | }/>
159 |
160 | )
161 | }
162 | ```
163 |
164 |
165 | ## What is _React Velcro_?
166 |
167 | Only the newest, coolest, most blazing fast React architecture out there!
168 |
169 | React Hooks has been an exciting development in the evolution of React, but it
170 | felt like it was only half of the story. _React Loops_ completes the gripping
171 | picture by providing React's missing control-flow operators via JSX elements.
172 |
173 | The _React Velcro_ architecture was announced by [@leebyron](https://github.com/leebyron/) on [April 1st, 2019](https://twitter.com/leeb/status/1112867350389219328).
174 |
175 | ### Is this a Joke?
176 |
177 | Take a look at this side by side with the old looping pattern and you tell me ([hint](https://media.giphy.com/media/l2SqbYoAwd3KK1wli/giphy.gif)).
178 |
179 |
180 |
181 | ### But isn't this a React anti-pattern? Just go use Angular or Vue?
182 |
183 | Yes, React Loops is directly inspired by Angular and Vue. It's also directly
184 | inspired by older XML component syntax like XSLT, JSTL, and E4X. These
185 | technologies all have their drawbacks, however we should not abandon all aspects
186 | of these ideas.
187 |
188 | React Loops are not an anti-pattern. `array.forEach()` is not an anti-pattern
189 | despite the existence of the `for..of` loop and neither is ``. React
190 | Loops follows React's model of components as encapsulation of behavior and
191 | state. It uses the "render prop" pattern, like
192 | [react-router](https://github.com/ReactTraining/react-router)'s `` component, itself reminiscent of XSLT.
193 |
194 | React considers Angular (and Vue) directives as anti-patterns not because
195 | they emulate loops or control flow. It is because they affect _scope_ in ways
196 | that removes the ability to use plain Javascript, requires a template
197 | language, and makes using other tools like ESLint difficult. They also are
198 | implemented as attributes (props) on any element which complicates type-checking
199 | and implementation.
200 |
201 | React Loops avoids these drawbacks by providing `` as a specific component
202 | with a clear signature and callback functions to produce each element for clear,
203 | "just Javascript," scoping rules avoiding the need for template languages or
204 | additional compilation.
205 |
206 | Try React Loops in your project, you just might like it!
207 |
208 | ### Are there any other libraries supporting that _React Velcro_ architecture?
209 |
210 | _*Yes*_
211 |
212 | * [babel-plugin-jsx-control-statements](https://www.npmjs.com/package/babel-plugin-jsx-control-statements) is a Babel plugin with many control statements.
213 | > Its `` component suffers from some of the problems described above, _caveat emptor_.
214 | * [react-condition](https://github.com/andrewfluck/react-condition) contains the old ``, ``, and `` statements from this library, as well as some new ones such as ``, ``, and ``.
215 | * [react-for](https://github.com/MJez29/react-for) is a predecessor and a very similar idea which includes other variants of loops.
216 | * [react-listable](https://github.com/victorvoid/react-listable) is a predecessor of this idea which includes `` and `` components.
217 |
218 | ## Contributing & License
219 |
220 | Contributions are welcome from all who follow the community
221 | [code of conduct](https://www.contributor-covenant.org/version/1/4/code-of-conduct).
222 |
223 | 1. [Fork](https://guides.github.com/activities/forking/) this repository
224 | 2. `yarn install`
225 | 3. Make your change in a [branch](https://help.github.com/en/articles/about-branches)
226 | 4. Ensure your change includes any relevant tests, type definitions
227 | (TypeScript and Flow), and documentation.
228 | 5. `yarn test`
229 | 6. Create a [pull request](https://help.github.com/en/articles/creating-a-pull-request-from-a-fork)
230 |
231 | ### React Loops is provided under the MIT license:
232 |
233 | Copyright 2019 Lee Byron
234 |
235 | Permission is hereby granted, free of charge, to any person obtaining a copy of
236 | this software and associated documentation files (the "Software"), to deal in
237 | the Software without restriction, including without limitation the rights to
238 | use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
239 | the Software, and to permit persons to whom the Software is furnished to do so,
240 | subject to the following conditions:
241 |
242 | The above copyright notice and this permission notice shall be included in all
243 | copies or substantial portions of the Software.
244 |
245 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
246 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
247 | FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
248 | COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
249 | IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
250 | CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
251 |
--------------------------------------------------------------------------------
/assets/hook-and-loop.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/leebyron/react-loops/18ee1a19c31267e4e3197974bda18685fc020429/assets/hook-and-loop.gif
--------------------------------------------------------------------------------
/assets/loops-vs-mapkeys.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/leebyron/react-loops/18ee1a19c31267e4e3197974bda18685fc020429/assets/loops-vs-mapkeys.png
--------------------------------------------------------------------------------
/package.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "react-loops",
3 | "version": "1.3.0",
4 | "description": "React Loops work with React Hooks as part of the React Velcro architecture",
5 | "main": "react-loops.js",
6 | "types": "react-loops.d.ts",
7 | "repository": "https://github.com/leebyron/react-loops",
8 | "license": "MIT",
9 | "scripts": {
10 | "ci": "prettier --check *.{js,ts,flow} && jest --coverage --coverageReporters=text-lcov | coveralls",
11 | "test": "prettier --write *.{js,ts,flow} && jest --coverage --coverageReporters=text"
12 | },
13 | "files": [
14 | "package.json",
15 | "README.md",
16 | "react-loops.js",
17 | "react-loops.js.flow",
18 | "react-loops.d.ts"
19 | ],
20 | "dependencies": {
21 | "iterall": "^1.2.0"
22 | },
23 | "peerDependencies": {
24 | "react": ">= 15.0.0"
25 | },
26 | "devDependencies": {
27 | "@babel/core": "^7.4.0",
28 | "@babel/preset-env": "^7.4.2",
29 | "@babel/preset-react": "^7.0.0",
30 | "coveralls": "^3.0.3",
31 | "jest": "^24.5.0",
32 | "prettier": "1.16.4",
33 | "react": "^16.8.6",
34 | "react-dom": "^16.8.6",
35 | "react-test-renderer": "^16.8.6"
36 | }
37 | }
38 |
--------------------------------------------------------------------------------
/react-loops.d.ts:
--------------------------------------------------------------------------------
1 | type JSXNode = JSX.Element | string | number | false | null | undefined;
2 | type JSXChild = JSXNode | Array;
3 | type LazyJSXChild = (() => JSXChild) | JSXChild;
4 |
5 | type ForCallback = (
6 | item: T,
7 | meta: {
8 | index: number;
9 | length: number;
10 | key: K;
11 | isFirst: boolean;
12 | isLast: boolean;
13 | }
14 | ) => JSXChild;
15 |
16 | export function For(
17 | props:
18 | | {
19 | of: Iterable | ArrayLike | null | undefined;
20 | ifEmpty?: LazyJSXChild;
21 | as: ForCallback;
22 | }
23 | | {
24 | of: Iterable | ArrayLike | null | undefined;
25 | ifEmpty?: LazyJSXChild;
26 | children: ForCallback;
27 | }
28 | ): JSX.Element;
29 | export function For(
30 | props:
31 | | {
32 | in: O | null | undefined;
33 | ifEmpty?: LazyJSXChild;
34 | as: ForCallback;
35 | }
36 | | {
37 | in: O | null | undefined;
38 | ifEmpty?: LazyJSXChild;
39 | children: ForCallback;
40 | }
41 | ): JSX.Element;
42 |
--------------------------------------------------------------------------------
/react-loops.js:
--------------------------------------------------------------------------------
1 | var React = require("react");
2 | var iterall = require("iterall");
3 |
4 | /**
5 | * Use the props `of` to provide the list and `as` to provide an element for
6 | * each item in the list. The `of` prop accepts Arrays, Array-likes,
7 | * and Iterables.
8 | *
9 | *
10 | *
11 | * - {item}
12 | * }/>
13 | *
14 | *
15 | * Or provide a "render prop" function as a child.
16 | *
17 | *
18 | *
19 | * {item =>
20 | * - {item}
21 | * }
22 | *
23 | *
24 | *
25 | * Access additional information about each iteration by destructuring the
26 | * second argument:
27 | *
28 | * - `index`: A number from 0 to the length of the list
29 | * - `length`: The length of the list
30 | * - `key`: The key for this item in the list, same as `index` for Arrays
31 | * but string Object properties for `in` loops
32 | * - `isFirst`: True for the first iteration
33 | * - `isLast`: True for the last iteration
34 | *
35 | *
36 | *
37 | * - {isLast && "and "}{item}
38 | * }/>
39 | *
40 | *
41 | * You can also optionally provide a fallback rendering with the `ifEmpty` prop:
42 | *
43 | *
44 | * - {item}
47 | * ifEmpty={No more items!}
48 | * />
49 | *
50 | *
51 | * *For in Loops*
52 | *
53 | * Use the prop `in` to provide an Object instead of an Array or Iterable.
54 | *
55 | *
56 | *
57 | * - {key}: {item}
58 | * }/>
59 | *
60 |
61 | * *React Keys*
62 | *
63 | * Provide `key` on each child to ensure correct behavior if the list may be
64 | * reordered over time. If you don't provide `key`, the `key` of each
65 | * iteration will be used by default.
66 | *
67 | *
68 | *
69 | * - {item.label}
70 | * }/>
71 | *
72 | *
73 | */
74 | function For(props) {
75 | // Get the mapping callback
76 | var mapper = props.children || props.as;
77 | if (
78 | typeof mapper !== "function" ||
79 | (props.hasOwnProperty("as") ^ props.hasOwnProperty("children")) === 0
80 | ) {
81 | throw new TypeError(
82 | " expects either a render-prop child or a Function `as` prop."
83 | );
84 | }
85 |
86 | var hasIn = props.hasOwnProperty("in");
87 | if ((props.hasOwnProperty("of") ^ hasIn) === 0) {
88 | throw new TypeError(
89 | " expects either a Collection `of` or Object `in` prop."
90 | );
91 | }
92 |
93 | if (hasIn) {
94 | // Get the object
95 | var obj = props.in;
96 |
97 | // Accept null / falsey as nothing to loop.
98 | if (!obj) {
99 | return renderEmpty(props);
100 | }
101 |
102 | if (iterall.isCollection(obj) || typeof obj !== "object") {
103 | throw new TypeError(
104 | " expects a non-collection Object. " +
105 | "Perhaps you meant to use with a Collection?"
106 | );
107 | }
108 |
109 | // Get the set of keys, rendering as empty if there are no keys.
110 | var keys = Object.keys(obj);
111 | var length = keys.length;
112 | if (length === 0) {
113 | return renderEmpty(props);
114 | }
115 |
116 | // Map each object property key into a React child.
117 | var mapped = [];
118 | for (var i = 0; i < length; i++) {
119 | var key = keys[i];
120 | mapped.push(mapIteration(mapper, obj[key], i, length, key));
121 | }
122 | return mapped;
123 | }
124 |
125 | // Get the list
126 | var list = props.of;
127 |
128 | // Accept null / falsey as nothing to loop.
129 | if (!list) {
130 | return renderEmpty(props);
131 | }
132 |
133 | // Convert non-Array collections to an Array.
134 | if (!Array.isArray(list)) {
135 | if (!iterall.isCollection(list)) {
136 | throw new TypeError(
137 | " expects an Array, Array-like, or Iterable collection. " +
138 | "Perhaps you meant to use with an Object?"
139 | );
140 | }
141 | var array = [];
142 | iterall.forEach(list, function(item) {
143 | array.push(item);
144 | });
145 | list = array;
146 | }
147 |
148 | // Get the length of the list, rendering as empty if 0.
149 | var length = list.length;
150 | if (length === 0) {
151 | return renderEmpty(props);
152 | }
153 |
154 | // Map each list item into a React child.
155 | var mapped = [];
156 | for (var i = 0; i < length; i++) {
157 | mapped.push(mapIteration(mapper, list[i], i, length, i));
158 | }
159 | return mapped;
160 | }
161 |
162 | function mapIteration(mapper, item, index, length, key) {
163 | // Map this item into a React child node.
164 | // Produce additional info only if the mapper expects it.
165 | var result =
166 | mapper.length === 1
167 | ? mapper(item)
168 | : mapper(item, {
169 | index: index,
170 | length: length,
171 | key: key,
172 | isFirst: index === 0,
173 | isLast: index === length - 1
174 | });
175 | // If the response is an element without a key property, add it automatically
176 | // by using the iteration key.
177 | if (React.isValidElement(result) && !result.props.hasOwnProperty("key")) {
178 | return React.cloneElement(result, { key: String(key) });
179 | }
180 | return result;
181 | }
182 |
183 | function renderEmpty(props) {
184 | // If the collection was non-existent or empty, render the empty condition
185 | // if it exists, otherwise render null.
186 | if (!props.hasOwnProperty("ifEmpty")) {
187 | return null;
188 | }
189 |
190 | var ifEmpty = props.ifEmpty;
191 | return typeof ifEmpty === "function" ? ifEmpty() : ifEmpty;
192 | }
193 |
194 | // Export loops
195 | Object.defineProperties(exports, {
196 | For: { enumerable: true, value: For },
197 | __esModule: { value: true }
198 | });
199 |
--------------------------------------------------------------------------------
/react-loops.js.flow:
--------------------------------------------------------------------------------
1 | // @flow
2 |
3 | type ForCallback = (
4 | item: T,
5 | {
6 | index: number,
7 | length: number,
8 | key: K,
9 | isFirst: boolean,
10 | isLast: boolean
11 | }
12 | ) => React$Node;
13 |
14 | type ArrayLike = { +length: number, +[number]: T };
15 |
16 | declare function For(
17 | | {|
18 | of: Iterable | ArrayLike | null | void,
19 | ifEmpty?: (() => React$Node) | React$Node,
20 | as: ForCallback
21 | |}
22 | | {|
23 | of: Iterable | ArrayLike | null | void,
24 | ifEmpty?: (() => React$Node) | React$Node,
25 | children: ForCallback
26 | |}
27 | ): React$Node;
28 | declare function For(
29 | | {|
30 | in: O | null | void,
31 | ifEmpty?: (() => React$Node) | React$Node,
32 | as: ForCallback<$Values, $Keys>
33 | |}
34 | | {|
35 | in: O | null | void,
36 | ifEmpty?: (() => React$Node) | React$Node,
37 | children: ForCallback<$Values, $Keys>
38 | |}
39 | ): React$Node;
40 |
--------------------------------------------------------------------------------
/react-loops.test.js:
--------------------------------------------------------------------------------
1 | import React from "react";
2 | import TestRenderer from "react-test-renderer";
3 | import { For } from "./react-loops.js";
4 |
5 | function expectRenderToEqual(actual, expected) {
6 | const consoleError = console.error;
7 | try {
8 | console.error = message => {
9 | throw new Error(message);
10 | };
11 | expect(TestRenderer.create(actual).toJSON()).toEqual(
12 | TestRenderer.create(expected).toJSON()
13 | );
14 | } finally {
15 | console.error = consoleError;
16 | }
17 | }
18 |
19 | function expectRenderToThrow(actual, error) {
20 | const consoleError = console.error;
21 | try {
22 | console.error = () => {};
23 | expect(() => TestRenderer.create(actual)).toThrow(error);
24 | } finally {
25 | console.error = consoleError;
26 | }
27 | }
28 |
29 | describe("react-loops", () => {
30 | describe("for-of", () => {
31 | it("loops an Array", () => {
32 | const list = ["A", "B", "C"];
33 | expectRenderToEqual(
34 | - {item}
} />,
35 | <>
36 | - A
37 | - B
38 | - C
39 | >
40 | );
41 | });
42 |
43 | it("Can use render-prop", () => {
44 | const list = ["A", "B", "C"];
45 | expectRenderToEqual(
46 | {item => - {item}
},
47 | <>
48 | - A
49 | - B
50 | - C
51 | >
52 | );
53 | });
54 |
55 | it("loops an Array-like", () => {
56 | const list = { length: 3, 0: "A", 1: "B", 2: "C" };
57 | expectRenderToEqual(
58 | - {item}
} />,
59 | <>
60 | - A
61 | - B
62 | - C
63 | >
64 | );
65 | });
66 |
67 | it("loops TypedArray", () => {
68 | const list = new Uint8Array(3);
69 | list[1] = 10;
70 | list[2] = 20;
71 | expectRenderToEqual(
72 | - {item}
} />,
73 | <>
74 | - {0}
75 | - {10}
76 | - {20}
77 | >
78 | );
79 | });
80 |
81 | it("loops an Iterable", () => {
82 | const list = new Set(["A", "B", "C"]);
83 | expectRenderToEqual(
84 | - {item}
} />,
85 | <>
86 | - A
87 | - B
88 | - C
89 | >
90 | );
91 | });
92 |
93 | it("loops null", () => {
94 | expectRenderToEqual( - {item}
} />, null);
95 | });
96 |
97 | it("loops with a non-element string return", () => {
98 | const list = ["A", "B", "C"];
99 | expectRenderToEqual(
100 | item} />,
101 | <>
102 | {"A"}
103 | {"B"}
104 | {"C"}
105 | >
106 | );
107 | });
108 |
109 | it("loops with a non-element Array return", () => {
110 | const list = ["A", "B", "C"];
111 | expectRenderToEqual(
112 | [- {item}
, - {item}
]}
115 | />,
116 | <>
117 | - A
118 | - A
119 | - B
120 | - B
121 | - C
122 | - C
123 | >
124 | );
125 | });
126 |
127 | it("loops an Array with metadata", () => {
128 | const list = ["A", "B", "C"];
129 | expectRenderToEqual(
130 | (
133 | -
134 | {item}
135 | {index}
136 | {length}
137 | {key}
138 | {isFirst}
139 | {isLast}
140 |
141 | )}
142 | />,
143 | <>
144 | -
145 | {"A"}
146 | {0}
147 | {3}
148 | {0}
149 | {true}
150 | {false}
151 |
152 | -
153 | {"B"}
154 | {1}
155 | {3}
156 | {1}
157 | {false}
158 | {false}
159 |
160 | -
161 | {"C"}
162 | {2}
163 | {3}
164 | {2}
165 | {false}
166 | {true}
167 |
168 | >
169 | );
170 | });
171 |
172 | it("loops an IterableIterator with metadata", () => {
173 | const list = new Map([["x", "A"], ["y", "B"], ["z", "C"]]);
174 | expectRenderToEqual(
175 | (
178 | -
179 | {key}
180 | {index}
181 | {length}
182 |
183 | )}
184 | />,
185 | <>
186 | -
187 | {"x"}
188 | {0}
189 | {3}
190 |
191 | -
192 | {"y"}
193 | {1}
194 | {3}
195 |
196 | -
197 | {"z"}
198 | {2}
199 | {3}
200 |
201 | >
202 | );
203 | });
204 |
205 | describe("ifEmpty", () => {
206 | it("is used with an empty Array", () => {
207 | const list = [];
208 | expectRenderToEqual(
209 | - {item}
}
212 | ifEmpty={Nothing here}
213 | />,
214 | <>
215 | Nothing here
216 | >
217 | );
218 | });
219 |
220 | it("allows a lazy function", () => {
221 | const list = [];
222 | expectRenderToEqual(
223 | - {item}
}
226 | ifEmpty={() => Nothing here}
227 | />,
228 | <>
229 | Nothing here
230 | >
231 | );
232 | });
233 |
234 | it("is used with null", () => {
235 | expectRenderToEqual(
236 | - {item}
}
239 | ifEmpty={Nothing here}
240 | />,
241 | <>
242 | Nothing here
243 | >
244 | );
245 | });
246 |
247 | it("is used with an empty iterable", () => {
248 | const set = new Set();
249 | expectRenderToEqual(
250 | - {item}
}
253 | ifEmpty={Nothing here}
254 | />,
255 | <>
256 | Nothing here
257 | >
258 | );
259 | });
260 | });
261 | });
262 |
263 | describe("for-in", () => {
264 | it("loops an Object", () => {
265 | const obj = { x: "A", y: "B", z: "C" };
266 | expectRenderToEqual(
267 | - {item}
} />,
268 | <>
269 | - A
270 | - B
271 | - C
272 | >
273 | );
274 | });
275 |
276 | it("loops an almost-array-like", () => {
277 | const anAlmostArrayLike = { 0: "A", 1: "B", 2: "C" };
278 | expectRenderToEqual(
279 | (
282 | -
283 | {item}
284 | {key}
285 |
286 | )}
287 | />,
288 | <>
289 | -
290 | {"A"}
291 | {"0"}
292 |
293 | -
294 | {"B"}
295 | {"1"}
296 |
297 | -
298 | {"C"}
299 | {"2"}
300 |
301 | >
302 | );
303 | });
304 |
305 | it("loops null", () => {
306 | expectRenderToEqual( - {item}
} />, null);
307 | });
308 |
309 | it("loops an Object with metadata", () => {
310 | const obj = { x: "A", y: "B", z: "C" };
311 | expectRenderToEqual(
312 | (
315 | -
316 | {item}
317 | {index}
318 | {length}
319 | {key}
320 | {isFirst}
321 | {isLast}
322 |
323 | )}
324 | />,
325 | <>
326 | -
327 | {"A"}
328 | {0}
329 | {3}
330 | {"x"}
331 | {true}
332 | {false}
333 |
334 | -
335 | {"B"}
336 | {1}
337 | {3}
338 | {"y"}
339 | {false}
340 | {false}
341 |
342 | -
343 | {"C"}
344 | {2}
345 | {3}
346 | {"z"}
347 | {false}
348 | {true}
349 |
350 | >
351 | );
352 | });
353 |
354 | describe("ifEmpty", () => {
355 | it("is used with an empty Object", () => {
356 | const obj = {};
357 | expectRenderToEqual(
358 | - {item}
}
361 | ifEmpty={Nothing here}
362 | />,
363 | <>
364 | Nothing here
365 | >
366 | );
367 | });
368 |
369 | it("allows a lazy function", () => {
370 | const obj = {};
371 | expectRenderToEqual(
372 | - {item}
}
375 | ifEmpty={() => Nothing here}
376 | />,
377 | <>
378 | Nothing here
379 | >
380 | );
381 | });
382 |
383 | it("is used with null", () => {
384 | expectRenderToEqual(
385 | - {item}
}
388 | ifEmpty={Nothing here}
389 | />,
390 | <>
391 | Nothing here
392 | >
393 | );
394 | });
395 | });
396 | });
397 |
398 | describe("error cases", () => {
399 | it("requires either of or in", () => {
400 | expectRenderToThrow(
401 | null} />,
402 | " expects either a Collection `of` or Object `in` prop."
403 | );
404 | });
405 |
406 | it("requires only one of of or in", () => {
407 | expectRenderToThrow(
408 | null} />,
409 | " expects either a Collection `of` or Object `in` prop."
410 | );
411 | });
412 |
413 | it("requires either as or render-prop", () => {
414 | expectRenderToThrow(
415 | ,
416 | " expects either a render-prop child or a Function `as` prop."
417 | );
418 | });
419 |
420 | it("requires only one of as or render-prop", () => {
421 | expectRenderToThrow(
422 | null}>
423 | {() => null}
424 | ,
425 | " expects either a render-prop child or a Function `as` prop."
426 | );
427 | });
428 |
429 | it("requires either as or render-prop as function", () => {
430 | expectRenderToThrow(
431 | ,
432 | " expects either a render-prop child or a Function `as` prop."
433 | );
434 | expectRenderToThrow(
435 | not a func,
436 | " expects either a render-prop child or a Function `as` prop."
437 | );
438 | });
439 |
440 | it("requires a collection in for-of loops", () => {
441 | const notACollection = { x: "A" };
442 | expectRenderToThrow(
443 | null} />,
444 | " expects an Array, Array-like, or Iterable collection. " +
445 | "Perhaps you meant to use with an Object?"
446 | );
447 | });
448 |
449 | it("requires a non-collection object in for-in loops", () => {
450 | const anArray = ["A", "B", "C"];
451 | const anIterable = new Set(["A", "B", "C"]);
452 | const anArrayLike = { length: 3, 0: "A", 1: "B", 2: "C" };
453 | const aFunction = () => ["A", "B", "C"];
454 | expectRenderToThrow(
455 | null} />,
456 | " expects a non-collection Object. " +
457 | "Perhaps you meant to use with a Collection?"
458 | );
459 | expectRenderToThrow(
460 | null} />,
461 | " expects a non-collection Object. " +
462 | "Perhaps you meant to use with a Collection?"
463 | );
464 | expectRenderToThrow(
465 | null} />,
466 | " expects a non-collection Object. " +
467 | "Perhaps you meant to use with a Collection?"
468 | );
469 | expectRenderToThrow(
470 | null} />,
471 | " expects a non-collection Object. " +
472 | "Perhaps you meant to use with a Collection?"
473 | );
474 | });
475 | });
476 | });
477 |
--------------------------------------------------------------------------------
/yarn.lock:
--------------------------------------------------------------------------------
1 | # THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY.
2 | # yarn lockfile v1
3 |
4 |
5 | "@babel/code-frame@^7.0.0":
6 | version "7.0.0"
7 | resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.0.0.tgz#06e2ab19bdb535385559aabb5ba59729482800f8"
8 | dependencies:
9 | "@babel/highlight" "^7.0.0"
10 |
11 | "@babel/core@^7.1.0", "@babel/core@^7.4.0":
12 | version "7.4.0"
13 | resolved "https://registry.yarnpkg.com/@babel/core/-/core-7.4.0.tgz#248fd6874b7d755010bfe61f557461d4f446d9e9"
14 | dependencies:
15 | "@babel/code-frame" "^7.0.0"
16 | "@babel/generator" "^7.4.0"
17 | "@babel/helpers" "^7.4.0"
18 | "@babel/parser" "^7.4.0"
19 | "@babel/template" "^7.4.0"
20 | "@babel/traverse" "^7.4.0"
21 | "@babel/types" "^7.4.0"
22 | convert-source-map "^1.1.0"
23 | debug "^4.1.0"
24 | json5 "^2.1.0"
25 | lodash "^4.17.11"
26 | resolve "^1.3.2"
27 | semver "^5.4.1"
28 | source-map "^0.5.0"
29 |
30 | "@babel/generator@^7.0.0", "@babel/generator@^7.4.0":
31 | version "7.4.0"
32 | resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.4.0.tgz#c230e79589ae7a729fd4631b9ded4dc220418196"
33 | dependencies:
34 | "@babel/types" "^7.4.0"
35 | jsesc "^2.5.1"
36 | lodash "^4.17.11"
37 | source-map "^0.5.0"
38 | trim-right "^1.0.1"
39 |
40 | "@babel/helper-annotate-as-pure@^7.0.0":
41 | version "7.0.0"
42 | resolved "https://registry.yarnpkg.com/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.0.0.tgz#323d39dd0b50e10c7c06ca7d7638e6864d8c5c32"
43 | dependencies:
44 | "@babel/types" "^7.0.0"
45 |
46 | "@babel/helper-builder-binary-assignment-operator-visitor@^7.1.0":
47 | version "7.1.0"
48 | resolved "https://registry.yarnpkg.com/@babel/helper-builder-binary-assignment-operator-visitor/-/helper-builder-binary-assignment-operator-visitor-7.1.0.tgz#6b69628dfe4087798e0c4ed98e3d4a6b2fbd2f5f"
49 | dependencies:
50 | "@babel/helper-explode-assignable-expression" "^7.1.0"
51 | "@babel/types" "^7.0.0"
52 |
53 | "@babel/helper-builder-react-jsx@^7.3.0":
54 | version "7.3.0"
55 | resolved "https://registry.yarnpkg.com/@babel/helper-builder-react-jsx/-/helper-builder-react-jsx-7.3.0.tgz#a1ac95a5d2b3e88ae5e54846bf462eeb81b318a4"
56 | dependencies:
57 | "@babel/types" "^7.3.0"
58 | esutils "^2.0.0"
59 |
60 | "@babel/helper-call-delegate@^7.4.0":
61 | version "7.4.0"
62 | resolved "https://registry.yarnpkg.com/@babel/helper-call-delegate/-/helper-call-delegate-7.4.0.tgz#f308eabe0d44f451217853aedf4dea5f6fe3294f"
63 | dependencies:
64 | "@babel/helper-hoist-variables" "^7.4.0"
65 | "@babel/traverse" "^7.4.0"
66 | "@babel/types" "^7.4.0"
67 |
68 | "@babel/helper-define-map@^7.4.0":
69 | version "7.4.0"
70 | resolved "https://registry.yarnpkg.com/@babel/helper-define-map/-/helper-define-map-7.4.0.tgz#cbfd8c1b2f12708e262c26f600cd16ed6a3bc6c9"
71 | dependencies:
72 | "@babel/helper-function-name" "^7.1.0"
73 | "@babel/types" "^7.4.0"
74 | lodash "^4.17.11"
75 |
76 | "@babel/helper-explode-assignable-expression@^7.1.0":
77 | version "7.1.0"
78 | resolved "https://registry.yarnpkg.com/@babel/helper-explode-assignable-expression/-/helper-explode-assignable-expression-7.1.0.tgz#537fa13f6f1674df745b0c00ec8fe4e99681c8f6"
79 | dependencies:
80 | "@babel/traverse" "^7.1.0"
81 | "@babel/types" "^7.0.0"
82 |
83 | "@babel/helper-function-name@^7.1.0":
84 | version "7.1.0"
85 | resolved "https://registry.yarnpkg.com/@babel/helper-function-name/-/helper-function-name-7.1.0.tgz#a0ceb01685f73355d4360c1247f582bfafc8ff53"
86 | dependencies:
87 | "@babel/helper-get-function-arity" "^7.0.0"
88 | "@babel/template" "^7.1.0"
89 | "@babel/types" "^7.0.0"
90 |
91 | "@babel/helper-get-function-arity@^7.0.0":
92 | version "7.0.0"
93 | resolved "https://registry.yarnpkg.com/@babel/helper-get-function-arity/-/helper-get-function-arity-7.0.0.tgz#83572d4320e2a4657263734113c42868b64e49c3"
94 | dependencies:
95 | "@babel/types" "^7.0.0"
96 |
97 | "@babel/helper-hoist-variables@^7.4.0":
98 | version "7.4.0"
99 | resolved "https://registry.yarnpkg.com/@babel/helper-hoist-variables/-/helper-hoist-variables-7.4.0.tgz#25b621399ae229869329730a62015bbeb0a6fbd6"
100 | dependencies:
101 | "@babel/types" "^7.4.0"
102 |
103 | "@babel/helper-member-expression-to-functions@^7.0.0":
104 | version "7.0.0"
105 | resolved "https://registry.yarnpkg.com/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.0.0.tgz#8cd14b0a0df7ff00f009e7d7a436945f47c7a16f"
106 | dependencies:
107 | "@babel/types" "^7.0.0"
108 |
109 | "@babel/helper-module-imports@^7.0.0":
110 | version "7.0.0"
111 | resolved "https://registry.yarnpkg.com/@babel/helper-module-imports/-/helper-module-imports-7.0.0.tgz#96081b7111e486da4d2cd971ad1a4fe216cc2e3d"
112 | dependencies:
113 | "@babel/types" "^7.0.0"
114 |
115 | "@babel/helper-module-transforms@^7.1.0":
116 | version "7.2.2"
117 | resolved "https://registry.yarnpkg.com/@babel/helper-module-transforms/-/helper-module-transforms-7.2.2.tgz#ab2f8e8d231409f8370c883d20c335190284b963"
118 | dependencies:
119 | "@babel/helper-module-imports" "^7.0.0"
120 | "@babel/helper-simple-access" "^7.1.0"
121 | "@babel/helper-split-export-declaration" "^7.0.0"
122 | "@babel/template" "^7.2.2"
123 | "@babel/types" "^7.2.2"
124 | lodash "^4.17.10"
125 |
126 | "@babel/helper-optimise-call-expression@^7.0.0":
127 | version "7.0.0"
128 | resolved "https://registry.yarnpkg.com/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.0.0.tgz#a2920c5702b073c15de51106200aa8cad20497d5"
129 | dependencies:
130 | "@babel/types" "^7.0.0"
131 |
132 | "@babel/helper-plugin-utils@^7.0.0":
133 | version "7.0.0"
134 | resolved "https://registry.yarnpkg.com/@babel/helper-plugin-utils/-/helper-plugin-utils-7.0.0.tgz#bbb3fbee98661c569034237cc03967ba99b4f250"
135 |
136 | "@babel/helper-regex@^7.0.0":
137 | version "7.0.0"
138 | resolved "https://registry.yarnpkg.com/@babel/helper-regex/-/helper-regex-7.0.0.tgz#2c1718923b57f9bbe64705ffe5640ac64d9bdb27"
139 | dependencies:
140 | lodash "^4.17.10"
141 |
142 | "@babel/helper-remap-async-to-generator@^7.1.0":
143 | version "7.1.0"
144 | resolved "https://registry.yarnpkg.com/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.1.0.tgz#361d80821b6f38da75bd3f0785ece20a88c5fe7f"
145 | dependencies:
146 | "@babel/helper-annotate-as-pure" "^7.0.0"
147 | "@babel/helper-wrap-function" "^7.1.0"
148 | "@babel/template" "^7.1.0"
149 | "@babel/traverse" "^7.1.0"
150 | "@babel/types" "^7.0.0"
151 |
152 | "@babel/helper-replace-supers@^7.1.0", "@babel/helper-replace-supers@^7.4.0":
153 | version "7.4.0"
154 | resolved "https://registry.yarnpkg.com/@babel/helper-replace-supers/-/helper-replace-supers-7.4.0.tgz#4f56adb6aedcd449d2da9399c2dcf0545463b64c"
155 | dependencies:
156 | "@babel/helper-member-expression-to-functions" "^7.0.0"
157 | "@babel/helper-optimise-call-expression" "^7.0.0"
158 | "@babel/traverse" "^7.4.0"
159 | "@babel/types" "^7.4.0"
160 |
161 | "@babel/helper-simple-access@^7.1.0":
162 | version "7.1.0"
163 | resolved "https://registry.yarnpkg.com/@babel/helper-simple-access/-/helper-simple-access-7.1.0.tgz#65eeb954c8c245beaa4e859da6188f39d71e585c"
164 | dependencies:
165 | "@babel/template" "^7.1.0"
166 | "@babel/types" "^7.0.0"
167 |
168 | "@babel/helper-split-export-declaration@^7.0.0", "@babel/helper-split-export-declaration@^7.4.0":
169 | version "7.4.0"
170 | resolved "https://registry.yarnpkg.com/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.4.0.tgz#571bfd52701f492920d63b7f735030e9a3e10b55"
171 | dependencies:
172 | "@babel/types" "^7.4.0"
173 |
174 | "@babel/helper-wrap-function@^7.1.0":
175 | version "7.2.0"
176 | resolved "https://registry.yarnpkg.com/@babel/helper-wrap-function/-/helper-wrap-function-7.2.0.tgz#c4e0012445769e2815b55296ead43a958549f6fa"
177 | dependencies:
178 | "@babel/helper-function-name" "^7.1.0"
179 | "@babel/template" "^7.1.0"
180 | "@babel/traverse" "^7.1.0"
181 | "@babel/types" "^7.2.0"
182 |
183 | "@babel/helpers@^7.4.0":
184 | version "7.4.2"
185 | resolved "https://registry.yarnpkg.com/@babel/helpers/-/helpers-7.4.2.tgz#3bdfa46a552ca77ef5a0f8551be5f0845ae989be"
186 | dependencies:
187 | "@babel/template" "^7.4.0"
188 | "@babel/traverse" "^7.4.0"
189 | "@babel/types" "^7.4.0"
190 |
191 | "@babel/highlight@^7.0.0":
192 | version "7.0.0"
193 | resolved "https://registry.yarnpkg.com/@babel/highlight/-/highlight-7.0.0.tgz#f710c38c8d458e6dd9a201afb637fcb781ce99e4"
194 | dependencies:
195 | chalk "^2.0.0"
196 | esutils "^2.0.2"
197 | js-tokens "^4.0.0"
198 |
199 | "@babel/parser@^7.0.0", "@babel/parser@^7.1.0", "@babel/parser@^7.4.0":
200 | version "7.4.2"
201 | resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.4.2.tgz#b4521a400cb5a871eab3890787b4bc1326d38d91"
202 |
203 | "@babel/plugin-proposal-async-generator-functions@^7.2.0":
204 | version "7.2.0"
205 | resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-async-generator-functions/-/plugin-proposal-async-generator-functions-7.2.0.tgz#b289b306669dce4ad20b0252889a15768c9d417e"
206 | dependencies:
207 | "@babel/helper-plugin-utils" "^7.0.0"
208 | "@babel/helper-remap-async-to-generator" "^7.1.0"
209 | "@babel/plugin-syntax-async-generators" "^7.2.0"
210 |
211 | "@babel/plugin-proposal-json-strings@^7.2.0":
212 | version "7.2.0"
213 | resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-json-strings/-/plugin-proposal-json-strings-7.2.0.tgz#568ecc446c6148ae6b267f02551130891e29f317"
214 | dependencies:
215 | "@babel/helper-plugin-utils" "^7.0.0"
216 | "@babel/plugin-syntax-json-strings" "^7.2.0"
217 |
218 | "@babel/plugin-proposal-object-rest-spread@^7.4.0":
219 | version "7.4.0"
220 | resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-object-rest-spread/-/plugin-proposal-object-rest-spread-7.4.0.tgz#e4960575205eadf2a1ab4e0c79f9504d5b82a97f"
221 | dependencies:
222 | "@babel/helper-plugin-utils" "^7.0.0"
223 | "@babel/plugin-syntax-object-rest-spread" "^7.2.0"
224 |
225 | "@babel/plugin-proposal-optional-catch-binding@^7.2.0":
226 | version "7.2.0"
227 | resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-optional-catch-binding/-/plugin-proposal-optional-catch-binding-7.2.0.tgz#135d81edb68a081e55e56ec48541ece8065c38f5"
228 | dependencies:
229 | "@babel/helper-plugin-utils" "^7.0.0"
230 | "@babel/plugin-syntax-optional-catch-binding" "^7.2.0"
231 |
232 | "@babel/plugin-proposal-unicode-property-regex@^7.4.0":
233 | version "7.4.0"
234 | resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-unicode-property-regex/-/plugin-proposal-unicode-property-regex-7.4.0.tgz#202d91ee977d760ef83f4f416b280d568be84623"
235 | dependencies:
236 | "@babel/helper-plugin-utils" "^7.0.0"
237 | "@babel/helper-regex" "^7.0.0"
238 | regexpu-core "^4.5.4"
239 |
240 | "@babel/plugin-syntax-async-generators@^7.2.0":
241 | version "7.2.0"
242 | resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-async-generators/-/plugin-syntax-async-generators-7.2.0.tgz#69e1f0db34c6f5a0cf7e2b3323bf159a76c8cb7f"
243 | dependencies:
244 | "@babel/helper-plugin-utils" "^7.0.0"
245 |
246 | "@babel/plugin-syntax-json-strings@^7.2.0":
247 | version "7.2.0"
248 | resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-json-strings/-/plugin-syntax-json-strings-7.2.0.tgz#72bd13f6ffe1d25938129d2a186b11fd62951470"
249 | dependencies:
250 | "@babel/helper-plugin-utils" "^7.0.0"
251 |
252 | "@babel/plugin-syntax-jsx@^7.2.0":
253 | version "7.2.0"
254 | resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.2.0.tgz#0b85a3b4bc7cdf4cc4b8bf236335b907ca22e7c7"
255 | dependencies:
256 | "@babel/helper-plugin-utils" "^7.0.0"
257 |
258 | "@babel/plugin-syntax-object-rest-spread@^7.0.0", "@babel/plugin-syntax-object-rest-spread@^7.2.0":
259 | version "7.2.0"
260 | resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-object-rest-spread/-/plugin-syntax-object-rest-spread-7.2.0.tgz#3b7a3e733510c57e820b9142a6579ac8b0dfad2e"
261 | dependencies:
262 | "@babel/helper-plugin-utils" "^7.0.0"
263 |
264 | "@babel/plugin-syntax-optional-catch-binding@^7.2.0":
265 | version "7.2.0"
266 | resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-optional-catch-binding/-/plugin-syntax-optional-catch-binding-7.2.0.tgz#a94013d6eda8908dfe6a477e7f9eda85656ecf5c"
267 | dependencies:
268 | "@babel/helper-plugin-utils" "^7.0.0"
269 |
270 | "@babel/plugin-transform-arrow-functions@^7.2.0":
271 | version "7.2.0"
272 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.2.0.tgz#9aeafbe4d6ffc6563bf8f8372091628f00779550"
273 | dependencies:
274 | "@babel/helper-plugin-utils" "^7.0.0"
275 |
276 | "@babel/plugin-transform-async-to-generator@^7.4.0":
277 | version "7.4.0"
278 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.4.0.tgz#234fe3e458dce95865c0d152d256119b237834b0"
279 | dependencies:
280 | "@babel/helper-module-imports" "^7.0.0"
281 | "@babel/helper-plugin-utils" "^7.0.0"
282 | "@babel/helper-remap-async-to-generator" "^7.1.0"
283 |
284 | "@babel/plugin-transform-block-scoped-functions@^7.2.0":
285 | version "7.2.0"
286 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.2.0.tgz#5d3cc11e8d5ddd752aa64c9148d0db6cb79fd190"
287 | dependencies:
288 | "@babel/helper-plugin-utils" "^7.0.0"
289 |
290 | "@babel/plugin-transform-block-scoping@^7.4.0":
291 | version "7.4.0"
292 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.4.0.tgz#164df3bb41e3deb954c4ca32ffa9fcaa56d30bcb"
293 | dependencies:
294 | "@babel/helper-plugin-utils" "^7.0.0"
295 | lodash "^4.17.11"
296 |
297 | "@babel/plugin-transform-classes@^7.4.0":
298 | version "7.4.0"
299 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-classes/-/plugin-transform-classes-7.4.0.tgz#e3428d3c8a3d01f33b10c529b998ba1707043d4d"
300 | dependencies:
301 | "@babel/helper-annotate-as-pure" "^7.0.0"
302 | "@babel/helper-define-map" "^7.4.0"
303 | "@babel/helper-function-name" "^7.1.0"
304 | "@babel/helper-optimise-call-expression" "^7.0.0"
305 | "@babel/helper-plugin-utils" "^7.0.0"
306 | "@babel/helper-replace-supers" "^7.4.0"
307 | "@babel/helper-split-export-declaration" "^7.4.0"
308 | globals "^11.1.0"
309 |
310 | "@babel/plugin-transform-computed-properties@^7.2.0":
311 | version "7.2.0"
312 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.2.0.tgz#83a7df6a658865b1c8f641d510c6f3af220216da"
313 | dependencies:
314 | "@babel/helper-plugin-utils" "^7.0.0"
315 |
316 | "@babel/plugin-transform-destructuring@^7.4.0":
317 | version "7.4.0"
318 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.4.0.tgz#acbb9b2418d290107db333f4d6cd8aa6aea00343"
319 | dependencies:
320 | "@babel/helper-plugin-utils" "^7.0.0"
321 |
322 | "@babel/plugin-transform-dotall-regex@^7.2.0":
323 | version "7.2.0"
324 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.2.0.tgz#f0aabb93d120a8ac61e925ea0ba440812dbe0e49"
325 | dependencies:
326 | "@babel/helper-plugin-utils" "^7.0.0"
327 | "@babel/helper-regex" "^7.0.0"
328 | regexpu-core "^4.1.3"
329 |
330 | "@babel/plugin-transform-duplicate-keys@^7.2.0":
331 | version "7.2.0"
332 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.2.0.tgz#d952c4930f312a4dbfff18f0b2914e60c35530b3"
333 | dependencies:
334 | "@babel/helper-plugin-utils" "^7.0.0"
335 |
336 | "@babel/plugin-transform-exponentiation-operator@^7.2.0":
337 | version "7.2.0"
338 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.2.0.tgz#a63868289e5b4007f7054d46491af51435766008"
339 | dependencies:
340 | "@babel/helper-builder-binary-assignment-operator-visitor" "^7.1.0"
341 | "@babel/helper-plugin-utils" "^7.0.0"
342 |
343 | "@babel/plugin-transform-for-of@^7.4.0":
344 | version "7.4.0"
345 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.4.0.tgz#56c8c36677f5d4a16b80b12f7b768de064aaeb5f"
346 | dependencies:
347 | "@babel/helper-plugin-utils" "^7.0.0"
348 |
349 | "@babel/plugin-transform-function-name@^7.2.0":
350 | version "7.2.0"
351 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.2.0.tgz#f7930362829ff99a3174c39f0afcc024ef59731a"
352 | dependencies:
353 | "@babel/helper-function-name" "^7.1.0"
354 | "@babel/helper-plugin-utils" "^7.0.0"
355 |
356 | "@babel/plugin-transform-literals@^7.2.0":
357 | version "7.2.0"
358 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-literals/-/plugin-transform-literals-7.2.0.tgz#690353e81f9267dad4fd8cfd77eafa86aba53ea1"
359 | dependencies:
360 | "@babel/helper-plugin-utils" "^7.0.0"
361 |
362 | "@babel/plugin-transform-modules-amd@^7.2.0":
363 | version "7.2.0"
364 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.2.0.tgz#82a9bce45b95441f617a24011dc89d12da7f4ee6"
365 | dependencies:
366 | "@babel/helper-module-transforms" "^7.1.0"
367 | "@babel/helper-plugin-utils" "^7.0.0"
368 |
369 | "@babel/plugin-transform-modules-commonjs@^7.4.0":
370 | version "7.4.0"
371 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.4.0.tgz#3b8ec61714d3b75d20c5ccfa157f2c2e087fd4ca"
372 | dependencies:
373 | "@babel/helper-module-transforms" "^7.1.0"
374 | "@babel/helper-plugin-utils" "^7.0.0"
375 | "@babel/helper-simple-access" "^7.1.0"
376 |
377 | "@babel/plugin-transform-modules-systemjs@^7.4.0":
378 | version "7.4.0"
379 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.4.0.tgz#c2495e55528135797bc816f5d50f851698c586a1"
380 | dependencies:
381 | "@babel/helper-hoist-variables" "^7.4.0"
382 | "@babel/helper-plugin-utils" "^7.0.0"
383 |
384 | "@babel/plugin-transform-modules-umd@^7.2.0":
385 | version "7.2.0"
386 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-umd/-/plugin-transform-modules-umd-7.2.0.tgz#7678ce75169f0877b8eb2235538c074268dd01ae"
387 | dependencies:
388 | "@babel/helper-module-transforms" "^7.1.0"
389 | "@babel/helper-plugin-utils" "^7.0.0"
390 |
391 | "@babel/plugin-transform-named-capturing-groups-regex@^7.4.2":
392 | version "7.4.2"
393 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.4.2.tgz#800391136d6cbcc80728dbdba3c1c6e46f86c12e"
394 | dependencies:
395 | regexp-tree "^0.1.0"
396 |
397 | "@babel/plugin-transform-new-target@^7.4.0":
398 | version "7.4.0"
399 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-new-target/-/plugin-transform-new-target-7.4.0.tgz#67658a1d944edb53c8d4fa3004473a0dd7838150"
400 | dependencies:
401 | "@babel/helper-plugin-utils" "^7.0.0"
402 |
403 | "@babel/plugin-transform-object-super@^7.2.0":
404 | version "7.2.0"
405 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.2.0.tgz#b35d4c10f56bab5d650047dad0f1d8e8814b6598"
406 | dependencies:
407 | "@babel/helper-plugin-utils" "^7.0.0"
408 | "@babel/helper-replace-supers" "^7.1.0"
409 |
410 | "@babel/plugin-transform-parameters@^7.4.0":
411 | version "7.4.0"
412 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.4.0.tgz#a1309426fac4eecd2a9439a4c8c35124a11a48a9"
413 | dependencies:
414 | "@babel/helper-call-delegate" "^7.4.0"
415 | "@babel/helper-get-function-arity" "^7.0.0"
416 | "@babel/helper-plugin-utils" "^7.0.0"
417 |
418 | "@babel/plugin-transform-react-display-name@^7.0.0":
419 | version "7.2.0"
420 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-display-name/-/plugin-transform-react-display-name-7.2.0.tgz#ebfaed87834ce8dc4279609a4f0c324c156e3eb0"
421 | dependencies:
422 | "@babel/helper-plugin-utils" "^7.0.0"
423 |
424 | "@babel/plugin-transform-react-jsx-self@^7.0.0":
425 | version "7.2.0"
426 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-jsx-self/-/plugin-transform-react-jsx-self-7.2.0.tgz#461e21ad9478f1031dd5e276108d027f1b5240ba"
427 | dependencies:
428 | "@babel/helper-plugin-utils" "^7.0.0"
429 | "@babel/plugin-syntax-jsx" "^7.2.0"
430 |
431 | "@babel/plugin-transform-react-jsx-source@^7.0.0":
432 | version "7.2.0"
433 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-jsx-source/-/plugin-transform-react-jsx-source-7.2.0.tgz#20c8c60f0140f5dd3cd63418d452801cf3f7180f"
434 | dependencies:
435 | "@babel/helper-plugin-utils" "^7.0.0"
436 | "@babel/plugin-syntax-jsx" "^7.2.0"
437 |
438 | "@babel/plugin-transform-react-jsx@^7.0.0":
439 | version "7.3.0"
440 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-jsx/-/plugin-transform-react-jsx-7.3.0.tgz#f2cab99026631c767e2745a5368b331cfe8f5290"
441 | dependencies:
442 | "@babel/helper-builder-react-jsx" "^7.3.0"
443 | "@babel/helper-plugin-utils" "^7.0.0"
444 | "@babel/plugin-syntax-jsx" "^7.2.0"
445 |
446 | "@babel/plugin-transform-regenerator@^7.4.0":
447 | version "7.4.0"
448 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.4.0.tgz#0780e27ee458cc3fdbad18294d703e972ae1f6d1"
449 | dependencies:
450 | regenerator-transform "^0.13.4"
451 |
452 | "@babel/plugin-transform-shorthand-properties@^7.2.0":
453 | version "7.2.0"
454 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.2.0.tgz#6333aee2f8d6ee7e28615457298934a3b46198f0"
455 | dependencies:
456 | "@babel/helper-plugin-utils" "^7.0.0"
457 |
458 | "@babel/plugin-transform-spread@^7.2.0":
459 | version "7.2.2"
460 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-spread/-/plugin-transform-spread-7.2.2.tgz#3103a9abe22f742b6d406ecd3cd49b774919b406"
461 | dependencies:
462 | "@babel/helper-plugin-utils" "^7.0.0"
463 |
464 | "@babel/plugin-transform-sticky-regex@^7.2.0":
465 | version "7.2.0"
466 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.2.0.tgz#a1e454b5995560a9c1e0d537dfc15061fd2687e1"
467 | dependencies:
468 | "@babel/helper-plugin-utils" "^7.0.0"
469 | "@babel/helper-regex" "^7.0.0"
470 |
471 | "@babel/plugin-transform-template-literals@^7.2.0":
472 | version "7.2.0"
473 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.2.0.tgz#d87ed01b8eaac7a92473f608c97c089de2ba1e5b"
474 | dependencies:
475 | "@babel/helper-annotate-as-pure" "^7.0.0"
476 | "@babel/helper-plugin-utils" "^7.0.0"
477 |
478 | "@babel/plugin-transform-typeof-symbol@^7.2.0":
479 | version "7.2.0"
480 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.2.0.tgz#117d2bcec2fbf64b4b59d1f9819894682d29f2b2"
481 | dependencies:
482 | "@babel/helper-plugin-utils" "^7.0.0"
483 |
484 | "@babel/plugin-transform-unicode-regex@^7.2.0":
485 | version "7.2.0"
486 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.2.0.tgz#4eb8db16f972f8abb5062c161b8b115546ade08b"
487 | dependencies:
488 | "@babel/helper-plugin-utils" "^7.0.0"
489 | "@babel/helper-regex" "^7.0.0"
490 | regexpu-core "^4.1.3"
491 |
492 | "@babel/preset-env@^7.4.2":
493 | version "7.4.2"
494 | resolved "https://registry.yarnpkg.com/@babel/preset-env/-/preset-env-7.4.2.tgz#2f5ba1de2daefa9dcca653848f96c7ce2e406676"
495 | dependencies:
496 | "@babel/helper-module-imports" "^7.0.0"
497 | "@babel/helper-plugin-utils" "^7.0.0"
498 | "@babel/plugin-proposal-async-generator-functions" "^7.2.0"
499 | "@babel/plugin-proposal-json-strings" "^7.2.0"
500 | "@babel/plugin-proposal-object-rest-spread" "^7.4.0"
501 | "@babel/plugin-proposal-optional-catch-binding" "^7.2.0"
502 | "@babel/plugin-proposal-unicode-property-regex" "^7.4.0"
503 | "@babel/plugin-syntax-async-generators" "^7.2.0"
504 | "@babel/plugin-syntax-json-strings" "^7.2.0"
505 | "@babel/plugin-syntax-object-rest-spread" "^7.2.0"
506 | "@babel/plugin-syntax-optional-catch-binding" "^7.2.0"
507 | "@babel/plugin-transform-arrow-functions" "^7.2.0"
508 | "@babel/plugin-transform-async-to-generator" "^7.4.0"
509 | "@babel/plugin-transform-block-scoped-functions" "^7.2.0"
510 | "@babel/plugin-transform-block-scoping" "^7.4.0"
511 | "@babel/plugin-transform-classes" "^7.4.0"
512 | "@babel/plugin-transform-computed-properties" "^7.2.0"
513 | "@babel/plugin-transform-destructuring" "^7.4.0"
514 | "@babel/plugin-transform-dotall-regex" "^7.2.0"
515 | "@babel/plugin-transform-duplicate-keys" "^7.2.0"
516 | "@babel/plugin-transform-exponentiation-operator" "^7.2.0"
517 | "@babel/plugin-transform-for-of" "^7.4.0"
518 | "@babel/plugin-transform-function-name" "^7.2.0"
519 | "@babel/plugin-transform-literals" "^7.2.0"
520 | "@babel/plugin-transform-modules-amd" "^7.2.0"
521 | "@babel/plugin-transform-modules-commonjs" "^7.4.0"
522 | "@babel/plugin-transform-modules-systemjs" "^7.4.0"
523 | "@babel/plugin-transform-modules-umd" "^7.2.0"
524 | "@babel/plugin-transform-named-capturing-groups-regex" "^7.4.2"
525 | "@babel/plugin-transform-new-target" "^7.4.0"
526 | "@babel/plugin-transform-object-super" "^7.2.0"
527 | "@babel/plugin-transform-parameters" "^7.4.0"
528 | "@babel/plugin-transform-regenerator" "^7.4.0"
529 | "@babel/plugin-transform-shorthand-properties" "^7.2.0"
530 | "@babel/plugin-transform-spread" "^7.2.0"
531 | "@babel/plugin-transform-sticky-regex" "^7.2.0"
532 | "@babel/plugin-transform-template-literals" "^7.2.0"
533 | "@babel/plugin-transform-typeof-symbol" "^7.2.0"
534 | "@babel/plugin-transform-unicode-regex" "^7.2.0"
535 | "@babel/types" "^7.4.0"
536 | browserslist "^4.4.2"
537 | core-js-compat "^3.0.0"
538 | invariant "^2.2.2"
539 | js-levenshtein "^1.1.3"
540 | semver "^5.3.0"
541 |
542 | "@babel/preset-react@^7.0.0":
543 | version "7.0.0"
544 | resolved "https://registry.yarnpkg.com/@babel/preset-react/-/preset-react-7.0.0.tgz#e86b4b3d99433c7b3e9e91747e2653958bc6b3c0"
545 | dependencies:
546 | "@babel/helper-plugin-utils" "^7.0.0"
547 | "@babel/plugin-transform-react-display-name" "^7.0.0"
548 | "@babel/plugin-transform-react-jsx" "^7.0.0"
549 | "@babel/plugin-transform-react-jsx-self" "^7.0.0"
550 | "@babel/plugin-transform-react-jsx-source" "^7.0.0"
551 |
552 | "@babel/template@^7.0.0", "@babel/template@^7.1.0", "@babel/template@^7.2.2", "@babel/template@^7.4.0":
553 | version "7.4.0"
554 | resolved "https://registry.yarnpkg.com/@babel/template/-/template-7.4.0.tgz#12474e9c077bae585c5d835a95c0b0b790c25c8b"
555 | dependencies:
556 | "@babel/code-frame" "^7.0.0"
557 | "@babel/parser" "^7.4.0"
558 | "@babel/types" "^7.4.0"
559 |
560 | "@babel/traverse@^7.0.0", "@babel/traverse@^7.1.0", "@babel/traverse@^7.4.0":
561 | version "7.4.0"
562 | resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.4.0.tgz#14006967dd1d2b3494cdd650c686db9daf0ddada"
563 | dependencies:
564 | "@babel/code-frame" "^7.0.0"
565 | "@babel/generator" "^7.4.0"
566 | "@babel/helper-function-name" "^7.1.0"
567 | "@babel/helper-split-export-declaration" "^7.4.0"
568 | "@babel/parser" "^7.4.0"
569 | "@babel/types" "^7.4.0"
570 | debug "^4.1.0"
571 | globals "^11.1.0"
572 | lodash "^4.17.11"
573 |
574 | "@babel/types@^7.0.0", "@babel/types@^7.2.0", "@babel/types@^7.2.2", "@babel/types@^7.3.0", "@babel/types@^7.4.0":
575 | version "7.4.0"
576 | resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.4.0.tgz#670724f77d24cce6cc7d8cf64599d511d164894c"
577 | dependencies:
578 | esutils "^2.0.2"
579 | lodash "^4.17.11"
580 | to-fast-properties "^2.0.0"
581 |
582 | "@cnakazawa/watch@^1.0.3":
583 | version "1.0.3"
584 | resolved "https://registry.yarnpkg.com/@cnakazawa/watch/-/watch-1.0.3.tgz#099139eaec7ebf07a27c1786a3ff64f39464d2ef"
585 | dependencies:
586 | exec-sh "^0.3.2"
587 | minimist "^1.2.0"
588 |
589 | "@jest/console@^24.3.0":
590 | version "24.3.0"
591 | resolved "https://registry.yarnpkg.com/@jest/console/-/console-24.3.0.tgz#7bd920d250988ba0bf1352c4493a48e1cb97671e"
592 | dependencies:
593 | "@jest/source-map" "^24.3.0"
594 | "@types/node" "*"
595 | chalk "^2.0.1"
596 | slash "^2.0.0"
597 |
598 | "@jest/core@^24.5.0":
599 | version "24.5.0"
600 | resolved "https://registry.yarnpkg.com/@jest/core/-/core-24.5.0.tgz#2cefc6a69e9ebcae1da8f7c75f8a257152ba1ec0"
601 | dependencies:
602 | "@jest/console" "^24.3.0"
603 | "@jest/reporters" "^24.5.0"
604 | "@jest/test-result" "^24.5.0"
605 | "@jest/transform" "^24.5.0"
606 | "@jest/types" "^24.5.0"
607 | ansi-escapes "^3.0.0"
608 | chalk "^2.0.1"
609 | exit "^0.1.2"
610 | graceful-fs "^4.1.15"
611 | jest-changed-files "^24.5.0"
612 | jest-config "^24.5.0"
613 | jest-haste-map "^24.5.0"
614 | jest-message-util "^24.5.0"
615 | jest-regex-util "^24.3.0"
616 | jest-resolve-dependencies "^24.5.0"
617 | jest-runner "^24.5.0"
618 | jest-runtime "^24.5.0"
619 | jest-snapshot "^24.5.0"
620 | jest-util "^24.5.0"
621 | jest-validate "^24.5.0"
622 | jest-watcher "^24.5.0"
623 | micromatch "^3.1.10"
624 | p-each-series "^1.0.0"
625 | pirates "^4.0.1"
626 | realpath-native "^1.1.0"
627 | rimraf "^2.5.4"
628 | strip-ansi "^5.0.0"
629 |
630 | "@jest/environment@^24.5.0":
631 | version "24.5.0"
632 | resolved "https://registry.yarnpkg.com/@jest/environment/-/environment-24.5.0.tgz#a2557f7808767abea3f9e4cc43a172122a63aca8"
633 | dependencies:
634 | "@jest/fake-timers" "^24.5.0"
635 | "@jest/transform" "^24.5.0"
636 | "@jest/types" "^24.5.0"
637 | "@types/node" "*"
638 | jest-mock "^24.5.0"
639 |
640 | "@jest/fake-timers@^24.5.0":
641 | version "24.5.0"
642 | resolved "https://registry.yarnpkg.com/@jest/fake-timers/-/fake-timers-24.5.0.tgz#4a29678b91fd0876144a58f8d46e6c62de0266f0"
643 | dependencies:
644 | "@jest/types" "^24.5.0"
645 | "@types/node" "*"
646 | jest-message-util "^24.5.0"
647 | jest-mock "^24.5.0"
648 |
649 | "@jest/reporters@^24.5.0":
650 | version "24.5.0"
651 | resolved "https://registry.yarnpkg.com/@jest/reporters/-/reporters-24.5.0.tgz#9363a210d0daa74696886d9cb294eb8b3ad9b4d9"
652 | dependencies:
653 | "@jest/environment" "^24.5.0"
654 | "@jest/test-result" "^24.5.0"
655 | "@jest/transform" "^24.5.0"
656 | "@jest/types" "^24.5.0"
657 | chalk "^2.0.1"
658 | exit "^0.1.2"
659 | glob "^7.1.2"
660 | istanbul-api "^2.1.1"
661 | istanbul-lib-coverage "^2.0.2"
662 | istanbul-lib-instrument "^3.0.1"
663 | istanbul-lib-source-maps "^3.0.1"
664 | jest-haste-map "^24.5.0"
665 | jest-resolve "^24.5.0"
666 | jest-runtime "^24.5.0"
667 | jest-util "^24.5.0"
668 | jest-worker "^24.4.0"
669 | node-notifier "^5.2.1"
670 | slash "^2.0.0"
671 | source-map "^0.6.0"
672 | string-length "^2.0.0"
673 |
674 | "@jest/source-map@^24.3.0":
675 | version "24.3.0"
676 | resolved "https://registry.yarnpkg.com/@jest/source-map/-/source-map-24.3.0.tgz#563be3aa4d224caf65ff77edc95cd1ca4da67f28"
677 | dependencies:
678 | callsites "^3.0.0"
679 | graceful-fs "^4.1.15"
680 | source-map "^0.6.0"
681 |
682 | "@jest/test-result@^24.5.0":
683 | version "24.5.0"
684 | resolved "https://registry.yarnpkg.com/@jest/test-result/-/test-result-24.5.0.tgz#ab66fb7741a04af3363443084e72ea84861a53f2"
685 | dependencies:
686 | "@jest/console" "^24.3.0"
687 | "@jest/types" "^24.5.0"
688 | "@types/istanbul-lib-coverage" "^1.1.0"
689 |
690 | "@jest/transform@^24.5.0":
691 | version "24.5.0"
692 | resolved "https://registry.yarnpkg.com/@jest/transform/-/transform-24.5.0.tgz#6709fc26db918e6af63a985f2cc3c464b4cf99d9"
693 | dependencies:
694 | "@babel/core" "^7.1.0"
695 | "@jest/types" "^24.5.0"
696 | babel-plugin-istanbul "^5.1.0"
697 | chalk "^2.0.1"
698 | convert-source-map "^1.4.0"
699 | fast-json-stable-stringify "^2.0.0"
700 | graceful-fs "^4.1.15"
701 | jest-haste-map "^24.5.0"
702 | jest-regex-util "^24.3.0"
703 | jest-util "^24.5.0"
704 | micromatch "^3.1.10"
705 | realpath-native "^1.1.0"
706 | slash "^2.0.0"
707 | source-map "^0.6.1"
708 | write-file-atomic "2.4.1"
709 |
710 | "@jest/types@^24.5.0":
711 | version "24.5.0"
712 | resolved "https://registry.yarnpkg.com/@jest/types/-/types-24.5.0.tgz#feee214a4d0167b0ca447284e95a57aa10b3ee95"
713 | dependencies:
714 | "@types/istanbul-lib-coverage" "^1.1.0"
715 | "@types/yargs" "^12.0.9"
716 |
717 | "@types/babel__core@^7.1.0":
718 | version "7.1.0"
719 | resolved "https://registry.yarnpkg.com/@types/babel__core/-/babel__core-7.1.0.tgz#710f2487dda4dcfd010ca6abb2b4dc7394365c51"
720 | dependencies:
721 | "@babel/parser" "^7.1.0"
722 | "@babel/types" "^7.0.0"
723 | "@types/babel__generator" "*"
724 | "@types/babel__template" "*"
725 | "@types/babel__traverse" "*"
726 |
727 | "@types/babel__generator@*":
728 | version "7.0.2"
729 | resolved "https://registry.yarnpkg.com/@types/babel__generator/-/babel__generator-7.0.2.tgz#d2112a6b21fad600d7674274293c85dce0cb47fc"
730 | dependencies:
731 | "@babel/types" "^7.0.0"
732 |
733 | "@types/babel__template@*":
734 | version "7.0.2"
735 | resolved "https://registry.yarnpkg.com/@types/babel__template/-/babel__template-7.0.2.tgz#4ff63d6b52eddac1de7b975a5223ed32ecea9307"
736 | dependencies:
737 | "@babel/parser" "^7.1.0"
738 | "@babel/types" "^7.0.0"
739 |
740 | "@types/babel__traverse@*", "@types/babel__traverse@^7.0.6":
741 | version "7.0.6"
742 | resolved "https://registry.yarnpkg.com/@types/babel__traverse/-/babel__traverse-7.0.6.tgz#328dd1a8fc4cfe3c8458be9477b219ea158fd7b2"
743 | dependencies:
744 | "@babel/types" "^7.3.0"
745 |
746 | "@types/istanbul-lib-coverage@^1.1.0":
747 | version "1.1.0"
748 | resolved "https://registry.yarnpkg.com/@types/istanbul-lib-coverage/-/istanbul-lib-coverage-1.1.0.tgz#2cc2ca41051498382b43157c8227fea60363f94a"
749 |
750 | "@types/node@*":
751 | version "11.13.0"
752 | resolved "https://registry.yarnpkg.com/@types/node/-/node-11.13.0.tgz#b0df8d6ef9b5001b2be3a94d909ce3c29a80f9e1"
753 |
754 | "@types/stack-utils@^1.0.1":
755 | version "1.0.1"
756 | resolved "https://registry.yarnpkg.com/@types/stack-utils/-/stack-utils-1.0.1.tgz#0a851d3bd96498fa25c33ab7278ed3bd65f06c3e"
757 |
758 | "@types/yargs@^12.0.2", "@types/yargs@^12.0.9":
759 | version "12.0.11"
760 | resolved "https://registry.yarnpkg.com/@types/yargs/-/yargs-12.0.11.tgz#a090d88e1f40a910e6443c95493c1c035c76ebdc"
761 |
762 | abab@^2.0.0:
763 | version "2.0.0"
764 | resolved "https://registry.yarnpkg.com/abab/-/abab-2.0.0.tgz#aba0ab4c5eee2d4c79d3487d85450fb2376ebb0f"
765 |
766 | acorn-globals@^4.1.0:
767 | version "4.3.0"
768 | resolved "https://registry.yarnpkg.com/acorn-globals/-/acorn-globals-4.3.0.tgz#e3b6f8da3c1552a95ae627571f7dd6923bb54103"
769 | dependencies:
770 | acorn "^6.0.1"
771 | acorn-walk "^6.0.1"
772 |
773 | acorn-walk@^6.0.1:
774 | version "6.1.1"
775 | resolved "https://registry.yarnpkg.com/acorn-walk/-/acorn-walk-6.1.1.tgz#d363b66f5fac5f018ff9c3a1e7b6f8e310cc3913"
776 |
777 | acorn@^5.5.3:
778 | version "5.7.3"
779 | resolved "https://registry.yarnpkg.com/acorn/-/acorn-5.7.3.tgz#67aa231bf8812974b85235a96771eb6bd07ea279"
780 |
781 | acorn@^6.0.1:
782 | version "6.1.1"
783 | resolved "https://registry.yarnpkg.com/acorn/-/acorn-6.1.1.tgz#7d25ae05bb8ad1f9b699108e1094ecd7884adc1f"
784 |
785 | ajv@^6.5.5:
786 | version "6.10.0"
787 | resolved "https://registry.yarnpkg.com/ajv/-/ajv-6.10.0.tgz#90d0d54439da587cd7e843bfb7045f50bd22bdf1"
788 | dependencies:
789 | fast-deep-equal "^2.0.1"
790 | fast-json-stable-stringify "^2.0.0"
791 | json-schema-traverse "^0.4.1"
792 | uri-js "^4.2.2"
793 |
794 | ansi-escapes@^3.0.0:
795 | version "3.2.0"
796 | resolved "https://registry.yarnpkg.com/ansi-escapes/-/ansi-escapes-3.2.0.tgz#8780b98ff9dbf5638152d1f1fe5c1d7b4442976b"
797 |
798 | ansi-regex@^2.0.0:
799 | version "2.1.1"
800 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-2.1.1.tgz#c3b33ab5ee360d86e0e628f0468ae7ef27d654df"
801 |
802 | ansi-regex@^3.0.0:
803 | version "3.0.0"
804 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-3.0.0.tgz#ed0317c322064f79466c02966bddb605ab37d998"
805 |
806 | ansi-regex@^4.0.0, ansi-regex@^4.1.0:
807 | version "4.1.0"
808 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-4.1.0.tgz#8b9f8f08cf1acb843756a839ca8c7e3168c51997"
809 |
810 | ansi-styles@^3.2.0, ansi-styles@^3.2.1:
811 | version "3.2.1"
812 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-3.2.1.tgz#41fbb20243e50b12be0f04b8dedbf07520ce841d"
813 | dependencies:
814 | color-convert "^1.9.0"
815 |
816 | anymatch@^2.0.0:
817 | version "2.0.0"
818 | resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-2.0.0.tgz#bcb24b4f37934d9aa7ac17b4adaf89e7c76ef2eb"
819 | dependencies:
820 | micromatch "^3.1.4"
821 | normalize-path "^2.1.1"
822 |
823 | append-transform@^1.0.0:
824 | version "1.0.0"
825 | resolved "https://registry.yarnpkg.com/append-transform/-/append-transform-1.0.0.tgz#046a52ae582a228bd72f58acfbe2967c678759ab"
826 | dependencies:
827 | default-require-extensions "^2.0.0"
828 |
829 | argparse@^1.0.7:
830 | version "1.0.10"
831 | resolved "https://registry.yarnpkg.com/argparse/-/argparse-1.0.10.tgz#bcd6791ea5ae09725e17e5ad988134cd40b3d911"
832 | dependencies:
833 | sprintf-js "~1.0.2"
834 |
835 | arr-diff@^4.0.0:
836 | version "4.0.0"
837 | resolved "https://registry.yarnpkg.com/arr-diff/-/arr-diff-4.0.0.tgz#d6461074febfec71e7e15235761a329a5dc7c520"
838 |
839 | arr-flatten@^1.1.0:
840 | version "1.1.0"
841 | resolved "https://registry.yarnpkg.com/arr-flatten/-/arr-flatten-1.1.0.tgz#36048bbff4e7b47e136644316c99669ea5ae91f1"
842 |
843 | arr-union@^3.1.0:
844 | version "3.1.0"
845 | resolved "https://registry.yarnpkg.com/arr-union/-/arr-union-3.1.0.tgz#e39b09aea9def866a8f206e288af63919bae39c4"
846 |
847 | array-equal@^1.0.0:
848 | version "1.0.0"
849 | resolved "https://registry.yarnpkg.com/array-equal/-/array-equal-1.0.0.tgz#8c2a5ef2472fd9ea742b04c77a75093ba2757c93"
850 |
851 | array-unique@^0.3.2:
852 | version "0.3.2"
853 | resolved "https://registry.yarnpkg.com/array-unique/-/array-unique-0.3.2.tgz#a894b75d4bc4f6cd679ef3244a9fd8f46ae2d428"
854 |
855 | arrify@^1.0.1:
856 | version "1.0.1"
857 | resolved "https://registry.yarnpkg.com/arrify/-/arrify-1.0.1.tgz#898508da2226f380df904728456849c1501a4b0d"
858 |
859 | asn1@~0.2.3:
860 | version "0.2.4"
861 | resolved "https://registry.yarnpkg.com/asn1/-/asn1-0.2.4.tgz#8d2475dfab553bb33e77b54e59e880bb8ce23136"
862 | dependencies:
863 | safer-buffer "~2.1.0"
864 |
865 | assert-plus@1.0.0, assert-plus@^1.0.0:
866 | version "1.0.0"
867 | resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-1.0.0.tgz#f12e0f3c5d77b0b1cdd9146942e4e96c1e4dd525"
868 |
869 | assign-symbols@^1.0.0:
870 | version "1.0.0"
871 | resolved "https://registry.yarnpkg.com/assign-symbols/-/assign-symbols-1.0.0.tgz#59667f41fadd4f20ccbc2bb96b8d4f7f78ec0367"
872 |
873 | astral-regex@^1.0.0:
874 | version "1.0.0"
875 | resolved "https://registry.yarnpkg.com/astral-regex/-/astral-regex-1.0.0.tgz#6c8c3fb827dd43ee3918f27b82782ab7658a6fd9"
876 |
877 | async-limiter@~1.0.0:
878 | version "1.0.0"
879 | resolved "https://registry.yarnpkg.com/async-limiter/-/async-limiter-1.0.0.tgz#78faed8c3d074ab81f22b4e985d79e8738f720f8"
880 |
881 | async@^2.6.1:
882 | version "2.6.2"
883 | resolved "https://registry.yarnpkg.com/async/-/async-2.6.2.tgz#18330ea7e6e313887f5d2f2a904bac6fe4dd5381"
884 | dependencies:
885 | lodash "^4.17.11"
886 |
887 | asynckit@^0.4.0:
888 | version "0.4.0"
889 | resolved "https://registry.yarnpkg.com/asynckit/-/asynckit-0.4.0.tgz#c79ed97f7f34cb8f2ba1bc9790bcc366474b4b79"
890 |
891 | atob@^2.1.1:
892 | version "2.1.2"
893 | resolved "https://registry.yarnpkg.com/atob/-/atob-2.1.2.tgz#6d9517eb9e030d2436666651e86bd9f6f13533c9"
894 |
895 | aws-sign2@~0.7.0:
896 | version "0.7.0"
897 | resolved "https://registry.yarnpkg.com/aws-sign2/-/aws-sign2-0.7.0.tgz#b46e890934a9591f2d2f6f86d7e6a9f1b3fe76a8"
898 |
899 | aws4@^1.8.0:
900 | version "1.8.0"
901 | resolved "https://registry.yarnpkg.com/aws4/-/aws4-1.8.0.tgz#f0e003d9ca9e7f59c7a508945d7b2ef9a04a542f"
902 |
903 | babel-jest@^24.5.0:
904 | version "24.5.0"
905 | resolved "https://registry.yarnpkg.com/babel-jest/-/babel-jest-24.5.0.tgz#0ea042789810c2bec9065f7c8ab4dc18e1d28559"
906 | dependencies:
907 | "@jest/transform" "^24.5.0"
908 | "@jest/types" "^24.5.0"
909 | "@types/babel__core" "^7.1.0"
910 | babel-plugin-istanbul "^5.1.0"
911 | babel-preset-jest "^24.3.0"
912 | chalk "^2.4.2"
913 | slash "^2.0.0"
914 |
915 | babel-plugin-istanbul@^5.1.0:
916 | version "5.1.1"
917 | resolved "https://registry.yarnpkg.com/babel-plugin-istanbul/-/babel-plugin-istanbul-5.1.1.tgz#7981590f1956d75d67630ba46f0c22493588c893"
918 | dependencies:
919 | find-up "^3.0.0"
920 | istanbul-lib-instrument "^3.0.0"
921 | test-exclude "^5.0.0"
922 |
923 | babel-plugin-jest-hoist@^24.3.0:
924 | version "24.3.0"
925 | resolved "https://registry.yarnpkg.com/babel-plugin-jest-hoist/-/babel-plugin-jest-hoist-24.3.0.tgz#f2e82952946f6e40bb0a75d266a3790d854c8b5b"
926 | dependencies:
927 | "@types/babel__traverse" "^7.0.6"
928 |
929 | babel-preset-jest@^24.3.0:
930 | version "24.3.0"
931 | resolved "https://registry.yarnpkg.com/babel-preset-jest/-/babel-preset-jest-24.3.0.tgz#db88497e18869f15b24d9c0e547d8e0ab950796d"
932 | dependencies:
933 | "@babel/plugin-syntax-object-rest-spread" "^7.0.0"
934 | babel-plugin-jest-hoist "^24.3.0"
935 |
936 | balanced-match@^1.0.0:
937 | version "1.0.0"
938 | resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.0.tgz#89b4d199ab2bee49de164ea02b89ce462d71b767"
939 |
940 | base@^0.11.1:
941 | version "0.11.2"
942 | resolved "https://registry.yarnpkg.com/base/-/base-0.11.2.tgz#7bde5ced145b6d551a90db87f83c558b4eb48a8f"
943 | dependencies:
944 | cache-base "^1.0.1"
945 | class-utils "^0.3.5"
946 | component-emitter "^1.2.1"
947 | define-property "^1.0.0"
948 | isobject "^3.0.1"
949 | mixin-deep "^1.2.0"
950 | pascalcase "^0.1.1"
951 |
952 | bcrypt-pbkdf@^1.0.0:
953 | version "1.0.2"
954 | resolved "https://registry.yarnpkg.com/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.2.tgz#a4301d389b6a43f9b67ff3ca11a3f6637e360e9e"
955 | dependencies:
956 | tweetnacl "^0.14.3"
957 |
958 | brace-expansion@^1.1.7:
959 | version "1.1.11"
960 | resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.11.tgz#3c7fcbf529d87226f3d2f52b966ff5271eb441dd"
961 | dependencies:
962 | balanced-match "^1.0.0"
963 | concat-map "0.0.1"
964 |
965 | braces@^2.3.1:
966 | version "2.3.2"
967 | resolved "https://registry.yarnpkg.com/braces/-/braces-2.3.2.tgz#5979fd3f14cd531565e5fa2df1abfff1dfaee729"
968 | dependencies:
969 | arr-flatten "^1.1.0"
970 | array-unique "^0.3.2"
971 | extend-shallow "^2.0.1"
972 | fill-range "^4.0.0"
973 | isobject "^3.0.1"
974 | repeat-element "^1.1.2"
975 | snapdragon "^0.8.1"
976 | snapdragon-node "^2.0.1"
977 | split-string "^3.0.2"
978 | to-regex "^3.0.1"
979 |
980 | browser-process-hrtime@^0.1.2:
981 | version "0.1.3"
982 | resolved "https://registry.yarnpkg.com/browser-process-hrtime/-/browser-process-hrtime-0.1.3.tgz#616f00faef1df7ec1b5bf9cfe2bdc3170f26c7b4"
983 |
984 | browser-resolve@^1.11.3:
985 | version "1.11.3"
986 | resolved "https://registry.yarnpkg.com/browser-resolve/-/browser-resolve-1.11.3.tgz#9b7cbb3d0f510e4cb86bdbd796124d28b5890af6"
987 | dependencies:
988 | resolve "1.1.7"
989 |
990 | browserslist@^4.4.2, browserslist@^4.5.1:
991 | version "4.5.3"
992 | resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-4.5.3.tgz#969495c410314bc89f14e748505e58be968080f1"
993 | dependencies:
994 | caniuse-lite "^1.0.30000955"
995 | electron-to-chromium "^1.3.122"
996 | node-releases "^1.1.12"
997 |
998 | bser@^2.0.0:
999 | version "2.0.0"
1000 | resolved "https://registry.yarnpkg.com/bser/-/bser-2.0.0.tgz#9ac78d3ed5d915804fd87acb158bc797147a1719"
1001 | dependencies:
1002 | node-int64 "^0.4.0"
1003 |
1004 | buffer-from@^1.0.0:
1005 | version "1.1.1"
1006 | resolved "https://registry.yarnpkg.com/buffer-from/-/buffer-from-1.1.1.tgz#32713bc028f75c02fdb710d7c7bcec1f2c6070ef"
1007 |
1008 | cache-base@^1.0.1:
1009 | version "1.0.1"
1010 | resolved "https://registry.yarnpkg.com/cache-base/-/cache-base-1.0.1.tgz#0a7f46416831c8b662ee36fe4e7c59d76f666ab2"
1011 | dependencies:
1012 | collection-visit "^1.0.0"
1013 | component-emitter "^1.2.1"
1014 | get-value "^2.0.6"
1015 | has-value "^1.0.0"
1016 | isobject "^3.0.1"
1017 | set-value "^2.0.0"
1018 | to-object-path "^0.3.0"
1019 | union-value "^1.0.0"
1020 | unset-value "^1.0.0"
1021 |
1022 | callsites@^3.0.0:
1023 | version "3.0.0"
1024 | resolved "https://registry.yarnpkg.com/callsites/-/callsites-3.0.0.tgz#fb7eb569b72ad7a45812f93fd9430a3e410b3dd3"
1025 |
1026 | camelcase@^5.0.0:
1027 | version "5.3.0"
1028 | resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-5.3.0.tgz#0a110882cbeba41f72f99fcf918f4a0a92a13ebf"
1029 |
1030 | caniuse-lite@^1.0.30000955:
1031 | version "1.0.30000955"
1032 | resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30000955.tgz#360fdb9a1e41d6dd996130411334e44a39e4446d"
1033 |
1034 | capture-exit@^2.0.0:
1035 | version "2.0.0"
1036 | resolved "https://registry.yarnpkg.com/capture-exit/-/capture-exit-2.0.0.tgz#fb953bfaebeb781f62898239dabb426d08a509a4"
1037 | dependencies:
1038 | rsvp "^4.8.4"
1039 |
1040 | caseless@~0.12.0:
1041 | version "0.12.0"
1042 | resolved "https://registry.yarnpkg.com/caseless/-/caseless-0.12.0.tgz#1b681c21ff84033c826543090689420d187151dc"
1043 |
1044 | chalk@^2.0.0, chalk@^2.0.1, chalk@^2.4.2:
1045 | version "2.4.2"
1046 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-2.4.2.tgz#cd42541677a54333cf541a49108c1432b44c9424"
1047 | dependencies:
1048 | ansi-styles "^3.2.1"
1049 | escape-string-regexp "^1.0.5"
1050 | supports-color "^5.3.0"
1051 |
1052 | ci-info@^2.0.0:
1053 | version "2.0.0"
1054 | resolved "https://registry.yarnpkg.com/ci-info/-/ci-info-2.0.0.tgz#67a9e964be31a51e15e5010d58e6f12834002f46"
1055 |
1056 | class-utils@^0.3.5:
1057 | version "0.3.6"
1058 | resolved "https://registry.yarnpkg.com/class-utils/-/class-utils-0.3.6.tgz#f93369ae8b9a7ce02fd41faad0ca83033190c463"
1059 | dependencies:
1060 | arr-union "^3.1.0"
1061 | define-property "^0.2.5"
1062 | isobject "^3.0.0"
1063 | static-extend "^0.1.1"
1064 |
1065 | cliui@^4.0.0:
1066 | version "4.1.0"
1067 | resolved "https://registry.yarnpkg.com/cliui/-/cliui-4.1.0.tgz#348422dbe82d800b3022eef4f6ac10bf2e4d1b49"
1068 | dependencies:
1069 | string-width "^2.1.1"
1070 | strip-ansi "^4.0.0"
1071 | wrap-ansi "^2.0.0"
1072 |
1073 | co@^4.6.0:
1074 | version "4.6.0"
1075 | resolved "https://registry.yarnpkg.com/co/-/co-4.6.0.tgz#6ea6bdf3d853ae54ccb8e47bfa0bf3f9031fb184"
1076 |
1077 | code-point-at@^1.0.0:
1078 | version "1.1.0"
1079 | resolved "https://registry.yarnpkg.com/code-point-at/-/code-point-at-1.1.0.tgz#0d070b4d043a5bea33a2f1a40e2edb3d9a4ccf77"
1080 |
1081 | collection-visit@^1.0.0:
1082 | version "1.0.0"
1083 | resolved "https://registry.yarnpkg.com/collection-visit/-/collection-visit-1.0.0.tgz#4bc0373c164bc3291b4d368c829cf1a80a59dca0"
1084 | dependencies:
1085 | map-visit "^1.0.0"
1086 | object-visit "^1.0.0"
1087 |
1088 | color-convert@^1.9.0:
1089 | version "1.9.3"
1090 | resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-1.9.3.tgz#bb71850690e1f136567de629d2d5471deda4c1e8"
1091 | dependencies:
1092 | color-name "1.1.3"
1093 |
1094 | color-name@1.1.3:
1095 | version "1.1.3"
1096 | resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.3.tgz#a7d0558bd89c42f795dd42328f740831ca53bc25"
1097 |
1098 | combined-stream@^1.0.6, combined-stream@~1.0.6:
1099 | version "1.0.7"
1100 | resolved "https://registry.yarnpkg.com/combined-stream/-/combined-stream-1.0.7.tgz#2d1d24317afb8abe95d6d2c0b07b57813539d828"
1101 | dependencies:
1102 | delayed-stream "~1.0.0"
1103 |
1104 | commander@~2.19.0:
1105 | version "2.19.0"
1106 | resolved "https://registry.yarnpkg.com/commander/-/commander-2.19.0.tgz#f6198aa84e5b83c46054b94ddedbfed5ee9ff12a"
1107 |
1108 | compare-versions@^3.2.1:
1109 | version "3.4.0"
1110 | resolved "https://registry.yarnpkg.com/compare-versions/-/compare-versions-3.4.0.tgz#e0747df5c9cb7f054d6d3dc3e1dbc444f9e92b26"
1111 |
1112 | component-emitter@^1.2.1:
1113 | version "1.2.1"
1114 | resolved "https://registry.yarnpkg.com/component-emitter/-/component-emitter-1.2.1.tgz#137918d6d78283f7df7a6b7c5a63e140e69425e6"
1115 |
1116 | concat-map@0.0.1:
1117 | version "0.0.1"
1118 | resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b"
1119 |
1120 | convert-source-map@^1.1.0, convert-source-map@^1.4.0:
1121 | version "1.6.0"
1122 | resolved "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-1.6.0.tgz#51b537a8c43e0f04dec1993bffcdd504e758ac20"
1123 | dependencies:
1124 | safe-buffer "~5.1.1"
1125 |
1126 | copy-descriptor@^0.1.0:
1127 | version "0.1.1"
1128 | resolved "https://registry.yarnpkg.com/copy-descriptor/-/copy-descriptor-0.1.1.tgz#676f6eb3c39997c2ee1ac3a924fd6124748f578d"
1129 |
1130 | core-js-compat@^3.0.0:
1131 | version "3.0.0"
1132 | resolved "https://registry.yarnpkg.com/core-js-compat/-/core-js-compat-3.0.0.tgz#cd9810b8000742535a4a43773866185e310bd4f7"
1133 | dependencies:
1134 | browserslist "^4.5.1"
1135 | core-js "3.0.0"
1136 | core-js-pure "3.0.0"
1137 | semver "^5.6.0"
1138 |
1139 | core-js-pure@3.0.0:
1140 | version "3.0.0"
1141 | resolved "https://registry.yarnpkg.com/core-js-pure/-/core-js-pure-3.0.0.tgz#a5679adb4875427c8c0488afc93e6f5b7125859b"
1142 |
1143 | core-js@3.0.0:
1144 | version "3.0.0"
1145 | resolved "https://registry.yarnpkg.com/core-js/-/core-js-3.0.0.tgz#a8dbfa978d29bfc263bfb66c556d0ca924c28957"
1146 |
1147 | core-util-is@1.0.2, core-util-is@~1.0.0:
1148 | version "1.0.2"
1149 | resolved "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.2.tgz#b5fd54220aa2bc5ab57aab7140c940754503c1a7"
1150 |
1151 | coveralls@^3.0.3:
1152 | version "3.0.3"
1153 | resolved "https://registry.yarnpkg.com/coveralls/-/coveralls-3.0.3.tgz#83b1c64aea1c6afa69beaf50b55ac1bc4d13e2b8"
1154 | integrity sha512-viNfeGlda2zJr8Gj1zqXpDMRjw9uM54p7wzZdvLRyOgnAfCe974Dq4veZkjJdxQXbmdppu6flEajFYseHYaUhg==
1155 | dependencies:
1156 | growl "~> 1.10.0"
1157 | js-yaml "^3.11.0"
1158 | lcov-parse "^0.0.10"
1159 | log-driver "^1.2.7"
1160 | minimist "^1.2.0"
1161 | request "^2.86.0"
1162 |
1163 | cross-spawn@^6.0.0:
1164 | version "6.0.5"
1165 | resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-6.0.5.tgz#4a5ec7c64dfae22c3a14124dbacdee846d80cbc4"
1166 | dependencies:
1167 | nice-try "^1.0.4"
1168 | path-key "^2.0.1"
1169 | semver "^5.5.0"
1170 | shebang-command "^1.2.0"
1171 | which "^1.2.9"
1172 |
1173 | cssom@0.3.x, "cssom@>= 0.3.2 < 0.4.0":
1174 | version "0.3.6"
1175 | resolved "https://registry.yarnpkg.com/cssom/-/cssom-0.3.6.tgz#f85206cee04efa841f3c5982a74ba96ab20d65ad"
1176 |
1177 | cssstyle@^1.0.0:
1178 | version "1.2.2"
1179 | resolved "https://registry.yarnpkg.com/cssstyle/-/cssstyle-1.2.2.tgz#427ea4d585b18624f6fdbf9de7a2a1a3ba713077"
1180 | dependencies:
1181 | cssom "0.3.x"
1182 |
1183 | dashdash@^1.12.0:
1184 | version "1.14.1"
1185 | resolved "https://registry.yarnpkg.com/dashdash/-/dashdash-1.14.1.tgz#853cfa0f7cbe2fed5de20326b8dd581035f6e2f0"
1186 | dependencies:
1187 | assert-plus "^1.0.0"
1188 |
1189 | data-urls@^1.0.0:
1190 | version "1.1.0"
1191 | resolved "https://registry.yarnpkg.com/data-urls/-/data-urls-1.1.0.tgz#15ee0582baa5e22bb59c77140da8f9c76963bbfe"
1192 | dependencies:
1193 | abab "^2.0.0"
1194 | whatwg-mimetype "^2.2.0"
1195 | whatwg-url "^7.0.0"
1196 |
1197 | debug@^2.2.0, debug@^2.3.3:
1198 | version "2.6.9"
1199 | resolved "https://registry.yarnpkg.com/debug/-/debug-2.6.9.tgz#5d128515df134ff327e90a4c93f4e077a536341f"
1200 | dependencies:
1201 | ms "2.0.0"
1202 |
1203 | debug@^4.1.0, debug@^4.1.1:
1204 | version "4.1.1"
1205 | resolved "https://registry.yarnpkg.com/debug/-/debug-4.1.1.tgz#3b72260255109c6b589cee050f1d516139664791"
1206 | dependencies:
1207 | ms "^2.1.1"
1208 |
1209 | decamelize@^1.2.0:
1210 | version "1.2.0"
1211 | resolved "https://registry.yarnpkg.com/decamelize/-/decamelize-1.2.0.tgz#f6534d15148269b20352e7bee26f501f9a191290"
1212 |
1213 | decode-uri-component@^0.2.0:
1214 | version "0.2.0"
1215 | resolved "https://registry.yarnpkg.com/decode-uri-component/-/decode-uri-component-0.2.0.tgz#eb3913333458775cb84cd1a1fae062106bb87545"
1216 |
1217 | deep-is@~0.1.3:
1218 | version "0.1.3"
1219 | resolved "https://registry.yarnpkg.com/deep-is/-/deep-is-0.1.3.tgz#b369d6fb5dbc13eecf524f91b070feedc357cf34"
1220 |
1221 | default-require-extensions@^2.0.0:
1222 | version "2.0.0"
1223 | resolved "https://registry.yarnpkg.com/default-require-extensions/-/default-require-extensions-2.0.0.tgz#f5f8fbb18a7d6d50b21f641f649ebb522cfe24f7"
1224 | dependencies:
1225 | strip-bom "^3.0.0"
1226 |
1227 | define-properties@^1.1.2:
1228 | version "1.1.3"
1229 | resolved "https://registry.yarnpkg.com/define-properties/-/define-properties-1.1.3.tgz#cf88da6cbee26fe6db7094f61d870cbd84cee9f1"
1230 | dependencies:
1231 | object-keys "^1.0.12"
1232 |
1233 | define-property@^0.2.5:
1234 | version "0.2.5"
1235 | resolved "https://registry.yarnpkg.com/define-property/-/define-property-0.2.5.tgz#c35b1ef918ec3c990f9a5bc57be04aacec5c8116"
1236 | dependencies:
1237 | is-descriptor "^0.1.0"
1238 |
1239 | define-property@^1.0.0:
1240 | version "1.0.0"
1241 | resolved "https://registry.yarnpkg.com/define-property/-/define-property-1.0.0.tgz#769ebaaf3f4a63aad3af9e8d304c9bbe79bfb0e6"
1242 | dependencies:
1243 | is-descriptor "^1.0.0"
1244 |
1245 | define-property@^2.0.2:
1246 | version "2.0.2"
1247 | resolved "https://registry.yarnpkg.com/define-property/-/define-property-2.0.2.tgz#d459689e8d654ba77e02a817f8710d702cb16e9d"
1248 | dependencies:
1249 | is-descriptor "^1.0.2"
1250 | isobject "^3.0.1"
1251 |
1252 | delayed-stream@~1.0.0:
1253 | version "1.0.0"
1254 | resolved "https://registry.yarnpkg.com/delayed-stream/-/delayed-stream-1.0.0.tgz#df3ae199acadfb7d440aaae0b29e2272b24ec619"
1255 |
1256 | detect-newline@^2.1.0:
1257 | version "2.1.0"
1258 | resolved "https://registry.yarnpkg.com/detect-newline/-/detect-newline-2.1.0.tgz#f41f1c10be4b00e87b5f13da680759f2c5bfd3e2"
1259 |
1260 | diff-sequences@^24.3.0:
1261 | version "24.3.0"
1262 | resolved "https://registry.yarnpkg.com/diff-sequences/-/diff-sequences-24.3.0.tgz#0f20e8a1df1abddaf4d9c226680952e64118b975"
1263 |
1264 | domexception@^1.0.1:
1265 | version "1.0.1"
1266 | resolved "https://registry.yarnpkg.com/domexception/-/domexception-1.0.1.tgz#937442644ca6a31261ef36e3ec677fe805582c90"
1267 | dependencies:
1268 | webidl-conversions "^4.0.2"
1269 |
1270 | ecc-jsbn@~0.1.1:
1271 | version "0.1.2"
1272 | resolved "https://registry.yarnpkg.com/ecc-jsbn/-/ecc-jsbn-0.1.2.tgz#3a83a904e54353287874c564b7549386849a98c9"
1273 | dependencies:
1274 | jsbn "~0.1.0"
1275 | safer-buffer "^2.1.0"
1276 |
1277 | electron-to-chromium@^1.3.122:
1278 | version "1.3.122"
1279 | resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.3.122.tgz#b32a0805f48557bd3c3b8104eadc7fa511b14a9a"
1280 |
1281 | end-of-stream@^1.1.0:
1282 | version "1.4.1"
1283 | resolved "https://registry.yarnpkg.com/end-of-stream/-/end-of-stream-1.4.1.tgz#ed29634d19baba463b6ce6b80a37213eab71ec43"
1284 | dependencies:
1285 | once "^1.4.0"
1286 |
1287 | error-ex@^1.3.1:
1288 | version "1.3.2"
1289 | resolved "https://registry.yarnpkg.com/error-ex/-/error-ex-1.3.2.tgz#b4ac40648107fdcdcfae242f428bea8a14d4f1bf"
1290 | dependencies:
1291 | is-arrayish "^0.2.1"
1292 |
1293 | es-abstract@^1.5.1:
1294 | version "1.13.0"
1295 | resolved "https://registry.yarnpkg.com/es-abstract/-/es-abstract-1.13.0.tgz#ac86145fdd5099d8dd49558ccba2eaf9b88e24e9"
1296 | dependencies:
1297 | es-to-primitive "^1.2.0"
1298 | function-bind "^1.1.1"
1299 | has "^1.0.3"
1300 | is-callable "^1.1.4"
1301 | is-regex "^1.0.4"
1302 | object-keys "^1.0.12"
1303 |
1304 | es-to-primitive@^1.2.0:
1305 | version "1.2.0"
1306 | resolved "https://registry.yarnpkg.com/es-to-primitive/-/es-to-primitive-1.2.0.tgz#edf72478033456e8dda8ef09e00ad9650707f377"
1307 | dependencies:
1308 | is-callable "^1.1.4"
1309 | is-date-object "^1.0.1"
1310 | is-symbol "^1.0.2"
1311 |
1312 | escape-string-regexp@^1.0.5:
1313 | version "1.0.5"
1314 | resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4"
1315 |
1316 | escodegen@^1.9.1:
1317 | version "1.11.1"
1318 | resolved "https://registry.yarnpkg.com/escodegen/-/escodegen-1.11.1.tgz#c485ff8d6b4cdb89e27f4a856e91f118401ca510"
1319 | dependencies:
1320 | esprima "^3.1.3"
1321 | estraverse "^4.2.0"
1322 | esutils "^2.0.2"
1323 | optionator "^0.8.1"
1324 | optionalDependencies:
1325 | source-map "~0.6.1"
1326 |
1327 | esprima@^3.1.3:
1328 | version "3.1.3"
1329 | resolved "https://registry.yarnpkg.com/esprima/-/esprima-3.1.3.tgz#fdca51cee6133895e3c88d535ce49dbff62a4633"
1330 |
1331 | esprima@^4.0.0:
1332 | version "4.0.1"
1333 | resolved "https://registry.yarnpkg.com/esprima/-/esprima-4.0.1.tgz#13b04cdb3e6c5d19df91ab6987a8695619b0aa71"
1334 |
1335 | estraverse@^4.2.0:
1336 | version "4.2.0"
1337 | resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-4.2.0.tgz#0dee3fed31fcd469618ce7342099fc1afa0bdb13"
1338 |
1339 | esutils@^2.0.0, esutils@^2.0.2:
1340 | version "2.0.2"
1341 | resolved "https://registry.yarnpkg.com/esutils/-/esutils-2.0.2.tgz#0abf4f1caa5bcb1f7a9d8acc6dea4faaa04bac9b"
1342 |
1343 | exec-sh@^0.3.2:
1344 | version "0.3.2"
1345 | resolved "https://registry.yarnpkg.com/exec-sh/-/exec-sh-0.3.2.tgz#6738de2eb7c8e671d0366aea0b0db8c6f7d7391b"
1346 |
1347 | execa@^1.0.0:
1348 | version "1.0.0"
1349 | resolved "https://registry.yarnpkg.com/execa/-/execa-1.0.0.tgz#c6236a5bb4df6d6f15e88e7f017798216749ddd8"
1350 | dependencies:
1351 | cross-spawn "^6.0.0"
1352 | get-stream "^4.0.0"
1353 | is-stream "^1.1.0"
1354 | npm-run-path "^2.0.0"
1355 | p-finally "^1.0.0"
1356 | signal-exit "^3.0.0"
1357 | strip-eof "^1.0.0"
1358 |
1359 | exit@^0.1.2:
1360 | version "0.1.2"
1361 | resolved "https://registry.yarnpkg.com/exit/-/exit-0.1.2.tgz#0632638f8d877cc82107d30a0fff1a17cba1cd0c"
1362 |
1363 | expand-brackets@^2.1.4:
1364 | version "2.1.4"
1365 | resolved "https://registry.yarnpkg.com/expand-brackets/-/expand-brackets-2.1.4.tgz#b77735e315ce30f6b6eff0f83b04151a22449622"
1366 | dependencies:
1367 | debug "^2.3.3"
1368 | define-property "^0.2.5"
1369 | extend-shallow "^2.0.1"
1370 | posix-character-classes "^0.1.0"
1371 | regex-not "^1.0.0"
1372 | snapdragon "^0.8.1"
1373 | to-regex "^3.0.1"
1374 |
1375 | expect@^24.5.0:
1376 | version "24.5.0"
1377 | resolved "https://registry.yarnpkg.com/expect/-/expect-24.5.0.tgz#492fb0df8378d8474cc84b827776b069f46294ed"
1378 | dependencies:
1379 | "@jest/types" "^24.5.0"
1380 | ansi-styles "^3.2.0"
1381 | jest-get-type "^24.3.0"
1382 | jest-matcher-utils "^24.5.0"
1383 | jest-message-util "^24.5.0"
1384 | jest-regex-util "^24.3.0"
1385 |
1386 | extend-shallow@^2.0.1:
1387 | version "2.0.1"
1388 | resolved "https://registry.yarnpkg.com/extend-shallow/-/extend-shallow-2.0.1.tgz#51af7d614ad9a9f610ea1bafbb989d6b1c56890f"
1389 | dependencies:
1390 | is-extendable "^0.1.0"
1391 |
1392 | extend-shallow@^3.0.0, extend-shallow@^3.0.2:
1393 | version "3.0.2"
1394 | resolved "https://registry.yarnpkg.com/extend-shallow/-/extend-shallow-3.0.2.tgz#26a71aaf073b39fb2127172746131c2704028db8"
1395 | dependencies:
1396 | assign-symbols "^1.0.0"
1397 | is-extendable "^1.0.1"
1398 |
1399 | extend@~3.0.2:
1400 | version "3.0.2"
1401 | resolved "https://registry.yarnpkg.com/extend/-/extend-3.0.2.tgz#f8b1136b4071fbd8eb140aff858b1019ec2915fa"
1402 |
1403 | extglob@^2.0.4:
1404 | version "2.0.4"
1405 | resolved "https://registry.yarnpkg.com/extglob/-/extglob-2.0.4.tgz#ad00fe4dc612a9232e8718711dc5cb5ab0285543"
1406 | dependencies:
1407 | array-unique "^0.3.2"
1408 | define-property "^1.0.0"
1409 | expand-brackets "^2.1.4"
1410 | extend-shallow "^2.0.1"
1411 | fragment-cache "^0.2.1"
1412 | regex-not "^1.0.0"
1413 | snapdragon "^0.8.1"
1414 | to-regex "^3.0.1"
1415 |
1416 | extsprintf@1.3.0:
1417 | version "1.3.0"
1418 | resolved "https://registry.yarnpkg.com/extsprintf/-/extsprintf-1.3.0.tgz#96918440e3041a7a414f8c52e3c574eb3c3e1e05"
1419 |
1420 | extsprintf@^1.2.0:
1421 | version "1.4.0"
1422 | resolved "https://registry.yarnpkg.com/extsprintf/-/extsprintf-1.4.0.tgz#e2689f8f356fad62cca65a3a91c5df5f9551692f"
1423 |
1424 | fast-deep-equal@^2.0.1:
1425 | version "2.0.1"
1426 | resolved "https://registry.yarnpkg.com/fast-deep-equal/-/fast-deep-equal-2.0.1.tgz#7b05218ddf9667bf7f370bf7fdb2cb15fdd0aa49"
1427 |
1428 | fast-json-stable-stringify@^2.0.0:
1429 | version "2.0.0"
1430 | resolved "https://registry.yarnpkg.com/fast-json-stable-stringify/-/fast-json-stable-stringify-2.0.0.tgz#d5142c0caee6b1189f87d3a76111064f86c8bbf2"
1431 |
1432 | fast-levenshtein@~2.0.4:
1433 | version "2.0.6"
1434 | resolved "https://registry.yarnpkg.com/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz#3d8a5c66883a16a30ca8643e851f19baa7797917"
1435 |
1436 | fb-watchman@^2.0.0:
1437 | version "2.0.0"
1438 | resolved "https://registry.yarnpkg.com/fb-watchman/-/fb-watchman-2.0.0.tgz#54e9abf7dfa2f26cd9b1636c588c1afc05de5d58"
1439 | dependencies:
1440 | bser "^2.0.0"
1441 |
1442 | fileset@^2.0.3:
1443 | version "2.0.3"
1444 | resolved "https://registry.yarnpkg.com/fileset/-/fileset-2.0.3.tgz#8e7548a96d3cc2327ee5e674168723a333bba2a0"
1445 | dependencies:
1446 | glob "^7.0.3"
1447 | minimatch "^3.0.3"
1448 |
1449 | fill-range@^4.0.0:
1450 | version "4.0.0"
1451 | resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-4.0.0.tgz#d544811d428f98eb06a63dc402d2403c328c38f7"
1452 | dependencies:
1453 | extend-shallow "^2.0.1"
1454 | is-number "^3.0.0"
1455 | repeat-string "^1.6.1"
1456 | to-regex-range "^2.1.0"
1457 |
1458 | find-up@^3.0.0:
1459 | version "3.0.0"
1460 | resolved "https://registry.yarnpkg.com/find-up/-/find-up-3.0.0.tgz#49169f1d7993430646da61ecc5ae355c21c97b73"
1461 | dependencies:
1462 | locate-path "^3.0.0"
1463 |
1464 | for-in@^1.0.2:
1465 | version "1.0.2"
1466 | resolved "https://registry.yarnpkg.com/for-in/-/for-in-1.0.2.tgz#81068d295a8142ec0ac726c6e2200c30fb6d5e80"
1467 |
1468 | forever-agent@~0.6.1:
1469 | version "0.6.1"
1470 | resolved "https://registry.yarnpkg.com/forever-agent/-/forever-agent-0.6.1.tgz#fbc71f0c41adeb37f96c577ad1ed42d8fdacca91"
1471 |
1472 | form-data@~2.3.2:
1473 | version "2.3.3"
1474 | resolved "https://registry.yarnpkg.com/form-data/-/form-data-2.3.3.tgz#dcce52c05f644f298c6a7ab936bd724ceffbf3a6"
1475 | dependencies:
1476 | asynckit "^0.4.0"
1477 | combined-stream "^1.0.6"
1478 | mime-types "^2.1.12"
1479 |
1480 | fragment-cache@^0.2.1:
1481 | version "0.2.1"
1482 | resolved "https://registry.yarnpkg.com/fragment-cache/-/fragment-cache-0.2.1.tgz#4290fad27f13e89be7f33799c6bc5a0abfff0d19"
1483 | dependencies:
1484 | map-cache "^0.2.2"
1485 |
1486 | fs.realpath@^1.0.0:
1487 | version "1.0.0"
1488 | resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f"
1489 |
1490 | function-bind@^1.1.1:
1491 | version "1.1.1"
1492 | resolved "https://registry.yarnpkg.com/function-bind/-/function-bind-1.1.1.tgz#a56899d3ea3c9bab874bb9773b7c5ede92f4895d"
1493 |
1494 | get-caller-file@^1.0.1:
1495 | version "1.0.3"
1496 | resolved "https://registry.yarnpkg.com/get-caller-file/-/get-caller-file-1.0.3.tgz#f978fa4c90d1dfe7ff2d6beda2a515e713bdcf4a"
1497 |
1498 | get-stream@^4.0.0:
1499 | version "4.1.0"
1500 | resolved "https://registry.yarnpkg.com/get-stream/-/get-stream-4.1.0.tgz#c1b255575f3dc21d59bfc79cd3d2b46b1c3a54b5"
1501 | dependencies:
1502 | pump "^3.0.0"
1503 |
1504 | get-value@^2.0.3, get-value@^2.0.6:
1505 | version "2.0.6"
1506 | resolved "https://registry.yarnpkg.com/get-value/-/get-value-2.0.6.tgz#dc15ca1c672387ca76bd37ac0a395ba2042a2c28"
1507 |
1508 | getpass@^0.1.1:
1509 | version "0.1.7"
1510 | resolved "https://registry.yarnpkg.com/getpass/-/getpass-0.1.7.tgz#5eff8e3e684d569ae4cb2b1282604e8ba62149fa"
1511 | dependencies:
1512 | assert-plus "^1.0.0"
1513 |
1514 | glob@^7.0.3, glob@^7.1.1, glob@^7.1.2, glob@^7.1.3:
1515 | version "7.1.3"
1516 | resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.3.tgz#3960832d3f1574108342dafd3a67b332c0969df1"
1517 | dependencies:
1518 | fs.realpath "^1.0.0"
1519 | inflight "^1.0.4"
1520 | inherits "2"
1521 | minimatch "^3.0.4"
1522 | once "^1.3.0"
1523 | path-is-absolute "^1.0.0"
1524 |
1525 | globals@^11.1.0:
1526 | version "11.11.0"
1527 | resolved "https://registry.yarnpkg.com/globals/-/globals-11.11.0.tgz#dcf93757fa2de5486fbeed7118538adf789e9c2e"
1528 |
1529 | graceful-fs@^4.1.11, graceful-fs@^4.1.15, graceful-fs@^4.1.2:
1530 | version "4.1.15"
1531 | resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.1.15.tgz#ffb703e1066e8a0eeaa4c8b80ba9253eeefbfb00"
1532 |
1533 | "growl@~> 1.10.0":
1534 | version "1.10.5"
1535 | resolved "https://registry.yarnpkg.com/growl/-/growl-1.10.5.tgz#f2735dc2283674fa67478b10181059355c369e5e"
1536 | integrity sha512-qBr4OuELkhPenW6goKVXiv47US3clb3/IbuWF9KNKEijAy9oeHxU9IgzjvJhHkUzhaj7rOUD7+YGWqUjLp5oSA==
1537 |
1538 | growly@^1.3.0:
1539 | version "1.3.0"
1540 | resolved "https://registry.yarnpkg.com/growly/-/growly-1.3.0.tgz#f10748cbe76af964b7c96c93c6bcc28af120c081"
1541 |
1542 | handlebars@^4.1.0:
1543 | version "4.1.1"
1544 | resolved "https://registry.yarnpkg.com/handlebars/-/handlebars-4.1.1.tgz#6e4e41c18ebe7719ae4d38e5aca3d32fa3dd23d3"
1545 | dependencies:
1546 | neo-async "^2.6.0"
1547 | optimist "^0.6.1"
1548 | source-map "^0.6.1"
1549 | optionalDependencies:
1550 | uglify-js "^3.1.4"
1551 |
1552 | har-schema@^2.0.0:
1553 | version "2.0.0"
1554 | resolved "https://registry.yarnpkg.com/har-schema/-/har-schema-2.0.0.tgz#a94c2224ebcac04782a0d9035521f24735b7ec92"
1555 |
1556 | har-validator@~5.1.0:
1557 | version "5.1.3"
1558 | resolved "https://registry.yarnpkg.com/har-validator/-/har-validator-5.1.3.tgz#1ef89ebd3e4996557675eed9893110dc350fa080"
1559 | dependencies:
1560 | ajv "^6.5.5"
1561 | har-schema "^2.0.0"
1562 |
1563 | has-flag@^3.0.0:
1564 | version "3.0.0"
1565 | resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-3.0.0.tgz#b5d454dc2199ae225699f3467e5a07f3b955bafd"
1566 |
1567 | has-symbols@^1.0.0:
1568 | version "1.0.0"
1569 | resolved "https://registry.yarnpkg.com/has-symbols/-/has-symbols-1.0.0.tgz#ba1a8f1af2a0fc39650f5c850367704122063b44"
1570 |
1571 | has-value@^0.3.1:
1572 | version "0.3.1"
1573 | resolved "https://registry.yarnpkg.com/has-value/-/has-value-0.3.1.tgz#7b1f58bada62ca827ec0a2078025654845995e1f"
1574 | dependencies:
1575 | get-value "^2.0.3"
1576 | has-values "^0.1.4"
1577 | isobject "^2.0.0"
1578 |
1579 | has-value@^1.0.0:
1580 | version "1.0.0"
1581 | resolved "https://registry.yarnpkg.com/has-value/-/has-value-1.0.0.tgz#18b281da585b1c5c51def24c930ed29a0be6b177"
1582 | dependencies:
1583 | get-value "^2.0.6"
1584 | has-values "^1.0.0"
1585 | isobject "^3.0.0"
1586 |
1587 | has-values@^0.1.4:
1588 | version "0.1.4"
1589 | resolved "https://registry.yarnpkg.com/has-values/-/has-values-0.1.4.tgz#6d61de95d91dfca9b9a02089ad384bff8f62b771"
1590 |
1591 | has-values@^1.0.0:
1592 | version "1.0.0"
1593 | resolved "https://registry.yarnpkg.com/has-values/-/has-values-1.0.0.tgz#95b0b63fec2146619a6fe57fe75628d5a39efe4f"
1594 | dependencies:
1595 | is-number "^3.0.0"
1596 | kind-of "^4.0.0"
1597 |
1598 | has@^1.0.1, has@^1.0.3:
1599 | version "1.0.3"
1600 | resolved "https://registry.yarnpkg.com/has/-/has-1.0.3.tgz#722d7cbfc1f6aa8241f16dd814e011e1f41e8796"
1601 | dependencies:
1602 | function-bind "^1.1.1"
1603 |
1604 | hosted-git-info@^2.1.4:
1605 | version "2.7.1"
1606 | resolved "https://registry.yarnpkg.com/hosted-git-info/-/hosted-git-info-2.7.1.tgz#97f236977bd6e125408930ff6de3eec6281ec047"
1607 |
1608 | html-encoding-sniffer@^1.0.2:
1609 | version "1.0.2"
1610 | resolved "https://registry.yarnpkg.com/html-encoding-sniffer/-/html-encoding-sniffer-1.0.2.tgz#e70d84b94da53aa375e11fe3a351be6642ca46f8"
1611 | dependencies:
1612 | whatwg-encoding "^1.0.1"
1613 |
1614 | http-signature@~1.2.0:
1615 | version "1.2.0"
1616 | resolved "https://registry.yarnpkg.com/http-signature/-/http-signature-1.2.0.tgz#9aecd925114772f3d95b65a60abb8f7c18fbace1"
1617 | dependencies:
1618 | assert-plus "^1.0.0"
1619 | jsprim "^1.2.2"
1620 | sshpk "^1.7.0"
1621 |
1622 | iconv-lite@0.4.24:
1623 | version "0.4.24"
1624 | resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.4.24.tgz#2022b4b25fbddc21d2f524974a474aafe733908b"
1625 | dependencies:
1626 | safer-buffer ">= 2.1.2 < 3"
1627 |
1628 | import-local@^2.0.0:
1629 | version "2.0.0"
1630 | resolved "https://registry.yarnpkg.com/import-local/-/import-local-2.0.0.tgz#55070be38a5993cf18ef6db7e961f5bee5c5a09d"
1631 | dependencies:
1632 | pkg-dir "^3.0.0"
1633 | resolve-cwd "^2.0.0"
1634 |
1635 | imurmurhash@^0.1.4:
1636 | version "0.1.4"
1637 | resolved "https://registry.yarnpkg.com/imurmurhash/-/imurmurhash-0.1.4.tgz#9218b9b2b928a238b13dc4fb6b6d576f231453ea"
1638 |
1639 | inflight@^1.0.4:
1640 | version "1.0.6"
1641 | resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9"
1642 | dependencies:
1643 | once "^1.3.0"
1644 | wrappy "1"
1645 |
1646 | inherits@2, inherits@~2.0.3:
1647 | version "2.0.3"
1648 | resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.3.tgz#633c2c83e3da42a502f52466022480f4208261de"
1649 |
1650 | invariant@^2.2.2, invariant@^2.2.4:
1651 | version "2.2.4"
1652 | resolved "https://registry.yarnpkg.com/invariant/-/invariant-2.2.4.tgz#610f3c92c9359ce1db616e538008d23ff35158e6"
1653 | dependencies:
1654 | loose-envify "^1.0.0"
1655 |
1656 | invert-kv@^2.0.0:
1657 | version "2.0.0"
1658 | resolved "https://registry.yarnpkg.com/invert-kv/-/invert-kv-2.0.0.tgz#7393f5afa59ec9ff5f67a27620d11c226e3eec02"
1659 |
1660 | is-accessor-descriptor@^0.1.6:
1661 | version "0.1.6"
1662 | resolved "https://registry.yarnpkg.com/is-accessor-descriptor/-/is-accessor-descriptor-0.1.6.tgz#a9e12cb3ae8d876727eeef3843f8a0897b5c98d6"
1663 | dependencies:
1664 | kind-of "^3.0.2"
1665 |
1666 | is-accessor-descriptor@^1.0.0:
1667 | version "1.0.0"
1668 | resolved "https://registry.yarnpkg.com/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz#169c2f6d3df1f992618072365c9b0ea1f6878656"
1669 | dependencies:
1670 | kind-of "^6.0.0"
1671 |
1672 | is-arrayish@^0.2.1:
1673 | version "0.2.1"
1674 | resolved "https://registry.yarnpkg.com/is-arrayish/-/is-arrayish-0.2.1.tgz#77c99840527aa8ecb1a8ba697b80645a7a926a9d"
1675 |
1676 | is-buffer@^1.1.5:
1677 | version "1.1.6"
1678 | resolved "https://registry.yarnpkg.com/is-buffer/-/is-buffer-1.1.6.tgz#efaa2ea9daa0d7ab2ea13a97b2b8ad51fefbe8be"
1679 |
1680 | is-callable@^1.1.4:
1681 | version "1.1.4"
1682 | resolved "https://registry.yarnpkg.com/is-callable/-/is-callable-1.1.4.tgz#1e1adf219e1eeb684d691f9d6a05ff0d30a24d75"
1683 |
1684 | is-ci@^2.0.0:
1685 | version "2.0.0"
1686 | resolved "https://registry.yarnpkg.com/is-ci/-/is-ci-2.0.0.tgz#6bc6334181810e04b5c22b3d589fdca55026404c"
1687 | dependencies:
1688 | ci-info "^2.0.0"
1689 |
1690 | is-data-descriptor@^0.1.4:
1691 | version "0.1.4"
1692 | resolved "https://registry.yarnpkg.com/is-data-descriptor/-/is-data-descriptor-0.1.4.tgz#0b5ee648388e2c860282e793f1856fec3f301b56"
1693 | dependencies:
1694 | kind-of "^3.0.2"
1695 |
1696 | is-data-descriptor@^1.0.0:
1697 | version "1.0.0"
1698 | resolved "https://registry.yarnpkg.com/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz#d84876321d0e7add03990406abbbbd36ba9268c7"
1699 | dependencies:
1700 | kind-of "^6.0.0"
1701 |
1702 | is-date-object@^1.0.1:
1703 | version "1.0.1"
1704 | resolved "https://registry.yarnpkg.com/is-date-object/-/is-date-object-1.0.1.tgz#9aa20eb6aeebbff77fbd33e74ca01b33581d3a16"
1705 |
1706 | is-descriptor@^0.1.0:
1707 | version "0.1.6"
1708 | resolved "https://registry.yarnpkg.com/is-descriptor/-/is-descriptor-0.1.6.tgz#366d8240dde487ca51823b1ab9f07a10a78251ca"
1709 | dependencies:
1710 | is-accessor-descriptor "^0.1.6"
1711 | is-data-descriptor "^0.1.4"
1712 | kind-of "^5.0.0"
1713 |
1714 | is-descriptor@^1.0.0, is-descriptor@^1.0.2:
1715 | version "1.0.2"
1716 | resolved "https://registry.yarnpkg.com/is-descriptor/-/is-descriptor-1.0.2.tgz#3b159746a66604b04f8c81524ba365c5f14d86ec"
1717 | dependencies:
1718 | is-accessor-descriptor "^1.0.0"
1719 | is-data-descriptor "^1.0.0"
1720 | kind-of "^6.0.2"
1721 |
1722 | is-extendable@^0.1.0, is-extendable@^0.1.1:
1723 | version "0.1.1"
1724 | resolved "https://registry.yarnpkg.com/is-extendable/-/is-extendable-0.1.1.tgz#62b110e289a471418e3ec36a617d472e301dfc89"
1725 |
1726 | is-extendable@^1.0.1:
1727 | version "1.0.1"
1728 | resolved "https://registry.yarnpkg.com/is-extendable/-/is-extendable-1.0.1.tgz#a7470f9e426733d81bd81e1155264e3a3507cab4"
1729 | dependencies:
1730 | is-plain-object "^2.0.4"
1731 |
1732 | is-fullwidth-code-point@^1.0.0:
1733 | version "1.0.0"
1734 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz#ef9e31386f031a7f0d643af82fde50c457ef00cb"
1735 | dependencies:
1736 | number-is-nan "^1.0.0"
1737 |
1738 | is-fullwidth-code-point@^2.0.0:
1739 | version "2.0.0"
1740 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz#a3b30a5c4f199183167aaab93beefae3ddfb654f"
1741 |
1742 | is-generator-fn@^2.0.0:
1743 | version "2.0.0"
1744 | resolved "https://registry.yarnpkg.com/is-generator-fn/-/is-generator-fn-2.0.0.tgz#038c31b774709641bda678b1f06a4e3227c10b3e"
1745 |
1746 | is-number@^3.0.0:
1747 | version "3.0.0"
1748 | resolved "https://registry.yarnpkg.com/is-number/-/is-number-3.0.0.tgz#24fd6201a4782cf50561c810276afc7d12d71195"
1749 | dependencies:
1750 | kind-of "^3.0.2"
1751 |
1752 | is-plain-object@^2.0.1, is-plain-object@^2.0.3, is-plain-object@^2.0.4:
1753 | version "2.0.4"
1754 | resolved "https://registry.yarnpkg.com/is-plain-object/-/is-plain-object-2.0.4.tgz#2c163b3fafb1b606d9d17928f05c2a1c38e07677"
1755 | dependencies:
1756 | isobject "^3.0.1"
1757 |
1758 | is-regex@^1.0.4:
1759 | version "1.0.4"
1760 | resolved "https://registry.yarnpkg.com/is-regex/-/is-regex-1.0.4.tgz#5517489b547091b0930e095654ced25ee97e9491"
1761 | dependencies:
1762 | has "^1.0.1"
1763 |
1764 | is-stream@^1.1.0:
1765 | version "1.1.0"
1766 | resolved "https://registry.yarnpkg.com/is-stream/-/is-stream-1.1.0.tgz#12d4a3dd4e68e0b79ceb8dbc84173ae80d91ca44"
1767 |
1768 | is-symbol@^1.0.2:
1769 | version "1.0.2"
1770 | resolved "https://registry.yarnpkg.com/is-symbol/-/is-symbol-1.0.2.tgz#a055f6ae57192caee329e7a860118b497a950f38"
1771 | dependencies:
1772 | has-symbols "^1.0.0"
1773 |
1774 | is-typedarray@~1.0.0:
1775 | version "1.0.0"
1776 | resolved "https://registry.yarnpkg.com/is-typedarray/-/is-typedarray-1.0.0.tgz#e479c80858df0c1b11ddda6940f96011fcda4a9a"
1777 |
1778 | is-windows@^1.0.2:
1779 | version "1.0.2"
1780 | resolved "https://registry.yarnpkg.com/is-windows/-/is-windows-1.0.2.tgz#d1850eb9791ecd18e6182ce12a30f396634bb19d"
1781 |
1782 | is-wsl@^1.1.0:
1783 | version "1.1.0"
1784 | resolved "https://registry.yarnpkg.com/is-wsl/-/is-wsl-1.1.0.tgz#1f16e4aa22b04d1336b66188a66af3c600c3a66d"
1785 |
1786 | isarray@1.0.0, isarray@~1.0.0:
1787 | version "1.0.0"
1788 | resolved "https://registry.yarnpkg.com/isarray/-/isarray-1.0.0.tgz#bb935d48582cba168c06834957a54a3e07124f11"
1789 |
1790 | isexe@^2.0.0:
1791 | version "2.0.0"
1792 | resolved "https://registry.yarnpkg.com/isexe/-/isexe-2.0.0.tgz#e8fbf374dc556ff8947a10dcb0572d633f2cfa10"
1793 |
1794 | isobject@^2.0.0:
1795 | version "2.1.0"
1796 | resolved "https://registry.yarnpkg.com/isobject/-/isobject-2.1.0.tgz#f065561096a3f1da2ef46272f815c840d87e0c89"
1797 | dependencies:
1798 | isarray "1.0.0"
1799 |
1800 | isobject@^3.0.0, isobject@^3.0.1:
1801 | version "3.0.1"
1802 | resolved "https://registry.yarnpkg.com/isobject/-/isobject-3.0.1.tgz#4e431e92b11a9731636aa1f9c8d1ccbcfdab78df"
1803 |
1804 | isstream@~0.1.2:
1805 | version "0.1.2"
1806 | resolved "https://registry.yarnpkg.com/isstream/-/isstream-0.1.2.tgz#47e63f7af55afa6f92e1500e690eb8b8529c099a"
1807 |
1808 | istanbul-api@^2.1.1:
1809 | version "2.1.1"
1810 | resolved "https://registry.yarnpkg.com/istanbul-api/-/istanbul-api-2.1.1.tgz#194b773f6d9cbc99a9258446848b0f988951c4d0"
1811 | dependencies:
1812 | async "^2.6.1"
1813 | compare-versions "^3.2.1"
1814 | fileset "^2.0.3"
1815 | istanbul-lib-coverage "^2.0.3"
1816 | istanbul-lib-hook "^2.0.3"
1817 | istanbul-lib-instrument "^3.1.0"
1818 | istanbul-lib-report "^2.0.4"
1819 | istanbul-lib-source-maps "^3.0.2"
1820 | istanbul-reports "^2.1.1"
1821 | js-yaml "^3.12.0"
1822 | make-dir "^1.3.0"
1823 | minimatch "^3.0.4"
1824 | once "^1.4.0"
1825 |
1826 | istanbul-lib-coverage@^2.0.2, istanbul-lib-coverage@^2.0.3:
1827 | version "2.0.3"
1828 | resolved "https://registry.yarnpkg.com/istanbul-lib-coverage/-/istanbul-lib-coverage-2.0.3.tgz#0b891e5ad42312c2b9488554f603795f9a2211ba"
1829 |
1830 | istanbul-lib-hook@^2.0.3:
1831 | version "2.0.3"
1832 | resolved "https://registry.yarnpkg.com/istanbul-lib-hook/-/istanbul-lib-hook-2.0.3.tgz#e0e581e461c611be5d0e5ef31c5f0109759916fb"
1833 | dependencies:
1834 | append-transform "^1.0.0"
1835 |
1836 | istanbul-lib-instrument@^3.0.0, istanbul-lib-instrument@^3.0.1, istanbul-lib-instrument@^3.1.0:
1837 | version "3.1.0"
1838 | resolved "https://registry.yarnpkg.com/istanbul-lib-instrument/-/istanbul-lib-instrument-3.1.0.tgz#a2b5484a7d445f1f311e93190813fa56dfb62971"
1839 | dependencies:
1840 | "@babel/generator" "^7.0.0"
1841 | "@babel/parser" "^7.0.0"
1842 | "@babel/template" "^7.0.0"
1843 | "@babel/traverse" "^7.0.0"
1844 | "@babel/types" "^7.0.0"
1845 | istanbul-lib-coverage "^2.0.3"
1846 | semver "^5.5.0"
1847 |
1848 | istanbul-lib-report@^2.0.4:
1849 | version "2.0.4"
1850 | resolved "https://registry.yarnpkg.com/istanbul-lib-report/-/istanbul-lib-report-2.0.4.tgz#bfd324ee0c04f59119cb4f07dab157d09f24d7e4"
1851 | dependencies:
1852 | istanbul-lib-coverage "^2.0.3"
1853 | make-dir "^1.3.0"
1854 | supports-color "^6.0.0"
1855 |
1856 | istanbul-lib-source-maps@^3.0.1, istanbul-lib-source-maps@^3.0.2:
1857 | version "3.0.2"
1858 | resolved "https://registry.yarnpkg.com/istanbul-lib-source-maps/-/istanbul-lib-source-maps-3.0.2.tgz#f1e817229a9146e8424a28e5d69ba220fda34156"
1859 | dependencies:
1860 | debug "^4.1.1"
1861 | istanbul-lib-coverage "^2.0.3"
1862 | make-dir "^1.3.0"
1863 | rimraf "^2.6.2"
1864 | source-map "^0.6.1"
1865 |
1866 | istanbul-reports@^2.1.1:
1867 | version "2.1.1"
1868 | resolved "https://registry.yarnpkg.com/istanbul-reports/-/istanbul-reports-2.1.1.tgz#72ef16b4ecb9a4a7bd0e2001e00f95d1eec8afa9"
1869 | dependencies:
1870 | handlebars "^4.1.0"
1871 |
1872 | iterall@^1.2.0:
1873 | version "1.2.2"
1874 | resolved "https://registry.yarnpkg.com/iterall/-/iterall-1.2.2.tgz#92d70deb8028e0c39ff3164fdbf4d8b088130cd7"
1875 |
1876 | jest-changed-files@^24.5.0:
1877 | version "24.5.0"
1878 | resolved "https://registry.yarnpkg.com/jest-changed-files/-/jest-changed-files-24.5.0.tgz#4075269ee115d87194fd5822e642af22133cf705"
1879 | dependencies:
1880 | "@jest/types" "^24.5.0"
1881 | execa "^1.0.0"
1882 | throat "^4.0.0"
1883 |
1884 | jest-cli@^24.5.0:
1885 | version "24.5.0"
1886 | resolved "https://registry.yarnpkg.com/jest-cli/-/jest-cli-24.5.0.tgz#598139d3446d1942fb7dc93944b9ba766d756d4b"
1887 | dependencies:
1888 | "@jest/core" "^24.5.0"
1889 | "@jest/test-result" "^24.5.0"
1890 | "@jest/types" "^24.5.0"
1891 | chalk "^2.0.1"
1892 | exit "^0.1.2"
1893 | import-local "^2.0.0"
1894 | is-ci "^2.0.0"
1895 | jest-config "^24.5.0"
1896 | jest-util "^24.5.0"
1897 | jest-validate "^24.5.0"
1898 | prompts "^2.0.1"
1899 | realpath-native "^1.1.0"
1900 | yargs "^12.0.2"
1901 |
1902 | jest-config@^24.5.0:
1903 | version "24.5.0"
1904 | resolved "https://registry.yarnpkg.com/jest-config/-/jest-config-24.5.0.tgz#404d1bc6bb81aed6bd1890d07e2dca9fbba2e121"
1905 | dependencies:
1906 | "@babel/core" "^7.1.0"
1907 | "@jest/types" "^24.5.0"
1908 | babel-jest "^24.5.0"
1909 | chalk "^2.0.1"
1910 | glob "^7.1.1"
1911 | jest-environment-jsdom "^24.5.0"
1912 | jest-environment-node "^24.5.0"
1913 | jest-get-type "^24.3.0"
1914 | jest-jasmine2 "^24.5.0"
1915 | jest-regex-util "^24.3.0"
1916 | jest-resolve "^24.5.0"
1917 | jest-util "^24.5.0"
1918 | jest-validate "^24.5.0"
1919 | micromatch "^3.1.10"
1920 | pretty-format "^24.5.0"
1921 | realpath-native "^1.1.0"
1922 |
1923 | jest-diff@^24.5.0:
1924 | version "24.5.0"
1925 | resolved "https://registry.yarnpkg.com/jest-diff/-/jest-diff-24.5.0.tgz#a2d8627964bb06a91893c0fbcb28ab228c257652"
1926 | dependencies:
1927 | chalk "^2.0.1"
1928 | diff-sequences "^24.3.0"
1929 | jest-get-type "^24.3.0"
1930 | pretty-format "^24.5.0"
1931 |
1932 | jest-docblock@^24.3.0:
1933 | version "24.3.0"
1934 | resolved "https://registry.yarnpkg.com/jest-docblock/-/jest-docblock-24.3.0.tgz#b9c32dac70f72e4464520d2ba4aec02ab14db5dd"
1935 | dependencies:
1936 | detect-newline "^2.1.0"
1937 |
1938 | jest-each@^24.5.0:
1939 | version "24.5.0"
1940 | resolved "https://registry.yarnpkg.com/jest-each/-/jest-each-24.5.0.tgz#da14d017a1b7d0f01fb458d338314cafe7f72318"
1941 | dependencies:
1942 | "@jest/types" "^24.5.0"
1943 | chalk "^2.0.1"
1944 | jest-get-type "^24.3.0"
1945 | jest-util "^24.5.0"
1946 | pretty-format "^24.5.0"
1947 |
1948 | jest-environment-jsdom@^24.5.0:
1949 | version "24.5.0"
1950 | resolved "https://registry.yarnpkg.com/jest-environment-jsdom/-/jest-environment-jsdom-24.5.0.tgz#1c3143063e1374100f8c2723a8b6aad23b6db7eb"
1951 | dependencies:
1952 | "@jest/environment" "^24.5.0"
1953 | "@jest/fake-timers" "^24.5.0"
1954 | "@jest/types" "^24.5.0"
1955 | jest-mock "^24.5.0"
1956 | jest-util "^24.5.0"
1957 | jsdom "^11.5.1"
1958 |
1959 | jest-environment-node@^24.5.0:
1960 | version "24.5.0"
1961 | resolved "https://registry.yarnpkg.com/jest-environment-node/-/jest-environment-node-24.5.0.tgz#763eebdf529f75b60aa600c6cf8cb09873caa6ab"
1962 | dependencies:
1963 | "@jest/environment" "^24.5.0"
1964 | "@jest/fake-timers" "^24.5.0"
1965 | "@jest/types" "^24.5.0"
1966 | jest-mock "^24.5.0"
1967 | jest-util "^24.5.0"
1968 |
1969 | jest-get-type@^24.3.0:
1970 | version "24.3.0"
1971 | resolved "https://registry.yarnpkg.com/jest-get-type/-/jest-get-type-24.3.0.tgz#582cfd1a4f91b5cdad1d43d2932f816d543c65da"
1972 |
1973 | jest-haste-map@^24.5.0:
1974 | version "24.5.0"
1975 | resolved "https://registry.yarnpkg.com/jest-haste-map/-/jest-haste-map-24.5.0.tgz#3f17d0c548b99c0c96ed2893f9c0ccecb2eb9066"
1976 | dependencies:
1977 | "@jest/types" "^24.5.0"
1978 | fb-watchman "^2.0.0"
1979 | graceful-fs "^4.1.15"
1980 | invariant "^2.2.4"
1981 | jest-serializer "^24.4.0"
1982 | jest-util "^24.5.0"
1983 | jest-worker "^24.4.0"
1984 | micromatch "^3.1.10"
1985 | sane "^4.0.3"
1986 |
1987 | jest-jasmine2@^24.5.0:
1988 | version "24.5.0"
1989 | resolved "https://registry.yarnpkg.com/jest-jasmine2/-/jest-jasmine2-24.5.0.tgz#e6af4d7f73dc527d007cca5a5b177c0bcc29d111"
1990 | dependencies:
1991 | "@babel/traverse" "^7.1.0"
1992 | "@jest/environment" "^24.5.0"
1993 | "@jest/test-result" "^24.5.0"
1994 | "@jest/types" "^24.5.0"
1995 | chalk "^2.0.1"
1996 | co "^4.6.0"
1997 | expect "^24.5.0"
1998 | is-generator-fn "^2.0.0"
1999 | jest-each "^24.5.0"
2000 | jest-matcher-utils "^24.5.0"
2001 | jest-message-util "^24.5.0"
2002 | jest-runtime "^24.5.0"
2003 | jest-snapshot "^24.5.0"
2004 | jest-util "^24.5.0"
2005 | pretty-format "^24.5.0"
2006 | throat "^4.0.0"
2007 |
2008 | jest-leak-detector@^24.5.0:
2009 | version "24.5.0"
2010 | resolved "https://registry.yarnpkg.com/jest-leak-detector/-/jest-leak-detector-24.5.0.tgz#21ae2b3b0da252c1171cd494f75696d65fb6fa89"
2011 | dependencies:
2012 | pretty-format "^24.5.0"
2013 |
2014 | jest-matcher-utils@^24.5.0:
2015 | version "24.5.0"
2016 | resolved "https://registry.yarnpkg.com/jest-matcher-utils/-/jest-matcher-utils-24.5.0.tgz#5995549dcf09fa94406e89526e877b094dad8770"
2017 | dependencies:
2018 | chalk "^2.0.1"
2019 | jest-diff "^24.5.0"
2020 | jest-get-type "^24.3.0"
2021 | pretty-format "^24.5.0"
2022 |
2023 | jest-message-util@^24.5.0:
2024 | version "24.5.0"
2025 | resolved "https://registry.yarnpkg.com/jest-message-util/-/jest-message-util-24.5.0.tgz#181420a65a7ef2e8b5c2f8e14882c453c6d41d07"
2026 | dependencies:
2027 | "@babel/code-frame" "^7.0.0"
2028 | "@jest/test-result" "^24.5.0"
2029 | "@jest/types" "^24.5.0"
2030 | "@types/stack-utils" "^1.0.1"
2031 | chalk "^2.0.1"
2032 | micromatch "^3.1.10"
2033 | slash "^2.0.0"
2034 | stack-utils "^1.0.1"
2035 |
2036 | jest-mock@^24.5.0:
2037 | version "24.5.0"
2038 | resolved "https://registry.yarnpkg.com/jest-mock/-/jest-mock-24.5.0.tgz#976912c99a93f2a1c67497a9414aa4d9da4c7b76"
2039 | dependencies:
2040 | "@jest/types" "^24.5.0"
2041 |
2042 | jest-pnp-resolver@^1.2.1:
2043 | version "1.2.1"
2044 | resolved "https://registry.yarnpkg.com/jest-pnp-resolver/-/jest-pnp-resolver-1.2.1.tgz#ecdae604c077a7fbc70defb6d517c3c1c898923a"
2045 |
2046 | jest-regex-util@^24.3.0:
2047 | version "24.3.0"
2048 | resolved "https://registry.yarnpkg.com/jest-regex-util/-/jest-regex-util-24.3.0.tgz#d5a65f60be1ae3e310d5214a0307581995227b36"
2049 |
2050 | jest-resolve-dependencies@^24.5.0:
2051 | version "24.5.0"
2052 | resolved "https://registry.yarnpkg.com/jest-resolve-dependencies/-/jest-resolve-dependencies-24.5.0.tgz#1a0dae9cdd41349ca4a84148b3e78da2ba33fd4b"
2053 | dependencies:
2054 | "@jest/types" "^24.5.0"
2055 | jest-regex-util "^24.3.0"
2056 | jest-snapshot "^24.5.0"
2057 |
2058 | jest-resolve@^24.5.0:
2059 | version "24.5.0"
2060 | resolved "https://registry.yarnpkg.com/jest-resolve/-/jest-resolve-24.5.0.tgz#8c16ba08f60a1616c3b1cd7afb24574f50a24d04"
2061 | dependencies:
2062 | "@jest/types" "^24.5.0"
2063 | browser-resolve "^1.11.3"
2064 | chalk "^2.0.1"
2065 | jest-pnp-resolver "^1.2.1"
2066 | realpath-native "^1.1.0"
2067 |
2068 | jest-runner@^24.5.0:
2069 | version "24.5.0"
2070 | resolved "https://registry.yarnpkg.com/jest-runner/-/jest-runner-24.5.0.tgz#9be26ece4fd4ab3dfb528b887523144b7c5ffca8"
2071 | dependencies:
2072 | "@jest/console" "^24.3.0"
2073 | "@jest/environment" "^24.5.0"
2074 | "@jest/test-result" "^24.5.0"
2075 | "@jest/types" "^24.5.0"
2076 | chalk "^2.4.2"
2077 | exit "^0.1.2"
2078 | graceful-fs "^4.1.15"
2079 | jest-config "^24.5.0"
2080 | jest-docblock "^24.3.0"
2081 | jest-haste-map "^24.5.0"
2082 | jest-jasmine2 "^24.5.0"
2083 | jest-leak-detector "^24.5.0"
2084 | jest-message-util "^24.5.0"
2085 | jest-resolve "^24.5.0"
2086 | jest-runtime "^24.5.0"
2087 | jest-util "^24.5.0"
2088 | jest-worker "^24.4.0"
2089 | source-map-support "^0.5.6"
2090 | throat "^4.0.0"
2091 |
2092 | jest-runtime@^24.5.0:
2093 | version "24.5.0"
2094 | resolved "https://registry.yarnpkg.com/jest-runtime/-/jest-runtime-24.5.0.tgz#3a76e0bfef4db3896d5116e9e518be47ba771aa2"
2095 | dependencies:
2096 | "@jest/console" "^24.3.0"
2097 | "@jest/environment" "^24.5.0"
2098 | "@jest/source-map" "^24.3.0"
2099 | "@jest/transform" "^24.5.0"
2100 | "@jest/types" "^24.5.0"
2101 | "@types/yargs" "^12.0.2"
2102 | chalk "^2.0.1"
2103 | exit "^0.1.2"
2104 | glob "^7.1.3"
2105 | graceful-fs "^4.1.15"
2106 | jest-config "^24.5.0"
2107 | jest-haste-map "^24.5.0"
2108 | jest-message-util "^24.5.0"
2109 | jest-mock "^24.5.0"
2110 | jest-regex-util "^24.3.0"
2111 | jest-resolve "^24.5.0"
2112 | jest-snapshot "^24.5.0"
2113 | jest-util "^24.5.0"
2114 | jest-validate "^24.5.0"
2115 | realpath-native "^1.1.0"
2116 | slash "^2.0.0"
2117 | strip-bom "^3.0.0"
2118 | yargs "^12.0.2"
2119 |
2120 | jest-serializer@^24.4.0:
2121 | version "24.4.0"
2122 | resolved "https://registry.yarnpkg.com/jest-serializer/-/jest-serializer-24.4.0.tgz#f70c5918c8ea9235ccb1276d232e459080588db3"
2123 |
2124 | jest-snapshot@^24.5.0:
2125 | version "24.5.0"
2126 | resolved "https://registry.yarnpkg.com/jest-snapshot/-/jest-snapshot-24.5.0.tgz#e5d224468a759fd19e36f01217aac912f500f779"
2127 | dependencies:
2128 | "@babel/types" "^7.0.0"
2129 | "@jest/types" "^24.5.0"
2130 | chalk "^2.0.1"
2131 | expect "^24.5.0"
2132 | jest-diff "^24.5.0"
2133 | jest-matcher-utils "^24.5.0"
2134 | jest-message-util "^24.5.0"
2135 | jest-resolve "^24.5.0"
2136 | mkdirp "^0.5.1"
2137 | natural-compare "^1.4.0"
2138 | pretty-format "^24.5.0"
2139 | semver "^5.5.0"
2140 |
2141 | jest-util@^24.5.0:
2142 | version "24.5.0"
2143 | resolved "https://registry.yarnpkg.com/jest-util/-/jest-util-24.5.0.tgz#9d9cb06d9dcccc8e7cc76df91b1635025d7baa84"
2144 | dependencies:
2145 | "@jest/console" "^24.3.0"
2146 | "@jest/fake-timers" "^24.5.0"
2147 | "@jest/source-map" "^24.3.0"
2148 | "@jest/test-result" "^24.5.0"
2149 | "@jest/types" "^24.5.0"
2150 | "@types/node" "*"
2151 | callsites "^3.0.0"
2152 | chalk "^2.0.1"
2153 | graceful-fs "^4.1.15"
2154 | is-ci "^2.0.0"
2155 | mkdirp "^0.5.1"
2156 | slash "^2.0.0"
2157 | source-map "^0.6.0"
2158 |
2159 | jest-validate@^24.5.0:
2160 | version "24.5.0"
2161 | resolved "https://registry.yarnpkg.com/jest-validate/-/jest-validate-24.5.0.tgz#62fd93d81214c070bb2d7a55f329a79d8057c7de"
2162 | dependencies:
2163 | "@jest/types" "^24.5.0"
2164 | camelcase "^5.0.0"
2165 | chalk "^2.0.1"
2166 | jest-get-type "^24.3.0"
2167 | leven "^2.1.0"
2168 | pretty-format "^24.5.0"
2169 |
2170 | jest-watcher@^24.5.0:
2171 | version "24.5.0"
2172 | resolved "https://registry.yarnpkg.com/jest-watcher/-/jest-watcher-24.5.0.tgz#da7bd9cb5967e274889b42078c8f501ae1c47761"
2173 | dependencies:
2174 | "@jest/test-result" "^24.5.0"
2175 | "@jest/types" "^24.5.0"
2176 | "@types/node" "*"
2177 | "@types/yargs" "^12.0.9"
2178 | ansi-escapes "^3.0.0"
2179 | chalk "^2.0.1"
2180 | jest-util "^24.5.0"
2181 | string-length "^2.0.0"
2182 |
2183 | jest-worker@^24.4.0:
2184 | version "24.4.0"
2185 | resolved "https://registry.yarnpkg.com/jest-worker/-/jest-worker-24.4.0.tgz#fbc452b0120bb5c2a70cdc88fa132b48eeb11dd0"
2186 | dependencies:
2187 | "@types/node" "*"
2188 | merge-stream "^1.0.1"
2189 | supports-color "^6.1.0"
2190 |
2191 | jest@^24.5.0:
2192 | version "24.5.0"
2193 | resolved "https://registry.yarnpkg.com/jest/-/jest-24.5.0.tgz#38f11ae2c2baa2f86c2bc4d8a91d2b51612cd19a"
2194 | dependencies:
2195 | import-local "^2.0.0"
2196 | jest-cli "^24.5.0"
2197 |
2198 | js-levenshtein@^1.1.3:
2199 | version "1.1.6"
2200 | resolved "https://registry.yarnpkg.com/js-levenshtein/-/js-levenshtein-1.1.6.tgz#c6cee58eb3550372df8deb85fad5ce66ce01d59d"
2201 |
2202 | "js-tokens@^3.0.0 || ^4.0.0", js-tokens@^4.0.0:
2203 | version "4.0.0"
2204 | resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-4.0.0.tgz#19203fb59991df98e3a287050d4647cdeaf32499"
2205 |
2206 | js-yaml@^3.11.0:
2207 | version "3.13.1"
2208 | resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-3.13.1.tgz#aff151b30bfdfa8e49e05da22e7415e9dfa37847"
2209 | integrity sha512-YfbcO7jXDdyj0DGxYVSlSeQNHbD7XPWvrVWeVUujrQEoZzWJIRrCPoyk6kL6IAjAG2IolMK4T0hNUe0HOUs5Jw==
2210 | dependencies:
2211 | argparse "^1.0.7"
2212 | esprima "^4.0.0"
2213 |
2214 | js-yaml@^3.12.0:
2215 | version "3.13.0"
2216 | resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-3.13.0.tgz#38ee7178ac0eea2c97ff6d96fff4b18c7d8cf98e"
2217 | dependencies:
2218 | argparse "^1.0.7"
2219 | esprima "^4.0.0"
2220 |
2221 | jsbn@~0.1.0:
2222 | version "0.1.1"
2223 | resolved "https://registry.yarnpkg.com/jsbn/-/jsbn-0.1.1.tgz#a5e654c2e5a2deb5f201d96cefbca80c0ef2f513"
2224 |
2225 | jsdom@^11.5.1:
2226 | version "11.12.0"
2227 | resolved "https://registry.yarnpkg.com/jsdom/-/jsdom-11.12.0.tgz#1a80d40ddd378a1de59656e9e6dc5a3ba8657bc8"
2228 | dependencies:
2229 | abab "^2.0.0"
2230 | acorn "^5.5.3"
2231 | acorn-globals "^4.1.0"
2232 | array-equal "^1.0.0"
2233 | cssom ">= 0.3.2 < 0.4.0"
2234 | cssstyle "^1.0.0"
2235 | data-urls "^1.0.0"
2236 | domexception "^1.0.1"
2237 | escodegen "^1.9.1"
2238 | html-encoding-sniffer "^1.0.2"
2239 | left-pad "^1.3.0"
2240 | nwsapi "^2.0.7"
2241 | parse5 "4.0.0"
2242 | pn "^1.1.0"
2243 | request "^2.87.0"
2244 | request-promise-native "^1.0.5"
2245 | sax "^1.2.4"
2246 | symbol-tree "^3.2.2"
2247 | tough-cookie "^2.3.4"
2248 | w3c-hr-time "^1.0.1"
2249 | webidl-conversions "^4.0.2"
2250 | whatwg-encoding "^1.0.3"
2251 | whatwg-mimetype "^2.1.0"
2252 | whatwg-url "^6.4.1"
2253 | ws "^5.2.0"
2254 | xml-name-validator "^3.0.0"
2255 |
2256 | jsesc@^2.5.1:
2257 | version "2.5.2"
2258 | resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-2.5.2.tgz#80564d2e483dacf6e8ef209650a67df3f0c283a4"
2259 |
2260 | jsesc@~0.5.0:
2261 | version "0.5.0"
2262 | resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-0.5.0.tgz#e7dee66e35d6fc16f710fe91d5cf69f70f08911d"
2263 |
2264 | json-parse-better-errors@^1.0.1:
2265 | version "1.0.2"
2266 | resolved "https://registry.yarnpkg.com/json-parse-better-errors/-/json-parse-better-errors-1.0.2.tgz#bb867cfb3450e69107c131d1c514bab3dc8bcaa9"
2267 |
2268 | json-schema-traverse@^0.4.1:
2269 | version "0.4.1"
2270 | resolved "https://registry.yarnpkg.com/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz#69f6a87d9513ab8bb8fe63bdb0979c448e684660"
2271 |
2272 | json-schema@0.2.3:
2273 | version "0.2.3"
2274 | resolved "https://registry.yarnpkg.com/json-schema/-/json-schema-0.2.3.tgz#b480c892e59a2f05954ce727bd3f2a4e882f9e13"
2275 |
2276 | json-stringify-safe@~5.0.1:
2277 | version "5.0.1"
2278 | resolved "https://registry.yarnpkg.com/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz#1296a2d58fd45f19a0f6ce01d65701e2c735b6eb"
2279 |
2280 | json5@^2.1.0:
2281 | version "2.1.0"
2282 | resolved "https://registry.yarnpkg.com/json5/-/json5-2.1.0.tgz#e7a0c62c48285c628d20a10b85c89bb807c32850"
2283 | dependencies:
2284 | minimist "^1.2.0"
2285 |
2286 | jsprim@^1.2.2:
2287 | version "1.4.1"
2288 | resolved "https://registry.yarnpkg.com/jsprim/-/jsprim-1.4.1.tgz#313e66bc1e5cc06e438bc1b7499c2e5c56acb6a2"
2289 | dependencies:
2290 | assert-plus "1.0.0"
2291 | extsprintf "1.3.0"
2292 | json-schema "0.2.3"
2293 | verror "1.10.0"
2294 |
2295 | kind-of@^3.0.2, kind-of@^3.0.3, kind-of@^3.2.0:
2296 | version "3.2.2"
2297 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-3.2.2.tgz#31ea21a734bab9bbb0f32466d893aea51e4a3c64"
2298 | dependencies:
2299 | is-buffer "^1.1.5"
2300 |
2301 | kind-of@^4.0.0:
2302 | version "4.0.0"
2303 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-4.0.0.tgz#20813df3d712928b207378691a45066fae72dd57"
2304 | dependencies:
2305 | is-buffer "^1.1.5"
2306 |
2307 | kind-of@^5.0.0:
2308 | version "5.1.0"
2309 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-5.1.0.tgz#729c91e2d857b7a419a1f9aa65685c4c33f5845d"
2310 |
2311 | kind-of@^6.0.0, kind-of@^6.0.2:
2312 | version "6.0.2"
2313 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-6.0.2.tgz#01146b36a6218e64e58f3a8d66de5d7fc6f6d051"
2314 |
2315 | kleur@^3.0.2:
2316 | version "3.0.2"
2317 | resolved "https://registry.yarnpkg.com/kleur/-/kleur-3.0.2.tgz#83c7ec858a41098b613d5998a7b653962b504f68"
2318 |
2319 | lcid@^2.0.0:
2320 | version "2.0.0"
2321 | resolved "https://registry.yarnpkg.com/lcid/-/lcid-2.0.0.tgz#6ef5d2df60e52f82eb228a4c373e8d1f397253cf"
2322 | dependencies:
2323 | invert-kv "^2.0.0"
2324 |
2325 | lcov-parse@^0.0.10:
2326 | version "0.0.10"
2327 | resolved "https://registry.yarnpkg.com/lcov-parse/-/lcov-parse-0.0.10.tgz#1b0b8ff9ac9c7889250582b70b71315d9da6d9a3"
2328 | integrity sha1-GwuP+ayceIklBYK3C3ExXZ2m2aM=
2329 |
2330 | left-pad@^1.3.0:
2331 | version "1.3.0"
2332 | resolved "https://registry.yarnpkg.com/left-pad/-/left-pad-1.3.0.tgz#5b8a3a7765dfe001261dde915589e782f8c94d1e"
2333 |
2334 | leven@^2.1.0:
2335 | version "2.1.0"
2336 | resolved "https://registry.yarnpkg.com/leven/-/leven-2.1.0.tgz#c2e7a9f772094dee9d34202ae8acce4687875580"
2337 |
2338 | levn@~0.3.0:
2339 | version "0.3.0"
2340 | resolved "https://registry.yarnpkg.com/levn/-/levn-0.3.0.tgz#3b09924edf9f083c0490fdd4c0bc4421e04764ee"
2341 | dependencies:
2342 | prelude-ls "~1.1.2"
2343 | type-check "~0.3.2"
2344 |
2345 | load-json-file@^4.0.0:
2346 | version "4.0.0"
2347 | resolved "https://registry.yarnpkg.com/load-json-file/-/load-json-file-4.0.0.tgz#2f5f45ab91e33216234fd53adab668eb4ec0993b"
2348 | dependencies:
2349 | graceful-fs "^4.1.2"
2350 | parse-json "^4.0.0"
2351 | pify "^3.0.0"
2352 | strip-bom "^3.0.0"
2353 |
2354 | locate-path@^3.0.0:
2355 | version "3.0.0"
2356 | resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-3.0.0.tgz#dbec3b3ab759758071b58fe59fc41871af21400e"
2357 | dependencies:
2358 | p-locate "^3.0.0"
2359 | path-exists "^3.0.0"
2360 |
2361 | lodash.sortby@^4.7.0:
2362 | version "4.7.0"
2363 | resolved "https://registry.yarnpkg.com/lodash.sortby/-/lodash.sortby-4.7.0.tgz#edd14c824e2cc9c1e0b0a1b42bb5210516a42438"
2364 |
2365 | lodash@^4.17.10, lodash@^4.17.11:
2366 | version "4.17.11"
2367 | resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.11.tgz#b39ea6229ef607ecd89e2c8df12536891cac9b8d"
2368 |
2369 | log-driver@^1.2.7:
2370 | version "1.2.7"
2371 | resolved "https://registry.yarnpkg.com/log-driver/-/log-driver-1.2.7.tgz#63b95021f0702fedfa2c9bb0a24e7797d71871d8"
2372 | integrity sha512-U7KCmLdqsGHBLeWqYlFA0V0Sl6P08EE1ZrmA9cxjUE0WVqT9qnyVDPz1kzpFEP0jdJuFnasWIfSd7fsaNXkpbg==
2373 |
2374 | loose-envify@^1.0.0, loose-envify@^1.1.0, loose-envify@^1.4.0:
2375 | version "1.4.0"
2376 | resolved "https://registry.yarnpkg.com/loose-envify/-/loose-envify-1.4.0.tgz#71ee51fa7be4caec1a63839f7e682d8132d30caf"
2377 | dependencies:
2378 | js-tokens "^3.0.0 || ^4.0.0"
2379 |
2380 | make-dir@^1.3.0:
2381 | version "1.3.0"
2382 | resolved "https://registry.yarnpkg.com/make-dir/-/make-dir-1.3.0.tgz#79c1033b80515bd6d24ec9933e860ca75ee27f0c"
2383 | dependencies:
2384 | pify "^3.0.0"
2385 |
2386 | makeerror@1.0.x:
2387 | version "1.0.11"
2388 | resolved "https://registry.yarnpkg.com/makeerror/-/makeerror-1.0.11.tgz#e01a5c9109f2af79660e4e8b9587790184f5a96c"
2389 | dependencies:
2390 | tmpl "1.0.x"
2391 |
2392 | map-age-cleaner@^0.1.1:
2393 | version "0.1.3"
2394 | resolved "https://registry.yarnpkg.com/map-age-cleaner/-/map-age-cleaner-0.1.3.tgz#7d583a7306434c055fe474b0f45078e6e1b4b92a"
2395 | dependencies:
2396 | p-defer "^1.0.0"
2397 |
2398 | map-cache@^0.2.2:
2399 | version "0.2.2"
2400 | resolved "https://registry.yarnpkg.com/map-cache/-/map-cache-0.2.2.tgz#c32abd0bd6525d9b051645bb4f26ac5dc98a0dbf"
2401 |
2402 | map-visit@^1.0.0:
2403 | version "1.0.0"
2404 | resolved "https://registry.yarnpkg.com/map-visit/-/map-visit-1.0.0.tgz#ecdca8f13144e660f1b5bd41f12f3479d98dfb8f"
2405 | dependencies:
2406 | object-visit "^1.0.0"
2407 |
2408 | mem@^4.0.0:
2409 | version "4.3.0"
2410 | resolved "https://registry.yarnpkg.com/mem/-/mem-4.3.0.tgz#461af497bc4ae09608cdb2e60eefb69bff744178"
2411 | dependencies:
2412 | map-age-cleaner "^0.1.1"
2413 | mimic-fn "^2.0.0"
2414 | p-is-promise "^2.0.0"
2415 |
2416 | merge-stream@^1.0.1:
2417 | version "1.0.1"
2418 | resolved "https://registry.yarnpkg.com/merge-stream/-/merge-stream-1.0.1.tgz#4041202d508a342ba00174008df0c251b8c135e1"
2419 | dependencies:
2420 | readable-stream "^2.0.1"
2421 |
2422 | micromatch@^3.1.10, micromatch@^3.1.4:
2423 | version "3.1.10"
2424 | resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-3.1.10.tgz#70859bc95c9840952f359a068a3fc49f9ecfac23"
2425 | dependencies:
2426 | arr-diff "^4.0.0"
2427 | array-unique "^0.3.2"
2428 | braces "^2.3.1"
2429 | define-property "^2.0.2"
2430 | extend-shallow "^3.0.2"
2431 | extglob "^2.0.4"
2432 | fragment-cache "^0.2.1"
2433 | kind-of "^6.0.2"
2434 | nanomatch "^1.2.9"
2435 | object.pick "^1.3.0"
2436 | regex-not "^1.0.0"
2437 | snapdragon "^0.8.1"
2438 | to-regex "^3.0.2"
2439 |
2440 | mime-db@~1.38.0:
2441 | version "1.38.0"
2442 | resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.38.0.tgz#1a2aab16da9eb167b49c6e4df2d9c68d63d8e2ad"
2443 |
2444 | mime-types@^2.1.12, mime-types@~2.1.19:
2445 | version "2.1.22"
2446 | resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.22.tgz#fe6b355a190926ab7698c9a0556a11199b2199bd"
2447 | dependencies:
2448 | mime-db "~1.38.0"
2449 |
2450 | mimic-fn@^2.0.0:
2451 | version "2.1.0"
2452 | resolved "https://registry.yarnpkg.com/mimic-fn/-/mimic-fn-2.1.0.tgz#7ed2c2ccccaf84d3ffcb7a69b57711fc2083401b"
2453 |
2454 | minimatch@^3.0.3, minimatch@^3.0.4:
2455 | version "3.0.4"
2456 | resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.0.4.tgz#5166e286457f03306064be5497e8dbb0c3d32083"
2457 | dependencies:
2458 | brace-expansion "^1.1.7"
2459 |
2460 | minimist@0.0.8:
2461 | version "0.0.8"
2462 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-0.0.8.tgz#857fcabfc3397d2625b8228262e86aa7a011b05d"
2463 |
2464 | minimist@^1.1.1, minimist@^1.2.0:
2465 | version "1.2.0"
2466 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.0.tgz#a35008b20f41383eec1fb914f4cd5df79a264284"
2467 |
2468 | minimist@~0.0.1:
2469 | version "0.0.10"
2470 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-0.0.10.tgz#de3f98543dbf96082be48ad1a0c7cda836301dcf"
2471 |
2472 | mixin-deep@^1.2.0:
2473 | version "1.3.1"
2474 | resolved "https://registry.yarnpkg.com/mixin-deep/-/mixin-deep-1.3.1.tgz#a49e7268dce1a0d9698e45326c5626df3543d0fe"
2475 | dependencies:
2476 | for-in "^1.0.2"
2477 | is-extendable "^1.0.1"
2478 |
2479 | mkdirp@^0.5.1:
2480 | version "0.5.1"
2481 | resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.5.1.tgz#30057438eac6cf7f8c4767f38648d6697d75c903"
2482 | dependencies:
2483 | minimist "0.0.8"
2484 |
2485 | ms@2.0.0:
2486 | version "2.0.0"
2487 | resolved "https://registry.yarnpkg.com/ms/-/ms-2.0.0.tgz#5608aeadfc00be6c2901df5f9861788de0d597c8"
2488 |
2489 | ms@^2.1.1:
2490 | version "2.1.1"
2491 | resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.1.tgz#30a5864eb3ebb0a66f2ebe6d727af06a09d86e0a"
2492 |
2493 | nanomatch@^1.2.9:
2494 | version "1.2.13"
2495 | resolved "https://registry.yarnpkg.com/nanomatch/-/nanomatch-1.2.13.tgz#b87a8aa4fc0de8fe6be88895b38983ff265bd119"
2496 | dependencies:
2497 | arr-diff "^4.0.0"
2498 | array-unique "^0.3.2"
2499 | define-property "^2.0.2"
2500 | extend-shallow "^3.0.2"
2501 | fragment-cache "^0.2.1"
2502 | is-windows "^1.0.2"
2503 | kind-of "^6.0.2"
2504 | object.pick "^1.3.0"
2505 | regex-not "^1.0.0"
2506 | snapdragon "^0.8.1"
2507 | to-regex "^3.0.1"
2508 |
2509 | natural-compare@^1.4.0:
2510 | version "1.4.0"
2511 | resolved "https://registry.yarnpkg.com/natural-compare/-/natural-compare-1.4.0.tgz#4abebfeed7541f2c27acfb29bdbbd15c8d5ba4f7"
2512 |
2513 | neo-async@^2.6.0:
2514 | version "2.6.0"
2515 | resolved "https://registry.yarnpkg.com/neo-async/-/neo-async-2.6.0.tgz#b9d15e4d71c6762908654b5183ed38b753340835"
2516 |
2517 | nice-try@^1.0.4:
2518 | version "1.0.5"
2519 | resolved "https://registry.yarnpkg.com/nice-try/-/nice-try-1.0.5.tgz#a3378a7696ce7d223e88fc9b764bd7ef1089e366"
2520 |
2521 | node-int64@^0.4.0:
2522 | version "0.4.0"
2523 | resolved "https://registry.yarnpkg.com/node-int64/-/node-int64-0.4.0.tgz#87a9065cdb355d3182d8f94ce11188b825c68a3b"
2524 |
2525 | node-modules-regexp@^1.0.0:
2526 | version "1.0.0"
2527 | resolved "https://registry.yarnpkg.com/node-modules-regexp/-/node-modules-regexp-1.0.0.tgz#8d9dbe28964a4ac5712e9131642107c71e90ec40"
2528 |
2529 | node-notifier@^5.2.1:
2530 | version "5.4.0"
2531 | resolved "https://registry.yarnpkg.com/node-notifier/-/node-notifier-5.4.0.tgz#7b455fdce9f7de0c63538297354f3db468426e6a"
2532 | dependencies:
2533 | growly "^1.3.0"
2534 | is-wsl "^1.1.0"
2535 | semver "^5.5.0"
2536 | shellwords "^0.1.1"
2537 | which "^1.3.0"
2538 |
2539 | node-releases@^1.1.12:
2540 | version "1.1.12"
2541 | resolved "https://registry.yarnpkg.com/node-releases/-/node-releases-1.1.12.tgz#1d6baf544316b5422fcd35efe18708370a4e7637"
2542 | dependencies:
2543 | semver "^5.3.0"
2544 |
2545 | normalize-package-data@^2.3.2:
2546 | version "2.5.0"
2547 | resolved "https://registry.yarnpkg.com/normalize-package-data/-/normalize-package-data-2.5.0.tgz#e66db1838b200c1dfc233225d12cb36520e234a8"
2548 | dependencies:
2549 | hosted-git-info "^2.1.4"
2550 | resolve "^1.10.0"
2551 | semver "2 || 3 || 4 || 5"
2552 | validate-npm-package-license "^3.0.1"
2553 |
2554 | normalize-path@^2.1.1:
2555 | version "2.1.1"
2556 | resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-2.1.1.tgz#1ab28b556e198363a8c1a6f7e6fa20137fe6aed9"
2557 | dependencies:
2558 | remove-trailing-separator "^1.0.1"
2559 |
2560 | npm-run-path@^2.0.0:
2561 | version "2.0.2"
2562 | resolved "https://registry.yarnpkg.com/npm-run-path/-/npm-run-path-2.0.2.tgz#35a9232dfa35d7067b4cb2ddf2357b1871536c5f"
2563 | dependencies:
2564 | path-key "^2.0.0"
2565 |
2566 | number-is-nan@^1.0.0:
2567 | version "1.0.1"
2568 | resolved "https://registry.yarnpkg.com/number-is-nan/-/number-is-nan-1.0.1.tgz#097b602b53422a522c1afb8790318336941a011d"
2569 |
2570 | nwsapi@^2.0.7:
2571 | version "2.1.3"
2572 | resolved "https://registry.yarnpkg.com/nwsapi/-/nwsapi-2.1.3.tgz#25f3a5cec26c654f7376df6659cdf84b99df9558"
2573 |
2574 | oauth-sign@~0.9.0:
2575 | version "0.9.0"
2576 | resolved "https://registry.yarnpkg.com/oauth-sign/-/oauth-sign-0.9.0.tgz#47a7b016baa68b5fa0ecf3dee08a85c679ac6455"
2577 |
2578 | object-assign@^4.1.1:
2579 | version "4.1.1"
2580 | resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863"
2581 |
2582 | object-copy@^0.1.0:
2583 | version "0.1.0"
2584 | resolved "https://registry.yarnpkg.com/object-copy/-/object-copy-0.1.0.tgz#7e7d858b781bd7c991a41ba975ed3812754e998c"
2585 | dependencies:
2586 | copy-descriptor "^0.1.0"
2587 | define-property "^0.2.5"
2588 | kind-of "^3.0.3"
2589 |
2590 | object-keys@^1.0.12:
2591 | version "1.1.0"
2592 | resolved "https://registry.yarnpkg.com/object-keys/-/object-keys-1.1.0.tgz#11bd22348dd2e096a045ab06f6c85bcc340fa032"
2593 |
2594 | object-visit@^1.0.0:
2595 | version "1.0.1"
2596 | resolved "https://registry.yarnpkg.com/object-visit/-/object-visit-1.0.1.tgz#f79c4493af0c5377b59fe39d395e41042dd045bb"
2597 | dependencies:
2598 | isobject "^3.0.0"
2599 |
2600 | object.getownpropertydescriptors@^2.0.3:
2601 | version "2.0.3"
2602 | resolved "https://registry.yarnpkg.com/object.getownpropertydescriptors/-/object.getownpropertydescriptors-2.0.3.tgz#8758c846f5b407adab0f236e0986f14b051caa16"
2603 | dependencies:
2604 | define-properties "^1.1.2"
2605 | es-abstract "^1.5.1"
2606 |
2607 | object.pick@^1.3.0:
2608 | version "1.3.0"
2609 | resolved "https://registry.yarnpkg.com/object.pick/-/object.pick-1.3.0.tgz#87a10ac4c1694bd2e1cbf53591a66141fb5dd747"
2610 | dependencies:
2611 | isobject "^3.0.1"
2612 |
2613 | once@^1.3.0, once@^1.3.1, once@^1.4.0:
2614 | version "1.4.0"
2615 | resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1"
2616 | dependencies:
2617 | wrappy "1"
2618 |
2619 | optimist@^0.6.1:
2620 | version "0.6.1"
2621 | resolved "https://registry.yarnpkg.com/optimist/-/optimist-0.6.1.tgz#da3ea74686fa21a19a111c326e90eb15a0196686"
2622 | dependencies:
2623 | minimist "~0.0.1"
2624 | wordwrap "~0.0.2"
2625 |
2626 | optionator@^0.8.1:
2627 | version "0.8.2"
2628 | resolved "https://registry.yarnpkg.com/optionator/-/optionator-0.8.2.tgz#364c5e409d3f4d6301d6c0b4c05bba50180aeb64"
2629 | dependencies:
2630 | deep-is "~0.1.3"
2631 | fast-levenshtein "~2.0.4"
2632 | levn "~0.3.0"
2633 | prelude-ls "~1.1.2"
2634 | type-check "~0.3.2"
2635 | wordwrap "~1.0.0"
2636 |
2637 | os-locale@^3.0.0:
2638 | version "3.1.0"
2639 | resolved "https://registry.yarnpkg.com/os-locale/-/os-locale-3.1.0.tgz#a802a6ee17f24c10483ab9935719cef4ed16bf1a"
2640 | dependencies:
2641 | execa "^1.0.0"
2642 | lcid "^2.0.0"
2643 | mem "^4.0.0"
2644 |
2645 | p-defer@^1.0.0:
2646 | version "1.0.0"
2647 | resolved "https://registry.yarnpkg.com/p-defer/-/p-defer-1.0.0.tgz#9f6eb182f6c9aa8cd743004a7d4f96b196b0fb0c"
2648 |
2649 | p-each-series@^1.0.0:
2650 | version "1.0.0"
2651 | resolved "https://registry.yarnpkg.com/p-each-series/-/p-each-series-1.0.0.tgz#930f3d12dd1f50e7434457a22cd6f04ac6ad7f71"
2652 | dependencies:
2653 | p-reduce "^1.0.0"
2654 |
2655 | p-finally@^1.0.0:
2656 | version "1.0.0"
2657 | resolved "https://registry.yarnpkg.com/p-finally/-/p-finally-1.0.0.tgz#3fbcfb15b899a44123b34b6dcc18b724336a2cae"
2658 |
2659 | p-is-promise@^2.0.0:
2660 | version "2.0.0"
2661 | resolved "https://registry.yarnpkg.com/p-is-promise/-/p-is-promise-2.0.0.tgz#7554e3d572109a87e1f3f53f6a7d85d1b194f4c5"
2662 |
2663 | p-limit@^2.0.0:
2664 | version "2.2.0"
2665 | resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-2.2.0.tgz#417c9941e6027a9abcba5092dd2904e255b5fbc2"
2666 | dependencies:
2667 | p-try "^2.0.0"
2668 |
2669 | p-locate@^3.0.0:
2670 | version "3.0.0"
2671 | resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-3.0.0.tgz#322d69a05c0264b25997d9f40cd8a891ab0064a4"
2672 | dependencies:
2673 | p-limit "^2.0.0"
2674 |
2675 | p-reduce@^1.0.0:
2676 | version "1.0.0"
2677 | resolved "https://registry.yarnpkg.com/p-reduce/-/p-reduce-1.0.0.tgz#18c2b0dd936a4690a529f8231f58a0fdb6a47dfa"
2678 |
2679 | p-try@^2.0.0:
2680 | version "2.2.0"
2681 | resolved "https://registry.yarnpkg.com/p-try/-/p-try-2.2.0.tgz#cb2868540e313d61de58fafbe35ce9004d5540e6"
2682 |
2683 | parse-json@^4.0.0:
2684 | version "4.0.0"
2685 | resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-4.0.0.tgz#be35f5425be1f7f6c747184f98a788cb99477ee0"
2686 | dependencies:
2687 | error-ex "^1.3.1"
2688 | json-parse-better-errors "^1.0.1"
2689 |
2690 | parse5@4.0.0:
2691 | version "4.0.0"
2692 | resolved "https://registry.yarnpkg.com/parse5/-/parse5-4.0.0.tgz#6d78656e3da8d78b4ec0b906f7c08ef1dfe3f608"
2693 |
2694 | pascalcase@^0.1.1:
2695 | version "0.1.1"
2696 | resolved "https://registry.yarnpkg.com/pascalcase/-/pascalcase-0.1.1.tgz#b363e55e8006ca6fe21784d2db22bd15d7917f14"
2697 |
2698 | path-exists@^3.0.0:
2699 | version "3.0.0"
2700 | resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-3.0.0.tgz#ce0ebeaa5f78cb18925ea7d810d7b59b010fd515"
2701 |
2702 | path-is-absolute@^1.0.0:
2703 | version "1.0.1"
2704 | resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f"
2705 |
2706 | path-key@^2.0.0, path-key@^2.0.1:
2707 | version "2.0.1"
2708 | resolved "https://registry.yarnpkg.com/path-key/-/path-key-2.0.1.tgz#411cadb574c5a140d3a4b1910d40d80cc9f40b40"
2709 |
2710 | path-parse@^1.0.6:
2711 | version "1.0.6"
2712 | resolved "https://registry.yarnpkg.com/path-parse/-/path-parse-1.0.6.tgz#d62dbb5679405d72c4737ec58600e9ddcf06d24c"
2713 |
2714 | path-type@^3.0.0:
2715 | version "3.0.0"
2716 | resolved "https://registry.yarnpkg.com/path-type/-/path-type-3.0.0.tgz#cef31dc8e0a1a3bb0d105c0cd97cf3bf47f4e36f"
2717 | dependencies:
2718 | pify "^3.0.0"
2719 |
2720 | performance-now@^2.1.0:
2721 | version "2.1.0"
2722 | resolved "https://registry.yarnpkg.com/performance-now/-/performance-now-2.1.0.tgz#6309f4e0e5fa913ec1c69307ae364b4b377c9e7b"
2723 |
2724 | pify@^3.0.0:
2725 | version "3.0.0"
2726 | resolved "https://registry.yarnpkg.com/pify/-/pify-3.0.0.tgz#e5a4acd2c101fdf3d9a4d07f0dbc4db49dd28176"
2727 |
2728 | pirates@^4.0.1:
2729 | version "4.0.1"
2730 | resolved "https://registry.yarnpkg.com/pirates/-/pirates-4.0.1.tgz#643a92caf894566f91b2b986d2c66950a8e2fb87"
2731 | dependencies:
2732 | node-modules-regexp "^1.0.0"
2733 |
2734 | pkg-dir@^3.0.0:
2735 | version "3.0.0"
2736 | resolved "https://registry.yarnpkg.com/pkg-dir/-/pkg-dir-3.0.0.tgz#2749020f239ed990881b1f71210d51eb6523bea3"
2737 | dependencies:
2738 | find-up "^3.0.0"
2739 |
2740 | pn@^1.1.0:
2741 | version "1.1.0"
2742 | resolved "https://registry.yarnpkg.com/pn/-/pn-1.1.0.tgz#e2f4cef0e219f463c179ab37463e4e1ecdccbafb"
2743 |
2744 | posix-character-classes@^0.1.0:
2745 | version "0.1.1"
2746 | resolved "https://registry.yarnpkg.com/posix-character-classes/-/posix-character-classes-0.1.1.tgz#01eac0fe3b5af71a2a6c02feabb8c1fef7e00eab"
2747 |
2748 | prelude-ls@~1.1.2:
2749 | version "1.1.2"
2750 | resolved "https://registry.yarnpkg.com/prelude-ls/-/prelude-ls-1.1.2.tgz#21932a549f5e52ffd9a827f570e04be62a97da54"
2751 |
2752 | prettier@1.16.4:
2753 | version "1.16.4"
2754 | resolved "https://registry.yarnpkg.com/prettier/-/prettier-1.16.4.tgz#73e37e73e018ad2db9c76742e2647e21790c9717"
2755 |
2756 | pretty-format@^24.5.0:
2757 | version "24.5.0"
2758 | resolved "https://registry.yarnpkg.com/pretty-format/-/pretty-format-24.5.0.tgz#cc69a0281a62cd7242633fc135d6930cd889822d"
2759 | dependencies:
2760 | "@jest/types" "^24.5.0"
2761 | ansi-regex "^4.0.0"
2762 | ansi-styles "^3.2.0"
2763 | react-is "^16.8.4"
2764 |
2765 | private@^0.1.6:
2766 | version "0.1.8"
2767 | resolved "https://registry.yarnpkg.com/private/-/private-0.1.8.tgz#2381edb3689f7a53d653190060fcf822d2f368ff"
2768 |
2769 | process-nextick-args@~2.0.0:
2770 | version "2.0.0"
2771 | resolved "https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-2.0.0.tgz#a37d732f4271b4ab1ad070d35508e8290788ffaa"
2772 |
2773 | prompts@^2.0.1:
2774 | version "2.0.4"
2775 | resolved "https://registry.yarnpkg.com/prompts/-/prompts-2.0.4.tgz#179f9d4db3128b9933aa35f93a800d8fce76a682"
2776 | dependencies:
2777 | kleur "^3.0.2"
2778 | sisteransi "^1.0.0"
2779 |
2780 | prop-types@^15.6.2:
2781 | version "15.7.2"
2782 | resolved "https://registry.yarnpkg.com/prop-types/-/prop-types-15.7.2.tgz#52c41e75b8c87e72b9d9360e0206b99dcbffa6c5"
2783 | dependencies:
2784 | loose-envify "^1.4.0"
2785 | object-assign "^4.1.1"
2786 | react-is "^16.8.1"
2787 |
2788 | psl@^1.1.24, psl@^1.1.28:
2789 | version "1.1.31"
2790 | resolved "https://registry.yarnpkg.com/psl/-/psl-1.1.31.tgz#e9aa86d0101b5b105cbe93ac6b784cd547276184"
2791 |
2792 | pump@^3.0.0:
2793 | version "3.0.0"
2794 | resolved "https://registry.yarnpkg.com/pump/-/pump-3.0.0.tgz#b4a2116815bde2f4e1ea602354e8c75565107a64"
2795 | dependencies:
2796 | end-of-stream "^1.1.0"
2797 | once "^1.3.1"
2798 |
2799 | punycode@^1.4.1:
2800 | version "1.4.1"
2801 | resolved "https://registry.yarnpkg.com/punycode/-/punycode-1.4.1.tgz#c0d5a63b2718800ad8e1eb0fa5269c84dd41845e"
2802 |
2803 | punycode@^2.1.0, punycode@^2.1.1:
2804 | version "2.1.1"
2805 | resolved "https://registry.yarnpkg.com/punycode/-/punycode-2.1.1.tgz#b58b010ac40c22c5657616c8d2c2c02c7bf479ec"
2806 |
2807 | qs@~6.5.2:
2808 | version "6.5.2"
2809 | resolved "https://registry.yarnpkg.com/qs/-/qs-6.5.2.tgz#cb3ae806e8740444584ef154ce8ee98d403f3e36"
2810 |
2811 | react-dom@^16.8.6:
2812 | version "16.8.6"
2813 | resolved "https://registry.yarnpkg.com/react-dom/-/react-dom-16.8.6.tgz#71d6303f631e8b0097f56165ef608f051ff6e10f"
2814 | dependencies:
2815 | loose-envify "^1.1.0"
2816 | object-assign "^4.1.1"
2817 | prop-types "^15.6.2"
2818 | scheduler "^0.13.6"
2819 |
2820 | react-is@^16.8.1, react-is@^16.8.4, react-is@^16.8.6:
2821 | version "16.8.6"
2822 | resolved "https://registry.yarnpkg.com/react-is/-/react-is-16.8.6.tgz#5bbc1e2d29141c9fbdfed456343fe2bc430a6a16"
2823 |
2824 | react-test-renderer@^16.8.6:
2825 | version "16.8.6"
2826 | resolved "https://registry.yarnpkg.com/react-test-renderer/-/react-test-renderer-16.8.6.tgz#188d8029b8c39c786f998aa3efd3ffe7642d5ba1"
2827 | dependencies:
2828 | object-assign "^4.1.1"
2829 | prop-types "^15.6.2"
2830 | react-is "^16.8.6"
2831 | scheduler "^0.13.6"
2832 |
2833 | react@^16.8.6:
2834 | version "16.8.6"
2835 | resolved "https://registry.yarnpkg.com/react/-/react-16.8.6.tgz#ad6c3a9614fd3a4e9ef51117f54d888da01f2bbe"
2836 | dependencies:
2837 | loose-envify "^1.1.0"
2838 | object-assign "^4.1.1"
2839 | prop-types "^15.6.2"
2840 | scheduler "^0.13.6"
2841 |
2842 | read-pkg-up@^4.0.0:
2843 | version "4.0.0"
2844 | resolved "https://registry.yarnpkg.com/read-pkg-up/-/read-pkg-up-4.0.0.tgz#1b221c6088ba7799601c808f91161c66e58f8978"
2845 | dependencies:
2846 | find-up "^3.0.0"
2847 | read-pkg "^3.0.0"
2848 |
2849 | read-pkg@^3.0.0:
2850 | version "3.0.0"
2851 | resolved "https://registry.yarnpkg.com/read-pkg/-/read-pkg-3.0.0.tgz#9cbc686978fee65d16c00e2b19c237fcf6e38389"
2852 | dependencies:
2853 | load-json-file "^4.0.0"
2854 | normalize-package-data "^2.3.2"
2855 | path-type "^3.0.0"
2856 |
2857 | readable-stream@^2.0.1:
2858 | version "2.3.6"
2859 | resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.3.6.tgz#b11c27d88b8ff1fbe070643cf94b0c79ae1b0aaf"
2860 | dependencies:
2861 | core-util-is "~1.0.0"
2862 | inherits "~2.0.3"
2863 | isarray "~1.0.0"
2864 | process-nextick-args "~2.0.0"
2865 | safe-buffer "~5.1.1"
2866 | string_decoder "~1.1.1"
2867 | util-deprecate "~1.0.1"
2868 |
2869 | realpath-native@^1.1.0:
2870 | version "1.1.0"
2871 | resolved "https://registry.yarnpkg.com/realpath-native/-/realpath-native-1.1.0.tgz#2003294fea23fb0672f2476ebe22fcf498a2d65c"
2872 | dependencies:
2873 | util.promisify "^1.0.0"
2874 |
2875 | regenerate-unicode-properties@^8.0.2:
2876 | version "8.0.2"
2877 | resolved "https://registry.yarnpkg.com/regenerate-unicode-properties/-/regenerate-unicode-properties-8.0.2.tgz#7b38faa296252376d363558cfbda90c9ce709662"
2878 | dependencies:
2879 | regenerate "^1.4.0"
2880 |
2881 | regenerate@^1.4.0:
2882 | version "1.4.0"
2883 | resolved "https://registry.yarnpkg.com/regenerate/-/regenerate-1.4.0.tgz#4a856ec4b56e4077c557589cae85e7a4c8869a11"
2884 |
2885 | regenerator-transform@^0.13.4:
2886 | version "0.13.4"
2887 | resolved "https://registry.yarnpkg.com/regenerator-transform/-/regenerator-transform-0.13.4.tgz#18f6763cf1382c69c36df76c6ce122cc694284fb"
2888 | dependencies:
2889 | private "^0.1.6"
2890 |
2891 | regex-not@^1.0.0, regex-not@^1.0.2:
2892 | version "1.0.2"
2893 | resolved "https://registry.yarnpkg.com/regex-not/-/regex-not-1.0.2.tgz#1f4ece27e00b0b65e0247a6810e6a85d83a5752c"
2894 | dependencies:
2895 | extend-shallow "^3.0.2"
2896 | safe-regex "^1.1.0"
2897 |
2898 | regexp-tree@^0.1.0:
2899 | version "0.1.5"
2900 | resolved "https://registry.yarnpkg.com/regexp-tree/-/regexp-tree-0.1.5.tgz#7cd71fca17198d04b4176efd79713f2998009397"
2901 |
2902 | regexpu-core@^4.1.3, regexpu-core@^4.5.4:
2903 | version "4.5.4"
2904 | resolved "https://registry.yarnpkg.com/regexpu-core/-/regexpu-core-4.5.4.tgz#080d9d02289aa87fe1667a4f5136bc98a6aebaae"
2905 | dependencies:
2906 | regenerate "^1.4.0"
2907 | regenerate-unicode-properties "^8.0.2"
2908 | regjsgen "^0.5.0"
2909 | regjsparser "^0.6.0"
2910 | unicode-match-property-ecmascript "^1.0.4"
2911 | unicode-match-property-value-ecmascript "^1.1.0"
2912 |
2913 | regjsgen@^0.5.0:
2914 | version "0.5.0"
2915 | resolved "https://registry.yarnpkg.com/regjsgen/-/regjsgen-0.5.0.tgz#a7634dc08f89209c2049adda3525711fb97265dd"
2916 |
2917 | regjsparser@^0.6.0:
2918 | version "0.6.0"
2919 | resolved "https://registry.yarnpkg.com/regjsparser/-/regjsparser-0.6.0.tgz#f1e6ae8b7da2bae96c99399b868cd6c933a2ba9c"
2920 | dependencies:
2921 | jsesc "~0.5.0"
2922 |
2923 | remove-trailing-separator@^1.0.1:
2924 | version "1.1.0"
2925 | resolved "https://registry.yarnpkg.com/remove-trailing-separator/-/remove-trailing-separator-1.1.0.tgz#c24bce2a283adad5bc3f58e0d48249b92379d8ef"
2926 |
2927 | repeat-element@^1.1.2:
2928 | version "1.1.3"
2929 | resolved "https://registry.yarnpkg.com/repeat-element/-/repeat-element-1.1.3.tgz#782e0d825c0c5a3bb39731f84efee6b742e6b1ce"
2930 |
2931 | repeat-string@^1.6.1:
2932 | version "1.6.1"
2933 | resolved "https://registry.yarnpkg.com/repeat-string/-/repeat-string-1.6.1.tgz#8dcae470e1c88abc2d600fff4a776286da75e637"
2934 |
2935 | request-promise-core@1.1.2:
2936 | version "1.1.2"
2937 | resolved "https://registry.yarnpkg.com/request-promise-core/-/request-promise-core-1.1.2.tgz#339f6aababcafdb31c799ff158700336301d3346"
2938 | dependencies:
2939 | lodash "^4.17.11"
2940 |
2941 | request-promise-native@^1.0.5:
2942 | version "1.0.7"
2943 | resolved "https://registry.yarnpkg.com/request-promise-native/-/request-promise-native-1.0.7.tgz#a49868a624bdea5069f1251d0a836e0d89aa2c59"
2944 | dependencies:
2945 | request-promise-core "1.1.2"
2946 | stealthy-require "^1.1.1"
2947 | tough-cookie "^2.3.3"
2948 |
2949 | request@^2.86.0, request@^2.87.0:
2950 | version "2.88.0"
2951 | resolved "https://registry.yarnpkg.com/request/-/request-2.88.0.tgz#9c2fca4f7d35b592efe57c7f0a55e81052124fef"
2952 | dependencies:
2953 | aws-sign2 "~0.7.0"
2954 | aws4 "^1.8.0"
2955 | caseless "~0.12.0"
2956 | combined-stream "~1.0.6"
2957 | extend "~3.0.2"
2958 | forever-agent "~0.6.1"
2959 | form-data "~2.3.2"
2960 | har-validator "~5.1.0"
2961 | http-signature "~1.2.0"
2962 | is-typedarray "~1.0.0"
2963 | isstream "~0.1.2"
2964 | json-stringify-safe "~5.0.1"
2965 | mime-types "~2.1.19"
2966 | oauth-sign "~0.9.0"
2967 | performance-now "^2.1.0"
2968 | qs "~6.5.2"
2969 | safe-buffer "^5.1.2"
2970 | tough-cookie "~2.4.3"
2971 | tunnel-agent "^0.6.0"
2972 | uuid "^3.3.2"
2973 |
2974 | require-directory@^2.1.1:
2975 | version "2.1.1"
2976 | resolved "https://registry.yarnpkg.com/require-directory/-/require-directory-2.1.1.tgz#8c64ad5fd30dab1c976e2344ffe7f792a6a6df42"
2977 |
2978 | require-main-filename@^1.0.1:
2979 | version "1.0.1"
2980 | resolved "https://registry.yarnpkg.com/require-main-filename/-/require-main-filename-1.0.1.tgz#97f717b69d48784f5f526a6c5aa8ffdda055a4d1"
2981 |
2982 | resolve-cwd@^2.0.0:
2983 | version "2.0.0"
2984 | resolved "https://registry.yarnpkg.com/resolve-cwd/-/resolve-cwd-2.0.0.tgz#00a9f7387556e27038eae232caa372a6a59b665a"
2985 | dependencies:
2986 | resolve-from "^3.0.0"
2987 |
2988 | resolve-from@^3.0.0:
2989 | version "3.0.0"
2990 | resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-3.0.0.tgz#b22c7af7d9d6881bc8b6e653335eebcb0a188748"
2991 |
2992 | resolve-url@^0.2.1:
2993 | version "0.2.1"
2994 | resolved "https://registry.yarnpkg.com/resolve-url/-/resolve-url-0.2.1.tgz#2c637fe77c893afd2a663fe21aa9080068e2052a"
2995 |
2996 | resolve@1.1.7:
2997 | version "1.1.7"
2998 | resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.1.7.tgz#203114d82ad2c5ed9e8e0411b3932875e889e97b"
2999 |
3000 | resolve@^1.10.0, resolve@^1.3.2:
3001 | version "1.10.0"
3002 | resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.10.0.tgz#3bdaaeaf45cc07f375656dfd2e54ed0810b101ba"
3003 | dependencies:
3004 | path-parse "^1.0.6"
3005 |
3006 | ret@~0.1.10:
3007 | version "0.1.15"
3008 | resolved "https://registry.yarnpkg.com/ret/-/ret-0.1.15.tgz#b8a4825d5bdb1fc3f6f53c2bc33f81388681c7bc"
3009 |
3010 | rimraf@^2.5.4, rimraf@^2.6.2:
3011 | version "2.6.3"
3012 | resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.6.3.tgz#b2d104fe0d8fb27cf9e0a1cda8262dd3833c6cab"
3013 | dependencies:
3014 | glob "^7.1.3"
3015 |
3016 | rsvp@^4.8.4:
3017 | version "4.8.4"
3018 | resolved "https://registry.yarnpkg.com/rsvp/-/rsvp-4.8.4.tgz#b50e6b34583f3dd89329a2f23a8a2be072845911"
3019 |
3020 | safe-buffer@^5.0.1, safe-buffer@^5.1.2, safe-buffer@~5.1.0, safe-buffer@~5.1.1:
3021 | version "5.1.2"
3022 | resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.1.2.tgz#991ec69d296e0313747d59bdfd2b745c35f8828d"
3023 |
3024 | safe-regex@^1.1.0:
3025 | version "1.1.0"
3026 | resolved "https://registry.yarnpkg.com/safe-regex/-/safe-regex-1.1.0.tgz#40a3669f3b077d1e943d44629e157dd48023bf2e"
3027 | dependencies:
3028 | ret "~0.1.10"
3029 |
3030 | "safer-buffer@>= 2.1.2 < 3", safer-buffer@^2.0.2, safer-buffer@^2.1.0, safer-buffer@~2.1.0:
3031 | version "2.1.2"
3032 | resolved "https://registry.yarnpkg.com/safer-buffer/-/safer-buffer-2.1.2.tgz#44fa161b0187b9549dd84bb91802f9bd8385cd6a"
3033 |
3034 | sane@^4.0.3:
3035 | version "4.1.0"
3036 | resolved "https://registry.yarnpkg.com/sane/-/sane-4.1.0.tgz#ed881fd922733a6c461bc189dc2b6c006f3ffded"
3037 | dependencies:
3038 | "@cnakazawa/watch" "^1.0.3"
3039 | anymatch "^2.0.0"
3040 | capture-exit "^2.0.0"
3041 | exec-sh "^0.3.2"
3042 | execa "^1.0.0"
3043 | fb-watchman "^2.0.0"
3044 | micromatch "^3.1.4"
3045 | minimist "^1.1.1"
3046 | walker "~1.0.5"
3047 |
3048 | sax@^1.2.4:
3049 | version "1.2.4"
3050 | resolved "https://registry.yarnpkg.com/sax/-/sax-1.2.4.tgz#2816234e2378bddc4e5354fab5caa895df7100d9"
3051 |
3052 | scheduler@^0.13.6:
3053 | version "0.13.6"
3054 | resolved "https://registry.yarnpkg.com/scheduler/-/scheduler-0.13.6.tgz#466a4ec332467b31a91b9bf74e5347072e4cd889"
3055 | dependencies:
3056 | loose-envify "^1.1.0"
3057 | object-assign "^4.1.1"
3058 |
3059 | "semver@2 || 3 || 4 || 5", semver@^5.3.0, semver@^5.4.1, semver@^5.5.0, semver@^5.6.0:
3060 | version "5.7.0"
3061 | resolved "https://registry.yarnpkg.com/semver/-/semver-5.7.0.tgz#790a7cf6fea5459bac96110b29b60412dc8ff96b"
3062 |
3063 | set-blocking@^2.0.0:
3064 | version "2.0.0"
3065 | resolved "https://registry.yarnpkg.com/set-blocking/-/set-blocking-2.0.0.tgz#045f9782d011ae9a6803ddd382b24392b3d890f7"
3066 |
3067 | set-value@^0.4.3:
3068 | version "0.4.3"
3069 | resolved "https://registry.yarnpkg.com/set-value/-/set-value-0.4.3.tgz#7db08f9d3d22dc7f78e53af3c3bf4666ecdfccf1"
3070 | dependencies:
3071 | extend-shallow "^2.0.1"
3072 | is-extendable "^0.1.1"
3073 | is-plain-object "^2.0.1"
3074 | to-object-path "^0.3.0"
3075 |
3076 | set-value@^2.0.0:
3077 | version "2.0.0"
3078 | resolved "https://registry.yarnpkg.com/set-value/-/set-value-2.0.0.tgz#71ae4a88f0feefbbf52d1ea604f3fb315ebb6274"
3079 | dependencies:
3080 | extend-shallow "^2.0.1"
3081 | is-extendable "^0.1.1"
3082 | is-plain-object "^2.0.3"
3083 | split-string "^3.0.1"
3084 |
3085 | shebang-command@^1.2.0:
3086 | version "1.2.0"
3087 | resolved "https://registry.yarnpkg.com/shebang-command/-/shebang-command-1.2.0.tgz#44aac65b695b03398968c39f363fee5deafdf1ea"
3088 | dependencies:
3089 | shebang-regex "^1.0.0"
3090 |
3091 | shebang-regex@^1.0.0:
3092 | version "1.0.0"
3093 | resolved "https://registry.yarnpkg.com/shebang-regex/-/shebang-regex-1.0.0.tgz#da42f49740c0b42db2ca9728571cb190c98efea3"
3094 |
3095 | shellwords@^0.1.1:
3096 | version "0.1.1"
3097 | resolved "https://registry.yarnpkg.com/shellwords/-/shellwords-0.1.1.tgz#d6b9181c1a48d397324c84871efbcfc73fc0654b"
3098 |
3099 | signal-exit@^3.0.0, signal-exit@^3.0.2:
3100 | version "3.0.2"
3101 | resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.2.tgz#b5fdc08f1287ea1178628e415e25132b73646c6d"
3102 |
3103 | sisteransi@^1.0.0:
3104 | version "1.0.0"
3105 | resolved "https://registry.yarnpkg.com/sisteransi/-/sisteransi-1.0.0.tgz#77d9622ff909080f1c19e5f4a1df0c1b0a27b88c"
3106 |
3107 | slash@^2.0.0:
3108 | version "2.0.0"
3109 | resolved "https://registry.yarnpkg.com/slash/-/slash-2.0.0.tgz#de552851a1759df3a8f206535442f5ec4ddeab44"
3110 |
3111 | snapdragon-node@^2.0.1:
3112 | version "2.1.1"
3113 | resolved "https://registry.yarnpkg.com/snapdragon-node/-/snapdragon-node-2.1.1.tgz#6c175f86ff14bdb0724563e8f3c1b021a286853b"
3114 | dependencies:
3115 | define-property "^1.0.0"
3116 | isobject "^3.0.0"
3117 | snapdragon-util "^3.0.1"
3118 |
3119 | snapdragon-util@^3.0.1:
3120 | version "3.0.1"
3121 | resolved "https://registry.yarnpkg.com/snapdragon-util/-/snapdragon-util-3.0.1.tgz#f956479486f2acd79700693f6f7b805e45ab56e2"
3122 | dependencies:
3123 | kind-of "^3.2.0"
3124 |
3125 | snapdragon@^0.8.1:
3126 | version "0.8.2"
3127 | resolved "https://registry.yarnpkg.com/snapdragon/-/snapdragon-0.8.2.tgz#64922e7c565b0e14204ba1aa7d6964278d25182d"
3128 | dependencies:
3129 | base "^0.11.1"
3130 | debug "^2.2.0"
3131 | define-property "^0.2.5"
3132 | extend-shallow "^2.0.1"
3133 | map-cache "^0.2.2"
3134 | source-map "^0.5.6"
3135 | source-map-resolve "^0.5.0"
3136 | use "^3.1.0"
3137 |
3138 | source-map-resolve@^0.5.0:
3139 | version "0.5.2"
3140 | resolved "https://registry.yarnpkg.com/source-map-resolve/-/source-map-resolve-0.5.2.tgz#72e2cc34095543e43b2c62b2c4c10d4a9054f259"
3141 | dependencies:
3142 | atob "^2.1.1"
3143 | decode-uri-component "^0.2.0"
3144 | resolve-url "^0.2.1"
3145 | source-map-url "^0.4.0"
3146 | urix "^0.1.0"
3147 |
3148 | source-map-support@^0.5.6:
3149 | version "0.5.11"
3150 | resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.5.11.tgz#efac2ce0800355d026326a0ca23e162aeac9a4e2"
3151 | dependencies:
3152 | buffer-from "^1.0.0"
3153 | source-map "^0.6.0"
3154 |
3155 | source-map-url@^0.4.0:
3156 | version "0.4.0"
3157 | resolved "https://registry.yarnpkg.com/source-map-url/-/source-map-url-0.4.0.tgz#3e935d7ddd73631b97659956d55128e87b5084a3"
3158 |
3159 | source-map@^0.5.0, source-map@^0.5.6:
3160 | version "0.5.7"
3161 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.5.7.tgz#8a039d2d1021d22d1ea14c80d8ea468ba2ef3fcc"
3162 |
3163 | source-map@^0.6.0, source-map@^0.6.1, source-map@~0.6.1:
3164 | version "0.6.1"
3165 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.6.1.tgz#74722af32e9614e9c287a8d0bbde48b5e2f1a263"
3166 |
3167 | spdx-correct@^3.0.0:
3168 | version "3.1.0"
3169 | resolved "https://registry.yarnpkg.com/spdx-correct/-/spdx-correct-3.1.0.tgz#fb83e504445268f154b074e218c87c003cd31df4"
3170 | dependencies:
3171 | spdx-expression-parse "^3.0.0"
3172 | spdx-license-ids "^3.0.0"
3173 |
3174 | spdx-exceptions@^2.1.0:
3175 | version "2.2.0"
3176 | resolved "https://registry.yarnpkg.com/spdx-exceptions/-/spdx-exceptions-2.2.0.tgz#2ea450aee74f2a89bfb94519c07fcd6f41322977"
3177 |
3178 | spdx-expression-parse@^3.0.0:
3179 | version "3.0.0"
3180 | resolved "https://registry.yarnpkg.com/spdx-expression-parse/-/spdx-expression-parse-3.0.0.tgz#99e119b7a5da00e05491c9fa338b7904823b41d0"
3181 | dependencies:
3182 | spdx-exceptions "^2.1.0"
3183 | spdx-license-ids "^3.0.0"
3184 |
3185 | spdx-license-ids@^3.0.0:
3186 | version "3.0.3"
3187 | resolved "https://registry.yarnpkg.com/spdx-license-ids/-/spdx-license-ids-3.0.3.tgz#81c0ce8f21474756148bbb5f3bfc0f36bf15d76e"
3188 |
3189 | split-string@^3.0.1, split-string@^3.0.2:
3190 | version "3.1.0"
3191 | resolved "https://registry.yarnpkg.com/split-string/-/split-string-3.1.0.tgz#7cb09dda3a86585705c64b39a6466038682e8fe2"
3192 | dependencies:
3193 | extend-shallow "^3.0.0"
3194 |
3195 | sprintf-js@~1.0.2:
3196 | version "1.0.3"
3197 | resolved "https://registry.yarnpkg.com/sprintf-js/-/sprintf-js-1.0.3.tgz#04e6926f662895354f3dd015203633b857297e2c"
3198 |
3199 | sshpk@^1.7.0:
3200 | version "1.16.1"
3201 | resolved "https://registry.yarnpkg.com/sshpk/-/sshpk-1.16.1.tgz#fb661c0bef29b39db40769ee39fa70093d6f6877"
3202 | dependencies:
3203 | asn1 "~0.2.3"
3204 | assert-plus "^1.0.0"
3205 | bcrypt-pbkdf "^1.0.0"
3206 | dashdash "^1.12.0"
3207 | ecc-jsbn "~0.1.1"
3208 | getpass "^0.1.1"
3209 | jsbn "~0.1.0"
3210 | safer-buffer "^2.0.2"
3211 | tweetnacl "~0.14.0"
3212 |
3213 | stack-utils@^1.0.1:
3214 | version "1.0.2"
3215 | resolved "https://registry.yarnpkg.com/stack-utils/-/stack-utils-1.0.2.tgz#33eba3897788558bebfc2db059dc158ec36cebb8"
3216 |
3217 | static-extend@^0.1.1:
3218 | version "0.1.2"
3219 | resolved "https://registry.yarnpkg.com/static-extend/-/static-extend-0.1.2.tgz#60809c39cbff55337226fd5e0b520f341f1fb5c6"
3220 | dependencies:
3221 | define-property "^0.2.5"
3222 | object-copy "^0.1.0"
3223 |
3224 | stealthy-require@^1.1.1:
3225 | version "1.1.1"
3226 | resolved "https://registry.yarnpkg.com/stealthy-require/-/stealthy-require-1.1.1.tgz#35b09875b4ff49f26a777e509b3090a3226bf24b"
3227 |
3228 | string-length@^2.0.0:
3229 | version "2.0.0"
3230 | resolved "https://registry.yarnpkg.com/string-length/-/string-length-2.0.0.tgz#d40dbb686a3ace960c1cffca562bf2c45f8363ed"
3231 | dependencies:
3232 | astral-regex "^1.0.0"
3233 | strip-ansi "^4.0.0"
3234 |
3235 | string-width@^1.0.1:
3236 | version "1.0.2"
3237 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-1.0.2.tgz#118bdf5b8cdc51a2a7e70d211e07e2b0b9b107d3"
3238 | dependencies:
3239 | code-point-at "^1.0.0"
3240 | is-fullwidth-code-point "^1.0.0"
3241 | strip-ansi "^3.0.0"
3242 |
3243 | string-width@^2.0.0, string-width@^2.1.1:
3244 | version "2.1.1"
3245 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-2.1.1.tgz#ab93f27a8dc13d28cac815c462143a6d9012ae9e"
3246 | dependencies:
3247 | is-fullwidth-code-point "^2.0.0"
3248 | strip-ansi "^4.0.0"
3249 |
3250 | string_decoder@~1.1.1:
3251 | version "1.1.1"
3252 | resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.1.1.tgz#9cf1611ba62685d7030ae9e4ba34149c3af03fc8"
3253 | dependencies:
3254 | safe-buffer "~5.1.0"
3255 |
3256 | strip-ansi@^3.0.0, strip-ansi@^3.0.1:
3257 | version "3.0.1"
3258 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-3.0.1.tgz#6a385fb8853d952d5ff05d0e8aaf94278dc63dcf"
3259 | dependencies:
3260 | ansi-regex "^2.0.0"
3261 |
3262 | strip-ansi@^4.0.0:
3263 | version "4.0.0"
3264 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-4.0.0.tgz#a8479022eb1ac368a871389b635262c505ee368f"
3265 | dependencies:
3266 | ansi-regex "^3.0.0"
3267 |
3268 | strip-ansi@^5.0.0:
3269 | version "5.2.0"
3270 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-5.2.0.tgz#8c9a536feb6afc962bdfa5b104a5091c1ad9c0ae"
3271 | dependencies:
3272 | ansi-regex "^4.1.0"
3273 |
3274 | strip-bom@^3.0.0:
3275 | version "3.0.0"
3276 | resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-3.0.0.tgz#2334c18e9c759f7bdd56fdef7e9ae3d588e68ed3"
3277 |
3278 | strip-eof@^1.0.0:
3279 | version "1.0.0"
3280 | resolved "https://registry.yarnpkg.com/strip-eof/-/strip-eof-1.0.0.tgz#bb43ff5598a6eb05d89b59fcd129c983313606bf"
3281 |
3282 | supports-color@^5.3.0:
3283 | version "5.5.0"
3284 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-5.5.0.tgz#e2e69a44ac8772f78a1ec0b35b689df6530efc8f"
3285 | dependencies:
3286 | has-flag "^3.0.0"
3287 |
3288 | supports-color@^6.0.0, supports-color@^6.1.0:
3289 | version "6.1.0"
3290 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-6.1.0.tgz#0764abc69c63d5ac842dd4867e8d025e880df8f3"
3291 | dependencies:
3292 | has-flag "^3.0.0"
3293 |
3294 | symbol-tree@^3.2.2:
3295 | version "3.2.2"
3296 | resolved "https://registry.yarnpkg.com/symbol-tree/-/symbol-tree-3.2.2.tgz#ae27db38f660a7ae2e1c3b7d1bc290819b8519e6"
3297 |
3298 | test-exclude@^5.0.0:
3299 | version "5.1.0"
3300 | resolved "https://registry.yarnpkg.com/test-exclude/-/test-exclude-5.1.0.tgz#6ba6b25179d2d38724824661323b73e03c0c1de1"
3301 | dependencies:
3302 | arrify "^1.0.1"
3303 | minimatch "^3.0.4"
3304 | read-pkg-up "^4.0.0"
3305 | require-main-filename "^1.0.1"
3306 |
3307 | throat@^4.0.0:
3308 | version "4.1.0"
3309 | resolved "https://registry.yarnpkg.com/throat/-/throat-4.1.0.tgz#89037cbc92c56ab18926e6ba4cbb200e15672a6a"
3310 |
3311 | tmpl@1.0.x:
3312 | version "1.0.4"
3313 | resolved "https://registry.yarnpkg.com/tmpl/-/tmpl-1.0.4.tgz#23640dd7b42d00433911140820e5cf440e521dd1"
3314 |
3315 | to-fast-properties@^2.0.0:
3316 | version "2.0.0"
3317 | resolved "https://registry.yarnpkg.com/to-fast-properties/-/to-fast-properties-2.0.0.tgz#dc5e698cbd079265bc73e0377681a4e4e83f616e"
3318 |
3319 | to-object-path@^0.3.0:
3320 | version "0.3.0"
3321 | resolved "https://registry.yarnpkg.com/to-object-path/-/to-object-path-0.3.0.tgz#297588b7b0e7e0ac08e04e672f85c1f4999e17af"
3322 | dependencies:
3323 | kind-of "^3.0.2"
3324 |
3325 | to-regex-range@^2.1.0:
3326 | version "2.1.1"
3327 | resolved "https://registry.yarnpkg.com/to-regex-range/-/to-regex-range-2.1.1.tgz#7c80c17b9dfebe599e27367e0d4dd5590141db38"
3328 | dependencies:
3329 | is-number "^3.0.0"
3330 | repeat-string "^1.6.1"
3331 |
3332 | to-regex@^3.0.1, to-regex@^3.0.2:
3333 | version "3.0.2"
3334 | resolved "https://registry.yarnpkg.com/to-regex/-/to-regex-3.0.2.tgz#13cfdd9b336552f30b51f33a8ae1b42a7a7599ce"
3335 | dependencies:
3336 | define-property "^2.0.2"
3337 | extend-shallow "^3.0.2"
3338 | regex-not "^1.0.2"
3339 | safe-regex "^1.1.0"
3340 |
3341 | tough-cookie@^2.3.3, tough-cookie@^2.3.4:
3342 | version "2.5.0"
3343 | resolved "https://registry.yarnpkg.com/tough-cookie/-/tough-cookie-2.5.0.tgz#cd9fb2a0aa1d5a12b473bd9fb96fa3dcff65ade2"
3344 | dependencies:
3345 | psl "^1.1.28"
3346 | punycode "^2.1.1"
3347 |
3348 | tough-cookie@~2.4.3:
3349 | version "2.4.3"
3350 | resolved "https://registry.yarnpkg.com/tough-cookie/-/tough-cookie-2.4.3.tgz#53f36da3f47783b0925afa06ff9f3b165280f781"
3351 | dependencies:
3352 | psl "^1.1.24"
3353 | punycode "^1.4.1"
3354 |
3355 | tr46@^1.0.1:
3356 | version "1.0.1"
3357 | resolved "https://registry.yarnpkg.com/tr46/-/tr46-1.0.1.tgz#a8b13fd6bfd2489519674ccde55ba3693b706d09"
3358 | dependencies:
3359 | punycode "^2.1.0"
3360 |
3361 | trim-right@^1.0.1:
3362 | version "1.0.1"
3363 | resolved "https://registry.yarnpkg.com/trim-right/-/trim-right-1.0.1.tgz#cb2e1203067e0c8de1f614094b9fe45704ea6003"
3364 |
3365 | tunnel-agent@^0.6.0:
3366 | version "0.6.0"
3367 | resolved "https://registry.yarnpkg.com/tunnel-agent/-/tunnel-agent-0.6.0.tgz#27a5dea06b36b04a0a9966774b290868f0fc40fd"
3368 | dependencies:
3369 | safe-buffer "^5.0.1"
3370 |
3371 | tweetnacl@^0.14.3, tweetnacl@~0.14.0:
3372 | version "0.14.5"
3373 | resolved "https://registry.yarnpkg.com/tweetnacl/-/tweetnacl-0.14.5.tgz#5ae68177f192d4456269d108afa93ff8743f4f64"
3374 |
3375 | type-check@~0.3.2:
3376 | version "0.3.2"
3377 | resolved "https://registry.yarnpkg.com/type-check/-/type-check-0.3.2.tgz#5884cab512cf1d355e3fb784f30804b2b520db72"
3378 | dependencies:
3379 | prelude-ls "~1.1.2"
3380 |
3381 | uglify-js@^3.1.4:
3382 | version "3.5.3"
3383 | resolved "https://registry.yarnpkg.com/uglify-js/-/uglify-js-3.5.3.tgz#d490bb5347f23025f0c1bc0dee901d98e4d6b063"
3384 | dependencies:
3385 | commander "~2.19.0"
3386 | source-map "~0.6.1"
3387 |
3388 | unicode-canonical-property-names-ecmascript@^1.0.4:
3389 | version "1.0.4"
3390 | resolved "https://registry.yarnpkg.com/unicode-canonical-property-names-ecmascript/-/unicode-canonical-property-names-ecmascript-1.0.4.tgz#2619800c4c825800efdd8343af7dd9933cbe2818"
3391 |
3392 | unicode-match-property-ecmascript@^1.0.4:
3393 | version "1.0.4"
3394 | resolved "https://registry.yarnpkg.com/unicode-match-property-ecmascript/-/unicode-match-property-ecmascript-1.0.4.tgz#8ed2a32569961bce9227d09cd3ffbb8fed5f020c"
3395 | dependencies:
3396 | unicode-canonical-property-names-ecmascript "^1.0.4"
3397 | unicode-property-aliases-ecmascript "^1.0.4"
3398 |
3399 | unicode-match-property-value-ecmascript@^1.1.0:
3400 | version "1.1.0"
3401 | resolved "https://registry.yarnpkg.com/unicode-match-property-value-ecmascript/-/unicode-match-property-value-ecmascript-1.1.0.tgz#5b4b426e08d13a80365e0d657ac7a6c1ec46a277"
3402 |
3403 | unicode-property-aliases-ecmascript@^1.0.4:
3404 | version "1.0.5"
3405 | resolved "https://registry.yarnpkg.com/unicode-property-aliases-ecmascript/-/unicode-property-aliases-ecmascript-1.0.5.tgz#a9cc6cc7ce63a0a3023fc99e341b94431d405a57"
3406 |
3407 | union-value@^1.0.0:
3408 | version "1.0.0"
3409 | resolved "https://registry.yarnpkg.com/union-value/-/union-value-1.0.0.tgz#5c71c34cb5bad5dcebe3ea0cd08207ba5aa1aea4"
3410 | dependencies:
3411 | arr-union "^3.1.0"
3412 | get-value "^2.0.6"
3413 | is-extendable "^0.1.1"
3414 | set-value "^0.4.3"
3415 |
3416 | unset-value@^1.0.0:
3417 | version "1.0.0"
3418 | resolved "https://registry.yarnpkg.com/unset-value/-/unset-value-1.0.0.tgz#8376873f7d2335179ffb1e6fc3a8ed0dfc8ab559"
3419 | dependencies:
3420 | has-value "^0.3.1"
3421 | isobject "^3.0.0"
3422 |
3423 | uri-js@^4.2.2:
3424 | version "4.2.2"
3425 | resolved "https://registry.yarnpkg.com/uri-js/-/uri-js-4.2.2.tgz#94c540e1ff772956e2299507c010aea6c8838eb0"
3426 | dependencies:
3427 | punycode "^2.1.0"
3428 |
3429 | urix@^0.1.0:
3430 | version "0.1.0"
3431 | resolved "https://registry.yarnpkg.com/urix/-/urix-0.1.0.tgz#da937f7a62e21fec1fd18d49b35c2935067a6c72"
3432 |
3433 | use@^3.1.0:
3434 | version "3.1.1"
3435 | resolved "https://registry.yarnpkg.com/use/-/use-3.1.1.tgz#d50c8cac79a19fbc20f2911f56eb973f4e10070f"
3436 |
3437 | util-deprecate@~1.0.1:
3438 | version "1.0.2"
3439 | resolved "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf"
3440 |
3441 | util.promisify@^1.0.0:
3442 | version "1.0.0"
3443 | resolved "https://registry.yarnpkg.com/util.promisify/-/util.promisify-1.0.0.tgz#440f7165a459c9a16dc145eb8e72f35687097030"
3444 | dependencies:
3445 | define-properties "^1.1.2"
3446 | object.getownpropertydescriptors "^2.0.3"
3447 |
3448 | uuid@^3.3.2:
3449 | version "3.3.2"
3450 | resolved "https://registry.yarnpkg.com/uuid/-/uuid-3.3.2.tgz#1b4af4955eb3077c501c23872fc6513811587131"
3451 |
3452 | validate-npm-package-license@^3.0.1:
3453 | version "3.0.4"
3454 | resolved "https://registry.yarnpkg.com/validate-npm-package-license/-/validate-npm-package-license-3.0.4.tgz#fc91f6b9c7ba15c857f4cb2c5defeec39d4f410a"
3455 | dependencies:
3456 | spdx-correct "^3.0.0"
3457 | spdx-expression-parse "^3.0.0"
3458 |
3459 | verror@1.10.0:
3460 | version "1.10.0"
3461 | resolved "https://registry.yarnpkg.com/verror/-/verror-1.10.0.tgz#3a105ca17053af55d6e270c1f8288682e18da400"
3462 | dependencies:
3463 | assert-plus "^1.0.0"
3464 | core-util-is "1.0.2"
3465 | extsprintf "^1.2.0"
3466 |
3467 | w3c-hr-time@^1.0.1:
3468 | version "1.0.1"
3469 | resolved "https://registry.yarnpkg.com/w3c-hr-time/-/w3c-hr-time-1.0.1.tgz#82ac2bff63d950ea9e3189a58a65625fedf19045"
3470 | dependencies:
3471 | browser-process-hrtime "^0.1.2"
3472 |
3473 | walker@~1.0.5:
3474 | version "1.0.7"
3475 | resolved "https://registry.yarnpkg.com/walker/-/walker-1.0.7.tgz#2f7f9b8fd10d677262b18a884e28d19618e028fb"
3476 | dependencies:
3477 | makeerror "1.0.x"
3478 |
3479 | webidl-conversions@^4.0.2:
3480 | version "4.0.2"
3481 | resolved "https://registry.yarnpkg.com/webidl-conversions/-/webidl-conversions-4.0.2.tgz#a855980b1f0b6b359ba1d5d9fb39ae941faa63ad"
3482 |
3483 | whatwg-encoding@^1.0.1, whatwg-encoding@^1.0.3:
3484 | version "1.0.5"
3485 | resolved "https://registry.yarnpkg.com/whatwg-encoding/-/whatwg-encoding-1.0.5.tgz#5abacf777c32166a51d085d6b4f3e7d27113ddb0"
3486 | dependencies:
3487 | iconv-lite "0.4.24"
3488 |
3489 | whatwg-mimetype@^2.1.0, whatwg-mimetype@^2.2.0:
3490 | version "2.3.0"
3491 | resolved "https://registry.yarnpkg.com/whatwg-mimetype/-/whatwg-mimetype-2.3.0.tgz#3d4b1e0312d2079879f826aff18dbeeca5960fbf"
3492 |
3493 | whatwg-url@^6.4.1:
3494 | version "6.5.0"
3495 | resolved "https://registry.yarnpkg.com/whatwg-url/-/whatwg-url-6.5.0.tgz#f2df02bff176fd65070df74ad5ccbb5a199965a8"
3496 | dependencies:
3497 | lodash.sortby "^4.7.0"
3498 | tr46 "^1.0.1"
3499 | webidl-conversions "^4.0.2"
3500 |
3501 | whatwg-url@^7.0.0:
3502 | version "7.0.0"
3503 | resolved "https://registry.yarnpkg.com/whatwg-url/-/whatwg-url-7.0.0.tgz#fde926fa54a599f3adf82dff25a9f7be02dc6edd"
3504 | dependencies:
3505 | lodash.sortby "^4.7.0"
3506 | tr46 "^1.0.1"
3507 | webidl-conversions "^4.0.2"
3508 |
3509 | which-module@^2.0.0:
3510 | version "2.0.0"
3511 | resolved "https://registry.yarnpkg.com/which-module/-/which-module-2.0.0.tgz#d9ef07dce77b9902b8a3a8fa4b31c3e3f7e6e87a"
3512 |
3513 | which@^1.2.9, which@^1.3.0:
3514 | version "1.3.1"
3515 | resolved "https://registry.yarnpkg.com/which/-/which-1.3.1.tgz#a45043d54f5805316da8d62f9f50918d3da70b0a"
3516 | dependencies:
3517 | isexe "^2.0.0"
3518 |
3519 | wordwrap@~0.0.2:
3520 | version "0.0.3"
3521 | resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-0.0.3.tgz#a3d5da6cd5c0bc0008d37234bbaf1bed63059107"
3522 |
3523 | wordwrap@~1.0.0:
3524 | version "1.0.0"
3525 | resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-1.0.0.tgz#27584810891456a4171c8d0226441ade90cbcaeb"
3526 |
3527 | wrap-ansi@^2.0.0:
3528 | version "2.1.0"
3529 | resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-2.1.0.tgz#d8fc3d284dd05794fe84973caecdd1cf824fdd85"
3530 | dependencies:
3531 | string-width "^1.0.1"
3532 | strip-ansi "^3.0.1"
3533 |
3534 | wrappy@1:
3535 | version "1.0.2"
3536 | resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f"
3537 |
3538 | write-file-atomic@2.4.1:
3539 | version "2.4.1"
3540 | resolved "https://registry.yarnpkg.com/write-file-atomic/-/write-file-atomic-2.4.1.tgz#d0b05463c188ae804396fd5ab2a370062af87529"
3541 | dependencies:
3542 | graceful-fs "^4.1.11"
3543 | imurmurhash "^0.1.4"
3544 | signal-exit "^3.0.2"
3545 |
3546 | ws@^5.2.0:
3547 | version "5.2.2"
3548 | resolved "https://registry.yarnpkg.com/ws/-/ws-5.2.2.tgz#dffef14866b8e8dc9133582514d1befaf96e980f"
3549 | dependencies:
3550 | async-limiter "~1.0.0"
3551 |
3552 | xml-name-validator@^3.0.0:
3553 | version "3.0.0"
3554 | resolved "https://registry.yarnpkg.com/xml-name-validator/-/xml-name-validator-3.0.0.tgz#6ae73e06de4d8c6e47f9fb181f78d648ad457c6a"
3555 |
3556 | "y18n@^3.2.1 || ^4.0.0":
3557 | version "4.0.0"
3558 | resolved "https://registry.yarnpkg.com/y18n/-/y18n-4.0.0.tgz#95ef94f85ecc81d007c264e190a120f0a3c8566b"
3559 |
3560 | yargs-parser@^11.1.1:
3561 | version "11.1.1"
3562 | resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-11.1.1.tgz#879a0865973bca9f6bab5cbdf3b1c67ec7d3bcf4"
3563 | dependencies:
3564 | camelcase "^5.0.0"
3565 | decamelize "^1.2.0"
3566 |
3567 | yargs@^12.0.2:
3568 | version "12.0.5"
3569 | resolved "https://registry.yarnpkg.com/yargs/-/yargs-12.0.5.tgz#05f5997b609647b64f66b81e3b4b10a368e7ad13"
3570 | dependencies:
3571 | cliui "^4.0.0"
3572 | decamelize "^1.2.0"
3573 | find-up "^3.0.0"
3574 | get-caller-file "^1.0.1"
3575 | os-locale "^3.0.0"
3576 | require-directory "^2.1.1"
3577 | require-main-filename "^1.0.1"
3578 | set-blocking "^2.0.0"
3579 | string-width "^2.0.0"
3580 | which-module "^2.0.0"
3581 | y18n "^3.2.1 || ^4.0.0"
3582 | yargs-parser "^11.1.1"
3583 |
--------------------------------------------------------------------------------