├── .flowconfig
├── .eslintignore
├── .gitignore
├── .travis.yml
├── .babelrc
├── src
├── index.js
├── types.js
├── create
│ ├── index.js
│ ├── state.js
│ ├── document.js
│ ├── block.js
│ ├── inline.js
│ ├── mark.js
│ ├── text.js
│ └── unknown.js
├── createHyperscript.js
└── __tests__
│ └── index.js
├── .eslintrc
├── package.json
├── CHANGELOG.md
├── README.md
├── LICENSE
└── yarn.lock
/.flowconfig:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/.eslintignore:
--------------------------------------------------------------------------------
1 | dist
2 |
--------------------------------------------------------------------------------
/.gitignore:
--------------------------------------------------------------------------------
1 | node_modules
2 | dist
3 |
--------------------------------------------------------------------------------
/.travis.yml:
--------------------------------------------------------------------------------
1 | sudo: false
2 | language: node_js
3 | node_js:
4 | - "stable"
5 |
--------------------------------------------------------------------------------
/.babelrc:
--------------------------------------------------------------------------------
1 | {
2 | "presets": [
3 | "es2015",
4 | "stage-0",
5 | "react",
6 | "flow"
7 | ]
8 | }
9 |
--------------------------------------------------------------------------------
/src/index.js:
--------------------------------------------------------------------------------
1 | export { default as create } from './create';
2 | export * from './create';
3 | export default from './createHyperscript';
4 |
--------------------------------------------------------------------------------
/.eslintrc:
--------------------------------------------------------------------------------
1 | {
2 | "parser": "babel-eslint",
3 | "extends": [
4 | "plugin:flowtype/recommended",
5 | "gitbook"
6 | ],
7 | "plugins": [
8 | "flowtype"
9 | ]
10 | }
11 |
--------------------------------------------------------------------------------
/src/types.js:
--------------------------------------------------------------------------------
1 | /* @flow */
2 |
3 | import { State, Document, Block, Inline, Text, Mark } from 'slate';
4 |
5 | export type Node = State | Document | Block | Inline | Text | Mark;
6 | export type Child = string | number | Node;
7 | export type Children = Child[];
8 |
--------------------------------------------------------------------------------
/src/create/index.js:
--------------------------------------------------------------------------------
1 | export createState from './state';
2 | export createDocument from './document';
3 | export createBlock from './block';
4 | export createInline from './inline';
5 | export createText from './text';
6 | export createMark from './mark';
7 | export default from './unknown';
8 |
--------------------------------------------------------------------------------
/src/create/state.js:
--------------------------------------------------------------------------------
1 | /* @flow */
2 |
3 | import create from './unknown';
4 | import type { Children, Node } from '../types';
5 |
6 | function createState(
7 | tagName: string,
8 | attributes: Object,
9 | children: Children
10 | ): Node {
11 | return create(tagName, {
12 | kind: 'state',
13 | ...attributes
14 | }, children);
15 | }
16 |
17 | export default createState;
18 |
--------------------------------------------------------------------------------
/src/create/document.js:
--------------------------------------------------------------------------------
1 | /* @flow */
2 |
3 | import create from './unknown';
4 | import type { Children, Node } from '../types';
5 |
6 | function createDocument(
7 | tagName: string,
8 | { key, ...data }: Object,
9 | children: Children
10 | ): Node {
11 |
12 | return create(tagName, {
13 | kind: 'document',
14 | key,
15 | data
16 | }, children);
17 | }
18 |
19 | export default createDocument;
20 |
--------------------------------------------------------------------------------
/src/create/block.js:
--------------------------------------------------------------------------------
1 | /* @flow */
2 |
3 | import create from './unknown';
4 | import type { Children, Node } from '../types';
5 |
6 | function createBlock(
7 | tagName: string,
8 | attributes: Object,
9 | children: Children
10 | ): Node {
11 | const { key, ...data } = attributes;
12 |
13 | return create(tagName, {
14 | kind: 'block',
15 | key,
16 | data
17 | }, children);
18 | }
19 |
20 | export default createBlock;
21 |
--------------------------------------------------------------------------------
/src/create/inline.js:
--------------------------------------------------------------------------------
1 | /* @flow */
2 |
3 | import create from './unknown';
4 | import type { Children, Node } from '../types';
5 |
6 | function createInline(
7 | tagName: string,
8 | attributes: Object,
9 | children: Children
10 | ): Node {
11 | const { key, ...data } = attributes;
12 | return create(tagName, {
13 | kind: 'inline',
14 | key,
15 | data
16 | }, children);
17 | }
18 |
19 | export default createInline;
20 |
--------------------------------------------------------------------------------
/src/create/mark.js:
--------------------------------------------------------------------------------
1 | /* @flow */
2 |
3 | import createText from './text';
4 | import type { Children, Node } from '../types';
5 |
6 | function createMark(
7 | tagName: string,
8 | attributes: Object,
9 | children: Children
10 | ): Node {
11 | const marks = [
12 | {
13 | type: tagName,
14 | data: attributes
15 | }
16 | ];
17 | return createText(tagName, { marks }, children);
18 | }
19 |
20 | export default createMark;
21 |
--------------------------------------------------------------------------------
/src/create/text.js:
--------------------------------------------------------------------------------
1 | /* @flow */
2 |
3 | import { Mark } from 'slate';
4 | import create from './unknown';
5 | import type { Children, Node } from '../types';
6 |
7 | function createText(
8 | tagName: string,
9 | {
10 | marks = [],
11 | key
12 | }: {
13 | marks?: { type: string, data: Object }[],
14 | key?: string
15 | },
16 | children: Children
17 | ): Node {
18 | marks = Mark.createSet(marks.map(mark =>
19 | typeof mark === 'string'
20 | ? ({ type: mark })
21 | : mark
22 | ));
23 | return create(tagName, {
24 | kind: 'text',
25 | key,
26 | marks
27 | }, children);
28 | }
29 |
30 | export default createText;
31 |
--------------------------------------------------------------------------------
/package.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "slate-sugar",
3 | "description": "Create Slate documents using JSX.",
4 | "version": "0.6.1",
5 | "license": "Apache-2.0",
6 | "repository": "git://github.com/GitbookIO/slate-sugar.git",
7 | "main": "./dist/index.js",
8 | "peerDependencies": {
9 | "react": "^15.5.4",
10 | "react-dom": "^15.5.4",
11 | "slate": "^0.20.1"
12 | },
13 | "devDependencies": {
14 | "ava": "^0.19.1",
15 | "babel-cli": "^6.11.4",
16 | "babel-core": "^6.11.4",
17 | "babel-eslint": "^7.2.3",
18 | "babel-preset-es2015": "^6.9.0",
19 | "babel-preset-flow": "^6.23.0",
20 | "babel-preset-react": "^6.24.1",
21 | "babel-preset-stage-0": "^6.24.1",
22 | "babel-register": "^6.24.1",
23 | "eslint": "^3.1.1",
24 | "eslint-config-gitbook": "1.4.0",
25 | "eslint-plugin-flowtype": "^2.34.0",
26 | "flow-bin": "^0.47.0",
27 | "react": "^15.5.4",
28 | "react-dom": "^15.5.4",
29 | "slate": "^0.20.1"
30 | },
31 | "scripts": {
32 | "lint": "eslint .",
33 | "types": "flow",
34 | "pretest": "npm run lint && npm run types",
35 | "test": "ava",
36 | "test:watch": "ava --watch",
37 | "prebuild": "npm test && rm -rf ./dist",
38 | "build": "babel src --out-dir dist --ignore __tests__",
39 | "prepublish": "npm run build"
40 | },
41 | "ava": {
42 | "require": "babel-register",
43 | "babel": "inherit"
44 | },
45 | "keywords": [
46 | "slate"
47 | ],
48 | "files": [
49 | "dist",
50 | "LICENSE",
51 | "package.json"
52 | ]
53 | }
54 |
--------------------------------------------------------------------------------
/src/create/unknown.js:
--------------------------------------------------------------------------------
1 | /* @flow */
2 |
3 | import { State, Document, Block, Inline, Text, Mark } from 'slate';
4 | import createText from './text';
5 | import type { Children, Node } from '../types';
6 |
7 | function createTextNodes(children: Children): Node[] {
8 | return children.map(child =>
9 | typeof child === 'object'
10 | ? child
11 | : createText('text', {}, [child])
12 | );
13 | }
14 |
15 | function createUnknown(
16 | tagName: string,
17 | attributes: Object,
18 | children: Children
19 | ): Node {
20 | const { kind, key, ...otherAttributes } = attributes;
21 |
22 | switch (kind) {
23 | case 'state':
24 | return State.create({
25 | document: children[0]
26 | }, attributes);
27 | case 'document':
28 | return Document.create({
29 | nodes: createTextNodes(children),
30 | ...attributes
31 | });
32 | case 'block':
33 | return Block.create({
34 | type: tagName,
35 | key,
36 | nodes: createTextNodes(children),
37 | ...otherAttributes
38 | });
39 | case 'inline':
40 | return Inline.create({
41 | type: tagName,
42 | key,
43 | nodes: createTextNodes(children),
44 | ...otherAttributes
45 | });
46 | case 'text': {
47 | const {
48 | marks = Mark.createSet([])
49 | } = attributes;
50 | const text = Text.createFromString(children.join(''), marks);
51 | return text.set('key', key || text.key);
52 | }
53 | default:
54 | throw new Error(`Cannot create Node of unknown kind ${kind}`);
55 | }
56 | }
57 |
58 | export default createUnknown;
59 |
--------------------------------------------------------------------------------
/CHANGELOG.md:
--------------------------------------------------------------------------------
1 | # Change Log
2 | All notable changes to this project will be documented in this file.
3 |
4 | The format is based on [Keep a Changelog](http://keepachangelog.com/) and this project adheres to [Semantic Versioning](http://semver.org/).
5 |
6 | ## [0.6.1](https://github.com/GitbookIO/slate-sugar/compare/0.6.0...0.6.1) - 2017-09-08
7 |
8 | - Fix support for keys when using pre-declared blocks or inlines
9 |
10 | ## [0.6.0](https://github.com/GitbookIO/slate-sugar/compare/0.5.0...0.6.0) - 2017-09-07
11 |
12 | - Add support for keys as a special attributes
13 |
14 | ## [0.5.0](https://github.com/GitbookIO/slate-sugar/compare/0.4.0...0.5.0) - 2017-06-20
15 |
16 | - Remove groups keys normalization
17 |
18 | ## [0.4.0](https://github.com/GitbookIO/slate-sugar/compare/0.3.0...0.4.0) - 2017-06-09
19 |
20 | - Fix `` creation when children is already a text node
21 | - Removed support for list of strings in `groups`, now it must be `{ [groupName]: { [tagName]: type } }`
22 | - Change custom node creators to return a `Slate.Node`
23 | - Also, their signature changed to `(tagName: string, attributes: Object, children: [string | number | Slate.Node]) => Slate.Node`
24 | - Change custom node creators to be the second arguments, you can't mix groups and node creators anymore
25 | - Add support for calls to `createHyperscript()` without the `attributes` argument
26 | - Add support for children as an array
27 |
28 | ## [0.3.0](https://github.com/GitbookIO/slate-sugar/compare/0.2.0...0.3.0) - 2017-06-07
29 |
30 | - Add `` to create a `Slate.State` with its child ``
31 | - Fix text node creation with non-text siblings
32 |
33 | ## [0.2.0](https://github.com/GitbookIO/slate-sugar/compare/0.1.0...0.2.0) - 2017-06-02
34 |
35 | - Add support for maps of ``
36 | - Add transformers to define more advanced nodes and override defaults
37 |
--------------------------------------------------------------------------------
/src/createHyperscript.js:
--------------------------------------------------------------------------------
1 | /* @flow */
2 |
3 | import {
4 | State,
5 | Document,
6 | Block,
7 | Inline,
8 | Text,
9 | Mark
10 | } from 'slate';
11 | import create, {
12 | createState,
13 | createDocument,
14 | createBlock,
15 | createInline,
16 | createText,
17 | createMark
18 | } from './create';
19 | import type {
20 | Children,
21 | Node
22 | } from './types';
23 |
24 | type NodeCreator = (tagName: string, attributes: Object, children: Children) => Node;
25 | type TypeMap = { [name: string]: string };
26 | type NodeCreatorMap = { [tagName: string]: NodeCreator };
27 | type Groups = { [groupName: string]: TypeMap };
28 |
29 | function addNodeCreators(
30 | typeMap: TypeMap,
31 | createNode: NodeCreator,
32 | initialValue: Object
33 | ): NodeCreatorMap {
34 | return Object
35 | .keys(typeMap)
36 | .reduce((acc, key) => {
37 | const tagName = key;
38 | const type = typeMap[key];
39 | return {
40 | [tagName]: (_, ...args) => createNode(type, ...args),
41 | ...acc
42 | };
43 | }, initialValue);
44 | }
45 |
46 | function isChild(child: any): boolean {
47 | return (
48 | typeof child === 'string'
49 | || typeof child === 'number'
50 | || Array.isArray(child)
51 | || child instanceof State
52 | || child instanceof Document
53 | || child instanceof Block
54 | || child instanceof Inline
55 | || child instanceof Text
56 | || child instanceof Mark
57 | );
58 | }
59 |
60 | function createHyperscript(
61 | groups: Groups = {},
62 | nodeCreators: NodeCreatorMap = {}
63 | ) {
64 | const defaultNodeCreators = {
65 | state: createState,
66 | document: createDocument,
67 | text: createText,
68 | blocks: createBlock,
69 | inlines: createInline,
70 | marks: createMark
71 | };
72 | nodeCreators = {
73 | ...defaultNodeCreators,
74 | ...nodeCreators
75 | };
76 |
77 | // add a node creator for each items in the groups
78 | nodeCreators = Object
79 | .keys(groups)
80 | .reduce((acc, group) => addNodeCreators(
81 | groups[group],
82 | acc[group],
83 | acc
84 | ), nodeCreators);
85 |
86 | return (
87 | tagName: string,
88 | attributes?: Object,
89 | ...children: Children
90 | ): Node => {
91 | if (attributes == null) {
92 | attributes = {};
93 | }
94 |
95 | if (isChild(attributes)) {
96 | children = [attributes].concat(children);
97 | attributes = {};
98 | }
99 |
100 | // flatten children to allow passing them as an array
101 | children = children.reduce((acc, child) => acc.concat(child), []);
102 |
103 | const createNode =
104 | nodeCreators.hasOwnProperty(tagName)
105 | ? nodeCreators[tagName]
106 | : create;
107 |
108 | return createNode(tagName, attributes, children);
109 | };
110 | }
111 |
112 | export default createHyperscript;
113 |
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 | # [DEPRECATION WARNING]
2 |
3 | This package is being deprecated, in favor of the official [`slate-hyperscript`](https://github.com/ianstormtaylor/slate/tree/master/packages/slate-hyperscript). Both packages fulfill the same role, but `slate-hyperscript` will be maintained along with `slate` and has already more features (support for `` and ``).
4 |
5 | ---
6 |
7 | # slate-sugar
8 |
9 | [](http://badge.fury.io/js/slate-sugar)
10 | [](https://travis-ci.org/GitbookIO/slate-sugar)
11 |
12 | > Create Slate documents using JSX.
13 |
14 | The purpose of slate-sugar is to make Slate nodes and documents creation:
15 |
16 | * Painless by using smart defaults and inferring properties based on the input
17 | * Comprehensible by offering a declarative way to create structured documents
18 |
19 | ## Install
20 |
21 | ```
22 | yarn add slate-sugar
23 | ```
24 |
25 | ## Usage
26 |
27 | ### Basic
28 |
29 | This is the quickest way to use `slate-sugar`. If you need a terser syntax, you should [declare a type mapping beforehand](#with-mapping).
30 |
31 | ```jsx harmony
32 | /* @jsx h */
33 | import createHyperscript from 'slate-sugar';
34 |
35 | const h = createHyperscript();
36 | const document = (
37 |
38 |
39 | Introduction
40 |
41 |
42 | This is a super bold paragraph.
43 | Also, it has a link in it.
44 |
45 |
46 | );
47 | ```
48 |
49 | ### With Mapping
50 |
51 | Here is the recommended way to use `slate-sugar`, leading to the leanest code. The only difference is that you declare your blocks, inlines and marks types ahead of time.
52 |
53 | ```jsx harmony
54 | /* @jsx h */
55 | import createHyperscript from 'slate-sugar';
56 |
57 | const h = createHyperscript({
58 | blocks: {
59 | // Keys here can then be used as tag name.
60 | // They will be recognized as blocks, and will be assigned the correct type.
61 | heading: 'TYPE_HEADING',
62 | paragraph: 'TYPE_PARAGRAPH'
63 | },
64 | inlines: {
65 | link: 'TYPE_LINK'
66 | },
67 | marks: {
68 | bold: 'TYPE_BOLD'
69 | }
70 | });
71 | const document = (
72 |
73 |
74 | Introduction
75 |
76 |
77 | This is a super bold paragraph.
78 | Also, it has a link in it.
79 |
80 |
81 | );
82 | ```
83 |
84 | ## Documentation
85 |
86 | ### `createHyperscript([groups], [nodeCreators])`
87 |
88 | * `groups?: { [groupName: string]: { [key: string]: string } }`: groups of types in the form of constants.
89 | * `nodeCreators?: { [tagName: string]: (tagName, attributes, children) => Slate.Node }`: mapping of functions to use to create a Node from a given tag name.
90 |
91 | Returns a JSX-compatible function.
92 |
93 | By default, `slate-sugar` is able to create:
94 |
95 | * `blocks`: creates a `Slate.BLock` with type being the tag name, the rest is considered data.
96 | * `inlines`: creates a `Slate.Inline` with type being the tag name, the rest is considered data.
97 | * `marks`: creates a `Slate.Text` with type being a mark applied to the text, the rest is considered the mark's data.
98 | * `state`: creates a `Slate.State` (must have a single child of type `Slate.Document`)
99 | * `document`: creates a `Slate.Document`
100 | * `text`: creates a `Slate.Text` with marks if passed (``)
101 |
--------------------------------------------------------------------------------
/LICENSE:
--------------------------------------------------------------------------------
1 | Apache License
2 | Version 2.0, January 2004
3 | http://www.apache.org/licenses/
4 |
5 | TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
6 |
7 | 1. Definitions.
8 |
9 | "License" shall mean the terms and conditions for use, reproduction,
10 | and distribution as defined by Sections 1 through 9 of this document.
11 |
12 | "Licensor" shall mean the copyright owner or entity authorized by
13 | the copyright owner that is granting the License.
14 |
15 | "Legal Entity" shall mean the union of the acting entity and all
16 | other entities that control, are controlled by, or are under common
17 | control with that entity. For the purposes of this definition,
18 | "control" means (i) the power, direct or indirect, to cause the
19 | direction or management of such entity, whether by contract or
20 | otherwise, or (ii) ownership of fifty percent (50%) or more of the
21 | outstanding shares, or (iii) beneficial ownership of such entity.
22 |
23 | "You" (or "Your") shall mean an individual or Legal Entity
24 | exercising permissions granted by this License.
25 |
26 | "Source" form shall mean the preferred form for making modifications,
27 | including but not limited to software source code, documentation
28 | source, and configuration files.
29 |
30 | "Object" form shall mean any form resulting from mechanical
31 | transformation or translation of a Source form, including but
32 | not limited to compiled object code, generated documentation,
33 | and conversions to other media types.
34 |
35 | "Work" shall mean the work of authorship, whether in Source or
36 | Object form, made available under the License, as indicated by a
37 | copyright notice that is included in or attached to the work
38 | (an example is provided in the Appendix below).
39 |
40 | "Derivative Works" shall mean any work, whether in Source or Object
41 | form, that is based on (or derived from) the Work and for which the
42 | editorial revisions, annotations, elaborations, or other modifications
43 | represent, as a whole, an original work of authorship. For the purposes
44 | of this License, Derivative Works shall not include works that remain
45 | separable from, or merely link (or bind by name) to the interfaces of,
46 | the Work and Derivative Works thereof.
47 |
48 | "Contribution" shall mean any work of authorship, including
49 | the original version of the Work and any modifications or additions
50 | to that Work or Derivative Works thereof, that is intentionally
51 | submitted to Licensor for inclusion in the Work by the copyright owner
52 | or by an individual or Legal Entity authorized to submit on behalf of
53 | the copyright owner. For the purposes of this definition, "submitted"
54 | means any form of electronic, verbal, or written communication sent
55 | to the Licensor or its representatives, including but not limited to
56 | communication on electronic mailing lists, source code control systems,
57 | and issue tracking systems that are managed by, or on behalf of, the
58 | Licensor for the purpose of discussing and improving the Work, but
59 | excluding communication that is conspicuously marked or otherwise
60 | designated in writing by the copyright owner as "Not a Contribution."
61 |
62 | "Contributor" shall mean Licensor and any individual or Legal Entity
63 | on behalf of whom a Contribution has been received by Licensor and
64 | subsequently incorporated within the Work.
65 |
66 | 2. Grant of Copyright License. Subject to the terms and conditions of
67 | this License, each Contributor hereby grants to You a perpetual,
68 | worldwide, non-exclusive, no-charge, royalty-free, irrevocable
69 | copyright license to reproduce, prepare Derivative Works of,
70 | publicly display, publicly perform, sublicense, and distribute the
71 | Work and such Derivative Works in Source or Object form.
72 |
73 | 3. Grant of Patent License. Subject to the terms and conditions of
74 | this License, each Contributor hereby grants to You a perpetual,
75 | worldwide, non-exclusive, no-charge, royalty-free, irrevocable
76 | (except as stated in this section) patent license to make, have made,
77 | use, offer to sell, sell, import, and otherwise transfer the Work,
78 | where such license applies only to those patent claims licensable
79 | by such Contributor that are necessarily infringed by their
80 | Contribution(s) alone or by combination of their Contribution(s)
81 | with the Work to which such Contribution(s) was submitted. If You
82 | institute patent litigation against any entity (including a
83 | cross-claim or counterclaim in a lawsuit) alleging that the Work
84 | or a Contribution incorporated within the Work constitutes direct
85 | or contributory patent infringement, then any patent licenses
86 | granted to You under this License for that Work shall terminate
87 | as of the date such litigation is filed.
88 |
89 | 4. Redistribution. You may reproduce and distribute copies of the
90 | Work or Derivative Works thereof in any medium, with or without
91 | modifications, and in Source or Object form, provided that You
92 | meet the following conditions:
93 |
94 | (a) You must give any other recipients of the Work or
95 | Derivative Works a copy of this License; and
96 |
97 | (b) You must cause any modified files to carry prominent notices
98 | stating that You changed the files; and
99 |
100 | (c) You must retain, in the Source form of any Derivative Works
101 | that You distribute, all copyright, patent, trademark, and
102 | attribution notices from the Source form of the Work,
103 | excluding those notices that do not pertain to any part of
104 | the Derivative Works; and
105 |
106 | (d) If the Work includes a "NOTICE" text file as part of its
107 | distribution, then any Derivative Works that You distribute must
108 | include a readable copy of the attribution notices contained
109 | within such NOTICE file, excluding those notices that do not
110 | pertain to any part of the Derivative Works, in at least one
111 | of the following places: within a NOTICE text file distributed
112 | as part of the Derivative Works; within the Source form or
113 | documentation, if provided along with the Derivative Works; or,
114 | within a display generated by the Derivative Works, if and
115 | wherever such third-party notices normally appear. The contents
116 | of the NOTICE file are for informational purposes only and
117 | do not modify the License. You may add Your own attribution
118 | notices within Derivative Works that You distribute, alongside
119 | or as an addendum to the NOTICE text from the Work, provided
120 | that such additional attribution notices cannot be construed
121 | as modifying the License.
122 |
123 | You may add Your own copyright statement to Your modifications and
124 | may provide additional or different license terms and conditions
125 | for use, reproduction, or distribution of Your modifications, or
126 | for any such Derivative Works as a whole, provided Your use,
127 | reproduction, and distribution of the Work otherwise complies with
128 | the conditions stated in this License.
129 |
130 | 5. Submission of Contributions. Unless You explicitly state otherwise,
131 | any Contribution intentionally submitted for inclusion in the Work
132 | by You to the Licensor shall be under the terms and conditions of
133 | this License, without any additional terms or conditions.
134 | Notwithstanding the above, nothing herein shall supersede or modify
135 | the terms of any separate license agreement you may have executed
136 | with Licensor regarding such Contributions.
137 |
138 | 6. Trademarks. This License does not grant permission to use the trade
139 | names, trademarks, service marks, or product names of the Licensor,
140 | except as required for reasonable and customary use in describing the
141 | origin of the Work and reproducing the content of the NOTICE file.
142 |
143 | 7. Disclaimer of Warranty. Unless required by applicable law or
144 | agreed to in writing, Licensor provides the Work (and each
145 | Contributor provides its Contributions) on an "AS IS" BASIS,
146 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
147 | implied, including, without limitation, any warranties or conditions
148 | of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
149 | PARTICULAR PURPOSE. You are solely responsible for determining the
150 | appropriateness of using or redistributing the Work and assume any
151 | risks associated with Your exercise of permissions under this License.
152 |
153 | 8. Limitation of Liability. In no event and under no legal theory,
154 | whether in tort (including negligence), contract, or otherwise,
155 | unless required by applicable law (such as deliberate and grossly
156 | negligent acts) or agreed to in writing, shall any Contributor be
157 | liable to You for damages, including any direct, indirect, special,
158 | incidental, or consequential damages of any character arising as a
159 | result of this License or out of the use or inability to use the
160 | Work (including but not limited to damages for loss of goodwill,
161 | work stoppage, computer failure or malfunction, or any and all
162 | other commercial damages or losses), even if such Contributor
163 | has been advised of the possibility of such damages.
164 |
165 | 9. Accepting Warranty or Additional Liability. While redistributing
166 | the Work or Derivative Works thereof, You may choose to offer,
167 | and charge a fee for, acceptance of support, warranty, indemnity,
168 | or other liability obligations and/or rights consistent with this
169 | License. However, in accepting such obligations, You may act only
170 | on Your own behalf and on Your sole responsibility, not on behalf
171 | of any other Contributor, and only if You agree to indemnify,
172 | defend, and hold each Contributor harmless for any liability
173 | incurred by, or claims asserted against, such Contributor by reason
174 | of your accepting any such warranty or additional liability.
175 |
176 | END OF TERMS AND CONDITIONS
177 |
178 | APPENDIX: How to apply the Apache License to your work.
179 |
180 | To apply the Apache License to your work, attach the following
181 | boilerplate notice, with the fields enclosed by brackets "{}"
182 | replaced with your own identifying information. (Don't include
183 | the brackets!) The text should be enclosed in the appropriate
184 | comment syntax for the file format. We also recommend that a
185 | file or class name and description of purpose be included on the
186 | same "printed page" as the copyright notice for easier
187 | identification within third-party archives.
188 |
189 | Copyright 2017 FriendCode Inc.
190 |
191 | Licensed under the Apache License, Version 2.0 (the "License");
192 | you may not use this file except in compliance with the License.
193 | You may obtain a copy of the License at
194 |
195 | http://www.apache.org/licenses/LICENSE-2.0
196 |
197 | Unless required by applicable law or agreed to in writing, software
198 | distributed under the License is distributed on an "AS IS" BASIS,
199 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
200 | See the License for the specific language governing permissions and
201 | limitations under the License.
202 |
--------------------------------------------------------------------------------
/src/__tests__/index.js:
--------------------------------------------------------------------------------
1 | /** @jsx h */
2 |
3 | import test from 'ava';
4 | import { Raw, State, Document, Block, Text, Inline } from 'slate';
5 | import createHyperscript from '../';
6 | import create from '../create';
7 |
8 | let h;
9 | test.beforeEach(() => {
10 | h = createHyperscript();
11 | });
12 |
13 | test('should create a document', (t) => {
14 | const actual = instanceof Document;
15 | const expected = true;
16 |
17 | t.is(actual, expected);
18 | });
19 |
20 | test('should create a document with a key', (t) => {
21 | const actual = ().key;
22 | const expected = 'key';
23 |
24 | t.is(actual, expected);
25 | });
26 |
27 | test('should create a document with data', (t) => {
28 | const actual = ().data.toJS();
29 | const expected = {
30 | data1: '1',
31 | data2: '2'
32 | };
33 |
34 | t.deepEqual(actual, expected);
35 | });
36 |
37 | test('should create a block', (t) => {
38 | const actual = instanceof Block;
39 | const expected = true;
40 |
41 | t.is(actual, expected);
42 | });
43 |
44 | test('should create a block with a key', (t) => {
45 | const actual = ().key;
46 | const expected = 'key';
47 |
48 | t.is(actual, expected);
49 | });
50 |
51 | test('should create a block with the provided type', (t) => {
52 | const actual = ().type;
53 | const expected = 'paragraph';
54 |
55 | t.is(actual, expected);
56 | });
57 |
58 | test('should create a block with a different type', (t) => {
59 | const actual = ().type;
60 | const expected = 'heading';
61 |
62 | t.is(actual, expected);
63 | });
64 |
65 | test('should create a block with some data', (t) => {
66 | const actual = ().data.get('foo');
67 | const expected = 'bar';
68 |
69 | t.is(actual, expected);
70 | });
71 |
72 | test('should create a block with a child', (t) => {
73 | const child = ;
74 | const actual = ().nodes.get(0);
75 | const expected = child;
76 |
77 | t.is(actual, expected);
78 | });
79 |
80 | test('should create a block with a text child', (t) => {
81 | const actual = (Super text!).nodes.get(0) instanceof Text;
82 | const expected = true;
83 |
84 | t.is(actual, expected);
85 | });
86 |
87 | test('should contain the provided text', (t) => {
88 | const actual = (Super text!).nodes.get(0).text;
89 | const expected = 'Super text!';
90 |
91 | t.is(actual, expected);
92 | });
93 |
94 | test('should create text node from numeric value', (t) => {
95 | const actual = (123).nodes.get(0).text;
96 | const expected = '123';
97 |
98 | t.is(actual, expected);
99 | });
100 |
101 | test('should add nodes to the document', (t) => {
102 | const actual = (
103 |
104 | Awesome heading!
105 | Super text!
106 |
107 | ).nodes.size;
108 | const expected = 2;
109 |
110 | t.is(actual, expected);
111 | });
112 |
113 | test('should create a document with a text node', (t) => {
114 | const actual = (
115 |
116 | So lonely
117 |
118 | ).nodes.get(0).text;
119 | const expected = 'So lonely';
120 |
121 | t.is(actual, expected);
122 | });
123 |
124 | test('should create an inline', (t) => {
125 | const actual = instanceof Inline;
126 | const expected = true;
127 |
128 | t.is(actual, expected);
129 | });
130 |
131 | test('should create an inline with a key', (t) => {
132 | const actual = ().key;
133 | const expected = 'key';
134 |
135 | t.is(actual, expected);
136 | });
137 |
138 | test('should create an inline with provided type', (t) => {
139 | const actual = ().type;
140 | const expected = 'link';
141 |
142 | t.is(actual, expected);
143 | });
144 |
145 | test('should create an inline with a different type', (t) => {
146 | const actual = ().type;
147 | const expected = 'bold';
148 |
149 | t.is(actual, expected);
150 | });
151 |
152 | test('should create an inline with some data', (t) => {
153 | const actual = ().data.get('href');
154 | const expected = '/';
155 |
156 | t.is(actual, expected);
157 | });
158 |
159 | test('should create an inline with a child', (t) => {
160 | const actual = (Super bold).nodes.get(0).text;
161 | const expected = 'Super bold';
162 |
163 | t.is(actual, expected);
164 | });
165 |
166 | test('should create a text node', (t) => {
167 | const actual = instanceof Text;
168 | const expected = true;
169 |
170 | t.is(actual, expected);
171 | });
172 |
173 | test('should create a text node with a key #1', (t) => {
174 | const actual = (Some text).key;
175 | const expected = 'key';
176 |
177 | t.is(actual, expected);
178 | });
179 |
180 | test('should create a text node with a key #2', (t) => {
181 | const actual = (Some text).key;
182 | const expected = 'key';
183 |
184 | t.is(actual, expected);
185 | });
186 |
187 | test('should create a text node with marks', (t) => {
188 | const actual = (
189 | Super bold
190 | ).characters.every(
191 | character => character.marks.size === 1 && character.marks.every(
192 | mark => mark.get('type') === 'bold'
193 | )
194 | );
195 | const expected = true;
196 |
197 | t.is(actual, expected);
198 | });
199 |
200 | test('should create a text node with more complex marks', (t) => {
201 | const actual = (
202 |
210 | Super bold
211 |
212 | ).characters.every(
213 | character => character.marks.size === 1 && character.marks.every(
214 | mark => mark.get('type') === 'bold' && mark.data.get('foo') === 'bar'
215 | )
216 | );
217 | const expected = true;
218 |
219 | t.is(actual, expected);
220 | });
221 |
222 | test('should create a text node with marks and the provided text', (t) => {
223 | const actual = (
224 | Super bold
225 | ).text;
226 | const expected = 'Super bold';
227 |
228 | t.is(actual, expected);
229 | });
230 |
231 | test('should throw an error when trying to create a node with unknown kind', (t) => {
232 | t.throws(() => );
233 | });
234 |
235 | test('should register default blocks', (t) => {
236 | h = createHyperscript({
237 | blocks: {
238 | paragraph: 'PARAGRAPH'
239 | }
240 | });
241 | const actual = instanceof Block;
242 | const expected = true;
243 |
244 | t.is(actual, expected);
245 | });
246 |
247 | test('should set type accordingly', (t) => {
248 | h = createHyperscript({
249 | blocks: {
250 | paragraph: 'PARAGRAPH'
251 | }
252 | });
253 | const actual = ().type;
254 | const expected = 'PARAGRAPH';
255 |
256 | t.is(actual, expected);
257 | });
258 |
259 | test('should not lose block\'s data', (t) => {
260 | h = createHyperscript({
261 | blocks: {
262 | paragraph: 'PARAGRAPH'
263 | }
264 | });
265 | const actual = ().data.get('foo');
266 | const expected = 'bar';
267 |
268 | t.is(actual, expected);
269 | });
270 |
271 | test('should register default inlines', (t) => {
272 | h = createHyperscript({
273 | inlines: {
274 | link: 'LINK'
275 | }
276 | });
277 | const actual = instanceof Inline;
278 | const expected = true;
279 |
280 | t.is(actual, expected);
281 | });
282 |
283 | test('should not lose inline\'s data', (t) => {
284 | h = createHyperscript({
285 | inlines: {
286 | link: 'LINK'
287 | }
288 | });
289 | const actual = ().data.get('foo');
290 | const expected = 'bar';
291 |
292 | t.is(actual, expected);
293 | });
294 |
295 | test('should register default marks', (t) => {
296 | h = createHyperscript({
297 | marks: {
298 | bold: 'BOLD'
299 | }
300 | });
301 | const actual = (
302 | Super bold
303 | ).characters.every(
304 | character => character.marks.size === 1 && character.marks.every(
305 | mark => mark.get('type') === 'BOLD'
306 | )
307 | );
308 | const expected = true;
309 |
310 | t.is(actual, expected);
311 | });
312 |
313 | test('should add data to registered marks', (t) => {
314 | h = createHyperscript({
315 | marks: {
316 | bold: 'BOLD'
317 | }
318 | });
319 | const actual = (
320 | Super bold
321 | ).characters.every(
322 | character => character.marks.size === 1 && character.marks.every(
323 | mark => mark.data.get('foo') === 'bar'
324 | )
325 | );
326 | const expected = true;
327 |
328 | t.is(actual, expected);
329 | });
330 |
331 | test('should rename document', (t) => {
332 | h = createHyperscript({}, {
333 | doc: () => create('document', { kind: 'document' }, [])
334 | });
335 | const actual = instanceof Document;
336 | const expected = true;
337 |
338 | t.is(actual, expected);
339 | });
340 |
341 | test('should register a transformer for a group', (t) => {
342 | h = createHyperscript({
343 | voids: {
344 | img: 'IMG'
345 | }
346 | }, {
347 | voids: (tagName, attributes) => ({
348 | type: tagName,
349 | data: attributes,
350 | kind: 'block',
351 | isVoid: true
352 | })
353 | });
354 | const actual = (
).isVoid;
355 | const expected = true;
356 |
357 | t.is(actual, expected);
358 | });
359 |
360 | test('should work with text surrounded by other nodes', (t) => {
361 | h = createHyperscript({
362 | inlines: {
363 | link: 'link'
364 | }
365 | });
366 | const actual = Raw.serializeDocument(
367 |
368 | Some link and text.
369 |
370 | , { terse: true });
371 | const expected = {
372 | nodes: [
373 | {
374 | kind: 'inline',
375 | type: 'link',
376 | nodes: [
377 | {
378 | kind: 'text',
379 | text: 'Some '
380 | },
381 | {
382 | kind: 'inline',
383 | type: 'link',
384 | nodes: [
385 | {
386 | kind: 'text',
387 | text: 'link'
388 | }
389 | ]
390 | },
391 | {
392 | kind: 'text',
393 | text: ' and text.'
394 | }
395 | ]
396 | }
397 | ]
398 | };
399 |
400 | t.deepEqual(actual, expected);
401 | });
402 |
403 | test('should create a state', (t) => {
404 | const actual = (
405 |
406 |
407 |
408 | Super paragraph.
409 |
410 |
411 |
412 | ) instanceof State;
413 | const expected = true;
414 |
415 | t.is(actual, expected);
416 | });
417 |
418 | test('should normalize by default when creating a state', (t) => {
419 | const actual = Raw.serializeState(
420 |
421 |
422 |
425 |
426 |
427 | , { terse: true });
428 | const expected = {
429 | nodes: [
430 | {
431 | kind: 'block',
432 | type: 'section',
433 | nodes: [
434 | {
435 | kind: 'text',
436 | text: ''
437 | },
438 | {
439 | kind: 'inline',
440 | type: 'link',
441 | nodes: [
442 | {
443 | kind: 'text',
444 | text: 'Super link.'
445 | }
446 | ]
447 | },
448 | {
449 | kind: 'text',
450 | text: ''
451 | }
452 | ]
453 | }
454 | ]
455 | };
456 |
457 | t.deepEqual(actual, expected);
458 | });
459 |
460 | test('should not normalize state if disabled', (t) => {
461 | const actual = Raw.serializeState(
462 |
463 |
464 |
467 |
468 |
469 | , { terse: true });
470 | const expected = {
471 | nodes: [
472 | {
473 | kind: 'block',
474 | type: 'section',
475 | nodes: [
476 | {
477 | kind: 'inline',
478 | type: 'link',
479 | nodes: [
480 | {
481 | kind: 'text',
482 | text: 'Super link.'
483 | }
484 | ]
485 | }
486 | ]
487 | }
488 | ]
489 | };
490 |
491 | t.deepEqual(actual, expected);
492 | });
493 |
494 | test('should work with attributes omitted', (t) => {
495 | h = createHyperscript({
496 | blocks: {
497 | heading: 'heading'
498 | }
499 | });
500 | const actual = h('heading', 'Super heading').text;
501 | const expected = 'Super heading';
502 |
503 | t.is(actual, expected);
504 | });
505 |
506 | test('should work with an array of children', (t) => {
507 | h = createHyperscript({
508 | blocks: {
509 | section: 'section',
510 | paragraph: 'paragraph'
511 | }
512 | });
513 | const actual = h('section', null, [
514 | h('paragraph', 'Super paragraph')
515 | ]).nodes.size;
516 | const expected = 1;
517 |
518 | t.is(actual, expected);
519 | });
520 |
521 | test('should work with an array of children when attributes is omitted', (t) => {
522 | h = createHyperscript({
523 | blocks: {
524 | section: 'section',
525 | paragraph: 'paragraph'
526 | }
527 | });
528 | const actual = h('section', [
529 | h('paragraph', 'Super paragraph')
530 | ]).nodes.size;
531 | const expected = 1;
532 |
533 | t.is(actual, expected);
534 | });
535 |
536 | test('should work with children omitted', (t) => {
537 | h = createHyperscript({
538 | blocks: {
539 | heading: 'heading'
540 | }
541 | });
542 | const actual = h('heading').type;
543 | const expected = 'heading';
544 |
545 | t.is(actual, expected);
546 | });
547 |
548 | test('should work with custom mapper that returns a node', (t) => {
549 | let block;
550 | h = createHyperscript({}, {
551 | code: () => {
552 | block = Block.create({ type: 'code' });
553 | return block;
554 | }
555 | });
556 | const actual = h('code');
557 | const expected = block;
558 |
559 | t.is(actual, expected);
560 | });
561 |
562 | test('should give precedence to custom node creators', (t) => {
563 | h = createHyperscript({
564 | inlines: {
565 | code: 'code'
566 | }
567 | }, {
568 | code: () => Block.create({ type: 'code' })
569 | });
570 | const actual = instanceof Block;
571 | const expected = true;
572 |
573 | t.is(actual, expected);
574 | });
575 |
576 | test('should allow keys when pre-declaring blocks', (t) => {
577 | h = createHyperscript({
578 | blocks: {
579 | paragraph: 'paragraph'
580 | }
581 | });
582 | const actual = ().key;
583 | const expected = 'key';
584 |
585 | t.is(actual, expected);
586 | });
587 |
588 | test('should allow keys when pre-declaring inlines', (t) => {
589 | h = createHyperscript({
590 | inlines: {
591 | code: 'code'
592 | }
593 | });
594 | const actual = ().key;
595 | const expected = 'key';
596 |
597 | t.is(actual, expected);
598 | });
599 |
--------------------------------------------------------------------------------
/yarn.lock:
--------------------------------------------------------------------------------
1 | # THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY.
2 | # yarn lockfile v1
3 |
4 |
5 | "@ava/babel-plugin-throws-helper@^2.0.0":
6 | version "2.0.0"
7 | resolved "https://registry.yarnpkg.com/@ava/babel-plugin-throws-helper/-/babel-plugin-throws-helper-2.0.0.tgz#2fc1fe3c211a71071a4eca7b8f7af5842cd1ae7c"
8 |
9 | "@ava/babel-preset-stage-4@^1.0.0":
10 | version "1.0.0"
11 | resolved "https://registry.yarnpkg.com/@ava/babel-preset-stage-4/-/babel-preset-stage-4-1.0.0.tgz#a613b5e152f529305422546b072d47facfb26291"
12 | dependencies:
13 | babel-plugin-check-es2015-constants "^6.8.0"
14 | babel-plugin-syntax-trailing-function-commas "^6.20.0"
15 | babel-plugin-transform-async-to-generator "^6.16.0"
16 | babel-plugin-transform-es2015-destructuring "^6.19.0"
17 | babel-plugin-transform-es2015-function-name "^6.9.0"
18 | babel-plugin-transform-es2015-modules-commonjs "^6.18.0"
19 | babel-plugin-transform-es2015-parameters "^6.21.0"
20 | babel-plugin-transform-es2015-spread "^6.8.0"
21 | babel-plugin-transform-es2015-sticky-regex "^6.8.0"
22 | babel-plugin-transform-es2015-unicode-regex "^6.11.0"
23 | babel-plugin-transform-exponentiation-operator "^6.8.0"
24 | package-hash "^1.2.0"
25 |
26 | "@ava/babel-preset-transform-test-files@^3.0.0":
27 | version "3.0.0"
28 | resolved "https://registry.yarnpkg.com/@ava/babel-preset-transform-test-files/-/babel-preset-transform-test-files-3.0.0.tgz#cded1196a8d8d9381a509240ab92e91a5ec069f7"
29 | dependencies:
30 | "@ava/babel-plugin-throws-helper" "^2.0.0"
31 | babel-plugin-espower "^2.3.2"
32 |
33 | "@ava/pretty-format@^1.1.0":
34 | version "1.1.0"
35 | resolved "https://registry.yarnpkg.com/@ava/pretty-format/-/pretty-format-1.1.0.tgz#d0a57d25eb9aeab9643bdd1a030642b91c123e28"
36 | dependencies:
37 | ansi-styles "^2.2.1"
38 | esutils "^2.0.2"
39 |
40 | abbrev@1:
41 | version "1.1.0"
42 | resolved "https://registry.yarnpkg.com/abbrev/-/abbrev-1.1.0.tgz#d0554c2256636e2f56e7c2e5ad183f859428d81f"
43 |
44 | acorn-jsx@^3.0.0:
45 | version "3.0.1"
46 | resolved "https://registry.yarnpkg.com/acorn-jsx/-/acorn-jsx-3.0.1.tgz#afdf9488fb1ecefc8348f6fb22f464e32a58b36b"
47 | dependencies:
48 | acorn "^3.0.4"
49 |
50 | acorn@^3.0.4:
51 | version "3.3.0"
52 | resolved "https://registry.yarnpkg.com/acorn/-/acorn-3.3.0.tgz#45e37fb39e8da3f25baee3ff5369e2bb5f22017a"
53 |
54 | acorn@^5.0.1:
55 | version "5.0.3"
56 | resolved "https://registry.yarnpkg.com/acorn/-/acorn-5.0.3.tgz#c460df08491463f028ccb82eab3730bf01087b3d"
57 |
58 | ajv-keywords@^1.0.0:
59 | version "1.5.1"
60 | resolved "https://registry.yarnpkg.com/ajv-keywords/-/ajv-keywords-1.5.1.tgz#314dd0a4b3368fad3dfcdc54ede6171b886daf3c"
61 |
62 | ajv@^4.7.0, ajv@^4.9.1:
63 | version "4.11.8"
64 | resolved "https://registry.yarnpkg.com/ajv/-/ajv-4.11.8.tgz#82ffb02b29e662ae53bdc20af15947706739c536"
65 | dependencies:
66 | co "^4.6.0"
67 | json-stable-stringify "^1.0.1"
68 |
69 | ansi-align@^2.0.0:
70 | version "2.0.0"
71 | resolved "https://registry.yarnpkg.com/ansi-align/-/ansi-align-2.0.0.tgz#c36aeccba563b89ceb556f3690f0b1d9e3547f7f"
72 | dependencies:
73 | string-width "^2.0.0"
74 |
75 | ansi-escapes@^1.1.0:
76 | version "1.4.0"
77 | resolved "https://registry.yarnpkg.com/ansi-escapes/-/ansi-escapes-1.4.0.tgz#d3a8a83b319aa67793662b13e761c7911422306e"
78 |
79 | ansi-regex@^2.0.0:
80 | version "2.1.1"
81 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-2.1.1.tgz#c3b33ab5ee360d86e0e628f0468ae7ef27d654df"
82 |
83 | ansi-styles@^2.2.1:
84 | version "2.2.1"
85 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-2.2.1.tgz#b432dd3358b634cf75e1e4664368240533c1ddbe"
86 |
87 | ansi-styles@^3.0.0:
88 | version "3.0.0"
89 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-3.0.0.tgz#5404e93a544c4fec7f048262977bebfe3155e0c1"
90 | dependencies:
91 | color-convert "^1.0.0"
92 |
93 | ansi-styles@~1.0.0:
94 | version "1.0.0"
95 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-1.0.0.tgz#cb102df1c56f5123eab8b67cd7b98027a0279178"
96 |
97 | anymatch@^1.3.0:
98 | version "1.3.0"
99 | resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-1.3.0.tgz#a3e52fa39168c825ff57b0248126ce5a8ff95507"
100 | dependencies:
101 | arrify "^1.0.0"
102 | micromatch "^2.1.5"
103 |
104 | aproba@^1.0.3:
105 | version "1.1.1"
106 | resolved "https://registry.yarnpkg.com/aproba/-/aproba-1.1.1.tgz#95d3600f07710aa0e9298c726ad5ecf2eacbabab"
107 |
108 | are-we-there-yet@~1.1.2:
109 | version "1.1.4"
110 | resolved "https://registry.yarnpkg.com/are-we-there-yet/-/are-we-there-yet-1.1.4.tgz#bb5dca382bb94f05e15194373d16fd3ba1ca110d"
111 | dependencies:
112 | delegates "^1.0.0"
113 | readable-stream "^2.0.6"
114 |
115 | argparse@^1.0.7:
116 | version "1.0.9"
117 | resolved "https://registry.yarnpkg.com/argparse/-/argparse-1.0.9.tgz#73d83bc263f86e97f8cc4f6bae1b0e90a7d22c86"
118 | dependencies:
119 | sprintf-js "~1.0.2"
120 |
121 | arr-diff@^2.0.0:
122 | version "2.0.0"
123 | resolved "https://registry.yarnpkg.com/arr-diff/-/arr-diff-2.0.0.tgz#8f3b827f955a8bd669697e4a4256ac3ceae356cf"
124 | dependencies:
125 | arr-flatten "^1.0.1"
126 |
127 | arr-exclude@^1.0.0:
128 | version "1.0.0"
129 | resolved "https://registry.yarnpkg.com/arr-exclude/-/arr-exclude-1.0.0.tgz#dfc7c2e552a270723ccda04cf3128c8cbfe5c631"
130 |
131 | arr-flatten@^1.0.1:
132 | version "1.0.3"
133 | resolved "https://registry.yarnpkg.com/arr-flatten/-/arr-flatten-1.0.3.tgz#a274ed85ac08849b6bd7847c4580745dc51adfb1"
134 |
135 | array-differ@^1.0.0:
136 | version "1.0.0"
137 | resolved "https://registry.yarnpkg.com/array-differ/-/array-differ-1.0.0.tgz#eff52e3758249d33be402b8bb8e564bb2b5d4031"
138 |
139 | array-find-index@^1.0.1:
140 | version "1.0.2"
141 | resolved "https://registry.yarnpkg.com/array-find-index/-/array-find-index-1.0.2.tgz#df010aa1287e164bbda6f9723b0a96a1ec4187a1"
142 |
143 | array-union@^1.0.1:
144 | version "1.0.2"
145 | resolved "https://registry.yarnpkg.com/array-union/-/array-union-1.0.2.tgz#9a34410e4f4e3da23dea375be5be70f24778ec39"
146 | dependencies:
147 | array-uniq "^1.0.1"
148 |
149 | array-uniq@^1.0.1, array-uniq@^1.0.2:
150 | version "1.0.3"
151 | resolved "https://registry.yarnpkg.com/array-uniq/-/array-uniq-1.0.3.tgz#af6ac877a25cc7f74e058894753858dfdb24fdb6"
152 |
153 | array-unique@^0.2.1:
154 | version "0.2.1"
155 | resolved "https://registry.yarnpkg.com/array-unique/-/array-unique-0.2.1.tgz#a1d97ccafcbc2625cc70fadceb36a50c58b01a53"
156 |
157 | array.prototype.find@^2.0.1:
158 | version "2.0.4"
159 | resolved "https://registry.yarnpkg.com/array.prototype.find/-/array.prototype.find-2.0.4.tgz#556a5c5362c08648323ddaeb9de9d14bc1864c90"
160 | dependencies:
161 | define-properties "^1.1.2"
162 | es-abstract "^1.7.0"
163 |
164 | arrify@^1.0.0:
165 | version "1.0.1"
166 | resolved "https://registry.yarnpkg.com/arrify/-/arrify-1.0.1.tgz#898508da2226f380df904728456849c1501a4b0d"
167 |
168 | asap@~2.0.3:
169 | version "2.0.5"
170 | resolved "https://registry.yarnpkg.com/asap/-/asap-2.0.5.tgz#522765b50c3510490e52d7dcfe085ef9ba96958f"
171 |
172 | asn1@~0.2.3:
173 | version "0.2.3"
174 | resolved "https://registry.yarnpkg.com/asn1/-/asn1-0.2.3.tgz#dac8787713c9966849fc8180777ebe9c1ddf3b86"
175 |
176 | assert-plus@1.0.0, assert-plus@^1.0.0:
177 | version "1.0.0"
178 | resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-1.0.0.tgz#f12e0f3c5d77b0b1cdd9146942e4e96c1e4dd525"
179 |
180 | assert-plus@^0.2.0:
181 | version "0.2.0"
182 | resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-0.2.0.tgz#d74e1b87e7affc0db8aadb7021f3fe48101ab234"
183 |
184 | async-each@^1.0.0:
185 | version "1.0.1"
186 | resolved "https://registry.yarnpkg.com/async-each/-/async-each-1.0.1.tgz#19d386a1d9edc6e7c1c85d388aedbcc56d33602d"
187 |
188 | asynckit@^0.4.0:
189 | version "0.4.0"
190 | resolved "https://registry.yarnpkg.com/asynckit/-/asynckit-0.4.0.tgz#c79ed97f7f34cb8f2ba1bc9790bcc366474b4b79"
191 |
192 | auto-bind@^1.1.0:
193 | version "1.1.0"
194 | resolved "https://registry.yarnpkg.com/auto-bind/-/auto-bind-1.1.0.tgz#93b864dc7ee01a326281775d5c75ca0a751e5961"
195 |
196 | ava-init@^0.2.0:
197 | version "0.2.0"
198 | resolved "https://registry.yarnpkg.com/ava-init/-/ava-init-0.2.0.tgz#9304c8b4c357d66e3dfdae1fbff47b1199d5c55d"
199 | dependencies:
200 | arr-exclude "^1.0.0"
201 | execa "^0.5.0"
202 | has-yarn "^1.0.0"
203 | read-pkg-up "^2.0.0"
204 | write-pkg "^2.0.0"
205 |
206 | ava@^0.19.1:
207 | version "0.19.1"
208 | resolved "https://registry.yarnpkg.com/ava/-/ava-0.19.1.tgz#43dd82435ad19b3980ffca2488f05daab940b273"
209 | dependencies:
210 | "@ava/babel-preset-stage-4" "^1.0.0"
211 | "@ava/babel-preset-transform-test-files" "^3.0.0"
212 | "@ava/pretty-format" "^1.1.0"
213 | arr-flatten "^1.0.1"
214 | array-union "^1.0.1"
215 | array-uniq "^1.0.2"
216 | arrify "^1.0.0"
217 | auto-bind "^1.1.0"
218 | ava-init "^0.2.0"
219 | babel-code-frame "^6.16.0"
220 | babel-core "^6.17.0"
221 | bluebird "^3.0.0"
222 | caching-transform "^1.0.0"
223 | chalk "^1.0.0"
224 | chokidar "^1.4.2"
225 | clean-stack "^1.1.1"
226 | clean-yaml-object "^0.1.0"
227 | cli-cursor "^2.1.0"
228 | cli-spinners "^1.0.0"
229 | cli-truncate "^1.0.0"
230 | co-with-promise "^4.6.0"
231 | code-excerpt "^2.1.0"
232 | common-path-prefix "^1.0.0"
233 | convert-source-map "^1.2.0"
234 | core-assert "^0.2.0"
235 | currently-unhandled "^0.4.1"
236 | debug "^2.2.0"
237 | diff "^3.0.1"
238 | diff-match-patch "^1.0.0"
239 | dot-prop "^4.1.0"
240 | empower-core "^0.6.1"
241 | equal-length "^1.0.0"
242 | figures "^2.0.0"
243 | find-cache-dir "^0.1.1"
244 | fn-name "^2.0.0"
245 | get-port "^3.0.0"
246 | globby "^6.0.0"
247 | has-flag "^2.0.0"
248 | hullabaloo-config-manager "^1.0.0"
249 | ignore-by-default "^1.0.0"
250 | indent-string "^3.0.0"
251 | is-ci "^1.0.7"
252 | is-generator-fn "^1.0.0"
253 | is-obj "^1.0.0"
254 | is-observable "^0.2.0"
255 | is-promise "^2.1.0"
256 | jest-diff "19.0.0"
257 | jest-snapshot "19.0.2"
258 | js-yaml "^3.8.2"
259 | last-line-stream "^1.0.0"
260 | lodash.debounce "^4.0.3"
261 | lodash.difference "^4.3.0"
262 | lodash.flatten "^4.2.0"
263 | lodash.isequal "^4.5.0"
264 | loud-rejection "^1.2.0"
265 | matcher "^0.1.1"
266 | md5-hex "^2.0.0"
267 | meow "^3.7.0"
268 | mkdirp "^0.5.1"
269 | ms "^0.7.1"
270 | multimatch "^2.1.0"
271 | observable-to-promise "^0.5.0"
272 | option-chain "^0.1.0"
273 | package-hash "^2.0.0"
274 | pkg-conf "^2.0.0"
275 | plur "^2.0.0"
276 | pretty-ms "^2.0.0"
277 | require-precompiled "^0.1.0"
278 | resolve-cwd "^1.0.0"
279 | slash "^1.0.0"
280 | source-map-support "^0.4.0"
281 | stack-utils "^1.0.0"
282 | strip-ansi "^3.0.1"
283 | strip-bom-buf "^1.0.0"
284 | supports-color "^3.2.3"
285 | time-require "^0.1.2"
286 | unique-temp-dir "^1.0.0"
287 | update-notifier "^2.1.0"
288 |
289 | aws-sign2@~0.6.0:
290 | version "0.6.0"
291 | resolved "https://registry.yarnpkg.com/aws-sign2/-/aws-sign2-0.6.0.tgz#14342dd38dbcc94d0e5b87d763cd63612c0e794f"
292 |
293 | aws4@^1.2.1:
294 | version "1.6.0"
295 | resolved "https://registry.yarnpkg.com/aws4/-/aws4-1.6.0.tgz#83ef5ca860b2b32e4a0deedee8c771b9db57471e"
296 |
297 | babel-cli@^6.11.4:
298 | version "6.24.1"
299 | resolved "https://registry.yarnpkg.com/babel-cli/-/babel-cli-6.24.1.tgz#207cd705bba61489b2ea41b5312341cf6aca2283"
300 | dependencies:
301 | babel-core "^6.24.1"
302 | babel-polyfill "^6.23.0"
303 | babel-register "^6.24.1"
304 | babel-runtime "^6.22.0"
305 | commander "^2.8.1"
306 | convert-source-map "^1.1.0"
307 | fs-readdir-recursive "^1.0.0"
308 | glob "^7.0.0"
309 | lodash "^4.2.0"
310 | output-file-sync "^1.1.0"
311 | path-is-absolute "^1.0.0"
312 | slash "^1.0.0"
313 | source-map "^0.5.0"
314 | v8flags "^2.0.10"
315 | optionalDependencies:
316 | chokidar "^1.6.1"
317 |
318 | babel-code-frame@^6.16.0, babel-code-frame@^6.22.0:
319 | version "6.22.0"
320 | resolved "https://registry.yarnpkg.com/babel-code-frame/-/babel-code-frame-6.22.0.tgz#027620bee567a88c32561574e7fd0801d33118e4"
321 | dependencies:
322 | chalk "^1.1.0"
323 | esutils "^2.0.2"
324 | js-tokens "^3.0.0"
325 |
326 | babel-core@^6.11.4, babel-core@^6.17.0, babel-core@^6.24.1:
327 | version "6.24.1"
328 | resolved "https://registry.yarnpkg.com/babel-core/-/babel-core-6.24.1.tgz#8c428564dce1e1f41fb337ec34f4c3b022b5ad83"
329 | dependencies:
330 | babel-code-frame "^6.22.0"
331 | babel-generator "^6.24.1"
332 | babel-helpers "^6.24.1"
333 | babel-messages "^6.23.0"
334 | babel-register "^6.24.1"
335 | babel-runtime "^6.22.0"
336 | babel-template "^6.24.1"
337 | babel-traverse "^6.24.1"
338 | babel-types "^6.24.1"
339 | babylon "^6.11.0"
340 | convert-source-map "^1.1.0"
341 | debug "^2.1.1"
342 | json5 "^0.5.0"
343 | lodash "^4.2.0"
344 | minimatch "^3.0.2"
345 | path-is-absolute "^1.0.0"
346 | private "^0.1.6"
347 | slash "^1.0.0"
348 | source-map "^0.5.0"
349 |
350 | babel-eslint@^7.2.3:
351 | version "7.2.3"
352 | resolved "https://registry.yarnpkg.com/babel-eslint/-/babel-eslint-7.2.3.tgz#b2fe2d80126470f5c19442dc757253a897710827"
353 | dependencies:
354 | babel-code-frame "^6.22.0"
355 | babel-traverse "^6.23.1"
356 | babel-types "^6.23.0"
357 | babylon "^6.17.0"
358 |
359 | babel-generator@^6.1.0, babel-generator@^6.24.1:
360 | version "6.24.1"
361 | resolved "https://registry.yarnpkg.com/babel-generator/-/babel-generator-6.24.1.tgz#e715f486c58ded25649d888944d52aa07c5d9497"
362 | dependencies:
363 | babel-messages "^6.23.0"
364 | babel-runtime "^6.22.0"
365 | babel-types "^6.24.1"
366 | detect-indent "^4.0.0"
367 | jsesc "^1.3.0"
368 | lodash "^4.2.0"
369 | source-map "^0.5.0"
370 | trim-right "^1.0.1"
371 |
372 | babel-helper-bindify-decorators@^6.24.1:
373 | version "6.24.1"
374 | resolved "https://registry.yarnpkg.com/babel-helper-bindify-decorators/-/babel-helper-bindify-decorators-6.24.1.tgz#14c19e5f142d7b47f19a52431e52b1ccbc40a330"
375 | dependencies:
376 | babel-runtime "^6.22.0"
377 | babel-traverse "^6.24.1"
378 | babel-types "^6.24.1"
379 |
380 | babel-helper-builder-binary-assignment-operator-visitor@^6.24.1:
381 | version "6.24.1"
382 | resolved "https://registry.yarnpkg.com/babel-helper-builder-binary-assignment-operator-visitor/-/babel-helper-builder-binary-assignment-operator-visitor-6.24.1.tgz#cce4517ada356f4220bcae8a02c2b346f9a56664"
383 | dependencies:
384 | babel-helper-explode-assignable-expression "^6.24.1"
385 | babel-runtime "^6.22.0"
386 | babel-types "^6.24.1"
387 |
388 | babel-helper-builder-react-jsx@^6.24.1:
389 | version "6.24.1"
390 | resolved "https://registry.yarnpkg.com/babel-helper-builder-react-jsx/-/babel-helper-builder-react-jsx-6.24.1.tgz#0ad7917e33c8d751e646daca4e77cc19377d2cbc"
391 | dependencies:
392 | babel-runtime "^6.22.0"
393 | babel-types "^6.24.1"
394 | esutils "^2.0.0"
395 |
396 | babel-helper-call-delegate@^6.24.1:
397 | version "6.24.1"
398 | resolved "https://registry.yarnpkg.com/babel-helper-call-delegate/-/babel-helper-call-delegate-6.24.1.tgz#ece6aacddc76e41c3461f88bfc575bd0daa2df8d"
399 | dependencies:
400 | babel-helper-hoist-variables "^6.24.1"
401 | babel-runtime "^6.22.0"
402 | babel-traverse "^6.24.1"
403 | babel-types "^6.24.1"
404 |
405 | babel-helper-define-map@^6.24.1:
406 | version "6.24.1"
407 | resolved "https://registry.yarnpkg.com/babel-helper-define-map/-/babel-helper-define-map-6.24.1.tgz#7a9747f258d8947d32d515f6aa1c7bd02204a080"
408 | dependencies:
409 | babel-helper-function-name "^6.24.1"
410 | babel-runtime "^6.22.0"
411 | babel-types "^6.24.1"
412 | lodash "^4.2.0"
413 |
414 | babel-helper-explode-assignable-expression@^6.24.1:
415 | version "6.24.1"
416 | resolved "https://registry.yarnpkg.com/babel-helper-explode-assignable-expression/-/babel-helper-explode-assignable-expression-6.24.1.tgz#f25b82cf7dc10433c55f70592d5746400ac22caa"
417 | dependencies:
418 | babel-runtime "^6.22.0"
419 | babel-traverse "^6.24.1"
420 | babel-types "^6.24.1"
421 |
422 | babel-helper-explode-class@^6.24.1:
423 | version "6.24.1"
424 | resolved "https://registry.yarnpkg.com/babel-helper-explode-class/-/babel-helper-explode-class-6.24.1.tgz#7dc2a3910dee007056e1e31d640ced3d54eaa9eb"
425 | dependencies:
426 | babel-helper-bindify-decorators "^6.24.1"
427 | babel-runtime "^6.22.0"
428 | babel-traverse "^6.24.1"
429 | babel-types "^6.24.1"
430 |
431 | babel-helper-function-name@^6.24.1:
432 | version "6.24.1"
433 | resolved "https://registry.yarnpkg.com/babel-helper-function-name/-/babel-helper-function-name-6.24.1.tgz#d3475b8c03ed98242a25b48351ab18399d3580a9"
434 | dependencies:
435 | babel-helper-get-function-arity "^6.24.1"
436 | babel-runtime "^6.22.0"
437 | babel-template "^6.24.1"
438 | babel-traverse "^6.24.1"
439 | babel-types "^6.24.1"
440 |
441 | babel-helper-get-function-arity@^6.24.1:
442 | version "6.24.1"
443 | resolved "https://registry.yarnpkg.com/babel-helper-get-function-arity/-/babel-helper-get-function-arity-6.24.1.tgz#8f7782aa93407c41d3aa50908f89b031b1b6853d"
444 | dependencies:
445 | babel-runtime "^6.22.0"
446 | babel-types "^6.24.1"
447 |
448 | babel-helper-hoist-variables@^6.24.1:
449 | version "6.24.1"
450 | resolved "https://registry.yarnpkg.com/babel-helper-hoist-variables/-/babel-helper-hoist-variables-6.24.1.tgz#1ecb27689c9d25513eadbc9914a73f5408be7a76"
451 | dependencies:
452 | babel-runtime "^6.22.0"
453 | babel-types "^6.24.1"
454 |
455 | babel-helper-optimise-call-expression@^6.24.1:
456 | version "6.24.1"
457 | resolved "https://registry.yarnpkg.com/babel-helper-optimise-call-expression/-/babel-helper-optimise-call-expression-6.24.1.tgz#f7a13427ba9f73f8f4fa993c54a97882d1244257"
458 | dependencies:
459 | babel-runtime "^6.22.0"
460 | babel-types "^6.24.1"
461 |
462 | babel-helper-regex@^6.24.1:
463 | version "6.24.1"
464 | resolved "https://registry.yarnpkg.com/babel-helper-regex/-/babel-helper-regex-6.24.1.tgz#d36e22fab1008d79d88648e32116868128456ce8"
465 | dependencies:
466 | babel-runtime "^6.22.0"
467 | babel-types "^6.24.1"
468 | lodash "^4.2.0"
469 |
470 | babel-helper-remap-async-to-generator@^6.24.1:
471 | version "6.24.1"
472 | resolved "https://registry.yarnpkg.com/babel-helper-remap-async-to-generator/-/babel-helper-remap-async-to-generator-6.24.1.tgz#5ec581827ad723fecdd381f1c928390676e4551b"
473 | dependencies:
474 | babel-helper-function-name "^6.24.1"
475 | babel-runtime "^6.22.0"
476 | babel-template "^6.24.1"
477 | babel-traverse "^6.24.1"
478 | babel-types "^6.24.1"
479 |
480 | babel-helper-replace-supers@^6.24.1:
481 | version "6.24.1"
482 | resolved "https://registry.yarnpkg.com/babel-helper-replace-supers/-/babel-helper-replace-supers-6.24.1.tgz#bf6dbfe43938d17369a213ca8a8bf74b6a90ab1a"
483 | dependencies:
484 | babel-helper-optimise-call-expression "^6.24.1"
485 | babel-messages "^6.23.0"
486 | babel-runtime "^6.22.0"
487 | babel-template "^6.24.1"
488 | babel-traverse "^6.24.1"
489 | babel-types "^6.24.1"
490 |
491 | babel-helpers@^6.24.1:
492 | version "6.24.1"
493 | resolved "https://registry.yarnpkg.com/babel-helpers/-/babel-helpers-6.24.1.tgz#3471de9caec388e5c850e597e58a26ddf37602b2"
494 | dependencies:
495 | babel-runtime "^6.22.0"
496 | babel-template "^6.24.1"
497 |
498 | babel-messages@^6.23.0:
499 | version "6.23.0"
500 | resolved "https://registry.yarnpkg.com/babel-messages/-/babel-messages-6.23.0.tgz#f3cdf4703858035b2a2951c6ec5edf6c62f2630e"
501 | dependencies:
502 | babel-runtime "^6.22.0"
503 |
504 | babel-plugin-check-es2015-constants@^6.22.0, babel-plugin-check-es2015-constants@^6.8.0:
505 | version "6.22.0"
506 | resolved "https://registry.yarnpkg.com/babel-plugin-check-es2015-constants/-/babel-plugin-check-es2015-constants-6.22.0.tgz#35157b101426fd2ffd3da3f75c7d1e91835bbf8a"
507 | dependencies:
508 | babel-runtime "^6.22.0"
509 |
510 | babel-plugin-espower@^2.3.2:
511 | version "2.3.2"
512 | resolved "https://registry.yarnpkg.com/babel-plugin-espower/-/babel-plugin-espower-2.3.2.tgz#5516b8fcdb26c9f0e1d8160749f6e4c65e71271e"
513 | dependencies:
514 | babel-generator "^6.1.0"
515 | babylon "^6.1.0"
516 | call-matcher "^1.0.0"
517 | core-js "^2.0.0"
518 | espower-location-detector "^1.0.0"
519 | espurify "^1.6.0"
520 | estraverse "^4.1.1"
521 |
522 | babel-plugin-syntax-async-functions@^6.8.0:
523 | version "6.13.0"
524 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-async-functions/-/babel-plugin-syntax-async-functions-6.13.0.tgz#cad9cad1191b5ad634bf30ae0872391e0647be95"
525 |
526 | babel-plugin-syntax-async-generators@^6.5.0:
527 | version "6.13.0"
528 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-async-generators/-/babel-plugin-syntax-async-generators-6.13.0.tgz#6bc963ebb16eccbae6b92b596eb7f35c342a8b9a"
529 |
530 | babel-plugin-syntax-class-constructor-call@^6.18.0:
531 | version "6.18.0"
532 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-class-constructor-call/-/babel-plugin-syntax-class-constructor-call-6.18.0.tgz#9cb9d39fe43c8600bec8146456ddcbd4e1a76416"
533 |
534 | babel-plugin-syntax-class-properties@^6.8.0:
535 | version "6.13.0"
536 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-class-properties/-/babel-plugin-syntax-class-properties-6.13.0.tgz#d7eb23b79a317f8543962c505b827c7d6cac27de"
537 |
538 | babel-plugin-syntax-decorators@^6.13.0:
539 | version "6.13.0"
540 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-decorators/-/babel-plugin-syntax-decorators-6.13.0.tgz#312563b4dbde3cc806cee3e416cceeaddd11ac0b"
541 |
542 | babel-plugin-syntax-do-expressions@^6.8.0:
543 | version "6.13.0"
544 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-do-expressions/-/babel-plugin-syntax-do-expressions-6.13.0.tgz#5747756139aa26d390d09410b03744ba07e4796d"
545 |
546 | babel-plugin-syntax-dynamic-import@^6.18.0:
547 | version "6.18.0"
548 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-dynamic-import/-/babel-plugin-syntax-dynamic-import-6.18.0.tgz#8d6a26229c83745a9982a441051572caa179b1da"
549 |
550 | babel-plugin-syntax-exponentiation-operator@^6.8.0:
551 | version "6.13.0"
552 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-exponentiation-operator/-/babel-plugin-syntax-exponentiation-operator-6.13.0.tgz#9ee7e8337290da95288201a6a57f4170317830de"
553 |
554 | babel-plugin-syntax-export-extensions@^6.8.0:
555 | version "6.13.0"
556 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-export-extensions/-/babel-plugin-syntax-export-extensions-6.13.0.tgz#70a1484f0f9089a4e84ad44bac353c95b9b12721"
557 |
558 | babel-plugin-syntax-flow@^6.18.0:
559 | version "6.18.0"
560 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-flow/-/babel-plugin-syntax-flow-6.18.0.tgz#4c3ab20a2af26aa20cd25995c398c4eb70310c8d"
561 |
562 | babel-plugin-syntax-function-bind@^6.8.0:
563 | version "6.13.0"
564 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-function-bind/-/babel-plugin-syntax-function-bind-6.13.0.tgz#48c495f177bdf31a981e732f55adc0bdd2601f46"
565 |
566 | babel-plugin-syntax-jsx@^6.3.13, babel-plugin-syntax-jsx@^6.8.0:
567 | version "6.18.0"
568 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-jsx/-/babel-plugin-syntax-jsx-6.18.0.tgz#0af32a9a6e13ca7a3fd5069e62d7b0f58d0d8946"
569 |
570 | babel-plugin-syntax-object-rest-spread@^6.8.0:
571 | version "6.13.0"
572 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-object-rest-spread/-/babel-plugin-syntax-object-rest-spread-6.13.0.tgz#fd6536f2bce13836ffa3a5458c4903a597bb3bf5"
573 |
574 | babel-plugin-syntax-trailing-function-commas@^6.20.0, babel-plugin-syntax-trailing-function-commas@^6.22.0:
575 | version "6.22.0"
576 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-trailing-function-commas/-/babel-plugin-syntax-trailing-function-commas-6.22.0.tgz#ba0360937f8d06e40180a43fe0d5616fff532cf3"
577 |
578 | babel-plugin-transform-async-generator-functions@^6.24.1:
579 | version "6.24.1"
580 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-async-generator-functions/-/babel-plugin-transform-async-generator-functions-6.24.1.tgz#f058900145fd3e9907a6ddf28da59f215258a5db"
581 | dependencies:
582 | babel-helper-remap-async-to-generator "^6.24.1"
583 | babel-plugin-syntax-async-generators "^6.5.0"
584 | babel-runtime "^6.22.0"
585 |
586 | babel-plugin-transform-async-to-generator@^6.16.0, babel-plugin-transform-async-to-generator@^6.24.1:
587 | version "6.24.1"
588 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-async-to-generator/-/babel-plugin-transform-async-to-generator-6.24.1.tgz#6536e378aff6cb1d5517ac0e40eb3e9fc8d08761"
589 | dependencies:
590 | babel-helper-remap-async-to-generator "^6.24.1"
591 | babel-plugin-syntax-async-functions "^6.8.0"
592 | babel-runtime "^6.22.0"
593 |
594 | babel-plugin-transform-class-constructor-call@^6.24.1:
595 | version "6.24.1"
596 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-class-constructor-call/-/babel-plugin-transform-class-constructor-call-6.24.1.tgz#80dc285505ac067dcb8d6c65e2f6f11ab7765ef9"
597 | dependencies:
598 | babel-plugin-syntax-class-constructor-call "^6.18.0"
599 | babel-runtime "^6.22.0"
600 | babel-template "^6.24.1"
601 |
602 | babel-plugin-transform-class-properties@^6.24.1:
603 | version "6.24.1"
604 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-class-properties/-/babel-plugin-transform-class-properties-6.24.1.tgz#6a79763ea61d33d36f37b611aa9def81a81b46ac"
605 | dependencies:
606 | babel-helper-function-name "^6.24.1"
607 | babel-plugin-syntax-class-properties "^6.8.0"
608 | babel-runtime "^6.22.0"
609 | babel-template "^6.24.1"
610 |
611 | babel-plugin-transform-decorators@^6.24.1:
612 | version "6.24.1"
613 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-decorators/-/babel-plugin-transform-decorators-6.24.1.tgz#788013d8f8c6b5222bdf7b344390dfd77569e24d"
614 | dependencies:
615 | babel-helper-explode-class "^6.24.1"
616 | babel-plugin-syntax-decorators "^6.13.0"
617 | babel-runtime "^6.22.0"
618 | babel-template "^6.24.1"
619 | babel-types "^6.24.1"
620 |
621 | babel-plugin-transform-do-expressions@^6.22.0:
622 | version "6.22.0"
623 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-do-expressions/-/babel-plugin-transform-do-expressions-6.22.0.tgz#28ccaf92812d949c2cd1281f690c8fdc468ae9bb"
624 | dependencies:
625 | babel-plugin-syntax-do-expressions "^6.8.0"
626 | babel-runtime "^6.22.0"
627 |
628 | babel-plugin-transform-es2015-arrow-functions@^6.22.0:
629 | version "6.22.0"
630 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-arrow-functions/-/babel-plugin-transform-es2015-arrow-functions-6.22.0.tgz#452692cb711d5f79dc7f85e440ce41b9f244d221"
631 | dependencies:
632 | babel-runtime "^6.22.0"
633 |
634 | babel-plugin-transform-es2015-block-scoped-functions@^6.22.0:
635 | version "6.22.0"
636 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-block-scoped-functions/-/babel-plugin-transform-es2015-block-scoped-functions-6.22.0.tgz#bbc51b49f964d70cb8d8e0b94e820246ce3a6141"
637 | dependencies:
638 | babel-runtime "^6.22.0"
639 |
640 | babel-plugin-transform-es2015-block-scoping@^6.24.1:
641 | version "6.24.1"
642 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-block-scoping/-/babel-plugin-transform-es2015-block-scoping-6.24.1.tgz#76c295dc3a4741b1665adfd3167215dcff32a576"
643 | dependencies:
644 | babel-runtime "^6.22.0"
645 | babel-template "^6.24.1"
646 | babel-traverse "^6.24.1"
647 | babel-types "^6.24.1"
648 | lodash "^4.2.0"
649 |
650 | babel-plugin-transform-es2015-classes@^6.24.1:
651 | version "6.24.1"
652 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-classes/-/babel-plugin-transform-es2015-classes-6.24.1.tgz#5a4c58a50c9c9461e564b4b2a3bfabc97a2584db"
653 | dependencies:
654 | babel-helper-define-map "^6.24.1"
655 | babel-helper-function-name "^6.24.1"
656 | babel-helper-optimise-call-expression "^6.24.1"
657 | babel-helper-replace-supers "^6.24.1"
658 | babel-messages "^6.23.0"
659 | babel-runtime "^6.22.0"
660 | babel-template "^6.24.1"
661 | babel-traverse "^6.24.1"
662 | babel-types "^6.24.1"
663 |
664 | babel-plugin-transform-es2015-computed-properties@^6.24.1:
665 | version "6.24.1"
666 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-computed-properties/-/babel-plugin-transform-es2015-computed-properties-6.24.1.tgz#6fe2a8d16895d5634f4cd999b6d3480a308159b3"
667 | dependencies:
668 | babel-runtime "^6.22.0"
669 | babel-template "^6.24.1"
670 |
671 | babel-plugin-transform-es2015-destructuring@^6.19.0, babel-plugin-transform-es2015-destructuring@^6.22.0:
672 | version "6.23.0"
673 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-destructuring/-/babel-plugin-transform-es2015-destructuring-6.23.0.tgz#997bb1f1ab967f682d2b0876fe358d60e765c56d"
674 | dependencies:
675 | babel-runtime "^6.22.0"
676 |
677 | babel-plugin-transform-es2015-duplicate-keys@^6.24.1:
678 | version "6.24.1"
679 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-duplicate-keys/-/babel-plugin-transform-es2015-duplicate-keys-6.24.1.tgz#73eb3d310ca969e3ef9ec91c53741a6f1576423e"
680 | dependencies:
681 | babel-runtime "^6.22.0"
682 | babel-types "^6.24.1"
683 |
684 | babel-plugin-transform-es2015-for-of@^6.22.0:
685 | version "6.23.0"
686 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-for-of/-/babel-plugin-transform-es2015-for-of-6.23.0.tgz#f47c95b2b613df1d3ecc2fdb7573623c75248691"
687 | dependencies:
688 | babel-runtime "^6.22.0"
689 |
690 | babel-plugin-transform-es2015-function-name@^6.24.1, babel-plugin-transform-es2015-function-name@^6.9.0:
691 | version "6.24.1"
692 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-function-name/-/babel-plugin-transform-es2015-function-name-6.24.1.tgz#834c89853bc36b1af0f3a4c5dbaa94fd8eacaa8b"
693 | dependencies:
694 | babel-helper-function-name "^6.24.1"
695 | babel-runtime "^6.22.0"
696 | babel-types "^6.24.1"
697 |
698 | babel-plugin-transform-es2015-literals@^6.22.0:
699 | version "6.22.0"
700 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-literals/-/babel-plugin-transform-es2015-literals-6.22.0.tgz#4f54a02d6cd66cf915280019a31d31925377ca2e"
701 | dependencies:
702 | babel-runtime "^6.22.0"
703 |
704 | babel-plugin-transform-es2015-modules-amd@^6.24.1:
705 | version "6.24.1"
706 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-amd/-/babel-plugin-transform-es2015-modules-amd-6.24.1.tgz#3b3e54017239842d6d19c3011c4bd2f00a00d154"
707 | dependencies:
708 | babel-plugin-transform-es2015-modules-commonjs "^6.24.1"
709 | babel-runtime "^6.22.0"
710 | babel-template "^6.24.1"
711 |
712 | babel-plugin-transform-es2015-modules-commonjs@^6.18.0, babel-plugin-transform-es2015-modules-commonjs@^6.24.1:
713 | version "6.24.1"
714 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-commonjs/-/babel-plugin-transform-es2015-modules-commonjs-6.24.1.tgz#d3e310b40ef664a36622200097c6d440298f2bfe"
715 | dependencies:
716 | babel-plugin-transform-strict-mode "^6.24.1"
717 | babel-runtime "^6.22.0"
718 | babel-template "^6.24.1"
719 | babel-types "^6.24.1"
720 |
721 | babel-plugin-transform-es2015-modules-systemjs@^6.24.1:
722 | version "6.24.1"
723 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-systemjs/-/babel-plugin-transform-es2015-modules-systemjs-6.24.1.tgz#ff89a142b9119a906195f5f106ecf305d9407d23"
724 | dependencies:
725 | babel-helper-hoist-variables "^6.24.1"
726 | babel-runtime "^6.22.0"
727 | babel-template "^6.24.1"
728 |
729 | babel-plugin-transform-es2015-modules-umd@^6.24.1:
730 | version "6.24.1"
731 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-umd/-/babel-plugin-transform-es2015-modules-umd-6.24.1.tgz#ac997e6285cd18ed6176adb607d602344ad38468"
732 | dependencies:
733 | babel-plugin-transform-es2015-modules-amd "^6.24.1"
734 | babel-runtime "^6.22.0"
735 | babel-template "^6.24.1"
736 |
737 | babel-plugin-transform-es2015-object-super@^6.24.1:
738 | version "6.24.1"
739 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-object-super/-/babel-plugin-transform-es2015-object-super-6.24.1.tgz#24cef69ae21cb83a7f8603dad021f572eb278f8d"
740 | dependencies:
741 | babel-helper-replace-supers "^6.24.1"
742 | babel-runtime "^6.22.0"
743 |
744 | babel-plugin-transform-es2015-parameters@^6.21.0, babel-plugin-transform-es2015-parameters@^6.24.1:
745 | version "6.24.1"
746 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-parameters/-/babel-plugin-transform-es2015-parameters-6.24.1.tgz#57ac351ab49caf14a97cd13b09f66fdf0a625f2b"
747 | dependencies:
748 | babel-helper-call-delegate "^6.24.1"
749 | babel-helper-get-function-arity "^6.24.1"
750 | babel-runtime "^6.22.0"
751 | babel-template "^6.24.1"
752 | babel-traverse "^6.24.1"
753 | babel-types "^6.24.1"
754 |
755 | babel-plugin-transform-es2015-shorthand-properties@^6.24.1:
756 | version "6.24.1"
757 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-shorthand-properties/-/babel-plugin-transform-es2015-shorthand-properties-6.24.1.tgz#24f875d6721c87661bbd99a4622e51f14de38aa0"
758 | dependencies:
759 | babel-runtime "^6.22.0"
760 | babel-types "^6.24.1"
761 |
762 | babel-plugin-transform-es2015-spread@^6.22.0, babel-plugin-transform-es2015-spread@^6.8.0:
763 | version "6.22.0"
764 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-spread/-/babel-plugin-transform-es2015-spread-6.22.0.tgz#d6d68a99f89aedc4536c81a542e8dd9f1746f8d1"
765 | dependencies:
766 | babel-runtime "^6.22.0"
767 |
768 | babel-plugin-transform-es2015-sticky-regex@^6.24.1, babel-plugin-transform-es2015-sticky-regex@^6.8.0:
769 | version "6.24.1"
770 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-sticky-regex/-/babel-plugin-transform-es2015-sticky-regex-6.24.1.tgz#00c1cdb1aca71112cdf0cf6126c2ed6b457ccdbc"
771 | dependencies:
772 | babel-helper-regex "^6.24.1"
773 | babel-runtime "^6.22.0"
774 | babel-types "^6.24.1"
775 |
776 | babel-plugin-transform-es2015-template-literals@^6.22.0:
777 | version "6.22.0"
778 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-template-literals/-/babel-plugin-transform-es2015-template-literals-6.22.0.tgz#a84b3450f7e9f8f1f6839d6d687da84bb1236d8d"
779 | dependencies:
780 | babel-runtime "^6.22.0"
781 |
782 | babel-plugin-transform-es2015-typeof-symbol@^6.22.0:
783 | version "6.23.0"
784 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-typeof-symbol/-/babel-plugin-transform-es2015-typeof-symbol-6.23.0.tgz#dec09f1cddff94b52ac73d505c84df59dcceb372"
785 | dependencies:
786 | babel-runtime "^6.22.0"
787 |
788 | babel-plugin-transform-es2015-unicode-regex@^6.11.0, babel-plugin-transform-es2015-unicode-regex@^6.24.1:
789 | version "6.24.1"
790 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-unicode-regex/-/babel-plugin-transform-es2015-unicode-regex-6.24.1.tgz#d38b12f42ea7323f729387f18a7c5ae1faeb35e9"
791 | dependencies:
792 | babel-helper-regex "^6.24.1"
793 | babel-runtime "^6.22.0"
794 | regexpu-core "^2.0.0"
795 |
796 | babel-plugin-transform-exponentiation-operator@^6.24.1, babel-plugin-transform-exponentiation-operator@^6.8.0:
797 | version "6.24.1"
798 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-exponentiation-operator/-/babel-plugin-transform-exponentiation-operator-6.24.1.tgz#2ab0c9c7f3098fa48907772bb813fe41e8de3a0e"
799 | dependencies:
800 | babel-helper-builder-binary-assignment-operator-visitor "^6.24.1"
801 | babel-plugin-syntax-exponentiation-operator "^6.8.0"
802 | babel-runtime "^6.22.0"
803 |
804 | babel-plugin-transform-export-extensions@^6.22.0:
805 | version "6.22.0"
806 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-export-extensions/-/babel-plugin-transform-export-extensions-6.22.0.tgz#53738b47e75e8218589eea946cbbd39109bbe653"
807 | dependencies:
808 | babel-plugin-syntax-export-extensions "^6.8.0"
809 | babel-runtime "^6.22.0"
810 |
811 | babel-plugin-transform-flow-strip-types@^6.22.0:
812 | version "6.22.0"
813 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-flow-strip-types/-/babel-plugin-transform-flow-strip-types-6.22.0.tgz#84cb672935d43714fdc32bce84568d87441cf7cf"
814 | dependencies:
815 | babel-plugin-syntax-flow "^6.18.0"
816 | babel-runtime "^6.22.0"
817 |
818 | babel-plugin-transform-function-bind@^6.22.0:
819 | version "6.22.0"
820 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-function-bind/-/babel-plugin-transform-function-bind-6.22.0.tgz#c6fb8e96ac296a310b8cf8ea401462407ddf6a97"
821 | dependencies:
822 | babel-plugin-syntax-function-bind "^6.8.0"
823 | babel-runtime "^6.22.0"
824 |
825 | babel-plugin-transform-object-rest-spread@^6.22.0:
826 | version "6.23.0"
827 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-object-rest-spread/-/babel-plugin-transform-object-rest-spread-6.23.0.tgz#875d6bc9be761c58a2ae3feee5dc4895d8c7f921"
828 | dependencies:
829 | babel-plugin-syntax-object-rest-spread "^6.8.0"
830 | babel-runtime "^6.22.0"
831 |
832 | babel-plugin-transform-react-display-name@^6.23.0:
833 | version "6.23.0"
834 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-react-display-name/-/babel-plugin-transform-react-display-name-6.23.0.tgz#4398910c358441dc4cef18787264d0412ed36b37"
835 | dependencies:
836 | babel-runtime "^6.22.0"
837 |
838 | babel-plugin-transform-react-jsx-self@^6.22.0:
839 | version "6.22.0"
840 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-react-jsx-self/-/babel-plugin-transform-react-jsx-self-6.22.0.tgz#df6d80a9da2612a121e6ddd7558bcbecf06e636e"
841 | dependencies:
842 | babel-plugin-syntax-jsx "^6.8.0"
843 | babel-runtime "^6.22.0"
844 |
845 | babel-plugin-transform-react-jsx-source@^6.22.0:
846 | version "6.22.0"
847 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-react-jsx-source/-/babel-plugin-transform-react-jsx-source-6.22.0.tgz#66ac12153f5cd2d17b3c19268f4bf0197f44ecd6"
848 | dependencies:
849 | babel-plugin-syntax-jsx "^6.8.0"
850 | babel-runtime "^6.22.0"
851 |
852 | babel-plugin-transform-react-jsx@^6.24.1:
853 | version "6.24.1"
854 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-react-jsx/-/babel-plugin-transform-react-jsx-6.24.1.tgz#840a028e7df460dfc3a2d29f0c0d91f6376e66a3"
855 | dependencies:
856 | babel-helper-builder-react-jsx "^6.24.1"
857 | babel-plugin-syntax-jsx "^6.8.0"
858 | babel-runtime "^6.22.0"
859 |
860 | babel-plugin-transform-regenerator@^6.24.1:
861 | version "6.24.1"
862 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-regenerator/-/babel-plugin-transform-regenerator-6.24.1.tgz#b8da305ad43c3c99b4848e4fe4037b770d23c418"
863 | dependencies:
864 | regenerator-transform "0.9.11"
865 |
866 | babel-plugin-transform-strict-mode@^6.24.1:
867 | version "6.24.1"
868 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-strict-mode/-/babel-plugin-transform-strict-mode-6.24.1.tgz#d5faf7aa578a65bbe591cf5edae04a0c67020758"
869 | dependencies:
870 | babel-runtime "^6.22.0"
871 | babel-types "^6.24.1"
872 |
873 | babel-polyfill@^6.23.0:
874 | version "6.23.0"
875 | resolved "https://registry.yarnpkg.com/babel-polyfill/-/babel-polyfill-6.23.0.tgz#8364ca62df8eafb830499f699177466c3b03499d"
876 | dependencies:
877 | babel-runtime "^6.22.0"
878 | core-js "^2.4.0"
879 | regenerator-runtime "^0.10.0"
880 |
881 | babel-preset-es2015@^6.9.0:
882 | version "6.24.1"
883 | resolved "https://registry.yarnpkg.com/babel-preset-es2015/-/babel-preset-es2015-6.24.1.tgz#d44050d6bc2c9feea702aaf38d727a0210538939"
884 | dependencies:
885 | babel-plugin-check-es2015-constants "^6.22.0"
886 | babel-plugin-transform-es2015-arrow-functions "^6.22.0"
887 | babel-plugin-transform-es2015-block-scoped-functions "^6.22.0"
888 | babel-plugin-transform-es2015-block-scoping "^6.24.1"
889 | babel-plugin-transform-es2015-classes "^6.24.1"
890 | babel-plugin-transform-es2015-computed-properties "^6.24.1"
891 | babel-plugin-transform-es2015-destructuring "^6.22.0"
892 | babel-plugin-transform-es2015-duplicate-keys "^6.24.1"
893 | babel-plugin-transform-es2015-for-of "^6.22.0"
894 | babel-plugin-transform-es2015-function-name "^6.24.1"
895 | babel-plugin-transform-es2015-literals "^6.22.0"
896 | babel-plugin-transform-es2015-modules-amd "^6.24.1"
897 | babel-plugin-transform-es2015-modules-commonjs "^6.24.1"
898 | babel-plugin-transform-es2015-modules-systemjs "^6.24.1"
899 | babel-plugin-transform-es2015-modules-umd "^6.24.1"
900 | babel-plugin-transform-es2015-object-super "^6.24.1"
901 | babel-plugin-transform-es2015-parameters "^6.24.1"
902 | babel-plugin-transform-es2015-shorthand-properties "^6.24.1"
903 | babel-plugin-transform-es2015-spread "^6.22.0"
904 | babel-plugin-transform-es2015-sticky-regex "^6.24.1"
905 | babel-plugin-transform-es2015-template-literals "^6.22.0"
906 | babel-plugin-transform-es2015-typeof-symbol "^6.22.0"
907 | babel-plugin-transform-es2015-unicode-regex "^6.24.1"
908 | babel-plugin-transform-regenerator "^6.24.1"
909 |
910 | babel-preset-flow@^6.23.0:
911 | version "6.23.0"
912 | resolved "https://registry.yarnpkg.com/babel-preset-flow/-/babel-preset-flow-6.23.0.tgz#e71218887085ae9a24b5be4169affb599816c49d"
913 | dependencies:
914 | babel-plugin-transform-flow-strip-types "^6.22.0"
915 |
916 | babel-preset-react@^6.24.1:
917 | version "6.24.1"
918 | resolved "https://registry.yarnpkg.com/babel-preset-react/-/babel-preset-react-6.24.1.tgz#ba69dfaea45fc3ec639b6a4ecea6e17702c91380"
919 | dependencies:
920 | babel-plugin-syntax-jsx "^6.3.13"
921 | babel-plugin-transform-react-display-name "^6.23.0"
922 | babel-plugin-transform-react-jsx "^6.24.1"
923 | babel-plugin-transform-react-jsx-self "^6.22.0"
924 | babel-plugin-transform-react-jsx-source "^6.22.0"
925 | babel-preset-flow "^6.23.0"
926 |
927 | babel-preset-stage-0@^6.24.1:
928 | version "6.24.1"
929 | resolved "https://registry.yarnpkg.com/babel-preset-stage-0/-/babel-preset-stage-0-6.24.1.tgz#5642d15042f91384d7e5af8bc88b1db95b039e6a"
930 | dependencies:
931 | babel-plugin-transform-do-expressions "^6.22.0"
932 | babel-plugin-transform-function-bind "^6.22.0"
933 | babel-preset-stage-1 "^6.24.1"
934 |
935 | babel-preset-stage-1@^6.24.1:
936 | version "6.24.1"
937 | resolved "https://registry.yarnpkg.com/babel-preset-stage-1/-/babel-preset-stage-1-6.24.1.tgz#7692cd7dcd6849907e6ae4a0a85589cfb9e2bfb0"
938 | dependencies:
939 | babel-plugin-transform-class-constructor-call "^6.24.1"
940 | babel-plugin-transform-export-extensions "^6.22.0"
941 | babel-preset-stage-2 "^6.24.1"
942 |
943 | babel-preset-stage-2@^6.24.1:
944 | version "6.24.1"
945 | resolved "https://registry.yarnpkg.com/babel-preset-stage-2/-/babel-preset-stage-2-6.24.1.tgz#d9e2960fb3d71187f0e64eec62bc07767219bdc1"
946 | dependencies:
947 | babel-plugin-syntax-dynamic-import "^6.18.0"
948 | babel-plugin-transform-class-properties "^6.24.1"
949 | babel-plugin-transform-decorators "^6.24.1"
950 | babel-preset-stage-3 "^6.24.1"
951 |
952 | babel-preset-stage-3@^6.24.1:
953 | version "6.24.1"
954 | resolved "https://registry.yarnpkg.com/babel-preset-stage-3/-/babel-preset-stage-3-6.24.1.tgz#836ada0a9e7a7fa37cb138fb9326f87934a48395"
955 | dependencies:
956 | babel-plugin-syntax-trailing-function-commas "^6.22.0"
957 | babel-plugin-transform-async-generator-functions "^6.24.1"
958 | babel-plugin-transform-async-to-generator "^6.24.1"
959 | babel-plugin-transform-exponentiation-operator "^6.24.1"
960 | babel-plugin-transform-object-rest-spread "^6.22.0"
961 |
962 | babel-register@^6.24.1:
963 | version "6.24.1"
964 | resolved "https://registry.yarnpkg.com/babel-register/-/babel-register-6.24.1.tgz#7e10e13a2f71065bdfad5a1787ba45bca6ded75f"
965 | dependencies:
966 | babel-core "^6.24.1"
967 | babel-runtime "^6.22.0"
968 | core-js "^2.4.0"
969 | home-or-tmp "^2.0.0"
970 | lodash "^4.2.0"
971 | mkdirp "^0.5.1"
972 | source-map-support "^0.4.2"
973 |
974 | babel-runtime@^6.18.0, babel-runtime@^6.22.0:
975 | version "6.23.0"
976 | resolved "https://registry.yarnpkg.com/babel-runtime/-/babel-runtime-6.23.0.tgz#0a9489f144de70efb3ce4300accdb329e2fc543b"
977 | dependencies:
978 | core-js "^2.4.0"
979 | regenerator-runtime "^0.10.0"
980 |
981 | babel-template@^6.24.1:
982 | version "6.24.1"
983 | resolved "https://registry.yarnpkg.com/babel-template/-/babel-template-6.24.1.tgz#04ae514f1f93b3a2537f2a0f60a5a45fb8308333"
984 | dependencies:
985 | babel-runtime "^6.22.0"
986 | babel-traverse "^6.24.1"
987 | babel-types "^6.24.1"
988 | babylon "^6.11.0"
989 | lodash "^4.2.0"
990 |
991 | babel-traverse@^6.23.1, babel-traverse@^6.24.1:
992 | version "6.24.1"
993 | resolved "https://registry.yarnpkg.com/babel-traverse/-/babel-traverse-6.24.1.tgz#ab36673fd356f9a0948659e7b338d5feadb31695"
994 | dependencies:
995 | babel-code-frame "^6.22.0"
996 | babel-messages "^6.23.0"
997 | babel-runtime "^6.22.0"
998 | babel-types "^6.24.1"
999 | babylon "^6.15.0"
1000 | debug "^2.2.0"
1001 | globals "^9.0.0"
1002 | invariant "^2.2.0"
1003 | lodash "^4.2.0"
1004 |
1005 | babel-types@^6.19.0, babel-types@^6.23.0, babel-types@^6.24.1:
1006 | version "6.24.1"
1007 | resolved "https://registry.yarnpkg.com/babel-types/-/babel-types-6.24.1.tgz#a136879dc15b3606bda0d90c1fc74304c2ff0975"
1008 | dependencies:
1009 | babel-runtime "^6.22.0"
1010 | esutils "^2.0.2"
1011 | lodash "^4.2.0"
1012 | to-fast-properties "^1.0.1"
1013 |
1014 | babylon@^6.1.0, babylon@^6.11.0, babylon@^6.15.0, babylon@^6.17.0:
1015 | version "6.17.2"
1016 | resolved "https://registry.yarnpkg.com/babylon/-/babylon-6.17.2.tgz#201d25ef5f892c41bae49488b08db0dd476e9f5c"
1017 |
1018 | balanced-match@^0.4.1:
1019 | version "0.4.2"
1020 | resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-0.4.2.tgz#cb3f3e3c732dc0f01ee70b403f302e61d7709838"
1021 |
1022 | bcrypt-pbkdf@^1.0.0:
1023 | version "1.0.1"
1024 | resolved "https://registry.yarnpkg.com/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.1.tgz#63bc5dcb61331b92bc05fd528953c33462a06f8d"
1025 | dependencies:
1026 | tweetnacl "^0.14.3"
1027 |
1028 | binary-extensions@^1.0.0:
1029 | version "1.8.0"
1030 | resolved "https://registry.yarnpkg.com/binary-extensions/-/binary-extensions-1.8.0.tgz#48ec8d16df4377eae5fa5884682480af4d95c774"
1031 |
1032 | block-stream@*:
1033 | version "0.0.9"
1034 | resolved "https://registry.yarnpkg.com/block-stream/-/block-stream-0.0.9.tgz#13ebfe778a03205cfe03751481ebb4b3300c126a"
1035 | dependencies:
1036 | inherits "~2.0.0"
1037 |
1038 | bluebird@^3.0.0:
1039 | version "3.5.0"
1040 | resolved "https://registry.yarnpkg.com/bluebird/-/bluebird-3.5.0.tgz#791420d7f551eea2897453a8a77653f96606d67c"
1041 |
1042 | boolbase@~1.0.0:
1043 | version "1.0.0"
1044 | resolved "https://registry.yarnpkg.com/boolbase/-/boolbase-1.0.0.tgz#68dff5fbe60c51eb37725ea9e3ed310dcc1e776e"
1045 |
1046 | boom@2.x.x:
1047 | version "2.10.1"
1048 | resolved "https://registry.yarnpkg.com/boom/-/boom-2.10.1.tgz#39c8918ceff5799f83f9492a848f625add0c766f"
1049 | dependencies:
1050 | hoek "2.x.x"
1051 |
1052 | boxen@^1.0.0:
1053 | version "1.1.0"
1054 | resolved "https://registry.yarnpkg.com/boxen/-/boxen-1.1.0.tgz#b1b69dd522305e807a99deee777dbd6e5167b102"
1055 | dependencies:
1056 | ansi-align "^2.0.0"
1057 | camelcase "^4.0.0"
1058 | chalk "^1.1.1"
1059 | cli-boxes "^1.0.0"
1060 | string-width "^2.0.0"
1061 | term-size "^0.1.0"
1062 | widest-line "^1.0.0"
1063 |
1064 | brace-expansion@^1.1.7:
1065 | version "1.1.7"
1066 | resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.7.tgz#3effc3c50e000531fb720eaff80f0ae8ef23cf59"
1067 | dependencies:
1068 | balanced-match "^0.4.1"
1069 | concat-map "0.0.1"
1070 |
1071 | braces@^1.8.2:
1072 | version "1.8.5"
1073 | resolved "https://registry.yarnpkg.com/braces/-/braces-1.8.5.tgz#ba77962e12dff969d6b76711e914b737857bf6a7"
1074 | dependencies:
1075 | expand-range "^1.8.1"
1076 | preserve "^0.2.0"
1077 | repeat-element "^1.1.2"
1078 |
1079 | buf-compare@^1.0.0:
1080 | version "1.0.1"
1081 | resolved "https://registry.yarnpkg.com/buf-compare/-/buf-compare-1.0.1.tgz#fef28da8b8113a0a0db4430b0b6467b69730b34a"
1082 |
1083 | builtin-modules@^1.0.0:
1084 | version "1.1.1"
1085 | resolved "https://registry.yarnpkg.com/builtin-modules/-/builtin-modules-1.1.1.tgz#270f076c5a72c02f5b65a47df94c5fe3a278892f"
1086 |
1087 | caching-transform@^1.0.0:
1088 | version "1.0.1"
1089 | resolved "https://registry.yarnpkg.com/caching-transform/-/caching-transform-1.0.1.tgz#6dbdb2f20f8d8fbce79f3e94e9d1742dcdf5c0a1"
1090 | dependencies:
1091 | md5-hex "^1.2.0"
1092 | mkdirp "^0.5.1"
1093 | write-file-atomic "^1.1.4"
1094 |
1095 | call-matcher@^1.0.0:
1096 | version "1.0.1"
1097 | resolved "https://registry.yarnpkg.com/call-matcher/-/call-matcher-1.0.1.tgz#5134d077984f712a54dad3cbf62de28dce416ca8"
1098 | dependencies:
1099 | core-js "^2.0.0"
1100 | deep-equal "^1.0.0"
1101 | espurify "^1.6.0"
1102 | estraverse "^4.0.0"
1103 |
1104 | call-signature@0.0.2:
1105 | version "0.0.2"
1106 | resolved "https://registry.yarnpkg.com/call-signature/-/call-signature-0.0.2.tgz#a84abc825a55ef4cb2b028bd74e205a65b9a4996"
1107 |
1108 | caller-path@^0.1.0:
1109 | version "0.1.0"
1110 | resolved "https://registry.yarnpkg.com/caller-path/-/caller-path-0.1.0.tgz#94085ef63581ecd3daa92444a8fe94e82577751f"
1111 | dependencies:
1112 | callsites "^0.2.0"
1113 |
1114 | callsites@^0.2.0:
1115 | version "0.2.0"
1116 | resolved "https://registry.yarnpkg.com/callsites/-/callsites-0.2.0.tgz#afab96262910a7f33c19a5775825c69f34e350ca"
1117 |
1118 | camelcase-keys@^2.0.0:
1119 | version "2.1.0"
1120 | resolved "https://registry.yarnpkg.com/camelcase-keys/-/camelcase-keys-2.1.0.tgz#308beeaffdf28119051efa1d932213c91b8f92e7"
1121 | dependencies:
1122 | camelcase "^2.0.0"
1123 | map-obj "^1.0.0"
1124 |
1125 | camelcase@^2.0.0:
1126 | version "2.1.1"
1127 | resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-2.1.1.tgz#7c1d16d679a1bbe59ca02cacecfb011e201f5a1f"
1128 |
1129 | camelcase@^4.0.0:
1130 | version "4.1.0"
1131 | resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-4.1.0.tgz#d545635be1e33c542649c69173e5de6acfae34dd"
1132 |
1133 | capture-stack-trace@^1.0.0:
1134 | version "1.0.0"
1135 | resolved "https://registry.yarnpkg.com/capture-stack-trace/-/capture-stack-trace-1.0.0.tgz#4a6fa07399c26bba47f0b2496b4d0fb408c5550d"
1136 |
1137 | caseless@~0.12.0:
1138 | version "0.12.0"
1139 | resolved "https://registry.yarnpkg.com/caseless/-/caseless-0.12.0.tgz#1b681c21ff84033c826543090689420d187151dc"
1140 |
1141 | chalk@^0.4.0:
1142 | version "0.4.0"
1143 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-0.4.0.tgz#5199a3ddcd0c1efe23bc08c1b027b06176e0c64f"
1144 | dependencies:
1145 | ansi-styles "~1.0.0"
1146 | has-color "~0.1.0"
1147 | strip-ansi "~0.1.0"
1148 |
1149 | chalk@^1.0.0, chalk@^1.1.0, chalk@^1.1.1, chalk@^1.1.3:
1150 | version "1.1.3"
1151 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-1.1.3.tgz#a8115c55e4a702fe4d150abd3872822a7e09fc98"
1152 | dependencies:
1153 | ansi-styles "^2.2.1"
1154 | escape-string-regexp "^1.0.2"
1155 | has-ansi "^2.0.0"
1156 | strip-ansi "^3.0.0"
1157 | supports-color "^2.0.0"
1158 |
1159 | cheerio@^0.22.0:
1160 | version "0.22.0"
1161 | resolved "https://registry.yarnpkg.com/cheerio/-/cheerio-0.22.0.tgz#a9baa860a3f9b595a6b81b1a86873121ed3a269e"
1162 | dependencies:
1163 | css-select "~1.2.0"
1164 | dom-serializer "~0.1.0"
1165 | entities "~1.1.1"
1166 | htmlparser2 "^3.9.1"
1167 | lodash.assignin "^4.0.9"
1168 | lodash.bind "^4.1.4"
1169 | lodash.defaults "^4.0.1"
1170 | lodash.filter "^4.4.0"
1171 | lodash.flatten "^4.2.0"
1172 | lodash.foreach "^4.3.0"
1173 | lodash.map "^4.4.0"
1174 | lodash.merge "^4.4.0"
1175 | lodash.pick "^4.2.1"
1176 | lodash.reduce "^4.4.0"
1177 | lodash.reject "^4.4.0"
1178 | lodash.some "^4.4.0"
1179 |
1180 | chokidar@^1.4.2, chokidar@^1.6.1:
1181 | version "1.7.0"
1182 | resolved "https://registry.yarnpkg.com/chokidar/-/chokidar-1.7.0.tgz#798e689778151c8076b4b360e5edd28cda2bb468"
1183 | dependencies:
1184 | anymatch "^1.3.0"
1185 | async-each "^1.0.0"
1186 | glob-parent "^2.0.0"
1187 | inherits "^2.0.1"
1188 | is-binary-path "^1.0.0"
1189 | is-glob "^2.0.0"
1190 | path-is-absolute "^1.0.0"
1191 | readdirp "^2.0.0"
1192 | optionalDependencies:
1193 | fsevents "^1.0.0"
1194 |
1195 | ci-info@^1.0.0:
1196 | version "1.0.0"
1197 | resolved "https://registry.yarnpkg.com/ci-info/-/ci-info-1.0.0.tgz#dc5285f2b4e251821683681c381c3388f46ec534"
1198 |
1199 | circular-json@^0.3.1:
1200 | version "0.3.1"
1201 | resolved "https://registry.yarnpkg.com/circular-json/-/circular-json-0.3.1.tgz#be8b36aefccde8b3ca7aa2d6afc07a37242c0d2d"
1202 |
1203 | clean-stack@^1.1.1:
1204 | version "1.3.0"
1205 | resolved "https://registry.yarnpkg.com/clean-stack/-/clean-stack-1.3.0.tgz#9e821501ae979986c46b1d66d2d432db2fd4ae31"
1206 |
1207 | clean-yaml-object@^0.1.0:
1208 | version "0.1.0"
1209 | resolved "https://registry.yarnpkg.com/clean-yaml-object/-/clean-yaml-object-0.1.0.tgz#63fb110dc2ce1a84dc21f6d9334876d010ae8b68"
1210 |
1211 | cli-boxes@^1.0.0:
1212 | version "1.0.0"
1213 | resolved "https://registry.yarnpkg.com/cli-boxes/-/cli-boxes-1.0.0.tgz#4fa917c3e59c94a004cd61f8ee509da651687143"
1214 |
1215 | cli-cursor@^1.0.1:
1216 | version "1.0.2"
1217 | resolved "https://registry.yarnpkg.com/cli-cursor/-/cli-cursor-1.0.2.tgz#64da3f7d56a54412e59794bd62dc35295e8f2987"
1218 | dependencies:
1219 | restore-cursor "^1.0.1"
1220 |
1221 | cli-cursor@^2.1.0:
1222 | version "2.1.0"
1223 | resolved "https://registry.yarnpkg.com/cli-cursor/-/cli-cursor-2.1.0.tgz#b35dac376479facc3e94747d41d0d0f5238ffcb5"
1224 | dependencies:
1225 | restore-cursor "^2.0.0"
1226 |
1227 | cli-spinners@^1.0.0:
1228 | version "1.0.0"
1229 | resolved "https://registry.yarnpkg.com/cli-spinners/-/cli-spinners-1.0.0.tgz#ef987ed3d48391ac3dab9180b406a742180d6e6a"
1230 |
1231 | cli-truncate@^1.0.0:
1232 | version "1.0.0"
1233 | resolved "https://registry.yarnpkg.com/cli-truncate/-/cli-truncate-1.0.0.tgz#21eb91f47b3f6560f004db77a769b4668d9c5518"
1234 | dependencies:
1235 | slice-ansi "0.0.4"
1236 | string-width "^2.0.0"
1237 |
1238 | cli-width@^2.0.0:
1239 | version "2.1.0"
1240 | resolved "https://registry.yarnpkg.com/cli-width/-/cli-width-2.1.0.tgz#b234ca209b29ef66fc518d9b98d5847b00edf00a"
1241 |
1242 | co-with-promise@^4.6.0:
1243 | version "4.6.0"
1244 | resolved "https://registry.yarnpkg.com/co-with-promise/-/co-with-promise-4.6.0.tgz#413e7db6f5893a60b942cf492c4bec93db415ab7"
1245 | dependencies:
1246 | pinkie-promise "^1.0.0"
1247 |
1248 | co@^4.6.0:
1249 | version "4.6.0"
1250 | resolved "https://registry.yarnpkg.com/co/-/co-4.6.0.tgz#6ea6bdf3d853ae54ccb8e47bfa0bf3f9031fb184"
1251 |
1252 | code-excerpt@^2.1.0:
1253 | version "2.1.0"
1254 | resolved "https://registry.yarnpkg.com/code-excerpt/-/code-excerpt-2.1.0.tgz#5dcc081e88f4a7e3b554e9e35d7ef232d47f8147"
1255 | dependencies:
1256 | convert-to-spaces "^1.0.1"
1257 |
1258 | code-point-at@^1.0.0:
1259 | version "1.1.0"
1260 | resolved "https://registry.yarnpkg.com/code-point-at/-/code-point-at-1.1.0.tgz#0d070b4d043a5bea33a2f1a40e2edb3d9a4ccf77"
1261 |
1262 | color-convert@^1.0.0:
1263 | version "1.9.0"
1264 | resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-1.9.0.tgz#1accf97dd739b983bf994d56fec8f95853641b7a"
1265 | dependencies:
1266 | color-name "^1.1.1"
1267 |
1268 | color-name@^1.1.1:
1269 | version "1.1.2"
1270 | resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.2.tgz#5c8ab72b64bd2215d617ae9559ebb148475cf98d"
1271 |
1272 | combined-stream@^1.0.5, combined-stream@~1.0.5:
1273 | version "1.0.5"
1274 | resolved "https://registry.yarnpkg.com/combined-stream/-/combined-stream-1.0.5.tgz#938370a57b4a51dea2c77c15d5c5fdf895164009"
1275 | dependencies:
1276 | delayed-stream "~1.0.0"
1277 |
1278 | commander@^2.8.1:
1279 | version "2.9.0"
1280 | resolved "https://registry.yarnpkg.com/commander/-/commander-2.9.0.tgz#9c99094176e12240cb22d6c5146098400fe0f7d4"
1281 | dependencies:
1282 | graceful-readlink ">= 1.0.0"
1283 |
1284 | common-path-prefix@^1.0.0:
1285 | version "1.0.0"
1286 | resolved "https://registry.yarnpkg.com/common-path-prefix/-/common-path-prefix-1.0.0.tgz#cd52f6f0712e0baab97d6f9732874f22f47752c0"
1287 |
1288 | commondir@^1.0.1:
1289 | version "1.0.1"
1290 | resolved "https://registry.yarnpkg.com/commondir/-/commondir-1.0.1.tgz#ddd800da0c66127393cca5950ea968a3aaf1253b"
1291 |
1292 | concat-map@0.0.1:
1293 | version "0.0.1"
1294 | resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b"
1295 |
1296 | concat-stream@^1.5.2:
1297 | version "1.6.0"
1298 | resolved "https://registry.yarnpkg.com/concat-stream/-/concat-stream-1.6.0.tgz#0aac662fd52be78964d5532f694784e70110acf7"
1299 | dependencies:
1300 | inherits "^2.0.3"
1301 | readable-stream "^2.2.2"
1302 | typedarray "^0.0.6"
1303 |
1304 | configstore@^3.0.0:
1305 | version "3.1.0"
1306 | resolved "https://registry.yarnpkg.com/configstore/-/configstore-3.1.0.tgz#45df907073e26dfa1cf4b2d52f5b60545eaa11d1"
1307 | dependencies:
1308 | dot-prop "^4.1.0"
1309 | graceful-fs "^4.1.2"
1310 | make-dir "^1.0.0"
1311 | unique-string "^1.0.0"
1312 | write-file-atomic "^2.0.0"
1313 | xdg-basedir "^3.0.0"
1314 |
1315 | console-control-strings@^1.0.0, console-control-strings@~1.1.0:
1316 | version "1.1.0"
1317 | resolved "https://registry.yarnpkg.com/console-control-strings/-/console-control-strings-1.1.0.tgz#3d7cf4464db6446ea644bf4b39507f9851008e8e"
1318 |
1319 | convert-source-map@^1.1.0, convert-source-map@^1.2.0:
1320 | version "1.5.0"
1321 | resolved "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-1.5.0.tgz#9acd70851c6d5dfdd93d9282e5edf94a03ff46b5"
1322 |
1323 | convert-to-spaces@^1.0.1:
1324 | version "1.0.2"
1325 | resolved "https://registry.yarnpkg.com/convert-to-spaces/-/convert-to-spaces-1.0.2.tgz#7e3e48bbe6d997b1417ddca2868204b4d3d85715"
1326 |
1327 | core-assert@^0.2.0:
1328 | version "0.2.1"
1329 | resolved "https://registry.yarnpkg.com/core-assert/-/core-assert-0.2.1.tgz#f85e2cf9bfed28f773cc8b3fa5c5b69bdc02fe3f"
1330 | dependencies:
1331 | buf-compare "^1.0.0"
1332 | is-error "^2.2.0"
1333 |
1334 | core-js@^1.0.0:
1335 | version "1.2.7"
1336 | resolved "https://registry.yarnpkg.com/core-js/-/core-js-1.2.7.tgz#652294c14651db28fa93bd2d5ff2983a4f08c636"
1337 |
1338 | core-js@^2.0.0, core-js@^2.4.0:
1339 | version "2.4.1"
1340 | resolved "https://registry.yarnpkg.com/core-js/-/core-js-2.4.1.tgz#4de911e667b0eae9124e34254b53aea6fc618d3e"
1341 |
1342 | core-util-is@~1.0.0:
1343 | version "1.0.2"
1344 | resolved "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.2.tgz#b5fd54220aa2bc5ab57aab7140c940754503c1a7"
1345 |
1346 | create-error-class@^3.0.0:
1347 | version "3.0.2"
1348 | resolved "https://registry.yarnpkg.com/create-error-class/-/create-error-class-3.0.2.tgz#06be7abef947a3f14a30fd610671d401bca8b7b6"
1349 | dependencies:
1350 | capture-stack-trace "^1.0.0"
1351 |
1352 | cross-spawn-async@^2.1.1:
1353 | version "2.2.5"
1354 | resolved "https://registry.yarnpkg.com/cross-spawn-async/-/cross-spawn-async-2.2.5.tgz#845ff0c0834a3ded9d160daca6d390906bb288cc"
1355 | dependencies:
1356 | lru-cache "^4.0.0"
1357 | which "^1.2.8"
1358 |
1359 | cross-spawn@^4.0.0:
1360 | version "4.0.2"
1361 | resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-4.0.2.tgz#7b9247621c23adfdd3856004a823cbe397424d41"
1362 | dependencies:
1363 | lru-cache "^4.0.1"
1364 | which "^1.2.9"
1365 |
1366 | cryptiles@2.x.x:
1367 | version "2.0.5"
1368 | resolved "https://registry.yarnpkg.com/cryptiles/-/cryptiles-2.0.5.tgz#3bdfecdc608147c1c67202fa291e7dca59eaa3b8"
1369 | dependencies:
1370 | boom "2.x.x"
1371 |
1372 | crypto-random-string@^1.0.0:
1373 | version "1.0.0"
1374 | resolved "https://registry.yarnpkg.com/crypto-random-string/-/crypto-random-string-1.0.0.tgz#a230f64f568310e1498009940790ec99545bca7e"
1375 |
1376 | css-select@~1.2.0:
1377 | version "1.2.0"
1378 | resolved "https://registry.yarnpkg.com/css-select/-/css-select-1.2.0.tgz#2b3a110539c5355f1cd8d314623e870b121ec858"
1379 | dependencies:
1380 | boolbase "~1.0.0"
1381 | css-what "2.1"
1382 | domutils "1.5.1"
1383 | nth-check "~1.0.1"
1384 |
1385 | css-what@2.1:
1386 | version "2.1.0"
1387 | resolved "https://registry.yarnpkg.com/css-what/-/css-what-2.1.0.tgz#9467d032c38cfaefb9f2d79501253062f87fa1bd"
1388 |
1389 | currently-unhandled@^0.4.1:
1390 | version "0.4.1"
1391 | resolved "https://registry.yarnpkg.com/currently-unhandled/-/currently-unhandled-0.4.1.tgz#988df33feab191ef799a61369dd76c17adf957ea"
1392 | dependencies:
1393 | array-find-index "^1.0.1"
1394 |
1395 | d@1:
1396 | version "1.0.0"
1397 | resolved "https://registry.yarnpkg.com/d/-/d-1.0.0.tgz#754bb5bfe55451da69a58b94d45f4c5b0462d58f"
1398 | dependencies:
1399 | es5-ext "^0.10.9"
1400 |
1401 | dashdash@^1.12.0:
1402 | version "1.14.1"
1403 | resolved "https://registry.yarnpkg.com/dashdash/-/dashdash-1.14.1.tgz#853cfa0f7cbe2fed5de20326b8dd581035f6e2f0"
1404 | dependencies:
1405 | assert-plus "^1.0.0"
1406 |
1407 | date-time@^0.1.1:
1408 | version "0.1.1"
1409 | resolved "https://registry.yarnpkg.com/date-time/-/date-time-0.1.1.tgz#ed2f6d93d9790ce2fd66d5b5ff3edd5bbcbf3b07"
1410 |
1411 | debug@^2.1.1, debug@^2.2.0, debug@^2.3.2:
1412 | version "2.6.8"
1413 | resolved "https://registry.yarnpkg.com/debug/-/debug-2.6.8.tgz#e731531ca2ede27d188222427da17821d68ff4fc"
1414 | dependencies:
1415 | ms "2.0.0"
1416 |
1417 | decamelize@^1.1.2:
1418 | version "1.2.0"
1419 | resolved "https://registry.yarnpkg.com/decamelize/-/decamelize-1.2.0.tgz#f6534d15148269b20352e7bee26f501f9a191290"
1420 |
1421 | deep-equal@^1.0.0:
1422 | version "1.0.1"
1423 | resolved "https://registry.yarnpkg.com/deep-equal/-/deep-equal-1.0.1.tgz#f5d260292b660e084eff4cdbc9f08ad3247448b5"
1424 |
1425 | deep-extend@~0.4.0:
1426 | version "0.4.2"
1427 | resolved "https://registry.yarnpkg.com/deep-extend/-/deep-extend-0.4.2.tgz#48b699c27e334bf89f10892be432f6e4c7d34a7f"
1428 |
1429 | deep-is@~0.1.3:
1430 | version "0.1.3"
1431 | resolved "https://registry.yarnpkg.com/deep-is/-/deep-is-0.1.3.tgz#b369d6fb5dbc13eecf524f91b070feedc357cf34"
1432 |
1433 | define-properties@^1.1.2:
1434 | version "1.1.2"
1435 | resolved "https://registry.yarnpkg.com/define-properties/-/define-properties-1.1.2.tgz#83a73f2fea569898fb737193c8f873caf6d45c94"
1436 | dependencies:
1437 | foreach "^2.0.5"
1438 | object-keys "^1.0.8"
1439 |
1440 | del@^2.0.2:
1441 | version "2.2.2"
1442 | resolved "https://registry.yarnpkg.com/del/-/del-2.2.2.tgz#c12c981d067846c84bcaf862cff930d907ffd1a8"
1443 | dependencies:
1444 | globby "^5.0.0"
1445 | is-path-cwd "^1.0.0"
1446 | is-path-in-cwd "^1.0.0"
1447 | object-assign "^4.0.1"
1448 | pify "^2.0.0"
1449 | pinkie-promise "^2.0.0"
1450 | rimraf "^2.2.8"
1451 |
1452 | delayed-stream@~1.0.0:
1453 | version "1.0.0"
1454 | resolved "https://registry.yarnpkg.com/delayed-stream/-/delayed-stream-1.0.0.tgz#df3ae199acadfb7d440aaae0b29e2272b24ec619"
1455 |
1456 | delegates@^1.0.0:
1457 | version "1.0.0"
1458 | resolved "https://registry.yarnpkg.com/delegates/-/delegates-1.0.0.tgz#84c6e159b81904fdca59a0ef44cd870d31250f9a"
1459 |
1460 | detect-indent@^4.0.0:
1461 | version "4.0.0"
1462 | resolved "https://registry.yarnpkg.com/detect-indent/-/detect-indent-4.0.0.tgz#f76d064352cdf43a1cb6ce619c4ee3a9475de208"
1463 | dependencies:
1464 | repeating "^2.0.0"
1465 |
1466 | detect-indent@^5.0.0:
1467 | version "5.0.0"
1468 | resolved "https://registry.yarnpkg.com/detect-indent/-/detect-indent-5.0.0.tgz#3871cc0a6a002e8c3e5b3cf7f336264675f06b9d"
1469 |
1470 | diff-match-patch@^1.0.0:
1471 | version "1.0.0"
1472 | resolved "https://registry.yarnpkg.com/diff-match-patch/-/diff-match-patch-1.0.0.tgz#1cc3c83a490d67f95d91e39f6ad1f2e086b63048"
1473 |
1474 | diff@^3.0.0, diff@^3.0.1:
1475 | version "3.2.0"
1476 | resolved "https://registry.yarnpkg.com/diff/-/diff-3.2.0.tgz#c9ce393a4b7cbd0b058a725c93df299027868ff9"
1477 |
1478 | direction@^0.1.5:
1479 | version "0.1.5"
1480 | resolved "https://registry.yarnpkg.com/direction/-/direction-0.1.5.tgz#ce5d797f97e26f8be7beff53f7dc40e1c1a9ec4c"
1481 |
1482 | doctrine@^1.2.2:
1483 | version "1.5.0"
1484 | resolved "https://registry.yarnpkg.com/doctrine/-/doctrine-1.5.0.tgz#379dce730f6166f76cefa4e6707a159b02c5a6fa"
1485 | dependencies:
1486 | esutils "^2.0.2"
1487 | isarray "^1.0.0"
1488 |
1489 | doctrine@^2.0.0:
1490 | version "2.0.0"
1491 | resolved "https://registry.yarnpkg.com/doctrine/-/doctrine-2.0.0.tgz#c73d8d2909d22291e1a007a395804da8b665fe63"
1492 | dependencies:
1493 | esutils "^2.0.2"
1494 | isarray "^1.0.0"
1495 |
1496 | dom-serializer@0, dom-serializer@~0.1.0:
1497 | version "0.1.0"
1498 | resolved "https://registry.yarnpkg.com/dom-serializer/-/dom-serializer-0.1.0.tgz#073c697546ce0780ce23be4a28e293e40bc30c82"
1499 | dependencies:
1500 | domelementtype "~1.1.1"
1501 | entities "~1.1.1"
1502 |
1503 | domelementtype@1, domelementtype@^1.3.0:
1504 | version "1.3.0"
1505 | resolved "https://registry.yarnpkg.com/domelementtype/-/domelementtype-1.3.0.tgz#b17aed82e8ab59e52dd9c19b1756e0fc187204c2"
1506 |
1507 | domelementtype@~1.1.1:
1508 | version "1.1.3"
1509 | resolved "https://registry.yarnpkg.com/domelementtype/-/domelementtype-1.1.3.tgz#bd28773e2642881aec51544924299c5cd822185b"
1510 |
1511 | domhandler@^2.3.0:
1512 | version "2.4.1"
1513 | resolved "https://registry.yarnpkg.com/domhandler/-/domhandler-2.4.1.tgz#892e47000a99be55bbf3774ffea0561d8879c259"
1514 | dependencies:
1515 | domelementtype "1"
1516 |
1517 | domutils@1.5.1, domutils@^1.5.1:
1518 | version "1.5.1"
1519 | resolved "https://registry.yarnpkg.com/domutils/-/domutils-1.5.1.tgz#dcd8488a26f563d61079e48c9f7b7e32373682cf"
1520 | dependencies:
1521 | dom-serializer "0"
1522 | domelementtype "1"
1523 |
1524 | dot-prop@^4.1.0:
1525 | version "4.1.1"
1526 | resolved "https://registry.yarnpkg.com/dot-prop/-/dot-prop-4.1.1.tgz#a8493f0b7b5eeec82525b5c7587fa7de7ca859c1"
1527 | dependencies:
1528 | is-obj "^1.0.0"
1529 |
1530 | duplexer3@^0.1.4:
1531 | version "0.1.4"
1532 | resolved "https://registry.yarnpkg.com/duplexer3/-/duplexer3-0.1.4.tgz#ee01dd1cac0ed3cbc7fdbea37dc0a8f1ce002ce2"
1533 |
1534 | ecc-jsbn@~0.1.1:
1535 | version "0.1.1"
1536 | resolved "https://registry.yarnpkg.com/ecc-jsbn/-/ecc-jsbn-0.1.1.tgz#0fc73a9ed5f0d53c38193398523ef7e543777505"
1537 | dependencies:
1538 | jsbn "~0.1.0"
1539 |
1540 | empower-core@^0.6.1:
1541 | version "0.6.1"
1542 | resolved "https://registry.yarnpkg.com/empower-core/-/empower-core-0.6.1.tgz#6c187f502fcef7554d57933396aac655483772b1"
1543 | dependencies:
1544 | call-signature "0.0.2"
1545 | core-js "^2.0.0"
1546 |
1547 | encoding@^0.1.11:
1548 | version "0.1.12"
1549 | resolved "https://registry.yarnpkg.com/encoding/-/encoding-0.1.12.tgz#538b66f3ee62cd1ab51ec323829d1f9480c74beb"
1550 | dependencies:
1551 | iconv-lite "~0.4.13"
1552 |
1553 | entities@^1.1.1, entities@~1.1.1:
1554 | version "1.1.1"
1555 | resolved "https://registry.yarnpkg.com/entities/-/entities-1.1.1.tgz#6e5c2d0a5621b5dadaecef80b90edfb5cd7772f0"
1556 |
1557 | equal-length@^1.0.0:
1558 | version "1.0.1"
1559 | resolved "https://registry.yarnpkg.com/equal-length/-/equal-length-1.0.1.tgz#21ca112d48ab24b4e1e7ffc0e5339d31fdfc274c"
1560 |
1561 | error-ex@^1.2.0:
1562 | version "1.3.1"
1563 | resolved "https://registry.yarnpkg.com/error-ex/-/error-ex-1.3.1.tgz#f855a86ce61adc4e8621c3cda21e7a7612c3a8dc"
1564 | dependencies:
1565 | is-arrayish "^0.2.1"
1566 |
1567 | es-abstract@^1.7.0:
1568 | version "1.7.0"
1569 | resolved "https://registry.yarnpkg.com/es-abstract/-/es-abstract-1.7.0.tgz#dfade774e01bfcd97f96180298c449c8623fb94c"
1570 | dependencies:
1571 | es-to-primitive "^1.1.1"
1572 | function-bind "^1.1.0"
1573 | is-callable "^1.1.3"
1574 | is-regex "^1.0.3"
1575 |
1576 | es-to-primitive@^1.1.1:
1577 | version "1.1.1"
1578 | resolved "https://registry.yarnpkg.com/es-to-primitive/-/es-to-primitive-1.1.1.tgz#45355248a88979034b6792e19bb81f2b7975dd0d"
1579 | dependencies:
1580 | is-callable "^1.1.1"
1581 | is-date-object "^1.0.1"
1582 | is-symbol "^1.0.1"
1583 |
1584 | es5-ext@^0.10.14, es5-ext@^0.10.9, es5-ext@~0.10.14:
1585 | version "0.10.22"
1586 | resolved "https://registry.yarnpkg.com/es5-ext/-/es5-ext-0.10.22.tgz#1876c51f990769c112c781ea3ebe89f84fd39071"
1587 | dependencies:
1588 | es6-iterator "2"
1589 | es6-symbol "~3.1"
1590 |
1591 | es6-error@^4.0.1, es6-error@^4.0.2:
1592 | version "4.0.2"
1593 | resolved "https://registry.yarnpkg.com/es6-error/-/es6-error-4.0.2.tgz#eec5c726eacef51b7f6b73c20db6e1b13b069c98"
1594 |
1595 | es6-iterator@2, es6-iterator@^2.0.1, es6-iterator@~2.0.1:
1596 | version "2.0.1"
1597 | resolved "https://registry.yarnpkg.com/es6-iterator/-/es6-iterator-2.0.1.tgz#8e319c9f0453bf575d374940a655920e59ca5512"
1598 | dependencies:
1599 | d "1"
1600 | es5-ext "^0.10.14"
1601 | es6-symbol "^3.1"
1602 |
1603 | es6-map@^0.1.3, es6-map@^0.1.4:
1604 | version "0.1.5"
1605 | resolved "https://registry.yarnpkg.com/es6-map/-/es6-map-0.1.5.tgz#9136e0503dcc06a301690f0bb14ff4e364e949f0"
1606 | dependencies:
1607 | d "1"
1608 | es5-ext "~0.10.14"
1609 | es6-iterator "~2.0.1"
1610 | es6-set "~0.1.5"
1611 | es6-symbol "~3.1.1"
1612 | event-emitter "~0.3.5"
1613 |
1614 | es6-set@~0.1.5:
1615 | version "0.1.5"
1616 | resolved "https://registry.yarnpkg.com/es6-set/-/es6-set-0.1.5.tgz#d2b3ec5d4d800ced818db538d28974db0a73ccb1"
1617 | dependencies:
1618 | d "1"
1619 | es5-ext "~0.10.14"
1620 | es6-iterator "~2.0.1"
1621 | es6-symbol "3.1.1"
1622 | event-emitter "~0.3.5"
1623 |
1624 | es6-symbol@3.1.1, es6-symbol@^3.1, es6-symbol@^3.1.1, es6-symbol@~3.1, es6-symbol@~3.1.1:
1625 | version "3.1.1"
1626 | resolved "https://registry.yarnpkg.com/es6-symbol/-/es6-symbol-3.1.1.tgz#bf00ef4fdab6ba1b46ecb7b629b4c7ed5715cc77"
1627 | dependencies:
1628 | d "1"
1629 | es5-ext "~0.10.14"
1630 |
1631 | es6-weak-map@^2.0.1:
1632 | version "2.0.2"
1633 | resolved "https://registry.yarnpkg.com/es6-weak-map/-/es6-weak-map-2.0.2.tgz#5e3ab32251ffd1538a1f8e5ffa1357772f92d96f"
1634 | dependencies:
1635 | d "1"
1636 | es5-ext "^0.10.14"
1637 | es6-iterator "^2.0.1"
1638 | es6-symbol "^3.1.1"
1639 |
1640 | escape-string-regexp@^1.0.2, escape-string-regexp@^1.0.4, escape-string-regexp@^1.0.5:
1641 | version "1.0.5"
1642 | resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4"
1643 |
1644 | escope@^3.6.0:
1645 | version "3.6.0"
1646 | resolved "https://registry.yarnpkg.com/escope/-/escope-3.6.0.tgz#e01975e812781a163a6dadfdd80398dc64c889c3"
1647 | dependencies:
1648 | es6-map "^0.1.3"
1649 | es6-weak-map "^2.0.1"
1650 | esrecurse "^4.1.0"
1651 | estraverse "^4.1.1"
1652 |
1653 | eslint-config-gitbook@1.4.0:
1654 | version "1.4.0"
1655 | resolved "https://registry.yarnpkg.com/eslint-config-gitbook/-/eslint-config-gitbook-1.4.0.tgz#a708e247cd05227835017f199bd70af4ba960c14"
1656 | dependencies:
1657 | eslint-plugin-react "^6.3.0"
1658 |
1659 | eslint-plugin-flowtype@^2.34.0:
1660 | version "2.34.0"
1661 | resolved "https://registry.yarnpkg.com/eslint-plugin-flowtype/-/eslint-plugin-flowtype-2.34.0.tgz#b9875f314652e5081623c9d2b18a346bbb759c09"
1662 | dependencies:
1663 | lodash "^4.15.0"
1664 |
1665 | eslint-plugin-react@^6.3.0:
1666 | version "6.10.3"
1667 | resolved "https://registry.yarnpkg.com/eslint-plugin-react/-/eslint-plugin-react-6.10.3.tgz#c5435beb06774e12c7db2f6abaddcbf900cd3f78"
1668 | dependencies:
1669 | array.prototype.find "^2.0.1"
1670 | doctrine "^1.2.2"
1671 | has "^1.0.1"
1672 | jsx-ast-utils "^1.3.4"
1673 | object.assign "^4.0.4"
1674 |
1675 | eslint@^3.1.1:
1676 | version "3.19.0"
1677 | resolved "https://registry.yarnpkg.com/eslint/-/eslint-3.19.0.tgz#c8fc6201c7f40dd08941b87c085767386a679acc"
1678 | dependencies:
1679 | babel-code-frame "^6.16.0"
1680 | chalk "^1.1.3"
1681 | concat-stream "^1.5.2"
1682 | debug "^2.1.1"
1683 | doctrine "^2.0.0"
1684 | escope "^3.6.0"
1685 | espree "^3.4.0"
1686 | esquery "^1.0.0"
1687 | estraverse "^4.2.0"
1688 | esutils "^2.0.2"
1689 | file-entry-cache "^2.0.0"
1690 | glob "^7.0.3"
1691 | globals "^9.14.0"
1692 | ignore "^3.2.0"
1693 | imurmurhash "^0.1.4"
1694 | inquirer "^0.12.0"
1695 | is-my-json-valid "^2.10.0"
1696 | is-resolvable "^1.0.0"
1697 | js-yaml "^3.5.1"
1698 | json-stable-stringify "^1.0.0"
1699 | levn "^0.3.0"
1700 | lodash "^4.0.0"
1701 | mkdirp "^0.5.0"
1702 | natural-compare "^1.4.0"
1703 | optionator "^0.8.2"
1704 | path-is-inside "^1.0.1"
1705 | pluralize "^1.2.1"
1706 | progress "^1.1.8"
1707 | require-uncached "^1.0.2"
1708 | shelljs "^0.7.5"
1709 | strip-bom "^3.0.0"
1710 | strip-json-comments "~2.0.1"
1711 | table "^3.7.8"
1712 | text-table "~0.2.0"
1713 | user-home "^2.0.0"
1714 |
1715 | espower-location-detector@^1.0.0:
1716 | version "1.0.0"
1717 | resolved "https://registry.yarnpkg.com/espower-location-detector/-/espower-location-detector-1.0.0.tgz#a17b7ecc59d30e179e2bef73fb4137704cb331b5"
1718 | dependencies:
1719 | is-url "^1.2.1"
1720 | path-is-absolute "^1.0.0"
1721 | source-map "^0.5.0"
1722 | xtend "^4.0.0"
1723 |
1724 | espree@^3.4.0:
1725 | version "3.4.3"
1726 | resolved "https://registry.yarnpkg.com/espree/-/espree-3.4.3.tgz#2910b5ccd49ce893c2ffffaab4fd8b3a31b82374"
1727 | dependencies:
1728 | acorn "^5.0.1"
1729 | acorn-jsx "^3.0.0"
1730 |
1731 | esprima@^3.1.1:
1732 | version "3.1.3"
1733 | resolved "https://registry.yarnpkg.com/esprima/-/esprima-3.1.3.tgz#fdca51cee6133895e3c88d535ce49dbff62a4633"
1734 |
1735 | espurify@^1.6.0:
1736 | version "1.7.0"
1737 | resolved "https://registry.yarnpkg.com/espurify/-/espurify-1.7.0.tgz#1c5cf6cbccc32e6f639380bd4f991fab9ba9d226"
1738 | dependencies:
1739 | core-js "^2.0.0"
1740 |
1741 | esquery@^1.0.0:
1742 | version "1.0.0"
1743 | resolved "https://registry.yarnpkg.com/esquery/-/esquery-1.0.0.tgz#cfba8b57d7fba93f17298a8a006a04cda13d80fa"
1744 | dependencies:
1745 | estraverse "^4.0.0"
1746 |
1747 | esrecurse@^4.1.0:
1748 | version "4.1.0"
1749 | resolved "https://registry.yarnpkg.com/esrecurse/-/esrecurse-4.1.0.tgz#4713b6536adf7f2ac4f327d559e7756bff648220"
1750 | dependencies:
1751 | estraverse "~4.1.0"
1752 | object-assign "^4.0.1"
1753 |
1754 | esrever@^0.2.0:
1755 | version "0.2.0"
1756 | resolved "https://registry.yarnpkg.com/esrever/-/esrever-0.2.0.tgz#96e9d28f4f1b1a76784cd5d490eaae010e7407b8"
1757 |
1758 | estraverse@^4.0.0, estraverse@^4.1.1, estraverse@^4.2.0:
1759 | version "4.2.0"
1760 | resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-4.2.0.tgz#0dee3fed31fcd469618ce7342099fc1afa0bdb13"
1761 |
1762 | estraverse@~4.1.0:
1763 | version "4.1.1"
1764 | resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-4.1.1.tgz#f6caca728933a850ef90661d0e17982ba47111a2"
1765 |
1766 | esutils@^2.0.0, esutils@^2.0.2:
1767 | version "2.0.2"
1768 | resolved "https://registry.yarnpkg.com/esutils/-/esutils-2.0.2.tgz#0abf4f1caa5bcb1f7a9d8acc6dea4faaa04bac9b"
1769 |
1770 | event-emitter@~0.3.5:
1771 | version "0.3.5"
1772 | resolved "https://registry.yarnpkg.com/event-emitter/-/event-emitter-0.3.5.tgz#df8c69eef1647923c7157b9ce83840610b02cc39"
1773 | dependencies:
1774 | d "1"
1775 | es5-ext "~0.10.14"
1776 |
1777 | execa@^0.4.0:
1778 | version "0.4.0"
1779 | resolved "https://registry.yarnpkg.com/execa/-/execa-0.4.0.tgz#4eb6467a36a095fabb2970ff9d5e3fb7bce6ebc3"
1780 | dependencies:
1781 | cross-spawn-async "^2.1.1"
1782 | is-stream "^1.1.0"
1783 | npm-run-path "^1.0.0"
1784 | object-assign "^4.0.1"
1785 | path-key "^1.0.0"
1786 | strip-eof "^1.0.0"
1787 |
1788 | execa@^0.5.0:
1789 | version "0.5.1"
1790 | resolved "https://registry.yarnpkg.com/execa/-/execa-0.5.1.tgz#de3fb85cb8d6e91c85bcbceb164581785cb57b36"
1791 | dependencies:
1792 | cross-spawn "^4.0.0"
1793 | get-stream "^2.2.0"
1794 | is-stream "^1.1.0"
1795 | npm-run-path "^2.0.0"
1796 | p-finally "^1.0.0"
1797 | signal-exit "^3.0.0"
1798 | strip-eof "^1.0.0"
1799 |
1800 | exit-hook@^1.0.0:
1801 | version "1.1.1"
1802 | resolved "https://registry.yarnpkg.com/exit-hook/-/exit-hook-1.1.1.tgz#f05ca233b48c05d54fff07765df8507e95c02ff8"
1803 |
1804 | expand-brackets@^0.1.4:
1805 | version "0.1.5"
1806 | resolved "https://registry.yarnpkg.com/expand-brackets/-/expand-brackets-0.1.5.tgz#df07284e342a807cd733ac5af72411e581d1177b"
1807 | dependencies:
1808 | is-posix-bracket "^0.1.0"
1809 |
1810 | expand-range@^1.8.1:
1811 | version "1.8.2"
1812 | resolved "https://registry.yarnpkg.com/expand-range/-/expand-range-1.8.2.tgz#a299effd335fe2721ebae8e257ec79644fc85337"
1813 | dependencies:
1814 | fill-range "^2.1.0"
1815 |
1816 | extend@~3.0.0:
1817 | version "3.0.1"
1818 | resolved "https://registry.yarnpkg.com/extend/-/extend-3.0.1.tgz#a755ea7bc1adfcc5a31ce7e762dbaadc5e636444"
1819 |
1820 | extglob@^0.3.1:
1821 | version "0.3.2"
1822 | resolved "https://registry.yarnpkg.com/extglob/-/extglob-0.3.2.tgz#2e18ff3d2f49ab2765cec9023f011daa8d8349a1"
1823 | dependencies:
1824 | is-extglob "^1.0.0"
1825 |
1826 | extsprintf@1.0.2:
1827 | version "1.0.2"
1828 | resolved "https://registry.yarnpkg.com/extsprintf/-/extsprintf-1.0.2.tgz#e1080e0658e300b06294990cc70e1502235fd550"
1829 |
1830 | fast-levenshtein@~2.0.4:
1831 | version "2.0.6"
1832 | resolved "https://registry.yarnpkg.com/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz#3d8a5c66883a16a30ca8643e851f19baa7797917"
1833 |
1834 | fbjs@^0.8.9:
1835 | version "0.8.12"
1836 | resolved "https://registry.yarnpkg.com/fbjs/-/fbjs-0.8.12.tgz#10b5d92f76d45575fd63a217d4ea02bea2f8ed04"
1837 | dependencies:
1838 | core-js "^1.0.0"
1839 | isomorphic-fetch "^2.1.1"
1840 | loose-envify "^1.0.0"
1841 | object-assign "^4.1.0"
1842 | promise "^7.1.1"
1843 | setimmediate "^1.0.5"
1844 | ua-parser-js "^0.7.9"
1845 |
1846 | figures@^1.3.5:
1847 | version "1.7.0"
1848 | resolved "https://registry.yarnpkg.com/figures/-/figures-1.7.0.tgz#cbe1e3affcf1cd44b80cadfed28dc793a9701d2e"
1849 | dependencies:
1850 | escape-string-regexp "^1.0.5"
1851 | object-assign "^4.1.0"
1852 |
1853 | figures@^2.0.0:
1854 | version "2.0.0"
1855 | resolved "https://registry.yarnpkg.com/figures/-/figures-2.0.0.tgz#3ab1a2d2a62c8bfb431a0c94cb797a2fce27c962"
1856 | dependencies:
1857 | escape-string-regexp "^1.0.5"
1858 |
1859 | file-entry-cache@^2.0.0:
1860 | version "2.0.0"
1861 | resolved "https://registry.yarnpkg.com/file-entry-cache/-/file-entry-cache-2.0.0.tgz#c392990c3e684783d838b8c84a45d8a048458361"
1862 | dependencies:
1863 | flat-cache "^1.2.1"
1864 | object-assign "^4.0.1"
1865 |
1866 | filename-regex@^2.0.0:
1867 | version "2.0.1"
1868 | resolved "https://registry.yarnpkg.com/filename-regex/-/filename-regex-2.0.1.tgz#c1c4b9bee3e09725ddb106b75c1e301fe2f18b26"
1869 |
1870 | fill-range@^2.1.0:
1871 | version "2.2.3"
1872 | resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-2.2.3.tgz#50b77dfd7e469bc7492470963699fe7a8485a723"
1873 | dependencies:
1874 | is-number "^2.1.0"
1875 | isobject "^2.0.0"
1876 | randomatic "^1.1.3"
1877 | repeat-element "^1.1.2"
1878 | repeat-string "^1.5.2"
1879 |
1880 | find-cache-dir@^0.1.1:
1881 | version "0.1.1"
1882 | resolved "https://registry.yarnpkg.com/find-cache-dir/-/find-cache-dir-0.1.1.tgz#c8defae57c8a52a8a784f9e31c57c742e993a0b9"
1883 | dependencies:
1884 | commondir "^1.0.1"
1885 | mkdirp "^0.5.1"
1886 | pkg-dir "^1.0.0"
1887 |
1888 | find-up@^1.0.0:
1889 | version "1.1.2"
1890 | resolved "https://registry.yarnpkg.com/find-up/-/find-up-1.1.2.tgz#6b2e9822b1a2ce0a60ab64d610eccad53cb24d0f"
1891 | dependencies:
1892 | path-exists "^2.0.0"
1893 | pinkie-promise "^2.0.0"
1894 |
1895 | find-up@^2.0.0:
1896 | version "2.1.0"
1897 | resolved "https://registry.yarnpkg.com/find-up/-/find-up-2.1.0.tgz#45d1b7e506c717ddd482775a2b77920a3c0c57a7"
1898 | dependencies:
1899 | locate-path "^2.0.0"
1900 |
1901 | flat-cache@^1.2.1:
1902 | version "1.2.2"
1903 | resolved "https://registry.yarnpkg.com/flat-cache/-/flat-cache-1.2.2.tgz#fa86714e72c21db88601761ecf2f555d1abc6b96"
1904 | dependencies:
1905 | circular-json "^0.3.1"
1906 | del "^2.0.2"
1907 | graceful-fs "^4.1.2"
1908 | write "^0.2.1"
1909 |
1910 | flow-bin@^0.47.0:
1911 | version "0.47.0"
1912 | resolved "https://registry.yarnpkg.com/flow-bin/-/flow-bin-0.47.0.tgz#a2a08ab3e0d1f1cb57d17e27b30b118b62fda367"
1913 |
1914 | fn-name@^2.0.0:
1915 | version "2.0.1"
1916 | resolved "https://registry.yarnpkg.com/fn-name/-/fn-name-2.0.1.tgz#5214d7537a4d06a4a301c0cc262feb84188002e7"
1917 |
1918 | for-in@^1.0.1:
1919 | version "1.0.2"
1920 | resolved "https://registry.yarnpkg.com/for-in/-/for-in-1.0.2.tgz#81068d295a8142ec0ac726c6e2200c30fb6d5e80"
1921 |
1922 | for-own@^0.1.4:
1923 | version "0.1.5"
1924 | resolved "https://registry.yarnpkg.com/for-own/-/for-own-0.1.5.tgz#5265c681a4f294dabbf17c9509b6763aa84510ce"
1925 | dependencies:
1926 | for-in "^1.0.1"
1927 |
1928 | foreach@^2.0.5:
1929 | version "2.0.5"
1930 | resolved "https://registry.yarnpkg.com/foreach/-/foreach-2.0.5.tgz#0bee005018aeb260d0a3af3ae658dd0136ec1b99"
1931 |
1932 | forever-agent@~0.6.1:
1933 | version "0.6.1"
1934 | resolved "https://registry.yarnpkg.com/forever-agent/-/forever-agent-0.6.1.tgz#fbc71f0c41adeb37f96c577ad1ed42d8fdacca91"
1935 |
1936 | form-data@~2.1.1:
1937 | version "2.1.4"
1938 | resolved "https://registry.yarnpkg.com/form-data/-/form-data-2.1.4.tgz#33c183acf193276ecaa98143a69e94bfee1750d1"
1939 | dependencies:
1940 | asynckit "^0.4.0"
1941 | combined-stream "^1.0.5"
1942 | mime-types "^2.1.12"
1943 |
1944 | fs-readdir-recursive@^1.0.0:
1945 | version "1.0.0"
1946 | resolved "https://registry.yarnpkg.com/fs-readdir-recursive/-/fs-readdir-recursive-1.0.0.tgz#8cd1745c8b4f8a29c8caec392476921ba195f560"
1947 |
1948 | fs.realpath@^1.0.0:
1949 | version "1.0.0"
1950 | resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f"
1951 |
1952 | fsevents@^1.0.0:
1953 | version "1.1.1"
1954 | resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-1.1.1.tgz#f19fd28f43eeaf761680e519a203c4d0b3d31aff"
1955 | dependencies:
1956 | nan "^2.3.0"
1957 | node-pre-gyp "^0.6.29"
1958 |
1959 | fstream-ignore@^1.0.5:
1960 | version "1.0.5"
1961 | resolved "https://registry.yarnpkg.com/fstream-ignore/-/fstream-ignore-1.0.5.tgz#9c31dae34767018fe1d249b24dada67d092da105"
1962 | dependencies:
1963 | fstream "^1.0.0"
1964 | inherits "2"
1965 | minimatch "^3.0.0"
1966 |
1967 | fstream@^1.0.0, fstream@^1.0.10, fstream@^1.0.2:
1968 | version "1.0.11"
1969 | resolved "https://registry.yarnpkg.com/fstream/-/fstream-1.0.11.tgz#5c1fb1f117477114f0632a0eb4b71b3cb0fd3171"
1970 | dependencies:
1971 | graceful-fs "^4.1.2"
1972 | inherits "~2.0.0"
1973 | mkdirp ">=0.5 0"
1974 | rimraf "2"
1975 |
1976 | function-bind@^1.0.2, function-bind@^1.1.0:
1977 | version "1.1.0"
1978 | resolved "https://registry.yarnpkg.com/function-bind/-/function-bind-1.1.0.tgz#16176714c801798e4e8f2cf7f7529467bb4a5771"
1979 |
1980 | gauge@~2.7.3:
1981 | version "2.7.4"
1982 | resolved "https://registry.yarnpkg.com/gauge/-/gauge-2.7.4.tgz#2c03405c7538c39d7eb37b317022e325fb018bf7"
1983 | dependencies:
1984 | aproba "^1.0.3"
1985 | console-control-strings "^1.0.0"
1986 | has-unicode "^2.0.0"
1987 | object-assign "^4.1.0"
1988 | signal-exit "^3.0.0"
1989 | string-width "^1.0.1"
1990 | strip-ansi "^3.0.1"
1991 | wide-align "^1.1.0"
1992 |
1993 | generate-function@^2.0.0:
1994 | version "2.0.0"
1995 | resolved "https://registry.yarnpkg.com/generate-function/-/generate-function-2.0.0.tgz#6858fe7c0969b7d4e9093337647ac79f60dfbe74"
1996 |
1997 | generate-object-property@^1.1.0:
1998 | version "1.2.0"
1999 | resolved "https://registry.yarnpkg.com/generate-object-property/-/generate-object-property-1.2.0.tgz#9c0e1c40308ce804f4783618b937fa88f99d50d0"
2000 | dependencies:
2001 | is-property "^1.0.0"
2002 |
2003 | get-document@1:
2004 | version "1.0.0"
2005 | resolved "https://registry.yarnpkg.com/get-document/-/get-document-1.0.0.tgz#4821bce66f1c24cb0331602be6cb6b12c4f01c4b"
2006 |
2007 | get-port@^3.0.0:
2008 | version "3.1.0"
2009 | resolved "https://registry.yarnpkg.com/get-port/-/get-port-3.1.0.tgz#ef01b18a84ca6486970ff99e54446141a73ffd3e"
2010 |
2011 | get-stdin@^4.0.1:
2012 | version "4.0.1"
2013 | resolved "https://registry.yarnpkg.com/get-stdin/-/get-stdin-4.0.1.tgz#b968c6b0a04384324902e8bf1a5df32579a450fe"
2014 |
2015 | get-stream@^2.2.0:
2016 | version "2.3.1"
2017 | resolved "https://registry.yarnpkg.com/get-stream/-/get-stream-2.3.1.tgz#5f38f93f346009666ee0150a054167f91bdd95de"
2018 | dependencies:
2019 | object-assign "^4.0.1"
2020 | pinkie-promise "^2.0.0"
2021 |
2022 | get-stream@^3.0.0:
2023 | version "3.0.0"
2024 | resolved "https://registry.yarnpkg.com/get-stream/-/get-stream-3.0.0.tgz#8e943d1358dc37555054ecbe2edb05aa174ede14"
2025 |
2026 | get-window@^1.1.1:
2027 | version "1.1.1"
2028 | resolved "https://registry.yarnpkg.com/get-window/-/get-window-1.1.1.tgz#0750f8970c88a54ac1294deb97add9568b3db594"
2029 | dependencies:
2030 | get-document "1"
2031 |
2032 | getpass@^0.1.1:
2033 | version "0.1.7"
2034 | resolved "https://registry.yarnpkg.com/getpass/-/getpass-0.1.7.tgz#5eff8e3e684d569ae4cb2b1282604e8ba62149fa"
2035 | dependencies:
2036 | assert-plus "^1.0.0"
2037 |
2038 | glob-base@^0.3.0:
2039 | version "0.3.0"
2040 | resolved "https://registry.yarnpkg.com/glob-base/-/glob-base-0.3.0.tgz#dbb164f6221b1c0b1ccf82aea328b497df0ea3c4"
2041 | dependencies:
2042 | glob-parent "^2.0.0"
2043 | is-glob "^2.0.0"
2044 |
2045 | glob-parent@^2.0.0:
2046 | version "2.0.0"
2047 | resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-2.0.0.tgz#81383d72db054fcccf5336daa902f182f6edbb28"
2048 | dependencies:
2049 | is-glob "^2.0.0"
2050 |
2051 | glob@^7.0.0, glob@^7.0.3, glob@^7.0.5:
2052 | version "7.1.2"
2053 | resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.2.tgz#c19c9df9a028702d678612384a6552404c636d15"
2054 | dependencies:
2055 | fs.realpath "^1.0.0"
2056 | inflight "^1.0.4"
2057 | inherits "2"
2058 | minimatch "^3.0.4"
2059 | once "^1.3.0"
2060 | path-is-absolute "^1.0.0"
2061 |
2062 | globals@^9.0.0, globals@^9.14.0:
2063 | version "9.17.0"
2064 | resolved "https://registry.yarnpkg.com/globals/-/globals-9.17.0.tgz#0c0ca696d9b9bb694d2e5470bd37777caad50286"
2065 |
2066 | globby@^5.0.0:
2067 | version "5.0.0"
2068 | resolved "https://registry.yarnpkg.com/globby/-/globby-5.0.0.tgz#ebd84667ca0dbb330b99bcfc68eac2bc54370e0d"
2069 | dependencies:
2070 | array-union "^1.0.1"
2071 | arrify "^1.0.0"
2072 | glob "^7.0.3"
2073 | object-assign "^4.0.1"
2074 | pify "^2.0.0"
2075 | pinkie-promise "^2.0.0"
2076 |
2077 | globby@^6.0.0:
2078 | version "6.1.0"
2079 | resolved "https://registry.yarnpkg.com/globby/-/globby-6.1.0.tgz#f5a6d70e8395e21c858fb0489d64df02424d506c"
2080 | dependencies:
2081 | array-union "^1.0.1"
2082 | glob "^7.0.3"
2083 | object-assign "^4.0.1"
2084 | pify "^2.0.0"
2085 | pinkie-promise "^2.0.0"
2086 |
2087 | got@^6.7.1:
2088 | version "6.7.1"
2089 | resolved "https://registry.yarnpkg.com/got/-/got-6.7.1.tgz#240cd05785a9a18e561dc1b44b41c763ef1e8db0"
2090 | dependencies:
2091 | create-error-class "^3.0.0"
2092 | duplexer3 "^0.1.4"
2093 | get-stream "^3.0.0"
2094 | is-redirect "^1.0.0"
2095 | is-retry-allowed "^1.0.0"
2096 | is-stream "^1.0.0"
2097 | lowercase-keys "^1.0.0"
2098 | safe-buffer "^5.0.1"
2099 | timed-out "^4.0.0"
2100 | unzip-response "^2.0.1"
2101 | url-parse-lax "^1.0.0"
2102 |
2103 | graceful-fs@^4.1.11, graceful-fs@^4.1.2, graceful-fs@^4.1.4, graceful-fs@^4.1.6:
2104 | version "4.1.11"
2105 | resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.1.11.tgz#0e8bdfe4d1ddb8854d64e04ea7c00e2a026e5658"
2106 |
2107 | "graceful-readlink@>= 1.0.0":
2108 | version "1.0.1"
2109 | resolved "https://registry.yarnpkg.com/graceful-readlink/-/graceful-readlink-1.0.1.tgz#4cafad76bc62f02fa039b2f94e9a3dd3a391a725"
2110 |
2111 | har-schema@^1.0.5:
2112 | version "1.0.5"
2113 | resolved "https://registry.yarnpkg.com/har-schema/-/har-schema-1.0.5.tgz#d263135f43307c02c602afc8fe95970c0151369e"
2114 |
2115 | har-validator@~4.2.1:
2116 | version "4.2.1"
2117 | resolved "https://registry.yarnpkg.com/har-validator/-/har-validator-4.2.1.tgz#33481d0f1bbff600dd203d75812a6a5fba002e2a"
2118 | dependencies:
2119 | ajv "^4.9.1"
2120 | har-schema "^1.0.5"
2121 |
2122 | has-ansi@^2.0.0:
2123 | version "2.0.0"
2124 | resolved "https://registry.yarnpkg.com/has-ansi/-/has-ansi-2.0.0.tgz#34f5049ce1ecdf2b0649af3ef24e45ed35416d91"
2125 | dependencies:
2126 | ansi-regex "^2.0.0"
2127 |
2128 | has-color@~0.1.0:
2129 | version "0.1.7"
2130 | resolved "https://registry.yarnpkg.com/has-color/-/has-color-0.1.7.tgz#67144a5260c34fc3cca677d041daf52fe7b78b2f"
2131 |
2132 | has-flag@^1.0.0:
2133 | version "1.0.0"
2134 | resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-1.0.0.tgz#9d9e793165ce017a00f00418c43f942a7b1d11fa"
2135 |
2136 | has-flag@^2.0.0:
2137 | version "2.0.0"
2138 | resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-2.0.0.tgz#e8207af1cc7b30d446cc70b734b5e8be18f88d51"
2139 |
2140 | has-unicode@^2.0.0:
2141 | version "2.0.1"
2142 | resolved "https://registry.yarnpkg.com/has-unicode/-/has-unicode-2.0.1.tgz#e0e6fe6a28cf51138855e086d1691e771de2a8b9"
2143 |
2144 | has-yarn@^1.0.0:
2145 | version "1.0.0"
2146 | resolved "https://registry.yarnpkg.com/has-yarn/-/has-yarn-1.0.0.tgz#89e25db604b725c8f5976fff0addc921b828a5a7"
2147 |
2148 | has@^1.0.1:
2149 | version "1.0.1"
2150 | resolved "https://registry.yarnpkg.com/has/-/has-1.0.1.tgz#8461733f538b0837c9361e39a9ab9e9704dc2f28"
2151 | dependencies:
2152 | function-bind "^1.0.2"
2153 |
2154 | hawk@~3.1.3:
2155 | version "3.1.3"
2156 | resolved "https://registry.yarnpkg.com/hawk/-/hawk-3.1.3.tgz#078444bd7c1640b0fe540d2c9b73d59678e8e1c4"
2157 | dependencies:
2158 | boom "2.x.x"
2159 | cryptiles "2.x.x"
2160 | hoek "2.x.x"
2161 | sntp "1.x.x"
2162 |
2163 | hoek@2.x.x:
2164 | version "2.16.3"
2165 | resolved "https://registry.yarnpkg.com/hoek/-/hoek-2.16.3.tgz#20bb7403d3cea398e91dc4710a8ff1b8274a25ed"
2166 |
2167 | home-or-tmp@^2.0.0:
2168 | version "2.0.0"
2169 | resolved "https://registry.yarnpkg.com/home-or-tmp/-/home-or-tmp-2.0.0.tgz#e36c3f2d2cae7d746a857e38d18d5f32a7882db8"
2170 | dependencies:
2171 | os-homedir "^1.0.0"
2172 | os-tmpdir "^1.0.1"
2173 |
2174 | hosted-git-info@^2.1.4:
2175 | version "2.4.2"
2176 | resolved "https://registry.yarnpkg.com/hosted-git-info/-/hosted-git-info-2.4.2.tgz#0076b9f46a270506ddbaaea56496897460612a67"
2177 |
2178 | htmlparser2@^3.9.1:
2179 | version "3.9.2"
2180 | resolved "https://registry.yarnpkg.com/htmlparser2/-/htmlparser2-3.9.2.tgz#1bdf87acca0f3f9e53fa4fcceb0f4b4cbb00b338"
2181 | dependencies:
2182 | domelementtype "^1.3.0"
2183 | domhandler "^2.3.0"
2184 | domutils "^1.5.1"
2185 | entities "^1.1.1"
2186 | inherits "^2.0.1"
2187 | readable-stream "^2.0.2"
2188 |
2189 | http-signature@~1.1.0:
2190 | version "1.1.1"
2191 | resolved "https://registry.yarnpkg.com/http-signature/-/http-signature-1.1.1.tgz#df72e267066cd0ac67fb76adf8e134a8fbcf91bf"
2192 | dependencies:
2193 | assert-plus "^0.2.0"
2194 | jsprim "^1.2.2"
2195 | sshpk "^1.7.0"
2196 |
2197 | hullabaloo-config-manager@^1.0.0:
2198 | version "1.0.1"
2199 | resolved "https://registry.yarnpkg.com/hullabaloo-config-manager/-/hullabaloo-config-manager-1.0.1.tgz#c72be7ba249a67c99b6ba3eb1f55837fa01acd8f"
2200 | dependencies:
2201 | dot-prop "^4.1.0"
2202 | es6-error "^4.0.2"
2203 | graceful-fs "^4.1.11"
2204 | indent-string "^3.1.0"
2205 | json5 "^0.5.1"
2206 | lodash.clonedeep "^4.5.0"
2207 | lodash.clonedeepwith "^4.5.0"
2208 | lodash.isequal "^4.5.0"
2209 | lodash.merge "^4.6.0"
2210 | md5-hex "^2.0.0"
2211 | package-hash "^2.0.0"
2212 | pkg-dir "^1.0.0"
2213 | resolve-from "^2.0.0"
2214 |
2215 | iconv-lite@~0.4.13:
2216 | version "0.4.17"
2217 | resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.4.17.tgz#4fdaa3b38acbc2c031b045d0edcdfe1ecab18c8d"
2218 |
2219 | ignore-by-default@^1.0.0:
2220 | version "1.0.1"
2221 | resolved "https://registry.yarnpkg.com/ignore-by-default/-/ignore-by-default-1.0.1.tgz#48ca6d72f6c6a3af00a9ad4ae6876be3889e2b09"
2222 |
2223 | ignore@^3.2.0:
2224 | version "3.3.3"
2225 | resolved "https://registry.yarnpkg.com/ignore/-/ignore-3.3.3.tgz#432352e57accd87ab3110e82d3fea0e47812156d"
2226 |
2227 | immutable@^3.8.1:
2228 | version "3.8.1"
2229 | resolved "https://registry.yarnpkg.com/immutable/-/immutable-3.8.1.tgz#200807f11ab0f72710ea485542de088075f68cd2"
2230 |
2231 | imurmurhash@^0.1.4:
2232 | version "0.1.4"
2233 | resolved "https://registry.yarnpkg.com/imurmurhash/-/imurmurhash-0.1.4.tgz#9218b9b2b928a238b13dc4fb6b6d576f231453ea"
2234 |
2235 | indent-string@^2.1.0:
2236 | version "2.1.0"
2237 | resolved "https://registry.yarnpkg.com/indent-string/-/indent-string-2.1.0.tgz#8e2d48348742121b4a8218b7a137e9a52049dc80"
2238 | dependencies:
2239 | repeating "^2.0.0"
2240 |
2241 | indent-string@^3.0.0, indent-string@^3.1.0:
2242 | version "3.1.0"
2243 | resolved "https://registry.yarnpkg.com/indent-string/-/indent-string-3.1.0.tgz#08ff4334603388399b329e6b9538dc7a3cf5de7d"
2244 |
2245 | inflight@^1.0.4:
2246 | version "1.0.6"
2247 | resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9"
2248 | dependencies:
2249 | once "^1.3.0"
2250 | wrappy "1"
2251 |
2252 | inherits@2, inherits@^2.0.1, inherits@^2.0.3, inherits@~2.0.0, inherits@~2.0.1:
2253 | version "2.0.3"
2254 | resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.3.tgz#633c2c83e3da42a502f52466022480f4208261de"
2255 |
2256 | ini@~1.3.0:
2257 | version "1.3.4"
2258 | resolved "https://registry.yarnpkg.com/ini/-/ini-1.3.4.tgz#0537cb79daf59b59a1a517dff706c86ec039162e"
2259 |
2260 | inquirer@^0.12.0:
2261 | version "0.12.0"
2262 | resolved "https://registry.yarnpkg.com/inquirer/-/inquirer-0.12.0.tgz#1ef2bfd63504df0bc75785fff8c2c41df12f077e"
2263 | dependencies:
2264 | ansi-escapes "^1.1.0"
2265 | ansi-regex "^2.0.0"
2266 | chalk "^1.0.0"
2267 | cli-cursor "^1.0.1"
2268 | cli-width "^2.0.0"
2269 | figures "^1.3.5"
2270 | lodash "^4.3.0"
2271 | readline2 "^1.0.1"
2272 | run-async "^0.1.0"
2273 | rx-lite "^3.1.2"
2274 | string-width "^1.0.1"
2275 | strip-ansi "^3.0.0"
2276 | through "^2.3.6"
2277 |
2278 | interpret@^1.0.0:
2279 | version "1.0.3"
2280 | resolved "https://registry.yarnpkg.com/interpret/-/interpret-1.0.3.tgz#cbc35c62eeee73f19ab7b10a801511401afc0f90"
2281 |
2282 | invariant@^2.2.0:
2283 | version "2.2.2"
2284 | resolved "https://registry.yarnpkg.com/invariant/-/invariant-2.2.2.tgz#9e1f56ac0acdb6bf303306f338be3b204ae60360"
2285 | dependencies:
2286 | loose-envify "^1.0.0"
2287 |
2288 | irregular-plurals@^1.0.0:
2289 | version "1.2.0"
2290 | resolved "https://registry.yarnpkg.com/irregular-plurals/-/irregular-plurals-1.2.0.tgz#38f299834ba8c00c30be9c554e137269752ff3ac"
2291 |
2292 | is-arrayish@^0.2.1:
2293 | version "0.2.1"
2294 | resolved "https://registry.yarnpkg.com/is-arrayish/-/is-arrayish-0.2.1.tgz#77c99840527aa8ecb1a8ba697b80645a7a926a9d"
2295 |
2296 | is-binary-path@^1.0.0:
2297 | version "1.0.1"
2298 | resolved "https://registry.yarnpkg.com/is-binary-path/-/is-binary-path-1.0.1.tgz#75f16642b480f187a711c814161fd3a4a7655898"
2299 | dependencies:
2300 | binary-extensions "^1.0.0"
2301 |
2302 | is-buffer@^1.1.5:
2303 | version "1.1.5"
2304 | resolved "https://registry.yarnpkg.com/is-buffer/-/is-buffer-1.1.5.tgz#1f3b26ef613b214b88cbca23cc6c01d87961eecc"
2305 |
2306 | is-builtin-module@^1.0.0:
2307 | version "1.0.0"
2308 | resolved "https://registry.yarnpkg.com/is-builtin-module/-/is-builtin-module-1.0.0.tgz#540572d34f7ac3119f8f76c30cbc1b1e037affbe"
2309 | dependencies:
2310 | builtin-modules "^1.0.0"
2311 |
2312 | is-callable@^1.1.1, is-callable@^1.1.3:
2313 | version "1.1.3"
2314 | resolved "https://registry.yarnpkg.com/is-callable/-/is-callable-1.1.3.tgz#86eb75392805ddc33af71c92a0eedf74ee7604b2"
2315 |
2316 | is-ci@^1.0.7:
2317 | version "1.0.10"
2318 | resolved "https://registry.yarnpkg.com/is-ci/-/is-ci-1.0.10.tgz#f739336b2632365061a9d48270cd56ae3369318e"
2319 | dependencies:
2320 | ci-info "^1.0.0"
2321 |
2322 | is-date-object@^1.0.1:
2323 | version "1.0.1"
2324 | resolved "https://registry.yarnpkg.com/is-date-object/-/is-date-object-1.0.1.tgz#9aa20eb6aeebbff77fbd33e74ca01b33581d3a16"
2325 |
2326 | is-dotfile@^1.0.0:
2327 | version "1.0.3"
2328 | resolved "https://registry.yarnpkg.com/is-dotfile/-/is-dotfile-1.0.3.tgz#a6a2f32ffd2dfb04f5ca25ecd0f6b83cf798a1e1"
2329 |
2330 | is-empty@^1.0.0:
2331 | version "1.2.0"
2332 | resolved "https://registry.yarnpkg.com/is-empty/-/is-empty-1.2.0.tgz#de9bb5b278738a05a0b09a57e1fb4d4a341a9f6b"
2333 |
2334 | is-equal-shallow@^0.1.3:
2335 | version "0.1.3"
2336 | resolved "https://registry.yarnpkg.com/is-equal-shallow/-/is-equal-shallow-0.1.3.tgz#2238098fc221de0bcfa5d9eac4c45d638aa1c534"
2337 | dependencies:
2338 | is-primitive "^2.0.0"
2339 |
2340 | is-error@^2.2.0:
2341 | version "2.2.1"
2342 | resolved "https://registry.yarnpkg.com/is-error/-/is-error-2.2.1.tgz#684a96d84076577c98f4cdb40c6d26a5123bf19c"
2343 |
2344 | is-extendable@^0.1.1:
2345 | version "0.1.1"
2346 | resolved "https://registry.yarnpkg.com/is-extendable/-/is-extendable-0.1.1.tgz#62b110e289a471418e3ec36a617d472e301dfc89"
2347 |
2348 | is-extglob@^1.0.0:
2349 | version "1.0.0"
2350 | resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-1.0.0.tgz#ac468177c4943405a092fc8f29760c6ffc6206c0"
2351 |
2352 | is-finite@^1.0.0, is-finite@^1.0.1:
2353 | version "1.0.2"
2354 | resolved "https://registry.yarnpkg.com/is-finite/-/is-finite-1.0.2.tgz#cc6677695602be550ef11e8b4aa6305342b6d0aa"
2355 | dependencies:
2356 | number-is-nan "^1.0.0"
2357 |
2358 | is-fullwidth-code-point@^1.0.0:
2359 | version "1.0.0"
2360 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz#ef9e31386f031a7f0d643af82fde50c457ef00cb"
2361 | dependencies:
2362 | number-is-nan "^1.0.0"
2363 |
2364 | is-fullwidth-code-point@^2.0.0:
2365 | version "2.0.0"
2366 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz#a3b30a5c4f199183167aaab93beefae3ddfb654f"
2367 |
2368 | is-generator-fn@^1.0.0:
2369 | version "1.0.0"
2370 | resolved "https://registry.yarnpkg.com/is-generator-fn/-/is-generator-fn-1.0.0.tgz#969d49e1bb3329f6bb7f09089be26578b2ddd46a"
2371 |
2372 | is-glob@^2.0.0, is-glob@^2.0.1:
2373 | version "2.0.1"
2374 | resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-2.0.1.tgz#d096f926a3ded5600f3fdfd91198cb0888c2d863"
2375 | dependencies:
2376 | is-extglob "^1.0.0"
2377 |
2378 | is-in-browser@^1.1.3:
2379 | version "1.1.3"
2380 | resolved "https://registry.yarnpkg.com/is-in-browser/-/is-in-browser-1.1.3.tgz#56ff4db683a078c6082eb95dad7dc62e1d04f835"
2381 |
2382 | is-my-json-valid@^2.10.0:
2383 | version "2.16.0"
2384 | resolved "https://registry.yarnpkg.com/is-my-json-valid/-/is-my-json-valid-2.16.0.tgz#f079dd9bfdae65ee2038aae8acbc86ab109e3693"
2385 | dependencies:
2386 | generate-function "^2.0.0"
2387 | generate-object-property "^1.1.0"
2388 | jsonpointer "^4.0.0"
2389 | xtend "^4.0.0"
2390 |
2391 | is-npm@^1.0.0:
2392 | version "1.0.0"
2393 | resolved "https://registry.yarnpkg.com/is-npm/-/is-npm-1.0.0.tgz#f2fb63a65e4905b406c86072765a1a4dc793b9f4"
2394 |
2395 | is-number@^2.0.2, is-number@^2.1.0:
2396 | version "2.1.0"
2397 | resolved "https://registry.yarnpkg.com/is-number/-/is-number-2.1.0.tgz#01fcbbb393463a548f2f466cce16dece49db908f"
2398 | dependencies:
2399 | kind-of "^3.0.2"
2400 |
2401 | is-obj@^1.0.0:
2402 | version "1.0.1"
2403 | resolved "https://registry.yarnpkg.com/is-obj/-/is-obj-1.0.1.tgz#3e4729ac1f5fde025cd7d83a896dab9f4f67db0f"
2404 |
2405 | is-observable@^0.2.0:
2406 | version "0.2.0"
2407 | resolved "https://registry.yarnpkg.com/is-observable/-/is-observable-0.2.0.tgz#b361311d83c6e5d726cabf5e250b0237106f5ae2"
2408 | dependencies:
2409 | symbol-observable "^0.2.2"
2410 |
2411 | is-path-cwd@^1.0.0:
2412 | version "1.0.0"
2413 | resolved "https://registry.yarnpkg.com/is-path-cwd/-/is-path-cwd-1.0.0.tgz#d225ec23132e89edd38fda767472e62e65f1106d"
2414 |
2415 | is-path-in-cwd@^1.0.0:
2416 | version "1.0.0"
2417 | resolved "https://registry.yarnpkg.com/is-path-in-cwd/-/is-path-in-cwd-1.0.0.tgz#6477582b8214d602346094567003be8a9eac04dc"
2418 | dependencies:
2419 | is-path-inside "^1.0.0"
2420 |
2421 | is-path-inside@^1.0.0:
2422 | version "1.0.0"
2423 | resolved "https://registry.yarnpkg.com/is-path-inside/-/is-path-inside-1.0.0.tgz#fc06e5a1683fbda13de667aff717bbc10a48f37f"
2424 | dependencies:
2425 | path-is-inside "^1.0.1"
2426 |
2427 | is-plain-obj@^1.0.0:
2428 | version "1.1.0"
2429 | resolved "https://registry.yarnpkg.com/is-plain-obj/-/is-plain-obj-1.1.0.tgz#71a50c8429dfca773c92a390a4a03b39fcd51d3e"
2430 |
2431 | is-posix-bracket@^0.1.0:
2432 | version "0.1.1"
2433 | resolved "https://registry.yarnpkg.com/is-posix-bracket/-/is-posix-bracket-0.1.1.tgz#3334dc79774368e92f016e6fbc0a88f5cd6e6bc4"
2434 |
2435 | is-primitive@^2.0.0:
2436 | version "2.0.0"
2437 | resolved "https://registry.yarnpkg.com/is-primitive/-/is-primitive-2.0.0.tgz#207bab91638499c07b2adf240a41a87210034575"
2438 |
2439 | is-promise@^2.1.0:
2440 | version "2.1.0"
2441 | resolved "https://registry.yarnpkg.com/is-promise/-/is-promise-2.1.0.tgz#79a2a9ece7f096e80f36d2b2f3bc16c1ff4bf3fa"
2442 |
2443 | is-property@^1.0.0:
2444 | version "1.0.2"
2445 | resolved "https://registry.yarnpkg.com/is-property/-/is-property-1.0.2.tgz#57fe1c4e48474edd65b09911f26b1cd4095dda84"
2446 |
2447 | is-redirect@^1.0.0:
2448 | version "1.0.0"
2449 | resolved "https://registry.yarnpkg.com/is-redirect/-/is-redirect-1.0.0.tgz#1d03dded53bd8db0f30c26e4f95d36fc7c87dc24"
2450 |
2451 | is-regex@^1.0.3:
2452 | version "1.0.4"
2453 | resolved "https://registry.yarnpkg.com/is-regex/-/is-regex-1.0.4.tgz#5517489b547091b0930e095654ced25ee97e9491"
2454 | dependencies:
2455 | has "^1.0.1"
2456 |
2457 | is-resolvable@^1.0.0:
2458 | version "1.0.0"
2459 | resolved "https://registry.yarnpkg.com/is-resolvable/-/is-resolvable-1.0.0.tgz#8df57c61ea2e3c501408d100fb013cf8d6e0cc62"
2460 | dependencies:
2461 | tryit "^1.0.1"
2462 |
2463 | is-retry-allowed@^1.0.0:
2464 | version "1.1.0"
2465 | resolved "https://registry.yarnpkg.com/is-retry-allowed/-/is-retry-allowed-1.1.0.tgz#11a060568b67339444033d0125a61a20d564fb34"
2466 |
2467 | is-stream@^1.0.0, is-stream@^1.0.1, is-stream@^1.1.0:
2468 | version "1.1.0"
2469 | resolved "https://registry.yarnpkg.com/is-stream/-/is-stream-1.1.0.tgz#12d4a3dd4e68e0b79ceb8dbc84173ae80d91ca44"
2470 |
2471 | is-symbol@^1.0.1:
2472 | version "1.0.1"
2473 | resolved "https://registry.yarnpkg.com/is-symbol/-/is-symbol-1.0.1.tgz#3cc59f00025194b6ab2e38dbae6689256b660572"
2474 |
2475 | is-typedarray@~1.0.0:
2476 | version "1.0.0"
2477 | resolved "https://registry.yarnpkg.com/is-typedarray/-/is-typedarray-1.0.0.tgz#e479c80858df0c1b11ddda6940f96011fcda4a9a"
2478 |
2479 | is-url@^1.2.1:
2480 | version "1.2.2"
2481 | resolved "https://registry.yarnpkg.com/is-url/-/is-url-1.2.2.tgz#498905a593bf47cc2d9e7f738372bbf7696c7f26"
2482 |
2483 | is-utf8@^0.2.0, is-utf8@^0.2.1:
2484 | version "0.2.1"
2485 | resolved "https://registry.yarnpkg.com/is-utf8/-/is-utf8-0.2.1.tgz#4b0da1442104d1b336340e80797e865cf39f7d72"
2486 |
2487 | is-window@^1.0.2:
2488 | version "1.0.2"
2489 | resolved "https://registry.yarnpkg.com/is-window/-/is-window-1.0.2.tgz#2c896ca53db97de45d3c33133a65d8c9f563480d"
2490 |
2491 | isarray@1.0.0, isarray@^1.0.0, isarray@~1.0.0:
2492 | version "1.0.0"
2493 | resolved "https://registry.yarnpkg.com/isarray/-/isarray-1.0.0.tgz#bb935d48582cba168c06834957a54a3e07124f11"
2494 |
2495 | isexe@^2.0.0:
2496 | version "2.0.0"
2497 | resolved "https://registry.yarnpkg.com/isexe/-/isexe-2.0.0.tgz#e8fbf374dc556ff8947a10dcb0572d633f2cfa10"
2498 |
2499 | isobject@^2.0.0:
2500 | version "2.1.0"
2501 | resolved "https://registry.yarnpkg.com/isobject/-/isobject-2.1.0.tgz#f065561096a3f1da2ef46272f815c840d87e0c89"
2502 | dependencies:
2503 | isarray "1.0.0"
2504 |
2505 | isomorphic-fetch@^2.1.1:
2506 | version "2.2.1"
2507 | resolved "https://registry.yarnpkg.com/isomorphic-fetch/-/isomorphic-fetch-2.2.1.tgz#611ae1acf14f5e81f729507472819fe9733558a9"
2508 | dependencies:
2509 | node-fetch "^1.0.1"
2510 | whatwg-fetch ">=0.10.0"
2511 |
2512 | isstream@~0.1.2:
2513 | version "0.1.2"
2514 | resolved "https://registry.yarnpkg.com/isstream/-/isstream-0.1.2.tgz#47e63f7af55afa6f92e1500e690eb8b8529c099a"
2515 |
2516 | jest-diff@19.0.0, jest-diff@^19.0.0:
2517 | version "19.0.0"
2518 | resolved "https://registry.yarnpkg.com/jest-diff/-/jest-diff-19.0.0.tgz#d1563cfc56c8b60232988fbc05d4d16ed90f063c"
2519 | dependencies:
2520 | chalk "^1.1.3"
2521 | diff "^3.0.0"
2522 | jest-matcher-utils "^19.0.0"
2523 | pretty-format "^19.0.0"
2524 |
2525 | jest-file-exists@^19.0.0:
2526 | version "19.0.0"
2527 | resolved "https://registry.yarnpkg.com/jest-file-exists/-/jest-file-exists-19.0.0.tgz#cca2e587a11ec92e24cfeab3f8a94d657f3fceb8"
2528 |
2529 | jest-matcher-utils@^19.0.0:
2530 | version "19.0.0"
2531 | resolved "https://registry.yarnpkg.com/jest-matcher-utils/-/jest-matcher-utils-19.0.0.tgz#5ecd9b63565d2b001f61fbf7ec4c7f537964564d"
2532 | dependencies:
2533 | chalk "^1.1.3"
2534 | pretty-format "^19.0.0"
2535 |
2536 | jest-message-util@^19.0.0:
2537 | version "19.0.0"
2538 | resolved "https://registry.yarnpkg.com/jest-message-util/-/jest-message-util-19.0.0.tgz#721796b89c0e4d761606f9ba8cb828a3b6246416"
2539 | dependencies:
2540 | chalk "^1.1.1"
2541 | micromatch "^2.3.11"
2542 |
2543 | jest-mock@^19.0.0:
2544 | version "19.0.0"
2545 | resolved "https://registry.yarnpkg.com/jest-mock/-/jest-mock-19.0.0.tgz#67038641e9607ab2ce08ec4a8cb83aabbc899d01"
2546 |
2547 | jest-snapshot@19.0.2:
2548 | version "19.0.2"
2549 | resolved "https://registry.yarnpkg.com/jest-snapshot/-/jest-snapshot-19.0.2.tgz#9c1b216214f7187c38bfd5c70b1efab16b0ff50b"
2550 | dependencies:
2551 | chalk "^1.1.3"
2552 | jest-diff "^19.0.0"
2553 | jest-file-exists "^19.0.0"
2554 | jest-matcher-utils "^19.0.0"
2555 | jest-util "^19.0.2"
2556 | natural-compare "^1.4.0"
2557 | pretty-format "^19.0.0"
2558 |
2559 | jest-util@^19.0.2:
2560 | version "19.0.2"
2561 | resolved "https://registry.yarnpkg.com/jest-util/-/jest-util-19.0.2.tgz#e0a0232a2ab9e6b2b53668bdb3534c2b5977ed41"
2562 | dependencies:
2563 | chalk "^1.1.1"
2564 | graceful-fs "^4.1.6"
2565 | jest-file-exists "^19.0.0"
2566 | jest-message-util "^19.0.0"
2567 | jest-mock "^19.0.0"
2568 | jest-validate "^19.0.2"
2569 | leven "^2.0.0"
2570 | mkdirp "^0.5.1"
2571 |
2572 | jest-validate@^19.0.2:
2573 | version "19.0.2"
2574 | resolved "https://registry.yarnpkg.com/jest-validate/-/jest-validate-19.0.2.tgz#dc534df5f1278d5b63df32b14241d4dbf7244c0c"
2575 | dependencies:
2576 | chalk "^1.1.1"
2577 | jest-matcher-utils "^19.0.0"
2578 | leven "^2.0.0"
2579 | pretty-format "^19.0.0"
2580 |
2581 | jodid25519@^1.0.0:
2582 | version "1.0.2"
2583 | resolved "https://registry.yarnpkg.com/jodid25519/-/jodid25519-1.0.2.tgz#06d4912255093419477d425633606e0e90782967"
2584 | dependencies:
2585 | jsbn "~0.1.0"
2586 |
2587 | js-tokens@^3.0.0:
2588 | version "3.0.1"
2589 | resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-3.0.1.tgz#08e9f132484a2c45a30907e9dc4d5567b7f114d7"
2590 |
2591 | js-yaml@^3.5.1, js-yaml@^3.8.2:
2592 | version "3.8.4"
2593 | resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-3.8.4.tgz#520b4564f86573ba96662af85a8cafa7b4b5a6f6"
2594 | dependencies:
2595 | argparse "^1.0.7"
2596 | esprima "^3.1.1"
2597 |
2598 | jsbn@~0.1.0:
2599 | version "0.1.1"
2600 | resolved "https://registry.yarnpkg.com/jsbn/-/jsbn-0.1.1.tgz#a5e654c2e5a2deb5f201d96cefbca80c0ef2f513"
2601 |
2602 | jsesc@^1.3.0:
2603 | version "1.3.0"
2604 | resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-1.3.0.tgz#46c3fec8c1892b12b0833db9bc7622176dbab34b"
2605 |
2606 | jsesc@~0.5.0:
2607 | version "0.5.0"
2608 | resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-0.5.0.tgz#e7dee66e35d6fc16f710fe91d5cf69f70f08911d"
2609 |
2610 | json-schema@0.2.3:
2611 | version "0.2.3"
2612 | resolved "https://registry.yarnpkg.com/json-schema/-/json-schema-0.2.3.tgz#b480c892e59a2f05954ce727bd3f2a4e882f9e13"
2613 |
2614 | json-stable-stringify@^1.0.0, json-stable-stringify@^1.0.1:
2615 | version "1.0.1"
2616 | resolved "https://registry.yarnpkg.com/json-stable-stringify/-/json-stable-stringify-1.0.1.tgz#9a759d39c5f2ff503fd5300646ed445f88c4f9af"
2617 | dependencies:
2618 | jsonify "~0.0.0"
2619 |
2620 | json-stringify-safe@~5.0.1:
2621 | version "5.0.1"
2622 | resolved "https://registry.yarnpkg.com/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz#1296a2d58fd45f19a0f6ce01d65701e2c735b6eb"
2623 |
2624 | json5@^0.5.0, json5@^0.5.1:
2625 | version "0.5.1"
2626 | resolved "https://registry.yarnpkg.com/json5/-/json5-0.5.1.tgz#1eade7acc012034ad84e2396767ead9fa5495821"
2627 |
2628 | jsonify@~0.0.0:
2629 | version "0.0.0"
2630 | resolved "https://registry.yarnpkg.com/jsonify/-/jsonify-0.0.0.tgz#2c74b6ee41d93ca51b7b5aaee8f503631d252a73"
2631 |
2632 | jsonpointer@^4.0.0:
2633 | version "4.0.1"
2634 | resolved "https://registry.yarnpkg.com/jsonpointer/-/jsonpointer-4.0.1.tgz#4fd92cb34e0e9db3c89c8622ecf51f9b978c6cb9"
2635 |
2636 | jsprim@^1.2.2:
2637 | version "1.4.0"
2638 | resolved "https://registry.yarnpkg.com/jsprim/-/jsprim-1.4.0.tgz#a3b87e40298d8c380552d8cc7628a0bb95a22918"
2639 | dependencies:
2640 | assert-plus "1.0.0"
2641 | extsprintf "1.0.2"
2642 | json-schema "0.2.3"
2643 | verror "1.3.6"
2644 |
2645 | jsx-ast-utils@^1.3.4:
2646 | version "1.4.1"
2647 | resolved "https://registry.yarnpkg.com/jsx-ast-utils/-/jsx-ast-utils-1.4.1.tgz#3867213e8dd79bf1e8f2300c0cfc1efb182c0df1"
2648 |
2649 | keycode@^2.1.2:
2650 | version "2.1.9"
2651 | resolved "https://registry.yarnpkg.com/keycode/-/keycode-2.1.9.tgz#964a23c54e4889405b4861a5c9f0480d45141dfa"
2652 |
2653 | kind-of@^3.0.2:
2654 | version "3.2.2"
2655 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-3.2.2.tgz#31ea21a734bab9bbb0f32466d893aea51e4a3c64"
2656 | dependencies:
2657 | is-buffer "^1.1.5"
2658 |
2659 | last-line-stream@^1.0.0:
2660 | version "1.0.0"
2661 | resolved "https://registry.yarnpkg.com/last-line-stream/-/last-line-stream-1.0.0.tgz#d1b64d69f86ff24af2d04883a2ceee14520a5600"
2662 | dependencies:
2663 | through2 "^2.0.0"
2664 |
2665 | latest-version@^3.0.0:
2666 | version "3.1.0"
2667 | resolved "https://registry.yarnpkg.com/latest-version/-/latest-version-3.1.0.tgz#a205383fea322b33b5ae3b18abee0dc2f356ee15"
2668 | dependencies:
2669 | package-json "^4.0.0"
2670 |
2671 | lazy-req@^2.0.0:
2672 | version "2.0.0"
2673 | resolved "https://registry.yarnpkg.com/lazy-req/-/lazy-req-2.0.0.tgz#c9450a363ecdda2e6f0c70132ad4f37f8f06f2b4"
2674 |
2675 | leven@^2.0.0:
2676 | version "2.1.0"
2677 | resolved "https://registry.yarnpkg.com/leven/-/leven-2.1.0.tgz#c2e7a9f772094dee9d34202ae8acce4687875580"
2678 |
2679 | levn@^0.3.0, levn@~0.3.0:
2680 | version "0.3.0"
2681 | resolved "https://registry.yarnpkg.com/levn/-/levn-0.3.0.tgz#3b09924edf9f083c0490fdd4c0bc4421e04764ee"
2682 | dependencies:
2683 | prelude-ls "~1.1.2"
2684 | type-check "~0.3.2"
2685 |
2686 | load-json-file@^1.0.0:
2687 | version "1.1.0"
2688 | resolved "https://registry.yarnpkg.com/load-json-file/-/load-json-file-1.1.0.tgz#956905708d58b4bab4c2261b04f59f31c99374c0"
2689 | dependencies:
2690 | graceful-fs "^4.1.2"
2691 | parse-json "^2.2.0"
2692 | pify "^2.0.0"
2693 | pinkie-promise "^2.0.0"
2694 | strip-bom "^2.0.0"
2695 |
2696 | load-json-file@^2.0.0:
2697 | version "2.0.0"
2698 | resolved "https://registry.yarnpkg.com/load-json-file/-/load-json-file-2.0.0.tgz#7947e42149af80d696cbf797bcaabcfe1fe29ca8"
2699 | dependencies:
2700 | graceful-fs "^4.1.2"
2701 | parse-json "^2.2.0"
2702 | pify "^2.0.0"
2703 | strip-bom "^3.0.0"
2704 |
2705 | locate-path@^2.0.0:
2706 | version "2.0.0"
2707 | resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-2.0.0.tgz#2b568b265eec944c6d9c0de9c3dbbbca0354cd8e"
2708 | dependencies:
2709 | p-locate "^2.0.0"
2710 | path-exists "^3.0.0"
2711 |
2712 | lodash.assignin@^4.0.9:
2713 | version "4.2.0"
2714 | resolved "https://registry.yarnpkg.com/lodash.assignin/-/lodash.assignin-4.2.0.tgz#ba8df5fb841eb0a3e8044232b0e263a8dc6a28a2"
2715 |
2716 | lodash.bind@^4.1.4:
2717 | version "4.2.1"
2718 | resolved "https://registry.yarnpkg.com/lodash.bind/-/lodash.bind-4.2.1.tgz#7ae3017e939622ac31b7d7d7dcb1b34db1690d35"
2719 |
2720 | lodash.clonedeep@^4.5.0:
2721 | version "4.5.0"
2722 | resolved "https://registry.yarnpkg.com/lodash.clonedeep/-/lodash.clonedeep-4.5.0.tgz#e23f3f9c4f8fbdde872529c1071857a086e5ccef"
2723 |
2724 | lodash.clonedeepwith@^4.5.0:
2725 | version "4.5.0"
2726 | resolved "https://registry.yarnpkg.com/lodash.clonedeepwith/-/lodash.clonedeepwith-4.5.0.tgz#6ee30573a03a1a60d670a62ef33c10cf1afdbdd4"
2727 |
2728 | lodash.debounce@^4.0.3:
2729 | version "4.0.8"
2730 | resolved "https://registry.yarnpkg.com/lodash.debounce/-/lodash.debounce-4.0.8.tgz#82d79bff30a67c4005ffd5e2515300ad9ca4d7af"
2731 |
2732 | lodash.defaults@^4.0.1:
2733 | version "4.2.0"
2734 | resolved "https://registry.yarnpkg.com/lodash.defaults/-/lodash.defaults-4.2.0.tgz#d09178716ffea4dde9e5fb7b37f6f0802274580c"
2735 |
2736 | lodash.difference@^4.3.0:
2737 | version "4.5.0"
2738 | resolved "https://registry.yarnpkg.com/lodash.difference/-/lodash.difference-4.5.0.tgz#9ccb4e505d486b91651345772885a2df27fd017c"
2739 |
2740 | lodash.filter@^4.4.0:
2741 | version "4.6.0"
2742 | resolved "https://registry.yarnpkg.com/lodash.filter/-/lodash.filter-4.6.0.tgz#668b1d4981603ae1cc5a6fa760143e480b4c4ace"
2743 |
2744 | lodash.flatten@^4.2.0:
2745 | version "4.4.0"
2746 | resolved "https://registry.yarnpkg.com/lodash.flatten/-/lodash.flatten-4.4.0.tgz#f31c22225a9632d2bbf8e4addbef240aa765a61f"
2747 |
2748 | lodash.flattendeep@^4.4.0:
2749 | version "4.4.0"
2750 | resolved "https://registry.yarnpkg.com/lodash.flattendeep/-/lodash.flattendeep-4.4.0.tgz#fb030917f86a3134e5bc9bec0d69e0013ddfedb2"
2751 |
2752 | lodash.foreach@^4.3.0:
2753 | version "4.5.0"
2754 | resolved "https://registry.yarnpkg.com/lodash.foreach/-/lodash.foreach-4.5.0.tgz#1a6a35eace401280c7f06dddec35165ab27e3e53"
2755 |
2756 | lodash.isequal@^4.5.0:
2757 | version "4.5.0"
2758 | resolved "https://registry.yarnpkg.com/lodash.isequal/-/lodash.isequal-4.5.0.tgz#415c4478f2bcc30120c22ce10ed3226f7d3e18e0"
2759 |
2760 | lodash.map@^4.4.0:
2761 | version "4.6.0"
2762 | resolved "https://registry.yarnpkg.com/lodash.map/-/lodash.map-4.6.0.tgz#771ec7839e3473d9c4cde28b19394c3562f4f6d3"
2763 |
2764 | lodash.merge@^4.4.0, lodash.merge@^4.6.0:
2765 | version "4.6.0"
2766 | resolved "https://registry.yarnpkg.com/lodash.merge/-/lodash.merge-4.6.0.tgz#69884ba144ac33fe699737a6086deffadd0f89c5"
2767 |
2768 | lodash.pick@^4.2.1:
2769 | version "4.4.0"
2770 | resolved "https://registry.yarnpkg.com/lodash.pick/-/lodash.pick-4.4.0.tgz#52f05610fff9ded422611441ed1fc123a03001b3"
2771 |
2772 | lodash.reduce@^4.4.0:
2773 | version "4.6.0"
2774 | resolved "https://registry.yarnpkg.com/lodash.reduce/-/lodash.reduce-4.6.0.tgz#f1ab6b839299ad48f784abbf476596f03b914d3b"
2775 |
2776 | lodash.reject@^4.4.0:
2777 | version "4.6.0"
2778 | resolved "https://registry.yarnpkg.com/lodash.reject/-/lodash.reject-4.6.0.tgz#80d6492dc1470864bbf583533b651f42a9f52415"
2779 |
2780 | lodash.some@^4.4.0:
2781 | version "4.6.0"
2782 | resolved "https://registry.yarnpkg.com/lodash.some/-/lodash.some-4.6.0.tgz#1bb9f314ef6b8baded13b549169b2a945eb68e4d"
2783 |
2784 | lodash@^4.0.0, lodash@^4.15.0, lodash@^4.2.0, lodash@^4.3.0:
2785 | version "4.17.4"
2786 | resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.4.tgz#78203a4d1c328ae1d86dca6460e369b57f4055ae"
2787 |
2788 | loose-envify@^1.0.0, loose-envify@^1.1.0, loose-envify@^1.3.1:
2789 | version "1.3.1"
2790 | resolved "https://registry.yarnpkg.com/loose-envify/-/loose-envify-1.3.1.tgz#d1a8ad33fa9ce0e713d65fdd0ac8b748d478c848"
2791 | dependencies:
2792 | js-tokens "^3.0.0"
2793 |
2794 | loud-rejection@^1.0.0, loud-rejection@^1.2.0:
2795 | version "1.6.0"
2796 | resolved "https://registry.yarnpkg.com/loud-rejection/-/loud-rejection-1.6.0.tgz#5b46f80147edee578870f086d04821cf998e551f"
2797 | dependencies:
2798 | currently-unhandled "^0.4.1"
2799 | signal-exit "^3.0.0"
2800 |
2801 | lowercase-keys@^1.0.0:
2802 | version "1.0.0"
2803 | resolved "https://registry.yarnpkg.com/lowercase-keys/-/lowercase-keys-1.0.0.tgz#4e3366b39e7f5457e35f1324bdf6f88d0bfc7306"
2804 |
2805 | lru-cache@^4.0.0, lru-cache@^4.0.1:
2806 | version "4.0.2"
2807 | resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-4.0.2.tgz#1d17679c069cda5d040991a09dbc2c0db377e55e"
2808 | dependencies:
2809 | pseudomap "^1.0.1"
2810 | yallist "^2.0.0"
2811 |
2812 | make-dir@^1.0.0:
2813 | version "1.0.0"
2814 | resolved "https://registry.yarnpkg.com/make-dir/-/make-dir-1.0.0.tgz#97a011751e91dd87cfadef58832ebb04936de978"
2815 | dependencies:
2816 | pify "^2.3.0"
2817 |
2818 | map-obj@^1.0.0, map-obj@^1.0.1:
2819 | version "1.0.1"
2820 | resolved "https://registry.yarnpkg.com/map-obj/-/map-obj-1.0.1.tgz#d933ceb9205d82bdcf4886f6742bdc2b4dea146d"
2821 |
2822 | matcher@^0.1.1:
2823 | version "0.1.2"
2824 | resolved "https://registry.yarnpkg.com/matcher/-/matcher-0.1.2.tgz#ef20cbde64c24c50cc61af5b83ee0b1b8ff00101"
2825 | dependencies:
2826 | escape-string-regexp "^1.0.4"
2827 |
2828 | md5-hex@^1.2.0, md5-hex@^1.3.0:
2829 | version "1.3.0"
2830 | resolved "https://registry.yarnpkg.com/md5-hex/-/md5-hex-1.3.0.tgz#d2c4afe983c4370662179b8cad145219135046c4"
2831 | dependencies:
2832 | md5-o-matic "^0.1.1"
2833 |
2834 | md5-hex@^2.0.0:
2835 | version "2.0.0"
2836 | resolved "https://registry.yarnpkg.com/md5-hex/-/md5-hex-2.0.0.tgz#d0588e9f1c74954492ecd24ac0ac6ce997d92e33"
2837 | dependencies:
2838 | md5-o-matic "^0.1.1"
2839 |
2840 | md5-o-matic@^0.1.1:
2841 | version "0.1.1"
2842 | resolved "https://registry.yarnpkg.com/md5-o-matic/-/md5-o-matic-0.1.1.tgz#822bccd65e117c514fab176b25945d54100a03c3"
2843 |
2844 | meow@^3.7.0:
2845 | version "3.7.0"
2846 | resolved "https://registry.yarnpkg.com/meow/-/meow-3.7.0.tgz#72cb668b425228290abbfa856892587308a801fb"
2847 | dependencies:
2848 | camelcase-keys "^2.0.0"
2849 | decamelize "^1.1.2"
2850 | loud-rejection "^1.0.0"
2851 | map-obj "^1.0.1"
2852 | minimist "^1.1.3"
2853 | normalize-package-data "^2.3.4"
2854 | object-assign "^4.0.1"
2855 | read-pkg-up "^1.0.1"
2856 | redent "^1.0.0"
2857 | trim-newlines "^1.0.0"
2858 |
2859 | micromatch@^2.1.5, micromatch@^2.3.11:
2860 | version "2.3.11"
2861 | resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-2.3.11.tgz#86677c97d1720b363431d04d0d15293bd38c1565"
2862 | dependencies:
2863 | arr-diff "^2.0.0"
2864 | array-unique "^0.2.1"
2865 | braces "^1.8.2"
2866 | expand-brackets "^0.1.4"
2867 | extglob "^0.3.1"
2868 | filename-regex "^2.0.0"
2869 | is-extglob "^1.0.0"
2870 | is-glob "^2.0.1"
2871 | kind-of "^3.0.2"
2872 | normalize-path "^2.0.1"
2873 | object.omit "^2.0.0"
2874 | parse-glob "^3.0.4"
2875 | regex-cache "^0.4.2"
2876 |
2877 | mime-db@~1.27.0:
2878 | version "1.27.0"
2879 | resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.27.0.tgz#820f572296bbd20ec25ed55e5b5de869e5436eb1"
2880 |
2881 | mime-types@^2.1.12, mime-types@~2.1.7:
2882 | version "2.1.15"
2883 | resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.15.tgz#a4ebf5064094569237b8cf70046776d09fc92aed"
2884 | dependencies:
2885 | mime-db "~1.27.0"
2886 |
2887 | mimic-fn@^1.0.0:
2888 | version "1.1.0"
2889 | resolved "https://registry.yarnpkg.com/mimic-fn/-/mimic-fn-1.1.0.tgz#e667783d92e89dbd342818b5230b9d62a672ad18"
2890 |
2891 | minimatch@^3.0.0, minimatch@^3.0.2, minimatch@^3.0.4:
2892 | version "3.0.4"
2893 | resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.0.4.tgz#5166e286457f03306064be5497e8dbb0c3d32083"
2894 | dependencies:
2895 | brace-expansion "^1.1.7"
2896 |
2897 | minimist@0.0.8:
2898 | version "0.0.8"
2899 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-0.0.8.tgz#857fcabfc3397d2625b8228262e86aa7a011b05d"
2900 |
2901 | minimist@^1.1.3, minimist@^1.2.0:
2902 | version "1.2.0"
2903 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.0.tgz#a35008b20f41383eec1fb914f4cd5df79a264284"
2904 |
2905 | "mkdirp@>=0.5 0", mkdirp@^0.5.0, mkdirp@^0.5.1:
2906 | version "0.5.1"
2907 | resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.5.1.tgz#30057438eac6cf7f8c4767f38648d6697d75c903"
2908 | dependencies:
2909 | minimist "0.0.8"
2910 |
2911 | ms@2.0.0:
2912 | version "2.0.0"
2913 | resolved "https://registry.yarnpkg.com/ms/-/ms-2.0.0.tgz#5608aeadfc00be6c2901df5f9861788de0d597c8"
2914 |
2915 | ms@^0.7.1:
2916 | version "0.7.3"
2917 | resolved "https://registry.yarnpkg.com/ms/-/ms-0.7.3.tgz#708155a5e44e33f5fd0fc53e81d0d40a91be1fff"
2918 |
2919 | multimatch@^2.1.0:
2920 | version "2.1.0"
2921 | resolved "https://registry.yarnpkg.com/multimatch/-/multimatch-2.1.0.tgz#9c7906a22fb4c02919e2f5f75161b4cdbd4b2a2b"
2922 | dependencies:
2923 | array-differ "^1.0.0"
2924 | array-union "^1.0.1"
2925 | arrify "^1.0.0"
2926 | minimatch "^3.0.0"
2927 |
2928 | mute-stream@0.0.5:
2929 | version "0.0.5"
2930 | resolved "https://registry.yarnpkg.com/mute-stream/-/mute-stream-0.0.5.tgz#8fbfabb0a98a253d3184331f9e8deb7372fac6c0"
2931 |
2932 | nan@^2.3.0:
2933 | version "2.6.2"
2934 | resolved "https://registry.yarnpkg.com/nan/-/nan-2.6.2.tgz#e4ff34e6c95fdfb5aecc08de6596f43605a7db45"
2935 |
2936 | natural-compare@^1.4.0:
2937 | version "1.4.0"
2938 | resolved "https://registry.yarnpkg.com/natural-compare/-/natural-compare-1.4.0.tgz#4abebfeed7541f2c27acfb29bdbbd15c8d5ba4f7"
2939 |
2940 | node-fetch@^1.0.1:
2941 | version "1.7.0"
2942 | resolved "https://registry.yarnpkg.com/node-fetch/-/node-fetch-1.7.0.tgz#3ff6c56544f9b7fb00682338bb55ee6f54a8a0ef"
2943 | dependencies:
2944 | encoding "^0.1.11"
2945 | is-stream "^1.0.1"
2946 |
2947 | node-pre-gyp@^0.6.29:
2948 | version "0.6.36"
2949 | resolved "https://registry.yarnpkg.com/node-pre-gyp/-/node-pre-gyp-0.6.36.tgz#db604112cb74e0d477554e9b505b17abddfab786"
2950 | dependencies:
2951 | mkdirp "^0.5.1"
2952 | nopt "^4.0.1"
2953 | npmlog "^4.0.2"
2954 | rc "^1.1.7"
2955 | request "^2.81.0"
2956 | rimraf "^2.6.1"
2957 | semver "^5.3.0"
2958 | tar "^2.2.1"
2959 | tar-pack "^3.4.0"
2960 |
2961 | nopt@^4.0.1:
2962 | version "4.0.1"
2963 | resolved "https://registry.yarnpkg.com/nopt/-/nopt-4.0.1.tgz#d0d4685afd5415193c8c7505602d0d17cd64474d"
2964 | dependencies:
2965 | abbrev "1"
2966 | osenv "^0.1.4"
2967 |
2968 | normalize-package-data@^2.3.2, normalize-package-data@^2.3.4:
2969 | version "2.3.8"
2970 | resolved "https://registry.yarnpkg.com/normalize-package-data/-/normalize-package-data-2.3.8.tgz#d819eda2a9dedbd1ffa563ea4071d936782295bb"
2971 | dependencies:
2972 | hosted-git-info "^2.1.4"
2973 | is-builtin-module "^1.0.0"
2974 | semver "2 || 3 || 4 || 5"
2975 | validate-npm-package-license "^3.0.1"
2976 |
2977 | normalize-path@^2.0.1:
2978 | version "2.1.1"
2979 | resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-2.1.1.tgz#1ab28b556e198363a8c1a6f7e6fa20137fe6aed9"
2980 | dependencies:
2981 | remove-trailing-separator "^1.0.1"
2982 |
2983 | npm-run-path@^1.0.0:
2984 | version "1.0.0"
2985 | resolved "https://registry.yarnpkg.com/npm-run-path/-/npm-run-path-1.0.0.tgz#f5c32bf595fe81ae927daec52e82f8b000ac3c8f"
2986 | dependencies:
2987 | path-key "^1.0.0"
2988 |
2989 | npm-run-path@^2.0.0:
2990 | version "2.0.2"
2991 | resolved "https://registry.yarnpkg.com/npm-run-path/-/npm-run-path-2.0.2.tgz#35a9232dfa35d7067b4cb2ddf2357b1871536c5f"
2992 | dependencies:
2993 | path-key "^2.0.0"
2994 |
2995 | npmlog@^4.0.2:
2996 | version "4.1.0"
2997 | resolved "https://registry.yarnpkg.com/npmlog/-/npmlog-4.1.0.tgz#dc59bee85f64f00ed424efb2af0783df25d1c0b5"
2998 | dependencies:
2999 | are-we-there-yet "~1.1.2"
3000 | console-control-strings "~1.1.0"
3001 | gauge "~2.7.3"
3002 | set-blocking "~2.0.0"
3003 |
3004 | nth-check@~1.0.1:
3005 | version "1.0.1"
3006 | resolved "https://registry.yarnpkg.com/nth-check/-/nth-check-1.0.1.tgz#9929acdf628fc2c41098deab82ac580cf149aae4"
3007 | dependencies:
3008 | boolbase "~1.0.0"
3009 |
3010 | number-is-nan@^1.0.0:
3011 | version "1.0.1"
3012 | resolved "https://registry.yarnpkg.com/number-is-nan/-/number-is-nan-1.0.1.tgz#097b602b53422a522c1afb8790318336941a011d"
3013 |
3014 | oauth-sign@~0.8.1:
3015 | version "0.8.2"
3016 | resolved "https://registry.yarnpkg.com/oauth-sign/-/oauth-sign-0.8.2.tgz#46a6ab7f0aead8deae9ec0565780b7d4efeb9d43"
3017 |
3018 | object-assign@^4.0.1, object-assign@^4.1.0:
3019 | version "4.1.1"
3020 | resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863"
3021 |
3022 | object-keys@^1.0.10, object-keys@^1.0.8:
3023 | version "1.0.11"
3024 | resolved "https://registry.yarnpkg.com/object-keys/-/object-keys-1.0.11.tgz#c54601778ad560f1142ce0e01bcca8b56d13426d"
3025 |
3026 | object.assign@^4.0.4:
3027 | version "4.0.4"
3028 | resolved "https://registry.yarnpkg.com/object.assign/-/object.assign-4.0.4.tgz#b1c9cc044ef1b9fe63606fc141abbb32e14730cc"
3029 | dependencies:
3030 | define-properties "^1.1.2"
3031 | function-bind "^1.1.0"
3032 | object-keys "^1.0.10"
3033 |
3034 | object.omit@^2.0.0:
3035 | version "2.0.1"
3036 | resolved "https://registry.yarnpkg.com/object.omit/-/object.omit-2.0.1.tgz#1a9c744829f39dbb858c76ca3579ae2a54ebd1fa"
3037 | dependencies:
3038 | for-own "^0.1.4"
3039 | is-extendable "^0.1.1"
3040 |
3041 | observable-to-promise@^0.5.0:
3042 | version "0.5.0"
3043 | resolved "https://registry.yarnpkg.com/observable-to-promise/-/observable-to-promise-0.5.0.tgz#c828f0f0dc47e9f86af8a4977c5d55076ce7a91f"
3044 | dependencies:
3045 | is-observable "^0.2.0"
3046 | symbol-observable "^1.0.4"
3047 |
3048 | once@^1.3.0, once@^1.3.3:
3049 | version "1.4.0"
3050 | resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1"
3051 | dependencies:
3052 | wrappy "1"
3053 |
3054 | onetime@^1.0.0:
3055 | version "1.1.0"
3056 | resolved "https://registry.yarnpkg.com/onetime/-/onetime-1.1.0.tgz#a1f7838f8314c516f05ecefcbc4ccfe04b4ed789"
3057 |
3058 | onetime@^2.0.0:
3059 | version "2.0.1"
3060 | resolved "https://registry.yarnpkg.com/onetime/-/onetime-2.0.1.tgz#067428230fd67443b2794b22bba528b6867962d4"
3061 | dependencies:
3062 | mimic-fn "^1.0.0"
3063 |
3064 | option-chain@^0.1.0:
3065 | version "0.1.1"
3066 | resolved "https://registry.yarnpkg.com/option-chain/-/option-chain-0.1.1.tgz#e9b811e006f1c0f54802f28295bfc8970f8dcfbd"
3067 | dependencies:
3068 | object-assign "^4.0.1"
3069 |
3070 | optionator@^0.8.2:
3071 | version "0.8.2"
3072 | resolved "https://registry.yarnpkg.com/optionator/-/optionator-0.8.2.tgz#364c5e409d3f4d6301d6c0b4c05bba50180aeb64"
3073 | dependencies:
3074 | deep-is "~0.1.3"
3075 | fast-levenshtein "~2.0.4"
3076 | levn "~0.3.0"
3077 | prelude-ls "~1.1.2"
3078 | type-check "~0.3.2"
3079 | wordwrap "~1.0.0"
3080 |
3081 | os-homedir@^1.0.0:
3082 | version "1.0.2"
3083 | resolved "https://registry.yarnpkg.com/os-homedir/-/os-homedir-1.0.2.tgz#ffbc4988336e0e833de0c168c7ef152121aa7fb3"
3084 |
3085 | os-tmpdir@^1.0.0, os-tmpdir@^1.0.1:
3086 | version "1.0.2"
3087 | resolved "https://registry.yarnpkg.com/os-tmpdir/-/os-tmpdir-1.0.2.tgz#bbe67406c79aa85c5cfec766fe5734555dfa1274"
3088 |
3089 | osenv@^0.1.4:
3090 | version "0.1.4"
3091 | resolved "https://registry.yarnpkg.com/osenv/-/osenv-0.1.4.tgz#42fe6d5953df06c8064be6f176c3d05aaaa34644"
3092 | dependencies:
3093 | os-homedir "^1.0.0"
3094 | os-tmpdir "^1.0.0"
3095 |
3096 | output-file-sync@^1.1.0:
3097 | version "1.1.2"
3098 | resolved "https://registry.yarnpkg.com/output-file-sync/-/output-file-sync-1.1.2.tgz#d0a33eefe61a205facb90092e826598d5245ce76"
3099 | dependencies:
3100 | graceful-fs "^4.1.4"
3101 | mkdirp "^0.5.1"
3102 | object-assign "^4.1.0"
3103 |
3104 | p-finally@^1.0.0:
3105 | version "1.0.0"
3106 | resolved "https://registry.yarnpkg.com/p-finally/-/p-finally-1.0.0.tgz#3fbcfb15b899a44123b34b6dcc18b724336a2cae"
3107 |
3108 | p-limit@^1.1.0:
3109 | version "1.1.0"
3110 | resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-1.1.0.tgz#b07ff2d9a5d88bec806035895a2bab66a27988bc"
3111 |
3112 | p-locate@^2.0.0:
3113 | version "2.0.0"
3114 | resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-2.0.0.tgz#20a0103b222a70c8fd39cc2e580680f3dde5ec43"
3115 | dependencies:
3116 | p-limit "^1.1.0"
3117 |
3118 | package-hash@^1.2.0:
3119 | version "1.2.0"
3120 | resolved "https://registry.yarnpkg.com/package-hash/-/package-hash-1.2.0.tgz#003e56cd57b736a6ed6114cc2b81542672770e44"
3121 | dependencies:
3122 | md5-hex "^1.3.0"
3123 |
3124 | package-hash@^2.0.0:
3125 | version "2.0.0"
3126 | resolved "https://registry.yarnpkg.com/package-hash/-/package-hash-2.0.0.tgz#78ae326c89e05a4d813b68601977af05c00d2a0d"
3127 | dependencies:
3128 | graceful-fs "^4.1.11"
3129 | lodash.flattendeep "^4.4.0"
3130 | md5-hex "^2.0.0"
3131 | release-zalgo "^1.0.0"
3132 |
3133 | package-json@^4.0.0:
3134 | version "4.0.1"
3135 | resolved "https://registry.yarnpkg.com/package-json/-/package-json-4.0.1.tgz#8869a0401253661c4c4ca3da6c2121ed555f5eed"
3136 | dependencies:
3137 | got "^6.7.1"
3138 | registry-auth-token "^3.0.1"
3139 | registry-url "^3.0.3"
3140 | semver "^5.1.0"
3141 |
3142 | parse-glob@^3.0.4:
3143 | version "3.0.4"
3144 | resolved "https://registry.yarnpkg.com/parse-glob/-/parse-glob-3.0.4.tgz#b2c376cfb11f35513badd173ef0bb6e3a388391c"
3145 | dependencies:
3146 | glob-base "^0.3.0"
3147 | is-dotfile "^1.0.0"
3148 | is-extglob "^1.0.0"
3149 | is-glob "^2.0.0"
3150 |
3151 | parse-json@^2.2.0:
3152 | version "2.2.0"
3153 | resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-2.2.0.tgz#f480f40434ef80741f8469099f8dea18f55a4dc9"
3154 | dependencies:
3155 | error-ex "^1.2.0"
3156 |
3157 | parse-ms@^0.1.0:
3158 | version "0.1.2"
3159 | resolved "https://registry.yarnpkg.com/parse-ms/-/parse-ms-0.1.2.tgz#dd3fa25ed6c2efc7bdde12ad9b46c163aa29224e"
3160 |
3161 | parse-ms@^1.0.0:
3162 | version "1.0.1"
3163 | resolved "https://registry.yarnpkg.com/parse-ms/-/parse-ms-1.0.1.tgz#56346d4749d78f23430ca0c713850aef91aa361d"
3164 |
3165 | path-exists@^2.0.0:
3166 | version "2.1.0"
3167 | resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-2.1.0.tgz#0feb6c64f0fc518d9a754dd5efb62c7022761f4b"
3168 | dependencies:
3169 | pinkie-promise "^2.0.0"
3170 |
3171 | path-exists@^3.0.0:
3172 | version "3.0.0"
3173 | resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-3.0.0.tgz#ce0ebeaa5f78cb18925ea7d810d7b59b010fd515"
3174 |
3175 | path-is-absolute@^1.0.0:
3176 | version "1.0.1"
3177 | resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f"
3178 |
3179 | path-is-inside@^1.0.1:
3180 | version "1.0.2"
3181 | resolved "https://registry.yarnpkg.com/path-is-inside/-/path-is-inside-1.0.2.tgz#365417dede44430d1c11af61027facf074bdfc53"
3182 |
3183 | path-key@^1.0.0:
3184 | version "1.0.0"
3185 | resolved "https://registry.yarnpkg.com/path-key/-/path-key-1.0.0.tgz#5d53d578019646c0d68800db4e146e6bdc2ac7af"
3186 |
3187 | path-key@^2.0.0:
3188 | version "2.0.1"
3189 | resolved "https://registry.yarnpkg.com/path-key/-/path-key-2.0.1.tgz#411cadb574c5a140d3a4b1910d40d80cc9f40b40"
3190 |
3191 | path-parse@^1.0.5:
3192 | version "1.0.5"
3193 | resolved "https://registry.yarnpkg.com/path-parse/-/path-parse-1.0.5.tgz#3c1adf871ea9cd6c9431b6ea2bd74a0ff055c4c1"
3194 |
3195 | path-type@^1.0.0:
3196 | version "1.1.0"
3197 | resolved "https://registry.yarnpkg.com/path-type/-/path-type-1.1.0.tgz#59c44f7ee491da704da415da5a4070ba4f8fe441"
3198 | dependencies:
3199 | graceful-fs "^4.1.2"
3200 | pify "^2.0.0"
3201 | pinkie-promise "^2.0.0"
3202 |
3203 | path-type@^2.0.0:
3204 | version "2.0.0"
3205 | resolved "https://registry.yarnpkg.com/path-type/-/path-type-2.0.0.tgz#f012ccb8415b7096fc2daa1054c3d72389594c73"
3206 | dependencies:
3207 | pify "^2.0.0"
3208 |
3209 | performance-now@^0.2.0:
3210 | version "0.2.0"
3211 | resolved "https://registry.yarnpkg.com/performance-now/-/performance-now-0.2.0.tgz#33ef30c5c77d4ea21c5a53869d91b56d8f2555e5"
3212 |
3213 | pify@^2.0.0, pify@^2.3.0:
3214 | version "2.3.0"
3215 | resolved "https://registry.yarnpkg.com/pify/-/pify-2.3.0.tgz#ed141a6ac043a849ea588498e7dca8b15330e90c"
3216 |
3217 | pinkie-promise@^1.0.0:
3218 | version "1.0.0"
3219 | resolved "https://registry.yarnpkg.com/pinkie-promise/-/pinkie-promise-1.0.0.tgz#d1da67f5482563bb7cf57f286ae2822ecfbf3670"
3220 | dependencies:
3221 | pinkie "^1.0.0"
3222 |
3223 | pinkie-promise@^2.0.0:
3224 | version "2.0.1"
3225 | resolved "https://registry.yarnpkg.com/pinkie-promise/-/pinkie-promise-2.0.1.tgz#2135d6dfa7a358c069ac9b178776288228450ffa"
3226 | dependencies:
3227 | pinkie "^2.0.0"
3228 |
3229 | pinkie@^1.0.0:
3230 | version "1.0.0"
3231 | resolved "https://registry.yarnpkg.com/pinkie/-/pinkie-1.0.0.tgz#5a47f28ba1015d0201bda7bf0f358e47bec8c7e4"
3232 |
3233 | pinkie@^2.0.0:
3234 | version "2.0.4"
3235 | resolved "https://registry.yarnpkg.com/pinkie/-/pinkie-2.0.4.tgz#72556b80cfa0d48a974e80e77248e80ed4f7f870"
3236 |
3237 | pkg-conf@^2.0.0:
3238 | version "2.0.0"
3239 | resolved "https://registry.yarnpkg.com/pkg-conf/-/pkg-conf-2.0.0.tgz#071c87650403bccfb9c627f58751bfe47c067279"
3240 | dependencies:
3241 | find-up "^2.0.0"
3242 | load-json-file "^2.0.0"
3243 |
3244 | pkg-dir@^1.0.0:
3245 | version "1.0.0"
3246 | resolved "https://registry.yarnpkg.com/pkg-dir/-/pkg-dir-1.0.0.tgz#7a4b508a8d5bb2d629d447056ff4e9c9314cf3d4"
3247 | dependencies:
3248 | find-up "^1.0.0"
3249 |
3250 | plur@^1.0.0:
3251 | version "1.0.0"
3252 | resolved "https://registry.yarnpkg.com/plur/-/plur-1.0.0.tgz#db85c6814f5e5e5a3b49efc28d604fec62975156"
3253 |
3254 | plur@^2.0.0:
3255 | version "2.1.2"
3256 | resolved "https://registry.yarnpkg.com/plur/-/plur-2.1.2.tgz#7482452c1a0f508e3e344eaec312c91c29dc655a"
3257 | dependencies:
3258 | irregular-plurals "^1.0.0"
3259 |
3260 | pluralize@^1.2.1:
3261 | version "1.2.1"
3262 | resolved "https://registry.yarnpkg.com/pluralize/-/pluralize-1.2.1.tgz#d1a21483fd22bb41e58a12fa3421823140897c45"
3263 |
3264 | prelude-ls@~1.1.2:
3265 | version "1.1.2"
3266 | resolved "https://registry.yarnpkg.com/prelude-ls/-/prelude-ls-1.1.2.tgz#21932a549f5e52ffd9a827f570e04be62a97da54"
3267 |
3268 | prepend-http@^1.0.1:
3269 | version "1.0.4"
3270 | resolved "https://registry.yarnpkg.com/prepend-http/-/prepend-http-1.0.4.tgz#d4f4562b0ce3696e41ac52d0e002e57a635dc6dc"
3271 |
3272 | preserve@^0.2.0:
3273 | version "0.2.0"
3274 | resolved "https://registry.yarnpkg.com/preserve/-/preserve-0.2.0.tgz#815ed1f6ebc65926f865b310c0713bcb3315ce4b"
3275 |
3276 | pretty-format@^19.0.0:
3277 | version "19.0.0"
3278 | resolved "https://registry.yarnpkg.com/pretty-format/-/pretty-format-19.0.0.tgz#56530d32acb98a3fa4851c4e2b9d37b420684c84"
3279 | dependencies:
3280 | ansi-styles "^3.0.0"
3281 |
3282 | pretty-ms@^0.2.1:
3283 | version "0.2.2"
3284 | resolved "https://registry.yarnpkg.com/pretty-ms/-/pretty-ms-0.2.2.tgz#da879a682ff33a37011046f13d627f67c73b84f6"
3285 | dependencies:
3286 | parse-ms "^0.1.0"
3287 |
3288 | pretty-ms@^2.0.0:
3289 | version "2.1.0"
3290 | resolved "https://registry.yarnpkg.com/pretty-ms/-/pretty-ms-2.1.0.tgz#4257c256df3fb0b451d6affaab021884126981dc"
3291 | dependencies:
3292 | is-finite "^1.0.1"
3293 | parse-ms "^1.0.0"
3294 | plur "^1.0.0"
3295 |
3296 | private@^0.1.6:
3297 | version "0.1.7"
3298 | resolved "https://registry.yarnpkg.com/private/-/private-0.1.7.tgz#68ce5e8a1ef0a23bb570cc28537b5332aba63ef1"
3299 |
3300 | process-nextick-args@~1.0.6:
3301 | version "1.0.7"
3302 | resolved "https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-1.0.7.tgz#150e20b756590ad3f91093f25a4f2ad8bff30ba3"
3303 |
3304 | progress@^1.1.8:
3305 | version "1.1.8"
3306 | resolved "https://registry.yarnpkg.com/progress/-/progress-1.1.8.tgz#e260c78f6161cdd9b0e56cc3e0a85de17c7a57be"
3307 |
3308 | promise@^7.1.1:
3309 | version "7.1.1"
3310 | resolved "https://registry.yarnpkg.com/promise/-/promise-7.1.1.tgz#489654c692616b8aa55b0724fa809bb7db49c5bf"
3311 | dependencies:
3312 | asap "~2.0.3"
3313 |
3314 | prop-types@^15.5.7, prop-types@^15.5.8, prop-types@~15.5.7:
3315 | version "15.5.10"
3316 | resolved "https://registry.yarnpkg.com/prop-types/-/prop-types-15.5.10.tgz#2797dfc3126182e3a95e3dfbb2e893ddd7456154"
3317 | dependencies:
3318 | fbjs "^0.8.9"
3319 | loose-envify "^1.3.1"
3320 |
3321 | pseudomap@^1.0.1:
3322 | version "1.0.2"
3323 | resolved "https://registry.yarnpkg.com/pseudomap/-/pseudomap-1.0.2.tgz#f052a28da70e618917ef0a8ac34c1ae5a68286b3"
3324 |
3325 | punycode@^1.4.1:
3326 | version "1.4.1"
3327 | resolved "https://registry.yarnpkg.com/punycode/-/punycode-1.4.1.tgz#c0d5a63b2718800ad8e1eb0fa5269c84dd41845e"
3328 |
3329 | qs@~6.4.0:
3330 | version "6.4.0"
3331 | resolved "https://registry.yarnpkg.com/qs/-/qs-6.4.0.tgz#13e26d28ad6b0ffaa91312cd3bf708ed351e7233"
3332 |
3333 | randomatic@^1.1.3:
3334 | version "1.1.6"
3335 | resolved "https://registry.yarnpkg.com/randomatic/-/randomatic-1.1.6.tgz#110dcabff397e9dcff7c0789ccc0a49adf1ec5bb"
3336 | dependencies:
3337 | is-number "^2.0.2"
3338 | kind-of "^3.0.2"
3339 |
3340 | rc@^1.0.1, rc@^1.1.6, rc@^1.1.7:
3341 | version "1.2.1"
3342 | resolved "https://registry.yarnpkg.com/rc/-/rc-1.2.1.tgz#2e03e8e42ee450b8cb3dce65be1bf8974e1dfd95"
3343 | dependencies:
3344 | deep-extend "~0.4.0"
3345 | ini "~1.3.0"
3346 | minimist "^1.2.0"
3347 | strip-json-comments "~2.0.1"
3348 |
3349 | react-dom@^15.5.4:
3350 | version "15.5.4"
3351 | resolved "https://registry.yarnpkg.com/react-dom/-/react-dom-15.5.4.tgz#ba0c28786fd52ed7e4f2135fe0288d462aef93da"
3352 | dependencies:
3353 | fbjs "^0.8.9"
3354 | loose-envify "^1.1.0"
3355 | object-assign "^4.1.0"
3356 | prop-types "~15.5.7"
3357 |
3358 | react-portal@^3.1.0:
3359 | version "3.1.0"
3360 | resolved "https://registry.yarnpkg.com/react-portal/-/react-portal-3.1.0.tgz#865c44fb72a1da106c649206936559ce891ee899"
3361 | dependencies:
3362 | prop-types "^15.5.8"
3363 |
3364 | react@^15.5.4:
3365 | version "15.5.4"
3366 | resolved "https://registry.yarnpkg.com/react/-/react-15.5.4.tgz#fa83eb01506ab237cdc1c8c3b1cea8de012bf047"
3367 | dependencies:
3368 | fbjs "^0.8.9"
3369 | loose-envify "^1.1.0"
3370 | object-assign "^4.1.0"
3371 | prop-types "^15.5.7"
3372 |
3373 | read-pkg-up@^1.0.1:
3374 | version "1.0.1"
3375 | resolved "https://registry.yarnpkg.com/read-pkg-up/-/read-pkg-up-1.0.1.tgz#9d63c13276c065918d57f002a57f40a1b643fb02"
3376 | dependencies:
3377 | find-up "^1.0.0"
3378 | read-pkg "^1.0.0"
3379 |
3380 | read-pkg-up@^2.0.0:
3381 | version "2.0.0"
3382 | resolved "https://registry.yarnpkg.com/read-pkg-up/-/read-pkg-up-2.0.0.tgz#6b72a8048984e0c41e79510fd5e9fa99b3b549be"
3383 | dependencies:
3384 | find-up "^2.0.0"
3385 | read-pkg "^2.0.0"
3386 |
3387 | read-pkg@^1.0.0:
3388 | version "1.1.0"
3389 | resolved "https://registry.yarnpkg.com/read-pkg/-/read-pkg-1.1.0.tgz#f5ffaa5ecd29cb31c0474bca7d756b6bb29e3f28"
3390 | dependencies:
3391 | load-json-file "^1.0.0"
3392 | normalize-package-data "^2.3.2"
3393 | path-type "^1.0.0"
3394 |
3395 | read-pkg@^2.0.0:
3396 | version "2.0.0"
3397 | resolved "https://registry.yarnpkg.com/read-pkg/-/read-pkg-2.0.0.tgz#8ef1c0623c6a6db0dc6713c4bfac46332b2368f8"
3398 | dependencies:
3399 | load-json-file "^2.0.0"
3400 | normalize-package-data "^2.3.2"
3401 | path-type "^2.0.0"
3402 |
3403 | readable-stream@^2.0.2, readable-stream@^2.0.6, readable-stream@^2.1.4, readable-stream@^2.1.5, readable-stream@^2.2.2:
3404 | version "2.2.10"
3405 | resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.2.10.tgz#effe72bb7c884c0dd335e2379d526196d9d011ee"
3406 | dependencies:
3407 | core-util-is "~1.0.0"
3408 | inherits "~2.0.1"
3409 | isarray "~1.0.0"
3410 | process-nextick-args "~1.0.6"
3411 | safe-buffer "^5.0.1"
3412 | string_decoder "~1.0.0"
3413 | util-deprecate "~1.0.1"
3414 |
3415 | readdirp@^2.0.0:
3416 | version "2.1.0"
3417 | resolved "https://registry.yarnpkg.com/readdirp/-/readdirp-2.1.0.tgz#4ed0ad060df3073300c48440373f72d1cc642d78"
3418 | dependencies:
3419 | graceful-fs "^4.1.2"
3420 | minimatch "^3.0.2"
3421 | readable-stream "^2.0.2"
3422 | set-immediate-shim "^1.0.1"
3423 |
3424 | readline2@^1.0.1:
3425 | version "1.0.1"
3426 | resolved "https://registry.yarnpkg.com/readline2/-/readline2-1.0.1.tgz#41059608ffc154757b715d9989d199ffbf372e35"
3427 | dependencies:
3428 | code-point-at "^1.0.0"
3429 | is-fullwidth-code-point "^1.0.0"
3430 | mute-stream "0.0.5"
3431 |
3432 | rechoir@^0.6.2:
3433 | version "0.6.2"
3434 | resolved "https://registry.yarnpkg.com/rechoir/-/rechoir-0.6.2.tgz#85204b54dba82d5742e28c96756ef43af50e3384"
3435 | dependencies:
3436 | resolve "^1.1.6"
3437 |
3438 | redent@^1.0.0:
3439 | version "1.0.0"
3440 | resolved "https://registry.yarnpkg.com/redent/-/redent-1.0.0.tgz#cf916ab1fd5f1f16dfb20822dd6ec7f730c2afde"
3441 | dependencies:
3442 | indent-string "^2.1.0"
3443 | strip-indent "^1.0.1"
3444 |
3445 | regenerate@^1.2.1:
3446 | version "1.3.2"
3447 | resolved "https://registry.yarnpkg.com/regenerate/-/regenerate-1.3.2.tgz#d1941c67bad437e1be76433add5b385f95b19260"
3448 |
3449 | regenerator-runtime@^0.10.0:
3450 | version "0.10.5"
3451 | resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.10.5.tgz#336c3efc1220adcedda2c9fab67b5a7955a33658"
3452 |
3453 | regenerator-transform@0.9.11:
3454 | version "0.9.11"
3455 | resolved "https://registry.yarnpkg.com/regenerator-transform/-/regenerator-transform-0.9.11.tgz#3a7d067520cb7b7176769eb5ff868691befe1283"
3456 | dependencies:
3457 | babel-runtime "^6.18.0"
3458 | babel-types "^6.19.0"
3459 | private "^0.1.6"
3460 |
3461 | regex-cache@^0.4.2:
3462 | version "0.4.3"
3463 | resolved "https://registry.yarnpkg.com/regex-cache/-/regex-cache-0.4.3.tgz#9b1a6c35d4d0dfcef5711ae651e8e9d3d7114145"
3464 | dependencies:
3465 | is-equal-shallow "^0.1.3"
3466 | is-primitive "^2.0.0"
3467 |
3468 | regexpu-core@^2.0.0:
3469 | version "2.0.0"
3470 | resolved "https://registry.yarnpkg.com/regexpu-core/-/regexpu-core-2.0.0.tgz#49d038837b8dcf8bfa5b9a42139938e6ea2ae240"
3471 | dependencies:
3472 | regenerate "^1.2.1"
3473 | regjsgen "^0.2.0"
3474 | regjsparser "^0.1.4"
3475 |
3476 | registry-auth-token@^3.0.1:
3477 | version "3.3.1"
3478 | resolved "https://registry.yarnpkg.com/registry-auth-token/-/registry-auth-token-3.3.1.tgz#fb0d3289ee0d9ada2cbb52af5dfe66cb070d3006"
3479 | dependencies:
3480 | rc "^1.1.6"
3481 | safe-buffer "^5.0.1"
3482 |
3483 | registry-url@^3.0.3:
3484 | version "3.1.0"
3485 | resolved "https://registry.yarnpkg.com/registry-url/-/registry-url-3.1.0.tgz#3d4ef870f73dde1d77f0cf9a381432444e174942"
3486 | dependencies:
3487 | rc "^1.0.1"
3488 |
3489 | regjsgen@^0.2.0:
3490 | version "0.2.0"
3491 | resolved "https://registry.yarnpkg.com/regjsgen/-/regjsgen-0.2.0.tgz#6c016adeac554f75823fe37ac05b92d5a4edb1f7"
3492 |
3493 | regjsparser@^0.1.4:
3494 | version "0.1.5"
3495 | resolved "https://registry.yarnpkg.com/regjsparser/-/regjsparser-0.1.5.tgz#7ee8f84dc6fa792d3fd0ae228d24bd949ead205c"
3496 | dependencies:
3497 | jsesc "~0.5.0"
3498 |
3499 | release-zalgo@^1.0.0:
3500 | version "1.0.0"
3501 | resolved "https://registry.yarnpkg.com/release-zalgo/-/release-zalgo-1.0.0.tgz#09700b7e5074329739330e535c5a90fb67851730"
3502 | dependencies:
3503 | es6-error "^4.0.1"
3504 |
3505 | remove-trailing-separator@^1.0.1:
3506 | version "1.0.1"
3507 | resolved "https://registry.yarnpkg.com/remove-trailing-separator/-/remove-trailing-separator-1.0.1.tgz#615ebb96af559552d4bf4057c8436d486ab63cc4"
3508 |
3509 | repeat-element@^1.1.2:
3510 | version "1.1.2"
3511 | resolved "https://registry.yarnpkg.com/repeat-element/-/repeat-element-1.1.2.tgz#ef089a178d1483baae4d93eb98b4f9e4e11d990a"
3512 |
3513 | repeat-string@^1.5.2:
3514 | version "1.6.1"
3515 | resolved "https://registry.yarnpkg.com/repeat-string/-/repeat-string-1.6.1.tgz#8dcae470e1c88abc2d600fff4a776286da75e637"
3516 |
3517 | repeating@^2.0.0:
3518 | version "2.0.1"
3519 | resolved "https://registry.yarnpkg.com/repeating/-/repeating-2.0.1.tgz#5214c53a926d3552707527fbab415dbc08d06dda"
3520 | dependencies:
3521 | is-finite "^1.0.0"
3522 |
3523 | request@^2.81.0:
3524 | version "2.81.0"
3525 | resolved "https://registry.yarnpkg.com/request/-/request-2.81.0.tgz#c6928946a0e06c5f8d6f8a9333469ffda46298a0"
3526 | dependencies:
3527 | aws-sign2 "~0.6.0"
3528 | aws4 "^1.2.1"
3529 | caseless "~0.12.0"
3530 | combined-stream "~1.0.5"
3531 | extend "~3.0.0"
3532 | forever-agent "~0.6.1"
3533 | form-data "~2.1.1"
3534 | har-validator "~4.2.1"
3535 | hawk "~3.1.3"
3536 | http-signature "~1.1.0"
3537 | is-typedarray "~1.0.0"
3538 | isstream "~0.1.2"
3539 | json-stringify-safe "~5.0.1"
3540 | mime-types "~2.1.7"
3541 | oauth-sign "~0.8.1"
3542 | performance-now "^0.2.0"
3543 | qs "~6.4.0"
3544 | safe-buffer "^5.0.1"
3545 | stringstream "~0.0.4"
3546 | tough-cookie "~2.3.0"
3547 | tunnel-agent "^0.6.0"
3548 | uuid "^3.0.0"
3549 |
3550 | require-precompiled@^0.1.0:
3551 | version "0.1.0"
3552 | resolved "https://registry.yarnpkg.com/require-precompiled/-/require-precompiled-0.1.0.tgz#5a1b52eb70ebed43eb982e974c85ab59571e56fa"
3553 |
3554 | require-uncached@^1.0.2:
3555 | version "1.0.3"
3556 | resolved "https://registry.yarnpkg.com/require-uncached/-/require-uncached-1.0.3.tgz#4e0d56d6c9662fd31e43011c4b95aa49955421d3"
3557 | dependencies:
3558 | caller-path "^0.1.0"
3559 | resolve-from "^1.0.0"
3560 |
3561 | resolve-cwd@^1.0.0:
3562 | version "1.0.0"
3563 | resolved "https://registry.yarnpkg.com/resolve-cwd/-/resolve-cwd-1.0.0.tgz#4eaeea41ed040d1702457df64a42b2b07d246f9f"
3564 | dependencies:
3565 | resolve-from "^2.0.0"
3566 |
3567 | resolve-from@^1.0.0:
3568 | version "1.0.1"
3569 | resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-1.0.1.tgz#26cbfe935d1aeeeabb29bc3fe5aeb01e93d44226"
3570 |
3571 | resolve-from@^2.0.0:
3572 | version "2.0.0"
3573 | resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-2.0.0.tgz#9480ab20e94ffa1d9e80a804c7ea147611966b57"
3574 |
3575 | resolve@^1.1.6:
3576 | version "1.3.3"
3577 | resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.3.3.tgz#655907c3469a8680dc2de3a275a8fdd69691f0e5"
3578 | dependencies:
3579 | path-parse "^1.0.5"
3580 |
3581 | restore-cursor@^1.0.1:
3582 | version "1.0.1"
3583 | resolved "https://registry.yarnpkg.com/restore-cursor/-/restore-cursor-1.0.1.tgz#34661f46886327fed2991479152252df92daa541"
3584 | dependencies:
3585 | exit-hook "^1.0.0"
3586 | onetime "^1.0.0"
3587 |
3588 | restore-cursor@^2.0.0:
3589 | version "2.0.0"
3590 | resolved "https://registry.yarnpkg.com/restore-cursor/-/restore-cursor-2.0.0.tgz#9f7ee287f82fd326d4fd162923d62129eee0dfaf"
3591 | dependencies:
3592 | onetime "^2.0.0"
3593 | signal-exit "^3.0.2"
3594 |
3595 | rimraf@2, rimraf@^2.2.8, rimraf@^2.5.1, rimraf@^2.6.1:
3596 | version "2.6.1"
3597 | resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.6.1.tgz#c2338ec643df7a1b7fe5c54fa86f57428a55f33d"
3598 | dependencies:
3599 | glob "^7.0.5"
3600 |
3601 | run-async@^0.1.0:
3602 | version "0.1.0"
3603 | resolved "https://registry.yarnpkg.com/run-async/-/run-async-0.1.0.tgz#c8ad4a5e110661e402a7d21b530e009f25f8e389"
3604 | dependencies:
3605 | once "^1.3.0"
3606 |
3607 | rx-lite@^3.1.2:
3608 | version "3.1.2"
3609 | resolved "https://registry.yarnpkg.com/rx-lite/-/rx-lite-3.1.2.tgz#19ce502ca572665f3b647b10939f97fd1615f102"
3610 |
3611 | safe-buffer@^5.0.1:
3612 | version "5.0.1"
3613 | resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.0.1.tgz#d263ca54696cd8a306b5ca6551e92de57918fbe7"
3614 |
3615 | selection-is-backward@^1.0.0:
3616 | version "1.0.0"
3617 | resolved "https://registry.yarnpkg.com/selection-is-backward/-/selection-is-backward-1.0.0.tgz#97a54633188a511aba6419fc5c1fa91b467e6be1"
3618 |
3619 | semver-diff@^2.0.0:
3620 | version "2.1.0"
3621 | resolved "https://registry.yarnpkg.com/semver-diff/-/semver-diff-2.1.0.tgz#4bbb8437c8d37e4b0cf1a68fd726ec6d645d6d36"
3622 | dependencies:
3623 | semver "^5.0.3"
3624 |
3625 | "semver@2 || 3 || 4 || 5", semver@^5.0.3, semver@^5.1.0, semver@^5.3.0:
3626 | version "5.3.0"
3627 | resolved "https://registry.yarnpkg.com/semver/-/semver-5.3.0.tgz#9b2ce5d3de02d17c6012ad326aa6b4d0cf54f94f"
3628 |
3629 | set-blocking@~2.0.0:
3630 | version "2.0.0"
3631 | resolved "https://registry.yarnpkg.com/set-blocking/-/set-blocking-2.0.0.tgz#045f9782d011ae9a6803ddd382b24392b3d890f7"
3632 |
3633 | set-immediate-shim@^1.0.1:
3634 | version "1.0.1"
3635 | resolved "https://registry.yarnpkg.com/set-immediate-shim/-/set-immediate-shim-1.0.1.tgz#4b2b1b27eb808a9f8dcc481a58e5e56f599f3f61"
3636 |
3637 | setimmediate@^1.0.5:
3638 | version "1.0.5"
3639 | resolved "https://registry.yarnpkg.com/setimmediate/-/setimmediate-1.0.5.tgz#290cbb232e306942d7d7ea9b83732ab7856f8285"
3640 |
3641 | shelljs@^0.7.5:
3642 | version "0.7.7"
3643 | resolved "https://registry.yarnpkg.com/shelljs/-/shelljs-0.7.7.tgz#b2f5c77ef97148f4b4f6e22682e10bba8667cff1"
3644 | dependencies:
3645 | glob "^7.0.0"
3646 | interpret "^1.0.0"
3647 | rechoir "^0.6.2"
3648 |
3649 | signal-exit@^3.0.0, signal-exit@^3.0.2:
3650 | version "3.0.2"
3651 | resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.2.tgz#b5fdc08f1287ea1178628e415e25132b73646c6d"
3652 |
3653 | slash@^1.0.0:
3654 | version "1.0.0"
3655 | resolved "https://registry.yarnpkg.com/slash/-/slash-1.0.0.tgz#c41f2f6c39fc16d1cd17ad4b5d896114ae470d55"
3656 |
3657 | slate@^0.20.1:
3658 | version "0.20.2"
3659 | resolved "https://registry.yarnpkg.com/slate/-/slate-0.20.2.tgz#e7842ebdfa0b81d1c9039229c4af69f3f9a23fff"
3660 | dependencies:
3661 | cheerio "^0.22.0"
3662 | debug "^2.3.2"
3663 | direction "^0.1.5"
3664 | es6-map "^0.1.4"
3665 | esrever "^0.2.0"
3666 | get-window "^1.1.1"
3667 | immutable "^3.8.1"
3668 | is-empty "^1.0.0"
3669 | is-in-browser "^1.1.3"
3670 | is-window "^1.0.2"
3671 | keycode "^2.1.2"
3672 | prop-types "^15.5.8"
3673 | react-portal "^3.1.0"
3674 | selection-is-backward "^1.0.0"
3675 | type-of "^2.0.1"
3676 |
3677 | slice-ansi@0.0.4:
3678 | version "0.0.4"
3679 | resolved "https://registry.yarnpkg.com/slice-ansi/-/slice-ansi-0.0.4.tgz#edbf8903f66f7ce2f8eafd6ceed65e264c831b35"
3680 |
3681 | slide@^1.1.5:
3682 | version "1.1.6"
3683 | resolved "https://registry.yarnpkg.com/slide/-/slide-1.1.6.tgz#56eb027d65b4d2dce6cb2e2d32c4d4afc9e1d707"
3684 |
3685 | sntp@1.x.x:
3686 | version "1.0.9"
3687 | resolved "https://registry.yarnpkg.com/sntp/-/sntp-1.0.9.tgz#6541184cc90aeea6c6e7b35e2659082443c66198"
3688 | dependencies:
3689 | hoek "2.x.x"
3690 |
3691 | sort-keys@^1.1.1, sort-keys@^1.1.2:
3692 | version "1.1.2"
3693 | resolved "https://registry.yarnpkg.com/sort-keys/-/sort-keys-1.1.2.tgz#441b6d4d346798f1b4e49e8920adfba0e543f9ad"
3694 | dependencies:
3695 | is-plain-obj "^1.0.0"
3696 |
3697 | source-map-support@^0.4.0, source-map-support@^0.4.2:
3698 | version "0.4.15"
3699 | resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.4.15.tgz#03202df65c06d2bd8c7ec2362a193056fef8d3b1"
3700 | dependencies:
3701 | source-map "^0.5.6"
3702 |
3703 | source-map@^0.5.0, source-map@^0.5.6:
3704 | version "0.5.6"
3705 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.5.6.tgz#75ce38f52bf0733c5a7f0c118d81334a2bb5f412"
3706 |
3707 | spdx-correct@~1.0.0:
3708 | version "1.0.2"
3709 | resolved "https://registry.yarnpkg.com/spdx-correct/-/spdx-correct-1.0.2.tgz#4b3073d933ff51f3912f03ac5519498a4150db40"
3710 | dependencies:
3711 | spdx-license-ids "^1.0.2"
3712 |
3713 | spdx-expression-parse@~1.0.0:
3714 | version "1.0.4"
3715 | resolved "https://registry.yarnpkg.com/spdx-expression-parse/-/spdx-expression-parse-1.0.4.tgz#9bdf2f20e1f40ed447fbe273266191fced51626c"
3716 |
3717 | spdx-license-ids@^1.0.2:
3718 | version "1.2.2"
3719 | resolved "https://registry.yarnpkg.com/spdx-license-ids/-/spdx-license-ids-1.2.2.tgz#c9df7a3424594ade6bd11900d596696dc06bac57"
3720 |
3721 | sprintf-js@~1.0.2:
3722 | version "1.0.3"
3723 | resolved "https://registry.yarnpkg.com/sprintf-js/-/sprintf-js-1.0.3.tgz#04e6926f662895354f3dd015203633b857297e2c"
3724 |
3725 | sshpk@^1.7.0:
3726 | version "1.13.0"
3727 | resolved "https://registry.yarnpkg.com/sshpk/-/sshpk-1.13.0.tgz#ff2a3e4fd04497555fed97b39a0fd82fafb3a33c"
3728 | dependencies:
3729 | asn1 "~0.2.3"
3730 | assert-plus "^1.0.0"
3731 | dashdash "^1.12.0"
3732 | getpass "^0.1.1"
3733 | optionalDependencies:
3734 | bcrypt-pbkdf "^1.0.0"
3735 | ecc-jsbn "~0.1.1"
3736 | jodid25519 "^1.0.0"
3737 | jsbn "~0.1.0"
3738 | tweetnacl "~0.14.0"
3739 |
3740 | stack-utils@^1.0.0:
3741 | version "1.0.1"
3742 | resolved "https://registry.yarnpkg.com/stack-utils/-/stack-utils-1.0.1.tgz#d4f33ab54e8e38778b0ca5cfd3b3afb12db68620"
3743 |
3744 | string-width@^1.0.1, string-width@^1.0.2:
3745 | version "1.0.2"
3746 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-1.0.2.tgz#118bdf5b8cdc51a2a7e70d211e07e2b0b9b107d3"
3747 | dependencies:
3748 | code-point-at "^1.0.0"
3749 | is-fullwidth-code-point "^1.0.0"
3750 | strip-ansi "^3.0.0"
3751 |
3752 | string-width@^2.0.0:
3753 | version "2.0.0"
3754 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-2.0.0.tgz#635c5436cc72a6e0c387ceca278d4e2eec52687e"
3755 | dependencies:
3756 | is-fullwidth-code-point "^2.0.0"
3757 | strip-ansi "^3.0.0"
3758 |
3759 | string_decoder@~1.0.0:
3760 | version "1.0.1"
3761 | resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.0.1.tgz#62e200f039955a6810d8df0a33ffc0f013662d98"
3762 | dependencies:
3763 | safe-buffer "^5.0.1"
3764 |
3765 | stringstream@~0.0.4:
3766 | version "0.0.5"
3767 | resolved "https://registry.yarnpkg.com/stringstream/-/stringstream-0.0.5.tgz#4e484cd4de5a0bbbee18e46307710a8a81621878"
3768 |
3769 | strip-ansi@^3.0.0, strip-ansi@^3.0.1:
3770 | version "3.0.1"
3771 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-3.0.1.tgz#6a385fb8853d952d5ff05d0e8aaf94278dc63dcf"
3772 | dependencies:
3773 | ansi-regex "^2.0.0"
3774 |
3775 | strip-ansi@~0.1.0:
3776 | version "0.1.1"
3777 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-0.1.1.tgz#39e8a98d044d150660abe4a6808acf70bb7bc991"
3778 |
3779 | strip-bom-buf@^1.0.0:
3780 | version "1.0.0"
3781 | resolved "https://registry.yarnpkg.com/strip-bom-buf/-/strip-bom-buf-1.0.0.tgz#1cb45aaf57530f4caf86c7f75179d2c9a51dd572"
3782 | dependencies:
3783 | is-utf8 "^0.2.1"
3784 |
3785 | strip-bom@^2.0.0:
3786 | version "2.0.0"
3787 | resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-2.0.0.tgz#6219a85616520491f35788bdbf1447a99c7e6b0e"
3788 | dependencies:
3789 | is-utf8 "^0.2.0"
3790 |
3791 | strip-bom@^3.0.0:
3792 | version "3.0.0"
3793 | resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-3.0.0.tgz#2334c18e9c759f7bdd56fdef7e9ae3d588e68ed3"
3794 |
3795 | strip-eof@^1.0.0:
3796 | version "1.0.0"
3797 | resolved "https://registry.yarnpkg.com/strip-eof/-/strip-eof-1.0.0.tgz#bb43ff5598a6eb05d89b59fcd129c983313606bf"
3798 |
3799 | strip-indent@^1.0.1:
3800 | version "1.0.1"
3801 | resolved "https://registry.yarnpkg.com/strip-indent/-/strip-indent-1.0.1.tgz#0c7962a6adefa7bbd4ac366460a638552ae1a0a2"
3802 | dependencies:
3803 | get-stdin "^4.0.1"
3804 |
3805 | strip-json-comments@~2.0.1:
3806 | version "2.0.1"
3807 | resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-2.0.1.tgz#3c531942e908c2697c0ec344858c286c7ca0a60a"
3808 |
3809 | supports-color@^2.0.0:
3810 | version "2.0.0"
3811 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-2.0.0.tgz#535d045ce6b6363fa40117084629995e9df324c7"
3812 |
3813 | supports-color@^3.2.3:
3814 | version "3.2.3"
3815 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-3.2.3.tgz#65ac0504b3954171d8a64946b2ae3cbb8a5f54f6"
3816 | dependencies:
3817 | has-flag "^1.0.0"
3818 |
3819 | symbol-observable@^0.2.2:
3820 | version "0.2.4"
3821 | resolved "https://registry.yarnpkg.com/symbol-observable/-/symbol-observable-0.2.4.tgz#95a83db26186d6af7e7a18dbd9760a2f86d08f40"
3822 |
3823 | symbol-observable@^1.0.4:
3824 | version "1.0.4"
3825 | resolved "https://registry.yarnpkg.com/symbol-observable/-/symbol-observable-1.0.4.tgz#29bf615d4aa7121bdd898b22d4b3f9bc4e2aa03d"
3826 |
3827 | table@^3.7.8:
3828 | version "3.8.3"
3829 | resolved "https://registry.yarnpkg.com/table/-/table-3.8.3.tgz#2bbc542f0fda9861a755d3947fefd8b3f513855f"
3830 | dependencies:
3831 | ajv "^4.7.0"
3832 | ajv-keywords "^1.0.0"
3833 | chalk "^1.1.1"
3834 | lodash "^4.0.0"
3835 | slice-ansi "0.0.4"
3836 | string-width "^2.0.0"
3837 |
3838 | tar-pack@^3.4.0:
3839 | version "3.4.0"
3840 | resolved "https://registry.yarnpkg.com/tar-pack/-/tar-pack-3.4.0.tgz#23be2d7f671a8339376cbdb0b8fe3fdebf317984"
3841 | dependencies:
3842 | debug "^2.2.0"
3843 | fstream "^1.0.10"
3844 | fstream-ignore "^1.0.5"
3845 | once "^1.3.3"
3846 | readable-stream "^2.1.4"
3847 | rimraf "^2.5.1"
3848 | tar "^2.2.1"
3849 | uid-number "^0.0.6"
3850 |
3851 | tar@^2.2.1:
3852 | version "2.2.1"
3853 | resolved "https://registry.yarnpkg.com/tar/-/tar-2.2.1.tgz#8e4d2a256c0e2185c6b18ad694aec968b83cb1d1"
3854 | dependencies:
3855 | block-stream "*"
3856 | fstream "^1.0.2"
3857 | inherits "2"
3858 |
3859 | term-size@^0.1.0:
3860 | version "0.1.1"
3861 | resolved "https://registry.yarnpkg.com/term-size/-/term-size-0.1.1.tgz#87360b96396cab5760963714cda0d0cbeecad9ca"
3862 | dependencies:
3863 | execa "^0.4.0"
3864 |
3865 | text-table@^0.2.0, text-table@~0.2.0:
3866 | version "0.2.0"
3867 | resolved "https://registry.yarnpkg.com/text-table/-/text-table-0.2.0.tgz#7f5ee823ae805207c00af2df4a84ec3fcfa570b4"
3868 |
3869 | through2@^2.0.0:
3870 | version "2.0.3"
3871 | resolved "https://registry.yarnpkg.com/through2/-/through2-2.0.3.tgz#0004569b37c7c74ba39c43f3ced78d1ad94140be"
3872 | dependencies:
3873 | readable-stream "^2.1.5"
3874 | xtend "~4.0.1"
3875 |
3876 | through@^2.3.6:
3877 | version "2.3.8"
3878 | resolved "https://registry.yarnpkg.com/through/-/through-2.3.8.tgz#0dd4c9ffaabc357960b1b724115d7e0e86a2e1f5"
3879 |
3880 | time-require@^0.1.2:
3881 | version "0.1.2"
3882 | resolved "https://registry.yarnpkg.com/time-require/-/time-require-0.1.2.tgz#f9e12cb370fc2605e11404582ba54ef5ca2b2d98"
3883 | dependencies:
3884 | chalk "^0.4.0"
3885 | date-time "^0.1.1"
3886 | pretty-ms "^0.2.1"
3887 | text-table "^0.2.0"
3888 |
3889 | timed-out@^4.0.0:
3890 | version "4.0.1"
3891 | resolved "https://registry.yarnpkg.com/timed-out/-/timed-out-4.0.1.tgz#f32eacac5a175bea25d7fab565ab3ed8741ef56f"
3892 |
3893 | to-fast-properties@^1.0.1:
3894 | version "1.0.3"
3895 | resolved "https://registry.yarnpkg.com/to-fast-properties/-/to-fast-properties-1.0.3.tgz#b83571fa4d8c25b82e231b06e3a3055de4ca1a47"
3896 |
3897 | tough-cookie@~2.3.0:
3898 | version "2.3.2"
3899 | resolved "https://registry.yarnpkg.com/tough-cookie/-/tough-cookie-2.3.2.tgz#f081f76e4c85720e6c37a5faced737150d84072a"
3900 | dependencies:
3901 | punycode "^1.4.1"
3902 |
3903 | trim-newlines@^1.0.0:
3904 | version "1.0.0"
3905 | resolved "https://registry.yarnpkg.com/trim-newlines/-/trim-newlines-1.0.0.tgz#5887966bb582a4503a41eb524f7d35011815a613"
3906 |
3907 | trim-right@^1.0.1:
3908 | version "1.0.1"
3909 | resolved "https://registry.yarnpkg.com/trim-right/-/trim-right-1.0.1.tgz#cb2e1203067e0c8de1f614094b9fe45704ea6003"
3910 |
3911 | tryit@^1.0.1:
3912 | version "1.0.3"
3913 | resolved "https://registry.yarnpkg.com/tryit/-/tryit-1.0.3.tgz#393be730a9446fd1ead6da59a014308f36c289cb"
3914 |
3915 | tunnel-agent@^0.6.0:
3916 | version "0.6.0"
3917 | resolved "https://registry.yarnpkg.com/tunnel-agent/-/tunnel-agent-0.6.0.tgz#27a5dea06b36b04a0a9966774b290868f0fc40fd"
3918 | dependencies:
3919 | safe-buffer "^5.0.1"
3920 |
3921 | tweetnacl@^0.14.3, tweetnacl@~0.14.0:
3922 | version "0.14.5"
3923 | resolved "https://registry.yarnpkg.com/tweetnacl/-/tweetnacl-0.14.5.tgz#5ae68177f192d4456269d108afa93ff8743f4f64"
3924 |
3925 | type-check@~0.3.2:
3926 | version "0.3.2"
3927 | resolved "https://registry.yarnpkg.com/type-check/-/type-check-0.3.2.tgz#5884cab512cf1d355e3fb784f30804b2b520db72"
3928 | dependencies:
3929 | prelude-ls "~1.1.2"
3930 |
3931 | type-of@^2.0.1:
3932 | version "2.0.1"
3933 | resolved "https://registry.yarnpkg.com/type-of/-/type-of-2.0.1.tgz#e72a1741896568e9f628378d816d6912f7f23972"
3934 |
3935 | typedarray@^0.0.6:
3936 | version "0.0.6"
3937 | resolved "https://registry.yarnpkg.com/typedarray/-/typedarray-0.0.6.tgz#867ac74e3864187b1d3d47d996a78ec5c8830777"
3938 |
3939 | ua-parser-js@^0.7.9:
3940 | version "0.7.12"
3941 | resolved "https://registry.yarnpkg.com/ua-parser-js/-/ua-parser-js-0.7.12.tgz#04c81a99bdd5dc52263ea29d24c6bf8d4818a4bb"
3942 |
3943 | uid-number@^0.0.6:
3944 | version "0.0.6"
3945 | resolved "https://registry.yarnpkg.com/uid-number/-/uid-number-0.0.6.tgz#0ea10e8035e8eb5b8e4449f06da1c730663baa81"
3946 |
3947 | uid2@0.0.3:
3948 | version "0.0.3"
3949 | resolved "https://registry.yarnpkg.com/uid2/-/uid2-0.0.3.tgz#483126e11774df2f71b8b639dcd799c376162b82"
3950 |
3951 | unique-string@^1.0.0:
3952 | version "1.0.0"
3953 | resolved "https://registry.yarnpkg.com/unique-string/-/unique-string-1.0.0.tgz#9e1057cca851abb93398f8b33ae187b99caec11a"
3954 | dependencies:
3955 | crypto-random-string "^1.0.0"
3956 |
3957 | unique-temp-dir@^1.0.0:
3958 | version "1.0.0"
3959 | resolved "https://registry.yarnpkg.com/unique-temp-dir/-/unique-temp-dir-1.0.0.tgz#6dce95b2681ca003eebfb304a415f9cbabcc5385"
3960 | dependencies:
3961 | mkdirp "^0.5.1"
3962 | os-tmpdir "^1.0.1"
3963 | uid2 "0.0.3"
3964 |
3965 | unzip-response@^2.0.1:
3966 | version "2.0.1"
3967 | resolved "https://registry.yarnpkg.com/unzip-response/-/unzip-response-2.0.1.tgz#d2f0f737d16b0615e72a6935ed04214572d56f97"
3968 |
3969 | update-notifier@^2.1.0:
3970 | version "2.1.0"
3971 | resolved "https://registry.yarnpkg.com/update-notifier/-/update-notifier-2.1.0.tgz#ec0c1e53536b76647a24b77cb83966d9315123d9"
3972 | dependencies:
3973 | boxen "^1.0.0"
3974 | chalk "^1.0.0"
3975 | configstore "^3.0.0"
3976 | is-npm "^1.0.0"
3977 | latest-version "^3.0.0"
3978 | lazy-req "^2.0.0"
3979 | semver-diff "^2.0.0"
3980 | xdg-basedir "^3.0.0"
3981 |
3982 | url-parse-lax@^1.0.0:
3983 | version "1.0.0"
3984 | resolved "https://registry.yarnpkg.com/url-parse-lax/-/url-parse-lax-1.0.0.tgz#7af8f303645e9bd79a272e7a14ac68bc0609da73"
3985 | dependencies:
3986 | prepend-http "^1.0.1"
3987 |
3988 | user-home@^1.1.1:
3989 | version "1.1.1"
3990 | resolved "https://registry.yarnpkg.com/user-home/-/user-home-1.1.1.tgz#2b5be23a32b63a7c9deb8d0f28d485724a3df190"
3991 |
3992 | user-home@^2.0.0:
3993 | version "2.0.0"
3994 | resolved "https://registry.yarnpkg.com/user-home/-/user-home-2.0.0.tgz#9c70bfd8169bc1dcbf48604e0f04b8b49cde9e9f"
3995 | dependencies:
3996 | os-homedir "^1.0.0"
3997 |
3998 | util-deprecate@~1.0.1:
3999 | version "1.0.2"
4000 | resolved "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf"
4001 |
4002 | uuid@^3.0.0:
4003 | version "3.0.1"
4004 | resolved "https://registry.yarnpkg.com/uuid/-/uuid-3.0.1.tgz#6544bba2dfda8c1cf17e629a3a305e2bb1fee6c1"
4005 |
4006 | v8flags@^2.0.10:
4007 | version "2.1.1"
4008 | resolved "https://registry.yarnpkg.com/v8flags/-/v8flags-2.1.1.tgz#aab1a1fa30d45f88dd321148875ac02c0b55e5b4"
4009 | dependencies:
4010 | user-home "^1.1.1"
4011 |
4012 | validate-npm-package-license@^3.0.1:
4013 | version "3.0.1"
4014 | resolved "https://registry.yarnpkg.com/validate-npm-package-license/-/validate-npm-package-license-3.0.1.tgz#2804babe712ad3379459acfbe24746ab2c303fbc"
4015 | dependencies:
4016 | spdx-correct "~1.0.0"
4017 | spdx-expression-parse "~1.0.0"
4018 |
4019 | verror@1.3.6:
4020 | version "1.3.6"
4021 | resolved "https://registry.yarnpkg.com/verror/-/verror-1.3.6.tgz#cff5df12946d297d2baaefaa2689e25be01c005c"
4022 | dependencies:
4023 | extsprintf "1.0.2"
4024 |
4025 | whatwg-fetch@>=0.10.0:
4026 | version "2.0.3"
4027 | resolved "https://registry.yarnpkg.com/whatwg-fetch/-/whatwg-fetch-2.0.3.tgz#9c84ec2dcf68187ff00bc64e1274b442176e1c84"
4028 |
4029 | which@^1.2.8, which@^1.2.9:
4030 | version "1.2.14"
4031 | resolved "https://registry.yarnpkg.com/which/-/which-1.2.14.tgz#9a87c4378f03e827cecaf1acdf56c736c01c14e5"
4032 | dependencies:
4033 | isexe "^2.0.0"
4034 |
4035 | wide-align@^1.1.0:
4036 | version "1.1.2"
4037 | resolved "https://registry.yarnpkg.com/wide-align/-/wide-align-1.1.2.tgz#571e0f1b0604636ebc0dfc21b0339bbe31341710"
4038 | dependencies:
4039 | string-width "^1.0.2"
4040 |
4041 | widest-line@^1.0.0:
4042 | version "1.0.0"
4043 | resolved "https://registry.yarnpkg.com/widest-line/-/widest-line-1.0.0.tgz#0c09c85c2a94683d0d7eaf8ee097d564bf0e105c"
4044 | dependencies:
4045 | string-width "^1.0.1"
4046 |
4047 | wordwrap@~1.0.0:
4048 | version "1.0.0"
4049 | resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-1.0.0.tgz#27584810891456a4171c8d0226441ade90cbcaeb"
4050 |
4051 | wrappy@1:
4052 | version "1.0.2"
4053 | resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f"
4054 |
4055 | write-file-atomic@^1.1.4:
4056 | version "1.3.4"
4057 | resolved "https://registry.yarnpkg.com/write-file-atomic/-/write-file-atomic-1.3.4.tgz#f807a4f0b1d9e913ae7a48112e6cc3af1991b45f"
4058 | dependencies:
4059 | graceful-fs "^4.1.11"
4060 | imurmurhash "^0.1.4"
4061 | slide "^1.1.5"
4062 |
4063 | write-file-atomic@^2.0.0:
4064 | version "2.1.0"
4065 | resolved "https://registry.yarnpkg.com/write-file-atomic/-/write-file-atomic-2.1.0.tgz#1769f4b551eedce419f0505deae2e26763542d37"
4066 | dependencies:
4067 | graceful-fs "^4.1.11"
4068 | imurmurhash "^0.1.4"
4069 | slide "^1.1.5"
4070 |
4071 | write-json-file@^2.0.0:
4072 | version "2.2.0"
4073 | resolved "https://registry.yarnpkg.com/write-json-file/-/write-json-file-2.2.0.tgz#51862506bbb3b619eefab7859f1fd6c6d0530876"
4074 | dependencies:
4075 | detect-indent "^5.0.0"
4076 | graceful-fs "^4.1.2"
4077 | make-dir "^1.0.0"
4078 | pify "^2.0.0"
4079 | sort-keys "^1.1.1"
4080 | write-file-atomic "^2.0.0"
4081 |
4082 | write-pkg@^2.0.0:
4083 | version "2.1.0"
4084 | resolved "https://registry.yarnpkg.com/write-pkg/-/write-pkg-2.1.0.tgz#353aa44c39c48c21440f5c08ce6abd46141c9c08"
4085 | dependencies:
4086 | sort-keys "^1.1.2"
4087 | write-json-file "^2.0.0"
4088 |
4089 | write@^0.2.1:
4090 | version "0.2.1"
4091 | resolved "https://registry.yarnpkg.com/write/-/write-0.2.1.tgz#5fc03828e264cea3fe91455476f7a3c566cb0757"
4092 | dependencies:
4093 | mkdirp "^0.5.1"
4094 |
4095 | xdg-basedir@^3.0.0:
4096 | version "3.0.0"
4097 | resolved "https://registry.yarnpkg.com/xdg-basedir/-/xdg-basedir-3.0.0.tgz#496b2cc109eca8dbacfe2dc72b603c17c5870ad4"
4098 |
4099 | xtend@^4.0.0, xtend@~4.0.1:
4100 | version "4.0.1"
4101 | resolved "https://registry.yarnpkg.com/xtend/-/xtend-4.0.1.tgz#a5c6d532be656e23db820efb943a1f04998d63af"
4102 |
4103 | yallist@^2.0.0:
4104 | version "2.1.2"
4105 | resolved "https://registry.yarnpkg.com/yallist/-/yallist-2.1.2.tgz#1c11f9218f076089a47dd512f93c6699a6a81d52"
4106 |
--------------------------------------------------------------------------------