├── .babelrc ├── .eslintignore ├── .eslintrc ├── .flowconfig ├── .gitignore ├── .npmignore ├── .travis.yml ├── CHANGELOG.md ├── LICENSE ├── README.md ├── example ├── index.html ├── main.css ├── main.js └── value.js ├── lib ├── changes │ ├── index.js │ ├── unwrapBlockquote.js │ └── wrapInBlockquote.js ├── core.js ├── handlers │ ├── index.js │ ├── onBackspace.js │ ├── onEnter.js │ ├── onKeyDown.js │ └── onModEnter.js ├── index.js ├── options.js ├── utils │ ├── getCurrentBlockquote.js │ ├── index.js │ └── isSelectionInBlockquote.js └── validation │ ├── index.js │ └── schema.js ├── package.json ├── tests ├── all.js ├── backspace-quote-in-quote │ ├── change.js │ ├── expected.yaml │ └── input.yaml ├── backspace-start-block │ ├── change.js │ ├── expected.yaml │ └── input.yaml ├── enter-empty-middle │ ├── change.js │ ├── expected.yaml │ └── input.yaml ├── enter-withtext-middle │ ├── change.js │ ├── expected.yaml │ └── input.yaml ├── is-in-blockquote │ ├── change.js │ └── input.yaml └── schema-items-contain-blocks │ ├── change.js │ ├── expected.yaml │ └── input.yaml └── yarn.lock /.babelrc: -------------------------------------------------------------------------------- 1 | { 2 | "presets": [ 3 | "es2015", 4 | "stage-0", 5 | "react" 6 | ], 7 | "plugins": [ 8 | "transform-flow-strip-types" 9 | ] 10 | } 11 | -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- 1 | dist/ 2 | example/bundle.js 3 | node_modules/ 4 | -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- 1 | { 2 | "parser": "babel-eslint", 3 | "extends": [ 4 | "gitbook" 5 | ], 6 | "rules": { 7 | "no-param-reassign": 1, 8 | "import/no-commonjs": 2 9 | }, 10 | "plugins": [ 11 | "flowtype" 12 | ], 13 | "env": { 14 | "mocha": true 15 | }, 16 | } 17 | -------------------------------------------------------------------------------- /.flowconfig: -------------------------------------------------------------------------------- 1 | [options] 2 | emoji=true 3 | esproposal.decorators=ignore 4 | unsafe.enable_getters_and_setters=true 5 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # Logs 2 | logs 3 | *.log 4 | npm-debug.log* 5 | 6 | # Runtime data 7 | pids 8 | *.pid 9 | *.seed 10 | 11 | # Directory for instrumented libs generated by jscoverage/JSCover 12 | lib-cov 13 | 14 | # Coverage directory used by tools like istanbul 15 | coverage 16 | 17 | # nyc test coverage 18 | .nyc_output 19 | 20 | # Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files) 21 | .grunt 22 | 23 | # node-waf configuration 24 | .lock-wscript 25 | 26 | # Compiled binary addons (http://nodejs.org/api/addons.html) 27 | build/Release 28 | 29 | # Dependency directories 30 | node_modules 31 | jspm_packages 32 | 33 | # Optional npm cache directory 34 | .npm 35 | 36 | # Optional REPL history 37 | .node_repl_history 38 | 39 | dist 40 | example/bundle.js 41 | -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | lib 2 | !dist 3 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- 1 | sudo: false 2 | language: node_js 3 | node_js: 4 | - "stable" 5 | after_script: 6 | - npm run lint 7 | -------------------------------------------------------------------------------- /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.7.0] - 2019-02-01 7 | 8 | - Add option `exitBlockType` to exit blockquote on Mod+Enter 9 | 10 | ### [0.6.1] - 2018-04-19 11 | 12 | - Reduce package size by publishing only the `dist` folder 13 | 14 | ### [0.6.0] - 2018-03-22 15 | 16 | - Use slate schema definition 17 | - Upgrade to slate ^0.33.0 18 | 19 | ### [0.5.0] - 2017-11-08 20 | 21 | - Upgrade to slate ^0.29.0 22 | 23 | ### [0.4.0] - 2017-09-19 24 | 25 | - Upgrade to be compatible with Slate after the `expose-transform` branch went in. 26 | - Change all instances of `transform` to `change` 27 | - Change the namespace of `plugin.transforms` to `plugin.changes` 28 | 29 | ## [0.3.0] - 2017-09-11 30 | - Update to slate 0.22.x 31 | 32 | ## [0.2.0] - 2016-11-30 33 | - Update to slate 0.15.x 34 | - Enforce blocks in blockquotes using schema 35 | 36 | ## [0.1.3] - 2016-11-03 37 | - Move slate to `peerDependencies` 38 | 39 | ## [0.1.2] - 2016-09-30 40 | - Now publish compiled source with babel 41 | 42 | ## [0.1.1] - 2016-09-19 43 | - Use of this plugin with other container plugins (such as `slate-edit-list`) 44 | 45 | ## [0.1.0] - 2016-09-17 46 | - First version 47 | - Handle pressing enter in a blockquote 48 | - Handle pressing backspace 49 | - Provides utilities and transforms 50 | -------------------------------------------------------------------------------- /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 {yyyy} {name of copyright owner} 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 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | > ⚠️ This repository is archived and has moved to [GitBook's fork](https://github.com/GitbookIO/slate) of [ianstormtaylor/slate](https://github.com/ianstormtaylor/slate). 2 | > Previous versions are still [available on NPM](https://www.npmjs.com/package/slate-edit-table) 3 | > All the versions using GitBook's fork of slate are now published under the `@gitbook` NPM scope. 4 | > To learn more about why we forked Slate, read [our manifest](https://github.com/GitbookIO/slate/blob/master/Forked.md) 5 | 6 | # slate-edit-blockquote 7 | 8 | [![NPM version](https://badge.fury.io/js/slate-edit-blockquote.svg)](http://badge.fury.io/js/slate-edit-blockquote) 9 | [![Linux Build Status](https://travis-ci.org/GitbookIO/slate-edit-blockquote.png?branch=master)](https://travis-ci.org/GitbookIO/slate-edit-blockquote) 10 | 11 | A Slate plugin to handle keyboard events in blockquotes. Blockquotes can contain blocks. 12 | 13 | ### Install 14 | 15 | ``` 16 | npm install slate-edit-blockquote 17 | ``` 18 | 19 | ### Features 20 | 21 | Natural keybindings: 22 | 23 | - Pressing Enter in an empty block of a blockquote, exits the blockquote 24 | - Pressing Backspace at the start of a block in a blockquote, unwraps from the blockquote 25 | 26 | ### Simple Usage 27 | 28 | ```js 29 | import EditBlockquote from 'slate-edit-blockquote' 30 | 31 | const plugins = [ 32 | EditBlockquote() 33 | ] 34 | ``` 35 | 36 | #### Arguments 37 | 38 | This plugin accepts options to redefine the following block types: 39 | 40 | - ``[type: String]`` — type for blockquotes 41 | - ``[typeDefault: String]`` — type for default block in blockquote. 42 | 43 | ### Utilities 44 | 45 | `slate-edit-blockquote` exports utilities and changes: 46 | 47 | #### `utils.isSelectionInBlockquote` 48 | 49 | `plugin.utils.isSelectionInBlockquote(value: Value) => Boolean` 50 | 51 | Return true if selection is inside a blockquote (and it can be unwrap). 52 | 53 | #### `changes.wrapInBlockquote` 54 | 55 | `plugin.changes.wrapInBlockquote(change: Change) => Change` 56 | 57 | Wrap current block in a new blockquote. 58 | 59 | #### `changes.unwrapBlockquote` 60 | 61 | `plugin.changes.unwrapBlockquote(change: Change) => Change` 62 | 63 | Unwrap from current blockquote if any. 64 | -------------------------------------------------------------------------------- /example/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Slate • Blockquote Edition 6 | 7 | 8 | 9 | 10 |
11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /example/main.css: -------------------------------------------------------------------------------- 1 | #example { 2 | width: 100%; 3 | max-width: 600px; 4 | margin: 20px auto; 5 | } 6 | 7 | #example blockquote { 8 | padding-left: 10px; 9 | margin-left: 0px; 10 | border-left: 3px solid #e5e5e5; 11 | } 12 | -------------------------------------------------------------------------------- /example/main.js: -------------------------------------------------------------------------------- 1 | // @flow 2 | /* eslint-disable import/no-extraneous-dependencies */ 3 | /* global document */ 4 | import React from 'react'; 5 | import ReactDOM from 'react-dom'; 6 | import { Editor } from '@gitbook/slate-react'; 7 | import PluginEditBlockquote from '../lib/'; 8 | 9 | import INITIAL_VALUE from './value'; 10 | 11 | const plugin = PluginEditBlockquote(); 12 | const plugins = [plugin]; 13 | 14 | function renderNode(props: *) { 15 | const { node, children, attributes } = props; 16 | switch (node.type) { 17 | case 'blockquote': 18 | return
{children}
; 19 | case 'paragraph': 20 | return

{children}

; 21 | case 'heading': 22 | return

{children}

; 23 | default: 24 | return null; 25 | } 26 | } 27 | 28 | class Example extends React.Component<*, *> { 29 | state = { 30 | value: INITIAL_VALUE 31 | }; 32 | 33 | onChange = ({ value }) => { 34 | this.setState({ 35 | value 36 | }); 37 | }; 38 | 39 | onWrapInBlockquote = e => { 40 | const { value } = this.state; 41 | 42 | this.onChange(plugin.changes.wrapInBlockquote(value.change())); 43 | }; 44 | 45 | onUnwrapBlockquote = e => { 46 | const { value } = this.state; 47 | 48 | this.onChange(plugin.changes.unwrapBlockquote(value.change())); 49 | }; 50 | 51 | render() { 52 | const { value } = this.state; 53 | const inBlockquote = plugin.utils.isSelectionInBlockquote(value); 54 | 55 | return ( 56 |
57 |
58 | 61 | 67 |
68 | 75 |
76 | ); 77 | } 78 | } 79 | 80 | // $FlowFixMe 81 | ReactDOM.render(, document.getElementById('example')); 82 | -------------------------------------------------------------------------------- /example/value.js: -------------------------------------------------------------------------------- 1 | /** @jsx h */ 2 | // @flow 3 | // eslint-disable-next-line 4 | import { createHyperscript } from '@gitbook/slate-hyperscript'; 5 | 6 | const h = createHyperscript({ 7 | blocks: { 8 | heading: 'heading', 9 | paragraph: 'paragraph', 10 | blockquote: 'blockquote' 11 | } 12 | }); 13 | 14 | const value = ( 15 | 16 | 17 | Slate + Quote Editing 18 | 19 | { 20 | 'This page is a basic example of Slate + slate-edit-blockquote plugin.' 21 | } 22 | 23 |
24 | {'Some text in the blockquote'} 25 |
26 | End paragraph 27 |
28 |
29 | ); 30 | 31 | export default value; 32 | -------------------------------------------------------------------------------- /lib/changes/index.js: -------------------------------------------------------------------------------- 1 | import unwrapBlockquote from './unwrapBlockquote'; 2 | import wrapInBlockquote from './wrapInBlockquote'; 3 | 4 | export { unwrapBlockquote, wrapInBlockquote }; 5 | -------------------------------------------------------------------------------- /lib/changes/unwrapBlockquote.js: -------------------------------------------------------------------------------- 1 | // @flow 2 | import { type Change } from '@gitbook/slate'; 3 | 4 | import type Options from '../options'; 5 | 6 | /** 7 | * Unwrap from blockquote. 8 | */ 9 | function unwrapBlockquote(opts: Options, change: Change): Change { 10 | return change.unwrapBlock(opts.type); 11 | } 12 | 13 | export default unwrapBlockquote; 14 | -------------------------------------------------------------------------------- /lib/changes/wrapInBlockquote.js: -------------------------------------------------------------------------------- 1 | // @flow 2 | import { type Change } from '@gitbook/slate'; 3 | 4 | import type Options from '../options'; 5 | 6 | /** 7 | * Wrap the block in a new blockquote. 8 | */ 9 | function wrapInBlockquote(opts: Options, change: Change): Change { 10 | return change.wrapBlock(opts.type); 11 | } 12 | 13 | export default wrapInBlockquote; 14 | -------------------------------------------------------------------------------- /lib/core.js: -------------------------------------------------------------------------------- 1 | // @flow 2 | import Options, { type OptionsFormat } from './options'; 3 | import { isSelectionInBlockquote } from './utils'; 4 | import { wrapInBlockquote, unwrapBlockquote } from './changes'; 5 | 6 | import { schema } from './validation'; 7 | 8 | /** 9 | * The core of the plugin, which does not relies on `slate-react`, and includes 10 | * everything but behavior and rendering logic. 11 | */ 12 | function core(optsParam: OptionsFormat): Object { 13 | const opts = new Options(optsParam); 14 | 15 | return { 16 | schema: schema(opts), 17 | 18 | utils: { 19 | isSelectionInBlockquote: isSelectionInBlockquote.bind(null, opts) 20 | }, 21 | 22 | changes: { 23 | wrapInBlockquote: wrapInBlockquote.bind(null, opts), 24 | unwrapBlockquote: bindAndScopeChange(opts, unwrapBlockquote) 25 | } 26 | }; 27 | } 28 | 29 | /** 30 | * Bind a change to given options, and scope it to act only inside a blockquote 31 | */ 32 | function bindAndScopeChange(opts: Options, fn: *): * { 33 | return (change, ...args) => { 34 | const { value } = change; 35 | 36 | if (!isSelectionInBlockquote(opts, value)) { 37 | return change; 38 | } 39 | 40 | // $FlowFixMe 41 | return fn(...[opts, change].concat(args)); 42 | }; 43 | } 44 | 45 | export default core; 46 | -------------------------------------------------------------------------------- /lib/handlers/index.js: -------------------------------------------------------------------------------- 1 | import onBackspace from './onBackspace'; 2 | import onEnter from './onEnter'; 3 | import onKeyDown from './onKeyDown'; 4 | import onModEnter from './onModEnter'; 5 | 6 | export { onBackspace, onEnter, onKeyDown, onModEnter }; 7 | -------------------------------------------------------------------------------- /lib/handlers/onBackspace.js: -------------------------------------------------------------------------------- 1 | // @flow 2 | import { type Change } from '@gitbook/slate'; 3 | 4 | import type Options from '../options'; 5 | import { getCurrentBlockquote } from '../utils'; 6 | import { unwrapBlockquote } from '../changes'; 7 | 8 | /** 9 | * User pressed Delete in an editor: 10 | * Unwrap the blockquote if at the start of the inner block. 11 | */ 12 | function onBackspace(opts: Options, event: *, change: Change, editor: *) { 13 | const { value } = change; 14 | const { startOffset, isCollapsed } = value; 15 | 16 | if (!getCurrentBlockquote(opts, value) || !isCollapsed) { 17 | return undefined; 18 | } 19 | 20 | if (startOffset !== 0) { 21 | return undefined; 22 | } 23 | 24 | // Block is empty, we exit the blockquote 25 | event.preventDefault(); 26 | 27 | return unwrapBlockquote(opts, change); 28 | } 29 | 30 | export default onBackspace; 31 | -------------------------------------------------------------------------------- /lib/handlers/onEnter.js: -------------------------------------------------------------------------------- 1 | // @flow 2 | import { type Change } from '@gitbook/slate'; 3 | 4 | import type Options from '../options'; 5 | import { getCurrentBlockquote } from '../utils'; 6 | import { unwrapBlockquote } from '../changes/'; 7 | 8 | /** 9 | * User pressed Enter in an editor 10 | * 11 | * Enter on an empty block inside a blockquote exit the blockquote. 12 | */ 13 | function onEnter(opts: Options, event: *, change: Change, editor: *) { 14 | const { value } = change; 15 | const { startBlock } = value; 16 | 17 | if (!getCurrentBlockquote(opts, value)) { 18 | return undefined; 19 | } 20 | 21 | if (startBlock.text.length !== 0) { 22 | return undefined; 23 | } 24 | 25 | // Block is empty, we exit the blockquote 26 | event.preventDefault(); 27 | return unwrapBlockquote(opts, change); 28 | } 29 | 30 | export default onEnter; 31 | -------------------------------------------------------------------------------- /lib/handlers/onKeyDown.js: -------------------------------------------------------------------------------- 1 | // @flow 2 | import { type Change } from '@gitbook/slate'; 3 | 4 | import type Options from '../options'; 5 | 6 | import onEnter from './onEnter'; 7 | import onModEnter from './onModEnter'; 8 | import onBackspace from './onBackspace'; 9 | 10 | const KEY_ENTER = 'Enter'; 11 | const KEY_BACKSPACE = 'Backspace'; 12 | 13 | /** 14 | * User is pressing a key in the editor 15 | */ 16 | function onKeyDown( 17 | opts: Options, 18 | event: *, 19 | change: Change, 20 | editor: * 21 | ): void | any { 22 | // Build arguments list 23 | const args = [opts, event, change, editor]; 24 | switch (event.key) { 25 | case KEY_ENTER: 26 | if (event.metaKey && opts.exitBlockType) { 27 | return onModEnter(...args); 28 | } 29 | return onEnter(...args); 30 | case KEY_BACKSPACE: 31 | return onBackspace(...args); 32 | default: 33 | return undefined; 34 | } 35 | } 36 | 37 | export default onKeyDown; 38 | -------------------------------------------------------------------------------- /lib/handlers/onModEnter.js: -------------------------------------------------------------------------------- 1 | /* @flow */ 2 | import { type Change, Block, Text } from '@gitbook/slate'; 3 | import { getCurrentBlockquote } from '../utils'; 4 | import type Options from '../options'; 5 | 6 | /** 7 | * User pressed Mod+Enter in an editor 8 | * Exit the current block and inserts a paragraph after it 9 | */ 10 | function onModEnter( 11 | opts: Options, 12 | event: SyntheticEvent<*>, 13 | change: Change, 14 | ): ?Change { 15 | const { value } = change; 16 | 17 | const blockquote = getCurrentBlockquote(opts, value) 18 | 19 | if (!blockquote) { 20 | return undefined; 21 | } 22 | event.preventDefault(); 23 | 24 | const exitBlock = Block.create({ 25 | type: opts.exitBlockType, 26 | nodes: [Text.create('')] 27 | }); 28 | 29 | const parent = value.document.getParent(blockquote.key); 30 | const index = parent.nodes.findIndex(child => child.key == blockquote.key); 31 | 32 | return change 33 | .insertNodeByKey(parent.key, index + 1, exitBlock) 34 | .collapseToStartOf(exitBlock); 35 | } 36 | 37 | export default onModEnter; 38 | -------------------------------------------------------------------------------- /lib/index.js: -------------------------------------------------------------------------------- 1 | // @flow 2 | import Options, { type OptionsFormat } from './options'; 3 | import { onKeyDown } from './handlers'; 4 | import core from './core'; 5 | 6 | /** 7 | * A Slate plugin to handle keyboard events in lists. 8 | */ 9 | 10 | function EditBlockquote(opts: OptionsFormat = {}) { 11 | opts = new Options(opts); 12 | 13 | const corePlugin = core(opts); 14 | 15 | return { 16 | ...corePlugin, 17 | onKeyDown: onKeyDown.bind(null, opts) 18 | }; 19 | } 20 | 21 | export default EditBlockquote; 22 | -------------------------------------------------------------------------------- /lib/options.js: -------------------------------------------------------------------------------- 1 | // @flow 2 | import { Record } from 'immutable'; 3 | 4 | const DEFAULTS = { 5 | type: 'blockquote', 6 | typeDefault: 'paragraph', 7 | exitBlockType: 'paragraph' 8 | }; 9 | 10 | /** 11 | * The plugin options container 12 | */ 13 | class Options extends Record(DEFAULTS) { 14 | type: string; 15 | typeDefault: string; 16 | exitBlockType: string; 17 | } 18 | 19 | export type OptionsFormat = { 20 | type?: string, // type for blockquotes 21 | typeDefault?: string, // type for default block in blockquote. 22 | exitBlockType?: string // type of block inserted when exiting 23 | }; 24 | 25 | export default Options; 26 | -------------------------------------------------------------------------------- /lib/utils/getCurrentBlockquote.js: -------------------------------------------------------------------------------- 1 | // @flow 2 | import { type Block, type Value } from '@gitbook/slate'; 3 | import type Options from '../options'; 4 | 5 | /** 6 | * Return the current blockquote, from current selection or from a node. 7 | */ 8 | function getCurrentBlockquote( 9 | opts: Options, 10 | value: Value, 11 | block?: Block 12 | ): ?Block { 13 | const { document } = value; 14 | 15 | if (!block) { 16 | if (!value.selection.startKey) return null; 17 | block = value.startBlock; 18 | } 19 | 20 | const parent = document.getParent(block.key); 21 | 22 | return parent && parent.type === opts.type ? parent : null; 23 | } 24 | 25 | export default getCurrentBlockquote; 26 | -------------------------------------------------------------------------------- /lib/utils/index.js: -------------------------------------------------------------------------------- 1 | import getCurrentBlockquote from './getCurrentBlockquote'; 2 | import isSelectionInBlockquote from './isSelectionInBlockquote'; 3 | 4 | export { getCurrentBlockquote, isSelectionInBlockquote }; 5 | -------------------------------------------------------------------------------- /lib/utils/isSelectionInBlockquote.js: -------------------------------------------------------------------------------- 1 | // @flow 2 | import { type Value } from '@gitbook/slate'; 3 | import type Options from '../options'; 4 | 5 | import getCurrentBlockquote from './getCurrentBlockquote'; 6 | 7 | /** 8 | * Is the selection in a blockquote 9 | */ 10 | function isSelectionInBlockquote(opts: Options, value: Value): boolean { 11 | return Boolean(getCurrentBlockquote(opts, value)); 12 | } 13 | 14 | export default isSelectionInBlockquote; 15 | -------------------------------------------------------------------------------- /lib/validation/index.js: -------------------------------------------------------------------------------- 1 | import schema from './schema'; 2 | 3 | export { schema }; 4 | -------------------------------------------------------------------------------- /lib/validation/schema.js: -------------------------------------------------------------------------------- 1 | // @flow 2 | 3 | import { Block, type Change } from '@gitbook/slate'; 4 | import { CHILD_OBJECT_INVALID } from '@gitbook/slate-schema-violations'; 5 | 6 | import type Options from '../options'; 7 | 8 | /** 9 | * Create a schema definition with rules to normalize blockquotes 10 | */ 11 | function schema(opts: Options): Object { 12 | return { 13 | blocks: { 14 | [opts.type]: { 15 | nodes: [ 16 | { 17 | objects: ['block'] 18 | } 19 | ], 20 | normalize(change, violation, context) { 21 | switch (violation) { 22 | case CHILD_OBJECT_INVALID: 23 | return containBlocks(opts, change, context); 24 | default: 25 | return undefined; 26 | } 27 | } 28 | } 29 | } 30 | }; 31 | } 32 | 33 | /** 34 | * Ensures that blockquotes always contain blocks. 35 | */ 36 | function containBlocks( 37 | opts: Options, 38 | change: Change, 39 | context: Object 40 | ): ?Change { 41 | const toWrap = context.node.nodes.filter(n => n.object !== 'block'); 42 | 43 | if (toWrap.isEmpty()) { 44 | return undefined; 45 | } 46 | 47 | // Wrap text/inline nodes in default block 48 | const wrapper = Block.create({ 49 | type: opts.typeDefault, 50 | nodes: [] 51 | }); 52 | 53 | change.insertNodeByKey( 54 | context.node.key, 55 | 0, 56 | wrapper, 57 | // Be careful of Slate's core schema removing inlines or blocks when 58 | // a block contains a mix of them. 59 | { normalize: false } 60 | ); 61 | 62 | toWrap.forEach((child, index) => { 63 | const isLast = index === toWrap.size - 1; 64 | change.moveNodeByKey(child.key, wrapper.key, index, { 65 | normalize: isLast 66 | }); 67 | }); 68 | 69 | return change; 70 | } 71 | 72 | export default schema; 73 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@gitbook/slate-edit-blockquote", 3 | "description": "A Slate plugin to handle keyboard events in blockquotes.", 4 | "version": "0.7.0", 5 | "license": "Apache-2.0", 6 | "repository": "git://github.com/GitbookIO/slate-edit-blockquote.git", 7 | "main": "./dist/index.js", 8 | "peerDependencies": { 9 | "immutable": "^3.8.1", 10 | "@gitbook/slate": "^0.34.7", 11 | "@gitbook/slate-schema-violations": "^0.1.20" 12 | }, 13 | "files": [ 14 | "dist", 15 | "*.md" 16 | ], 17 | "devDependencies": { 18 | "babel-cli": "^6.26.0", 19 | "babel-core": "^6.26.0", 20 | "babel-eslint": "^8.0.2", 21 | "babel-plugin-transform-flow-strip-types": "^6.22.0", 22 | "babel-preset-es2015": "^6.24.1", 23 | "babel-preset-react": "^6.24.1", 24 | "babel-preset-stage-0": "^6.24.1", 25 | "babelify": "^8.0.0", 26 | "browserify": "^13.3.0", 27 | "eslint": "^4.10.0", 28 | "eslint-config-gitbook": "^2.0.3", 29 | "eslint-plugin-import": "^2.8.0", 30 | "expect": "^1.20.2", 31 | "flow-bin": "^0.57.3", 32 | "gh-pages": "^0.11.0", 33 | "http-server": "^0.9.0", 34 | "immutable": "^3.8.1", 35 | "mocha": "^3.0.1", 36 | "react": "^15.3.0", 37 | "react-dom": "^15.3.0", 38 | "read-metadata": "^1.0.0", 39 | "@gitbook/slate": "^0.34.7", 40 | "@gitbook/slate-hyperscript": "^0.5.22", 41 | "@gitbook/slate-react": "^0.13.4", 42 | "@gitbook/slate-schema-violations": "^0.1.20" 43 | }, 44 | "scripts": { 45 | "prepublish": "babel ./lib --out-dir ./dist", 46 | "postpublish": "npm run deploy-example", 47 | "lint": "eslint ./", 48 | "build-example": "browserify ./example/main.js -o ./example/bundle.js -t [ babelify --presets [ es2015 react stage-0 ] ]", 49 | "serve-example": "http-server ./example/ -p 8080", 50 | "start": "npm run build-example && npm run serve-example", 51 | "deploy-example": "npm run build-example && gh-pages -d ./example", 52 | "test": "./node_modules/.bin/mocha ./tests/all.js --compilers js:babel-register --reporter=list" 53 | }, 54 | "keywords": [ 55 | "slate" 56 | ] 57 | } 58 | -------------------------------------------------------------------------------- /tests/all.js: -------------------------------------------------------------------------------- 1 | import expect from 'expect'; 2 | import fs from 'fs'; 3 | import path from 'path'; 4 | import Slate from '@gitbook/slate'; 5 | import readMetadata from 'read-metadata'; 6 | 7 | import EditBlockquote from '../lib'; 8 | 9 | const PLUGIN = EditBlockquote(); 10 | const SCHEMA = Slate.Schema.create({ 11 | plugins: [PLUGIN] 12 | }); 13 | 14 | function deserializeValue(json) { 15 | return Slate.Value.fromJSON( 16 | { ...json, schema: SCHEMA }, 17 | { normalize: false } 18 | ); 19 | } 20 | 21 | describe('slate-edit-blockquote', () => { 22 | const tests = fs.readdirSync(__dirname); 23 | 24 | tests.forEach((test, index) => { 25 | if (test[0] === '.' || path.extname(test).length > 0) return; 26 | it(test, () => { 27 | const dir = path.resolve(__dirname, test); 28 | const input = readMetadata.sync(path.resolve(dir, 'input.yaml')); 29 | const expectedPath = path.resolve(dir, 'expected.yaml'); 30 | const expected = 31 | fs.existsSync(expectedPath) && readMetadata.sync(expectedPath); 32 | 33 | // eslint-disable-next-line 34 | const runChange = require(path.resolve(dir, 'change.js')).default; 35 | 36 | const valueInput = deserializeValue(input); 37 | 38 | const newChange = runChange(PLUGIN, valueInput.change()); 39 | 40 | if (expected) { 41 | const newDocJSon = newChange.value.toJSON(); 42 | expect(newDocJSon).toEqual(deserializeValue(expected).toJSON()); 43 | } 44 | }); 45 | }); 46 | }); 47 | -------------------------------------------------------------------------------- /tests/backspace-quote-in-quote/change.js: -------------------------------------------------------------------------------- 1 | export default function(plugin, change) { 2 | const selectedBlock = change.value.document.getDescendant('_selection_key'); 3 | change.collapseToStartOf(selectedBlock); 4 | 5 | plugin.onKeyDown( 6 | { 7 | preventDefault() {}, 8 | stopPropagation() {}, 9 | key: 'Backspace' 10 | }, 11 | change, 12 | {} 13 | ); 14 | 15 | return change; 16 | } 17 | -------------------------------------------------------------------------------- /tests/backspace-quote-in-quote/expected.yaml: -------------------------------------------------------------------------------- 1 | document: 2 | nodes: 3 | - object: block 4 | type: blockquote 5 | nodes: 6 | - object: block 7 | type: paragraph 8 | nodes: 9 | - object: text 10 | leaves: 11 | - text: P1 12 | - object: block 13 | type: paragraph 14 | nodes: 15 | - object: text 16 | leaves: 17 | - text: "P2" 18 | - object: block 19 | type: paragraph 20 | nodes: 21 | - object: text 22 | leaves: 23 | - text: P3 24 | -------------------------------------------------------------------------------- /tests/backspace-quote-in-quote/input.yaml: -------------------------------------------------------------------------------- 1 | document: 2 | nodes: 3 | - object: block 4 | type: blockquote 5 | nodes: 6 | - object: block 7 | type: paragraph 8 | nodes: 9 | - object: text 10 | leaves: 11 | - text: P1 12 | - object: block 13 | type: blockquote 14 | nodes: 15 | - object: block 16 | type: paragraph 17 | key: '_selection_key' 18 | nodes: 19 | - object: text 20 | leaves: 21 | - text: "P2" 22 | - object: block 23 | type: paragraph 24 | nodes: 25 | - object: text 26 | leaves: 27 | - text: P3 28 | -------------------------------------------------------------------------------- /tests/backspace-start-block/change.js: -------------------------------------------------------------------------------- 1 | export default function(plugin, change) { 2 | const selectedBlock = change.value.document.getDescendant('_selection_key'); 3 | change.collapseToStartOf(selectedBlock); 4 | 5 | plugin.onKeyDown( 6 | { 7 | preventDefault() {}, 8 | stopPropagation() {}, 9 | key: 'Backspace' 10 | }, 11 | change, 12 | {} 13 | ); 14 | 15 | return change; 16 | } 17 | -------------------------------------------------------------------------------- /tests/backspace-start-block/expected.yaml: -------------------------------------------------------------------------------- 1 | document: 2 | nodes: 3 | - object: block 4 | type: blockquote 5 | nodes: 6 | - object: block 7 | type: paragraph 8 | nodes: 9 | - object: text 10 | leaves: 11 | - text: P1 12 | - object: block 13 | type: paragraph 14 | nodes: 15 | - object: text 16 | leaves: 17 | - text: "P2" 18 | - object: block 19 | type: blockquote 20 | nodes: 21 | - object: block 22 | type: paragraph 23 | nodes: 24 | - object: text 25 | leaves: 26 | - text: P3 27 | -------------------------------------------------------------------------------- /tests/backspace-start-block/input.yaml: -------------------------------------------------------------------------------- 1 | document: 2 | nodes: 3 | - object: block 4 | type: blockquote 5 | nodes: 6 | - object: block 7 | type: paragraph 8 | nodes: 9 | - object: text 10 | leaves: 11 | - text: P1 12 | - object: block 13 | type: paragraph 14 | key: '_selection_key' 15 | nodes: 16 | - object: text 17 | leaves: 18 | - text: "P2" 19 | - object: block 20 | type: paragraph 21 | nodes: 22 | - object: text 23 | leaves: 24 | - text: P3 25 | -------------------------------------------------------------------------------- /tests/enter-empty-middle/change.js: -------------------------------------------------------------------------------- 1 | export default function(plugin, change) { 2 | const selectedBlock = change.value.document.getDescendant('_selection_key'); 3 | change.collapseToStartOf(selectedBlock); 4 | 5 | plugin.onKeyDown( 6 | { 7 | preventDefault() {}, 8 | stopPropagation() {}, 9 | key: 'Enter' 10 | }, 11 | change, 12 | {} 13 | ); 14 | 15 | return change; 16 | } 17 | -------------------------------------------------------------------------------- /tests/enter-empty-middle/expected.yaml: -------------------------------------------------------------------------------- 1 | document: 2 | nodes: 3 | - object: block 4 | type: blockquote 5 | nodes: 6 | - object: block 7 | type: paragraph 8 | nodes: 9 | - object: text 10 | leaves: 11 | - text: P1 12 | - object: block 13 | type: paragraph 14 | nodes: 15 | - object: text 16 | leaves: 17 | - text: "" 18 | - object: block 19 | type: blockquote 20 | nodes: 21 | - object: block 22 | type: paragraph 23 | nodes: 24 | - object: text 25 | leaves: 26 | - text: P3 27 | -------------------------------------------------------------------------------- /tests/enter-empty-middle/input.yaml: -------------------------------------------------------------------------------- 1 | document: 2 | nodes: 3 | - object: block 4 | type: blockquote 5 | nodes: 6 | - object: block 7 | type: paragraph 8 | nodes: 9 | - object: text 10 | leaves: 11 | - text: P1 12 | - object: block 13 | type: paragraph 14 | key: '_selection_key' 15 | nodes: 16 | - object: text 17 | leaves: 18 | - text: "" 19 | - object: block 20 | type: paragraph 21 | nodes: 22 | - object: text 23 | leaves: 24 | - text: P3 25 | -------------------------------------------------------------------------------- /tests/enter-withtext-middle/change.js: -------------------------------------------------------------------------------- 1 | import expect from 'expect'; 2 | 3 | export default function(plugin, change) { 4 | const selectedBlock = change.value.document.getDescendant('_selection_key'); 5 | change.collapseToStartOf(selectedBlock); 6 | 7 | const newChange = plugin.onKeyDown( 8 | { 9 | preventDefault() {}, 10 | stopPropagation() {}, 11 | key: 'Enter' 12 | }, 13 | change, 14 | {} 15 | ); 16 | 17 | expect(newChange).toBe(undefined); 18 | 19 | return change; 20 | } 21 | -------------------------------------------------------------------------------- /tests/enter-withtext-middle/expected.yaml: -------------------------------------------------------------------------------- 1 | document: 2 | nodes: 3 | - object: block 4 | type: blockquote 5 | nodes: 6 | - object: block 7 | type: paragraph 8 | nodes: 9 | - object: text 10 | leaves: 11 | - text: P1 12 | - object: block 13 | type: paragraph 14 | nodes: 15 | - object: text 16 | leaves: 17 | - text: P2 18 | - object: block 19 | type: paragraph 20 | nodes: 21 | - object: text 22 | leaves: 23 | - text: P3 24 | -------------------------------------------------------------------------------- /tests/enter-withtext-middle/input.yaml: -------------------------------------------------------------------------------- 1 | document: 2 | nodes: 3 | - object: block 4 | type: blockquote 5 | nodes: 6 | - object: block 7 | type: paragraph 8 | nodes: 9 | - object: text 10 | leaves: 11 | - text: P1 12 | - object: block 13 | type: paragraph 14 | key: '_selection_key' 15 | nodes: 16 | - object: text 17 | leaves: 18 | - text: P2 19 | - object: block 20 | type: paragraph 21 | nodes: 22 | - object: text 23 | leaves: 24 | - text: P3 25 | -------------------------------------------------------------------------------- /tests/is-in-blockquote/change.js: -------------------------------------------------------------------------------- 1 | import expect from 'expect'; 2 | 3 | export default function(plugin, change) { 4 | const { document } = change.value; 5 | const noquote = document.getDescendant('noquote'); 6 | const quote = document.getDescendant('quote'); 7 | const quotedeep = document.getDescendant('quotedeep'); 8 | 9 | expect( 10 | plugin.utils.isSelectionInBlockquote( 11 | change.collapseToStartOf(noquote).value 12 | ) 13 | ).toBe(false); 14 | expect( 15 | plugin.utils.isSelectionInBlockquote( 16 | change.collapseToStartOf(quote).value 17 | ) 18 | ).toBe(true); 19 | expect( 20 | plugin.utils.isSelectionInBlockquote( 21 | change.collapseToStartOf(quotedeep).value 22 | ) 23 | ).toBe(false); 24 | } 25 | -------------------------------------------------------------------------------- /tests/is-in-blockquote/input.yaml: -------------------------------------------------------------------------------- 1 | document: 2 | nodes: 3 | - object: block 4 | type: paragraph 5 | nodes: 6 | - object: text 7 | key: noquote 8 | leaves: 9 | - text: Not in a quote 10 | - object: block 11 | type: blockquote 12 | nodes: 13 | - object: block 14 | type: paragraph 15 | nodes: 16 | - object: text 17 | key: quote 18 | leaves: 19 | - text: P1 20 | - object: block 21 | type: list 22 | nodes: 23 | - object: block 24 | type: item 25 | nodes: 26 | - object: text 27 | key: quotedeep 28 | leaves: 29 | - text: Deep 30 | -------------------------------------------------------------------------------- /tests/schema-items-contain-blocks/change.js: -------------------------------------------------------------------------------- 1 | export default function(plugin, change) { 2 | return change.normalize(); 3 | } 4 | -------------------------------------------------------------------------------- /tests/schema-items-contain-blocks/expected.yaml: -------------------------------------------------------------------------------- 1 | document: 2 | nodes: 3 | - object: block 4 | type: blockquote 5 | nodes: 6 | - object: block 7 | type: paragraph 8 | nodes: 9 | - object: text 10 | leaves: 11 | - text: "1st" 12 | - object: inline 13 | type: link 14 | nodes: 15 | - object: text 16 | leaves: 17 | - text: "2nd" 18 | - object: text 19 | leaves: 20 | - text: "" 21 | -------------------------------------------------------------------------------- /tests/schema-items-contain-blocks/input.yaml: -------------------------------------------------------------------------------- 1 | document: 2 | nodes: 3 | - object: block 4 | type: blockquote 5 | nodes: 6 | - object: text 7 | leaves: 8 | - text: "1st" 9 | - object: inline 10 | type: link 11 | nodes: 12 | - object: text 13 | leaves: 14 | - text: "2nd" 15 | - object: text 16 | leaves: 17 | - text: "" 18 | -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- 1 | # THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY. 2 | # yarn lockfile v1 3 | 4 | 5 | "@babel/code-frame@7.0.0-beta.31", "@babel/code-frame@^7.0.0-beta.31": 6 | version "7.0.0-beta.31" 7 | resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.0.0-beta.31.tgz#473d021ecc573a2cce1c07d5b509d5215f46ba35" 8 | dependencies: 9 | chalk "^2.0.0" 10 | esutils "^2.0.2" 11 | js-tokens "^3.0.0" 12 | 13 | "@babel/helper-function-name@7.0.0-beta.31": 14 | version "7.0.0-beta.31" 15 | resolved "https://registry.yarnpkg.com/@babel/helper-function-name/-/helper-function-name-7.0.0-beta.31.tgz#afe63ad799209989348b1109b44feb66aa245f57" 16 | dependencies: 17 | "@babel/helper-get-function-arity" "7.0.0-beta.31" 18 | "@babel/template" "7.0.0-beta.31" 19 | "@babel/traverse" "7.0.0-beta.31" 20 | "@babel/types" "7.0.0-beta.31" 21 | 22 | "@babel/helper-get-function-arity@7.0.0-beta.31": 23 | version "7.0.0-beta.31" 24 | resolved "https://registry.yarnpkg.com/@babel/helper-get-function-arity/-/helper-get-function-arity-7.0.0-beta.31.tgz#1176d79252741218e0aec872ada07efb2b37a493" 25 | dependencies: 26 | "@babel/types" "7.0.0-beta.31" 27 | 28 | "@babel/template@7.0.0-beta.31": 29 | version "7.0.0-beta.31" 30 | resolved "https://registry.yarnpkg.com/@babel/template/-/template-7.0.0-beta.31.tgz#577bb29389f6c497c3e7d014617e7d6713f68bda" 31 | dependencies: 32 | "@babel/code-frame" "7.0.0-beta.31" 33 | "@babel/types" "7.0.0-beta.31" 34 | babylon "7.0.0-beta.31" 35 | lodash "^4.2.0" 36 | 37 | "@babel/traverse@7.0.0-beta.31", "@babel/traverse@^7.0.0-beta.31": 38 | version "7.0.0-beta.31" 39 | resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.0.0-beta.31.tgz#db399499ad74aefda014f0c10321ab255134b1df" 40 | dependencies: 41 | "@babel/code-frame" "7.0.0-beta.31" 42 | "@babel/helper-function-name" "7.0.0-beta.31" 43 | "@babel/types" "7.0.0-beta.31" 44 | babylon "7.0.0-beta.31" 45 | debug "^3.0.1" 46 | globals "^10.0.0" 47 | invariant "^2.2.0" 48 | lodash "^4.2.0" 49 | 50 | "@babel/types@7.0.0-beta.31", "@babel/types@^7.0.0-beta.31": 51 | version "7.0.0-beta.31" 52 | resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.0.0-beta.31.tgz#42c9c86784f674c173fb21882ca9643334029de4" 53 | dependencies: 54 | esutils "^2.0.2" 55 | lodash "^4.2.0" 56 | to-fast-properties "^2.0.0" 57 | 58 | "@gitbook/slate-base64-serializer@^0.2.41": 59 | version "0.2.41" 60 | resolved "https://registry.yarnpkg.com/@gitbook/slate-base64-serializer/-/slate-base64-serializer-0.2.41.tgz#a391b62c8d87083137e3cd667ac604829103942f" 61 | dependencies: 62 | isomorphic-base64 "^1.0.2" 63 | 64 | "@gitbook/slate-dev-environment@^0.1.2": 65 | version "0.1.2" 66 | resolved "https://registry.yarnpkg.com/@gitbook/slate-dev-environment/-/slate-dev-environment-0.1.2.tgz#db3e0bc21a8c2e2833911ea6be010480d39feae4" 67 | dependencies: 68 | is-in-browser "^1.1.3" 69 | 70 | "@gitbook/slate-dev-logger@^0.1.39": 71 | version "0.1.39" 72 | resolved "https://registry.yarnpkg.com/@gitbook/slate-dev-logger/-/slate-dev-logger-0.1.39.tgz#86cb39b8c535a480d31ab3636007911b6f7a3742" 73 | 74 | "@gitbook/slate-hotkeys@^0.1.2": 75 | version "0.1.2" 76 | resolved "https://registry.yarnpkg.com/@gitbook/slate-hotkeys/-/slate-hotkeys-0.1.2.tgz#6ef554b925f84e72f99734196d42f7c6679c772b" 77 | dependencies: 78 | "@gitbook/slate-dev-environment" "^0.1.2" 79 | is-hotkey "^0.1.1" 80 | 81 | "@gitbook/slate-hyperscript@^0.5.22": 82 | version "0.5.22" 83 | resolved "https://registry.yarnpkg.com/@gitbook/slate-hyperscript/-/slate-hyperscript-0.5.22.tgz#b7fb270296852d961408840dd605cc0cdd156e19" 84 | dependencies: 85 | "@gitbook/slate-dev-logger" "^0.1.39" 86 | is-empty "^1.0.0" 87 | is-plain-object "^2.0.4" 88 | 89 | "@gitbook/slate-plain-serializer@^0.5.22": 90 | version "0.5.22" 91 | resolved "https://registry.yarnpkg.com/@gitbook/slate-plain-serializer/-/slate-plain-serializer-0.5.22.tgz#68f2dc82443ae6b326d17d379d44cdfb418dcebc" 92 | dependencies: 93 | "@gitbook/slate-dev-logger" "^0.1.39" 94 | 95 | "@gitbook/slate-prop-types@^0.4.39": 96 | version "0.4.39" 97 | resolved "https://registry.yarnpkg.com/@gitbook/slate-prop-types/-/slate-prop-types-0.4.39.tgz#267cfc25c860b8feb73af733c0d8a524a8801cea" 98 | dependencies: 99 | "@gitbook/slate-dev-logger" "^0.1.39" 100 | 101 | "@gitbook/slate-react@^0.13.4": 102 | version "0.13.4" 103 | resolved "https://registry.yarnpkg.com/@gitbook/slate-react/-/slate-react-0.13.4.tgz#d07f4ecc384900d20284d19e27b8eb9e1982cdd8" 104 | dependencies: 105 | "@gitbook/slate-base64-serializer" "^0.2.41" 106 | "@gitbook/slate-dev-environment" "^0.1.2" 107 | "@gitbook/slate-dev-logger" "^0.1.39" 108 | "@gitbook/slate-hotkeys" "^0.1.2" 109 | "@gitbook/slate-plain-serializer" "^0.5.22" 110 | "@gitbook/slate-prop-types" "^0.4.39" 111 | debug "^3.1.0" 112 | get-window "^1.1.1" 113 | is-window "^1.0.2" 114 | keycode "^2.1.2" 115 | lodash "^4.1.1" 116 | prop-types "^15.5.8" 117 | react-immutable-proptypes "^2.1.0" 118 | react-portal "^3.1.0" 119 | selection-is-backward "^1.0.0" 120 | 121 | "@gitbook/slate-schema-violations@^0.1.20": 122 | version "0.1.20" 123 | resolved "https://registry.yarnpkg.com/@gitbook/slate-schema-violations/-/slate-schema-violations-0.1.20.tgz#1e799757b79472a15938f05cd90923ea6750388b" 124 | 125 | "@gitbook/slate@^0.34.7": 126 | version "0.34.7" 127 | resolved "https://registry.yarnpkg.com/@gitbook/slate/-/slate-0.34.7.tgz#ecc0ddeac9d5e8380fb4b93e1b47306d139504ba" 128 | dependencies: 129 | "@gitbook/slate-dev-logger" "^0.1.39" 130 | "@gitbook/slate-schema-violations" "^0.1.20" 131 | debug "^3.1.0" 132 | direction "^0.1.5" 133 | esrever "^0.2.0" 134 | is-empty "^1.0.0" 135 | is-plain-object "^2.0.4" 136 | lodash "^4.17.4" 137 | type-of "^2.0.1" 138 | 139 | JSONStream@^1.0.3: 140 | version "1.2.1" 141 | resolved "https://registry.yarnpkg.com/JSONStream/-/JSONStream-1.2.1.tgz#32aa5790e799481083b49b4b7fa94e23bae69bf9" 142 | dependencies: 143 | jsonparse "^1.2.0" 144 | through ">=2.2.7 <3" 145 | 146 | abbrev@1: 147 | version "1.0.9" 148 | resolved "https://registry.yarnpkg.com/abbrev/-/abbrev-1.0.9.tgz#91b4792588a7738c25f35dd6f63752a2f8776135" 149 | 150 | acorn-jsx@^3.0.0: 151 | version "3.0.1" 152 | resolved "https://registry.yarnpkg.com/acorn-jsx/-/acorn-jsx-3.0.1.tgz#afdf9488fb1ecefc8348f6fb22f464e32a58b36b" 153 | dependencies: 154 | acorn "^3.0.4" 155 | 156 | acorn@^1.0.3: 157 | version "1.2.2" 158 | resolved "https://registry.yarnpkg.com/acorn/-/acorn-1.2.2.tgz#c8ce27de0acc76d896d2b1fad3df588d9e82f014" 159 | 160 | acorn@^2.7.0: 161 | version "2.7.0" 162 | resolved "https://registry.yarnpkg.com/acorn/-/acorn-2.7.0.tgz#ab6e7d9d886aaca8b085bc3312b79a198433f0e7" 163 | 164 | acorn@^3.0.4, acorn@^3.1.0: 165 | version "3.3.0" 166 | resolved "https://registry.yarnpkg.com/acorn/-/acorn-3.3.0.tgz#45e37fb39e8da3f25baee3ff5369e2bb5f22017a" 167 | 168 | acorn@^5.1.1: 169 | version "5.2.1" 170 | resolved "https://registry.yarnpkg.com/acorn/-/acorn-5.2.1.tgz#317ac7821826c22c702d66189ab8359675f135d7" 171 | 172 | ajv-keywords@^2.1.0: 173 | version "2.1.1" 174 | resolved "https://registry.yarnpkg.com/ajv-keywords/-/ajv-keywords-2.1.1.tgz#617997fc5f60576894c435f940d819e135b80762" 175 | 176 | ajv@^5.2.0, ajv@^5.2.3: 177 | version "5.3.0" 178 | resolved "https://registry.yarnpkg.com/ajv/-/ajv-5.3.0.tgz#4414ff74a50879c208ee5fdc826e32c303549eda" 179 | dependencies: 180 | co "^4.6.0" 181 | fast-deep-equal "^1.0.0" 182 | fast-json-stable-stringify "^2.0.0" 183 | json-schema-traverse "^0.3.0" 184 | 185 | ansi-escapes@^3.0.0: 186 | version "3.0.0" 187 | resolved "https://registry.yarnpkg.com/ansi-escapes/-/ansi-escapes-3.0.0.tgz#ec3e8b4e9f8064fc02c3ac9b65f1c275bda8ef92" 188 | 189 | ansi-regex@^2.0.0: 190 | version "2.0.0" 191 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-2.0.0.tgz#c5061b6e0ef8a81775e50f5d66151bf6bf371107" 192 | 193 | ansi-regex@^3.0.0: 194 | version "3.0.0" 195 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-3.0.0.tgz#ed0317c322064f79466c02966bddb605ab37d998" 196 | 197 | ansi-styles@^2.2.1: 198 | version "2.2.1" 199 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-2.2.1.tgz#b432dd3358b634cf75e1e4664368240533c1ddbe" 200 | 201 | ansi-styles@^3.1.0: 202 | version "3.2.0" 203 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-3.2.0.tgz#c159b8d5be0f9e5a6f346dab94f16ce022161b88" 204 | dependencies: 205 | color-convert "^1.9.0" 206 | 207 | anymatch@^1.3.0: 208 | version "1.3.0" 209 | resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-1.3.0.tgz#a3e52fa39168c825ff57b0248126ce5a8ff95507" 210 | dependencies: 211 | arrify "^1.0.0" 212 | micromatch "^2.1.5" 213 | 214 | aproba@^1.0.3: 215 | version "1.0.4" 216 | resolved "https://registry.yarnpkg.com/aproba/-/aproba-1.0.4.tgz#2713680775e7614c8ba186c065d4e2e52d1072c0" 217 | 218 | are-we-there-yet@~1.1.2: 219 | version "1.1.2" 220 | resolved "https://registry.yarnpkg.com/are-we-there-yet/-/are-we-there-yet-1.1.2.tgz#80e470e95a084794fe1899262c5667c6e88de1b3" 221 | dependencies: 222 | delegates "^1.0.0" 223 | readable-stream "^2.0.0 || ^1.1.13" 224 | 225 | argparse@^1.0.7: 226 | version "1.0.9" 227 | resolved "https://registry.yarnpkg.com/argparse/-/argparse-1.0.9.tgz#73d83bc263f86e97f8cc4f6bae1b0e90a7d22c86" 228 | dependencies: 229 | sprintf-js "~1.0.2" 230 | 231 | aria-query@^0.7.0: 232 | version "0.7.0" 233 | resolved "https://registry.yarnpkg.com/aria-query/-/aria-query-0.7.0.tgz#4af10a1e61573ddea0cf3b99b51c52c05b424d24" 234 | dependencies: 235 | ast-types-flow "0.0.7" 236 | 237 | arr-diff@^2.0.0: 238 | version "2.0.0" 239 | resolved "https://registry.yarnpkg.com/arr-diff/-/arr-diff-2.0.0.tgz#8f3b827f955a8bd669697e4a4256ac3ceae356cf" 240 | dependencies: 241 | arr-flatten "^1.0.1" 242 | 243 | arr-flatten@^1.0.1: 244 | version "1.0.1" 245 | resolved "https://registry.yarnpkg.com/arr-flatten/-/arr-flatten-1.0.1.tgz#e5ffe54d45e19f32f216e91eb99c8ce892bb604b" 246 | 247 | array-filter@~0.0.0: 248 | version "0.0.1" 249 | resolved "https://registry.yarnpkg.com/array-filter/-/array-filter-0.0.1.tgz#7da8cf2e26628ed732803581fd21f67cacd2eeec" 250 | 251 | array-includes@^3.0.3: 252 | version "3.0.3" 253 | resolved "https://registry.yarnpkg.com/array-includes/-/array-includes-3.0.3.tgz#184b48f62d92d7452bb31b323165c7f8bd02266d" 254 | dependencies: 255 | define-properties "^1.1.2" 256 | es-abstract "^1.7.0" 257 | 258 | array-map@~0.0.0: 259 | version "0.0.0" 260 | resolved "https://registry.yarnpkg.com/array-map/-/array-map-0.0.0.tgz#88a2bab73d1cf7bcd5c1b118a003f66f665fa662" 261 | 262 | array-reduce@~0.0.0: 263 | version "0.0.0" 264 | resolved "https://registry.yarnpkg.com/array-reduce/-/array-reduce-0.0.0.tgz#173899d3ffd1c7d9383e4479525dbe278cab5f2b" 265 | 266 | array-union@^1.0.1: 267 | version "1.0.2" 268 | resolved "https://registry.yarnpkg.com/array-union/-/array-union-1.0.2.tgz#9a34410e4f4e3da23dea375be5be70f24778ec39" 269 | dependencies: 270 | array-uniq "^1.0.1" 271 | 272 | array-uniq@^1.0.1: 273 | version "1.0.3" 274 | resolved "https://registry.yarnpkg.com/array-uniq/-/array-uniq-1.0.3.tgz#af6ac877a25cc7f74e058894753858dfdb24fdb6" 275 | 276 | array-unique@^0.2.1: 277 | version "0.2.1" 278 | resolved "https://registry.yarnpkg.com/array-unique/-/array-unique-0.2.1.tgz#a1d97ccafcbc2625cc70fadceb36a50c58b01a53" 279 | 280 | arrify@^1.0.0: 281 | version "1.0.1" 282 | resolved "https://registry.yarnpkg.com/arrify/-/arrify-1.0.1.tgz#898508da2226f380df904728456849c1501a4b0d" 283 | 284 | asap@~2.0.3: 285 | version "2.0.5" 286 | resolved "https://registry.yarnpkg.com/asap/-/asap-2.0.5.tgz#522765b50c3510490e52d7dcfe085ef9ba96958f" 287 | 288 | asn1.js@^4.0.0: 289 | version "4.9.0" 290 | resolved "https://registry.yarnpkg.com/asn1.js/-/asn1.js-4.9.0.tgz#f71a1243f3e79d46d7b07d7fbf4824ee73af054a" 291 | dependencies: 292 | bn.js "^4.0.0" 293 | inherits "^2.0.1" 294 | minimalistic-assert "^1.0.0" 295 | 296 | asn1@~0.2.3: 297 | version "0.2.3" 298 | resolved "https://registry.yarnpkg.com/asn1/-/asn1-0.2.3.tgz#dac8787713c9966849fc8180777ebe9c1ddf3b86" 299 | 300 | assert-plus@^0.2.0: 301 | version "0.2.0" 302 | resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-0.2.0.tgz#d74e1b87e7affc0db8aadb7021f3fe48101ab234" 303 | 304 | assert-plus@^1.0.0: 305 | version "1.0.0" 306 | resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-1.0.0.tgz#f12e0f3c5d77b0b1cdd9146942e4e96c1e4dd525" 307 | 308 | assert@^1.4.0: 309 | version "1.4.1" 310 | resolved "https://registry.yarnpkg.com/assert/-/assert-1.4.1.tgz#99912d591836b5a6f5b345c0f07eefc08fc65d91" 311 | dependencies: 312 | util "0.10.3" 313 | 314 | ast-types-flow@0.0.7: 315 | version "0.0.7" 316 | resolved "https://registry.yarnpkg.com/ast-types-flow/-/ast-types-flow-0.0.7.tgz#f70b735c6bca1a5c9c22d982c3e39e7feba3bdad" 317 | 318 | astw@^2.0.0: 319 | version "2.0.0" 320 | resolved "https://registry.yarnpkg.com/astw/-/astw-2.0.0.tgz#08121ac8288d35611c0ceec663f6cd545604897d" 321 | dependencies: 322 | acorn "^1.0.3" 323 | 324 | async-each@^1.0.0: 325 | version "1.0.1" 326 | resolved "https://registry.yarnpkg.com/async-each/-/async-each-1.0.1.tgz#19d386a1d9edc6e7c1c85d388aedbcc56d33602d" 327 | 328 | async@0.9.0: 329 | version "0.9.0" 330 | resolved "https://registry.yarnpkg.com/async/-/async-0.9.0.tgz#ac3613b1da9bed1b47510bb4651b8931e47146c7" 331 | 332 | async@1.5.2: 333 | version "1.5.2" 334 | resolved "https://registry.yarnpkg.com/async/-/async-1.5.2.tgz#ec6a61ae56480c0c3cb241c95618e20892f9672a" 335 | 336 | asynckit@^0.4.0: 337 | version "0.4.0" 338 | resolved "https://registry.yarnpkg.com/asynckit/-/asynckit-0.4.0.tgz#c79ed97f7f34cb8f2ba1bc9790bcc366474b4b79" 339 | 340 | aws-sign2@~0.6.0: 341 | version "0.6.0" 342 | resolved "https://registry.yarnpkg.com/aws-sign2/-/aws-sign2-0.6.0.tgz#14342dd38dbcc94d0e5b87d763cd63612c0e794f" 343 | 344 | aws4@^1.2.1: 345 | version "1.5.0" 346 | resolved "https://registry.yarnpkg.com/aws4/-/aws4-1.5.0.tgz#0a29ffb79c31c9e712eeb087e8e7a64b4a56d755" 347 | 348 | axobject-query@^0.1.0: 349 | version "0.1.0" 350 | resolved "https://registry.yarnpkg.com/axobject-query/-/axobject-query-0.1.0.tgz#62f59dbc59c9f9242759ca349960e7a2fe3c36c0" 351 | dependencies: 352 | ast-types-flow "0.0.7" 353 | 354 | babel-cli@^6.26.0: 355 | version "6.26.0" 356 | resolved "https://registry.yarnpkg.com/babel-cli/-/babel-cli-6.26.0.tgz#502ab54874d7db88ad00b887a06383ce03d002f1" 357 | dependencies: 358 | babel-core "^6.26.0" 359 | babel-polyfill "^6.26.0" 360 | babel-register "^6.26.0" 361 | babel-runtime "^6.26.0" 362 | commander "^2.11.0" 363 | convert-source-map "^1.5.0" 364 | fs-readdir-recursive "^1.0.0" 365 | glob "^7.1.2" 366 | lodash "^4.17.4" 367 | output-file-sync "^1.1.2" 368 | path-is-absolute "^1.0.1" 369 | slash "^1.0.0" 370 | source-map "^0.5.6" 371 | v8flags "^2.1.1" 372 | optionalDependencies: 373 | chokidar "^1.6.1" 374 | 375 | babel-code-frame@^6.22.0, babel-code-frame@^6.26.0: 376 | version "6.26.0" 377 | resolved "https://registry.yarnpkg.com/babel-code-frame/-/babel-code-frame-6.26.0.tgz#63fd43f7dc1e3bb7ce35947db8fe369a3f58c74b" 378 | dependencies: 379 | chalk "^1.1.3" 380 | esutils "^2.0.2" 381 | js-tokens "^3.0.2" 382 | 383 | babel-core@^6.26.0: 384 | version "6.26.0" 385 | resolved "https://registry.yarnpkg.com/babel-core/-/babel-core-6.26.0.tgz#af32f78b31a6fcef119c87b0fd8d9753f03a0bb8" 386 | dependencies: 387 | babel-code-frame "^6.26.0" 388 | babel-generator "^6.26.0" 389 | babel-helpers "^6.24.1" 390 | babel-messages "^6.23.0" 391 | babel-register "^6.26.0" 392 | babel-runtime "^6.26.0" 393 | babel-template "^6.26.0" 394 | babel-traverse "^6.26.0" 395 | babel-types "^6.26.0" 396 | babylon "^6.18.0" 397 | convert-source-map "^1.5.0" 398 | debug "^2.6.8" 399 | json5 "^0.5.1" 400 | lodash "^4.17.4" 401 | minimatch "^3.0.4" 402 | path-is-absolute "^1.0.1" 403 | private "^0.1.7" 404 | slash "^1.0.0" 405 | source-map "^0.5.6" 406 | 407 | babel-eslint@^8.0.0, babel-eslint@^8.0.2: 408 | version "8.0.2" 409 | resolved "https://registry.yarnpkg.com/babel-eslint/-/babel-eslint-8.0.2.tgz#e44fb9a037d749486071d52d65312f5c20aa7530" 410 | dependencies: 411 | "@babel/code-frame" "^7.0.0-beta.31" 412 | "@babel/traverse" "^7.0.0-beta.31" 413 | "@babel/types" "^7.0.0-beta.31" 414 | babylon "^7.0.0-beta.31" 415 | 416 | babel-generator@^6.26.0: 417 | version "6.26.0" 418 | resolved "https://registry.yarnpkg.com/babel-generator/-/babel-generator-6.26.0.tgz#ac1ae20070b79f6e3ca1d3269613053774f20dc5" 419 | dependencies: 420 | babel-messages "^6.23.0" 421 | babel-runtime "^6.26.0" 422 | babel-types "^6.26.0" 423 | detect-indent "^4.0.0" 424 | jsesc "^1.3.0" 425 | lodash "^4.17.4" 426 | source-map "^0.5.6" 427 | trim-right "^1.0.1" 428 | 429 | babel-helper-bindify-decorators@^6.24.1: 430 | version "6.24.1" 431 | resolved "https://registry.yarnpkg.com/babel-helper-bindify-decorators/-/babel-helper-bindify-decorators-6.24.1.tgz#14c19e5f142d7b47f19a52431e52b1ccbc40a330" 432 | dependencies: 433 | babel-runtime "^6.22.0" 434 | babel-traverse "^6.24.1" 435 | babel-types "^6.24.1" 436 | 437 | babel-helper-builder-binary-assignment-operator-visitor@^6.24.1: 438 | version "6.24.1" 439 | resolved "https://registry.yarnpkg.com/babel-helper-builder-binary-assignment-operator-visitor/-/babel-helper-builder-binary-assignment-operator-visitor-6.24.1.tgz#cce4517ada356f4220bcae8a02c2b346f9a56664" 440 | dependencies: 441 | babel-helper-explode-assignable-expression "^6.24.1" 442 | babel-runtime "^6.22.0" 443 | babel-types "^6.24.1" 444 | 445 | babel-helper-builder-react-jsx@^6.24.1: 446 | version "6.26.0" 447 | resolved "https://registry.yarnpkg.com/babel-helper-builder-react-jsx/-/babel-helper-builder-react-jsx-6.26.0.tgz#39ff8313b75c8b65dceff1f31d383e0ff2a408a0" 448 | dependencies: 449 | babel-runtime "^6.26.0" 450 | babel-types "^6.26.0" 451 | esutils "^2.0.2" 452 | 453 | babel-helper-call-delegate@^6.24.1: 454 | version "6.24.1" 455 | resolved "https://registry.yarnpkg.com/babel-helper-call-delegate/-/babel-helper-call-delegate-6.24.1.tgz#ece6aacddc76e41c3461f88bfc575bd0daa2df8d" 456 | dependencies: 457 | babel-helper-hoist-variables "^6.24.1" 458 | babel-runtime "^6.22.0" 459 | babel-traverse "^6.24.1" 460 | babel-types "^6.24.1" 461 | 462 | babel-helper-define-map@^6.24.1: 463 | version "6.26.0" 464 | resolved "https://registry.yarnpkg.com/babel-helper-define-map/-/babel-helper-define-map-6.26.0.tgz#a5f56dab41a25f97ecb498c7ebaca9819f95be5f" 465 | dependencies: 466 | babel-helper-function-name "^6.24.1" 467 | babel-runtime "^6.26.0" 468 | babel-types "^6.26.0" 469 | lodash "^4.17.4" 470 | 471 | babel-helper-explode-assignable-expression@^6.24.1: 472 | version "6.24.1" 473 | resolved "https://registry.yarnpkg.com/babel-helper-explode-assignable-expression/-/babel-helper-explode-assignable-expression-6.24.1.tgz#f25b82cf7dc10433c55f70592d5746400ac22caa" 474 | dependencies: 475 | babel-runtime "^6.22.0" 476 | babel-traverse "^6.24.1" 477 | babel-types "^6.24.1" 478 | 479 | babel-helper-explode-class@^6.24.1: 480 | version "6.24.1" 481 | resolved "https://registry.yarnpkg.com/babel-helper-explode-class/-/babel-helper-explode-class-6.24.1.tgz#7dc2a3910dee007056e1e31d640ced3d54eaa9eb" 482 | dependencies: 483 | babel-helper-bindify-decorators "^6.24.1" 484 | babel-runtime "^6.22.0" 485 | babel-traverse "^6.24.1" 486 | babel-types "^6.24.1" 487 | 488 | babel-helper-function-name@^6.24.1: 489 | version "6.24.1" 490 | resolved "https://registry.yarnpkg.com/babel-helper-function-name/-/babel-helper-function-name-6.24.1.tgz#d3475b8c03ed98242a25b48351ab18399d3580a9" 491 | dependencies: 492 | babel-helper-get-function-arity "^6.24.1" 493 | babel-runtime "^6.22.0" 494 | babel-template "^6.24.1" 495 | babel-traverse "^6.24.1" 496 | babel-types "^6.24.1" 497 | 498 | babel-helper-get-function-arity@^6.24.1: 499 | version "6.24.1" 500 | resolved "https://registry.yarnpkg.com/babel-helper-get-function-arity/-/babel-helper-get-function-arity-6.24.1.tgz#8f7782aa93407c41d3aa50908f89b031b1b6853d" 501 | dependencies: 502 | babel-runtime "^6.22.0" 503 | babel-types "^6.24.1" 504 | 505 | babel-helper-hoist-variables@^6.24.1: 506 | version "6.24.1" 507 | resolved "https://registry.yarnpkg.com/babel-helper-hoist-variables/-/babel-helper-hoist-variables-6.24.1.tgz#1ecb27689c9d25513eadbc9914a73f5408be7a76" 508 | dependencies: 509 | babel-runtime "^6.22.0" 510 | babel-types "^6.24.1" 511 | 512 | babel-helper-optimise-call-expression@^6.24.1: 513 | version "6.24.1" 514 | resolved "https://registry.yarnpkg.com/babel-helper-optimise-call-expression/-/babel-helper-optimise-call-expression-6.24.1.tgz#f7a13427ba9f73f8f4fa993c54a97882d1244257" 515 | dependencies: 516 | babel-runtime "^6.22.0" 517 | babel-types "^6.24.1" 518 | 519 | babel-helper-regex@^6.24.1: 520 | version "6.26.0" 521 | resolved "https://registry.yarnpkg.com/babel-helper-regex/-/babel-helper-regex-6.26.0.tgz#325c59f902f82f24b74faceed0363954f6495e72" 522 | dependencies: 523 | babel-runtime "^6.26.0" 524 | babel-types "^6.26.0" 525 | lodash "^4.17.4" 526 | 527 | babel-helper-remap-async-to-generator@^6.24.1: 528 | version "6.24.1" 529 | resolved "https://registry.yarnpkg.com/babel-helper-remap-async-to-generator/-/babel-helper-remap-async-to-generator-6.24.1.tgz#5ec581827ad723fecdd381f1c928390676e4551b" 530 | dependencies: 531 | babel-helper-function-name "^6.24.1" 532 | babel-runtime "^6.22.0" 533 | babel-template "^6.24.1" 534 | babel-traverse "^6.24.1" 535 | babel-types "^6.24.1" 536 | 537 | babel-helper-replace-supers@^6.24.1: 538 | version "6.24.1" 539 | resolved "https://registry.yarnpkg.com/babel-helper-replace-supers/-/babel-helper-replace-supers-6.24.1.tgz#bf6dbfe43938d17369a213ca8a8bf74b6a90ab1a" 540 | dependencies: 541 | babel-helper-optimise-call-expression "^6.24.1" 542 | babel-messages "^6.23.0" 543 | babel-runtime "^6.22.0" 544 | babel-template "^6.24.1" 545 | babel-traverse "^6.24.1" 546 | babel-types "^6.24.1" 547 | 548 | babel-helpers@^6.24.1: 549 | version "6.24.1" 550 | resolved "https://registry.yarnpkg.com/babel-helpers/-/babel-helpers-6.24.1.tgz#3471de9caec388e5c850e597e58a26ddf37602b2" 551 | dependencies: 552 | babel-runtime "^6.22.0" 553 | babel-template "^6.24.1" 554 | 555 | babel-messages@^6.23.0: 556 | version "6.23.0" 557 | resolved "https://registry.yarnpkg.com/babel-messages/-/babel-messages-6.23.0.tgz#f3cdf4703858035b2a2951c6ec5edf6c62f2630e" 558 | dependencies: 559 | babel-runtime "^6.22.0" 560 | 561 | babel-plugin-check-es2015-constants@^6.22.0: 562 | version "6.22.0" 563 | resolved "https://registry.yarnpkg.com/babel-plugin-check-es2015-constants/-/babel-plugin-check-es2015-constants-6.22.0.tgz#35157b101426fd2ffd3da3f75c7d1e91835bbf8a" 564 | dependencies: 565 | babel-runtime "^6.22.0" 566 | 567 | babel-plugin-syntax-async-functions@^6.8.0: 568 | version "6.13.0" 569 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-async-functions/-/babel-plugin-syntax-async-functions-6.13.0.tgz#cad9cad1191b5ad634bf30ae0872391e0647be95" 570 | 571 | babel-plugin-syntax-async-generators@^6.5.0: 572 | version "6.13.0" 573 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-async-generators/-/babel-plugin-syntax-async-generators-6.13.0.tgz#6bc963ebb16eccbae6b92b596eb7f35c342a8b9a" 574 | 575 | babel-plugin-syntax-class-constructor-call@^6.18.0: 576 | version "6.18.0" 577 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-class-constructor-call/-/babel-plugin-syntax-class-constructor-call-6.18.0.tgz#9cb9d39fe43c8600bec8146456ddcbd4e1a76416" 578 | 579 | babel-plugin-syntax-class-properties@^6.8.0: 580 | version "6.13.0" 581 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-class-properties/-/babel-plugin-syntax-class-properties-6.13.0.tgz#d7eb23b79a317f8543962c505b827c7d6cac27de" 582 | 583 | babel-plugin-syntax-decorators@^6.13.0: 584 | version "6.13.0" 585 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-decorators/-/babel-plugin-syntax-decorators-6.13.0.tgz#312563b4dbde3cc806cee3e416cceeaddd11ac0b" 586 | 587 | babel-plugin-syntax-do-expressions@^6.8.0: 588 | version "6.13.0" 589 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-do-expressions/-/babel-plugin-syntax-do-expressions-6.13.0.tgz#5747756139aa26d390d09410b03744ba07e4796d" 590 | 591 | babel-plugin-syntax-dynamic-import@^6.18.0: 592 | version "6.18.0" 593 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-dynamic-import/-/babel-plugin-syntax-dynamic-import-6.18.0.tgz#8d6a26229c83745a9982a441051572caa179b1da" 594 | 595 | babel-plugin-syntax-exponentiation-operator@^6.8.0: 596 | version "6.13.0" 597 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-exponentiation-operator/-/babel-plugin-syntax-exponentiation-operator-6.13.0.tgz#9ee7e8337290da95288201a6a57f4170317830de" 598 | 599 | babel-plugin-syntax-export-extensions@^6.8.0: 600 | version "6.13.0" 601 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-export-extensions/-/babel-plugin-syntax-export-extensions-6.13.0.tgz#70a1484f0f9089a4e84ad44bac353c95b9b12721" 602 | 603 | babel-plugin-syntax-flow@^6.18.0: 604 | version "6.18.0" 605 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-flow/-/babel-plugin-syntax-flow-6.18.0.tgz#4c3ab20a2af26aa20cd25995c398c4eb70310c8d" 606 | 607 | babel-plugin-syntax-function-bind@^6.8.0: 608 | version "6.13.0" 609 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-function-bind/-/babel-plugin-syntax-function-bind-6.13.0.tgz#48c495f177bdf31a981e732f55adc0bdd2601f46" 610 | 611 | babel-plugin-syntax-jsx@^6.3.13, babel-plugin-syntax-jsx@^6.8.0: 612 | version "6.18.0" 613 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-jsx/-/babel-plugin-syntax-jsx-6.18.0.tgz#0af32a9a6e13ca7a3fd5069e62d7b0f58d0d8946" 614 | 615 | babel-plugin-syntax-object-rest-spread@^6.8.0: 616 | version "6.13.0" 617 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-object-rest-spread/-/babel-plugin-syntax-object-rest-spread-6.13.0.tgz#fd6536f2bce13836ffa3a5458c4903a597bb3bf5" 618 | 619 | babel-plugin-syntax-trailing-function-commas@^6.22.0: 620 | version "6.22.0" 621 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-trailing-function-commas/-/babel-plugin-syntax-trailing-function-commas-6.22.0.tgz#ba0360937f8d06e40180a43fe0d5616fff532cf3" 622 | 623 | babel-plugin-transform-async-generator-functions@^6.24.1: 624 | version "6.24.1" 625 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-async-generator-functions/-/babel-plugin-transform-async-generator-functions-6.24.1.tgz#f058900145fd3e9907a6ddf28da59f215258a5db" 626 | dependencies: 627 | babel-helper-remap-async-to-generator "^6.24.1" 628 | babel-plugin-syntax-async-generators "^6.5.0" 629 | babel-runtime "^6.22.0" 630 | 631 | babel-plugin-transform-async-to-generator@^6.24.1: 632 | version "6.24.1" 633 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-async-to-generator/-/babel-plugin-transform-async-to-generator-6.24.1.tgz#6536e378aff6cb1d5517ac0e40eb3e9fc8d08761" 634 | dependencies: 635 | babel-helper-remap-async-to-generator "^6.24.1" 636 | babel-plugin-syntax-async-functions "^6.8.0" 637 | babel-runtime "^6.22.0" 638 | 639 | babel-plugin-transform-class-constructor-call@^6.24.1: 640 | version "6.24.1" 641 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-class-constructor-call/-/babel-plugin-transform-class-constructor-call-6.24.1.tgz#80dc285505ac067dcb8d6c65e2f6f11ab7765ef9" 642 | dependencies: 643 | babel-plugin-syntax-class-constructor-call "^6.18.0" 644 | babel-runtime "^6.22.0" 645 | babel-template "^6.24.1" 646 | 647 | babel-plugin-transform-class-properties@^6.24.1: 648 | version "6.24.1" 649 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-class-properties/-/babel-plugin-transform-class-properties-6.24.1.tgz#6a79763ea61d33d36f37b611aa9def81a81b46ac" 650 | dependencies: 651 | babel-helper-function-name "^6.24.1" 652 | babel-plugin-syntax-class-properties "^6.8.0" 653 | babel-runtime "^6.22.0" 654 | babel-template "^6.24.1" 655 | 656 | babel-plugin-transform-decorators@^6.24.1: 657 | version "6.24.1" 658 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-decorators/-/babel-plugin-transform-decorators-6.24.1.tgz#788013d8f8c6b5222bdf7b344390dfd77569e24d" 659 | dependencies: 660 | babel-helper-explode-class "^6.24.1" 661 | babel-plugin-syntax-decorators "^6.13.0" 662 | babel-runtime "^6.22.0" 663 | babel-template "^6.24.1" 664 | babel-types "^6.24.1" 665 | 666 | babel-plugin-transform-do-expressions@^6.22.0: 667 | version "6.22.0" 668 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-do-expressions/-/babel-plugin-transform-do-expressions-6.22.0.tgz#28ccaf92812d949c2cd1281f690c8fdc468ae9bb" 669 | dependencies: 670 | babel-plugin-syntax-do-expressions "^6.8.0" 671 | babel-runtime "^6.22.0" 672 | 673 | babel-plugin-transform-es2015-arrow-functions@^6.22.0: 674 | version "6.22.0" 675 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-arrow-functions/-/babel-plugin-transform-es2015-arrow-functions-6.22.0.tgz#452692cb711d5f79dc7f85e440ce41b9f244d221" 676 | dependencies: 677 | babel-runtime "^6.22.0" 678 | 679 | babel-plugin-transform-es2015-block-scoped-functions@^6.22.0: 680 | version "6.22.0" 681 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-block-scoped-functions/-/babel-plugin-transform-es2015-block-scoped-functions-6.22.0.tgz#bbc51b49f964d70cb8d8e0b94e820246ce3a6141" 682 | dependencies: 683 | babel-runtime "^6.22.0" 684 | 685 | babel-plugin-transform-es2015-block-scoping@^6.24.1: 686 | version "6.26.0" 687 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-block-scoping/-/babel-plugin-transform-es2015-block-scoping-6.26.0.tgz#d70f5299c1308d05c12f463813b0a09e73b1895f" 688 | dependencies: 689 | babel-runtime "^6.26.0" 690 | babel-template "^6.26.0" 691 | babel-traverse "^6.26.0" 692 | babel-types "^6.26.0" 693 | lodash "^4.17.4" 694 | 695 | babel-plugin-transform-es2015-classes@^6.24.1: 696 | version "6.24.1" 697 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-classes/-/babel-plugin-transform-es2015-classes-6.24.1.tgz#5a4c58a50c9c9461e564b4b2a3bfabc97a2584db" 698 | dependencies: 699 | babel-helper-define-map "^6.24.1" 700 | babel-helper-function-name "^6.24.1" 701 | babel-helper-optimise-call-expression "^6.24.1" 702 | babel-helper-replace-supers "^6.24.1" 703 | babel-messages "^6.23.0" 704 | babel-runtime "^6.22.0" 705 | babel-template "^6.24.1" 706 | babel-traverse "^6.24.1" 707 | babel-types "^6.24.1" 708 | 709 | babel-plugin-transform-es2015-computed-properties@^6.24.1: 710 | version "6.24.1" 711 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-computed-properties/-/babel-plugin-transform-es2015-computed-properties-6.24.1.tgz#6fe2a8d16895d5634f4cd999b6d3480a308159b3" 712 | dependencies: 713 | babel-runtime "^6.22.0" 714 | babel-template "^6.24.1" 715 | 716 | babel-plugin-transform-es2015-destructuring@^6.22.0: 717 | version "6.23.0" 718 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-destructuring/-/babel-plugin-transform-es2015-destructuring-6.23.0.tgz#997bb1f1ab967f682d2b0876fe358d60e765c56d" 719 | dependencies: 720 | babel-runtime "^6.22.0" 721 | 722 | babel-plugin-transform-es2015-duplicate-keys@^6.24.1: 723 | version "6.24.1" 724 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-duplicate-keys/-/babel-plugin-transform-es2015-duplicate-keys-6.24.1.tgz#73eb3d310ca969e3ef9ec91c53741a6f1576423e" 725 | dependencies: 726 | babel-runtime "^6.22.0" 727 | babel-types "^6.24.1" 728 | 729 | babel-plugin-transform-es2015-for-of@^6.22.0: 730 | version "6.23.0" 731 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-for-of/-/babel-plugin-transform-es2015-for-of-6.23.0.tgz#f47c95b2b613df1d3ecc2fdb7573623c75248691" 732 | dependencies: 733 | babel-runtime "^6.22.0" 734 | 735 | babel-plugin-transform-es2015-function-name@^6.24.1: 736 | version "6.24.1" 737 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-function-name/-/babel-plugin-transform-es2015-function-name-6.24.1.tgz#834c89853bc36b1af0f3a4c5dbaa94fd8eacaa8b" 738 | dependencies: 739 | babel-helper-function-name "^6.24.1" 740 | babel-runtime "^6.22.0" 741 | babel-types "^6.24.1" 742 | 743 | babel-plugin-transform-es2015-literals@^6.22.0: 744 | version "6.22.0" 745 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-literals/-/babel-plugin-transform-es2015-literals-6.22.0.tgz#4f54a02d6cd66cf915280019a31d31925377ca2e" 746 | dependencies: 747 | babel-runtime "^6.22.0" 748 | 749 | babel-plugin-transform-es2015-modules-amd@^6.24.1: 750 | version "6.24.1" 751 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-amd/-/babel-plugin-transform-es2015-modules-amd-6.24.1.tgz#3b3e54017239842d6d19c3011c4bd2f00a00d154" 752 | dependencies: 753 | babel-plugin-transform-es2015-modules-commonjs "^6.24.1" 754 | babel-runtime "^6.22.0" 755 | babel-template "^6.24.1" 756 | 757 | babel-plugin-transform-es2015-modules-commonjs@^6.24.1: 758 | version "6.26.0" 759 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-commonjs/-/babel-plugin-transform-es2015-modules-commonjs-6.26.0.tgz#0d8394029b7dc6abe1a97ef181e00758dd2e5d8a" 760 | dependencies: 761 | babel-plugin-transform-strict-mode "^6.24.1" 762 | babel-runtime "^6.26.0" 763 | babel-template "^6.26.0" 764 | babel-types "^6.26.0" 765 | 766 | babel-plugin-transform-es2015-modules-systemjs@^6.24.1: 767 | version "6.24.1" 768 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-systemjs/-/babel-plugin-transform-es2015-modules-systemjs-6.24.1.tgz#ff89a142b9119a906195f5f106ecf305d9407d23" 769 | dependencies: 770 | babel-helper-hoist-variables "^6.24.1" 771 | babel-runtime "^6.22.0" 772 | babel-template "^6.24.1" 773 | 774 | babel-plugin-transform-es2015-modules-umd@^6.24.1: 775 | version "6.24.1" 776 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-umd/-/babel-plugin-transform-es2015-modules-umd-6.24.1.tgz#ac997e6285cd18ed6176adb607d602344ad38468" 777 | dependencies: 778 | babel-plugin-transform-es2015-modules-amd "^6.24.1" 779 | babel-runtime "^6.22.0" 780 | babel-template "^6.24.1" 781 | 782 | babel-plugin-transform-es2015-object-super@^6.24.1: 783 | version "6.24.1" 784 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-object-super/-/babel-plugin-transform-es2015-object-super-6.24.1.tgz#24cef69ae21cb83a7f8603dad021f572eb278f8d" 785 | dependencies: 786 | babel-helper-replace-supers "^6.24.1" 787 | babel-runtime "^6.22.0" 788 | 789 | babel-plugin-transform-es2015-parameters@^6.24.1: 790 | version "6.24.1" 791 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-parameters/-/babel-plugin-transform-es2015-parameters-6.24.1.tgz#57ac351ab49caf14a97cd13b09f66fdf0a625f2b" 792 | dependencies: 793 | babel-helper-call-delegate "^6.24.1" 794 | babel-helper-get-function-arity "^6.24.1" 795 | babel-runtime "^6.22.0" 796 | babel-template "^6.24.1" 797 | babel-traverse "^6.24.1" 798 | babel-types "^6.24.1" 799 | 800 | babel-plugin-transform-es2015-shorthand-properties@^6.24.1: 801 | version "6.24.1" 802 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-shorthand-properties/-/babel-plugin-transform-es2015-shorthand-properties-6.24.1.tgz#24f875d6721c87661bbd99a4622e51f14de38aa0" 803 | dependencies: 804 | babel-runtime "^6.22.0" 805 | babel-types "^6.24.1" 806 | 807 | babel-plugin-transform-es2015-spread@^6.22.0: 808 | version "6.22.0" 809 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-spread/-/babel-plugin-transform-es2015-spread-6.22.0.tgz#d6d68a99f89aedc4536c81a542e8dd9f1746f8d1" 810 | dependencies: 811 | babel-runtime "^6.22.0" 812 | 813 | babel-plugin-transform-es2015-sticky-regex@^6.24.1: 814 | version "6.24.1" 815 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-sticky-regex/-/babel-plugin-transform-es2015-sticky-regex-6.24.1.tgz#00c1cdb1aca71112cdf0cf6126c2ed6b457ccdbc" 816 | dependencies: 817 | babel-helper-regex "^6.24.1" 818 | babel-runtime "^6.22.0" 819 | babel-types "^6.24.1" 820 | 821 | babel-plugin-transform-es2015-template-literals@^6.22.0: 822 | version "6.22.0" 823 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-template-literals/-/babel-plugin-transform-es2015-template-literals-6.22.0.tgz#a84b3450f7e9f8f1f6839d6d687da84bb1236d8d" 824 | dependencies: 825 | babel-runtime "^6.22.0" 826 | 827 | babel-plugin-transform-es2015-typeof-symbol@^6.22.0: 828 | version "6.23.0" 829 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-typeof-symbol/-/babel-plugin-transform-es2015-typeof-symbol-6.23.0.tgz#dec09f1cddff94b52ac73d505c84df59dcceb372" 830 | dependencies: 831 | babel-runtime "^6.22.0" 832 | 833 | babel-plugin-transform-es2015-unicode-regex@^6.24.1: 834 | version "6.24.1" 835 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-unicode-regex/-/babel-plugin-transform-es2015-unicode-regex-6.24.1.tgz#d38b12f42ea7323f729387f18a7c5ae1faeb35e9" 836 | dependencies: 837 | babel-helper-regex "^6.24.1" 838 | babel-runtime "^6.22.0" 839 | regexpu-core "^2.0.0" 840 | 841 | babel-plugin-transform-exponentiation-operator@^6.24.1: 842 | version "6.24.1" 843 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-exponentiation-operator/-/babel-plugin-transform-exponentiation-operator-6.24.1.tgz#2ab0c9c7f3098fa48907772bb813fe41e8de3a0e" 844 | dependencies: 845 | babel-helper-builder-binary-assignment-operator-visitor "^6.24.1" 846 | babel-plugin-syntax-exponentiation-operator "^6.8.0" 847 | babel-runtime "^6.22.0" 848 | 849 | babel-plugin-transform-export-extensions@^6.22.0: 850 | version "6.22.0" 851 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-export-extensions/-/babel-plugin-transform-export-extensions-6.22.0.tgz#53738b47e75e8218589eea946cbbd39109bbe653" 852 | dependencies: 853 | babel-plugin-syntax-export-extensions "^6.8.0" 854 | babel-runtime "^6.22.0" 855 | 856 | babel-plugin-transform-flow-strip-types@^6.22.0: 857 | version "6.22.0" 858 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-flow-strip-types/-/babel-plugin-transform-flow-strip-types-6.22.0.tgz#84cb672935d43714fdc32bce84568d87441cf7cf" 859 | dependencies: 860 | babel-plugin-syntax-flow "^6.18.0" 861 | babel-runtime "^6.22.0" 862 | 863 | babel-plugin-transform-function-bind@^6.22.0: 864 | version "6.22.0" 865 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-function-bind/-/babel-plugin-transform-function-bind-6.22.0.tgz#c6fb8e96ac296a310b8cf8ea401462407ddf6a97" 866 | dependencies: 867 | babel-plugin-syntax-function-bind "^6.8.0" 868 | babel-runtime "^6.22.0" 869 | 870 | babel-plugin-transform-object-rest-spread@^6.22.0: 871 | version "6.26.0" 872 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-object-rest-spread/-/babel-plugin-transform-object-rest-spread-6.26.0.tgz#0f36692d50fef6b7e2d4b3ac1478137a963b7b06" 873 | dependencies: 874 | babel-plugin-syntax-object-rest-spread "^6.8.0" 875 | babel-runtime "^6.26.0" 876 | 877 | babel-plugin-transform-react-display-name@^6.23.0: 878 | version "6.25.0" 879 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-react-display-name/-/babel-plugin-transform-react-display-name-6.25.0.tgz#67e2bf1f1e9c93ab08db96792e05392bf2cc28d1" 880 | dependencies: 881 | babel-runtime "^6.22.0" 882 | 883 | babel-plugin-transform-react-jsx-self@^6.22.0: 884 | version "6.22.0" 885 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-react-jsx-self/-/babel-plugin-transform-react-jsx-self-6.22.0.tgz#df6d80a9da2612a121e6ddd7558bcbecf06e636e" 886 | dependencies: 887 | babel-plugin-syntax-jsx "^6.8.0" 888 | babel-runtime "^6.22.0" 889 | 890 | babel-plugin-transform-react-jsx-source@^6.22.0: 891 | version "6.22.0" 892 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-react-jsx-source/-/babel-plugin-transform-react-jsx-source-6.22.0.tgz#66ac12153f5cd2d17b3c19268f4bf0197f44ecd6" 893 | dependencies: 894 | babel-plugin-syntax-jsx "^6.8.0" 895 | babel-runtime "^6.22.0" 896 | 897 | babel-plugin-transform-react-jsx@^6.24.1: 898 | version "6.24.1" 899 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-react-jsx/-/babel-plugin-transform-react-jsx-6.24.1.tgz#840a028e7df460dfc3a2d29f0c0d91f6376e66a3" 900 | dependencies: 901 | babel-helper-builder-react-jsx "^6.24.1" 902 | babel-plugin-syntax-jsx "^6.8.0" 903 | babel-runtime "^6.22.0" 904 | 905 | babel-plugin-transform-regenerator@^6.24.1: 906 | version "6.26.0" 907 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-regenerator/-/babel-plugin-transform-regenerator-6.26.0.tgz#e0703696fbde27f0a3efcacf8b4dca2f7b3a8f2f" 908 | dependencies: 909 | regenerator-transform "^0.10.0" 910 | 911 | babel-plugin-transform-strict-mode@^6.24.1: 912 | version "6.24.1" 913 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-strict-mode/-/babel-plugin-transform-strict-mode-6.24.1.tgz#d5faf7aa578a65bbe591cf5edae04a0c67020758" 914 | dependencies: 915 | babel-runtime "^6.22.0" 916 | babel-types "^6.24.1" 917 | 918 | babel-polyfill@^6.26.0: 919 | version "6.26.0" 920 | resolved "https://registry.yarnpkg.com/babel-polyfill/-/babel-polyfill-6.26.0.tgz#379937abc67d7895970adc621f284cd966cf2153" 921 | dependencies: 922 | babel-runtime "^6.26.0" 923 | core-js "^2.5.0" 924 | regenerator-runtime "^0.10.5" 925 | 926 | babel-preset-es2015@^6.24.1: 927 | version "6.24.1" 928 | resolved "https://registry.yarnpkg.com/babel-preset-es2015/-/babel-preset-es2015-6.24.1.tgz#d44050d6bc2c9feea702aaf38d727a0210538939" 929 | dependencies: 930 | babel-plugin-check-es2015-constants "^6.22.0" 931 | babel-plugin-transform-es2015-arrow-functions "^6.22.0" 932 | babel-plugin-transform-es2015-block-scoped-functions "^6.22.0" 933 | babel-plugin-transform-es2015-block-scoping "^6.24.1" 934 | babel-plugin-transform-es2015-classes "^6.24.1" 935 | babel-plugin-transform-es2015-computed-properties "^6.24.1" 936 | babel-plugin-transform-es2015-destructuring "^6.22.0" 937 | babel-plugin-transform-es2015-duplicate-keys "^6.24.1" 938 | babel-plugin-transform-es2015-for-of "^6.22.0" 939 | babel-plugin-transform-es2015-function-name "^6.24.1" 940 | babel-plugin-transform-es2015-literals "^6.22.0" 941 | babel-plugin-transform-es2015-modules-amd "^6.24.1" 942 | babel-plugin-transform-es2015-modules-commonjs "^6.24.1" 943 | babel-plugin-transform-es2015-modules-systemjs "^6.24.1" 944 | babel-plugin-transform-es2015-modules-umd "^6.24.1" 945 | babel-plugin-transform-es2015-object-super "^6.24.1" 946 | babel-plugin-transform-es2015-parameters "^6.24.1" 947 | babel-plugin-transform-es2015-shorthand-properties "^6.24.1" 948 | babel-plugin-transform-es2015-spread "^6.22.0" 949 | babel-plugin-transform-es2015-sticky-regex "^6.24.1" 950 | babel-plugin-transform-es2015-template-literals "^6.22.0" 951 | babel-plugin-transform-es2015-typeof-symbol "^6.22.0" 952 | babel-plugin-transform-es2015-unicode-regex "^6.24.1" 953 | babel-plugin-transform-regenerator "^6.24.1" 954 | 955 | babel-preset-flow@^6.23.0: 956 | version "6.23.0" 957 | resolved "https://registry.yarnpkg.com/babel-preset-flow/-/babel-preset-flow-6.23.0.tgz#e71218887085ae9a24b5be4169affb599816c49d" 958 | dependencies: 959 | babel-plugin-transform-flow-strip-types "^6.22.0" 960 | 961 | babel-preset-react@^6.24.1: 962 | version "6.24.1" 963 | resolved "https://registry.yarnpkg.com/babel-preset-react/-/babel-preset-react-6.24.1.tgz#ba69dfaea45fc3ec639b6a4ecea6e17702c91380" 964 | dependencies: 965 | babel-plugin-syntax-jsx "^6.3.13" 966 | babel-plugin-transform-react-display-name "^6.23.0" 967 | babel-plugin-transform-react-jsx "^6.24.1" 968 | babel-plugin-transform-react-jsx-self "^6.22.0" 969 | babel-plugin-transform-react-jsx-source "^6.22.0" 970 | babel-preset-flow "^6.23.0" 971 | 972 | babel-preset-stage-0@^6.24.1: 973 | version "6.24.1" 974 | resolved "https://registry.yarnpkg.com/babel-preset-stage-0/-/babel-preset-stage-0-6.24.1.tgz#5642d15042f91384d7e5af8bc88b1db95b039e6a" 975 | dependencies: 976 | babel-plugin-transform-do-expressions "^6.22.0" 977 | babel-plugin-transform-function-bind "^6.22.0" 978 | babel-preset-stage-1 "^6.24.1" 979 | 980 | babel-preset-stage-1@^6.24.1: 981 | version "6.24.1" 982 | resolved "https://registry.yarnpkg.com/babel-preset-stage-1/-/babel-preset-stage-1-6.24.1.tgz#7692cd7dcd6849907e6ae4a0a85589cfb9e2bfb0" 983 | dependencies: 984 | babel-plugin-transform-class-constructor-call "^6.24.1" 985 | babel-plugin-transform-export-extensions "^6.22.0" 986 | babel-preset-stage-2 "^6.24.1" 987 | 988 | babel-preset-stage-2@^6.24.1: 989 | version "6.24.1" 990 | resolved "https://registry.yarnpkg.com/babel-preset-stage-2/-/babel-preset-stage-2-6.24.1.tgz#d9e2960fb3d71187f0e64eec62bc07767219bdc1" 991 | dependencies: 992 | babel-plugin-syntax-dynamic-import "^6.18.0" 993 | babel-plugin-transform-class-properties "^6.24.1" 994 | babel-plugin-transform-decorators "^6.24.1" 995 | babel-preset-stage-3 "^6.24.1" 996 | 997 | babel-preset-stage-3@^6.24.1: 998 | version "6.24.1" 999 | resolved "https://registry.yarnpkg.com/babel-preset-stage-3/-/babel-preset-stage-3-6.24.1.tgz#836ada0a9e7a7fa37cb138fb9326f87934a48395" 1000 | dependencies: 1001 | babel-plugin-syntax-trailing-function-commas "^6.22.0" 1002 | babel-plugin-transform-async-generator-functions "^6.24.1" 1003 | babel-plugin-transform-async-to-generator "^6.24.1" 1004 | babel-plugin-transform-exponentiation-operator "^6.24.1" 1005 | babel-plugin-transform-object-rest-spread "^6.22.0" 1006 | 1007 | babel-register@^6.26.0: 1008 | version "6.26.0" 1009 | resolved "https://registry.yarnpkg.com/babel-register/-/babel-register-6.26.0.tgz#6ed021173e2fcb486d7acb45c6009a856f647071" 1010 | dependencies: 1011 | babel-core "^6.26.0" 1012 | babel-runtime "^6.26.0" 1013 | core-js "^2.5.0" 1014 | home-or-tmp "^2.0.0" 1015 | lodash "^4.17.4" 1016 | mkdirp "^0.5.1" 1017 | source-map-support "^0.4.15" 1018 | 1019 | babel-runtime@^6.18.0, babel-runtime@^6.22.0, babel-runtime@^6.26.0: 1020 | version "6.26.0" 1021 | resolved "https://registry.yarnpkg.com/babel-runtime/-/babel-runtime-6.26.0.tgz#965c7058668e82b55d7bfe04ff2337bc8b5647fe" 1022 | dependencies: 1023 | core-js "^2.4.0" 1024 | regenerator-runtime "^0.11.0" 1025 | 1026 | babel-runtime@^6.9.1: 1027 | version "6.18.0" 1028 | resolved "https://registry.yarnpkg.com/babel-runtime/-/babel-runtime-6.18.0.tgz#0f4177ffd98492ef13b9f823e9994a02584c9078" 1029 | dependencies: 1030 | core-js "^2.4.0" 1031 | regenerator-runtime "^0.9.5" 1032 | 1033 | babel-template@^6.24.1, babel-template@^6.26.0: 1034 | version "6.26.0" 1035 | resolved "https://registry.yarnpkg.com/babel-template/-/babel-template-6.26.0.tgz#de03e2d16396b069f46dd9fff8521fb1a0e35e02" 1036 | dependencies: 1037 | babel-runtime "^6.26.0" 1038 | babel-traverse "^6.26.0" 1039 | babel-types "^6.26.0" 1040 | babylon "^6.18.0" 1041 | lodash "^4.17.4" 1042 | 1043 | babel-traverse@^6.24.1, babel-traverse@^6.26.0: 1044 | version "6.26.0" 1045 | resolved "https://registry.yarnpkg.com/babel-traverse/-/babel-traverse-6.26.0.tgz#46a9cbd7edcc62c8e5c064e2d2d8d0f4035766ee" 1046 | dependencies: 1047 | babel-code-frame "^6.26.0" 1048 | babel-messages "^6.23.0" 1049 | babel-runtime "^6.26.0" 1050 | babel-types "^6.26.0" 1051 | babylon "^6.18.0" 1052 | debug "^2.6.8" 1053 | globals "^9.18.0" 1054 | invariant "^2.2.2" 1055 | lodash "^4.17.4" 1056 | 1057 | babel-types@^6.19.0: 1058 | version "6.19.0" 1059 | resolved "https://registry.yarnpkg.com/babel-types/-/babel-types-6.19.0.tgz#8db2972dbed01f1192a8b602ba1e1e4c516240b9" 1060 | dependencies: 1061 | babel-runtime "^6.9.1" 1062 | esutils "^2.0.2" 1063 | lodash "^4.2.0" 1064 | to-fast-properties "^1.0.1" 1065 | 1066 | babel-types@^6.24.1, babel-types@^6.26.0: 1067 | version "6.26.0" 1068 | resolved "https://registry.yarnpkg.com/babel-types/-/babel-types-6.26.0.tgz#a3b073f94ab49eb6fa55cd65227a334380632497" 1069 | dependencies: 1070 | babel-runtime "^6.26.0" 1071 | esutils "^2.0.2" 1072 | lodash "^4.17.4" 1073 | to-fast-properties "^1.0.3" 1074 | 1075 | babelify@^8.0.0: 1076 | version "8.0.0" 1077 | resolved "https://registry.yarnpkg.com/babelify/-/babelify-8.0.0.tgz#6f60f5f062bfe7695754ef2403b842014a580ed3" 1078 | 1079 | babylon@7.0.0-beta.31, babylon@^7.0.0-beta.31: 1080 | version "7.0.0-beta.31" 1081 | resolved "https://registry.yarnpkg.com/babylon/-/babylon-7.0.0-beta.31.tgz#7ec10f81e0e456fd0f855ad60fa30c2ac454283f" 1082 | 1083 | babylon@^6.18.0: 1084 | version "6.18.0" 1085 | resolved "https://registry.yarnpkg.com/babylon/-/babylon-6.18.0.tgz#af2f3b88fa6f5c1e4c634d1a0f8eac4f55b395e3" 1086 | 1087 | balanced-match@^0.4.1: 1088 | version "0.4.2" 1089 | resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-0.4.2.tgz#cb3f3e3c732dc0f01ee70b403f302e61d7709838" 1090 | 1091 | balanced-match@^1.0.0: 1092 | version "1.0.0" 1093 | resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.0.tgz#89b4d199ab2bee49de164ea02b89ce462d71b767" 1094 | 1095 | base64-js@^1.0.2: 1096 | version "1.2.0" 1097 | resolved "https://registry.yarnpkg.com/base64-js/-/base64-js-1.2.0.tgz#a39992d723584811982be5e290bb6a53d86700f1" 1098 | 1099 | bcrypt-pbkdf@^1.0.0: 1100 | version "1.0.0" 1101 | resolved "https://registry.yarnpkg.com/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.0.tgz#3ca76b85241c7170bf7d9703e7b9aa74630040d4" 1102 | dependencies: 1103 | tweetnacl "^0.14.3" 1104 | 1105 | binary-extensions@^1.0.0: 1106 | version "1.7.0" 1107 | resolved "https://registry.yarnpkg.com/binary-extensions/-/binary-extensions-1.7.0.tgz#6c1610db163abfb34edfe42fa423343a1e01185d" 1108 | 1109 | block-stream@*: 1110 | version "0.0.9" 1111 | resolved "https://registry.yarnpkg.com/block-stream/-/block-stream-0.0.9.tgz#13ebfe778a03205cfe03751481ebb4b3300c126a" 1112 | dependencies: 1113 | inherits "~2.0.0" 1114 | 1115 | bn.js@^4.0.0, bn.js@^4.1.0, bn.js@^4.1.1, bn.js@^4.4.0: 1116 | version "4.11.6" 1117 | resolved "https://registry.yarnpkg.com/bn.js/-/bn.js-4.11.6.tgz#53344adb14617a13f6e8dd2ce28905d1c0ba3215" 1118 | 1119 | boom@2.x.x: 1120 | version "2.10.1" 1121 | resolved "https://registry.yarnpkg.com/boom/-/boom-2.10.1.tgz#39c8918ceff5799f83f9492a848f625add0c766f" 1122 | dependencies: 1123 | hoek "2.x.x" 1124 | 1125 | brace-expansion@^1.0.0: 1126 | version "1.1.6" 1127 | resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.6.tgz#7197d7eaa9b87e648390ea61fc66c84427420df9" 1128 | dependencies: 1129 | balanced-match "^0.4.1" 1130 | concat-map "0.0.1" 1131 | 1132 | brace-expansion@^1.1.7: 1133 | version "1.1.8" 1134 | resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.8.tgz#c07b211c7c952ec1f8efd51a77ef0d1d3990a292" 1135 | dependencies: 1136 | balanced-match "^1.0.0" 1137 | concat-map "0.0.1" 1138 | 1139 | braces@^1.8.2: 1140 | version "1.8.5" 1141 | resolved "https://registry.yarnpkg.com/braces/-/braces-1.8.5.tgz#ba77962e12dff969d6b76711e914b737857bf6a7" 1142 | dependencies: 1143 | expand-range "^1.8.1" 1144 | preserve "^0.2.0" 1145 | repeat-element "^1.1.2" 1146 | 1147 | brorand@^1.0.1: 1148 | version "1.0.6" 1149 | resolved "https://registry.yarnpkg.com/brorand/-/brorand-1.0.6.tgz#4028706b915f91f7b349a2e0bf3c376039d216e5" 1150 | 1151 | browser-pack@^6.0.1: 1152 | version "6.0.2" 1153 | resolved "https://registry.yarnpkg.com/browser-pack/-/browser-pack-6.0.2.tgz#f86cd6cef4f5300c8e63e07a4d512f65fbff4531" 1154 | dependencies: 1155 | JSONStream "^1.0.3" 1156 | combine-source-map "~0.7.1" 1157 | defined "^1.0.0" 1158 | through2 "^2.0.0" 1159 | umd "^3.0.0" 1160 | 1161 | browser-resolve@^1.11.0, browser-resolve@^1.7.0: 1162 | version "1.11.2" 1163 | resolved "https://registry.yarnpkg.com/browser-resolve/-/browser-resolve-1.11.2.tgz#8ff09b0a2c421718a1051c260b32e48f442938ce" 1164 | dependencies: 1165 | resolve "1.1.7" 1166 | 1167 | browser-stdout@1.3.0: 1168 | version "1.3.0" 1169 | resolved "https://registry.yarnpkg.com/browser-stdout/-/browser-stdout-1.3.0.tgz#f351d32969d32fa5d7a5567154263d928ae3bd1f" 1170 | 1171 | browserify-aes@^1.0.0, browserify-aes@^1.0.4: 1172 | version "1.0.6" 1173 | resolved "https://registry.yarnpkg.com/browserify-aes/-/browserify-aes-1.0.6.tgz#5e7725dbdef1fd5930d4ebab48567ce451c48a0a" 1174 | dependencies: 1175 | buffer-xor "^1.0.2" 1176 | cipher-base "^1.0.0" 1177 | create-hash "^1.1.0" 1178 | evp_bytestokey "^1.0.0" 1179 | inherits "^2.0.1" 1180 | 1181 | browserify-cipher@^1.0.0: 1182 | version "1.0.0" 1183 | resolved "https://registry.yarnpkg.com/browserify-cipher/-/browserify-cipher-1.0.0.tgz#9988244874bf5ed4e28da95666dcd66ac8fc363a" 1184 | dependencies: 1185 | browserify-aes "^1.0.4" 1186 | browserify-des "^1.0.0" 1187 | evp_bytestokey "^1.0.0" 1188 | 1189 | browserify-des@^1.0.0: 1190 | version "1.0.0" 1191 | resolved "https://registry.yarnpkg.com/browserify-des/-/browserify-des-1.0.0.tgz#daa277717470922ed2fe18594118a175439721dd" 1192 | dependencies: 1193 | cipher-base "^1.0.1" 1194 | des.js "^1.0.0" 1195 | inherits "^2.0.1" 1196 | 1197 | browserify-rsa@^4.0.0: 1198 | version "4.0.1" 1199 | resolved "https://registry.yarnpkg.com/browserify-rsa/-/browserify-rsa-4.0.1.tgz#21e0abfaf6f2029cf2fafb133567a701d4135524" 1200 | dependencies: 1201 | bn.js "^4.1.0" 1202 | randombytes "^2.0.1" 1203 | 1204 | browserify-sign@^4.0.0: 1205 | version "4.0.0" 1206 | resolved "https://registry.yarnpkg.com/browserify-sign/-/browserify-sign-4.0.0.tgz#10773910c3c206d5420a46aad8694f820b85968f" 1207 | dependencies: 1208 | bn.js "^4.1.1" 1209 | browserify-rsa "^4.0.0" 1210 | create-hash "^1.1.0" 1211 | create-hmac "^1.1.2" 1212 | elliptic "^6.0.0" 1213 | inherits "^2.0.1" 1214 | parse-asn1 "^5.0.0" 1215 | 1216 | browserify-zlib@~0.1.2: 1217 | version "0.1.4" 1218 | resolved "https://registry.yarnpkg.com/browserify-zlib/-/browserify-zlib-0.1.4.tgz#bb35f8a519f600e0fa6b8485241c979d0141fb2d" 1219 | dependencies: 1220 | pako "~0.2.0" 1221 | 1222 | browserify@^13.3.0: 1223 | version "13.3.0" 1224 | resolved "https://registry.yarnpkg.com/browserify/-/browserify-13.3.0.tgz#b5a9c9020243f0c70e4675bec8223bc627e415ce" 1225 | dependencies: 1226 | JSONStream "^1.0.3" 1227 | assert "^1.4.0" 1228 | browser-pack "^6.0.1" 1229 | browser-resolve "^1.11.0" 1230 | browserify-zlib "~0.1.2" 1231 | buffer "^4.1.0" 1232 | cached-path-relative "^1.0.0" 1233 | concat-stream "~1.5.1" 1234 | console-browserify "^1.1.0" 1235 | constants-browserify "~1.0.0" 1236 | crypto-browserify "^3.0.0" 1237 | defined "^1.0.0" 1238 | deps-sort "^2.0.0" 1239 | domain-browser "~1.1.0" 1240 | duplexer2 "~0.1.2" 1241 | events "~1.1.0" 1242 | glob "^7.1.0" 1243 | has "^1.0.0" 1244 | htmlescape "^1.1.0" 1245 | https-browserify "~0.0.0" 1246 | inherits "~2.0.1" 1247 | insert-module-globals "^7.0.0" 1248 | labeled-stream-splicer "^2.0.0" 1249 | module-deps "^4.0.8" 1250 | os-browserify "~0.1.1" 1251 | parents "^1.0.1" 1252 | path-browserify "~0.0.0" 1253 | process "~0.11.0" 1254 | punycode "^1.3.2" 1255 | querystring-es3 "~0.2.0" 1256 | read-only-stream "^2.0.0" 1257 | readable-stream "^2.0.2" 1258 | resolve "^1.1.4" 1259 | shasum "^1.0.0" 1260 | shell-quote "^1.6.1" 1261 | stream-browserify "^2.0.0" 1262 | stream-http "^2.0.0" 1263 | string_decoder "~0.10.0" 1264 | subarg "^1.0.0" 1265 | syntax-error "^1.1.1" 1266 | through2 "^2.0.0" 1267 | timers-browserify "^1.0.1" 1268 | tty-browserify "~0.0.0" 1269 | url "~0.11.0" 1270 | util "~0.10.1" 1271 | vm-browserify "~0.0.1" 1272 | xtend "^4.0.0" 1273 | 1274 | buffer-shims@^1.0.0: 1275 | version "1.0.0" 1276 | resolved "https://registry.yarnpkg.com/buffer-shims/-/buffer-shims-1.0.0.tgz#9978ce317388c649ad8793028c3477ef044a8b51" 1277 | 1278 | buffer-xor@^1.0.2: 1279 | version "1.0.3" 1280 | resolved "https://registry.yarnpkg.com/buffer-xor/-/buffer-xor-1.0.3.tgz#26e61ed1422fb70dd42e6e36729ed51d855fe8d9" 1281 | 1282 | buffer@^4.1.0: 1283 | version "4.9.1" 1284 | resolved "https://registry.yarnpkg.com/buffer/-/buffer-4.9.1.tgz#6d1bb601b07a4efced97094132093027c95bc298" 1285 | dependencies: 1286 | base64-js "^1.0.2" 1287 | ieee754 "^1.1.4" 1288 | isarray "^1.0.0" 1289 | 1290 | builtin-modules@^1.0.0, builtin-modules@^1.1.1: 1291 | version "1.1.1" 1292 | resolved "https://registry.yarnpkg.com/builtin-modules/-/builtin-modules-1.1.1.tgz#270f076c5a72c02f5b65a47df94c5fe3a278892f" 1293 | 1294 | builtin-status-codes@^2.0.0: 1295 | version "2.0.0" 1296 | resolved "https://registry.yarnpkg.com/builtin-status-codes/-/builtin-status-codes-2.0.0.tgz#6f22003baacf003ccd287afe6872151fddc58579" 1297 | 1298 | cached-path-relative@^1.0.0: 1299 | version "1.0.0" 1300 | resolved "https://registry.yarnpkg.com/cached-path-relative/-/cached-path-relative-1.0.0.tgz#d1094c577fbd9a8b8bd43c96af6188aa205d05f4" 1301 | 1302 | caller-path@^0.1.0: 1303 | version "0.1.0" 1304 | resolved "https://registry.yarnpkg.com/caller-path/-/caller-path-0.1.0.tgz#94085ef63581ecd3daa92444a8fe94e82577751f" 1305 | dependencies: 1306 | callsites "^0.2.0" 1307 | 1308 | callsites@^0.2.0: 1309 | version "0.2.0" 1310 | resolved "https://registry.yarnpkg.com/callsites/-/callsites-0.2.0.tgz#afab96262910a7f33c19a5775825c69f34e350ca" 1311 | 1312 | caseless@~0.11.0: 1313 | version "0.11.0" 1314 | resolved "https://registry.yarnpkg.com/caseless/-/caseless-0.11.0.tgz#715b96ea9841593cc33067923f5ec60ebda4f7d7" 1315 | 1316 | chalk@^1.1.1, chalk@^1.1.3: 1317 | version "1.1.3" 1318 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-1.1.3.tgz#a8115c55e4a702fe4d150abd3872822a7e09fc98" 1319 | dependencies: 1320 | ansi-styles "^2.2.1" 1321 | escape-string-regexp "^1.0.2" 1322 | has-ansi "^2.0.0" 1323 | strip-ansi "^3.0.0" 1324 | supports-color "^2.0.0" 1325 | 1326 | chalk@^2.0.0, chalk@^2.1.0: 1327 | version "2.3.0" 1328 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-2.3.0.tgz#b5ea48efc9c1793dccc9b4767c93914d3f2d52ba" 1329 | dependencies: 1330 | ansi-styles "^3.1.0" 1331 | escape-string-regexp "^1.0.5" 1332 | supports-color "^4.0.0" 1333 | 1334 | chokidar@^1.6.1: 1335 | version "1.7.0" 1336 | resolved "https://registry.yarnpkg.com/chokidar/-/chokidar-1.7.0.tgz#798e689778151c8076b4b360e5edd28cda2bb468" 1337 | dependencies: 1338 | anymatch "^1.3.0" 1339 | async-each "^1.0.0" 1340 | glob-parent "^2.0.0" 1341 | inherits "^2.0.1" 1342 | is-binary-path "^1.0.0" 1343 | is-glob "^2.0.0" 1344 | path-is-absolute "^1.0.0" 1345 | readdirp "^2.0.0" 1346 | optionalDependencies: 1347 | fsevents "^1.0.0" 1348 | 1349 | cipher-base@^1.0.0, cipher-base@^1.0.1: 1350 | version "1.0.3" 1351 | resolved "https://registry.yarnpkg.com/cipher-base/-/cipher-base-1.0.3.tgz#eeabf194419ce900da3018c207d212f2a6df0a07" 1352 | dependencies: 1353 | inherits "^2.0.1" 1354 | 1355 | circular-json@^0.3.0: 1356 | version "0.3.1" 1357 | resolved "https://registry.yarnpkg.com/circular-json/-/circular-json-0.3.1.tgz#be8b36aefccde8b3ca7aa2d6afc07a37242c0d2d" 1358 | 1359 | cli-cursor@^2.1.0: 1360 | version "2.1.0" 1361 | resolved "https://registry.yarnpkg.com/cli-cursor/-/cli-cursor-2.1.0.tgz#b35dac376479facc3e94747d41d0d0f5238ffcb5" 1362 | dependencies: 1363 | restore-cursor "^2.0.0" 1364 | 1365 | cli-width@^2.0.0: 1366 | version "2.1.0" 1367 | resolved "https://registry.yarnpkg.com/cli-width/-/cli-width-2.1.0.tgz#b234ca209b29ef66fc518d9b98d5847b00edf00a" 1368 | 1369 | co@^4.6.0: 1370 | version "4.6.0" 1371 | resolved "https://registry.yarnpkg.com/co/-/co-4.6.0.tgz#6ea6bdf3d853ae54ccb8e47bfa0bf3f9031fb184" 1372 | 1373 | code-point-at@^1.0.0: 1374 | version "1.1.0" 1375 | resolved "https://registry.yarnpkg.com/code-point-at/-/code-point-at-1.1.0.tgz#0d070b4d043a5bea33a2f1a40e2edb3d9a4ccf77" 1376 | 1377 | collections@^0.2.0: 1378 | version "0.2.2" 1379 | resolved "https://registry.yarnpkg.com/collections/-/collections-0.2.2.tgz#1f23026b2ef36f927eecc901e99c5f0d48fa334e" 1380 | dependencies: 1381 | weak-map "1.0.0" 1382 | 1383 | color-convert@^1.9.0: 1384 | version "1.9.0" 1385 | resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-1.9.0.tgz#1accf97dd739b983bf994d56fec8f95853641b7a" 1386 | dependencies: 1387 | color-name "^1.1.1" 1388 | 1389 | color-name@^1.1.1: 1390 | version "1.1.3" 1391 | resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.3.tgz#a7d0558bd89c42f795dd42328f740831ca53bc25" 1392 | 1393 | colors@1.0.3: 1394 | version "1.0.3" 1395 | resolved "https://registry.yarnpkg.com/colors/-/colors-1.0.3.tgz#0433f44d809680fdeb60ed260f1b0c262e82a40b" 1396 | 1397 | combine-source-map@~0.7.1: 1398 | version "0.7.2" 1399 | resolved "https://registry.yarnpkg.com/combine-source-map/-/combine-source-map-0.7.2.tgz#0870312856b307a87cc4ac486f3a9a62aeccc09e" 1400 | dependencies: 1401 | convert-source-map "~1.1.0" 1402 | inline-source-map "~0.6.0" 1403 | lodash.memoize "~3.0.3" 1404 | source-map "~0.5.3" 1405 | 1406 | combined-stream@^1.0.5, combined-stream@~1.0.5: 1407 | version "1.0.5" 1408 | resolved "https://registry.yarnpkg.com/combined-stream/-/combined-stream-1.0.5.tgz#938370a57b4a51dea2c77c15d5c5fdf895164009" 1409 | dependencies: 1410 | delayed-stream "~1.0.0" 1411 | 1412 | commander@2.9.0, commander@^2.9.0: 1413 | version "2.9.0" 1414 | resolved "https://registry.yarnpkg.com/commander/-/commander-2.9.0.tgz#9c99094176e12240cb22d6c5146098400fe0f7d4" 1415 | dependencies: 1416 | graceful-readlink ">= 1.0.0" 1417 | 1418 | commander@^2.11.0: 1419 | version "2.11.0" 1420 | resolved "https://registry.yarnpkg.com/commander/-/commander-2.11.0.tgz#157152fd1e7a6c8d98a5b715cf376df928004563" 1421 | 1422 | concat-map@0.0.1: 1423 | version "0.0.1" 1424 | resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b" 1425 | 1426 | concat-stream@^1.6.0: 1427 | version "1.6.0" 1428 | resolved "https://registry.yarnpkg.com/concat-stream/-/concat-stream-1.6.0.tgz#0aac662fd52be78964d5532f694784e70110acf7" 1429 | dependencies: 1430 | inherits "^2.0.3" 1431 | readable-stream "^2.2.2" 1432 | typedarray "^0.0.6" 1433 | 1434 | concat-stream@~1.5.0, concat-stream@~1.5.1: 1435 | version "1.5.2" 1436 | resolved "https://registry.yarnpkg.com/concat-stream/-/concat-stream-1.5.2.tgz#708978624d856af41a5a741defdd261da752c266" 1437 | dependencies: 1438 | inherits "~2.0.1" 1439 | readable-stream "~2.0.0" 1440 | typedarray "~0.0.5" 1441 | 1442 | console-browserify@^1.1.0: 1443 | version "1.1.0" 1444 | resolved "https://registry.yarnpkg.com/console-browserify/-/console-browserify-1.1.0.tgz#f0241c45730a9fc6323b206dbf38edc741d0bb10" 1445 | dependencies: 1446 | date-now "^0.1.4" 1447 | 1448 | console-control-strings@^1.0.0, console-control-strings@~1.1.0: 1449 | version "1.1.0" 1450 | resolved "https://registry.yarnpkg.com/console-control-strings/-/console-control-strings-1.1.0.tgz#3d7cf4464db6446ea644bf4b39507f9851008e8e" 1451 | 1452 | constants-browserify@~1.0.0: 1453 | version "1.0.0" 1454 | resolved "https://registry.yarnpkg.com/constants-browserify/-/constants-browserify-1.0.0.tgz#c20b96d8c617748aaf1c16021760cd27fcb8cb75" 1455 | 1456 | contains-path@^0.1.0: 1457 | version "0.1.0" 1458 | resolved "https://registry.yarnpkg.com/contains-path/-/contains-path-0.1.0.tgz#fe8cf184ff6670b6baef01a9d4861a5cbec4120a" 1459 | 1460 | convert-source-map@^1.5.0: 1461 | version "1.5.0" 1462 | resolved "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-1.5.0.tgz#9acd70851c6d5dfdd93d9282e5edf94a03ff46b5" 1463 | 1464 | convert-source-map@~1.1.0: 1465 | version "1.1.3" 1466 | resolved "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-1.1.3.tgz#4829c877e9fe49b3161f3bf3673888e204699860" 1467 | 1468 | core-js@^1.0.0: 1469 | version "1.2.7" 1470 | resolved "https://registry.yarnpkg.com/core-js/-/core-js-1.2.7.tgz#652294c14651db28fa93bd2d5ff2983a4f08c636" 1471 | 1472 | core-js@^2.4.0: 1473 | version "2.4.1" 1474 | resolved "https://registry.yarnpkg.com/core-js/-/core-js-2.4.1.tgz#4de911e667b0eae9124e34254b53aea6fc618d3e" 1475 | 1476 | core-js@^2.5.0: 1477 | version "2.5.1" 1478 | resolved "https://registry.yarnpkg.com/core-js/-/core-js-2.5.1.tgz#ae6874dc66937789b80754ff5428df66819ca50b" 1479 | 1480 | core-util-is@~1.0.0: 1481 | version "1.0.2" 1482 | resolved "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.2.tgz#b5fd54220aa2bc5ab57aab7140c940754503c1a7" 1483 | 1484 | corser@~2.0.0: 1485 | version "2.0.1" 1486 | resolved "https://registry.yarnpkg.com/corser/-/corser-2.0.1.tgz#8eda252ecaab5840dcd975ceb90d9370c819ff87" 1487 | 1488 | create-ecdh@^4.0.0: 1489 | version "4.0.0" 1490 | resolved "https://registry.yarnpkg.com/create-ecdh/-/create-ecdh-4.0.0.tgz#888c723596cdf7612f6498233eebd7a35301737d" 1491 | dependencies: 1492 | bn.js "^4.1.0" 1493 | elliptic "^6.0.0" 1494 | 1495 | create-hash@^1.1.0, create-hash@^1.1.1: 1496 | version "1.1.2" 1497 | resolved "https://registry.yarnpkg.com/create-hash/-/create-hash-1.1.2.tgz#51210062d7bb7479f6c65bb41a92208b1d61abad" 1498 | dependencies: 1499 | cipher-base "^1.0.1" 1500 | inherits "^2.0.1" 1501 | ripemd160 "^1.0.0" 1502 | sha.js "^2.3.6" 1503 | 1504 | create-hmac@^1.1.0, create-hmac@^1.1.2: 1505 | version "1.1.4" 1506 | resolved "https://registry.yarnpkg.com/create-hmac/-/create-hmac-1.1.4.tgz#d3fb4ba253eb8b3f56e39ea2fbcb8af747bd3170" 1507 | dependencies: 1508 | create-hash "^1.1.0" 1509 | inherits "^2.0.1" 1510 | 1511 | cross-spawn@^5.1.0: 1512 | version "5.1.0" 1513 | resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-5.1.0.tgz#e8bd0efee58fcff6f8f94510a0a554bbfa235449" 1514 | dependencies: 1515 | lru-cache "^4.0.1" 1516 | shebang-command "^1.2.0" 1517 | which "^1.2.9" 1518 | 1519 | cryptiles@2.x.x: 1520 | version "2.0.5" 1521 | resolved "https://registry.yarnpkg.com/cryptiles/-/cryptiles-2.0.5.tgz#3bdfecdc608147c1c67202fa291e7dca59eaa3b8" 1522 | dependencies: 1523 | boom "2.x.x" 1524 | 1525 | crypto-browserify@^3.0.0: 1526 | version "3.11.0" 1527 | resolved "https://registry.yarnpkg.com/crypto-browserify/-/crypto-browserify-3.11.0.tgz#3652a0906ab9b2a7e0c3ce66a408e957a2485522" 1528 | dependencies: 1529 | browserify-cipher "^1.0.0" 1530 | browserify-sign "^4.0.0" 1531 | create-ecdh "^4.0.0" 1532 | create-hash "^1.1.0" 1533 | create-hmac "^1.1.0" 1534 | diffie-hellman "^5.0.0" 1535 | inherits "^2.0.1" 1536 | pbkdf2 "^3.0.3" 1537 | public-encrypt "^4.0.0" 1538 | randombytes "^2.0.0" 1539 | 1540 | damerau-levenshtein@^1.0.0: 1541 | version "1.0.4" 1542 | resolved "https://registry.yarnpkg.com/damerau-levenshtein/-/damerau-levenshtein-1.0.4.tgz#03191c432cb6eea168bb77f3a55ffdccb8978514" 1543 | 1544 | dashdash@^1.12.0: 1545 | version "1.14.1" 1546 | resolved "https://registry.yarnpkg.com/dashdash/-/dashdash-1.14.1.tgz#853cfa0f7cbe2fed5de20326b8dd581035f6e2f0" 1547 | dependencies: 1548 | assert-plus "^1.0.0" 1549 | 1550 | date-now@^0.1.4: 1551 | version "0.1.4" 1552 | resolved "https://registry.yarnpkg.com/date-now/-/date-now-0.1.4.tgz#eaf439fd4d4848ad74e5cc7dbef200672b9e345b" 1553 | 1554 | debug@2.2.0, debug@~2.2.0: 1555 | version "2.2.0" 1556 | resolved "https://registry.yarnpkg.com/debug/-/debug-2.2.0.tgz#f87057e995b1a1f6ae6a4960664137bc56f039da" 1557 | dependencies: 1558 | ms "0.7.1" 1559 | 1560 | debug@^2.6.8: 1561 | version "2.6.9" 1562 | resolved "https://registry.yarnpkg.com/debug/-/debug-2.6.9.tgz#5d128515df134ff327e90a4c93f4e077a536341f" 1563 | dependencies: 1564 | ms "2.0.0" 1565 | 1566 | debug@^3.0.1: 1567 | version "3.1.0" 1568 | resolved "https://registry.yarnpkg.com/debug/-/debug-3.1.0.tgz#5bb5a0672628b64149566ba16819e61518c67261" 1569 | dependencies: 1570 | ms "2.0.0" 1571 | 1572 | debug@^3.1.0: 1573 | version "3.2.5" 1574 | resolved "https://registry.yarnpkg.com/debug/-/debug-3.2.5.tgz#c2418fbfd7a29f4d4f70ff4cea604d4b64c46407" 1575 | dependencies: 1576 | ms "^2.1.1" 1577 | 1578 | deep-extend@~0.4.0: 1579 | version "0.4.1" 1580 | resolved "https://registry.yarnpkg.com/deep-extend/-/deep-extend-0.4.1.tgz#efe4113d08085f4e6f9687759810f807469e2253" 1581 | 1582 | deep-is@~0.1.3: 1583 | version "0.1.3" 1584 | resolved "https://registry.yarnpkg.com/deep-is/-/deep-is-0.1.3.tgz#b369d6fb5dbc13eecf524f91b070feedc357cf34" 1585 | 1586 | define-properties@^1.1.1, define-properties@^1.1.2, define-properties@~1.1.2: 1587 | version "1.1.2" 1588 | resolved "https://registry.yarnpkg.com/define-properties/-/define-properties-1.1.2.tgz#83a73f2fea569898fb737193c8f873caf6d45c94" 1589 | dependencies: 1590 | foreach "^2.0.5" 1591 | object-keys "^1.0.8" 1592 | 1593 | defined@^1.0.0: 1594 | version "1.0.0" 1595 | resolved "https://registry.yarnpkg.com/defined/-/defined-1.0.0.tgz#c98d9bcef75674188e110969151199e39b1fa693" 1596 | 1597 | del@^2.0.2: 1598 | version "2.2.2" 1599 | resolved "https://registry.yarnpkg.com/del/-/del-2.2.2.tgz#c12c981d067846c84bcaf862cff930d907ffd1a8" 1600 | dependencies: 1601 | globby "^5.0.0" 1602 | is-path-cwd "^1.0.0" 1603 | is-path-in-cwd "^1.0.0" 1604 | object-assign "^4.0.1" 1605 | pify "^2.0.0" 1606 | pinkie-promise "^2.0.0" 1607 | rimraf "^2.2.8" 1608 | 1609 | delayed-stream@~1.0.0: 1610 | version "1.0.0" 1611 | resolved "https://registry.yarnpkg.com/delayed-stream/-/delayed-stream-1.0.0.tgz#df3ae199acadfb7d440aaae0b29e2272b24ec619" 1612 | 1613 | delegates@^1.0.0: 1614 | version "1.0.0" 1615 | resolved "https://registry.yarnpkg.com/delegates/-/delegates-1.0.0.tgz#84c6e159b81904fdca59a0ef44cd870d31250f9a" 1616 | 1617 | deps-sort@^2.0.0: 1618 | version "2.0.0" 1619 | resolved "https://registry.yarnpkg.com/deps-sort/-/deps-sort-2.0.0.tgz#091724902e84658260eb910748cccd1af6e21fb5" 1620 | dependencies: 1621 | JSONStream "^1.0.3" 1622 | shasum "^1.0.0" 1623 | subarg "^1.0.0" 1624 | through2 "^2.0.0" 1625 | 1626 | des.js@^1.0.0: 1627 | version "1.0.0" 1628 | resolved "https://registry.yarnpkg.com/des.js/-/des.js-1.0.0.tgz#c074d2e2aa6a8a9a07dbd61f9a15c2cd83ec8ecc" 1629 | dependencies: 1630 | inherits "^2.0.1" 1631 | minimalistic-assert "^1.0.0" 1632 | 1633 | detect-indent@^4.0.0: 1634 | version "4.0.0" 1635 | resolved "https://registry.yarnpkg.com/detect-indent/-/detect-indent-4.0.0.tgz#f76d064352cdf43a1cb6ce619c4ee3a9475de208" 1636 | dependencies: 1637 | repeating "^2.0.0" 1638 | 1639 | detective@^4.0.0: 1640 | version "4.3.2" 1641 | resolved "https://registry.yarnpkg.com/detective/-/detective-4.3.2.tgz#77697e2e7947ac3fe7c8e26a6d6f115235afa91c" 1642 | dependencies: 1643 | acorn "^3.1.0" 1644 | defined "^1.0.0" 1645 | 1646 | diff@1.4.0: 1647 | version "1.4.0" 1648 | resolved "https://registry.yarnpkg.com/diff/-/diff-1.4.0.tgz#7f28d2eb9ee7b15a97efd89ce63dcfdaa3ccbabf" 1649 | 1650 | diffie-hellman@^5.0.0: 1651 | version "5.0.2" 1652 | resolved "https://registry.yarnpkg.com/diffie-hellman/-/diffie-hellman-5.0.2.tgz#b5835739270cfe26acf632099fded2a07f209e5e" 1653 | dependencies: 1654 | bn.js "^4.1.0" 1655 | miller-rabin "^4.0.0" 1656 | randombytes "^2.0.0" 1657 | 1658 | direction@^0.1.5: 1659 | version "0.1.5" 1660 | resolved "https://registry.yarnpkg.com/direction/-/direction-0.1.5.tgz#ce5d797f97e26f8be7beff53f7dc40e1c1a9ec4c" 1661 | 1662 | doctrine@1.5.0: 1663 | version "1.5.0" 1664 | resolved "https://registry.yarnpkg.com/doctrine/-/doctrine-1.5.0.tgz#379dce730f6166f76cefa4e6707a159b02c5a6fa" 1665 | dependencies: 1666 | esutils "^2.0.2" 1667 | isarray "^1.0.0" 1668 | 1669 | doctrine@^2.0.0: 1670 | version "2.0.0" 1671 | resolved "https://registry.yarnpkg.com/doctrine/-/doctrine-2.0.0.tgz#c73d8d2909d22291e1a007a395804da8b665fe63" 1672 | dependencies: 1673 | esutils "^2.0.2" 1674 | isarray "^1.0.0" 1675 | 1676 | domain-browser@~1.1.0: 1677 | version "1.1.7" 1678 | resolved "https://registry.yarnpkg.com/domain-browser/-/domain-browser-1.1.7.tgz#867aa4b093faa05f1de08c06f4d7b21fdf8698bc" 1679 | 1680 | duplexer2@^0.1.2, duplexer2@~0.1.0, duplexer2@~0.1.2: 1681 | version "0.1.4" 1682 | resolved "https://registry.yarnpkg.com/duplexer2/-/duplexer2-0.1.4.tgz#8b12dab878c0d69e3e7891051662a32fc6bddcc1" 1683 | dependencies: 1684 | readable-stream "^2.0.2" 1685 | 1686 | ecc-jsbn@~0.1.1: 1687 | version "0.1.1" 1688 | resolved "https://registry.yarnpkg.com/ecc-jsbn/-/ecc-jsbn-0.1.1.tgz#0fc73a9ed5f0d53c38193398523ef7e543777505" 1689 | dependencies: 1690 | jsbn "~0.1.0" 1691 | 1692 | ecstatic@^1.4.0: 1693 | version "1.4.1" 1694 | resolved "https://registry.yarnpkg.com/ecstatic/-/ecstatic-1.4.1.tgz#32cb7b6fa2e290d58668674d115e8f0c3d567d6a" 1695 | dependencies: 1696 | he "^0.5.0" 1697 | mime "^1.2.11" 1698 | minimist "^1.1.0" 1699 | url-join "^1.0.0" 1700 | 1701 | elliptic@^6.0.0: 1702 | version "6.3.2" 1703 | resolved "https://registry.yarnpkg.com/elliptic/-/elliptic-6.3.2.tgz#e4c81e0829cf0a65ab70e998b8232723b5c1bc48" 1704 | dependencies: 1705 | bn.js "^4.4.0" 1706 | brorand "^1.0.1" 1707 | hash.js "^1.0.0" 1708 | inherits "^2.0.1" 1709 | 1710 | emoji-regex@^6.1.0: 1711 | version "6.5.1" 1712 | resolved "https://registry.yarnpkg.com/emoji-regex/-/emoji-regex-6.5.1.tgz#9baea929b155565c11ea41c6626eaa65cef992c2" 1713 | 1714 | encoding@^0.1.11: 1715 | version "0.1.12" 1716 | resolved "https://registry.yarnpkg.com/encoding/-/encoding-0.1.12.tgz#538b66f3ee62cd1ab51ec323829d1f9480c74beb" 1717 | dependencies: 1718 | iconv-lite "~0.4.13" 1719 | 1720 | error-ex@^1.2.0: 1721 | version "1.3.1" 1722 | resolved "https://registry.yarnpkg.com/error-ex/-/error-ex-1.3.1.tgz#f855a86ce61adc4e8621c3cda21e7a7612c3a8dc" 1723 | dependencies: 1724 | is-arrayish "^0.2.1" 1725 | 1726 | es-abstract@^1.3.2: 1727 | version "1.6.1" 1728 | resolved "https://registry.yarnpkg.com/es-abstract/-/es-abstract-1.6.1.tgz#bb8a2064120abcf928a086ea3d9043114285ec99" 1729 | dependencies: 1730 | es-to-primitive "^1.1.1" 1731 | function-bind "^1.1.0" 1732 | is-callable "^1.1.3" 1733 | is-regex "^1.0.3" 1734 | 1735 | es-abstract@^1.7.0: 1736 | version "1.9.0" 1737 | resolved "https://registry.yarnpkg.com/es-abstract/-/es-abstract-1.9.0.tgz#690829a07cae36b222e7fd9b75c0d0573eb25227" 1738 | dependencies: 1739 | es-to-primitive "^1.1.1" 1740 | function-bind "^1.1.1" 1741 | has "^1.0.1" 1742 | is-callable "^1.1.3" 1743 | is-regex "^1.0.4" 1744 | 1745 | es-to-primitive@^1.1.1: 1746 | version "1.1.1" 1747 | resolved "https://registry.yarnpkg.com/es-to-primitive/-/es-to-primitive-1.1.1.tgz#45355248a88979034b6792e19bb81f2b7975dd0d" 1748 | dependencies: 1749 | is-callable "^1.1.1" 1750 | is-date-object "^1.0.1" 1751 | is-symbol "^1.0.1" 1752 | 1753 | escape-string-regexp@1.0.5, escape-string-regexp@^1.0.2, escape-string-regexp@^1.0.5: 1754 | version "1.0.5" 1755 | resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4" 1756 | 1757 | eslint-config-airbnb-base@^11.3.0: 1758 | version "11.3.2" 1759 | resolved "https://registry.yarnpkg.com/eslint-config-airbnb-base/-/eslint-config-airbnb-base-11.3.2.tgz#8703b11abe3c88ac7ec2b745b7fdf52e00ae680a" 1760 | dependencies: 1761 | eslint-restricted-globals "^0.1.1" 1762 | 1763 | eslint-config-airbnb-base@^12.0.0: 1764 | version "12.1.0" 1765 | resolved "https://registry.yarnpkg.com/eslint-config-airbnb-base/-/eslint-config-airbnb-base-12.1.0.tgz#386441e54a12ccd957b0a92564a4bafebd747944" 1766 | dependencies: 1767 | eslint-restricted-globals "^0.1.1" 1768 | 1769 | eslint-config-airbnb@^15.1.0: 1770 | version "15.1.0" 1771 | resolved "https://registry.yarnpkg.com/eslint-config-airbnb/-/eslint-config-airbnb-15.1.0.tgz#fd432965a906e30139001ba830f58f73aeddae8e" 1772 | dependencies: 1773 | eslint-config-airbnb-base "^11.3.0" 1774 | 1775 | eslint-config-gitbook@^2.0.3: 1776 | version "2.0.3" 1777 | resolved "https://registry.yarnpkg.com/eslint-config-gitbook/-/eslint-config-gitbook-2.0.3.tgz#3898a2c0922f572e8b3d6829005be096aa645e0e" 1778 | dependencies: 1779 | babel-eslint "^8.0.0" 1780 | eslint-config-airbnb "^15.1.0" 1781 | eslint-config-airbnb-base "^12.0.0" 1782 | eslint-config-prettier "^2.6.0" 1783 | eslint-plugin-flowtype "^2.35.1" 1784 | eslint-plugin-import "^2.7.0" 1785 | eslint-plugin-jsx-a11y "^5.1.0" 1786 | eslint-plugin-prettier "^2.3.1" 1787 | eslint-plugin-react "^7.3.0" 1788 | prettier "^1.7.0" 1789 | 1790 | eslint-config-prettier@^2.6.0: 1791 | version "2.7.0" 1792 | resolved "https://registry.yarnpkg.com/eslint-config-prettier/-/eslint-config-prettier-2.7.0.tgz#7bbfef66ad783277836f4ea556e68b9bcc9da4d0" 1793 | dependencies: 1794 | get-stdin "^5.0.1" 1795 | 1796 | eslint-import-resolver-node@^0.3.1: 1797 | version "0.3.1" 1798 | resolved "https://registry.yarnpkg.com/eslint-import-resolver-node/-/eslint-import-resolver-node-0.3.1.tgz#4422574cde66a9a7b099938ee4d508a199e0e3cc" 1799 | dependencies: 1800 | debug "^2.6.8" 1801 | resolve "^1.2.0" 1802 | 1803 | eslint-module-utils@^2.1.1: 1804 | version "2.1.1" 1805 | resolved "https://registry.yarnpkg.com/eslint-module-utils/-/eslint-module-utils-2.1.1.tgz#abaec824177613b8a95b299639e1b6facf473449" 1806 | dependencies: 1807 | debug "^2.6.8" 1808 | pkg-dir "^1.0.0" 1809 | 1810 | eslint-plugin-flowtype@^2.35.1: 1811 | version "2.39.1" 1812 | resolved "https://registry.yarnpkg.com/eslint-plugin-flowtype/-/eslint-plugin-flowtype-2.39.1.tgz#b5624622a0388bcd969f4351131232dcb9649cd5" 1813 | dependencies: 1814 | lodash "^4.15.0" 1815 | 1816 | eslint-plugin-import@^2.7.0, eslint-plugin-import@^2.8.0: 1817 | version "2.8.0" 1818 | resolved "https://registry.yarnpkg.com/eslint-plugin-import/-/eslint-plugin-import-2.8.0.tgz#fa1b6ef31fcb3c501c09859c1b86f1fc5b986894" 1819 | dependencies: 1820 | builtin-modules "^1.1.1" 1821 | contains-path "^0.1.0" 1822 | debug "^2.6.8" 1823 | doctrine "1.5.0" 1824 | eslint-import-resolver-node "^0.3.1" 1825 | eslint-module-utils "^2.1.1" 1826 | has "^1.0.1" 1827 | lodash.cond "^4.3.0" 1828 | minimatch "^3.0.3" 1829 | read-pkg-up "^2.0.0" 1830 | 1831 | eslint-plugin-jsx-a11y@^5.1.0: 1832 | version "5.1.1" 1833 | resolved "https://registry.yarnpkg.com/eslint-plugin-jsx-a11y/-/eslint-plugin-jsx-a11y-5.1.1.tgz#5c96bb5186ca14e94db1095ff59b3e2bd94069b1" 1834 | dependencies: 1835 | aria-query "^0.7.0" 1836 | array-includes "^3.0.3" 1837 | ast-types-flow "0.0.7" 1838 | axobject-query "^0.1.0" 1839 | damerau-levenshtein "^1.0.0" 1840 | emoji-regex "^6.1.0" 1841 | jsx-ast-utils "^1.4.0" 1842 | 1843 | eslint-plugin-prettier@^2.3.1: 1844 | version "2.3.1" 1845 | resolved "https://registry.yarnpkg.com/eslint-plugin-prettier/-/eslint-plugin-prettier-2.3.1.tgz#e7a746c67e716f335274b88295a9ead9f544e44d" 1846 | dependencies: 1847 | fast-diff "^1.1.1" 1848 | jest-docblock "^21.0.0" 1849 | 1850 | eslint-plugin-react@^7.3.0: 1851 | version "7.4.0" 1852 | resolved "https://registry.yarnpkg.com/eslint-plugin-react/-/eslint-plugin-react-7.4.0.tgz#300a95861b9729c087d362dd64abcc351a74364a" 1853 | dependencies: 1854 | doctrine "^2.0.0" 1855 | has "^1.0.1" 1856 | jsx-ast-utils "^2.0.0" 1857 | prop-types "^15.5.10" 1858 | 1859 | eslint-restricted-globals@^0.1.1: 1860 | version "0.1.1" 1861 | resolved "https://registry.yarnpkg.com/eslint-restricted-globals/-/eslint-restricted-globals-0.1.1.tgz#35f0d5cbc64c2e3ed62e93b4b1a7af05ba7ed4d7" 1862 | 1863 | eslint-scope@^3.7.1: 1864 | version "3.7.1" 1865 | resolved "https://registry.yarnpkg.com/eslint-scope/-/eslint-scope-3.7.1.tgz#3d63c3edfda02e06e01a452ad88caacc7cdcb6e8" 1866 | dependencies: 1867 | esrecurse "^4.1.0" 1868 | estraverse "^4.1.1" 1869 | 1870 | eslint@^4.10.0: 1871 | version "4.10.0" 1872 | resolved "https://registry.yarnpkg.com/eslint/-/eslint-4.10.0.tgz#f25d0d7955c81968c2309aa5c9a229e045176bb7" 1873 | dependencies: 1874 | ajv "^5.2.0" 1875 | babel-code-frame "^6.22.0" 1876 | chalk "^2.1.0" 1877 | concat-stream "^1.6.0" 1878 | cross-spawn "^5.1.0" 1879 | debug "^3.0.1" 1880 | doctrine "^2.0.0" 1881 | eslint-scope "^3.7.1" 1882 | espree "^3.5.1" 1883 | esquery "^1.0.0" 1884 | estraverse "^4.2.0" 1885 | esutils "^2.0.2" 1886 | file-entry-cache "^2.0.0" 1887 | functional-red-black-tree "^1.0.1" 1888 | glob "^7.1.2" 1889 | globals "^9.17.0" 1890 | ignore "^3.3.3" 1891 | imurmurhash "^0.1.4" 1892 | inquirer "^3.0.6" 1893 | is-resolvable "^1.0.0" 1894 | js-yaml "^3.9.1" 1895 | json-stable-stringify "^1.0.1" 1896 | levn "^0.3.0" 1897 | lodash "^4.17.4" 1898 | minimatch "^3.0.2" 1899 | mkdirp "^0.5.1" 1900 | natural-compare "^1.4.0" 1901 | optionator "^0.8.2" 1902 | path-is-inside "^1.0.2" 1903 | pluralize "^7.0.0" 1904 | progress "^2.0.0" 1905 | require-uncached "^1.0.3" 1906 | semver "^5.3.0" 1907 | strip-ansi "^4.0.0" 1908 | strip-json-comments "~2.0.1" 1909 | table "^4.0.1" 1910 | text-table "~0.2.0" 1911 | 1912 | espree@^3.5.1: 1913 | version "3.5.1" 1914 | resolved "https://registry.yarnpkg.com/espree/-/espree-3.5.1.tgz#0c988b8ab46db53100a1954ae4ba995ddd27d87e" 1915 | dependencies: 1916 | acorn "^5.1.1" 1917 | acorn-jsx "^3.0.0" 1918 | 1919 | esprima@^4.0.0: 1920 | version "4.0.0" 1921 | resolved "https://registry.yarnpkg.com/esprima/-/esprima-4.0.0.tgz#4499eddcd1110e0b218bacf2fa7f7f59f55ca804" 1922 | 1923 | esquery@^1.0.0: 1924 | version "1.0.0" 1925 | resolved "https://registry.yarnpkg.com/esquery/-/esquery-1.0.0.tgz#cfba8b57d7fba93f17298a8a006a04cda13d80fa" 1926 | dependencies: 1927 | estraverse "^4.0.0" 1928 | 1929 | esrecurse@^4.1.0: 1930 | version "4.1.0" 1931 | resolved "https://registry.yarnpkg.com/esrecurse/-/esrecurse-4.1.0.tgz#4713b6536adf7f2ac4f327d559e7756bff648220" 1932 | dependencies: 1933 | estraverse "~4.1.0" 1934 | object-assign "^4.0.1" 1935 | 1936 | esrever@^0.2.0: 1937 | version "0.2.0" 1938 | resolved "https://registry.yarnpkg.com/esrever/-/esrever-0.2.0.tgz#96e9d28f4f1b1a76784cd5d490eaae010e7407b8" 1939 | 1940 | estraverse@^4.0.0, estraverse@^4.1.1, estraverse@^4.2.0: 1941 | version "4.2.0" 1942 | resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-4.2.0.tgz#0dee3fed31fcd469618ce7342099fc1afa0bdb13" 1943 | 1944 | estraverse@~4.1.0: 1945 | version "4.1.1" 1946 | resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-4.1.1.tgz#f6caca728933a850ef90661d0e17982ba47111a2" 1947 | 1948 | esutils@^2.0.2: 1949 | version "2.0.2" 1950 | resolved "https://registry.yarnpkg.com/esutils/-/esutils-2.0.2.tgz#0abf4f1caa5bcb1f7a9d8acc6dea4faaa04bac9b" 1951 | 1952 | eventemitter3@1.x.x: 1953 | version "1.2.0" 1954 | resolved "https://registry.yarnpkg.com/eventemitter3/-/eventemitter3-1.2.0.tgz#1c86991d816ad1e504750e73874224ecf3bec508" 1955 | 1956 | events@~1.1.0: 1957 | version "1.1.1" 1958 | resolved "https://registry.yarnpkg.com/events/-/events-1.1.1.tgz#9ebdb7635ad099c70dcc4c2a1f5004288e8bd924" 1959 | 1960 | evp_bytestokey@^1.0.0: 1961 | version "1.0.0" 1962 | resolved "https://registry.yarnpkg.com/evp_bytestokey/-/evp_bytestokey-1.0.0.tgz#497b66ad9fef65cd7c08a6180824ba1476b66e53" 1963 | dependencies: 1964 | create-hash "^1.1.1" 1965 | 1966 | expand-brackets@^0.1.4: 1967 | version "0.1.5" 1968 | resolved "https://registry.yarnpkg.com/expand-brackets/-/expand-brackets-0.1.5.tgz#df07284e342a807cd733ac5af72411e581d1177b" 1969 | dependencies: 1970 | is-posix-bracket "^0.1.0" 1971 | 1972 | expand-range@^1.8.1: 1973 | version "1.8.2" 1974 | resolved "https://registry.yarnpkg.com/expand-range/-/expand-range-1.8.2.tgz#a299effd335fe2721ebae8e257ec79644fc85337" 1975 | dependencies: 1976 | fill-range "^2.1.0" 1977 | 1978 | expect@^1.20.2: 1979 | version "1.20.2" 1980 | resolved "https://registry.yarnpkg.com/expect/-/expect-1.20.2.tgz#d458fe4c56004036bae3232416a3f6361f04f965" 1981 | dependencies: 1982 | define-properties "~1.1.2" 1983 | has "^1.0.1" 1984 | is-equal "^1.5.1" 1985 | is-regex "^1.0.3" 1986 | object-inspect "^1.1.0" 1987 | object-keys "^1.0.9" 1988 | tmatch "^2.0.1" 1989 | 1990 | extend@~3.0.0: 1991 | version "3.0.0" 1992 | resolved "https://registry.yarnpkg.com/extend/-/extend-3.0.0.tgz#5a474353b9f3353ddd8176dfd37b91c83a46f1d4" 1993 | 1994 | external-editor@^2.0.4: 1995 | version "2.0.5" 1996 | resolved "https://registry.yarnpkg.com/external-editor/-/external-editor-2.0.5.tgz#52c249a3981b9ba187c7cacf5beb50bf1d91a6bc" 1997 | dependencies: 1998 | iconv-lite "^0.4.17" 1999 | jschardet "^1.4.2" 2000 | tmp "^0.0.33" 2001 | 2002 | extglob@^0.3.1: 2003 | version "0.3.2" 2004 | resolved "https://registry.yarnpkg.com/extglob/-/extglob-0.3.2.tgz#2e18ff3d2f49ab2765cec9023f011daa8d8349a1" 2005 | dependencies: 2006 | is-extglob "^1.0.0" 2007 | 2008 | extsprintf@1.0.2: 2009 | version "1.0.2" 2010 | resolved "https://registry.yarnpkg.com/extsprintf/-/extsprintf-1.0.2.tgz#e1080e0658e300b06294990cc70e1502235fd550" 2011 | 2012 | fast-deep-equal@^1.0.0: 2013 | version "1.0.0" 2014 | resolved "https://registry.yarnpkg.com/fast-deep-equal/-/fast-deep-equal-1.0.0.tgz#96256a3bc975595eb36d82e9929d060d893439ff" 2015 | 2016 | fast-diff@^1.1.1: 2017 | version "1.1.2" 2018 | resolved "https://registry.yarnpkg.com/fast-diff/-/fast-diff-1.1.2.tgz#4b62c42b8e03de3f848460b639079920695d0154" 2019 | 2020 | fast-json-stable-stringify@^2.0.0: 2021 | version "2.0.0" 2022 | resolved "https://registry.yarnpkg.com/fast-json-stable-stringify/-/fast-json-stable-stringify-2.0.0.tgz#d5142c0caee6b1189f87d3a76111064f86c8bbf2" 2023 | 2024 | fast-levenshtein@~2.0.4: 2025 | version "2.0.5" 2026 | resolved "https://registry.yarnpkg.com/fast-levenshtein/-/fast-levenshtein-2.0.5.tgz#bd33145744519ab1c36c3ee9f31f08e9079b67f2" 2027 | 2028 | fbjs@^0.8.1, fbjs@^0.8.4: 2029 | version "0.8.6" 2030 | resolved "https://registry.yarnpkg.com/fbjs/-/fbjs-0.8.6.tgz#7eb67d6986b2d5007a9b6e92e0e7cb6f75cad290" 2031 | dependencies: 2032 | core-js "^1.0.0" 2033 | isomorphic-fetch "^2.1.1" 2034 | loose-envify "^1.0.0" 2035 | object-assign "^4.1.0" 2036 | promise "^7.1.1" 2037 | ua-parser-js "^0.7.9" 2038 | 2039 | fbjs@^0.8.16: 2040 | version "0.8.16" 2041 | resolved "https://registry.yarnpkg.com/fbjs/-/fbjs-0.8.16.tgz#5e67432f550dc41b572bf55847b8aca64e5337db" 2042 | dependencies: 2043 | core-js "^1.0.0" 2044 | isomorphic-fetch "^2.1.1" 2045 | loose-envify "^1.0.0" 2046 | object-assign "^4.1.0" 2047 | promise "^7.1.1" 2048 | setimmediate "^1.0.5" 2049 | ua-parser-js "^0.7.9" 2050 | 2051 | fbjs@^0.8.9: 2052 | version "0.8.15" 2053 | resolved "https://registry.yarnpkg.com/fbjs/-/fbjs-0.8.15.tgz#4f0695fdfcc16c37c0b07facec8cb4c4091685b9" 2054 | dependencies: 2055 | core-js "^1.0.0" 2056 | isomorphic-fetch "^2.1.1" 2057 | loose-envify "^1.0.0" 2058 | object-assign "^4.1.0" 2059 | promise "^7.1.1" 2060 | setimmediate "^1.0.5" 2061 | ua-parser-js "^0.7.9" 2062 | 2063 | figures@^2.0.0: 2064 | version "2.0.0" 2065 | resolved "https://registry.yarnpkg.com/figures/-/figures-2.0.0.tgz#3ab1a2d2a62c8bfb431a0c94cb797a2fce27c962" 2066 | dependencies: 2067 | escape-string-regexp "^1.0.5" 2068 | 2069 | file-entry-cache@^2.0.0: 2070 | version "2.0.0" 2071 | resolved "https://registry.yarnpkg.com/file-entry-cache/-/file-entry-cache-2.0.0.tgz#c392990c3e684783d838b8c84a45d8a048458361" 2072 | dependencies: 2073 | flat-cache "^1.2.1" 2074 | object-assign "^4.0.1" 2075 | 2076 | filename-regex@^2.0.0: 2077 | version "2.0.0" 2078 | resolved "https://registry.yarnpkg.com/filename-regex/-/filename-regex-2.0.0.tgz#996e3e80479b98b9897f15a8a58b3d084e926775" 2079 | 2080 | fill-range@^2.1.0: 2081 | version "2.2.3" 2082 | resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-2.2.3.tgz#50b77dfd7e469bc7492470963699fe7a8485a723" 2083 | dependencies: 2084 | is-number "^2.1.0" 2085 | isobject "^2.0.0" 2086 | randomatic "^1.1.3" 2087 | repeat-element "^1.1.2" 2088 | repeat-string "^1.5.2" 2089 | 2090 | find-up@^1.0.0: 2091 | version "1.1.2" 2092 | resolved "https://registry.yarnpkg.com/find-up/-/find-up-1.1.2.tgz#6b2e9822b1a2ce0a60ab64d610eccad53cb24d0f" 2093 | dependencies: 2094 | path-exists "^2.0.0" 2095 | pinkie-promise "^2.0.0" 2096 | 2097 | find-up@^2.0.0: 2098 | version "2.1.0" 2099 | resolved "https://registry.yarnpkg.com/find-up/-/find-up-2.1.0.tgz#45d1b7e506c717ddd482775a2b77920a3c0c57a7" 2100 | dependencies: 2101 | locate-path "^2.0.0" 2102 | 2103 | flat-cache@^1.2.1: 2104 | version "1.2.1" 2105 | resolved "https://registry.yarnpkg.com/flat-cache/-/flat-cache-1.2.1.tgz#6c837d6225a7de5659323740b36d5361f71691ff" 2106 | dependencies: 2107 | circular-json "^0.3.0" 2108 | del "^2.0.2" 2109 | graceful-fs "^4.1.2" 2110 | write "^0.2.1" 2111 | 2112 | flow-bin@^0.57.3: 2113 | version "0.57.3" 2114 | resolved "https://registry.yarnpkg.com/flow-bin/-/flow-bin-0.57.3.tgz#843fb80a821b6d0c5847f7bb3f42365ffe53b27b" 2115 | 2116 | for-in@^0.1.5: 2117 | version "0.1.6" 2118 | resolved "https://registry.yarnpkg.com/for-in/-/for-in-0.1.6.tgz#c9f96e89bfad18a545af5ec3ed352a1d9e5b4dc8" 2119 | 2120 | for-own@^0.1.4: 2121 | version "0.1.4" 2122 | resolved "https://registry.yarnpkg.com/for-own/-/for-own-0.1.4.tgz#0149b41a39088c7515f51ebe1c1386d45f935072" 2123 | dependencies: 2124 | for-in "^0.1.5" 2125 | 2126 | foreach@^2.0.5: 2127 | version "2.0.5" 2128 | resolved "https://registry.yarnpkg.com/foreach/-/foreach-2.0.5.tgz#0bee005018aeb260d0a3af3ae658dd0136ec1b99" 2129 | 2130 | forever-agent@~0.6.1: 2131 | version "0.6.1" 2132 | resolved "https://registry.yarnpkg.com/forever-agent/-/forever-agent-0.6.1.tgz#fbc71f0c41adeb37f96c577ad1ed42d8fdacca91" 2133 | 2134 | form-data@~2.1.1: 2135 | version "2.1.2" 2136 | resolved "https://registry.yarnpkg.com/form-data/-/form-data-2.1.2.tgz#89c3534008b97eada4cbb157d58f6f5df025eae4" 2137 | dependencies: 2138 | asynckit "^0.4.0" 2139 | combined-stream "^1.0.5" 2140 | mime-types "^2.1.12" 2141 | 2142 | fs-readdir-recursive@^1.0.0: 2143 | version "1.0.0" 2144 | resolved "https://registry.yarnpkg.com/fs-readdir-recursive/-/fs-readdir-recursive-1.0.0.tgz#8cd1745c8b4f8a29c8caec392476921ba195f560" 2145 | 2146 | fs.realpath@^1.0.0: 2147 | version "1.0.0" 2148 | resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f" 2149 | 2150 | fsevents@^1.0.0: 2151 | version "1.0.15" 2152 | resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-1.0.15.tgz#fa63f590f3c2ad91275e4972a6cea545fb0aae44" 2153 | dependencies: 2154 | nan "^2.3.0" 2155 | node-pre-gyp "^0.6.29" 2156 | 2157 | fstream-ignore@~1.0.5: 2158 | version "1.0.5" 2159 | resolved "https://registry.yarnpkg.com/fstream-ignore/-/fstream-ignore-1.0.5.tgz#9c31dae34767018fe1d249b24dada67d092da105" 2160 | dependencies: 2161 | fstream "^1.0.0" 2162 | inherits "2" 2163 | minimatch "^3.0.0" 2164 | 2165 | fstream@^1.0.0, fstream@^1.0.2, fstream@~1.0.10: 2166 | version "1.0.10" 2167 | resolved "https://registry.yarnpkg.com/fstream/-/fstream-1.0.10.tgz#604e8a92fe26ffd9f6fae30399d4984e1ab22822" 2168 | dependencies: 2169 | graceful-fs "^4.1.2" 2170 | inherits "~2.0.0" 2171 | mkdirp ">=0.5 0" 2172 | rimraf "2" 2173 | 2174 | function-bind@^1.0.2, function-bind@^1.1.0: 2175 | version "1.1.0" 2176 | resolved "https://registry.yarnpkg.com/function-bind/-/function-bind-1.1.0.tgz#16176714c801798e4e8f2cf7f7529467bb4a5771" 2177 | 2178 | function-bind@^1.1.1: 2179 | version "1.1.1" 2180 | resolved "https://registry.yarnpkg.com/function-bind/-/function-bind-1.1.1.tgz#a56899d3ea3c9bab874bb9773b7c5ede92f4895d" 2181 | 2182 | functional-red-black-tree@^1.0.1: 2183 | version "1.0.1" 2184 | resolved "https://registry.yarnpkg.com/functional-red-black-tree/-/functional-red-black-tree-1.0.1.tgz#1b0ab3bd553b2a0d6399d29c0e3ea0b252078327" 2185 | 2186 | gauge@~2.7.1: 2187 | version "2.7.1" 2188 | resolved "https://registry.yarnpkg.com/gauge/-/gauge-2.7.1.tgz#388473894fe8be5e13ffcdb8b93e4ed0616428c7" 2189 | dependencies: 2190 | aproba "^1.0.3" 2191 | console-control-strings "^1.0.0" 2192 | has-color "^0.1.7" 2193 | has-unicode "^2.0.0" 2194 | object-assign "^4.1.0" 2195 | signal-exit "^3.0.0" 2196 | string-width "^1.0.1" 2197 | strip-ansi "^3.0.1" 2198 | wide-align "^1.1.0" 2199 | 2200 | generate-function@^2.0.0: 2201 | version "2.0.0" 2202 | resolved "https://registry.yarnpkg.com/generate-function/-/generate-function-2.0.0.tgz#6858fe7c0969b7d4e9093337647ac79f60dfbe74" 2203 | 2204 | generate-object-property@^1.1.0: 2205 | version "1.2.0" 2206 | resolved "https://registry.yarnpkg.com/generate-object-property/-/generate-object-property-1.2.0.tgz#9c0e1c40308ce804f4783618b937fa88f99d50d0" 2207 | dependencies: 2208 | is-property "^1.0.0" 2209 | 2210 | get-document@1: 2211 | version "1.0.0" 2212 | resolved "https://registry.yarnpkg.com/get-document/-/get-document-1.0.0.tgz#4821bce66f1c24cb0331602be6cb6b12c4f01c4b" 2213 | 2214 | get-stdin@^5.0.1: 2215 | version "5.0.1" 2216 | resolved "https://registry.yarnpkg.com/get-stdin/-/get-stdin-5.0.1.tgz#122e161591e21ff4c52530305693f20e6393a398" 2217 | 2218 | get-window@^1.1.1: 2219 | version "1.1.1" 2220 | resolved "https://registry.yarnpkg.com/get-window/-/get-window-1.1.1.tgz#0750f8970c88a54ac1294deb97add9568b3db594" 2221 | dependencies: 2222 | get-document "1" 2223 | 2224 | getpass@^0.1.1: 2225 | version "0.1.6" 2226 | resolved "https://registry.yarnpkg.com/getpass/-/getpass-0.1.6.tgz#283ffd9fc1256840875311c1b60e8c40187110e6" 2227 | dependencies: 2228 | assert-plus "^1.0.0" 2229 | 2230 | gh-pages@^0.11.0: 2231 | version "0.11.0" 2232 | resolved "https://registry.yarnpkg.com/gh-pages/-/gh-pages-0.11.0.tgz#93313c6dcbfc74d426bc89a29ebff6420acc3c1b" 2233 | dependencies: 2234 | async "1.5.2" 2235 | commander "2.9.0" 2236 | globby "^4.0.0" 2237 | graceful-fs "4.1.2" 2238 | q "1.4.1" 2239 | q-io "1.13.2" 2240 | wrench "1.5.8" 2241 | 2242 | glob-base@^0.3.0: 2243 | version "0.3.0" 2244 | resolved "https://registry.yarnpkg.com/glob-base/-/glob-base-0.3.0.tgz#dbb164f6221b1c0b1ccf82aea328b497df0ea3c4" 2245 | dependencies: 2246 | glob-parent "^2.0.0" 2247 | is-glob "^2.0.0" 2248 | 2249 | glob-parent@^2.0.0: 2250 | version "2.0.0" 2251 | resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-2.0.0.tgz#81383d72db054fcccf5336daa902f182f6edbb28" 2252 | dependencies: 2253 | is-glob "^2.0.0" 2254 | 2255 | glob@7.0.5: 2256 | version "7.0.5" 2257 | resolved "https://registry.yarnpkg.com/glob/-/glob-7.0.5.tgz#b4202a69099bbb4d292a7c1b95b6682b67ebdc95" 2258 | dependencies: 2259 | fs.realpath "^1.0.0" 2260 | inflight "^1.0.4" 2261 | inherits "2" 2262 | minimatch "^3.0.2" 2263 | once "^1.3.0" 2264 | path-is-absolute "^1.0.0" 2265 | 2266 | glob@^6.0.1: 2267 | version "6.0.4" 2268 | resolved "https://registry.yarnpkg.com/glob/-/glob-6.0.4.tgz#0f08860f6a155127b2fadd4f9ce24b1aab6e4d22" 2269 | dependencies: 2270 | inflight "^1.0.4" 2271 | inherits "2" 2272 | minimatch "2 || 3" 2273 | once "^1.3.0" 2274 | path-is-absolute "^1.0.0" 2275 | 2276 | glob@^7.0.3, glob@^7.0.5: 2277 | version "7.1.1" 2278 | resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.1.tgz#805211df04faaf1c63a3600306cdf5ade50b2ec8" 2279 | dependencies: 2280 | fs.realpath "^1.0.0" 2281 | inflight "^1.0.4" 2282 | inherits "2" 2283 | minimatch "^3.0.2" 2284 | once "^1.3.0" 2285 | path-is-absolute "^1.0.0" 2286 | 2287 | glob@^7.1.0, glob@^7.1.2: 2288 | version "7.1.2" 2289 | resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.2.tgz#c19c9df9a028702d678612384a6552404c636d15" 2290 | dependencies: 2291 | fs.realpath "^1.0.0" 2292 | inflight "^1.0.4" 2293 | inherits "2" 2294 | minimatch "^3.0.4" 2295 | once "^1.3.0" 2296 | path-is-absolute "^1.0.0" 2297 | 2298 | globals@^10.0.0: 2299 | version "10.3.0" 2300 | resolved "https://registry.yarnpkg.com/globals/-/globals-10.3.0.tgz#716aba93657b56630b5a0e77de5ea8ac6215afaa" 2301 | 2302 | globals@^9.17.0, globals@^9.18.0: 2303 | version "9.18.0" 2304 | resolved "https://registry.yarnpkg.com/globals/-/globals-9.18.0.tgz#aa3896b3e69b487f17e31ed2143d69a8e30c2d8a" 2305 | 2306 | globby@^4.0.0: 2307 | version "4.1.0" 2308 | resolved "https://registry.yarnpkg.com/globby/-/globby-4.1.0.tgz#080f54549ec1b82a6c60e631fc82e1211dbe95f8" 2309 | dependencies: 2310 | array-union "^1.0.1" 2311 | arrify "^1.0.0" 2312 | glob "^6.0.1" 2313 | object-assign "^4.0.1" 2314 | pify "^2.0.0" 2315 | pinkie-promise "^2.0.0" 2316 | 2317 | globby@^5.0.0: 2318 | version "5.0.0" 2319 | resolved "https://registry.yarnpkg.com/globby/-/globby-5.0.0.tgz#ebd84667ca0dbb330b99bcfc68eac2bc54370e0d" 2320 | dependencies: 2321 | array-union "^1.0.1" 2322 | arrify "^1.0.0" 2323 | glob "^7.0.3" 2324 | object-assign "^4.0.1" 2325 | pify "^2.0.0" 2326 | pinkie-promise "^2.0.0" 2327 | 2328 | graceful-fs@4.1.2: 2329 | version "4.1.2" 2330 | resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.1.2.tgz#fe2239b7574972e67e41f808823f9bfa4a991e37" 2331 | 2332 | graceful-fs@^4.1.2, graceful-fs@^4.1.4: 2333 | version "4.1.11" 2334 | resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.1.11.tgz#0e8bdfe4d1ddb8854d64e04ea7c00e2a026e5658" 2335 | 2336 | "graceful-readlink@>= 1.0.0": 2337 | version "1.0.1" 2338 | resolved "https://registry.yarnpkg.com/graceful-readlink/-/graceful-readlink-1.0.1.tgz#4cafad76bc62f02fa039b2f94e9a3dd3a391a725" 2339 | 2340 | growl@1.9.2: 2341 | version "1.9.2" 2342 | resolved "https://registry.yarnpkg.com/growl/-/growl-1.9.2.tgz#0ea7743715db8d8de2c5ede1775e1b45ac85c02f" 2343 | 2344 | har-validator@~2.0.6: 2345 | version "2.0.6" 2346 | resolved "https://registry.yarnpkg.com/har-validator/-/har-validator-2.0.6.tgz#cdcbc08188265ad119b6a5a7c8ab70eecfb5d27d" 2347 | dependencies: 2348 | chalk "^1.1.1" 2349 | commander "^2.9.0" 2350 | is-my-json-valid "^2.12.4" 2351 | pinkie-promise "^2.0.0" 2352 | 2353 | has-ansi@^2.0.0: 2354 | version "2.0.0" 2355 | resolved "https://registry.yarnpkg.com/has-ansi/-/has-ansi-2.0.0.tgz#34f5049ce1ecdf2b0649af3ef24e45ed35416d91" 2356 | dependencies: 2357 | ansi-regex "^2.0.0" 2358 | 2359 | has-color@^0.1.7: 2360 | version "0.1.7" 2361 | resolved "https://registry.yarnpkg.com/has-color/-/has-color-0.1.7.tgz#67144a5260c34fc3cca677d041daf52fe7b78b2f" 2362 | 2363 | has-flag@^1.0.0: 2364 | version "1.0.0" 2365 | resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-1.0.0.tgz#9d9e793165ce017a00f00418c43f942a7b1d11fa" 2366 | 2367 | has-flag@^2.0.0: 2368 | version "2.0.0" 2369 | resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-2.0.0.tgz#e8207af1cc7b30d446cc70b734b5e8be18f88d51" 2370 | 2371 | has-unicode@^2.0.0: 2372 | version "2.0.1" 2373 | resolved "https://registry.yarnpkg.com/has-unicode/-/has-unicode-2.0.1.tgz#e0e6fe6a28cf51138855e086d1691e771de2a8b9" 2374 | 2375 | has@^1.0.0, has@^1.0.1: 2376 | version "1.0.1" 2377 | resolved "https://registry.yarnpkg.com/has/-/has-1.0.1.tgz#8461733f538b0837c9361e39a9ab9e9704dc2f28" 2378 | dependencies: 2379 | function-bind "^1.0.2" 2380 | 2381 | hash.js@^1.0.0: 2382 | version "1.0.3" 2383 | resolved "https://registry.yarnpkg.com/hash.js/-/hash.js-1.0.3.tgz#1332ff00156c0a0ffdd8236013d07b77a0451573" 2384 | dependencies: 2385 | inherits "^2.0.1" 2386 | 2387 | hawk@~3.1.3: 2388 | version "3.1.3" 2389 | resolved "https://registry.yarnpkg.com/hawk/-/hawk-3.1.3.tgz#078444bd7c1640b0fe540d2c9b73d59678e8e1c4" 2390 | dependencies: 2391 | boom "2.x.x" 2392 | cryptiles "2.x.x" 2393 | hoek "2.x.x" 2394 | sntp "1.x.x" 2395 | 2396 | he@^0.5.0: 2397 | version "0.5.0" 2398 | resolved "https://registry.yarnpkg.com/he/-/he-0.5.0.tgz#2c05ffaef90b68e860f3fd2b54ef580989277ee2" 2399 | 2400 | hoek@2.x.x: 2401 | version "2.16.3" 2402 | resolved "https://registry.yarnpkg.com/hoek/-/hoek-2.16.3.tgz#20bb7403d3cea398e91dc4710a8ff1b8274a25ed" 2403 | 2404 | home-or-tmp@^2.0.0: 2405 | version "2.0.0" 2406 | resolved "https://registry.yarnpkg.com/home-or-tmp/-/home-or-tmp-2.0.0.tgz#e36c3f2d2cae7d746a857e38d18d5f32a7882db8" 2407 | dependencies: 2408 | os-homedir "^1.0.0" 2409 | os-tmpdir "^1.0.1" 2410 | 2411 | hosted-git-info@^2.1.4: 2412 | version "2.5.0" 2413 | resolved "https://registry.yarnpkg.com/hosted-git-info/-/hosted-git-info-2.5.0.tgz#6d60e34b3abbc8313062c3b798ef8d901a07af3c" 2414 | 2415 | htmlescape@^1.1.0: 2416 | version "1.1.1" 2417 | resolved "https://registry.yarnpkg.com/htmlescape/-/htmlescape-1.1.1.tgz#3a03edc2214bca3b66424a3e7959349509cb0351" 2418 | 2419 | http-proxy@^1.8.1: 2420 | version "1.15.2" 2421 | resolved "https://registry.yarnpkg.com/http-proxy/-/http-proxy-1.15.2.tgz#642fdcaffe52d3448d2bda3b0079e9409064da31" 2422 | dependencies: 2423 | eventemitter3 "1.x.x" 2424 | requires-port "1.x.x" 2425 | 2426 | http-server@^0.9.0: 2427 | version "0.9.0" 2428 | resolved "https://registry.yarnpkg.com/http-server/-/http-server-0.9.0.tgz#8f1b06bdc733618d4dc42831c7ba1aff4e06001a" 2429 | dependencies: 2430 | colors "1.0.3" 2431 | corser "~2.0.0" 2432 | ecstatic "^1.4.0" 2433 | http-proxy "^1.8.1" 2434 | opener "~1.4.0" 2435 | optimist "0.6.x" 2436 | portfinder "0.4.x" 2437 | union "~0.4.3" 2438 | 2439 | http-signature@~1.1.0: 2440 | version "1.1.1" 2441 | resolved "https://registry.yarnpkg.com/http-signature/-/http-signature-1.1.1.tgz#df72e267066cd0ac67fb76adf8e134a8fbcf91bf" 2442 | dependencies: 2443 | assert-plus "^0.2.0" 2444 | jsprim "^1.2.2" 2445 | sshpk "^1.7.0" 2446 | 2447 | https-browserify@~0.0.0: 2448 | version "0.0.1" 2449 | resolved "https://registry.yarnpkg.com/https-browserify/-/https-browserify-0.0.1.tgz#3f91365cabe60b77ed0ebba24b454e3e09d95a82" 2450 | 2451 | iconv-lite@^0.4.17: 2452 | version "0.4.19" 2453 | resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.4.19.tgz#f7468f60135f5e5dad3399c0a81be9a1603a082b" 2454 | 2455 | iconv-lite@~0.4.13: 2456 | version "0.4.15" 2457 | resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.4.15.tgz#fe265a218ac6a57cfe854927e9d04c19825eddeb" 2458 | 2459 | ieee754@^1.1.4: 2460 | version "1.1.8" 2461 | resolved "https://registry.yarnpkg.com/ieee754/-/ieee754-1.1.8.tgz#be33d40ac10ef1926701f6f08a2d86fbfd1ad3e4" 2462 | 2463 | ignore@^3.3.3: 2464 | version "3.3.7" 2465 | resolved "https://registry.yarnpkg.com/ignore/-/ignore-3.3.7.tgz#612289bfb3c220e186a58118618d5be8c1bab021" 2466 | 2467 | immutable@^3.8.1: 2468 | version "3.8.1" 2469 | resolved "https://registry.yarnpkg.com/immutable/-/immutable-3.8.1.tgz#200807f11ab0f72710ea485542de088075f68cd2" 2470 | 2471 | imurmurhash@^0.1.4: 2472 | version "0.1.4" 2473 | resolved "https://registry.yarnpkg.com/imurmurhash/-/imurmurhash-0.1.4.tgz#9218b9b2b928a238b13dc4fb6b6d576f231453ea" 2474 | 2475 | indexof@0.0.1: 2476 | version "0.0.1" 2477 | resolved "https://registry.yarnpkg.com/indexof/-/indexof-0.0.1.tgz#82dc336d232b9062179d05ab3293a66059fd435d" 2478 | 2479 | inflight@^1.0.4: 2480 | version "1.0.6" 2481 | resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9" 2482 | dependencies: 2483 | once "^1.3.0" 2484 | wrappy "1" 2485 | 2486 | inherits@2, inherits@^2.0.1, inherits@^2.0.3, inherits@~2.0.0, inherits@~2.0.1, inherits@~2.0.3: 2487 | version "2.0.3" 2488 | resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.3.tgz#633c2c83e3da42a502f52466022480f4208261de" 2489 | 2490 | inherits@2.0.1: 2491 | version "2.0.1" 2492 | resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.1.tgz#b17d08d326b4423e568eff719f91b0b1cbdf69f1" 2493 | 2494 | ini@~1.3.0: 2495 | version "1.3.4" 2496 | resolved "https://registry.yarnpkg.com/ini/-/ini-1.3.4.tgz#0537cb79daf59b59a1a517dff706c86ec039162e" 2497 | 2498 | inline-source-map@~0.6.0: 2499 | version "0.6.2" 2500 | resolved "https://registry.yarnpkg.com/inline-source-map/-/inline-source-map-0.6.2.tgz#f9393471c18a79d1724f863fa38b586370ade2a5" 2501 | dependencies: 2502 | source-map "~0.5.3" 2503 | 2504 | inquirer@^3.0.6: 2505 | version "3.3.0" 2506 | resolved "https://registry.yarnpkg.com/inquirer/-/inquirer-3.3.0.tgz#9dd2f2ad765dcab1ff0443b491442a20ba227dc9" 2507 | dependencies: 2508 | ansi-escapes "^3.0.0" 2509 | chalk "^2.0.0" 2510 | cli-cursor "^2.1.0" 2511 | cli-width "^2.0.0" 2512 | external-editor "^2.0.4" 2513 | figures "^2.0.0" 2514 | lodash "^4.3.0" 2515 | mute-stream "0.0.7" 2516 | run-async "^2.2.0" 2517 | rx-lite "^4.0.8" 2518 | rx-lite-aggregates "^4.0.8" 2519 | string-width "^2.1.0" 2520 | strip-ansi "^4.0.0" 2521 | through "^2.3.6" 2522 | 2523 | insert-module-globals@^7.0.0: 2524 | version "7.0.1" 2525 | resolved "https://registry.yarnpkg.com/insert-module-globals/-/insert-module-globals-7.0.1.tgz#c03bf4e01cb086d5b5e5ace8ad0afe7889d638c3" 2526 | dependencies: 2527 | JSONStream "^1.0.3" 2528 | combine-source-map "~0.7.1" 2529 | concat-stream "~1.5.1" 2530 | is-buffer "^1.1.0" 2531 | lexical-scope "^1.2.0" 2532 | process "~0.11.0" 2533 | through2 "^2.0.0" 2534 | xtend "^4.0.0" 2535 | 2536 | invariant@^2.2.0, invariant@^2.2.2: 2537 | version "2.2.2" 2538 | resolved "https://registry.yarnpkg.com/invariant/-/invariant-2.2.2.tgz#9e1f56ac0acdb6bf303306f338be3b204ae60360" 2539 | dependencies: 2540 | loose-envify "^1.0.0" 2541 | 2542 | is-arrayish@^0.2.1: 2543 | version "0.2.1" 2544 | resolved "https://registry.yarnpkg.com/is-arrayish/-/is-arrayish-0.2.1.tgz#77c99840527aa8ecb1a8ba697b80645a7a926a9d" 2545 | 2546 | is-arrow-function@^2.0.3: 2547 | version "2.0.3" 2548 | resolved "https://registry.yarnpkg.com/is-arrow-function/-/is-arrow-function-2.0.3.tgz#29be2c2d8d9450852b8bbafb635ba7b8d8e87ec2" 2549 | dependencies: 2550 | is-callable "^1.0.4" 2551 | 2552 | is-binary-path@^1.0.0: 2553 | version "1.0.1" 2554 | resolved "https://registry.yarnpkg.com/is-binary-path/-/is-binary-path-1.0.1.tgz#75f16642b480f187a711c814161fd3a4a7655898" 2555 | dependencies: 2556 | binary-extensions "^1.0.0" 2557 | 2558 | is-boolean-object@^1.0.0: 2559 | version "1.0.0" 2560 | resolved "https://registry.yarnpkg.com/is-boolean-object/-/is-boolean-object-1.0.0.tgz#98f8b28030684219a95f375cfbd88ce3405dff93" 2561 | 2562 | is-buffer@^1.0.2, is-buffer@^1.1.0: 2563 | version "1.1.4" 2564 | resolved "https://registry.yarnpkg.com/is-buffer/-/is-buffer-1.1.4.tgz#cfc86ccd5dc5a52fa80489111c6920c457e2d98b" 2565 | 2566 | is-builtin-module@^1.0.0: 2567 | version "1.0.0" 2568 | resolved "https://registry.yarnpkg.com/is-builtin-module/-/is-builtin-module-1.0.0.tgz#540572d34f7ac3119f8f76c30cbc1b1e037affbe" 2569 | dependencies: 2570 | builtin-modules "^1.0.0" 2571 | 2572 | is-callable@^1.0.4, is-callable@^1.1.1, is-callable@^1.1.3: 2573 | version "1.1.3" 2574 | resolved "https://registry.yarnpkg.com/is-callable/-/is-callable-1.1.3.tgz#86eb75392805ddc33af71c92a0eedf74ee7604b2" 2575 | 2576 | is-date-object@^1.0.1: 2577 | version "1.0.1" 2578 | resolved "https://registry.yarnpkg.com/is-date-object/-/is-date-object-1.0.1.tgz#9aa20eb6aeebbff77fbd33e74ca01b33581d3a16" 2579 | 2580 | is-dotfile@^1.0.0: 2581 | version "1.0.2" 2582 | resolved "https://registry.yarnpkg.com/is-dotfile/-/is-dotfile-1.0.2.tgz#2c132383f39199f8edc268ca01b9b007d205cc4d" 2583 | 2584 | is-empty@^1.0.0: 2585 | version "1.0.0" 2586 | resolved "https://registry.yarnpkg.com/is-empty/-/is-empty-1.0.0.tgz#4fec90e58b09358f9e6ce1bf0260aeb6ec121741" 2587 | 2588 | is-equal-shallow@^0.1.3: 2589 | version "0.1.3" 2590 | resolved "https://registry.yarnpkg.com/is-equal-shallow/-/is-equal-shallow-0.1.3.tgz#2238098fc221de0bcfa5d9eac4c45d638aa1c534" 2591 | dependencies: 2592 | is-primitive "^2.0.0" 2593 | 2594 | is-equal@^1.5.1: 2595 | version "1.5.3" 2596 | resolved "https://registry.yarnpkg.com/is-equal/-/is-equal-1.5.3.tgz#05b7fa3a1122cbc71c1ef41ce0142d5532013b29" 2597 | dependencies: 2598 | has "^1.0.1" 2599 | is-arrow-function "^2.0.3" 2600 | is-boolean-object "^1.0.0" 2601 | is-callable "^1.1.3" 2602 | is-date-object "^1.0.1" 2603 | is-generator-function "^1.0.3" 2604 | is-number-object "^1.0.3" 2605 | is-regex "^1.0.3" 2606 | is-string "^1.0.4" 2607 | is-symbol "^1.0.1" 2608 | object.entries "^1.0.3" 2609 | 2610 | is-extendable@^0.1.1: 2611 | version "0.1.1" 2612 | resolved "https://registry.yarnpkg.com/is-extendable/-/is-extendable-0.1.1.tgz#62b110e289a471418e3ec36a617d472e301dfc89" 2613 | 2614 | is-extglob@^1.0.0: 2615 | version "1.0.0" 2616 | resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-1.0.0.tgz#ac468177c4943405a092fc8f29760c6ffc6206c0" 2617 | 2618 | is-finite@^1.0.0: 2619 | version "1.0.2" 2620 | resolved "https://registry.yarnpkg.com/is-finite/-/is-finite-1.0.2.tgz#cc6677695602be550ef11e8b4aa6305342b6d0aa" 2621 | dependencies: 2622 | number-is-nan "^1.0.0" 2623 | 2624 | is-fullwidth-code-point@^1.0.0: 2625 | version "1.0.0" 2626 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz#ef9e31386f031a7f0d643af82fde50c457ef00cb" 2627 | dependencies: 2628 | number-is-nan "^1.0.0" 2629 | 2630 | is-fullwidth-code-point@^2.0.0: 2631 | version "2.0.0" 2632 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz#a3b30a5c4f199183167aaab93beefae3ddfb654f" 2633 | 2634 | is-generator-function@^1.0.3: 2635 | version "1.0.3" 2636 | resolved "https://registry.yarnpkg.com/is-generator-function/-/is-generator-function-1.0.3.tgz#d374ca57e807444fa2658be3728ed6b174b326b1" 2637 | 2638 | is-glob@^2.0.0, is-glob@^2.0.1: 2639 | version "2.0.1" 2640 | resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-2.0.1.tgz#d096f926a3ded5600f3fdfd91198cb0888c2d863" 2641 | dependencies: 2642 | is-extglob "^1.0.0" 2643 | 2644 | is-hotkey@^0.1.1: 2645 | version "0.1.1" 2646 | resolved "https://registry.yarnpkg.com/is-hotkey/-/is-hotkey-0.1.1.tgz#b279a2fd108391be9aa93c6cb317f50357da549a" 2647 | 2648 | is-in-browser@^1.1.3: 2649 | version "1.1.3" 2650 | resolved "https://registry.yarnpkg.com/is-in-browser/-/is-in-browser-1.1.3.tgz#56ff4db683a078c6082eb95dad7dc62e1d04f835" 2651 | 2652 | is-my-json-valid@^2.12.4: 2653 | version "2.15.0" 2654 | resolved "https://registry.yarnpkg.com/is-my-json-valid/-/is-my-json-valid-2.15.0.tgz#936edda3ca3c211fd98f3b2d3e08da43f7b2915b" 2655 | dependencies: 2656 | generate-function "^2.0.0" 2657 | generate-object-property "^1.1.0" 2658 | jsonpointer "^4.0.0" 2659 | xtend "^4.0.0" 2660 | 2661 | is-number-object@^1.0.3: 2662 | version "1.0.3" 2663 | resolved "https://registry.yarnpkg.com/is-number-object/-/is-number-object-1.0.3.tgz#f265ab89a9f445034ef6aff15a8f00b00f551799" 2664 | 2665 | is-number@^2.0.2, is-number@^2.1.0: 2666 | version "2.1.0" 2667 | resolved "https://registry.yarnpkg.com/is-number/-/is-number-2.1.0.tgz#01fcbbb393463a548f2f466cce16dece49db908f" 2668 | dependencies: 2669 | kind-of "^3.0.2" 2670 | 2671 | is-path-cwd@^1.0.0: 2672 | version "1.0.0" 2673 | resolved "https://registry.yarnpkg.com/is-path-cwd/-/is-path-cwd-1.0.0.tgz#d225ec23132e89edd38fda767472e62e65f1106d" 2674 | 2675 | is-path-in-cwd@^1.0.0: 2676 | version "1.0.0" 2677 | resolved "https://registry.yarnpkg.com/is-path-in-cwd/-/is-path-in-cwd-1.0.0.tgz#6477582b8214d602346094567003be8a9eac04dc" 2678 | dependencies: 2679 | is-path-inside "^1.0.0" 2680 | 2681 | is-path-inside@^1.0.0: 2682 | version "1.0.0" 2683 | resolved "https://registry.yarnpkg.com/is-path-inside/-/is-path-inside-1.0.0.tgz#fc06e5a1683fbda13de667aff717bbc10a48f37f" 2684 | dependencies: 2685 | path-is-inside "^1.0.1" 2686 | 2687 | is-plain-object@^2.0.4: 2688 | version "2.0.4" 2689 | resolved "https://registry.yarnpkg.com/is-plain-object/-/is-plain-object-2.0.4.tgz#2c163b3fafb1b606d9d17928f05c2a1c38e07677" 2690 | dependencies: 2691 | isobject "^3.0.1" 2692 | 2693 | is-posix-bracket@^0.1.0: 2694 | version "0.1.1" 2695 | resolved "https://registry.yarnpkg.com/is-posix-bracket/-/is-posix-bracket-0.1.1.tgz#3334dc79774368e92f016e6fbc0a88f5cd6e6bc4" 2696 | 2697 | is-primitive@^2.0.0: 2698 | version "2.0.0" 2699 | resolved "https://registry.yarnpkg.com/is-primitive/-/is-primitive-2.0.0.tgz#207bab91638499c07b2adf240a41a87210034575" 2700 | 2701 | is-promise@^2.1.0: 2702 | version "2.1.0" 2703 | resolved "https://registry.yarnpkg.com/is-promise/-/is-promise-2.1.0.tgz#79a2a9ece7f096e80f36d2b2f3bc16c1ff4bf3fa" 2704 | 2705 | is-property@^1.0.0: 2706 | version "1.0.2" 2707 | resolved "https://registry.yarnpkg.com/is-property/-/is-property-1.0.2.tgz#57fe1c4e48474edd65b09911f26b1cd4095dda84" 2708 | 2709 | is-regex@^1.0.3: 2710 | version "1.0.3" 2711 | resolved "https://registry.yarnpkg.com/is-regex/-/is-regex-1.0.3.tgz#0d55182bddf9f2fde278220aec3a75642c908637" 2712 | 2713 | is-regex@^1.0.4: 2714 | version "1.0.4" 2715 | resolved "https://registry.yarnpkg.com/is-regex/-/is-regex-1.0.4.tgz#5517489b547091b0930e095654ced25ee97e9491" 2716 | dependencies: 2717 | has "^1.0.1" 2718 | 2719 | is-resolvable@^1.0.0: 2720 | version "1.0.0" 2721 | resolved "https://registry.yarnpkg.com/is-resolvable/-/is-resolvable-1.0.0.tgz#8df57c61ea2e3c501408d100fb013cf8d6e0cc62" 2722 | dependencies: 2723 | tryit "^1.0.1" 2724 | 2725 | is-stream@^1.0.1: 2726 | version "1.1.0" 2727 | resolved "https://registry.yarnpkg.com/is-stream/-/is-stream-1.1.0.tgz#12d4a3dd4e68e0b79ceb8dbc84173ae80d91ca44" 2728 | 2729 | is-string@^1.0.4: 2730 | version "1.0.4" 2731 | resolved "https://registry.yarnpkg.com/is-string/-/is-string-1.0.4.tgz#cc3a9b69857d621e963725a24caeec873b826e64" 2732 | 2733 | is-symbol@^1.0.1: 2734 | version "1.0.1" 2735 | resolved "https://registry.yarnpkg.com/is-symbol/-/is-symbol-1.0.1.tgz#3cc59f00025194b6ab2e38dbae6689256b660572" 2736 | 2737 | is-typedarray@~1.0.0: 2738 | version "1.0.0" 2739 | resolved "https://registry.yarnpkg.com/is-typedarray/-/is-typedarray-1.0.0.tgz#e479c80858df0c1b11ddda6940f96011fcda4a9a" 2740 | 2741 | is-window@^1.0.2: 2742 | version "1.0.2" 2743 | resolved "https://registry.yarnpkg.com/is-window/-/is-window-1.0.2.tgz#2c896ca53db97de45d3c33133a65d8c9f563480d" 2744 | 2745 | isarray@1.0.0, isarray@^1.0.0, isarray@~1.0.0: 2746 | version "1.0.0" 2747 | resolved "https://registry.yarnpkg.com/isarray/-/isarray-1.0.0.tgz#bb935d48582cba168c06834957a54a3e07124f11" 2748 | 2749 | isarray@~0.0.1: 2750 | version "0.0.1" 2751 | resolved "https://registry.yarnpkg.com/isarray/-/isarray-0.0.1.tgz#8a18acfca9a8f4177e09abfc6038939b05d1eedf" 2752 | 2753 | isexe@^2.0.0: 2754 | version "2.0.0" 2755 | resolved "https://registry.yarnpkg.com/isexe/-/isexe-2.0.0.tgz#e8fbf374dc556ff8947a10dcb0572d633f2cfa10" 2756 | 2757 | isobject@^2.0.0: 2758 | version "2.1.0" 2759 | resolved "https://registry.yarnpkg.com/isobject/-/isobject-2.1.0.tgz#f065561096a3f1da2ef46272f815c840d87e0c89" 2760 | dependencies: 2761 | isarray "1.0.0" 2762 | 2763 | isobject@^3.0.1: 2764 | version "3.0.1" 2765 | resolved "https://registry.yarnpkg.com/isobject/-/isobject-3.0.1.tgz#4e431e92b11a9731636aa1f9c8d1ccbcfdab78df" 2766 | 2767 | isomorphic-base64@^1.0.2: 2768 | version "1.0.2" 2769 | resolved "https://registry.yarnpkg.com/isomorphic-base64/-/isomorphic-base64-1.0.2.tgz#f426aae82569ba8a4ec5ca73ad21a44ab1ee7803" 2770 | 2771 | isomorphic-fetch@^2.1.1: 2772 | version "2.2.1" 2773 | resolved "https://registry.yarnpkg.com/isomorphic-fetch/-/isomorphic-fetch-2.2.1.tgz#611ae1acf14f5e81f729507472819fe9733558a9" 2774 | dependencies: 2775 | node-fetch "^1.0.1" 2776 | whatwg-fetch ">=0.10.0" 2777 | 2778 | isstream@~0.1.2: 2779 | version "0.1.2" 2780 | resolved "https://registry.yarnpkg.com/isstream/-/isstream-0.1.2.tgz#47e63f7af55afa6f92e1500e690eb8b8529c099a" 2781 | 2782 | jest-docblock@^21.0.0: 2783 | version "21.2.0" 2784 | resolved "https://registry.yarnpkg.com/jest-docblock/-/jest-docblock-21.2.0.tgz#51529c3b30d5fd159da60c27ceedc195faf8d414" 2785 | 2786 | jodid25519@^1.0.0: 2787 | version "1.0.2" 2788 | resolved "https://registry.yarnpkg.com/jodid25519/-/jodid25519-1.0.2.tgz#06d4912255093419477d425633606e0e90782967" 2789 | dependencies: 2790 | jsbn "~0.1.0" 2791 | 2792 | js-tokens@^2.0.0: 2793 | version "2.0.0" 2794 | resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-2.0.0.tgz#79903f5563ee778cc1162e6dcf1a0027c97f9cb5" 2795 | 2796 | js-tokens@^3.0.0, js-tokens@^3.0.2: 2797 | version "3.0.2" 2798 | resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-3.0.2.tgz#9866df395102130e38f7f996bceb65443209c25b" 2799 | 2800 | js-yaml@^3.9.1: 2801 | version "3.10.0" 2802 | resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-3.10.0.tgz#2e78441646bd4682e963f22b6e92823c309c62dc" 2803 | dependencies: 2804 | argparse "^1.0.7" 2805 | esprima "^4.0.0" 2806 | 2807 | jsbn@~0.1.0: 2808 | version "0.1.0" 2809 | resolved "https://registry.yarnpkg.com/jsbn/-/jsbn-0.1.0.tgz#650987da0dd74f4ebf5a11377a2aa2d273e97dfd" 2810 | 2811 | jschardet@^1.4.2: 2812 | version "1.6.0" 2813 | resolved "https://registry.yarnpkg.com/jschardet/-/jschardet-1.6.0.tgz#c7d1a71edcff2839db2f9ec30fc5d5ebd3c1a678" 2814 | 2815 | jsesc@^1.3.0: 2816 | version "1.3.0" 2817 | resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-1.3.0.tgz#46c3fec8c1892b12b0833db9bc7622176dbab34b" 2818 | 2819 | jsesc@~0.5.0: 2820 | version "0.5.0" 2821 | resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-0.5.0.tgz#e7dee66e35d6fc16f710fe91d5cf69f70f08911d" 2822 | 2823 | json-schema-traverse@^0.3.0: 2824 | version "0.3.1" 2825 | resolved "https://registry.yarnpkg.com/json-schema-traverse/-/json-schema-traverse-0.3.1.tgz#349a6d44c53a51de89b40805c5d5e59b417d3340" 2826 | 2827 | json-schema@0.2.3: 2828 | version "0.2.3" 2829 | resolved "https://registry.yarnpkg.com/json-schema/-/json-schema-0.2.3.tgz#b480c892e59a2f05954ce727bd3f2a4e882f9e13" 2830 | 2831 | json-stable-stringify@^1.0.1: 2832 | version "1.0.1" 2833 | resolved "https://registry.yarnpkg.com/json-stable-stringify/-/json-stable-stringify-1.0.1.tgz#9a759d39c5f2ff503fd5300646ed445f88c4f9af" 2834 | dependencies: 2835 | jsonify "~0.0.0" 2836 | 2837 | json-stable-stringify@~0.0.0: 2838 | version "0.0.1" 2839 | resolved "https://registry.yarnpkg.com/json-stable-stringify/-/json-stable-stringify-0.0.1.tgz#611c23e814db375527df851193db59dd2af27f45" 2840 | dependencies: 2841 | jsonify "~0.0.0" 2842 | 2843 | json-stringify-safe@~5.0.1: 2844 | version "5.0.1" 2845 | resolved "https://registry.yarnpkg.com/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz#1296a2d58fd45f19a0f6ce01d65701e2c735b6eb" 2846 | 2847 | json3@3.3.2: 2848 | version "3.3.2" 2849 | resolved "https://registry.yarnpkg.com/json3/-/json3-3.3.2.tgz#3c0434743df93e2f5c42aee7b19bcb483575f4e1" 2850 | 2851 | json5@^0.5.1: 2852 | version "0.5.1" 2853 | resolved "https://registry.yarnpkg.com/json5/-/json5-0.5.1.tgz#1eade7acc012034ad84e2396767ead9fa5495821" 2854 | 2855 | jsonify@~0.0.0: 2856 | version "0.0.0" 2857 | resolved "https://registry.yarnpkg.com/jsonify/-/jsonify-0.0.0.tgz#2c74b6ee41d93ca51b7b5aaee8f503631d252a73" 2858 | 2859 | jsonparse@^1.2.0: 2860 | version "1.2.0" 2861 | resolved "https://registry.yarnpkg.com/jsonparse/-/jsonparse-1.2.0.tgz#5c0c5685107160e72fe7489bddea0b44c2bc67bd" 2862 | 2863 | jsonpointer@^4.0.0: 2864 | version "4.0.0" 2865 | resolved "https://registry.yarnpkg.com/jsonpointer/-/jsonpointer-4.0.0.tgz#6661e161d2fc445f19f98430231343722e1fcbd5" 2866 | 2867 | jsprim@^1.2.2: 2868 | version "1.3.1" 2869 | resolved "https://registry.yarnpkg.com/jsprim/-/jsprim-1.3.1.tgz#2a7256f70412a29ee3670aaca625994c4dcff252" 2870 | dependencies: 2871 | extsprintf "1.0.2" 2872 | json-schema "0.2.3" 2873 | verror "1.3.6" 2874 | 2875 | jsx-ast-utils@^1.4.0: 2876 | version "1.4.1" 2877 | resolved "https://registry.yarnpkg.com/jsx-ast-utils/-/jsx-ast-utils-1.4.1.tgz#3867213e8dd79bf1e8f2300c0cfc1efb182c0df1" 2878 | 2879 | jsx-ast-utils@^2.0.0: 2880 | version "2.0.1" 2881 | resolved "https://registry.yarnpkg.com/jsx-ast-utils/-/jsx-ast-utils-2.0.1.tgz#e801b1b39985e20fffc87b40e3748080e2dcac7f" 2882 | dependencies: 2883 | array-includes "^3.0.3" 2884 | 2885 | keycode@^2.1.2: 2886 | version "2.1.9" 2887 | resolved "https://registry.yarnpkg.com/keycode/-/keycode-2.1.9.tgz#964a23c54e4889405b4861a5c9f0480d45141dfa" 2888 | 2889 | kind-of@^3.0.2: 2890 | version "3.0.4" 2891 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-3.0.4.tgz#7b8ecf18a4e17f8269d73b501c9f232c96887a74" 2892 | dependencies: 2893 | is-buffer "^1.0.2" 2894 | 2895 | labeled-stream-splicer@^2.0.0: 2896 | version "2.0.0" 2897 | resolved "https://registry.yarnpkg.com/labeled-stream-splicer/-/labeled-stream-splicer-2.0.0.tgz#a52e1d138024c00b86b1c0c91f677918b8ae0a59" 2898 | dependencies: 2899 | inherits "^2.0.1" 2900 | isarray "~0.0.1" 2901 | stream-splicer "^2.0.0" 2902 | 2903 | levn@^0.3.0, levn@~0.3.0: 2904 | version "0.3.0" 2905 | resolved "https://registry.yarnpkg.com/levn/-/levn-0.3.0.tgz#3b09924edf9f083c0490fdd4c0bc4421e04764ee" 2906 | dependencies: 2907 | prelude-ls "~1.1.2" 2908 | type-check "~0.3.2" 2909 | 2910 | lexical-scope@^1.2.0: 2911 | version "1.2.0" 2912 | resolved "https://registry.yarnpkg.com/lexical-scope/-/lexical-scope-1.2.0.tgz#fcea5edc704a4b3a8796cdca419c3a0afaf22df4" 2913 | dependencies: 2914 | astw "^2.0.0" 2915 | 2916 | load-json-file@^2.0.0: 2917 | version "2.0.0" 2918 | resolved "https://registry.yarnpkg.com/load-json-file/-/load-json-file-2.0.0.tgz#7947e42149af80d696cbf797bcaabcfe1fe29ca8" 2919 | dependencies: 2920 | graceful-fs "^4.1.2" 2921 | parse-json "^2.2.0" 2922 | pify "^2.0.0" 2923 | strip-bom "^3.0.0" 2924 | 2925 | locate-path@^2.0.0: 2926 | version "2.0.0" 2927 | resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-2.0.0.tgz#2b568b265eec944c6d9c0de9c3dbbbca0354cd8e" 2928 | dependencies: 2929 | p-locate "^2.0.0" 2930 | path-exists "^3.0.0" 2931 | 2932 | lodash._baseassign@^3.0.0: 2933 | version "3.2.0" 2934 | resolved "https://registry.yarnpkg.com/lodash._baseassign/-/lodash._baseassign-3.2.0.tgz#8c38a099500f215ad09e59f1722fd0c52bfe0a4e" 2935 | dependencies: 2936 | lodash._basecopy "^3.0.0" 2937 | lodash.keys "^3.0.0" 2938 | 2939 | lodash._basecopy@^3.0.0: 2940 | version "3.0.1" 2941 | resolved "https://registry.yarnpkg.com/lodash._basecopy/-/lodash._basecopy-3.0.1.tgz#8da0e6a876cf344c0ad8a54882111dd3c5c7ca36" 2942 | 2943 | lodash._basecreate@^3.0.0: 2944 | version "3.0.3" 2945 | resolved "https://registry.yarnpkg.com/lodash._basecreate/-/lodash._basecreate-3.0.3.tgz#1bc661614daa7fc311b7d03bf16806a0213cf821" 2946 | 2947 | lodash._getnative@^3.0.0: 2948 | version "3.9.1" 2949 | resolved "https://registry.yarnpkg.com/lodash._getnative/-/lodash._getnative-3.9.1.tgz#570bc7dede46d61cdcde687d65d3eecbaa3aaff5" 2950 | 2951 | lodash._isiterateecall@^3.0.0: 2952 | version "3.0.9" 2953 | resolved "https://registry.yarnpkg.com/lodash._isiterateecall/-/lodash._isiterateecall-3.0.9.tgz#5203ad7ba425fae842460e696db9cf3e6aac057c" 2954 | 2955 | lodash.cond@^4.3.0: 2956 | version "4.5.2" 2957 | resolved "https://registry.yarnpkg.com/lodash.cond/-/lodash.cond-4.5.2.tgz#f471a1da486be60f6ab955d17115523dd1d255d5" 2958 | 2959 | lodash.create@3.1.1: 2960 | version "3.1.1" 2961 | resolved "https://registry.yarnpkg.com/lodash.create/-/lodash.create-3.1.1.tgz#d7f2849f0dbda7e04682bb8cd72ab022461debe7" 2962 | dependencies: 2963 | lodash._baseassign "^3.0.0" 2964 | lodash._basecreate "^3.0.0" 2965 | lodash._isiterateecall "^3.0.0" 2966 | 2967 | lodash.isarguments@^3.0.0: 2968 | version "3.1.0" 2969 | resolved "https://registry.yarnpkg.com/lodash.isarguments/-/lodash.isarguments-3.1.0.tgz#2f573d85c6a24289ff00663b491c1d338ff3458a" 2970 | 2971 | lodash.isarray@^3.0.0: 2972 | version "3.0.4" 2973 | resolved "https://registry.yarnpkg.com/lodash.isarray/-/lodash.isarray-3.0.4.tgz#79e4eb88c36a8122af86f844aa9bcd851b5fbb55" 2974 | 2975 | lodash.keys@^3.0.0: 2976 | version "3.1.2" 2977 | resolved "https://registry.yarnpkg.com/lodash.keys/-/lodash.keys-3.1.2.tgz#4dbc0472b156be50a0b286855d1bd0b0c656098a" 2978 | dependencies: 2979 | lodash._getnative "^3.0.0" 2980 | lodash.isarguments "^3.0.0" 2981 | lodash.isarray "^3.0.0" 2982 | 2983 | lodash.memoize@~3.0.3: 2984 | version "3.0.4" 2985 | resolved "https://registry.yarnpkg.com/lodash.memoize/-/lodash.memoize-3.0.4.tgz#2dcbd2c287cbc0a55cc42328bd0c736150d53e3f" 2986 | 2987 | lodash@^4.1.1: 2988 | version "4.17.11" 2989 | resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.11.tgz#b39ea6229ef607ecd89e2c8df12536891cac9b8d" 2990 | 2991 | lodash@^4.15.0, lodash@^4.17.4: 2992 | version "4.17.4" 2993 | resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.4.tgz#78203a4d1c328ae1d86dca6460e369b57f4055ae" 2994 | 2995 | lodash@^4.2.0, lodash@^4.3.0: 2996 | version "4.17.2" 2997 | resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.2.tgz#34a3055babe04ce42467b607d700072c7ff6bf42" 2998 | 2999 | loose-envify@^1.0.0, loose-envify@^1.1.0: 3000 | version "1.3.0" 3001 | resolved "https://registry.yarnpkg.com/loose-envify/-/loose-envify-1.3.0.tgz#6b26248c42f6d4fa4b0d8542f78edfcde35642a8" 3002 | dependencies: 3003 | js-tokens "^2.0.0" 3004 | 3005 | loose-envify@^1.3.1: 3006 | version "1.3.1" 3007 | resolved "https://registry.yarnpkg.com/loose-envify/-/loose-envify-1.3.1.tgz#d1a8ad33fa9ce0e713d65fdd0ac8b748d478c848" 3008 | dependencies: 3009 | js-tokens "^3.0.0" 3010 | 3011 | lru-cache@^4.0.1: 3012 | version "4.1.1" 3013 | resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-4.1.1.tgz#622e32e82488b49279114a4f9ecf45e7cd6bba55" 3014 | dependencies: 3015 | pseudomap "^1.0.2" 3016 | yallist "^2.1.2" 3017 | 3018 | micromatch@^2.1.5: 3019 | version "2.3.11" 3020 | resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-2.3.11.tgz#86677c97d1720b363431d04d0d15293bd38c1565" 3021 | dependencies: 3022 | arr-diff "^2.0.0" 3023 | array-unique "^0.2.1" 3024 | braces "^1.8.2" 3025 | expand-brackets "^0.1.4" 3026 | extglob "^0.3.1" 3027 | filename-regex "^2.0.0" 3028 | is-extglob "^1.0.0" 3029 | is-glob "^2.0.1" 3030 | kind-of "^3.0.2" 3031 | normalize-path "^2.0.1" 3032 | object.omit "^2.0.0" 3033 | parse-glob "^3.0.4" 3034 | regex-cache "^0.4.2" 3035 | 3036 | miller-rabin@^4.0.0: 3037 | version "4.0.0" 3038 | resolved "https://registry.yarnpkg.com/miller-rabin/-/miller-rabin-4.0.0.tgz#4a62fb1d42933c05583982f4c716f6fb9e6c6d3d" 3039 | dependencies: 3040 | bn.js "^4.0.0" 3041 | brorand "^1.0.1" 3042 | 3043 | mime-db@~1.25.0: 3044 | version "1.25.0" 3045 | resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.25.0.tgz#c18dbd7c73a5dbf6f44a024dc0d165a1e7b1c392" 3046 | 3047 | mime-types@^2.1.12, mime-types@~2.1.7: 3048 | version "2.1.13" 3049 | resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.13.tgz#e07aaa9c6c6b9a7ca3012c69003ad25a39e92a88" 3050 | dependencies: 3051 | mime-db "~1.25.0" 3052 | 3053 | mime@^1.2.11: 3054 | version "1.3.4" 3055 | resolved "https://registry.yarnpkg.com/mime/-/mime-1.3.4.tgz#115f9e3b6b3daf2959983cb38f149a2d40eb5d53" 3056 | 3057 | mimeparse@^0.1.4: 3058 | version "0.1.4" 3059 | resolved "https://registry.yarnpkg.com/mimeparse/-/mimeparse-0.1.4.tgz#dafb02752370fd226093ae3152c271af01ac254a" 3060 | 3061 | mimic-fn@^1.0.0: 3062 | version "1.1.0" 3063 | resolved "https://registry.yarnpkg.com/mimic-fn/-/mimic-fn-1.1.0.tgz#e667783d92e89dbd342818b5230b9d62a672ad18" 3064 | 3065 | minimalistic-assert@^1.0.0: 3066 | version "1.0.0" 3067 | resolved "https://registry.yarnpkg.com/minimalistic-assert/-/minimalistic-assert-1.0.0.tgz#702be2dda6b37f4836bcb3f5db56641b64a1d3d3" 3068 | 3069 | "minimatch@2 || 3", minimatch@^3.0.0, minimatch@^3.0.2: 3070 | version "3.0.3" 3071 | resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.0.3.tgz#2a4e4090b96b2db06a9d7df01055a62a77c9b774" 3072 | dependencies: 3073 | brace-expansion "^1.0.0" 3074 | 3075 | minimatch@^3.0.3, minimatch@^3.0.4: 3076 | version "3.0.4" 3077 | resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.0.4.tgz#5166e286457f03306064be5497e8dbb0c3d32083" 3078 | dependencies: 3079 | brace-expansion "^1.1.7" 3080 | 3081 | minimist@0.0.8: 3082 | version "0.0.8" 3083 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-0.0.8.tgz#857fcabfc3397d2625b8228262e86aa7a011b05d" 3084 | 3085 | minimist@^1.1.0, minimist@^1.2.0: 3086 | version "1.2.0" 3087 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.0.tgz#a35008b20f41383eec1fb914f4cd5df79a264284" 3088 | 3089 | minimist@~0.0.1: 3090 | version "0.0.10" 3091 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-0.0.10.tgz#de3f98543dbf96082be48ad1a0c7cda836301dcf" 3092 | 3093 | mkdirp@0.5.1, mkdirp@0.5.x, "mkdirp@>=0.5 0", mkdirp@^0.5.1, mkdirp@~0.5.1: 3094 | version "0.5.1" 3095 | resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.5.1.tgz#30057438eac6cf7f8c4767f38648d6697d75c903" 3096 | dependencies: 3097 | minimist "0.0.8" 3098 | 3099 | mocha@^3.0.1: 3100 | version "3.2.0" 3101 | resolved "https://registry.yarnpkg.com/mocha/-/mocha-3.2.0.tgz#7dc4f45e5088075171a68896814e6ae9eb7a85e3" 3102 | dependencies: 3103 | browser-stdout "1.3.0" 3104 | commander "2.9.0" 3105 | debug "2.2.0" 3106 | diff "1.4.0" 3107 | escape-string-regexp "1.0.5" 3108 | glob "7.0.5" 3109 | growl "1.9.2" 3110 | json3 "3.3.2" 3111 | lodash.create "3.1.1" 3112 | mkdirp "0.5.1" 3113 | supports-color "3.1.2" 3114 | 3115 | module-deps@^4.0.8: 3116 | version "4.0.8" 3117 | resolved "https://registry.yarnpkg.com/module-deps/-/module-deps-4.0.8.tgz#55fd70623399706c3288bef7a609ff1e8c0ed2bb" 3118 | dependencies: 3119 | JSONStream "^1.0.3" 3120 | browser-resolve "^1.7.0" 3121 | cached-path-relative "^1.0.0" 3122 | concat-stream "~1.5.0" 3123 | defined "^1.0.0" 3124 | detective "^4.0.0" 3125 | duplexer2 "^0.1.2" 3126 | inherits "^2.0.1" 3127 | parents "^1.0.0" 3128 | readable-stream "^2.0.2" 3129 | resolve "^1.1.3" 3130 | stream-combiner2 "^1.1.1" 3131 | subarg "^1.0.0" 3132 | through2 "^2.0.0" 3133 | xtend "^4.0.0" 3134 | 3135 | ms@0.7.1: 3136 | version "0.7.1" 3137 | resolved "https://registry.yarnpkg.com/ms/-/ms-0.7.1.tgz#9cd13c03adbff25b65effde7ce864ee952017098" 3138 | 3139 | ms@2.0.0: 3140 | version "2.0.0" 3141 | resolved "https://registry.yarnpkg.com/ms/-/ms-2.0.0.tgz#5608aeadfc00be6c2901df5f9861788de0d597c8" 3142 | 3143 | ms@^2.1.1: 3144 | version "2.1.1" 3145 | resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.1.tgz#30a5864eb3ebb0a66f2ebe6d727af06a09d86e0a" 3146 | 3147 | mute-stream@0.0.7: 3148 | version "0.0.7" 3149 | resolved "https://registry.yarnpkg.com/mute-stream/-/mute-stream-0.0.7.tgz#3075ce93bc21b8fab43e1bc4da7e8115ed1e7bab" 3150 | 3151 | nan@^2.3.0: 3152 | version "2.4.0" 3153 | resolved "https://registry.yarnpkg.com/nan/-/nan-2.4.0.tgz#fb3c59d45fe4effe215f0b890f8adf6eb32d2232" 3154 | 3155 | natural-compare@^1.4.0: 3156 | version "1.4.0" 3157 | resolved "https://registry.yarnpkg.com/natural-compare/-/natural-compare-1.4.0.tgz#4abebfeed7541f2c27acfb29bdbbd15c8d5ba4f7" 3158 | 3159 | node-fetch@^1.0.1: 3160 | version "1.6.3" 3161 | resolved "https://registry.yarnpkg.com/node-fetch/-/node-fetch-1.6.3.tgz#dc234edd6489982d58e8f0db4f695029abcd8c04" 3162 | dependencies: 3163 | encoding "^0.1.11" 3164 | is-stream "^1.0.1" 3165 | 3166 | node-pre-gyp@^0.6.29: 3167 | version "0.6.32" 3168 | resolved "https://registry.yarnpkg.com/node-pre-gyp/-/node-pre-gyp-0.6.32.tgz#fc452b376e7319b3d255f5f34853ef6fd8fe1fd5" 3169 | dependencies: 3170 | mkdirp "~0.5.1" 3171 | nopt "~3.0.6" 3172 | npmlog "^4.0.1" 3173 | rc "~1.1.6" 3174 | request "^2.79.0" 3175 | rimraf "~2.5.4" 3176 | semver "~5.3.0" 3177 | tar "~2.2.1" 3178 | tar-pack "~3.3.0" 3179 | 3180 | nopt@~3.0.6: 3181 | version "3.0.6" 3182 | resolved "https://registry.yarnpkg.com/nopt/-/nopt-3.0.6.tgz#c6465dbf08abcd4db359317f79ac68a646b28ff9" 3183 | dependencies: 3184 | abbrev "1" 3185 | 3186 | normalize-package-data@^2.3.2: 3187 | version "2.4.0" 3188 | resolved "https://registry.yarnpkg.com/normalize-package-data/-/normalize-package-data-2.4.0.tgz#12f95a307d58352075a04907b84ac8be98ac012f" 3189 | dependencies: 3190 | hosted-git-info "^2.1.4" 3191 | is-builtin-module "^1.0.0" 3192 | semver "2 || 3 || 4 || 5" 3193 | validate-npm-package-license "^3.0.1" 3194 | 3195 | normalize-path@^2.0.1: 3196 | version "2.0.1" 3197 | resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-2.0.1.tgz#47886ac1662760d4261b7d979d241709d3ce3f7a" 3198 | 3199 | npmlog@^4.0.1: 3200 | version "4.0.1" 3201 | resolved "https://registry.yarnpkg.com/npmlog/-/npmlog-4.0.1.tgz#d14f503b4cd79710375553004ba96e6662fbc0b8" 3202 | dependencies: 3203 | are-we-there-yet "~1.1.2" 3204 | console-control-strings "~1.1.0" 3205 | gauge "~2.7.1" 3206 | set-blocking "~2.0.0" 3207 | 3208 | number-is-nan@^1.0.0: 3209 | version "1.0.1" 3210 | resolved "https://registry.yarnpkg.com/number-is-nan/-/number-is-nan-1.0.1.tgz#097b602b53422a522c1afb8790318336941a011d" 3211 | 3212 | oauth-sign@~0.8.1: 3213 | version "0.8.2" 3214 | resolved "https://registry.yarnpkg.com/oauth-sign/-/oauth-sign-0.8.2.tgz#46a6ab7f0aead8deae9ec0565780b7d4efeb9d43" 3215 | 3216 | object-assign@^4.0.1, object-assign@^4.1.0: 3217 | version "4.1.0" 3218 | resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.0.tgz#7a3b3d0e98063d43f4c03f2e8ae6cd51a86883a0" 3219 | 3220 | object-assign@^4.1.1: 3221 | version "4.1.1" 3222 | resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863" 3223 | 3224 | object-inspect@^1.1.0: 3225 | version "1.2.1" 3226 | resolved "https://registry.yarnpkg.com/object-inspect/-/object-inspect-1.2.1.tgz#3b62226eb8f6d441751c7d8f22a20ff80ac9dc3f" 3227 | 3228 | object-keys@^1.0.8, object-keys@^1.0.9: 3229 | version "1.0.11" 3230 | resolved "https://registry.yarnpkg.com/object-keys/-/object-keys-1.0.11.tgz#c54601778ad560f1142ce0e01bcca8b56d13426d" 3231 | 3232 | object.entries@^1.0.3: 3233 | version "1.0.3" 3234 | resolved "https://registry.yarnpkg.com/object.entries/-/object.entries-1.0.3.tgz#f42cc75363a4f9aa7037bcfb3bab3be4ffc78027" 3235 | dependencies: 3236 | define-properties "^1.1.1" 3237 | es-abstract "^1.3.2" 3238 | function-bind "^1.0.2" 3239 | has "^1.0.1" 3240 | 3241 | object.omit@^2.0.0: 3242 | version "2.0.1" 3243 | resolved "https://registry.yarnpkg.com/object.omit/-/object.omit-2.0.1.tgz#1a9c744829f39dbb858c76ca3579ae2a54ebd1fa" 3244 | dependencies: 3245 | for-own "^0.1.4" 3246 | is-extendable "^0.1.1" 3247 | 3248 | once@^1.3.0: 3249 | version "1.4.0" 3250 | resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1" 3251 | dependencies: 3252 | wrappy "1" 3253 | 3254 | once@~1.3.3: 3255 | version "1.3.3" 3256 | resolved "https://registry.yarnpkg.com/once/-/once-1.3.3.tgz#b2e261557ce4c314ec8304f3fa82663e4297ca20" 3257 | dependencies: 3258 | wrappy "1" 3259 | 3260 | onetime@^2.0.0: 3261 | version "2.0.1" 3262 | resolved "https://registry.yarnpkg.com/onetime/-/onetime-2.0.1.tgz#067428230fd67443b2794b22bba528b6867962d4" 3263 | dependencies: 3264 | mimic-fn "^1.0.0" 3265 | 3266 | opener@~1.4.0: 3267 | version "1.4.2" 3268 | resolved "https://registry.yarnpkg.com/opener/-/opener-1.4.2.tgz#b32582080042af8680c389a499175b4c54fff523" 3269 | 3270 | optimist@0.6.x: 3271 | version "0.6.1" 3272 | resolved "https://registry.yarnpkg.com/optimist/-/optimist-0.6.1.tgz#da3ea74686fa21a19a111c326e90eb15a0196686" 3273 | dependencies: 3274 | minimist "~0.0.1" 3275 | wordwrap "~0.0.2" 3276 | 3277 | optionator@^0.8.2: 3278 | version "0.8.2" 3279 | resolved "https://registry.yarnpkg.com/optionator/-/optionator-0.8.2.tgz#364c5e409d3f4d6301d6c0b4c05bba50180aeb64" 3280 | dependencies: 3281 | deep-is "~0.1.3" 3282 | fast-levenshtein "~2.0.4" 3283 | levn "~0.3.0" 3284 | prelude-ls "~1.1.2" 3285 | type-check "~0.3.2" 3286 | wordwrap "~1.0.0" 3287 | 3288 | os-browserify@~0.1.1: 3289 | version "0.1.2" 3290 | resolved "https://registry.yarnpkg.com/os-browserify/-/os-browserify-0.1.2.tgz#49ca0293e0b19590a5f5de10c7f265a617d8fe54" 3291 | 3292 | os-homedir@^1.0.0: 3293 | version "1.0.2" 3294 | resolved "https://registry.yarnpkg.com/os-homedir/-/os-homedir-1.0.2.tgz#ffbc4988336e0e833de0c168c7ef152121aa7fb3" 3295 | 3296 | os-tmpdir@^1.0.1, os-tmpdir@~1.0.2: 3297 | version "1.0.2" 3298 | resolved "https://registry.yarnpkg.com/os-tmpdir/-/os-tmpdir-1.0.2.tgz#bbe67406c79aa85c5cfec766fe5734555dfa1274" 3299 | 3300 | output-file-sync@^1.1.2: 3301 | version "1.1.2" 3302 | resolved "https://registry.yarnpkg.com/output-file-sync/-/output-file-sync-1.1.2.tgz#d0a33eefe61a205facb90092e826598d5245ce76" 3303 | dependencies: 3304 | graceful-fs "^4.1.4" 3305 | mkdirp "^0.5.1" 3306 | object-assign "^4.1.0" 3307 | 3308 | p-limit@^1.1.0: 3309 | version "1.1.0" 3310 | resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-1.1.0.tgz#b07ff2d9a5d88bec806035895a2bab66a27988bc" 3311 | 3312 | p-locate@^2.0.0: 3313 | version "2.0.0" 3314 | resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-2.0.0.tgz#20a0103b222a70c8fd39cc2e580680f3dde5ec43" 3315 | dependencies: 3316 | p-limit "^1.1.0" 3317 | 3318 | pako@~0.2.0: 3319 | version "0.2.9" 3320 | resolved "https://registry.yarnpkg.com/pako/-/pako-0.2.9.tgz#f3f7522f4ef782348da8161bad9ecfd51bf83a75" 3321 | 3322 | parents@^1.0.0, parents@^1.0.1: 3323 | version "1.0.1" 3324 | resolved "https://registry.yarnpkg.com/parents/-/parents-1.0.1.tgz#fedd4d2bf193a77745fe71e371d73c3307d9c751" 3325 | dependencies: 3326 | path-platform "~0.11.15" 3327 | 3328 | parse-asn1@^5.0.0: 3329 | version "5.0.0" 3330 | resolved "https://registry.yarnpkg.com/parse-asn1/-/parse-asn1-5.0.0.tgz#35060f6d5015d37628c770f4e091a0b5a278bc23" 3331 | dependencies: 3332 | asn1.js "^4.0.0" 3333 | browserify-aes "^1.0.0" 3334 | create-hash "^1.1.0" 3335 | evp_bytestokey "^1.0.0" 3336 | pbkdf2 "^3.0.3" 3337 | 3338 | parse-glob@^3.0.4: 3339 | version "3.0.4" 3340 | resolved "https://registry.yarnpkg.com/parse-glob/-/parse-glob-3.0.4.tgz#b2c376cfb11f35513badd173ef0bb6e3a388391c" 3341 | dependencies: 3342 | glob-base "^0.3.0" 3343 | is-dotfile "^1.0.0" 3344 | is-extglob "^1.0.0" 3345 | is-glob "^2.0.0" 3346 | 3347 | parse-json@^2.2.0: 3348 | version "2.2.0" 3349 | resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-2.2.0.tgz#f480f40434ef80741f8469099f8dea18f55a4dc9" 3350 | dependencies: 3351 | error-ex "^1.2.0" 3352 | 3353 | path-browserify@~0.0.0: 3354 | version "0.0.0" 3355 | resolved "https://registry.yarnpkg.com/path-browserify/-/path-browserify-0.0.0.tgz#a0b870729aae214005b7d5032ec2cbbb0fb4451a" 3356 | 3357 | path-exists@^2.0.0: 3358 | version "2.1.0" 3359 | resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-2.1.0.tgz#0feb6c64f0fc518d9a754dd5efb62c7022761f4b" 3360 | dependencies: 3361 | pinkie-promise "^2.0.0" 3362 | 3363 | path-exists@^3.0.0: 3364 | version "3.0.0" 3365 | resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-3.0.0.tgz#ce0ebeaa5f78cb18925ea7d810d7b59b010fd515" 3366 | 3367 | path-is-absolute@^1.0.0, path-is-absolute@^1.0.1: 3368 | version "1.0.1" 3369 | resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f" 3370 | 3371 | path-is-inside@^1.0.1, path-is-inside@^1.0.2: 3372 | version "1.0.2" 3373 | resolved "https://registry.yarnpkg.com/path-is-inside/-/path-is-inside-1.0.2.tgz#365417dede44430d1c11af61027facf074bdfc53" 3374 | 3375 | path-parse@^1.0.5: 3376 | version "1.0.5" 3377 | resolved "https://registry.yarnpkg.com/path-parse/-/path-parse-1.0.5.tgz#3c1adf871ea9cd6c9431b6ea2bd74a0ff055c4c1" 3378 | 3379 | path-platform@~0.11.15: 3380 | version "0.11.15" 3381 | resolved "https://registry.yarnpkg.com/path-platform/-/path-platform-0.11.15.tgz#e864217f74c36850f0852b78dc7bf7d4a5721bf2" 3382 | 3383 | path-type@^2.0.0: 3384 | version "2.0.0" 3385 | resolved "https://registry.yarnpkg.com/path-type/-/path-type-2.0.0.tgz#f012ccb8415b7096fc2daa1054c3d72389594c73" 3386 | dependencies: 3387 | pify "^2.0.0" 3388 | 3389 | pbkdf2@^3.0.3: 3390 | version "3.0.9" 3391 | resolved "https://registry.yarnpkg.com/pbkdf2/-/pbkdf2-3.0.9.tgz#f2c4b25a600058b3c3773c086c37dbbee1ffe693" 3392 | dependencies: 3393 | create-hmac "^1.1.2" 3394 | 3395 | pify@^2.0.0: 3396 | version "2.3.0" 3397 | resolved "https://registry.yarnpkg.com/pify/-/pify-2.3.0.tgz#ed141a6ac043a849ea588498e7dca8b15330e90c" 3398 | 3399 | pinkie-promise@^2.0.0: 3400 | version "2.0.1" 3401 | resolved "https://registry.yarnpkg.com/pinkie-promise/-/pinkie-promise-2.0.1.tgz#2135d6dfa7a358c069ac9b178776288228450ffa" 3402 | dependencies: 3403 | pinkie "^2.0.0" 3404 | 3405 | pinkie@^2.0.0: 3406 | version "2.0.4" 3407 | resolved "https://registry.yarnpkg.com/pinkie/-/pinkie-2.0.4.tgz#72556b80cfa0d48a974e80e77248e80ed4f7f870" 3408 | 3409 | pkg-dir@^1.0.0: 3410 | version "1.0.0" 3411 | resolved "https://registry.yarnpkg.com/pkg-dir/-/pkg-dir-1.0.0.tgz#7a4b508a8d5bb2d629d447056ff4e9c9314cf3d4" 3412 | dependencies: 3413 | find-up "^1.0.0" 3414 | 3415 | pluralize@^7.0.0: 3416 | version "7.0.0" 3417 | resolved "https://registry.yarnpkg.com/pluralize/-/pluralize-7.0.0.tgz#298b89df8b93b0221dbf421ad2b1b1ea23fc6777" 3418 | 3419 | portfinder@0.4.x: 3420 | version "0.4.0" 3421 | resolved "https://registry.yarnpkg.com/portfinder/-/portfinder-0.4.0.tgz#a3ffadffafe4fb98e0601a85eda27c27ce84ca1e" 3422 | dependencies: 3423 | async "0.9.0" 3424 | mkdirp "0.5.x" 3425 | 3426 | prelude-ls@~1.1.2: 3427 | version "1.1.2" 3428 | resolved "https://registry.yarnpkg.com/prelude-ls/-/prelude-ls-1.1.2.tgz#21932a549f5e52ffd9a827f570e04be62a97da54" 3429 | 3430 | preserve@^0.2.0: 3431 | version "0.2.0" 3432 | resolved "https://registry.yarnpkg.com/preserve/-/preserve-0.2.0.tgz#815ed1f6ebc65926f865b310c0713bcb3315ce4b" 3433 | 3434 | prettier@^1.7.0: 3435 | version "1.8.1" 3436 | resolved "https://registry.yarnpkg.com/prettier/-/prettier-1.8.1.tgz#91064d778c08c85ac1cbe6b23195c34310d039f9" 3437 | 3438 | private@^0.1.6: 3439 | version "0.1.6" 3440 | resolved "https://registry.yarnpkg.com/private/-/private-0.1.6.tgz#55c6a976d0f9bafb9924851350fe47b9b5fbb7c1" 3441 | 3442 | private@^0.1.7: 3443 | version "0.1.8" 3444 | resolved "https://registry.yarnpkg.com/private/-/private-0.1.8.tgz#2381edb3689f7a53d653190060fcf822d2f368ff" 3445 | 3446 | process-nextick-args@~1.0.6: 3447 | version "1.0.7" 3448 | resolved "https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-1.0.7.tgz#150e20b756590ad3f91093f25a4f2ad8bff30ba3" 3449 | 3450 | process@~0.11.0: 3451 | version "0.11.9" 3452 | resolved "https://registry.yarnpkg.com/process/-/process-0.11.9.tgz#7bd5ad21aa6253e7da8682264f1e11d11c0318c1" 3453 | 3454 | progress@^2.0.0: 3455 | version "2.0.0" 3456 | resolved "https://registry.yarnpkg.com/progress/-/progress-2.0.0.tgz#8a1be366bf8fc23db2bd23f10c6fe920b4389d1f" 3457 | 3458 | promise@^7.1.1: 3459 | version "7.1.1" 3460 | resolved "https://registry.yarnpkg.com/promise/-/promise-7.1.1.tgz#489654c692616b8aa55b0724fa809bb7db49c5bf" 3461 | dependencies: 3462 | asap "~2.0.3" 3463 | 3464 | prop-types@^15.5.10: 3465 | version "15.6.0" 3466 | resolved "https://registry.yarnpkg.com/prop-types/-/prop-types-15.6.0.tgz#ceaf083022fc46b4a35f69e13ef75aed0d639856" 3467 | dependencies: 3468 | fbjs "^0.8.16" 3469 | loose-envify "^1.3.1" 3470 | object-assign "^4.1.1" 3471 | 3472 | prop-types@^15.5.8: 3473 | version "15.5.10" 3474 | resolved "https://registry.yarnpkg.com/prop-types/-/prop-types-15.5.10.tgz#2797dfc3126182e3a95e3dfbb2e893ddd7456154" 3475 | dependencies: 3476 | fbjs "^0.8.9" 3477 | loose-envify "^1.3.1" 3478 | 3479 | pseudomap@^1.0.2: 3480 | version "1.0.2" 3481 | resolved "https://registry.yarnpkg.com/pseudomap/-/pseudomap-1.0.2.tgz#f052a28da70e618917ef0a8ac34c1ae5a68286b3" 3482 | 3483 | public-encrypt@^4.0.0: 3484 | version "4.0.0" 3485 | resolved "https://registry.yarnpkg.com/public-encrypt/-/public-encrypt-4.0.0.tgz#39f699f3a46560dd5ebacbca693caf7c65c18cc6" 3486 | dependencies: 3487 | bn.js "^4.1.0" 3488 | browserify-rsa "^4.0.0" 3489 | create-hash "^1.1.0" 3490 | parse-asn1 "^5.0.0" 3491 | randombytes "^2.0.1" 3492 | 3493 | punycode@1.3.2: 3494 | version "1.3.2" 3495 | resolved "https://registry.yarnpkg.com/punycode/-/punycode-1.3.2.tgz#9653a036fb7c1ee42342f2325cceefea3926c48d" 3496 | 3497 | punycode@^1.3.2, punycode@^1.4.1: 3498 | version "1.4.1" 3499 | resolved "https://registry.yarnpkg.com/punycode/-/punycode-1.4.1.tgz#c0d5a63b2718800ad8e1eb0fa5269c84dd41845e" 3500 | 3501 | q-io@1.13.2: 3502 | version "1.13.2" 3503 | resolved "https://registry.yarnpkg.com/q-io/-/q-io-1.13.2.tgz#eea130d481ddb5e1aa1bc5a66855f7391d06f003" 3504 | dependencies: 3505 | collections "^0.2.0" 3506 | mime "^1.2.11" 3507 | mimeparse "^0.1.4" 3508 | q "^1.0.1" 3509 | qs "^1.2.1" 3510 | url2 "^0.0.0" 3511 | 3512 | q@1.4.1, q@^1.0.1: 3513 | version "1.4.1" 3514 | resolved "https://registry.yarnpkg.com/q/-/q-1.4.1.tgz#55705bcd93c5f3673530c2c2cbc0c2b3addc286e" 3515 | 3516 | qs@^1.2.1: 3517 | version "1.2.2" 3518 | resolved "https://registry.yarnpkg.com/qs/-/qs-1.2.2.tgz#19b57ff24dc2a99ce1f8bdf6afcda59f8ef61f88" 3519 | 3520 | qs@~2.3.3: 3521 | version "2.3.3" 3522 | resolved "https://registry.yarnpkg.com/qs/-/qs-2.3.3.tgz#e9e85adbe75da0bbe4c8e0476a086290f863b404" 3523 | 3524 | qs@~6.3.0: 3525 | version "6.3.0" 3526 | resolved "https://registry.yarnpkg.com/qs/-/qs-6.3.0.tgz#f403b264f23bc01228c74131b407f18d5ea5d442" 3527 | 3528 | querystring-es3@~0.2.0: 3529 | version "0.2.1" 3530 | resolved "https://registry.yarnpkg.com/querystring-es3/-/querystring-es3-0.2.1.tgz#9ec61f79049875707d69414596fd907a4d711e73" 3531 | 3532 | querystring@0.2.0: 3533 | version "0.2.0" 3534 | resolved "https://registry.yarnpkg.com/querystring/-/querystring-0.2.0.tgz#b209849203bb25df820da756e747005878521620" 3535 | 3536 | randomatic@^1.1.3: 3537 | version "1.1.6" 3538 | resolved "https://registry.yarnpkg.com/randomatic/-/randomatic-1.1.6.tgz#110dcabff397e9dcff7c0789ccc0a49adf1ec5bb" 3539 | dependencies: 3540 | is-number "^2.0.2" 3541 | kind-of "^3.0.2" 3542 | 3543 | randombytes@^2.0.0, randombytes@^2.0.1: 3544 | version "2.0.3" 3545 | resolved "https://registry.yarnpkg.com/randombytes/-/randombytes-2.0.3.tgz#674c99760901c3c4112771a31e521dc349cc09ec" 3546 | 3547 | rc@~1.1.6: 3548 | version "1.1.6" 3549 | resolved "https://registry.yarnpkg.com/rc/-/rc-1.1.6.tgz#43651b76b6ae53b5c802f1151fa3fc3b059969c9" 3550 | dependencies: 3551 | deep-extend "~0.4.0" 3552 | ini "~1.3.0" 3553 | minimist "^1.2.0" 3554 | strip-json-comments "~1.0.4" 3555 | 3556 | react-dom@^15.3.0: 3557 | version "15.4.1" 3558 | resolved "https://registry.yarnpkg.com/react-dom/-/react-dom-15.4.1.tgz#d54c913261aaedb17adc20410d029dcc18a1344a" 3559 | dependencies: 3560 | fbjs "^0.8.1" 3561 | loose-envify "^1.1.0" 3562 | object-assign "^4.1.0" 3563 | 3564 | react-immutable-proptypes@^2.1.0: 3565 | version "2.1.0" 3566 | resolved "https://registry.yarnpkg.com/react-immutable-proptypes/-/react-immutable-proptypes-2.1.0.tgz#023d6f39bb15c97c071e9e60d00d136eac5fa0b4" 3567 | 3568 | react-portal@^3.1.0: 3569 | version "3.1.0" 3570 | resolved "https://registry.yarnpkg.com/react-portal/-/react-portal-3.1.0.tgz#865c44fb72a1da106c649206936559ce891ee899" 3571 | dependencies: 3572 | prop-types "^15.5.8" 3573 | 3574 | react@^15.3.0: 3575 | version "15.4.1" 3576 | resolved "https://registry.yarnpkg.com/react/-/react-15.4.1.tgz#498e918602677a3983cd0fd206dfe700389a0dd6" 3577 | dependencies: 3578 | fbjs "^0.8.4" 3579 | loose-envify "^1.1.0" 3580 | object-assign "^4.1.0" 3581 | 3582 | read-metadata@^1.0.0: 3583 | version "1.0.0" 3584 | resolved "https://registry.yarnpkg.com/read-metadata/-/read-metadata-1.0.0.tgz#6df9cbe51184e8ceb7d0668b40ee5191e6f3dac6" 3585 | dependencies: 3586 | yaml-js "0.0.8" 3587 | 3588 | read-only-stream@^2.0.0: 3589 | version "2.0.0" 3590 | resolved "https://registry.yarnpkg.com/read-only-stream/-/read-only-stream-2.0.0.tgz#2724fd6a8113d73764ac288d4386270c1dbf17f0" 3591 | dependencies: 3592 | readable-stream "^2.0.2" 3593 | 3594 | read-pkg-up@^2.0.0: 3595 | version "2.0.0" 3596 | resolved "https://registry.yarnpkg.com/read-pkg-up/-/read-pkg-up-2.0.0.tgz#6b72a8048984e0c41e79510fd5e9fa99b3b549be" 3597 | dependencies: 3598 | find-up "^2.0.0" 3599 | read-pkg "^2.0.0" 3600 | 3601 | read-pkg@^2.0.0: 3602 | version "2.0.0" 3603 | resolved "https://registry.yarnpkg.com/read-pkg/-/read-pkg-2.0.0.tgz#8ef1c0623c6a6db0dc6713c4bfac46332b2368f8" 3604 | dependencies: 3605 | load-json-file "^2.0.0" 3606 | normalize-package-data "^2.3.2" 3607 | path-type "^2.0.0" 3608 | 3609 | "readable-stream@^2.0.0 || ^1.1.13", readable-stream@^2.0.2, readable-stream@^2.1.0, readable-stream@^2.1.5: 3610 | version "2.2.2" 3611 | resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.2.2.tgz#a9e6fec3c7dda85f8bb1b3ba7028604556fc825e" 3612 | dependencies: 3613 | buffer-shims "^1.0.0" 3614 | core-util-is "~1.0.0" 3615 | inherits "~2.0.1" 3616 | isarray "~1.0.0" 3617 | process-nextick-args "~1.0.6" 3618 | string_decoder "~0.10.x" 3619 | util-deprecate "~1.0.1" 3620 | 3621 | readable-stream@^2.2.2: 3622 | version "2.3.3" 3623 | resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.3.3.tgz#368f2512d79f9d46fdfc71349ae7878bbc1eb95c" 3624 | dependencies: 3625 | core-util-is "~1.0.0" 3626 | inherits "~2.0.3" 3627 | isarray "~1.0.0" 3628 | process-nextick-args "~1.0.6" 3629 | safe-buffer "~5.1.1" 3630 | string_decoder "~1.0.3" 3631 | util-deprecate "~1.0.1" 3632 | 3633 | readable-stream@~2.0.0: 3634 | version "2.0.6" 3635 | resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.0.6.tgz#8f90341e68a53ccc928788dacfcd11b36eb9b78e" 3636 | dependencies: 3637 | core-util-is "~1.0.0" 3638 | inherits "~2.0.1" 3639 | isarray "~1.0.0" 3640 | process-nextick-args "~1.0.6" 3641 | string_decoder "~0.10.x" 3642 | util-deprecate "~1.0.1" 3643 | 3644 | readable-stream@~2.1.4: 3645 | version "2.1.5" 3646 | resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.1.5.tgz#66fa8b720e1438b364681f2ad1a63c618448c9d0" 3647 | dependencies: 3648 | buffer-shims "^1.0.0" 3649 | core-util-is "~1.0.0" 3650 | inherits "~2.0.1" 3651 | isarray "~1.0.0" 3652 | process-nextick-args "~1.0.6" 3653 | string_decoder "~0.10.x" 3654 | util-deprecate "~1.0.1" 3655 | 3656 | readdirp@^2.0.0: 3657 | version "2.1.0" 3658 | resolved "https://registry.yarnpkg.com/readdirp/-/readdirp-2.1.0.tgz#4ed0ad060df3073300c48440373f72d1cc642d78" 3659 | dependencies: 3660 | graceful-fs "^4.1.2" 3661 | minimatch "^3.0.2" 3662 | readable-stream "^2.0.2" 3663 | set-immediate-shim "^1.0.1" 3664 | 3665 | regenerate@^1.2.1: 3666 | version "1.3.2" 3667 | resolved "https://registry.yarnpkg.com/regenerate/-/regenerate-1.3.2.tgz#d1941c67bad437e1be76433add5b385f95b19260" 3668 | 3669 | regenerator-runtime@^0.10.5: 3670 | version "0.10.5" 3671 | resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.10.5.tgz#336c3efc1220adcedda2c9fab67b5a7955a33658" 3672 | 3673 | regenerator-runtime@^0.11.0: 3674 | version "0.11.0" 3675 | resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.11.0.tgz#7e54fe5b5ccd5d6624ea6255c3473be090b802e1" 3676 | 3677 | regenerator-runtime@^0.9.5: 3678 | version "0.9.6" 3679 | resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.9.6.tgz#d33eb95d0d2001a4be39659707c51b0cb71ce029" 3680 | 3681 | regenerator-transform@^0.10.0: 3682 | version "0.10.1" 3683 | resolved "https://registry.yarnpkg.com/regenerator-transform/-/regenerator-transform-0.10.1.tgz#1e4996837231da8b7f3cf4114d71b5691a0680dd" 3684 | dependencies: 3685 | babel-runtime "^6.18.0" 3686 | babel-types "^6.19.0" 3687 | private "^0.1.6" 3688 | 3689 | regex-cache@^0.4.2: 3690 | version "0.4.3" 3691 | resolved "https://registry.yarnpkg.com/regex-cache/-/regex-cache-0.4.3.tgz#9b1a6c35d4d0dfcef5711ae651e8e9d3d7114145" 3692 | dependencies: 3693 | is-equal-shallow "^0.1.3" 3694 | is-primitive "^2.0.0" 3695 | 3696 | regexpu-core@^2.0.0: 3697 | version "2.0.0" 3698 | resolved "https://registry.yarnpkg.com/regexpu-core/-/regexpu-core-2.0.0.tgz#49d038837b8dcf8bfa5b9a42139938e6ea2ae240" 3699 | dependencies: 3700 | regenerate "^1.2.1" 3701 | regjsgen "^0.2.0" 3702 | regjsparser "^0.1.4" 3703 | 3704 | regjsgen@^0.2.0: 3705 | version "0.2.0" 3706 | resolved "https://registry.yarnpkg.com/regjsgen/-/regjsgen-0.2.0.tgz#6c016adeac554f75823fe37ac05b92d5a4edb1f7" 3707 | 3708 | regjsparser@^0.1.4: 3709 | version "0.1.5" 3710 | resolved "https://registry.yarnpkg.com/regjsparser/-/regjsparser-0.1.5.tgz#7ee8f84dc6fa792d3fd0ae228d24bd949ead205c" 3711 | dependencies: 3712 | jsesc "~0.5.0" 3713 | 3714 | repeat-element@^1.1.2: 3715 | version "1.1.2" 3716 | resolved "https://registry.yarnpkg.com/repeat-element/-/repeat-element-1.1.2.tgz#ef089a178d1483baae4d93eb98b4f9e4e11d990a" 3717 | 3718 | repeat-string@^1.5.2: 3719 | version "1.6.1" 3720 | resolved "https://registry.yarnpkg.com/repeat-string/-/repeat-string-1.6.1.tgz#8dcae470e1c88abc2d600fff4a776286da75e637" 3721 | 3722 | repeating@^2.0.0: 3723 | version "2.0.1" 3724 | resolved "https://registry.yarnpkg.com/repeating/-/repeating-2.0.1.tgz#5214c53a926d3552707527fbab415dbc08d06dda" 3725 | dependencies: 3726 | is-finite "^1.0.0" 3727 | 3728 | request@^2.79.0: 3729 | version "2.79.0" 3730 | resolved "https://registry.yarnpkg.com/request/-/request-2.79.0.tgz#4dfe5bf6be8b8cdc37fcf93e04b65577722710de" 3731 | dependencies: 3732 | aws-sign2 "~0.6.0" 3733 | aws4 "^1.2.1" 3734 | caseless "~0.11.0" 3735 | combined-stream "~1.0.5" 3736 | extend "~3.0.0" 3737 | forever-agent "~0.6.1" 3738 | form-data "~2.1.1" 3739 | har-validator "~2.0.6" 3740 | hawk "~3.1.3" 3741 | http-signature "~1.1.0" 3742 | is-typedarray "~1.0.0" 3743 | isstream "~0.1.2" 3744 | json-stringify-safe "~5.0.1" 3745 | mime-types "~2.1.7" 3746 | oauth-sign "~0.8.1" 3747 | qs "~6.3.0" 3748 | stringstream "~0.0.4" 3749 | tough-cookie "~2.3.0" 3750 | tunnel-agent "~0.4.1" 3751 | uuid "^3.0.0" 3752 | 3753 | require-uncached@^1.0.3: 3754 | version "1.0.3" 3755 | resolved "https://registry.yarnpkg.com/require-uncached/-/require-uncached-1.0.3.tgz#4e0d56d6c9662fd31e43011c4b95aa49955421d3" 3756 | dependencies: 3757 | caller-path "^0.1.0" 3758 | resolve-from "^1.0.0" 3759 | 3760 | requires-port@1.x.x: 3761 | version "1.0.0" 3762 | resolved "https://registry.yarnpkg.com/requires-port/-/requires-port-1.0.0.tgz#925d2601d39ac485e091cf0da5c6e694dc3dcaff" 3763 | 3764 | resolve-from@^1.0.0: 3765 | version "1.0.1" 3766 | resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-1.0.1.tgz#26cbfe935d1aeeeabb29bc3fe5aeb01e93d44226" 3767 | 3768 | resolve@1.1.7, resolve@^1.1.3, resolve@^1.1.4: 3769 | version "1.1.7" 3770 | resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.1.7.tgz#203114d82ad2c5ed9e8e0411b3932875e889e97b" 3771 | 3772 | resolve@^1.2.0: 3773 | version "1.5.0" 3774 | resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.5.0.tgz#1f09acce796c9a762579f31b2c1cc4c3cddf9f36" 3775 | dependencies: 3776 | path-parse "^1.0.5" 3777 | 3778 | restore-cursor@^2.0.0: 3779 | version "2.0.0" 3780 | resolved "https://registry.yarnpkg.com/restore-cursor/-/restore-cursor-2.0.0.tgz#9f7ee287f82fd326d4fd162923d62129eee0dfaf" 3781 | dependencies: 3782 | onetime "^2.0.0" 3783 | signal-exit "^3.0.2" 3784 | 3785 | rimraf@2, rimraf@^2.2.8, rimraf@~2.5.1, rimraf@~2.5.4: 3786 | version "2.5.4" 3787 | resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.5.4.tgz#96800093cbf1a0c86bd95b4625467535c29dfa04" 3788 | dependencies: 3789 | glob "^7.0.5" 3790 | 3791 | ripemd160@^1.0.0: 3792 | version "1.0.1" 3793 | resolved "https://registry.yarnpkg.com/ripemd160/-/ripemd160-1.0.1.tgz#93a4bbd4942bc574b69a8fa57c71de10ecca7d6e" 3794 | 3795 | run-async@^2.2.0: 3796 | version "2.3.0" 3797 | resolved "https://registry.yarnpkg.com/run-async/-/run-async-2.3.0.tgz#0371ab4ae0bdd720d4166d7dfda64ff7a445a6c0" 3798 | dependencies: 3799 | is-promise "^2.1.0" 3800 | 3801 | rx-lite-aggregates@^4.0.8: 3802 | version "4.0.8" 3803 | resolved "https://registry.yarnpkg.com/rx-lite-aggregates/-/rx-lite-aggregates-4.0.8.tgz#753b87a89a11c95467c4ac1626c4efc4e05c67be" 3804 | dependencies: 3805 | rx-lite "*" 3806 | 3807 | rx-lite@*, rx-lite@^4.0.8: 3808 | version "4.0.8" 3809 | resolved "https://registry.yarnpkg.com/rx-lite/-/rx-lite-4.0.8.tgz#0b1e11af8bc44836f04a6407e92da42467b79444" 3810 | 3811 | safe-buffer@~5.1.0, safe-buffer@~5.1.1: 3812 | version "5.1.1" 3813 | resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.1.1.tgz#893312af69b2123def71f57889001671eeb2c853" 3814 | 3815 | selection-is-backward@^1.0.0: 3816 | version "1.0.0" 3817 | resolved "https://registry.yarnpkg.com/selection-is-backward/-/selection-is-backward-1.0.0.tgz#97a54633188a511aba6419fc5c1fa91b467e6be1" 3818 | 3819 | "semver@2 || 3 || 4 || 5", semver@^5.3.0: 3820 | version "5.4.1" 3821 | resolved "https://registry.yarnpkg.com/semver/-/semver-5.4.1.tgz#e059c09d8571f0540823733433505d3a2f00b18e" 3822 | 3823 | semver@~5.3.0: 3824 | version "5.3.0" 3825 | resolved "https://registry.yarnpkg.com/semver/-/semver-5.3.0.tgz#9b2ce5d3de02d17c6012ad326aa6b4d0cf54f94f" 3826 | 3827 | set-blocking@~2.0.0: 3828 | version "2.0.0" 3829 | resolved "https://registry.yarnpkg.com/set-blocking/-/set-blocking-2.0.0.tgz#045f9782d011ae9a6803ddd382b24392b3d890f7" 3830 | 3831 | set-immediate-shim@^1.0.1: 3832 | version "1.0.1" 3833 | resolved "https://registry.yarnpkg.com/set-immediate-shim/-/set-immediate-shim-1.0.1.tgz#4b2b1b27eb808a9f8dcc481a58e5e56f599f3f61" 3834 | 3835 | setimmediate@^1.0.5: 3836 | version "1.0.5" 3837 | resolved "https://registry.yarnpkg.com/setimmediate/-/setimmediate-1.0.5.tgz#290cbb232e306942d7d7ea9b83732ab7856f8285" 3838 | 3839 | sha.js@^2.3.6, sha.js@~2.4.4: 3840 | version "2.4.8" 3841 | resolved "https://registry.yarnpkg.com/sha.js/-/sha.js-2.4.8.tgz#37068c2c476b6baf402d14a49c67f597921f634f" 3842 | dependencies: 3843 | inherits "^2.0.1" 3844 | 3845 | shasum@^1.0.0: 3846 | version "1.0.2" 3847 | resolved "https://registry.yarnpkg.com/shasum/-/shasum-1.0.2.tgz#e7012310d8f417f4deb5712150e5678b87ae565f" 3848 | dependencies: 3849 | json-stable-stringify "~0.0.0" 3850 | sha.js "~2.4.4" 3851 | 3852 | shebang-command@^1.2.0: 3853 | version "1.2.0" 3854 | resolved "https://registry.yarnpkg.com/shebang-command/-/shebang-command-1.2.0.tgz#44aac65b695b03398968c39f363fee5deafdf1ea" 3855 | dependencies: 3856 | shebang-regex "^1.0.0" 3857 | 3858 | shebang-regex@^1.0.0: 3859 | version "1.0.0" 3860 | resolved "https://registry.yarnpkg.com/shebang-regex/-/shebang-regex-1.0.0.tgz#da42f49740c0b42db2ca9728571cb190c98efea3" 3861 | 3862 | shell-quote@^1.6.1: 3863 | version "1.6.1" 3864 | resolved "https://registry.yarnpkg.com/shell-quote/-/shell-quote-1.6.1.tgz#f4781949cce402697127430ea3b3c5476f481767" 3865 | dependencies: 3866 | array-filter "~0.0.0" 3867 | array-map "~0.0.0" 3868 | array-reduce "~0.0.0" 3869 | jsonify "~0.0.0" 3870 | 3871 | signal-exit@^3.0.0: 3872 | version "3.0.1" 3873 | resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.1.tgz#5a4c884992b63a7acd9badb7894c3ee9cfccad81" 3874 | 3875 | signal-exit@^3.0.2: 3876 | version "3.0.2" 3877 | resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.2.tgz#b5fdc08f1287ea1178628e415e25132b73646c6d" 3878 | 3879 | slash@^1.0.0: 3880 | version "1.0.0" 3881 | resolved "https://registry.yarnpkg.com/slash/-/slash-1.0.0.tgz#c41f2f6c39fc16d1cd17ad4b5d896114ae470d55" 3882 | 3883 | slice-ansi@1.0.0: 3884 | version "1.0.0" 3885 | resolved "https://registry.yarnpkg.com/slice-ansi/-/slice-ansi-1.0.0.tgz#044f1a49d8842ff307aad6b505ed178bd950134d" 3886 | dependencies: 3887 | is-fullwidth-code-point "^2.0.0" 3888 | 3889 | sntp@1.x.x: 3890 | version "1.0.9" 3891 | resolved "https://registry.yarnpkg.com/sntp/-/sntp-1.0.9.tgz#6541184cc90aeea6c6e7b35e2659082443c66198" 3892 | dependencies: 3893 | hoek "2.x.x" 3894 | 3895 | source-map-support@^0.4.15: 3896 | version "0.4.18" 3897 | resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.4.18.tgz#0286a6de8be42641338594e97ccea75f0a2c585f" 3898 | dependencies: 3899 | source-map "^0.5.6" 3900 | 3901 | source-map@^0.5.6: 3902 | version "0.5.7" 3903 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.5.7.tgz#8a039d2d1021d22d1ea14c80d8ea468ba2ef3fcc" 3904 | 3905 | source-map@~0.5.3: 3906 | version "0.5.6" 3907 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.5.6.tgz#75ce38f52bf0733c5a7f0c118d81334a2bb5f412" 3908 | 3909 | spdx-correct@~1.0.0: 3910 | version "1.0.2" 3911 | resolved "https://registry.yarnpkg.com/spdx-correct/-/spdx-correct-1.0.2.tgz#4b3073d933ff51f3912f03ac5519498a4150db40" 3912 | dependencies: 3913 | spdx-license-ids "^1.0.2" 3914 | 3915 | spdx-expression-parse@~1.0.0: 3916 | version "1.0.4" 3917 | resolved "https://registry.yarnpkg.com/spdx-expression-parse/-/spdx-expression-parse-1.0.4.tgz#9bdf2f20e1f40ed447fbe273266191fced51626c" 3918 | 3919 | spdx-license-ids@^1.0.2: 3920 | version "1.2.2" 3921 | resolved "https://registry.yarnpkg.com/spdx-license-ids/-/spdx-license-ids-1.2.2.tgz#c9df7a3424594ade6bd11900d596696dc06bac57" 3922 | 3923 | sprintf-js@~1.0.2: 3924 | version "1.0.3" 3925 | resolved "https://registry.yarnpkg.com/sprintf-js/-/sprintf-js-1.0.3.tgz#04e6926f662895354f3dd015203633b857297e2c" 3926 | 3927 | sshpk@^1.7.0: 3928 | version "1.10.1" 3929 | resolved "https://registry.yarnpkg.com/sshpk/-/sshpk-1.10.1.tgz#30e1a5d329244974a1af61511339d595af6638b0" 3930 | dependencies: 3931 | asn1 "~0.2.3" 3932 | assert-plus "^1.0.0" 3933 | dashdash "^1.12.0" 3934 | getpass "^0.1.1" 3935 | optionalDependencies: 3936 | bcrypt-pbkdf "^1.0.0" 3937 | ecc-jsbn "~0.1.1" 3938 | jodid25519 "^1.0.0" 3939 | jsbn "~0.1.0" 3940 | tweetnacl "~0.14.0" 3941 | 3942 | stream-browserify@^2.0.0: 3943 | version "2.0.1" 3944 | resolved "https://registry.yarnpkg.com/stream-browserify/-/stream-browserify-2.0.1.tgz#66266ee5f9bdb9940a4e4514cafb43bb71e5c9db" 3945 | dependencies: 3946 | inherits "~2.0.1" 3947 | readable-stream "^2.0.2" 3948 | 3949 | stream-combiner2@^1.1.1: 3950 | version "1.1.1" 3951 | resolved "https://registry.yarnpkg.com/stream-combiner2/-/stream-combiner2-1.1.1.tgz#fb4d8a1420ea362764e21ad4780397bebcb41cbe" 3952 | dependencies: 3953 | duplexer2 "~0.1.0" 3954 | readable-stream "^2.0.2" 3955 | 3956 | stream-http@^2.0.0: 3957 | version "2.5.0" 3958 | resolved "https://registry.yarnpkg.com/stream-http/-/stream-http-2.5.0.tgz#585eee513217ed98fe199817e7313b6f772a6802" 3959 | dependencies: 3960 | builtin-status-codes "^2.0.0" 3961 | inherits "^2.0.1" 3962 | readable-stream "^2.1.0" 3963 | to-arraybuffer "^1.0.0" 3964 | xtend "^4.0.0" 3965 | 3966 | stream-splicer@^2.0.0: 3967 | version "2.0.0" 3968 | resolved "https://registry.yarnpkg.com/stream-splicer/-/stream-splicer-2.0.0.tgz#1b63be438a133e4b671cc1935197600175910d83" 3969 | dependencies: 3970 | inherits "^2.0.1" 3971 | readable-stream "^2.0.2" 3972 | 3973 | string-width@^1.0.1: 3974 | version "1.0.2" 3975 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-1.0.2.tgz#118bdf5b8cdc51a2a7e70d211e07e2b0b9b107d3" 3976 | dependencies: 3977 | code-point-at "^1.0.0" 3978 | is-fullwidth-code-point "^1.0.0" 3979 | strip-ansi "^3.0.0" 3980 | 3981 | string-width@^2.1.0, string-width@^2.1.1: 3982 | version "2.1.1" 3983 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-2.1.1.tgz#ab93f27a8dc13d28cac815c462143a6d9012ae9e" 3984 | dependencies: 3985 | is-fullwidth-code-point "^2.0.0" 3986 | strip-ansi "^4.0.0" 3987 | 3988 | string_decoder@~0.10.0, string_decoder@~0.10.x: 3989 | version "0.10.31" 3990 | resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-0.10.31.tgz#62e203bc41766c6c28c9fc84301dab1c5310fa94" 3991 | 3992 | string_decoder@~1.0.3: 3993 | version "1.0.3" 3994 | resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.0.3.tgz#0fc67d7c141825de94282dd536bec6b9bce860ab" 3995 | dependencies: 3996 | safe-buffer "~5.1.0" 3997 | 3998 | stringstream@~0.0.4: 3999 | version "0.0.5" 4000 | resolved "https://registry.yarnpkg.com/stringstream/-/stringstream-0.0.5.tgz#4e484cd4de5a0bbbee18e46307710a8a81621878" 4001 | 4002 | strip-ansi@^3.0.0, strip-ansi@^3.0.1: 4003 | version "3.0.1" 4004 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-3.0.1.tgz#6a385fb8853d952d5ff05d0e8aaf94278dc63dcf" 4005 | dependencies: 4006 | ansi-regex "^2.0.0" 4007 | 4008 | strip-ansi@^4.0.0: 4009 | version "4.0.0" 4010 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-4.0.0.tgz#a8479022eb1ac368a871389b635262c505ee368f" 4011 | dependencies: 4012 | ansi-regex "^3.0.0" 4013 | 4014 | strip-bom@^3.0.0: 4015 | version "3.0.0" 4016 | resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-3.0.0.tgz#2334c18e9c759f7bdd56fdef7e9ae3d588e68ed3" 4017 | 4018 | strip-json-comments@~1.0.4: 4019 | version "1.0.4" 4020 | resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-1.0.4.tgz#1e15fbcac97d3ee99bf2d73b4c656b082bbafb91" 4021 | 4022 | strip-json-comments@~2.0.1: 4023 | version "2.0.1" 4024 | resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-2.0.1.tgz#3c531942e908c2697c0ec344858c286c7ca0a60a" 4025 | 4026 | subarg@^1.0.0: 4027 | version "1.0.0" 4028 | resolved "https://registry.yarnpkg.com/subarg/-/subarg-1.0.0.tgz#f62cf17581e996b48fc965699f54c06ae268b8d2" 4029 | dependencies: 4030 | minimist "^1.1.0" 4031 | 4032 | supports-color@3.1.2: 4033 | version "3.1.2" 4034 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-3.1.2.tgz#72a262894d9d408b956ca05ff37b2ed8a6e2a2d5" 4035 | dependencies: 4036 | has-flag "^1.0.0" 4037 | 4038 | supports-color@^2.0.0: 4039 | version "2.0.0" 4040 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-2.0.0.tgz#535d045ce6b6363fa40117084629995e9df324c7" 4041 | 4042 | supports-color@^4.0.0: 4043 | version "4.5.0" 4044 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-4.5.0.tgz#be7a0de484dec5c5cddf8b3d59125044912f635b" 4045 | dependencies: 4046 | has-flag "^2.0.0" 4047 | 4048 | syntax-error@^1.1.1: 4049 | version "1.1.6" 4050 | resolved "https://registry.yarnpkg.com/syntax-error/-/syntax-error-1.1.6.tgz#b4549706d386cc1c1dc7c2423f18579b6cade710" 4051 | dependencies: 4052 | acorn "^2.7.0" 4053 | 4054 | table@^4.0.1: 4055 | version "4.0.2" 4056 | resolved "https://registry.yarnpkg.com/table/-/table-4.0.2.tgz#a33447375391e766ad34d3486e6e2aedc84d2e36" 4057 | dependencies: 4058 | ajv "^5.2.3" 4059 | ajv-keywords "^2.1.0" 4060 | chalk "^2.1.0" 4061 | lodash "^4.17.4" 4062 | slice-ansi "1.0.0" 4063 | string-width "^2.1.1" 4064 | 4065 | tar-pack@~3.3.0: 4066 | version "3.3.0" 4067 | resolved "https://registry.yarnpkg.com/tar-pack/-/tar-pack-3.3.0.tgz#30931816418f55afc4d21775afdd6720cee45dae" 4068 | dependencies: 4069 | debug "~2.2.0" 4070 | fstream "~1.0.10" 4071 | fstream-ignore "~1.0.5" 4072 | once "~1.3.3" 4073 | readable-stream "~2.1.4" 4074 | rimraf "~2.5.1" 4075 | tar "~2.2.1" 4076 | uid-number "~0.0.6" 4077 | 4078 | tar@~2.2.1: 4079 | version "2.2.1" 4080 | resolved "https://registry.yarnpkg.com/tar/-/tar-2.2.1.tgz#8e4d2a256c0e2185c6b18ad694aec968b83cb1d1" 4081 | dependencies: 4082 | block-stream "*" 4083 | fstream "^1.0.2" 4084 | inherits "2" 4085 | 4086 | text-table@~0.2.0: 4087 | version "0.2.0" 4088 | resolved "https://registry.yarnpkg.com/text-table/-/text-table-0.2.0.tgz#7f5ee823ae805207c00af2df4a84ec3fcfa570b4" 4089 | 4090 | through2@^2.0.0: 4091 | version "2.0.3" 4092 | resolved "https://registry.yarnpkg.com/through2/-/through2-2.0.3.tgz#0004569b37c7c74ba39c43f3ced78d1ad94140be" 4093 | dependencies: 4094 | readable-stream "^2.1.5" 4095 | xtend "~4.0.1" 4096 | 4097 | "through@>=2.2.7 <3", through@^2.3.6: 4098 | version "2.3.8" 4099 | resolved "https://registry.yarnpkg.com/through/-/through-2.3.8.tgz#0dd4c9ffaabc357960b1b724115d7e0e86a2e1f5" 4100 | 4101 | timers-browserify@^1.0.1: 4102 | version "1.4.2" 4103 | resolved "https://registry.yarnpkg.com/timers-browserify/-/timers-browserify-1.4.2.tgz#c9c58b575be8407375cb5e2462dacee74359f41d" 4104 | dependencies: 4105 | process "~0.11.0" 4106 | 4107 | tmatch@^2.0.1: 4108 | version "2.0.1" 4109 | resolved "https://registry.yarnpkg.com/tmatch/-/tmatch-2.0.1.tgz#0c56246f33f30da1b8d3d72895abaf16660f38cf" 4110 | 4111 | tmp@^0.0.33: 4112 | version "0.0.33" 4113 | resolved "https://registry.yarnpkg.com/tmp/-/tmp-0.0.33.tgz#6d34335889768d21b2bcda0aa277ced3b1bfadf9" 4114 | dependencies: 4115 | os-tmpdir "~1.0.2" 4116 | 4117 | to-arraybuffer@^1.0.0: 4118 | version "1.0.1" 4119 | resolved "https://registry.yarnpkg.com/to-arraybuffer/-/to-arraybuffer-1.0.1.tgz#7d229b1fcc637e466ca081180836a7aabff83f43" 4120 | 4121 | to-fast-properties@^1.0.1: 4122 | version "1.0.2" 4123 | resolved "https://registry.yarnpkg.com/to-fast-properties/-/to-fast-properties-1.0.2.tgz#f3f5c0c3ba7299a7ef99427e44633257ade43320" 4124 | 4125 | to-fast-properties@^1.0.3: 4126 | version "1.0.3" 4127 | resolved "https://registry.yarnpkg.com/to-fast-properties/-/to-fast-properties-1.0.3.tgz#b83571fa4d8c25b82e231b06e3a3055de4ca1a47" 4128 | 4129 | to-fast-properties@^2.0.0: 4130 | version "2.0.0" 4131 | resolved "https://registry.yarnpkg.com/to-fast-properties/-/to-fast-properties-2.0.0.tgz#dc5e698cbd079265bc73e0377681a4e4e83f616e" 4132 | 4133 | tough-cookie@~2.3.0: 4134 | version "2.3.2" 4135 | resolved "https://registry.yarnpkg.com/tough-cookie/-/tough-cookie-2.3.2.tgz#f081f76e4c85720e6c37a5faced737150d84072a" 4136 | dependencies: 4137 | punycode "^1.4.1" 4138 | 4139 | trim-right@^1.0.1: 4140 | version "1.0.1" 4141 | resolved "https://registry.yarnpkg.com/trim-right/-/trim-right-1.0.1.tgz#cb2e1203067e0c8de1f614094b9fe45704ea6003" 4142 | 4143 | tryit@^1.0.1: 4144 | version "1.0.3" 4145 | resolved "https://registry.yarnpkg.com/tryit/-/tryit-1.0.3.tgz#393be730a9446fd1ead6da59a014308f36c289cb" 4146 | 4147 | tty-browserify@~0.0.0: 4148 | version "0.0.0" 4149 | resolved "https://registry.yarnpkg.com/tty-browserify/-/tty-browserify-0.0.0.tgz#a157ba402da24e9bf957f9aa69d524eed42901a6" 4150 | 4151 | tunnel-agent@~0.4.1: 4152 | version "0.4.3" 4153 | resolved "https://registry.yarnpkg.com/tunnel-agent/-/tunnel-agent-0.4.3.tgz#6373db76909fe570e08d73583365ed828a74eeeb" 4154 | 4155 | tweetnacl@^0.14.3, tweetnacl@~0.14.0: 4156 | version "0.14.3" 4157 | resolved "https://registry.yarnpkg.com/tweetnacl/-/tweetnacl-0.14.3.tgz#3da382f670f25ded78d7b3d1792119bca0b7132d" 4158 | 4159 | type-check@~0.3.2: 4160 | version "0.3.2" 4161 | resolved "https://registry.yarnpkg.com/type-check/-/type-check-0.3.2.tgz#5884cab512cf1d355e3fb784f30804b2b520db72" 4162 | dependencies: 4163 | prelude-ls "~1.1.2" 4164 | 4165 | type-of@^2.0.1: 4166 | version "2.0.1" 4167 | resolved "https://registry.yarnpkg.com/type-of/-/type-of-2.0.1.tgz#e72a1741896568e9f628378d816d6912f7f23972" 4168 | 4169 | typedarray@^0.0.6, typedarray@~0.0.5: 4170 | version "0.0.6" 4171 | resolved "https://registry.yarnpkg.com/typedarray/-/typedarray-0.0.6.tgz#867ac74e3864187b1d3d47d996a78ec5c8830777" 4172 | 4173 | ua-parser-js@^0.7.9: 4174 | version "0.7.12" 4175 | resolved "https://registry.yarnpkg.com/ua-parser-js/-/ua-parser-js-0.7.12.tgz#04c81a99bdd5dc52263ea29d24c6bf8d4818a4bb" 4176 | 4177 | uid-number@~0.0.6: 4178 | version "0.0.6" 4179 | resolved "https://registry.yarnpkg.com/uid-number/-/uid-number-0.0.6.tgz#0ea10e8035e8eb5b8e4449f06da1c730663baa81" 4180 | 4181 | umd@^3.0.0: 4182 | version "3.0.1" 4183 | resolved "https://registry.yarnpkg.com/umd/-/umd-3.0.1.tgz#8ae556e11011f63c2596708a8837259f01b3d60e" 4184 | 4185 | union@~0.4.3: 4186 | version "0.4.6" 4187 | resolved "https://registry.yarnpkg.com/union/-/union-0.4.6.tgz#198fbdaeba254e788b0efcb630bc11f24a2959e0" 4188 | dependencies: 4189 | qs "~2.3.3" 4190 | 4191 | url-join@^1.0.0: 4192 | version "1.1.0" 4193 | resolved "https://registry.yarnpkg.com/url-join/-/url-join-1.1.0.tgz#741c6c2f4596c4830d6718460920d0c92202dc78" 4194 | 4195 | url2@^0.0.0: 4196 | version "0.0.0" 4197 | resolved "https://registry.yarnpkg.com/url2/-/url2-0.0.0.tgz#4eaabd1d5c3ac90d62ab4485c998422865a04b1a" 4198 | 4199 | url@~0.11.0: 4200 | version "0.11.0" 4201 | resolved "https://registry.yarnpkg.com/url/-/url-0.11.0.tgz#3838e97cfc60521eb73c525a8e55bfdd9e2e28f1" 4202 | dependencies: 4203 | punycode "1.3.2" 4204 | querystring "0.2.0" 4205 | 4206 | user-home@^1.1.1: 4207 | version "1.1.1" 4208 | resolved "https://registry.yarnpkg.com/user-home/-/user-home-1.1.1.tgz#2b5be23a32b63a7c9deb8d0f28d485724a3df190" 4209 | 4210 | util-deprecate@~1.0.1: 4211 | version "1.0.2" 4212 | resolved "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf" 4213 | 4214 | util@0.10.3, util@~0.10.1: 4215 | version "0.10.3" 4216 | resolved "https://registry.yarnpkg.com/util/-/util-0.10.3.tgz#7afb1afe50805246489e3db7fe0ed379336ac0f9" 4217 | dependencies: 4218 | inherits "2.0.1" 4219 | 4220 | uuid@^3.0.0: 4221 | version "3.0.1" 4222 | resolved "https://registry.yarnpkg.com/uuid/-/uuid-3.0.1.tgz#6544bba2dfda8c1cf17e629a3a305e2bb1fee6c1" 4223 | 4224 | v8flags@^2.1.1: 4225 | version "2.1.1" 4226 | resolved "https://registry.yarnpkg.com/v8flags/-/v8flags-2.1.1.tgz#aab1a1fa30d45f88dd321148875ac02c0b55e5b4" 4227 | dependencies: 4228 | user-home "^1.1.1" 4229 | 4230 | validate-npm-package-license@^3.0.1: 4231 | version "3.0.1" 4232 | resolved "https://registry.yarnpkg.com/validate-npm-package-license/-/validate-npm-package-license-3.0.1.tgz#2804babe712ad3379459acfbe24746ab2c303fbc" 4233 | dependencies: 4234 | spdx-correct "~1.0.0" 4235 | spdx-expression-parse "~1.0.0" 4236 | 4237 | verror@1.3.6: 4238 | version "1.3.6" 4239 | resolved "https://registry.yarnpkg.com/verror/-/verror-1.3.6.tgz#cff5df12946d297d2baaefaa2689e25be01c005c" 4240 | dependencies: 4241 | extsprintf "1.0.2" 4242 | 4243 | vm-browserify@~0.0.1: 4244 | version "0.0.4" 4245 | resolved "https://registry.yarnpkg.com/vm-browserify/-/vm-browserify-0.0.4.tgz#5d7ea45bbef9e4a6ff65f95438e0a87c357d5a73" 4246 | dependencies: 4247 | indexof "0.0.1" 4248 | 4249 | weak-map@1.0.0: 4250 | version "1.0.0" 4251 | resolved "https://registry.yarnpkg.com/weak-map/-/weak-map-1.0.0.tgz#b66e56a9df0bd25a76bbf1b514db129080614a37" 4252 | 4253 | whatwg-fetch@>=0.10.0: 4254 | version "2.0.1" 4255 | resolved "https://registry.yarnpkg.com/whatwg-fetch/-/whatwg-fetch-2.0.1.tgz#078b9461bbe91cea73cbce8bb122a05f9e92b772" 4256 | 4257 | which@^1.2.9: 4258 | version "1.3.0" 4259 | resolved "https://registry.yarnpkg.com/which/-/which-1.3.0.tgz#ff04bdfc010ee547d780bec38e1ac1c2777d253a" 4260 | dependencies: 4261 | isexe "^2.0.0" 4262 | 4263 | wide-align@^1.1.0: 4264 | version "1.1.0" 4265 | resolved "https://registry.yarnpkg.com/wide-align/-/wide-align-1.1.0.tgz#40edde802a71fea1f070da3e62dcda2e7add96ad" 4266 | dependencies: 4267 | string-width "^1.0.1" 4268 | 4269 | wordwrap@~0.0.2: 4270 | version "0.0.3" 4271 | resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-0.0.3.tgz#a3d5da6cd5c0bc0008d37234bbaf1bed63059107" 4272 | 4273 | wordwrap@~1.0.0: 4274 | version "1.0.0" 4275 | resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-1.0.0.tgz#27584810891456a4171c8d0226441ade90cbcaeb" 4276 | 4277 | wrappy@1: 4278 | version "1.0.2" 4279 | resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f" 4280 | 4281 | wrench@1.5.8: 4282 | version "1.5.8" 4283 | resolved "https://registry.yarnpkg.com/wrench/-/wrench-1.5.8.tgz#7a31c97f7869246d76c5cf2f5c977a1c4c8e5ab5" 4284 | 4285 | write@^0.2.1: 4286 | version "0.2.1" 4287 | resolved "https://registry.yarnpkg.com/write/-/write-0.2.1.tgz#5fc03828e264cea3fe91455476f7a3c566cb0757" 4288 | dependencies: 4289 | mkdirp "^0.5.1" 4290 | 4291 | xtend@^4.0.0, xtend@~4.0.1: 4292 | version "4.0.1" 4293 | resolved "https://registry.yarnpkg.com/xtend/-/xtend-4.0.1.tgz#a5c6d532be656e23db820efb943a1f04998d63af" 4294 | 4295 | yallist@^2.1.2: 4296 | version "2.1.2" 4297 | resolved "https://registry.yarnpkg.com/yallist/-/yallist-2.1.2.tgz#1c11f9218f076089a47dd512f93c6699a6a81d52" 4298 | 4299 | yaml-js@0.0.8: 4300 | version "0.0.8" 4301 | resolved "https://registry.yarnpkg.com/yaml-js/-/yaml-js-0.0.8.tgz#87cfa5a9613f48e26005420d6a8ee0da6fe8daec" 4302 | --------------------------------------------------------------------------------