├── .eslintrc ├── .gitignore ├── .npmignore ├── LICENSE ├── README.md ├── icon.png ├── index.js ├── package.json ├── preview.png ├── src ├── DisqusFooter.js └── index.js └── yarn.lock /.eslintrc: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "gitbook/plugin" 3 | } 4 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # Logs 2 | logs 3 | *.log 4 | 5 | # Runtime data 6 | pids 7 | *.pid 8 | *.seed 9 | 10 | # Directory for instrumented libs generated by jscoverage/JSCover 11 | lib-cov 12 | 13 | # Coverage directory used by tools like istanbul 14 | coverage 15 | 16 | # Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files) 17 | .grunt 18 | 19 | # Compiled binary addons (http://nodejs.org/api/addons.html) 20 | build/Release 21 | 22 | # Dependency directory 23 | # Deployed apps should consider commenting this line out: 24 | # see https://npmjs.org/doc/faq.html#Should-I-check-my-node_modules-folder-into-git 25 | node_modules 26 | 27 | # Plugin assets 28 | _assets/plugin.js 29 | -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | # Publish assets on NPM 2 | !_assets/plugin.js 3 | -------------------------------------------------------------------------------- /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 2014 FriendCode Inc. 190 | 191 | Licensed under the Apache License, Version 2.0 (the "License"); 192 | you may not use this file except in compliance with the License. 193 | You may obtain a copy of the License at 194 | 195 | http://www.apache.org/licenses/LICENSE-2.0 196 | 197 | Unless required by applicable law or agreed to in writing, software 198 | distributed under the License is distributed on an "AS IS" BASIS, 199 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 200 | See the License for the specific language governing permissions and 201 | limitations under the License. 202 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Disqus comments for GitBook 2 | 3 | ![Preview](./preview.png) 4 | 5 | To use the Disqus plugin in your Gitbook project, add the disqus plugin to the `book.json` file, along with your shortname (you create a shortname for disqus by creating a new website on the [disqus.com](https://disqus.com/) website) 6 | 7 | ``` 8 | { 9 | "plugins": ["disqus"], 10 | "pluginsConfig": { 11 | "disqus": { 12 | "shortName": "XXXXXXX" 13 | } 14 | } 15 | } 16 | ``` 17 | 18 | ### Disable it for a specific page 19 | 20 | Using the YAML frontmatter, you can disable the Disqus comments thread for a specific page: 21 | 22 | ```md 23 | --- 24 | disqus: false 25 | --- 26 | 27 | # My Page without disqus 28 | ``` 29 | 30 | ### Use custom page identifiers 31 | 32 | By default Disqus use the window URL as the main identifier when creating a thread. You can set a custom identifier in the YAML frontmatter of your page: 33 | 34 | ```md 35 | --- 36 | disqus: 37 | identifier: "some-identifier" 38 | --- 39 | ``` 40 | -------------------------------------------------------------------------------- /icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitbookIO/plugin-disqus/e77de0febf42faa075c0d21e1e6e2e82bdc4f3f2/icon.png -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- 1 | module.exports = {}; 2 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "Disqus", 3 | "name": "gitbook-plugin-disqus", 4 | "description": "Disqus comments thread in the footer of your pages", 5 | "icon": "./icon.png", 6 | "main": "index.js", 7 | "browser": "./_assets/plugin.js", 8 | "version": "1.0.1", 9 | "engines": { 10 | "gitbook": ">=4.0.0-alpha" 11 | }, 12 | "dependencies": { 13 | "react": "^15.3.2", 14 | "react-disqus-thread": "^0.4.0" 15 | }, 16 | "devDependencies": { 17 | "gitbook-plugin": "^4.0.0-alpha.0", 18 | "eslint": "3.7.1", 19 | "eslint-config-gitbook": "1.4.0" 20 | }, 21 | "homepage": "https://github.com/GitbookIO/plugin-disqus", 22 | "repository": { 23 | "type": "git", 24 | "url": "https://github.com/GitbookIO/plugin-disqus.git" 25 | }, 26 | "license": "Apache-2.0", 27 | "bugs": { 28 | "url": "https://github.com/GitbookIO/plugin-disqus/issues" 29 | }, 30 | "keywords": [ 31 | "gitbook:social" 32 | ], 33 | "scripts": { 34 | "build-js": "gitbook-plugin build ./src/index.js ./_assets/plugin.js", 35 | "prepublish": "npm run build-js" 36 | }, 37 | "gitbook": { 38 | "properties": { 39 | "shortName": { 40 | "type": "string", 41 | "title": "Website Shortname", 42 | "description": "Unique identifier for your website as registered on Disqus", 43 | "required": true 44 | }, 45 | "useIdentifier": { 46 | "type": "boolean", 47 | "title": "Pass page identifier option to Disqus", 48 | "default": false 49 | } 50 | }, 51 | "page": { 52 | "title": "Disqus configuration for this page", 53 | "properties": { 54 | "disqus": { 55 | "type": "object", 56 | "properties" : { 57 | "enabled": { 58 | "type": "boolean", 59 | "title": "Enable Disqus comments for this page.", 60 | "default": true 61 | }, 62 | "identifier": { 63 | "type": "string", 64 | "title": "Identifier for this page.", 65 | "description": "Tells the Disqus service how to identify the current page" 66 | } 67 | } 68 | } 69 | } 70 | } 71 | } 72 | } 73 | -------------------------------------------------------------------------------- /preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitbookIO/plugin-disqus/e77de0febf42faa075c0d21e1e6e2e82bdc4f3f2/preview.png -------------------------------------------------------------------------------- /src/DisqusFooter.js: -------------------------------------------------------------------------------- 1 | const path = require('path'); 2 | const GitBook = require('gitbook-core'); 3 | const DisqusThread = require('react-disqus-thread'); 4 | const { React, Immutable } = GitBook; 5 | 6 | /** 7 | * Footer for a page with disqus comment. 8 | * @type {[type]} 9 | */ 10 | const DisqusFooter = React.createClass({ 11 | propTypes: { 12 | defaultIdentifier: React.PropTypes.string, 13 | page: GitBook.PropTypes.Page, 14 | shortName: React.PropTypes.string.isRequired, 15 | useIdentifier: React.PropTypes.bool 16 | }, 17 | 18 | render() { 19 | const { defaultIdentifier, page, shortName, useIdentifier } = this.props; 20 | 21 | // Get disqus config for this page 22 | const pageConfig = page.attributes.get('disqus', Immutable.Map()); 23 | 24 | // Disqus is disabled for this page 25 | if (!shortName || pageConfig === false || pageConfig.get('enabled') === false) { 26 | return null; 27 | } 28 | 29 | // Page frontmatter can define a custom identifier or use the default one 30 | const identifier = useIdentifier ? 31 | pageConfig.get('identifier', defaultIdentifier) 32 | : null; 33 | 34 | return ( 35 | 36 | 42 | 43 | ); 44 | } 45 | }); 46 | 47 | function mapStateToProps({ config, file, page, languages }) { 48 | const defaultIdentifier = languages.current ? 49 | path.join(languages.current, file.url) : file.url; 50 | const pluginConfig = config.getForPlugin('disqus'); 51 | 52 | return { 53 | page, 54 | defaultIdentifier, 55 | shortName: pluginConfig.get('shortName'), 56 | useIdentifier: pluginConfig.get('useIdentifier') 57 | }; 58 | } 59 | 60 | module.exports = GitBook.connect(DisqusFooter, mapStateToProps); 61 | -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- 1 | const GitBook = require('gitbook-core'); 2 | const DisqusFooter = require('./DisqusFooter'); 3 | 4 | module.exports = GitBook.createPlugin({ 5 | activate: (dispatch, getState, { Components }) => { 6 | dispatch(Components.registerComponent(DisqusFooter, { role: 'page:footer' })); 7 | } 8 | }); 9 | -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- 1 | # THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY. 2 | # yarn lockfile v1 3 | 4 | 5 | JSONStream@^1.0.3: 6 | version "1.3.0" 7 | resolved "https://registry.yarnpkg.com/JSONStream/-/JSONStream-1.3.0.tgz#680ab9ac6572a8a1a207e0b38721db1c77b215e5" 8 | dependencies: 9 | jsonparse "^1.2.0" 10 | through ">=2.2.7 <3" 11 | 12 | acorn-jsx@^3.0.0: 13 | version "3.0.1" 14 | resolved "https://registry.yarnpkg.com/acorn-jsx/-/acorn-jsx-3.0.1.tgz#afdf9488fb1ecefc8348f6fb22f464e32a58b36b" 15 | dependencies: 16 | acorn "^3.0.4" 17 | 18 | acorn@4.0.4: 19 | version "4.0.4" 20 | resolved "https://registry.yarnpkg.com/acorn/-/acorn-4.0.4.tgz#17a8d6a7a6c4ef538b814ec9abac2779293bf30a" 21 | 22 | acorn@^1.0.3: 23 | version "1.2.2" 24 | resolved "https://registry.yarnpkg.com/acorn/-/acorn-1.2.2.tgz#c8ce27de0acc76d896d2b1fad3df588d9e82f014" 25 | 26 | acorn@^2.7.0: 27 | version "2.7.0" 28 | resolved "https://registry.yarnpkg.com/acorn/-/acorn-2.7.0.tgz#ab6e7d9d886aaca8b085bc3312b79a198433f0e7" 29 | 30 | acorn@^3.0.4, acorn@^3.1.0: 31 | version "3.3.0" 32 | resolved "https://registry.yarnpkg.com/acorn/-/acorn-3.3.0.tgz#45e37fb39e8da3f25baee3ff5369e2bb5f22017a" 33 | 34 | ajv-keywords@^1.0.0: 35 | version "1.5.1" 36 | resolved "https://registry.yarnpkg.com/ajv-keywords/-/ajv-keywords-1.5.1.tgz#314dd0a4b3368fad3dfcdc54ede6171b886daf3c" 37 | 38 | ajv@^4.7.0: 39 | version "4.11.3" 40 | resolved "https://registry.yarnpkg.com/ajv/-/ajv-4.11.3.tgz#ce30bdb90d1254f762c75af915fb3a63e7183d22" 41 | dependencies: 42 | co "^4.6.0" 43 | json-stable-stringify "^1.0.1" 44 | 45 | ansi-escapes@^1.1.0: 46 | version "1.4.0" 47 | resolved "https://registry.yarnpkg.com/ansi-escapes/-/ansi-escapes-1.4.0.tgz#d3a8a83b319aa67793662b13e761c7911422306e" 48 | 49 | ansi-regex@^2.0.0: 50 | version "2.1.1" 51 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-2.1.1.tgz#c3b33ab5ee360d86e0e628f0468ae7ef27d654df" 52 | 53 | ansi-styles@^2.2.1: 54 | version "2.2.1" 55 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-2.2.1.tgz#b432dd3358b634cf75e1e4664368240533c1ddbe" 56 | 57 | argparse@^1.0.7: 58 | version "1.0.9" 59 | resolved "https://registry.yarnpkg.com/argparse/-/argparse-1.0.9.tgz#73d83bc263f86e97f8cc4f6bae1b0e90a7d22c86" 60 | dependencies: 61 | sprintf-js "~1.0.2" 62 | 63 | array-filter@~0.0.0: 64 | version "0.0.1" 65 | resolved "https://registry.yarnpkg.com/array-filter/-/array-filter-0.0.1.tgz#7da8cf2e26628ed732803581fd21f67cacd2eeec" 66 | 67 | array-map@~0.0.0: 68 | version "0.0.0" 69 | resolved "https://registry.yarnpkg.com/array-map/-/array-map-0.0.0.tgz#88a2bab73d1cf7bcd5c1b118a003f66f665fa662" 70 | 71 | array-reduce@~0.0.0: 72 | version "0.0.0" 73 | resolved "https://registry.yarnpkg.com/array-reduce/-/array-reduce-0.0.0.tgz#173899d3ffd1c7d9383e4479525dbe278cab5f2b" 74 | 75 | array-union@^1.0.1: 76 | version "1.0.2" 77 | resolved "https://registry.yarnpkg.com/array-union/-/array-union-1.0.2.tgz#9a34410e4f4e3da23dea375be5be70f24778ec39" 78 | dependencies: 79 | array-uniq "^1.0.1" 80 | 81 | array-uniq@^1.0.1: 82 | version "1.0.3" 83 | resolved "https://registry.yarnpkg.com/array-uniq/-/array-uniq-1.0.3.tgz#af6ac877a25cc7f74e058894753858dfdb24fdb6" 84 | 85 | array.prototype.find@^2.0.1: 86 | version "2.0.3" 87 | resolved "https://registry.yarnpkg.com/array.prototype.find/-/array.prototype.find-2.0.3.tgz#08c3ec33e32ec4bab362a2958e686ae92f59271d" 88 | dependencies: 89 | define-properties "^1.1.2" 90 | es-abstract "^1.7.0" 91 | 92 | arrify@^1.0.0: 93 | version "1.0.1" 94 | resolved "https://registry.yarnpkg.com/arrify/-/arrify-1.0.1.tgz#898508da2226f380df904728456849c1501a4b0d" 95 | 96 | asap@~2.0.3: 97 | version "2.0.5" 98 | resolved "https://registry.yarnpkg.com/asap/-/asap-2.0.5.tgz#522765b50c3510490e52d7dcfe085ef9ba96958f" 99 | 100 | asn1.js@^4.0.0: 101 | version "4.9.1" 102 | resolved "https://registry.yarnpkg.com/asn1.js/-/asn1.js-4.9.1.tgz#48ba240b45a9280e94748990ba597d216617fd40" 103 | dependencies: 104 | bn.js "^4.0.0" 105 | inherits "^2.0.1" 106 | minimalistic-assert "^1.0.0" 107 | 108 | assert@^1.4.0: 109 | version "1.4.1" 110 | resolved "https://registry.yarnpkg.com/assert/-/assert-1.4.1.tgz#99912d591836b5a6f5b345c0f07eefc08fc65d91" 111 | dependencies: 112 | util "0.10.3" 113 | 114 | astw@^2.0.0: 115 | version "2.0.0" 116 | resolved "https://registry.yarnpkg.com/astw/-/astw-2.0.0.tgz#08121ac8288d35611c0ceec663f6cd545604897d" 117 | dependencies: 118 | acorn "^1.0.3" 119 | 120 | async@~1.0.0: 121 | version "1.0.0" 122 | resolved "https://registry.yarnpkg.com/async/-/async-1.0.0.tgz#f8fc04ca3a13784ade9e1641af98578cfbd647a9" 123 | 124 | babel-code-frame@^6.22.0: 125 | version "6.22.0" 126 | resolved "https://registry.yarnpkg.com/babel-code-frame/-/babel-code-frame-6.22.0.tgz#027620bee567a88c32561574e7fd0801d33118e4" 127 | dependencies: 128 | chalk "^1.1.0" 129 | esutils "^2.0.2" 130 | js-tokens "^3.0.0" 131 | 132 | babel-core@^6.0.14, babel-core@^6.23.0: 133 | version "6.23.1" 134 | resolved "https://registry.yarnpkg.com/babel-core/-/babel-core-6.23.1.tgz#c143cb621bb2f621710c220c5d579d15b8a442df" 135 | dependencies: 136 | babel-code-frame "^6.22.0" 137 | babel-generator "^6.23.0" 138 | babel-helpers "^6.23.0" 139 | babel-messages "^6.23.0" 140 | babel-register "^6.23.0" 141 | babel-runtime "^6.22.0" 142 | babel-template "^6.23.0" 143 | babel-traverse "^6.23.1" 144 | babel-types "^6.23.0" 145 | babylon "^6.11.0" 146 | convert-source-map "^1.1.0" 147 | debug "^2.1.1" 148 | json5 "^0.5.0" 149 | lodash "^4.2.0" 150 | minimatch "^3.0.2" 151 | path-is-absolute "^1.0.0" 152 | private "^0.1.6" 153 | slash "^1.0.0" 154 | source-map "^0.5.0" 155 | 156 | babel-generator@^6.23.0: 157 | version "6.23.0" 158 | resolved "https://registry.yarnpkg.com/babel-generator/-/babel-generator-6.23.0.tgz#6b8edab956ef3116f79d8c84c5a3c05f32a74bc5" 159 | dependencies: 160 | babel-messages "^6.23.0" 161 | babel-runtime "^6.22.0" 162 | babel-types "^6.23.0" 163 | detect-indent "^4.0.0" 164 | jsesc "^1.3.0" 165 | lodash "^4.2.0" 166 | source-map "^0.5.0" 167 | trim-right "^1.0.1" 168 | 169 | babel-helper-builder-react-jsx@^6.23.0: 170 | version "6.23.0" 171 | resolved "https://registry.yarnpkg.com/babel-helper-builder-react-jsx/-/babel-helper-builder-react-jsx-6.23.0.tgz#d53fc8c996e0bc56d0de0fc4cc55a7138395ea4b" 172 | dependencies: 173 | babel-runtime "^6.22.0" 174 | babel-types "^6.23.0" 175 | esutils "^2.0.0" 176 | lodash "^4.2.0" 177 | 178 | babel-helper-call-delegate@^6.22.0: 179 | version "6.22.0" 180 | resolved "https://registry.yarnpkg.com/babel-helper-call-delegate/-/babel-helper-call-delegate-6.22.0.tgz#119921b56120f17e9dae3f74b4f5cc7bcc1b37ef" 181 | dependencies: 182 | babel-helper-hoist-variables "^6.22.0" 183 | babel-runtime "^6.22.0" 184 | babel-traverse "^6.22.0" 185 | babel-types "^6.22.0" 186 | 187 | babel-helper-define-map@^6.23.0: 188 | version "6.23.0" 189 | resolved "https://registry.yarnpkg.com/babel-helper-define-map/-/babel-helper-define-map-6.23.0.tgz#1444f960c9691d69a2ced6a205315f8fd00804e7" 190 | dependencies: 191 | babel-helper-function-name "^6.23.0" 192 | babel-runtime "^6.22.0" 193 | babel-types "^6.23.0" 194 | lodash "^4.2.0" 195 | 196 | babel-helper-function-name@^6.22.0, babel-helper-function-name@^6.23.0: 197 | version "6.23.0" 198 | resolved "https://registry.yarnpkg.com/babel-helper-function-name/-/babel-helper-function-name-6.23.0.tgz#25742d67175c8903dbe4b6cb9d9e1fcb8dcf23a6" 199 | dependencies: 200 | babel-helper-get-function-arity "^6.22.0" 201 | babel-runtime "^6.22.0" 202 | babel-template "^6.23.0" 203 | babel-traverse "^6.23.0" 204 | babel-types "^6.23.0" 205 | 206 | babel-helper-get-function-arity@^6.22.0: 207 | version "6.22.0" 208 | resolved "https://registry.yarnpkg.com/babel-helper-get-function-arity/-/babel-helper-get-function-arity-6.22.0.tgz#0beb464ad69dc7347410ac6ade9f03a50634f5ce" 209 | dependencies: 210 | babel-runtime "^6.22.0" 211 | babel-types "^6.22.0" 212 | 213 | babel-helper-hoist-variables@^6.22.0: 214 | version "6.22.0" 215 | resolved "https://registry.yarnpkg.com/babel-helper-hoist-variables/-/babel-helper-hoist-variables-6.22.0.tgz#3eacbf731d80705845dd2e9718f600cfb9b4ba72" 216 | dependencies: 217 | babel-runtime "^6.22.0" 218 | babel-types "^6.22.0" 219 | 220 | babel-helper-optimise-call-expression@^6.23.0: 221 | version "6.23.0" 222 | resolved "https://registry.yarnpkg.com/babel-helper-optimise-call-expression/-/babel-helper-optimise-call-expression-6.23.0.tgz#f3ee7eed355b4282138b33d02b78369e470622f5" 223 | dependencies: 224 | babel-runtime "^6.22.0" 225 | babel-types "^6.23.0" 226 | 227 | babel-helper-regex@^6.22.0: 228 | version "6.22.0" 229 | resolved "https://registry.yarnpkg.com/babel-helper-regex/-/babel-helper-regex-6.22.0.tgz#79f532be1647b1f0ee3474b5f5c3da58001d247d" 230 | dependencies: 231 | babel-runtime "^6.22.0" 232 | babel-types "^6.22.0" 233 | lodash "^4.2.0" 234 | 235 | babel-helper-replace-supers@^6.22.0, babel-helper-replace-supers@^6.23.0: 236 | version "6.23.0" 237 | resolved "https://registry.yarnpkg.com/babel-helper-replace-supers/-/babel-helper-replace-supers-6.23.0.tgz#eeaf8ad9b58ec4337ca94223bacdca1f8d9b4bfd" 238 | dependencies: 239 | babel-helper-optimise-call-expression "^6.23.0" 240 | babel-messages "^6.23.0" 241 | babel-runtime "^6.22.0" 242 | babel-template "^6.23.0" 243 | babel-traverse "^6.23.0" 244 | babel-types "^6.23.0" 245 | 246 | babel-helpers@^6.23.0: 247 | version "6.23.0" 248 | resolved "https://registry.yarnpkg.com/babel-helpers/-/babel-helpers-6.23.0.tgz#4f8f2e092d0b6a8808a4bde79c27f1e2ecf0d992" 249 | dependencies: 250 | babel-runtime "^6.22.0" 251 | babel-template "^6.23.0" 252 | 253 | babel-messages@^6.23.0: 254 | version "6.23.0" 255 | resolved "https://registry.yarnpkg.com/babel-messages/-/babel-messages-6.23.0.tgz#f3cdf4703858035b2a2951c6ec5edf6c62f2630e" 256 | dependencies: 257 | babel-runtime "^6.22.0" 258 | 259 | babel-plugin-check-es2015-constants@^6.22.0: 260 | version "6.22.0" 261 | resolved "https://registry.yarnpkg.com/babel-plugin-check-es2015-constants/-/babel-plugin-check-es2015-constants-6.22.0.tgz#35157b101426fd2ffd3da3f75c7d1e91835bbf8a" 262 | dependencies: 263 | babel-runtime "^6.22.0" 264 | 265 | babel-plugin-syntax-flow@^6.18.0: 266 | version "6.18.0" 267 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-flow/-/babel-plugin-syntax-flow-6.18.0.tgz#4c3ab20a2af26aa20cd25995c398c4eb70310c8d" 268 | 269 | babel-plugin-syntax-jsx@^6.3.13, babel-plugin-syntax-jsx@^6.8.0: 270 | version "6.18.0" 271 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-jsx/-/babel-plugin-syntax-jsx-6.18.0.tgz#0af32a9a6e13ca7a3fd5069e62d7b0f58d0d8946" 272 | 273 | babel-plugin-transform-es2015-arrow-functions@^6.22.0: 274 | version "6.22.0" 275 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-arrow-functions/-/babel-plugin-transform-es2015-arrow-functions-6.22.0.tgz#452692cb711d5f79dc7f85e440ce41b9f244d221" 276 | dependencies: 277 | babel-runtime "^6.22.0" 278 | 279 | babel-plugin-transform-es2015-block-scoped-functions@^6.22.0: 280 | version "6.22.0" 281 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-block-scoped-functions/-/babel-plugin-transform-es2015-block-scoped-functions-6.22.0.tgz#bbc51b49f964d70cb8d8e0b94e820246ce3a6141" 282 | dependencies: 283 | babel-runtime "^6.22.0" 284 | 285 | babel-plugin-transform-es2015-block-scoping@^6.22.0: 286 | version "6.23.0" 287 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-block-scoping/-/babel-plugin-transform-es2015-block-scoping-6.23.0.tgz#e48895cf0b375be148cd7c8879b422707a053b51" 288 | dependencies: 289 | babel-runtime "^6.22.0" 290 | babel-template "^6.23.0" 291 | babel-traverse "^6.23.0" 292 | babel-types "^6.23.0" 293 | lodash "^4.2.0" 294 | 295 | babel-plugin-transform-es2015-classes@^6.22.0: 296 | version "6.23.0" 297 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-classes/-/babel-plugin-transform-es2015-classes-6.23.0.tgz#49b53f326202a2fd1b3bbaa5e2edd8a4f78643c1" 298 | dependencies: 299 | babel-helper-define-map "^6.23.0" 300 | babel-helper-function-name "^6.23.0" 301 | babel-helper-optimise-call-expression "^6.23.0" 302 | babel-helper-replace-supers "^6.23.0" 303 | babel-messages "^6.23.0" 304 | babel-runtime "^6.22.0" 305 | babel-template "^6.23.0" 306 | babel-traverse "^6.23.0" 307 | babel-types "^6.23.0" 308 | 309 | babel-plugin-transform-es2015-computed-properties@^6.22.0: 310 | version "6.22.0" 311 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-computed-properties/-/babel-plugin-transform-es2015-computed-properties-6.22.0.tgz#7c383e9629bba4820c11b0425bdd6290f7f057e7" 312 | dependencies: 313 | babel-runtime "^6.22.0" 314 | babel-template "^6.22.0" 315 | 316 | babel-plugin-transform-es2015-destructuring@^6.22.0: 317 | version "6.23.0" 318 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-destructuring/-/babel-plugin-transform-es2015-destructuring-6.23.0.tgz#997bb1f1ab967f682d2b0876fe358d60e765c56d" 319 | dependencies: 320 | babel-runtime "^6.22.0" 321 | 322 | babel-plugin-transform-es2015-duplicate-keys@^6.22.0: 323 | version "6.22.0" 324 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-duplicate-keys/-/babel-plugin-transform-es2015-duplicate-keys-6.22.0.tgz#672397031c21610d72dd2bbb0ba9fb6277e1c36b" 325 | dependencies: 326 | babel-runtime "^6.22.0" 327 | babel-types "^6.22.0" 328 | 329 | babel-plugin-transform-es2015-for-of@^6.22.0: 330 | version "6.23.0" 331 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-for-of/-/babel-plugin-transform-es2015-for-of-6.23.0.tgz#f47c95b2b613df1d3ecc2fdb7573623c75248691" 332 | dependencies: 333 | babel-runtime "^6.22.0" 334 | 335 | babel-plugin-transform-es2015-function-name@^6.22.0: 336 | version "6.22.0" 337 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-function-name/-/babel-plugin-transform-es2015-function-name-6.22.0.tgz#f5fcc8b09093f9a23c76ac3d9e392c3ec4b77104" 338 | dependencies: 339 | babel-helper-function-name "^6.22.0" 340 | babel-runtime "^6.22.0" 341 | babel-types "^6.22.0" 342 | 343 | babel-plugin-transform-es2015-literals@^6.22.0: 344 | version "6.22.0" 345 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-literals/-/babel-plugin-transform-es2015-literals-6.22.0.tgz#4f54a02d6cd66cf915280019a31d31925377ca2e" 346 | dependencies: 347 | babel-runtime "^6.22.0" 348 | 349 | babel-plugin-transform-es2015-modules-amd@^6.22.0: 350 | version "6.22.0" 351 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-amd/-/babel-plugin-transform-es2015-modules-amd-6.22.0.tgz#bf69cd34889a41c33d90dfb740e0091ccff52f21" 352 | dependencies: 353 | babel-plugin-transform-es2015-modules-commonjs "^6.22.0" 354 | babel-runtime "^6.22.0" 355 | babel-template "^6.22.0" 356 | 357 | babel-plugin-transform-es2015-modules-commonjs@^6.22.0: 358 | version "6.23.0" 359 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-commonjs/-/babel-plugin-transform-es2015-modules-commonjs-6.23.0.tgz#cba7aa6379fb7ec99250e6d46de2973aaffa7b92" 360 | dependencies: 361 | babel-plugin-transform-strict-mode "^6.22.0" 362 | babel-runtime "^6.22.0" 363 | babel-template "^6.23.0" 364 | babel-types "^6.23.0" 365 | 366 | babel-plugin-transform-es2015-modules-systemjs@^6.22.0: 367 | version "6.23.0" 368 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-systemjs/-/babel-plugin-transform-es2015-modules-systemjs-6.23.0.tgz#ae3469227ffac39b0310d90fec73bfdc4f6317b0" 369 | dependencies: 370 | babel-helper-hoist-variables "^6.22.0" 371 | babel-runtime "^6.22.0" 372 | babel-template "^6.23.0" 373 | 374 | babel-plugin-transform-es2015-modules-umd@^6.22.0: 375 | version "6.23.0" 376 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-umd/-/babel-plugin-transform-es2015-modules-umd-6.23.0.tgz#8d284ae2e19ed8fe21d2b1b26d6e7e0fcd94f0f1" 377 | dependencies: 378 | babel-plugin-transform-es2015-modules-amd "^6.22.0" 379 | babel-runtime "^6.22.0" 380 | babel-template "^6.23.0" 381 | 382 | babel-plugin-transform-es2015-object-super@^6.22.0: 383 | version "6.22.0" 384 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-object-super/-/babel-plugin-transform-es2015-object-super-6.22.0.tgz#daa60e114a042ea769dd53fe528fc82311eb98fc" 385 | dependencies: 386 | babel-helper-replace-supers "^6.22.0" 387 | babel-runtime "^6.22.0" 388 | 389 | babel-plugin-transform-es2015-parameters@^6.22.0: 390 | version "6.23.0" 391 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-parameters/-/babel-plugin-transform-es2015-parameters-6.23.0.tgz#3a2aabb70c8af945d5ce386f1a4250625a83ae3b" 392 | dependencies: 393 | babel-helper-call-delegate "^6.22.0" 394 | babel-helper-get-function-arity "^6.22.0" 395 | babel-runtime "^6.22.0" 396 | babel-template "^6.23.0" 397 | babel-traverse "^6.23.0" 398 | babel-types "^6.23.0" 399 | 400 | babel-plugin-transform-es2015-shorthand-properties@^6.22.0: 401 | version "6.22.0" 402 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-shorthand-properties/-/babel-plugin-transform-es2015-shorthand-properties-6.22.0.tgz#8ba776e0affaa60bff21e921403b8a652a2ff723" 403 | dependencies: 404 | babel-runtime "^6.22.0" 405 | babel-types "^6.22.0" 406 | 407 | babel-plugin-transform-es2015-spread@^6.22.0: 408 | version "6.22.0" 409 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-spread/-/babel-plugin-transform-es2015-spread-6.22.0.tgz#d6d68a99f89aedc4536c81a542e8dd9f1746f8d1" 410 | dependencies: 411 | babel-runtime "^6.22.0" 412 | 413 | babel-plugin-transform-es2015-sticky-regex@^6.22.0: 414 | version "6.22.0" 415 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-sticky-regex/-/babel-plugin-transform-es2015-sticky-regex-6.22.0.tgz#ab316829e866ee3f4b9eb96939757d19a5bc4593" 416 | dependencies: 417 | babel-helper-regex "^6.22.0" 418 | babel-runtime "^6.22.0" 419 | babel-types "^6.22.0" 420 | 421 | babel-plugin-transform-es2015-template-literals@^6.22.0: 422 | version "6.22.0" 423 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-template-literals/-/babel-plugin-transform-es2015-template-literals-6.22.0.tgz#a84b3450f7e9f8f1f6839d6d687da84bb1236d8d" 424 | dependencies: 425 | babel-runtime "^6.22.0" 426 | 427 | babel-plugin-transform-es2015-typeof-symbol@^6.22.0: 428 | version "6.23.0" 429 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-typeof-symbol/-/babel-plugin-transform-es2015-typeof-symbol-6.23.0.tgz#dec09f1cddff94b52ac73d505c84df59dcceb372" 430 | dependencies: 431 | babel-runtime "^6.22.0" 432 | 433 | babel-plugin-transform-es2015-unicode-regex@^6.22.0: 434 | version "6.22.0" 435 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-unicode-regex/-/babel-plugin-transform-es2015-unicode-regex-6.22.0.tgz#8d9cc27e7ee1decfe65454fb986452a04a613d20" 436 | dependencies: 437 | babel-helper-regex "^6.22.0" 438 | babel-runtime "^6.22.0" 439 | regexpu-core "^2.0.0" 440 | 441 | babel-plugin-transform-flow-strip-types@^6.22.0: 442 | version "6.22.0" 443 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-flow-strip-types/-/babel-plugin-transform-flow-strip-types-6.22.0.tgz#84cb672935d43714fdc32bce84568d87441cf7cf" 444 | dependencies: 445 | babel-plugin-syntax-flow "^6.18.0" 446 | babel-runtime "^6.22.0" 447 | 448 | babel-plugin-transform-react-display-name@^6.23.0: 449 | version "6.23.0" 450 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-react-display-name/-/babel-plugin-transform-react-display-name-6.23.0.tgz#4398910c358441dc4cef18787264d0412ed36b37" 451 | dependencies: 452 | babel-runtime "^6.22.0" 453 | 454 | babel-plugin-transform-react-jsx-self@^6.22.0: 455 | version "6.22.0" 456 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-react-jsx-self/-/babel-plugin-transform-react-jsx-self-6.22.0.tgz#df6d80a9da2612a121e6ddd7558bcbecf06e636e" 457 | dependencies: 458 | babel-plugin-syntax-jsx "^6.8.0" 459 | babel-runtime "^6.22.0" 460 | 461 | babel-plugin-transform-react-jsx-source@^6.22.0: 462 | version "6.22.0" 463 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-react-jsx-source/-/babel-plugin-transform-react-jsx-source-6.22.0.tgz#66ac12153f5cd2d17b3c19268f4bf0197f44ecd6" 464 | dependencies: 465 | babel-plugin-syntax-jsx "^6.8.0" 466 | babel-runtime "^6.22.0" 467 | 468 | babel-plugin-transform-react-jsx@^6.23.0: 469 | version "6.23.0" 470 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-react-jsx/-/babel-plugin-transform-react-jsx-6.23.0.tgz#23e892f7f2e759678eb5e4446a8f8e94e81b3470" 471 | dependencies: 472 | babel-helper-builder-react-jsx "^6.23.0" 473 | babel-plugin-syntax-jsx "^6.8.0" 474 | babel-runtime "^6.22.0" 475 | 476 | babel-plugin-transform-regenerator@^6.22.0: 477 | version "6.22.0" 478 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-regenerator/-/babel-plugin-transform-regenerator-6.22.0.tgz#65740593a319c44522157538d690b84094617ea6" 479 | dependencies: 480 | regenerator-transform "0.9.8" 481 | 482 | babel-plugin-transform-strict-mode@^6.22.0: 483 | version "6.22.0" 484 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-strict-mode/-/babel-plugin-transform-strict-mode-6.22.0.tgz#e008df01340fdc87e959da65991b7e05970c8c7c" 485 | dependencies: 486 | babel-runtime "^6.22.0" 487 | babel-types "^6.22.0" 488 | 489 | babel-preset-es2015@^6.14.0: 490 | version "6.22.0" 491 | resolved "https://registry.yarnpkg.com/babel-preset-es2015/-/babel-preset-es2015-6.22.0.tgz#af5a98ecb35eb8af764ad8a5a05eb36dc4386835" 492 | dependencies: 493 | babel-plugin-check-es2015-constants "^6.22.0" 494 | babel-plugin-transform-es2015-arrow-functions "^6.22.0" 495 | babel-plugin-transform-es2015-block-scoped-functions "^6.22.0" 496 | babel-plugin-transform-es2015-block-scoping "^6.22.0" 497 | babel-plugin-transform-es2015-classes "^6.22.0" 498 | babel-plugin-transform-es2015-computed-properties "^6.22.0" 499 | babel-plugin-transform-es2015-destructuring "^6.22.0" 500 | babel-plugin-transform-es2015-duplicate-keys "^6.22.0" 501 | babel-plugin-transform-es2015-for-of "^6.22.0" 502 | babel-plugin-transform-es2015-function-name "^6.22.0" 503 | babel-plugin-transform-es2015-literals "^6.22.0" 504 | babel-plugin-transform-es2015-modules-amd "^6.22.0" 505 | babel-plugin-transform-es2015-modules-commonjs "^6.22.0" 506 | babel-plugin-transform-es2015-modules-systemjs "^6.22.0" 507 | babel-plugin-transform-es2015-modules-umd "^6.22.0" 508 | babel-plugin-transform-es2015-object-super "^6.22.0" 509 | babel-plugin-transform-es2015-parameters "^6.22.0" 510 | babel-plugin-transform-es2015-shorthand-properties "^6.22.0" 511 | babel-plugin-transform-es2015-spread "^6.22.0" 512 | babel-plugin-transform-es2015-sticky-regex "^6.22.0" 513 | babel-plugin-transform-es2015-template-literals "^6.22.0" 514 | babel-plugin-transform-es2015-typeof-symbol "^6.22.0" 515 | babel-plugin-transform-es2015-unicode-regex "^6.22.0" 516 | babel-plugin-transform-regenerator "^6.22.0" 517 | 518 | babel-preset-flow@^6.23.0: 519 | version "6.23.0" 520 | resolved "https://registry.yarnpkg.com/babel-preset-flow/-/babel-preset-flow-6.23.0.tgz#e71218887085ae9a24b5be4169affb599816c49d" 521 | dependencies: 522 | babel-plugin-transform-flow-strip-types "^6.22.0" 523 | 524 | babel-preset-react@^6.11.1: 525 | version "6.23.0" 526 | resolved "https://registry.yarnpkg.com/babel-preset-react/-/babel-preset-react-6.23.0.tgz#eb7cee4de98a3f94502c28565332da9819455195" 527 | dependencies: 528 | babel-plugin-syntax-jsx "^6.3.13" 529 | babel-plugin-transform-react-display-name "^6.23.0" 530 | babel-plugin-transform-react-jsx "^6.23.0" 531 | babel-plugin-transform-react-jsx-self "^6.22.0" 532 | babel-plugin-transform-react-jsx-source "^6.22.0" 533 | babel-preset-flow "^6.23.0" 534 | 535 | babel-register@^6.23.0: 536 | version "6.23.0" 537 | resolved "https://registry.yarnpkg.com/babel-register/-/babel-register-6.23.0.tgz#c9aa3d4cca94b51da34826c4a0f9e08145d74ff3" 538 | dependencies: 539 | babel-core "^6.23.0" 540 | babel-runtime "^6.22.0" 541 | core-js "^2.4.0" 542 | home-or-tmp "^2.0.0" 543 | lodash "^4.2.0" 544 | mkdirp "^0.5.1" 545 | source-map-support "^0.4.2" 546 | 547 | babel-runtime@^6.18.0, babel-runtime@^6.22.0: 548 | version "6.23.0" 549 | resolved "https://registry.yarnpkg.com/babel-runtime/-/babel-runtime-6.23.0.tgz#0a9489f144de70efb3ce4300accdb329e2fc543b" 550 | dependencies: 551 | core-js "^2.4.0" 552 | regenerator-runtime "^0.10.0" 553 | 554 | babel-template@^6.22.0, babel-template@^6.23.0: 555 | version "6.23.0" 556 | resolved "https://registry.yarnpkg.com/babel-template/-/babel-template-6.23.0.tgz#04d4f270adbb3aa704a8143ae26faa529238e638" 557 | dependencies: 558 | babel-runtime "^6.22.0" 559 | babel-traverse "^6.23.0" 560 | babel-types "^6.23.0" 561 | babylon "^6.11.0" 562 | lodash "^4.2.0" 563 | 564 | babel-traverse@^6.22.0, babel-traverse@^6.23.0, babel-traverse@^6.23.1: 565 | version "6.23.1" 566 | resolved "https://registry.yarnpkg.com/babel-traverse/-/babel-traverse-6.23.1.tgz#d3cb59010ecd06a97d81310065f966b699e14f48" 567 | dependencies: 568 | babel-code-frame "^6.22.0" 569 | babel-messages "^6.23.0" 570 | babel-runtime "^6.22.0" 571 | babel-types "^6.23.0" 572 | babylon "^6.15.0" 573 | debug "^2.2.0" 574 | globals "^9.0.0" 575 | invariant "^2.2.0" 576 | lodash "^4.2.0" 577 | 578 | babel-types@^6.19.0, babel-types@^6.22.0, babel-types@^6.23.0: 579 | version "6.23.0" 580 | resolved "https://registry.yarnpkg.com/babel-types/-/babel-types-6.23.0.tgz#bb17179d7538bad38cd0c9e115d340f77e7e9acf" 581 | dependencies: 582 | babel-runtime "^6.22.0" 583 | esutils "^2.0.2" 584 | lodash "^4.2.0" 585 | to-fast-properties "^1.0.1" 586 | 587 | babelify@^7.3.0: 588 | version "7.3.0" 589 | resolved "https://registry.yarnpkg.com/babelify/-/babelify-7.3.0.tgz#aa56aede7067fd7bd549666ee16dc285087e88e5" 590 | dependencies: 591 | babel-core "^6.0.14" 592 | object-assign "^4.0.0" 593 | 594 | babylon@^6.11.0, babylon@^6.15.0: 595 | version "6.15.0" 596 | resolved "https://registry.yarnpkg.com/babylon/-/babylon-6.15.0.tgz#ba65cfa1a80e1759b0e89fb562e27dccae70348e" 597 | 598 | balanced-match@^0.4.1: 599 | version "0.4.2" 600 | resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-0.4.2.tgz#cb3f3e3c732dc0f01ee70b403f302e61d7709838" 601 | 602 | base64-js@^1.0.2: 603 | version "1.2.0" 604 | resolved "https://registry.yarnpkg.com/base64-js/-/base64-js-1.2.0.tgz#a39992d723584811982be5e290bb6a53d86700f1" 605 | 606 | bn.js@^4.0.0, bn.js@^4.1.0, bn.js@^4.1.1, bn.js@^4.4.0: 607 | version "4.11.6" 608 | resolved "https://registry.yarnpkg.com/bn.js/-/bn.js-4.11.6.tgz#53344adb14617a13f6e8dd2ce28905d1c0ba3215" 609 | 610 | brace-expansion@^1.0.0: 611 | version "1.1.6" 612 | resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.6.tgz#7197d7eaa9b87e648390ea61fc66c84427420df9" 613 | dependencies: 614 | balanced-match "^0.4.1" 615 | concat-map "0.0.1" 616 | 617 | brorand@^1.0.1: 618 | version "1.0.7" 619 | resolved "https://registry.yarnpkg.com/brorand/-/brorand-1.0.7.tgz#6677fa5e4901bdbf9c9ec2a748e28dca407a9bfc" 620 | 621 | browser-pack@^6.0.1: 622 | version "6.0.2" 623 | resolved "https://registry.yarnpkg.com/browser-pack/-/browser-pack-6.0.2.tgz#f86cd6cef4f5300c8e63e07a4d512f65fbff4531" 624 | dependencies: 625 | JSONStream "^1.0.3" 626 | combine-source-map "~0.7.1" 627 | defined "^1.0.0" 628 | through2 "^2.0.0" 629 | umd "^3.0.0" 630 | 631 | browser-resolve@^1.11.0, browser-resolve@^1.7.0: 632 | version "1.11.2" 633 | resolved "https://registry.yarnpkg.com/browser-resolve/-/browser-resolve-1.11.2.tgz#8ff09b0a2c421718a1051c260b32e48f442938ce" 634 | dependencies: 635 | resolve "1.1.7" 636 | 637 | browserify-aes@^1.0.0, browserify-aes@^1.0.4: 638 | version "1.0.6" 639 | resolved "https://registry.yarnpkg.com/browserify-aes/-/browserify-aes-1.0.6.tgz#5e7725dbdef1fd5930d4ebab48567ce451c48a0a" 640 | dependencies: 641 | buffer-xor "^1.0.2" 642 | cipher-base "^1.0.0" 643 | create-hash "^1.1.0" 644 | evp_bytestokey "^1.0.0" 645 | inherits "^2.0.1" 646 | 647 | browserify-cipher@^1.0.0: 648 | version "1.0.0" 649 | resolved "https://registry.yarnpkg.com/browserify-cipher/-/browserify-cipher-1.0.0.tgz#9988244874bf5ed4e28da95666dcd66ac8fc363a" 650 | dependencies: 651 | browserify-aes "^1.0.4" 652 | browserify-des "^1.0.0" 653 | evp_bytestokey "^1.0.0" 654 | 655 | browserify-des@^1.0.0: 656 | version "1.0.0" 657 | resolved "https://registry.yarnpkg.com/browserify-des/-/browserify-des-1.0.0.tgz#daa277717470922ed2fe18594118a175439721dd" 658 | dependencies: 659 | cipher-base "^1.0.1" 660 | des.js "^1.0.0" 661 | inherits "^2.0.1" 662 | 663 | browserify-rsa@^4.0.0: 664 | version "4.0.1" 665 | resolved "https://registry.yarnpkg.com/browserify-rsa/-/browserify-rsa-4.0.1.tgz#21e0abfaf6f2029cf2fafb133567a701d4135524" 666 | dependencies: 667 | bn.js "^4.1.0" 668 | randombytes "^2.0.1" 669 | 670 | browserify-sign@^4.0.0: 671 | version "4.0.0" 672 | resolved "https://registry.yarnpkg.com/browserify-sign/-/browserify-sign-4.0.0.tgz#10773910c3c206d5420a46aad8694f820b85968f" 673 | dependencies: 674 | bn.js "^4.1.1" 675 | browserify-rsa "^4.0.0" 676 | create-hash "^1.1.0" 677 | create-hmac "^1.1.2" 678 | elliptic "^6.0.0" 679 | inherits "^2.0.1" 680 | parse-asn1 "^5.0.0" 681 | 682 | browserify-zlib@~0.1.2: 683 | version "0.1.4" 684 | resolved "https://registry.yarnpkg.com/browserify-zlib/-/browserify-zlib-0.1.4.tgz#bb35f8a519f600e0fa6b8485241c979d0141fb2d" 685 | dependencies: 686 | pako "~0.2.0" 687 | 688 | browserify@^13.1.0: 689 | version "13.3.0" 690 | resolved "https://registry.yarnpkg.com/browserify/-/browserify-13.3.0.tgz#b5a9c9020243f0c70e4675bec8223bc627e415ce" 691 | dependencies: 692 | JSONStream "^1.0.3" 693 | assert "^1.4.0" 694 | browser-pack "^6.0.1" 695 | browser-resolve "^1.11.0" 696 | browserify-zlib "~0.1.2" 697 | buffer "^4.1.0" 698 | cached-path-relative "^1.0.0" 699 | concat-stream "~1.5.1" 700 | console-browserify "^1.1.0" 701 | constants-browserify "~1.0.0" 702 | crypto-browserify "^3.0.0" 703 | defined "^1.0.0" 704 | deps-sort "^2.0.0" 705 | domain-browser "~1.1.0" 706 | duplexer2 "~0.1.2" 707 | events "~1.1.0" 708 | glob "^7.1.0" 709 | has "^1.0.0" 710 | htmlescape "^1.1.0" 711 | https-browserify "~0.0.0" 712 | inherits "~2.0.1" 713 | insert-module-globals "^7.0.0" 714 | labeled-stream-splicer "^2.0.0" 715 | module-deps "^4.0.8" 716 | os-browserify "~0.1.1" 717 | parents "^1.0.1" 718 | path-browserify "~0.0.0" 719 | process "~0.11.0" 720 | punycode "^1.3.2" 721 | querystring-es3 "~0.2.0" 722 | read-only-stream "^2.0.0" 723 | readable-stream "^2.0.2" 724 | resolve "^1.1.4" 725 | shasum "^1.0.0" 726 | shell-quote "^1.6.1" 727 | stream-browserify "^2.0.0" 728 | stream-http "^2.0.0" 729 | string_decoder "~0.10.0" 730 | subarg "^1.0.0" 731 | syntax-error "^1.1.1" 732 | through2 "^2.0.0" 733 | timers-browserify "^1.0.1" 734 | tty-browserify "~0.0.0" 735 | url "~0.11.0" 736 | util "~0.10.1" 737 | vm-browserify "~0.0.1" 738 | xtend "^4.0.0" 739 | 740 | buffer-shims@^1.0.0: 741 | version "1.0.0" 742 | resolved "https://registry.yarnpkg.com/buffer-shims/-/buffer-shims-1.0.0.tgz#9978ce317388c649ad8793028c3477ef044a8b51" 743 | 744 | buffer-xor@^1.0.2: 745 | version "1.0.3" 746 | resolved "https://registry.yarnpkg.com/buffer-xor/-/buffer-xor-1.0.3.tgz#26e61ed1422fb70dd42e6e36729ed51d855fe8d9" 747 | 748 | buffer@^4.1.0: 749 | version "4.9.1" 750 | resolved "https://registry.yarnpkg.com/buffer/-/buffer-4.9.1.tgz#6d1bb601b07a4efced97094132093027c95bc298" 751 | dependencies: 752 | base64-js "^1.0.2" 753 | ieee754 "^1.1.4" 754 | isarray "^1.0.0" 755 | 756 | builtin-status-codes@^3.0.0: 757 | version "3.0.0" 758 | resolved "https://registry.yarnpkg.com/builtin-status-codes/-/builtin-status-codes-3.0.0.tgz#85982878e21b98e1c66425e03d0174788f569ee8" 759 | 760 | cached-path-relative@^1.0.0: 761 | version "1.0.1" 762 | resolved "https://registry.yarnpkg.com/cached-path-relative/-/cached-path-relative-1.0.1.tgz#d09c4b52800aa4c078e2dd81a869aac90d2e54e7" 763 | 764 | caller-path@^0.1.0: 765 | version "0.1.0" 766 | resolved "https://registry.yarnpkg.com/caller-path/-/caller-path-0.1.0.tgz#94085ef63581ecd3daa92444a8fe94e82577751f" 767 | dependencies: 768 | callsites "^0.2.0" 769 | 770 | callsites@^0.2.0: 771 | version "0.2.0" 772 | resolved "https://registry.yarnpkg.com/callsites/-/callsites-0.2.0.tgz#afab96262910a7f33c19a5775825c69f34e350ca" 773 | 774 | chalk@^1.0.0, chalk@^1.1.0, chalk@^1.1.1, chalk@^1.1.3: 775 | version "1.1.3" 776 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-1.1.3.tgz#a8115c55e4a702fe4d150abd3872822a7e09fc98" 777 | dependencies: 778 | ansi-styles "^2.2.1" 779 | escape-string-regexp "^1.0.2" 780 | has-ansi "^2.0.0" 781 | strip-ansi "^3.0.0" 782 | supports-color "^2.0.0" 783 | 784 | cipher-base@^1.0.0, cipher-base@^1.0.1: 785 | version "1.0.3" 786 | resolved "https://registry.yarnpkg.com/cipher-base/-/cipher-base-1.0.3.tgz#eeabf194419ce900da3018c207d212f2a6df0a07" 787 | dependencies: 788 | inherits "^2.0.1" 789 | 790 | circular-json@^0.3.1: 791 | version "0.3.1" 792 | resolved "https://registry.yarnpkg.com/circular-json/-/circular-json-0.3.1.tgz#be8b36aefccde8b3ca7aa2d6afc07a37242c0d2d" 793 | 794 | cli-cursor@^1.0.1: 795 | version "1.0.2" 796 | resolved "https://registry.yarnpkg.com/cli-cursor/-/cli-cursor-1.0.2.tgz#64da3f7d56a54412e59794bd62dc35295e8f2987" 797 | dependencies: 798 | restore-cursor "^1.0.1" 799 | 800 | cli-width@^2.0.0: 801 | version "2.1.0" 802 | resolved "https://registry.yarnpkg.com/cli-width/-/cli-width-2.1.0.tgz#b234ca209b29ef66fc518d9b98d5847b00edf00a" 803 | 804 | co@^4.6.0: 805 | version "4.6.0" 806 | resolved "https://registry.yarnpkg.com/co/-/co-4.6.0.tgz#6ea6bdf3d853ae54ccb8e47bfa0bf3f9031fb184" 807 | 808 | code-point-at@^1.0.0: 809 | version "1.1.0" 810 | resolved "https://registry.yarnpkg.com/code-point-at/-/code-point-at-1.1.0.tgz#0d070b4d043a5bea33a2f1a40e2edb3d9a4ccf77" 811 | 812 | colors@1.0.x: 813 | version "1.0.3" 814 | resolved "https://registry.yarnpkg.com/colors/-/colors-1.0.3.tgz#0433f44d809680fdeb60ed260f1b0c262e82a40b" 815 | 816 | combine-source-map@~0.7.1: 817 | version "0.7.2" 818 | resolved "https://registry.yarnpkg.com/combine-source-map/-/combine-source-map-0.7.2.tgz#0870312856b307a87cc4ac486f3a9a62aeccc09e" 819 | dependencies: 820 | convert-source-map "~1.1.0" 821 | inline-source-map "~0.6.0" 822 | lodash.memoize "~3.0.3" 823 | source-map "~0.5.3" 824 | 825 | commander@^2.9.0: 826 | version "2.9.0" 827 | resolved "https://registry.yarnpkg.com/commander/-/commander-2.9.0.tgz#9c99094176e12240cb22d6c5146098400fe0f7d4" 828 | dependencies: 829 | graceful-readlink ">= 1.0.0" 830 | 831 | concat-map@0.0.1: 832 | version "0.0.1" 833 | resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b" 834 | 835 | concat-stream@^1.4.6, concat-stream@^1.4.7: 836 | version "1.6.0" 837 | resolved "https://registry.yarnpkg.com/concat-stream/-/concat-stream-1.6.0.tgz#0aac662fd52be78964d5532f694784e70110acf7" 838 | dependencies: 839 | inherits "^2.0.3" 840 | readable-stream "^2.2.2" 841 | typedarray "^0.0.6" 842 | 843 | concat-stream@~1.5.0, concat-stream@~1.5.1: 844 | version "1.5.2" 845 | resolved "https://registry.yarnpkg.com/concat-stream/-/concat-stream-1.5.2.tgz#708978624d856af41a5a741defdd261da752c266" 846 | dependencies: 847 | inherits "~2.0.1" 848 | readable-stream "~2.0.0" 849 | typedarray "~0.0.5" 850 | 851 | console-browserify@^1.1.0: 852 | version "1.1.0" 853 | resolved "https://registry.yarnpkg.com/console-browserify/-/console-browserify-1.1.0.tgz#f0241c45730a9fc6323b206dbf38edc741d0bb10" 854 | dependencies: 855 | date-now "^0.1.4" 856 | 857 | constants-browserify@~1.0.0: 858 | version "1.0.0" 859 | resolved "https://registry.yarnpkg.com/constants-browserify/-/constants-browserify-1.0.0.tgz#c20b96d8c617748aaf1c16021760cd27fcb8cb75" 860 | 861 | convert-source-map@^1.1.0: 862 | version "1.4.0" 863 | resolved "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-1.4.0.tgz#e3dad195bf61bfe13a7a3c73e9876ec14a0268f3" 864 | 865 | convert-source-map@~1.1.0: 866 | version "1.1.3" 867 | resolved "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-1.1.3.tgz#4829c877e9fe49b3161f3bf3673888e204699860" 868 | 869 | core-js@^1.0.0: 870 | version "1.2.7" 871 | resolved "https://registry.yarnpkg.com/core-js/-/core-js-1.2.7.tgz#652294c14651db28fa93bd2d5ff2983a4f08c636" 872 | 873 | core-js@^2.4.0: 874 | version "2.4.1" 875 | resolved "https://registry.yarnpkg.com/core-js/-/core-js-2.4.1.tgz#4de911e667b0eae9124e34254b53aea6fc618d3e" 876 | 877 | core-util-is@~1.0.0: 878 | version "1.0.2" 879 | resolved "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.2.tgz#b5fd54220aa2bc5ab57aab7140c940754503c1a7" 880 | 881 | create-ecdh@^4.0.0: 882 | version "4.0.0" 883 | resolved "https://registry.yarnpkg.com/create-ecdh/-/create-ecdh-4.0.0.tgz#888c723596cdf7612f6498233eebd7a35301737d" 884 | dependencies: 885 | bn.js "^4.1.0" 886 | elliptic "^6.0.0" 887 | 888 | create-hash@^1.1.0, create-hash@^1.1.1: 889 | version "1.1.2" 890 | resolved "https://registry.yarnpkg.com/create-hash/-/create-hash-1.1.2.tgz#51210062d7bb7479f6c65bb41a92208b1d61abad" 891 | dependencies: 892 | cipher-base "^1.0.1" 893 | inherits "^2.0.1" 894 | ripemd160 "^1.0.0" 895 | sha.js "^2.3.6" 896 | 897 | create-hmac@^1.1.0, create-hmac@^1.1.2: 898 | version "1.1.4" 899 | resolved "https://registry.yarnpkg.com/create-hmac/-/create-hmac-1.1.4.tgz#d3fb4ba253eb8b3f56e39ea2fbcb8af747bd3170" 900 | dependencies: 901 | create-hash "^1.1.0" 902 | inherits "^2.0.1" 903 | 904 | crypto-browserify@^3.0.0: 905 | version "3.11.0" 906 | resolved "https://registry.yarnpkg.com/crypto-browserify/-/crypto-browserify-3.11.0.tgz#3652a0906ab9b2a7e0c3ce66a408e957a2485522" 907 | dependencies: 908 | browserify-cipher "^1.0.0" 909 | browserify-sign "^4.0.0" 910 | create-ecdh "^4.0.0" 911 | create-hash "^1.1.0" 912 | create-hmac "^1.1.0" 913 | diffie-hellman "^5.0.0" 914 | inherits "^2.0.1" 915 | pbkdf2 "^3.0.3" 916 | public-encrypt "^4.0.0" 917 | randombytes "^2.0.0" 918 | 919 | cycle@1.0.x: 920 | version "1.0.3" 921 | resolved "https://registry.yarnpkg.com/cycle/-/cycle-1.0.3.tgz#21e80b2be8580f98b468f379430662b046c34ad2" 922 | 923 | d@^0.1.1, d@~0.1.1: 924 | version "0.1.1" 925 | resolved "https://registry.yarnpkg.com/d/-/d-0.1.1.tgz#da184c535d18d8ee7ba2aa229b914009fae11309" 926 | dependencies: 927 | es5-ext "~0.10.2" 928 | 929 | date-now@^0.1.4: 930 | version "0.1.4" 931 | resolved "https://registry.yarnpkg.com/date-now/-/date-now-0.1.4.tgz#eaf439fd4d4848ad74e5cc7dbef200672b9e345b" 932 | 933 | debug@^2.1.1, debug@^2.2.0: 934 | version "2.6.1" 935 | resolved "https://registry.yarnpkg.com/debug/-/debug-2.6.1.tgz#79855090ba2c4e3115cc7d8769491d58f0491351" 936 | dependencies: 937 | ms "0.7.2" 938 | 939 | deep-is@~0.1.3: 940 | version "0.1.3" 941 | resolved "https://registry.yarnpkg.com/deep-is/-/deep-is-0.1.3.tgz#b369d6fb5dbc13eecf524f91b070feedc357cf34" 942 | 943 | define-properties@^1.1.2: 944 | version "1.1.2" 945 | resolved "https://registry.yarnpkg.com/define-properties/-/define-properties-1.1.2.tgz#83a73f2fea569898fb737193c8f873caf6d45c94" 946 | dependencies: 947 | foreach "^2.0.5" 948 | object-keys "^1.0.8" 949 | 950 | defined@^1.0.0: 951 | version "1.0.0" 952 | resolved "https://registry.yarnpkg.com/defined/-/defined-1.0.0.tgz#c98d9bcef75674188e110969151199e39b1fa693" 953 | 954 | del@^2.0.2: 955 | version "2.2.2" 956 | resolved "https://registry.yarnpkg.com/del/-/del-2.2.2.tgz#c12c981d067846c84bcaf862cff930d907ffd1a8" 957 | dependencies: 958 | globby "^5.0.0" 959 | is-path-cwd "^1.0.0" 960 | is-path-in-cwd "^1.0.0" 961 | object-assign "^4.0.1" 962 | pify "^2.0.0" 963 | pinkie-promise "^2.0.0" 964 | rimraf "^2.2.8" 965 | 966 | deps-sort@^2.0.0: 967 | version "2.0.0" 968 | resolved "https://registry.yarnpkg.com/deps-sort/-/deps-sort-2.0.0.tgz#091724902e84658260eb910748cccd1af6e21fb5" 969 | dependencies: 970 | JSONStream "^1.0.3" 971 | shasum "^1.0.0" 972 | subarg "^1.0.0" 973 | through2 "^2.0.0" 974 | 975 | des.js@^1.0.0: 976 | version "1.0.0" 977 | resolved "https://registry.yarnpkg.com/des.js/-/des.js-1.0.0.tgz#c074d2e2aa6a8a9a07dbd61f9a15c2cd83ec8ecc" 978 | dependencies: 979 | inherits "^2.0.1" 980 | minimalistic-assert "^1.0.0" 981 | 982 | detect-indent@^4.0.0: 983 | version "4.0.0" 984 | resolved "https://registry.yarnpkg.com/detect-indent/-/detect-indent-4.0.0.tgz#f76d064352cdf43a1cb6ce619c4ee3a9475de208" 985 | dependencies: 986 | repeating "^2.0.0" 987 | 988 | detective@^4.0.0: 989 | version "4.3.2" 990 | resolved "https://registry.yarnpkg.com/detective/-/detective-4.3.2.tgz#77697e2e7947ac3fe7c8e26a6d6f115235afa91c" 991 | dependencies: 992 | acorn "^3.1.0" 993 | defined "^1.0.0" 994 | 995 | diffie-hellman@^5.0.0: 996 | version "5.0.2" 997 | resolved "https://registry.yarnpkg.com/diffie-hellman/-/diffie-hellman-5.0.2.tgz#b5835739270cfe26acf632099fded2a07f209e5e" 998 | dependencies: 999 | bn.js "^4.1.0" 1000 | miller-rabin "^4.0.0" 1001 | randombytes "^2.0.0" 1002 | 1003 | doctrine@^1.2.2: 1004 | version "1.5.0" 1005 | resolved "https://registry.yarnpkg.com/doctrine/-/doctrine-1.5.0.tgz#379dce730f6166f76cefa4e6707a159b02c5a6fa" 1006 | dependencies: 1007 | esutils "^2.0.2" 1008 | isarray "^1.0.0" 1009 | 1010 | domain-browser@~1.1.0: 1011 | version "1.1.7" 1012 | resolved "https://registry.yarnpkg.com/domain-browser/-/domain-browser-1.1.7.tgz#867aa4b093faa05f1de08c06f4d7b21fdf8698bc" 1013 | 1014 | duplexer2@^0.1.2, duplexer2@~0.1.0, duplexer2@~0.1.2: 1015 | version "0.1.4" 1016 | resolved "https://registry.yarnpkg.com/duplexer2/-/duplexer2-0.1.4.tgz#8b12dab878c0d69e3e7891051662a32fc6bddcc1" 1017 | dependencies: 1018 | readable-stream "^2.0.2" 1019 | 1020 | elliptic@^6.0.0: 1021 | version "6.3.3" 1022 | resolved "https://registry.yarnpkg.com/elliptic/-/elliptic-6.3.3.tgz#5482d9646d54bcb89fd7d994fc9e2e9568876e3f" 1023 | dependencies: 1024 | bn.js "^4.4.0" 1025 | brorand "^1.0.1" 1026 | hash.js "^1.0.0" 1027 | inherits "^2.0.1" 1028 | 1029 | encoding@^0.1.11: 1030 | version "0.1.12" 1031 | resolved "https://registry.yarnpkg.com/encoding/-/encoding-0.1.12.tgz#538b66f3ee62cd1ab51ec323829d1f9480c74beb" 1032 | dependencies: 1033 | iconv-lite "~0.4.13" 1034 | 1035 | es-abstract@^1.7.0: 1036 | version "1.7.0" 1037 | resolved "https://registry.yarnpkg.com/es-abstract/-/es-abstract-1.7.0.tgz#dfade774e01bfcd97f96180298c449c8623fb94c" 1038 | dependencies: 1039 | es-to-primitive "^1.1.1" 1040 | function-bind "^1.1.0" 1041 | is-callable "^1.1.3" 1042 | is-regex "^1.0.3" 1043 | 1044 | es-to-primitive@^1.1.1: 1045 | version "1.1.1" 1046 | resolved "https://registry.yarnpkg.com/es-to-primitive/-/es-to-primitive-1.1.1.tgz#45355248a88979034b6792e19bb81f2b7975dd0d" 1047 | dependencies: 1048 | is-callable "^1.1.1" 1049 | is-date-object "^1.0.1" 1050 | is-symbol "^1.0.1" 1051 | 1052 | es5-ext@^0.10.7, es5-ext@^0.10.8, es5-ext@~0.10.11, es5-ext@~0.10.2, es5-ext@~0.10.7: 1053 | version "0.10.12" 1054 | resolved "https://registry.yarnpkg.com/es5-ext/-/es5-ext-0.10.12.tgz#aa84641d4db76b62abba5e45fd805ecbab140047" 1055 | dependencies: 1056 | es6-iterator "2" 1057 | es6-symbol "~3.1" 1058 | 1059 | es6-iterator@2: 1060 | version "2.0.0" 1061 | resolved "https://registry.yarnpkg.com/es6-iterator/-/es6-iterator-2.0.0.tgz#bd968567d61635e33c0b80727613c9cb4b096bac" 1062 | dependencies: 1063 | d "^0.1.1" 1064 | es5-ext "^0.10.7" 1065 | es6-symbol "3" 1066 | 1067 | es6-map@^0.1.3: 1068 | version "0.1.4" 1069 | resolved "https://registry.yarnpkg.com/es6-map/-/es6-map-0.1.4.tgz#a34b147be224773a4d7da8072794cefa3632b897" 1070 | dependencies: 1071 | d "~0.1.1" 1072 | es5-ext "~0.10.11" 1073 | es6-iterator "2" 1074 | es6-set "~0.1.3" 1075 | es6-symbol "~3.1.0" 1076 | event-emitter "~0.3.4" 1077 | 1078 | es6-set@~0.1.3: 1079 | version "0.1.4" 1080 | resolved "https://registry.yarnpkg.com/es6-set/-/es6-set-0.1.4.tgz#9516b6761c2964b92ff479456233a247dc707ce8" 1081 | dependencies: 1082 | d "~0.1.1" 1083 | es5-ext "~0.10.11" 1084 | es6-iterator "2" 1085 | es6-symbol "3" 1086 | event-emitter "~0.3.4" 1087 | 1088 | es6-symbol@3, es6-symbol@~3.1, es6-symbol@~3.1.0: 1089 | version "3.1.0" 1090 | resolved "https://registry.yarnpkg.com/es6-symbol/-/es6-symbol-3.1.0.tgz#94481c655e7a7cad82eba832d97d5433496d7ffa" 1091 | dependencies: 1092 | d "~0.1.1" 1093 | es5-ext "~0.10.11" 1094 | 1095 | es6-weak-map@^2.0.1: 1096 | version "2.0.1" 1097 | resolved "https://registry.yarnpkg.com/es6-weak-map/-/es6-weak-map-2.0.1.tgz#0d2bbd8827eb5fb4ba8f97fbfea50d43db21ea81" 1098 | dependencies: 1099 | d "^0.1.1" 1100 | es5-ext "^0.10.8" 1101 | es6-iterator "2" 1102 | es6-symbol "3" 1103 | 1104 | escape-string-regexp@^1.0.2, escape-string-regexp@^1.0.5: 1105 | version "1.0.5" 1106 | resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4" 1107 | 1108 | escope@^3.6.0: 1109 | version "3.6.0" 1110 | resolved "https://registry.yarnpkg.com/escope/-/escope-3.6.0.tgz#e01975e812781a163a6dadfdd80398dc64c889c3" 1111 | dependencies: 1112 | es6-map "^0.1.3" 1113 | es6-weak-map "^2.0.1" 1114 | esrecurse "^4.1.0" 1115 | estraverse "^4.1.1" 1116 | 1117 | eslint-config-gitbook@1.4.0: 1118 | version "1.4.0" 1119 | resolved "https://registry.yarnpkg.com/eslint-config-gitbook/-/eslint-config-gitbook-1.4.0.tgz#a708e247cd05227835017f199bd70af4ba960c14" 1120 | dependencies: 1121 | eslint-plugin-react "^6.3.0" 1122 | 1123 | eslint-plugin-react@^6.3.0: 1124 | version "6.10.0" 1125 | resolved "https://registry.yarnpkg.com/eslint-plugin-react/-/eslint-plugin-react-6.10.0.tgz#9c48b48d101554b5355413e7c64238abde6ef1ef" 1126 | dependencies: 1127 | array.prototype.find "^2.0.1" 1128 | doctrine "^1.2.2" 1129 | has "^1.0.1" 1130 | jsx-ast-utils "^1.3.4" 1131 | object.assign "^4.0.4" 1132 | 1133 | eslint@3.7.1: 1134 | version "3.7.1" 1135 | resolved "https://registry.yarnpkg.com/eslint/-/eslint-3.7.1.tgz#7faa84599e0fea422f04bc32db49054051a3f11a" 1136 | dependencies: 1137 | chalk "^1.1.3" 1138 | concat-stream "^1.4.6" 1139 | debug "^2.1.1" 1140 | doctrine "^1.2.2" 1141 | escope "^3.6.0" 1142 | espree "^3.3.1" 1143 | estraverse "^4.2.0" 1144 | esutils "^2.0.2" 1145 | file-entry-cache "^2.0.0" 1146 | glob "^7.0.3" 1147 | globals "^9.2.0" 1148 | ignore "^3.1.5" 1149 | imurmurhash "^0.1.4" 1150 | inquirer "^0.12.0" 1151 | is-my-json-valid "^2.10.0" 1152 | is-resolvable "^1.0.0" 1153 | js-yaml "^3.5.1" 1154 | json-stable-stringify "^1.0.0" 1155 | levn "^0.3.0" 1156 | lodash "^4.0.0" 1157 | mkdirp "^0.5.0" 1158 | natural-compare "^1.4.0" 1159 | optionator "^0.8.1" 1160 | path-is-inside "^1.0.1" 1161 | pluralize "^1.2.1" 1162 | progress "^1.1.8" 1163 | require-uncached "^1.0.2" 1164 | shelljs "^0.6.0" 1165 | strip-bom "^3.0.0" 1166 | strip-json-comments "~1.0.1" 1167 | table "^3.7.8" 1168 | text-table "~0.2.0" 1169 | user-home "^2.0.0" 1170 | 1171 | espree@^3.3.1: 1172 | version "3.4.0" 1173 | resolved "https://registry.yarnpkg.com/espree/-/espree-3.4.0.tgz#41656fa5628e042878025ef467e78f125cb86e1d" 1174 | dependencies: 1175 | acorn "4.0.4" 1176 | acorn-jsx "^3.0.0" 1177 | 1178 | esprima@^3.1.1: 1179 | version "3.1.3" 1180 | resolved "https://registry.yarnpkg.com/esprima/-/esprima-3.1.3.tgz#fdca51cee6133895e3c88d535ce49dbff62a4633" 1181 | 1182 | esrecurse@^4.1.0: 1183 | version "4.1.0" 1184 | resolved "https://registry.yarnpkg.com/esrecurse/-/esrecurse-4.1.0.tgz#4713b6536adf7f2ac4f327d559e7756bff648220" 1185 | dependencies: 1186 | estraverse "~4.1.0" 1187 | object-assign "^4.0.1" 1188 | 1189 | estraverse@^4.1.1, estraverse@^4.2.0: 1190 | version "4.2.0" 1191 | resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-4.2.0.tgz#0dee3fed31fcd469618ce7342099fc1afa0bdb13" 1192 | 1193 | estraverse@~4.1.0: 1194 | version "4.1.1" 1195 | resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-4.1.1.tgz#f6caca728933a850ef90661d0e17982ba47111a2" 1196 | 1197 | esutils@^2.0.0, esutils@^2.0.2: 1198 | version "2.0.2" 1199 | resolved "https://registry.yarnpkg.com/esutils/-/esutils-2.0.2.tgz#0abf4f1caa5bcb1f7a9d8acc6dea4faaa04bac9b" 1200 | 1201 | event-emitter@~0.3.4: 1202 | version "0.3.4" 1203 | resolved "https://registry.yarnpkg.com/event-emitter/-/event-emitter-0.3.4.tgz#8d63ddfb4cfe1fae3b32ca265c4c720222080bb5" 1204 | dependencies: 1205 | d "~0.1.1" 1206 | es5-ext "~0.10.7" 1207 | 1208 | events@~1.1.0: 1209 | version "1.1.1" 1210 | resolved "https://registry.yarnpkg.com/events/-/events-1.1.1.tgz#9ebdb7635ad099c70dcc4c2a1f5004288e8bd924" 1211 | 1212 | evp_bytestokey@^1.0.0: 1213 | version "1.0.0" 1214 | resolved "https://registry.yarnpkg.com/evp_bytestokey/-/evp_bytestokey-1.0.0.tgz#497b66ad9fef65cd7c08a6180824ba1476b66e53" 1215 | dependencies: 1216 | create-hash "^1.1.1" 1217 | 1218 | exit-hook@^1.0.0: 1219 | version "1.1.1" 1220 | resolved "https://registry.yarnpkg.com/exit-hook/-/exit-hook-1.1.1.tgz#f05ca233b48c05d54fff07765df8507e95c02ff8" 1221 | 1222 | extend@^3.0.0: 1223 | version "3.0.0" 1224 | resolved "https://registry.yarnpkg.com/extend/-/extend-3.0.0.tgz#5a474353b9f3353ddd8176dfd37b91c83a46f1d4" 1225 | 1226 | external-editor@^1.1.0: 1227 | version "1.1.1" 1228 | resolved "https://registry.yarnpkg.com/external-editor/-/external-editor-1.1.1.tgz#12d7b0db850f7ff7e7081baf4005700060c4600b" 1229 | dependencies: 1230 | extend "^3.0.0" 1231 | spawn-sync "^1.0.15" 1232 | tmp "^0.0.29" 1233 | 1234 | eyes@0.1.x: 1235 | version "0.1.8" 1236 | resolved "https://registry.yarnpkg.com/eyes/-/eyes-0.1.8.tgz#62cf120234c683785d902348a800ef3e0cc20bc0" 1237 | 1238 | fast-levenshtein@~2.0.4: 1239 | version "2.0.6" 1240 | resolved "https://registry.yarnpkg.com/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz#3d8a5c66883a16a30ca8643e851f19baa7797917" 1241 | 1242 | fbjs@^0.8.4: 1243 | version "0.8.9" 1244 | resolved "https://registry.yarnpkg.com/fbjs/-/fbjs-0.8.9.tgz#180247fbd347dcc9004517b904f865400a0c8f14" 1245 | dependencies: 1246 | core-js "^1.0.0" 1247 | isomorphic-fetch "^2.1.1" 1248 | loose-envify "^1.0.0" 1249 | object-assign "^4.1.0" 1250 | promise "^7.1.1" 1251 | setimmediate "^1.0.5" 1252 | ua-parser-js "^0.7.9" 1253 | 1254 | figures@^1.3.5: 1255 | version "1.7.0" 1256 | resolved "https://registry.yarnpkg.com/figures/-/figures-1.7.0.tgz#cbe1e3affcf1cd44b80cadfed28dc793a9701d2e" 1257 | dependencies: 1258 | escape-string-regexp "^1.0.5" 1259 | object-assign "^4.1.0" 1260 | 1261 | file-entry-cache@^2.0.0: 1262 | version "2.0.0" 1263 | resolved "https://registry.yarnpkg.com/file-entry-cache/-/file-entry-cache-2.0.0.tgz#c392990c3e684783d838b8c84a45d8a048458361" 1264 | dependencies: 1265 | flat-cache "^1.2.1" 1266 | object-assign "^4.0.1" 1267 | 1268 | flat-cache@^1.2.1: 1269 | version "1.2.2" 1270 | resolved "https://registry.yarnpkg.com/flat-cache/-/flat-cache-1.2.2.tgz#fa86714e72c21db88601761ecf2f555d1abc6b96" 1271 | dependencies: 1272 | circular-json "^0.3.1" 1273 | del "^2.0.2" 1274 | graceful-fs "^4.1.2" 1275 | write "^0.2.1" 1276 | 1277 | foreach@^2.0.5: 1278 | version "2.0.5" 1279 | resolved "https://registry.yarnpkg.com/foreach/-/foreach-2.0.5.tgz#0bee005018aeb260d0a3af3ae658dd0136ec1b99" 1280 | 1281 | fs-extra@^0.30.0: 1282 | version "0.30.0" 1283 | resolved "https://registry.yarnpkg.com/fs-extra/-/fs-extra-0.30.0.tgz#f233ffcc08d4da7d432daa449776989db1df93f0" 1284 | dependencies: 1285 | graceful-fs "^4.1.2" 1286 | jsonfile "^2.1.0" 1287 | klaw "^1.0.0" 1288 | path-is-absolute "^1.0.0" 1289 | rimraf "^2.2.8" 1290 | 1291 | fs.realpath@^1.0.0: 1292 | version "1.0.0" 1293 | resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f" 1294 | 1295 | function-bind@^1.0.2, function-bind@^1.1.0: 1296 | version "1.1.0" 1297 | resolved "https://registry.yarnpkg.com/function-bind/-/function-bind-1.1.0.tgz#16176714c801798e4e8f2cf7f7529467bb4a5771" 1298 | 1299 | generate-function@^2.0.0: 1300 | version "2.0.0" 1301 | resolved "https://registry.yarnpkg.com/generate-function/-/generate-function-2.0.0.tgz#6858fe7c0969b7d4e9093337647ac79f60dfbe74" 1302 | 1303 | generate-object-property@^1.1.0: 1304 | version "1.2.0" 1305 | resolved "https://registry.yarnpkg.com/generate-object-property/-/generate-object-property-1.2.0.tgz#9c0e1c40308ce804f4783618b937fa88f99d50d0" 1306 | dependencies: 1307 | is-property "^1.0.0" 1308 | 1309 | gitbook-plugin@^4.0.0-alpha.0: 1310 | version "4.0.0-alpha.4" 1311 | resolved "https://registry.yarnpkg.com/gitbook-plugin/-/gitbook-plugin-4.0.0-alpha.4.tgz#cd92d311198ca3c289470b7aa25114330b58a04a" 1312 | dependencies: 1313 | babel-preset-es2015 "^6.14.0" 1314 | babel-preset-react "^6.11.1" 1315 | babelify "^7.3.0" 1316 | browserify "^13.1.0" 1317 | commander "^2.9.0" 1318 | fs-extra "^0.30.0" 1319 | inquirer "^1.1.3" 1320 | q "^1.4.1" 1321 | winston "^2.2.0" 1322 | 1323 | glob@^7.0.3, glob@^7.0.5, glob@^7.1.0: 1324 | version "7.1.1" 1325 | resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.1.tgz#805211df04faaf1c63a3600306cdf5ade50b2ec8" 1326 | dependencies: 1327 | fs.realpath "^1.0.0" 1328 | inflight "^1.0.4" 1329 | inherits "2" 1330 | minimatch "^3.0.2" 1331 | once "^1.3.0" 1332 | path-is-absolute "^1.0.0" 1333 | 1334 | globals@^9.0.0, globals@^9.2.0: 1335 | version "9.16.0" 1336 | resolved "https://registry.yarnpkg.com/globals/-/globals-9.16.0.tgz#63e903658171ec2d9f51b1d31de5e2b8dc01fb80" 1337 | 1338 | globby@^5.0.0: 1339 | version "5.0.0" 1340 | resolved "https://registry.yarnpkg.com/globby/-/globby-5.0.0.tgz#ebd84667ca0dbb330b99bcfc68eac2bc54370e0d" 1341 | dependencies: 1342 | array-union "^1.0.1" 1343 | arrify "^1.0.0" 1344 | glob "^7.0.3" 1345 | object-assign "^4.0.1" 1346 | pify "^2.0.0" 1347 | pinkie-promise "^2.0.0" 1348 | 1349 | graceful-fs@^4.1.2, graceful-fs@^4.1.6, graceful-fs@^4.1.9: 1350 | version "4.1.11" 1351 | resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.1.11.tgz#0e8bdfe4d1ddb8854d64e04ea7c00e2a026e5658" 1352 | 1353 | "graceful-readlink@>= 1.0.0": 1354 | version "1.0.1" 1355 | resolved "https://registry.yarnpkg.com/graceful-readlink/-/graceful-readlink-1.0.1.tgz#4cafad76bc62f02fa039b2f94e9a3dd3a391a725" 1356 | 1357 | has-ansi@^2.0.0: 1358 | version "2.0.0" 1359 | resolved "https://registry.yarnpkg.com/has-ansi/-/has-ansi-2.0.0.tgz#34f5049ce1ecdf2b0649af3ef24e45ed35416d91" 1360 | dependencies: 1361 | ansi-regex "^2.0.0" 1362 | 1363 | has@^1.0.0, has@^1.0.1: 1364 | version "1.0.1" 1365 | resolved "https://registry.yarnpkg.com/has/-/has-1.0.1.tgz#8461733f538b0837c9361e39a9ab9e9704dc2f28" 1366 | dependencies: 1367 | function-bind "^1.0.2" 1368 | 1369 | hash.js@^1.0.0: 1370 | version "1.0.3" 1371 | resolved "https://registry.yarnpkg.com/hash.js/-/hash.js-1.0.3.tgz#1332ff00156c0a0ffdd8236013d07b77a0451573" 1372 | dependencies: 1373 | inherits "^2.0.1" 1374 | 1375 | home-or-tmp@^2.0.0: 1376 | version "2.0.0" 1377 | resolved "https://registry.yarnpkg.com/home-or-tmp/-/home-or-tmp-2.0.0.tgz#e36c3f2d2cae7d746a857e38d18d5f32a7882db8" 1378 | dependencies: 1379 | os-homedir "^1.0.0" 1380 | os-tmpdir "^1.0.1" 1381 | 1382 | htmlescape@^1.1.0: 1383 | version "1.1.1" 1384 | resolved "https://registry.yarnpkg.com/htmlescape/-/htmlescape-1.1.1.tgz#3a03edc2214bca3b66424a3e7959349509cb0351" 1385 | 1386 | https-browserify@~0.0.0: 1387 | version "0.0.1" 1388 | resolved "https://registry.yarnpkg.com/https-browserify/-/https-browserify-0.0.1.tgz#3f91365cabe60b77ed0ebba24b454e3e09d95a82" 1389 | 1390 | iconv-lite@~0.4.13: 1391 | version "0.4.15" 1392 | resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.4.15.tgz#fe265a218ac6a57cfe854927e9d04c19825eddeb" 1393 | 1394 | ieee754@^1.1.4: 1395 | version "1.1.8" 1396 | resolved "https://registry.yarnpkg.com/ieee754/-/ieee754-1.1.8.tgz#be33d40ac10ef1926701f6f08a2d86fbfd1ad3e4" 1397 | 1398 | ignore@^3.1.5: 1399 | version "3.2.2" 1400 | resolved "https://registry.yarnpkg.com/ignore/-/ignore-3.2.2.tgz#1c51e1ef53bab6ddc15db4d9ac4ec139eceb3410" 1401 | 1402 | imurmurhash@^0.1.4: 1403 | version "0.1.4" 1404 | resolved "https://registry.yarnpkg.com/imurmurhash/-/imurmurhash-0.1.4.tgz#9218b9b2b928a238b13dc4fb6b6d576f231453ea" 1405 | 1406 | indexof@0.0.1: 1407 | version "0.0.1" 1408 | resolved "https://registry.yarnpkg.com/indexof/-/indexof-0.0.1.tgz#82dc336d232b9062179d05ab3293a66059fd435d" 1409 | 1410 | inflight@^1.0.4: 1411 | version "1.0.6" 1412 | resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9" 1413 | dependencies: 1414 | once "^1.3.0" 1415 | wrappy "1" 1416 | 1417 | inherits@2, inherits@^2.0.1, inherits@^2.0.3, inherits@~2.0.1: 1418 | version "2.0.3" 1419 | resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.3.tgz#633c2c83e3da42a502f52466022480f4208261de" 1420 | 1421 | inherits@2.0.1: 1422 | version "2.0.1" 1423 | resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.1.tgz#b17d08d326b4423e568eff719f91b0b1cbdf69f1" 1424 | 1425 | inline-source-map@~0.6.0: 1426 | version "0.6.2" 1427 | resolved "https://registry.yarnpkg.com/inline-source-map/-/inline-source-map-0.6.2.tgz#f9393471c18a79d1724f863fa38b586370ade2a5" 1428 | dependencies: 1429 | source-map "~0.5.3" 1430 | 1431 | inquirer@^0.12.0: 1432 | version "0.12.0" 1433 | resolved "https://registry.yarnpkg.com/inquirer/-/inquirer-0.12.0.tgz#1ef2bfd63504df0bc75785fff8c2c41df12f077e" 1434 | dependencies: 1435 | ansi-escapes "^1.1.0" 1436 | ansi-regex "^2.0.0" 1437 | chalk "^1.0.0" 1438 | cli-cursor "^1.0.1" 1439 | cli-width "^2.0.0" 1440 | figures "^1.3.5" 1441 | lodash "^4.3.0" 1442 | readline2 "^1.0.1" 1443 | run-async "^0.1.0" 1444 | rx-lite "^3.1.2" 1445 | string-width "^1.0.1" 1446 | strip-ansi "^3.0.0" 1447 | through "^2.3.6" 1448 | 1449 | inquirer@^1.1.3: 1450 | version "1.2.3" 1451 | resolved "https://registry.yarnpkg.com/inquirer/-/inquirer-1.2.3.tgz#4dec6f32f37ef7bb0b2ed3f1d1a5c3f545074918" 1452 | dependencies: 1453 | ansi-escapes "^1.1.0" 1454 | chalk "^1.0.0" 1455 | cli-cursor "^1.0.1" 1456 | cli-width "^2.0.0" 1457 | external-editor "^1.1.0" 1458 | figures "^1.3.5" 1459 | lodash "^4.3.0" 1460 | mute-stream "0.0.6" 1461 | pinkie-promise "^2.0.0" 1462 | run-async "^2.2.0" 1463 | rx "^4.1.0" 1464 | string-width "^1.0.1" 1465 | strip-ansi "^3.0.0" 1466 | through "^2.3.6" 1467 | 1468 | insert-module-globals@^7.0.0: 1469 | version "7.0.1" 1470 | resolved "https://registry.yarnpkg.com/insert-module-globals/-/insert-module-globals-7.0.1.tgz#c03bf4e01cb086d5b5e5ace8ad0afe7889d638c3" 1471 | dependencies: 1472 | JSONStream "^1.0.3" 1473 | combine-source-map "~0.7.1" 1474 | concat-stream "~1.5.1" 1475 | is-buffer "^1.1.0" 1476 | lexical-scope "^1.2.0" 1477 | process "~0.11.0" 1478 | through2 "^2.0.0" 1479 | xtend "^4.0.0" 1480 | 1481 | invariant@^2.2.0: 1482 | version "2.2.2" 1483 | resolved "https://registry.yarnpkg.com/invariant/-/invariant-2.2.2.tgz#9e1f56ac0acdb6bf303306f338be3b204ae60360" 1484 | dependencies: 1485 | loose-envify "^1.0.0" 1486 | 1487 | is-buffer@^1.1.0: 1488 | version "1.1.4" 1489 | resolved "https://registry.yarnpkg.com/is-buffer/-/is-buffer-1.1.4.tgz#cfc86ccd5dc5a52fa80489111c6920c457e2d98b" 1490 | 1491 | is-callable@^1.1.1, is-callable@^1.1.3: 1492 | version "1.1.3" 1493 | resolved "https://registry.yarnpkg.com/is-callable/-/is-callable-1.1.3.tgz#86eb75392805ddc33af71c92a0eedf74ee7604b2" 1494 | 1495 | is-date-object@^1.0.1: 1496 | version "1.0.1" 1497 | resolved "https://registry.yarnpkg.com/is-date-object/-/is-date-object-1.0.1.tgz#9aa20eb6aeebbff77fbd33e74ca01b33581d3a16" 1498 | 1499 | is-finite@^1.0.0: 1500 | version "1.0.2" 1501 | resolved "https://registry.yarnpkg.com/is-finite/-/is-finite-1.0.2.tgz#cc6677695602be550ef11e8b4aa6305342b6d0aa" 1502 | dependencies: 1503 | number-is-nan "^1.0.0" 1504 | 1505 | is-fullwidth-code-point@^1.0.0: 1506 | version "1.0.0" 1507 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz#ef9e31386f031a7f0d643af82fde50c457ef00cb" 1508 | dependencies: 1509 | number-is-nan "^1.0.0" 1510 | 1511 | is-fullwidth-code-point@^2.0.0: 1512 | version "2.0.0" 1513 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz#a3b30a5c4f199183167aaab93beefae3ddfb654f" 1514 | 1515 | is-my-json-valid@^2.10.0: 1516 | version "2.15.0" 1517 | resolved "https://registry.yarnpkg.com/is-my-json-valid/-/is-my-json-valid-2.15.0.tgz#936edda3ca3c211fd98f3b2d3e08da43f7b2915b" 1518 | dependencies: 1519 | generate-function "^2.0.0" 1520 | generate-object-property "^1.1.0" 1521 | jsonpointer "^4.0.0" 1522 | xtend "^4.0.0" 1523 | 1524 | is-path-cwd@^1.0.0: 1525 | version "1.0.0" 1526 | resolved "https://registry.yarnpkg.com/is-path-cwd/-/is-path-cwd-1.0.0.tgz#d225ec23132e89edd38fda767472e62e65f1106d" 1527 | 1528 | is-path-in-cwd@^1.0.0: 1529 | version "1.0.0" 1530 | resolved "https://registry.yarnpkg.com/is-path-in-cwd/-/is-path-in-cwd-1.0.0.tgz#6477582b8214d602346094567003be8a9eac04dc" 1531 | dependencies: 1532 | is-path-inside "^1.0.0" 1533 | 1534 | is-path-inside@^1.0.0: 1535 | version "1.0.0" 1536 | resolved "https://registry.yarnpkg.com/is-path-inside/-/is-path-inside-1.0.0.tgz#fc06e5a1683fbda13de667aff717bbc10a48f37f" 1537 | dependencies: 1538 | path-is-inside "^1.0.1" 1539 | 1540 | is-promise@^2.1.0: 1541 | version "2.1.0" 1542 | resolved "https://registry.yarnpkg.com/is-promise/-/is-promise-2.1.0.tgz#79a2a9ece7f096e80f36d2b2f3bc16c1ff4bf3fa" 1543 | 1544 | is-property@^1.0.0: 1545 | version "1.0.2" 1546 | resolved "https://registry.yarnpkg.com/is-property/-/is-property-1.0.2.tgz#57fe1c4e48474edd65b09911f26b1cd4095dda84" 1547 | 1548 | is-regex@^1.0.3: 1549 | version "1.0.4" 1550 | resolved "https://registry.yarnpkg.com/is-regex/-/is-regex-1.0.4.tgz#5517489b547091b0930e095654ced25ee97e9491" 1551 | dependencies: 1552 | has "^1.0.1" 1553 | 1554 | is-resolvable@^1.0.0: 1555 | version "1.0.0" 1556 | resolved "https://registry.yarnpkg.com/is-resolvable/-/is-resolvable-1.0.0.tgz#8df57c61ea2e3c501408d100fb013cf8d6e0cc62" 1557 | dependencies: 1558 | tryit "^1.0.1" 1559 | 1560 | is-stream@^1.0.1: 1561 | version "1.1.0" 1562 | resolved "https://registry.yarnpkg.com/is-stream/-/is-stream-1.1.0.tgz#12d4a3dd4e68e0b79ceb8dbc84173ae80d91ca44" 1563 | 1564 | is-symbol@^1.0.1: 1565 | version "1.0.1" 1566 | resolved "https://registry.yarnpkg.com/is-symbol/-/is-symbol-1.0.1.tgz#3cc59f00025194b6ab2e38dbae6689256b660572" 1567 | 1568 | isarray@^1.0.0, isarray@~1.0.0: 1569 | version "1.0.0" 1570 | resolved "https://registry.yarnpkg.com/isarray/-/isarray-1.0.0.tgz#bb935d48582cba168c06834957a54a3e07124f11" 1571 | 1572 | isarray@~0.0.1: 1573 | version "0.0.1" 1574 | resolved "https://registry.yarnpkg.com/isarray/-/isarray-0.0.1.tgz#8a18acfca9a8f4177e09abfc6038939b05d1eedf" 1575 | 1576 | isomorphic-fetch@^2.1.1: 1577 | version "2.2.1" 1578 | resolved "https://registry.yarnpkg.com/isomorphic-fetch/-/isomorphic-fetch-2.2.1.tgz#611ae1acf14f5e81f729507472819fe9733558a9" 1579 | dependencies: 1580 | node-fetch "^1.0.1" 1581 | whatwg-fetch ">=0.10.0" 1582 | 1583 | isstream@0.1.x: 1584 | version "0.1.2" 1585 | resolved "https://registry.yarnpkg.com/isstream/-/isstream-0.1.2.tgz#47e63f7af55afa6f92e1500e690eb8b8529c099a" 1586 | 1587 | js-tokens@^3.0.0: 1588 | version "3.0.1" 1589 | resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-3.0.1.tgz#08e9f132484a2c45a30907e9dc4d5567b7f114d7" 1590 | 1591 | js-yaml@^3.5.1: 1592 | version "3.8.1" 1593 | resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-3.8.1.tgz#782ba50200be7b9e5a8537001b7804db3ad02628" 1594 | dependencies: 1595 | argparse "^1.0.7" 1596 | esprima "^3.1.1" 1597 | 1598 | jsesc@^1.3.0: 1599 | version "1.3.0" 1600 | resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-1.3.0.tgz#46c3fec8c1892b12b0833db9bc7622176dbab34b" 1601 | 1602 | jsesc@~0.5.0: 1603 | version "0.5.0" 1604 | resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-0.5.0.tgz#e7dee66e35d6fc16f710fe91d5cf69f70f08911d" 1605 | 1606 | json-stable-stringify@^1.0.0, json-stable-stringify@^1.0.1: 1607 | version "1.0.1" 1608 | resolved "https://registry.yarnpkg.com/json-stable-stringify/-/json-stable-stringify-1.0.1.tgz#9a759d39c5f2ff503fd5300646ed445f88c4f9af" 1609 | dependencies: 1610 | jsonify "~0.0.0" 1611 | 1612 | json-stable-stringify@~0.0.0: 1613 | version "0.0.1" 1614 | resolved "https://registry.yarnpkg.com/json-stable-stringify/-/json-stable-stringify-0.0.1.tgz#611c23e814db375527df851193db59dd2af27f45" 1615 | dependencies: 1616 | jsonify "~0.0.0" 1617 | 1618 | json5@^0.5.0: 1619 | version "0.5.1" 1620 | resolved "https://registry.yarnpkg.com/json5/-/json5-0.5.1.tgz#1eade7acc012034ad84e2396767ead9fa5495821" 1621 | 1622 | jsonfile@^2.1.0: 1623 | version "2.4.0" 1624 | resolved "https://registry.yarnpkg.com/jsonfile/-/jsonfile-2.4.0.tgz#3736a2b428b87bbda0cc83b53fa3d633a35c2ae8" 1625 | optionalDependencies: 1626 | graceful-fs "^4.1.6" 1627 | 1628 | jsonify@~0.0.0: 1629 | version "0.0.0" 1630 | resolved "https://registry.yarnpkg.com/jsonify/-/jsonify-0.0.0.tgz#2c74b6ee41d93ca51b7b5aaee8f503631d252a73" 1631 | 1632 | jsonparse@^1.2.0: 1633 | version "1.3.0" 1634 | resolved "https://registry.yarnpkg.com/jsonparse/-/jsonparse-1.3.0.tgz#85fc245b1d9259acc6941960b905adf64e7de0e8" 1635 | 1636 | jsonpointer@^4.0.0: 1637 | version "4.0.1" 1638 | resolved "https://registry.yarnpkg.com/jsonpointer/-/jsonpointer-4.0.1.tgz#4fd92cb34e0e9db3c89c8622ecf51f9b978c6cb9" 1639 | 1640 | jsx-ast-utils@^1.3.4: 1641 | version "1.4.0" 1642 | resolved "https://registry.yarnpkg.com/jsx-ast-utils/-/jsx-ast-utils-1.4.0.tgz#5afe38868f56bc8cc7aeaef0100ba8c75bd12591" 1643 | dependencies: 1644 | object-assign "^4.1.0" 1645 | 1646 | klaw@^1.0.0: 1647 | version "1.3.1" 1648 | resolved "https://registry.yarnpkg.com/klaw/-/klaw-1.3.1.tgz#4088433b46b3b1ba259d78785d8e96f73ba02439" 1649 | optionalDependencies: 1650 | graceful-fs "^4.1.9" 1651 | 1652 | labeled-stream-splicer@^2.0.0: 1653 | version "2.0.0" 1654 | resolved "https://registry.yarnpkg.com/labeled-stream-splicer/-/labeled-stream-splicer-2.0.0.tgz#a52e1d138024c00b86b1c0c91f677918b8ae0a59" 1655 | dependencies: 1656 | inherits "^2.0.1" 1657 | isarray "~0.0.1" 1658 | stream-splicer "^2.0.0" 1659 | 1660 | levn@^0.3.0, levn@~0.3.0: 1661 | version "0.3.0" 1662 | resolved "https://registry.yarnpkg.com/levn/-/levn-0.3.0.tgz#3b09924edf9f083c0490fdd4c0bc4421e04764ee" 1663 | dependencies: 1664 | prelude-ls "~1.1.2" 1665 | type-check "~0.3.2" 1666 | 1667 | lexical-scope@^1.2.0: 1668 | version "1.2.0" 1669 | resolved "https://registry.yarnpkg.com/lexical-scope/-/lexical-scope-1.2.0.tgz#fcea5edc704a4b3a8796cdca419c3a0afaf22df4" 1670 | dependencies: 1671 | astw "^2.0.0" 1672 | 1673 | lodash.memoize@~3.0.3: 1674 | version "3.0.4" 1675 | resolved "https://registry.yarnpkg.com/lodash.memoize/-/lodash.memoize-3.0.4.tgz#2dcbd2c287cbc0a55cc42328bd0c736150d53e3f" 1676 | 1677 | lodash@^4.0.0, lodash@^4.2.0, lodash@^4.3.0: 1678 | version "4.17.4" 1679 | resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.4.tgz#78203a4d1c328ae1d86dca6460e369b57f4055ae" 1680 | 1681 | loose-envify@^1.0.0, loose-envify@^1.1.0: 1682 | version "1.3.1" 1683 | resolved "https://registry.yarnpkg.com/loose-envify/-/loose-envify-1.3.1.tgz#d1a8ad33fa9ce0e713d65fdd0ac8b748d478c848" 1684 | dependencies: 1685 | js-tokens "^3.0.0" 1686 | 1687 | miller-rabin@^4.0.0: 1688 | version "4.0.0" 1689 | resolved "https://registry.yarnpkg.com/miller-rabin/-/miller-rabin-4.0.0.tgz#4a62fb1d42933c05583982f4c716f6fb9e6c6d3d" 1690 | dependencies: 1691 | bn.js "^4.0.0" 1692 | brorand "^1.0.1" 1693 | 1694 | minimalistic-assert@^1.0.0: 1695 | version "1.0.0" 1696 | resolved "https://registry.yarnpkg.com/minimalistic-assert/-/minimalistic-assert-1.0.0.tgz#702be2dda6b37f4836bcb3f5db56641b64a1d3d3" 1697 | 1698 | minimatch@^3.0.2: 1699 | version "3.0.3" 1700 | resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.0.3.tgz#2a4e4090b96b2db06a9d7df01055a62a77c9b774" 1701 | dependencies: 1702 | brace-expansion "^1.0.0" 1703 | 1704 | minimist@0.0.8: 1705 | version "0.0.8" 1706 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-0.0.8.tgz#857fcabfc3397d2625b8228262e86aa7a011b05d" 1707 | 1708 | minimist@^1.1.0: 1709 | version "1.2.0" 1710 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.0.tgz#a35008b20f41383eec1fb914f4cd5df79a264284" 1711 | 1712 | mkdirp@^0.5.0, mkdirp@^0.5.1: 1713 | version "0.5.1" 1714 | resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.5.1.tgz#30057438eac6cf7f8c4767f38648d6697d75c903" 1715 | dependencies: 1716 | minimist "0.0.8" 1717 | 1718 | module-deps@^4.0.8: 1719 | version "4.1.1" 1720 | resolved "https://registry.yarnpkg.com/module-deps/-/module-deps-4.1.1.tgz#23215833f1da13fd606ccb8087b44852dcb821fd" 1721 | dependencies: 1722 | JSONStream "^1.0.3" 1723 | browser-resolve "^1.7.0" 1724 | cached-path-relative "^1.0.0" 1725 | concat-stream "~1.5.0" 1726 | defined "^1.0.0" 1727 | detective "^4.0.0" 1728 | duplexer2 "^0.1.2" 1729 | inherits "^2.0.1" 1730 | parents "^1.0.0" 1731 | readable-stream "^2.0.2" 1732 | resolve "^1.1.3" 1733 | stream-combiner2 "^1.1.1" 1734 | subarg "^1.0.0" 1735 | through2 "^2.0.0" 1736 | xtend "^4.0.0" 1737 | 1738 | ms@0.7.2: 1739 | version "0.7.2" 1740 | resolved "https://registry.yarnpkg.com/ms/-/ms-0.7.2.tgz#ae25cf2512b3885a1d95d7f037868d8431124765" 1741 | 1742 | mute-stream@0.0.5: 1743 | version "0.0.5" 1744 | resolved "https://registry.yarnpkg.com/mute-stream/-/mute-stream-0.0.5.tgz#8fbfabb0a98a253d3184331f9e8deb7372fac6c0" 1745 | 1746 | mute-stream@0.0.6: 1747 | version "0.0.6" 1748 | resolved "https://registry.yarnpkg.com/mute-stream/-/mute-stream-0.0.6.tgz#48962b19e169fd1dfc240b3f1e7317627bbc47db" 1749 | 1750 | natural-compare@^1.4.0: 1751 | version "1.4.0" 1752 | resolved "https://registry.yarnpkg.com/natural-compare/-/natural-compare-1.4.0.tgz#4abebfeed7541f2c27acfb29bdbbd15c8d5ba4f7" 1753 | 1754 | node-fetch@^1.0.1: 1755 | version "1.6.3" 1756 | resolved "https://registry.yarnpkg.com/node-fetch/-/node-fetch-1.6.3.tgz#dc234edd6489982d58e8f0db4f695029abcd8c04" 1757 | dependencies: 1758 | encoding "^0.1.11" 1759 | is-stream "^1.0.1" 1760 | 1761 | number-is-nan@^1.0.0: 1762 | version "1.0.1" 1763 | resolved "https://registry.yarnpkg.com/number-is-nan/-/number-is-nan-1.0.1.tgz#097b602b53422a522c1afb8790318336941a011d" 1764 | 1765 | object-assign@^4.0.0, object-assign@^4.0.1, object-assign@^4.1.0: 1766 | version "4.1.1" 1767 | resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863" 1768 | 1769 | object-keys@^1.0.10, object-keys@^1.0.8: 1770 | version "1.0.11" 1771 | resolved "https://registry.yarnpkg.com/object-keys/-/object-keys-1.0.11.tgz#c54601778ad560f1142ce0e01bcca8b56d13426d" 1772 | 1773 | object.assign@^4.0.4: 1774 | version "4.0.4" 1775 | resolved "https://registry.yarnpkg.com/object.assign/-/object.assign-4.0.4.tgz#b1c9cc044ef1b9fe63606fc141abbb32e14730cc" 1776 | dependencies: 1777 | define-properties "^1.1.2" 1778 | function-bind "^1.1.0" 1779 | object-keys "^1.0.10" 1780 | 1781 | once@^1.3.0: 1782 | version "1.4.0" 1783 | resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1" 1784 | dependencies: 1785 | wrappy "1" 1786 | 1787 | onetime@^1.0.0: 1788 | version "1.1.0" 1789 | resolved "https://registry.yarnpkg.com/onetime/-/onetime-1.1.0.tgz#a1f7838f8314c516f05ecefcbc4ccfe04b4ed789" 1790 | 1791 | optionator@^0.8.1: 1792 | version "0.8.2" 1793 | resolved "https://registry.yarnpkg.com/optionator/-/optionator-0.8.2.tgz#364c5e409d3f4d6301d6c0b4c05bba50180aeb64" 1794 | dependencies: 1795 | deep-is "~0.1.3" 1796 | fast-levenshtein "~2.0.4" 1797 | levn "~0.3.0" 1798 | prelude-ls "~1.1.2" 1799 | type-check "~0.3.2" 1800 | wordwrap "~1.0.0" 1801 | 1802 | os-browserify@~0.1.1: 1803 | version "0.1.2" 1804 | resolved "https://registry.yarnpkg.com/os-browserify/-/os-browserify-0.1.2.tgz#49ca0293e0b19590a5f5de10c7f265a617d8fe54" 1805 | 1806 | os-homedir@^1.0.0: 1807 | version "1.0.2" 1808 | resolved "https://registry.yarnpkg.com/os-homedir/-/os-homedir-1.0.2.tgz#ffbc4988336e0e833de0c168c7ef152121aa7fb3" 1809 | 1810 | os-shim@^0.1.2: 1811 | version "0.1.3" 1812 | resolved "https://registry.yarnpkg.com/os-shim/-/os-shim-0.1.3.tgz#6b62c3791cf7909ea35ed46e17658bb417cb3917" 1813 | 1814 | os-tmpdir@^1.0.1, os-tmpdir@~1.0.1: 1815 | version "1.0.2" 1816 | resolved "https://registry.yarnpkg.com/os-tmpdir/-/os-tmpdir-1.0.2.tgz#bbe67406c79aa85c5cfec766fe5734555dfa1274" 1817 | 1818 | pako@~0.2.0: 1819 | version "0.2.9" 1820 | resolved "https://registry.yarnpkg.com/pako/-/pako-0.2.9.tgz#f3f7522f4ef782348da8161bad9ecfd51bf83a75" 1821 | 1822 | parents@^1.0.0, parents@^1.0.1: 1823 | version "1.0.1" 1824 | resolved "https://registry.yarnpkg.com/parents/-/parents-1.0.1.tgz#fedd4d2bf193a77745fe71e371d73c3307d9c751" 1825 | dependencies: 1826 | path-platform "~0.11.15" 1827 | 1828 | parse-asn1@^5.0.0: 1829 | version "5.0.0" 1830 | resolved "https://registry.yarnpkg.com/parse-asn1/-/parse-asn1-5.0.0.tgz#35060f6d5015d37628c770f4e091a0b5a278bc23" 1831 | dependencies: 1832 | asn1.js "^4.0.0" 1833 | browserify-aes "^1.0.0" 1834 | create-hash "^1.1.0" 1835 | evp_bytestokey "^1.0.0" 1836 | pbkdf2 "^3.0.3" 1837 | 1838 | path-browserify@~0.0.0: 1839 | version "0.0.0" 1840 | resolved "https://registry.yarnpkg.com/path-browserify/-/path-browserify-0.0.0.tgz#a0b870729aae214005b7d5032ec2cbbb0fb4451a" 1841 | 1842 | path-is-absolute@^1.0.0: 1843 | version "1.0.1" 1844 | resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f" 1845 | 1846 | path-is-inside@^1.0.1: 1847 | version "1.0.2" 1848 | resolved "https://registry.yarnpkg.com/path-is-inside/-/path-is-inside-1.0.2.tgz#365417dede44430d1c11af61027facf074bdfc53" 1849 | 1850 | path-platform@~0.11.15: 1851 | version "0.11.15" 1852 | resolved "https://registry.yarnpkg.com/path-platform/-/path-platform-0.11.15.tgz#e864217f74c36850f0852b78dc7bf7d4a5721bf2" 1853 | 1854 | pbkdf2@^3.0.3: 1855 | version "3.0.9" 1856 | resolved "https://registry.yarnpkg.com/pbkdf2/-/pbkdf2-3.0.9.tgz#f2c4b25a600058b3c3773c086c37dbbee1ffe693" 1857 | dependencies: 1858 | create-hmac "^1.1.2" 1859 | 1860 | pify@^2.0.0: 1861 | version "2.3.0" 1862 | resolved "https://registry.yarnpkg.com/pify/-/pify-2.3.0.tgz#ed141a6ac043a849ea588498e7dca8b15330e90c" 1863 | 1864 | pinkie-promise@^2.0.0: 1865 | version "2.0.1" 1866 | resolved "https://registry.yarnpkg.com/pinkie-promise/-/pinkie-promise-2.0.1.tgz#2135d6dfa7a358c069ac9b178776288228450ffa" 1867 | dependencies: 1868 | pinkie "^2.0.0" 1869 | 1870 | pinkie@^2.0.0: 1871 | version "2.0.4" 1872 | resolved "https://registry.yarnpkg.com/pinkie/-/pinkie-2.0.4.tgz#72556b80cfa0d48a974e80e77248e80ed4f7f870" 1873 | 1874 | pluralize@^1.2.1: 1875 | version "1.2.1" 1876 | resolved "https://registry.yarnpkg.com/pluralize/-/pluralize-1.2.1.tgz#d1a21483fd22bb41e58a12fa3421823140897c45" 1877 | 1878 | prelude-ls@~1.1.2: 1879 | version "1.1.2" 1880 | resolved "https://registry.yarnpkg.com/prelude-ls/-/prelude-ls-1.1.2.tgz#21932a549f5e52ffd9a827f570e04be62a97da54" 1881 | 1882 | private@^0.1.6: 1883 | version "0.1.7" 1884 | resolved "https://registry.yarnpkg.com/private/-/private-0.1.7.tgz#68ce5e8a1ef0a23bb570cc28537b5332aba63ef1" 1885 | 1886 | process-nextick-args@~1.0.6: 1887 | version "1.0.7" 1888 | resolved "https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-1.0.7.tgz#150e20b756590ad3f91093f25a4f2ad8bff30ba3" 1889 | 1890 | process@~0.11.0: 1891 | version "0.11.9" 1892 | resolved "https://registry.yarnpkg.com/process/-/process-0.11.9.tgz#7bd5ad21aa6253e7da8682264f1e11d11c0318c1" 1893 | 1894 | progress@^1.1.8: 1895 | version "1.1.8" 1896 | resolved "https://registry.yarnpkg.com/progress/-/progress-1.1.8.tgz#e260c78f6161cdd9b0e56cc3e0a85de17c7a57be" 1897 | 1898 | promise@^7.1.1: 1899 | version "7.1.1" 1900 | resolved "https://registry.yarnpkg.com/promise/-/promise-7.1.1.tgz#489654c692616b8aa55b0724fa809bb7db49c5bf" 1901 | dependencies: 1902 | asap "~2.0.3" 1903 | 1904 | public-encrypt@^4.0.0: 1905 | version "4.0.0" 1906 | resolved "https://registry.yarnpkg.com/public-encrypt/-/public-encrypt-4.0.0.tgz#39f699f3a46560dd5ebacbca693caf7c65c18cc6" 1907 | dependencies: 1908 | bn.js "^4.1.0" 1909 | browserify-rsa "^4.0.0" 1910 | create-hash "^1.1.0" 1911 | parse-asn1 "^5.0.0" 1912 | randombytes "^2.0.1" 1913 | 1914 | punycode@1.3.2: 1915 | version "1.3.2" 1916 | resolved "https://registry.yarnpkg.com/punycode/-/punycode-1.3.2.tgz#9653a036fb7c1ee42342f2325cceefea3926c48d" 1917 | 1918 | punycode@^1.3.2: 1919 | version "1.4.1" 1920 | resolved "https://registry.yarnpkg.com/punycode/-/punycode-1.4.1.tgz#c0d5a63b2718800ad8e1eb0fa5269c84dd41845e" 1921 | 1922 | q@^1.4.1: 1923 | version "1.4.1" 1924 | resolved "https://registry.yarnpkg.com/q/-/q-1.4.1.tgz#55705bcd93c5f3673530c2c2cbc0c2b3addc286e" 1925 | 1926 | querystring-es3@~0.2.0: 1927 | version "0.2.1" 1928 | resolved "https://registry.yarnpkg.com/querystring-es3/-/querystring-es3-0.2.1.tgz#9ec61f79049875707d69414596fd907a4d711e73" 1929 | 1930 | querystring@0.2.0: 1931 | version "0.2.0" 1932 | resolved "https://registry.yarnpkg.com/querystring/-/querystring-0.2.0.tgz#b209849203bb25df820da756e747005878521620" 1933 | 1934 | randombytes@^2.0.0, randombytes@^2.0.1: 1935 | version "2.0.3" 1936 | resolved "https://registry.yarnpkg.com/randombytes/-/randombytes-2.0.3.tgz#674c99760901c3c4112771a31e521dc349cc09ec" 1937 | 1938 | react-disqus-thread@^0.4.0: 1939 | version "0.4.0" 1940 | resolved "https://registry.yarnpkg.com/react-disqus-thread/-/react-disqus-thread-0.4.0.tgz#7fd63786ea5034fb5df25facd7f4c49d1204ad03" 1941 | 1942 | react@^15.3.2: 1943 | version "15.4.2" 1944 | resolved "https://registry.yarnpkg.com/react/-/react-15.4.2.tgz#41f7991b26185392ba9bae96c8889e7e018397ef" 1945 | dependencies: 1946 | fbjs "^0.8.4" 1947 | loose-envify "^1.1.0" 1948 | object-assign "^4.1.0" 1949 | 1950 | read-only-stream@^2.0.0: 1951 | version "2.0.0" 1952 | resolved "https://registry.yarnpkg.com/read-only-stream/-/read-only-stream-2.0.0.tgz#2724fd6a8113d73764ac288d4386270c1dbf17f0" 1953 | dependencies: 1954 | readable-stream "^2.0.2" 1955 | 1956 | readable-stream@^2.0.2, readable-stream@^2.1.0, readable-stream@^2.1.5, readable-stream@^2.2.2: 1957 | version "2.2.2" 1958 | resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.2.2.tgz#a9e6fec3c7dda85f8bb1b3ba7028604556fc825e" 1959 | dependencies: 1960 | buffer-shims "^1.0.0" 1961 | core-util-is "~1.0.0" 1962 | inherits "~2.0.1" 1963 | isarray "~1.0.0" 1964 | process-nextick-args "~1.0.6" 1965 | string_decoder "~0.10.x" 1966 | util-deprecate "~1.0.1" 1967 | 1968 | readable-stream@~2.0.0: 1969 | version "2.0.6" 1970 | resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.0.6.tgz#8f90341e68a53ccc928788dacfcd11b36eb9b78e" 1971 | dependencies: 1972 | core-util-is "~1.0.0" 1973 | inherits "~2.0.1" 1974 | isarray "~1.0.0" 1975 | process-nextick-args "~1.0.6" 1976 | string_decoder "~0.10.x" 1977 | util-deprecate "~1.0.1" 1978 | 1979 | readline2@^1.0.1: 1980 | version "1.0.1" 1981 | resolved "https://registry.yarnpkg.com/readline2/-/readline2-1.0.1.tgz#41059608ffc154757b715d9989d199ffbf372e35" 1982 | dependencies: 1983 | code-point-at "^1.0.0" 1984 | is-fullwidth-code-point "^1.0.0" 1985 | mute-stream "0.0.5" 1986 | 1987 | regenerate@^1.2.1: 1988 | version "1.3.2" 1989 | resolved "https://registry.yarnpkg.com/regenerate/-/regenerate-1.3.2.tgz#d1941c67bad437e1be76433add5b385f95b19260" 1990 | 1991 | regenerator-runtime@^0.10.0: 1992 | version "0.10.3" 1993 | resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.10.3.tgz#8c4367a904b51ea62a908ac310bf99ff90a82a3e" 1994 | 1995 | regenerator-transform@0.9.8: 1996 | version "0.9.8" 1997 | resolved "https://registry.yarnpkg.com/regenerator-transform/-/regenerator-transform-0.9.8.tgz#0f88bb2bc03932ddb7b6b7312e68078f01026d6c" 1998 | dependencies: 1999 | babel-runtime "^6.18.0" 2000 | babel-types "^6.19.0" 2001 | private "^0.1.6" 2002 | 2003 | regexpu-core@^2.0.0: 2004 | version "2.0.0" 2005 | resolved "https://registry.yarnpkg.com/regexpu-core/-/regexpu-core-2.0.0.tgz#49d038837b8dcf8bfa5b9a42139938e6ea2ae240" 2006 | dependencies: 2007 | regenerate "^1.2.1" 2008 | regjsgen "^0.2.0" 2009 | regjsparser "^0.1.4" 2010 | 2011 | regjsgen@^0.2.0: 2012 | version "0.2.0" 2013 | resolved "https://registry.yarnpkg.com/regjsgen/-/regjsgen-0.2.0.tgz#6c016adeac554f75823fe37ac05b92d5a4edb1f7" 2014 | 2015 | regjsparser@^0.1.4: 2016 | version "0.1.5" 2017 | resolved "https://registry.yarnpkg.com/regjsparser/-/regjsparser-0.1.5.tgz#7ee8f84dc6fa792d3fd0ae228d24bd949ead205c" 2018 | dependencies: 2019 | jsesc "~0.5.0" 2020 | 2021 | repeating@^2.0.0: 2022 | version "2.0.1" 2023 | resolved "https://registry.yarnpkg.com/repeating/-/repeating-2.0.1.tgz#5214c53a926d3552707527fbab415dbc08d06dda" 2024 | dependencies: 2025 | is-finite "^1.0.0" 2026 | 2027 | require-uncached@^1.0.2: 2028 | version "1.0.3" 2029 | resolved "https://registry.yarnpkg.com/require-uncached/-/require-uncached-1.0.3.tgz#4e0d56d6c9662fd31e43011c4b95aa49955421d3" 2030 | dependencies: 2031 | caller-path "^0.1.0" 2032 | resolve-from "^1.0.0" 2033 | 2034 | resolve-from@^1.0.0: 2035 | version "1.0.1" 2036 | resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-1.0.1.tgz#26cbfe935d1aeeeabb29bc3fe5aeb01e93d44226" 2037 | 2038 | resolve@1.1.7: 2039 | version "1.1.7" 2040 | resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.1.7.tgz#203114d82ad2c5ed9e8e0411b3932875e889e97b" 2041 | 2042 | resolve@^1.1.3, resolve@^1.1.4: 2043 | version "1.2.0" 2044 | resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.2.0.tgz#9589c3f2f6149d1417a40becc1663db6ec6bc26c" 2045 | 2046 | restore-cursor@^1.0.1: 2047 | version "1.0.1" 2048 | resolved "https://registry.yarnpkg.com/restore-cursor/-/restore-cursor-1.0.1.tgz#34661f46886327fed2991479152252df92daa541" 2049 | dependencies: 2050 | exit-hook "^1.0.0" 2051 | onetime "^1.0.0" 2052 | 2053 | rimraf@^2.2.8: 2054 | version "2.6.0" 2055 | resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.6.0.tgz#89b8a0fe432b9ff9ec9a925a00b6cdb3a91bbada" 2056 | dependencies: 2057 | glob "^7.0.5" 2058 | 2059 | ripemd160@^1.0.0: 2060 | version "1.0.1" 2061 | resolved "https://registry.yarnpkg.com/ripemd160/-/ripemd160-1.0.1.tgz#93a4bbd4942bc574b69a8fa57c71de10ecca7d6e" 2062 | 2063 | run-async@^0.1.0: 2064 | version "0.1.0" 2065 | resolved "https://registry.yarnpkg.com/run-async/-/run-async-0.1.0.tgz#c8ad4a5e110661e402a7d21b530e009f25f8e389" 2066 | dependencies: 2067 | once "^1.3.0" 2068 | 2069 | run-async@^2.2.0: 2070 | version "2.3.0" 2071 | resolved "https://registry.yarnpkg.com/run-async/-/run-async-2.3.0.tgz#0371ab4ae0bdd720d4166d7dfda64ff7a445a6c0" 2072 | dependencies: 2073 | is-promise "^2.1.0" 2074 | 2075 | rx-lite@^3.1.2: 2076 | version "3.1.2" 2077 | resolved "https://registry.yarnpkg.com/rx-lite/-/rx-lite-3.1.2.tgz#19ce502ca572665f3b647b10939f97fd1615f102" 2078 | 2079 | rx@^4.1.0: 2080 | version "4.1.0" 2081 | resolved "https://registry.yarnpkg.com/rx/-/rx-4.1.0.tgz#a5f13ff79ef3b740fe30aa803fb09f98805d4782" 2082 | 2083 | setimmediate@^1.0.5: 2084 | version "1.0.5" 2085 | resolved "https://registry.yarnpkg.com/setimmediate/-/setimmediate-1.0.5.tgz#290cbb232e306942d7d7ea9b83732ab7856f8285" 2086 | 2087 | sha.js@^2.3.6, sha.js@~2.4.4: 2088 | version "2.4.8" 2089 | resolved "https://registry.yarnpkg.com/sha.js/-/sha.js-2.4.8.tgz#37068c2c476b6baf402d14a49c67f597921f634f" 2090 | dependencies: 2091 | inherits "^2.0.1" 2092 | 2093 | shasum@^1.0.0: 2094 | version "1.0.2" 2095 | resolved "https://registry.yarnpkg.com/shasum/-/shasum-1.0.2.tgz#e7012310d8f417f4deb5712150e5678b87ae565f" 2096 | dependencies: 2097 | json-stable-stringify "~0.0.0" 2098 | sha.js "~2.4.4" 2099 | 2100 | shell-quote@^1.6.1: 2101 | version "1.6.1" 2102 | resolved "https://registry.yarnpkg.com/shell-quote/-/shell-quote-1.6.1.tgz#f4781949cce402697127430ea3b3c5476f481767" 2103 | dependencies: 2104 | array-filter "~0.0.0" 2105 | array-map "~0.0.0" 2106 | array-reduce "~0.0.0" 2107 | jsonify "~0.0.0" 2108 | 2109 | shelljs@^0.6.0: 2110 | version "0.6.1" 2111 | resolved "https://registry.yarnpkg.com/shelljs/-/shelljs-0.6.1.tgz#ec6211bed1920442088fe0f70b2837232ed2c8a8" 2112 | 2113 | slash@^1.0.0: 2114 | version "1.0.0" 2115 | resolved "https://registry.yarnpkg.com/slash/-/slash-1.0.0.tgz#c41f2f6c39fc16d1cd17ad4b5d896114ae470d55" 2116 | 2117 | slice-ansi@0.0.4: 2118 | version "0.0.4" 2119 | resolved "https://registry.yarnpkg.com/slice-ansi/-/slice-ansi-0.0.4.tgz#edbf8903f66f7ce2f8eafd6ceed65e264c831b35" 2120 | 2121 | source-map-support@^0.4.2: 2122 | version "0.4.11" 2123 | resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.4.11.tgz#647f939978b38535909530885303daf23279f322" 2124 | dependencies: 2125 | source-map "^0.5.3" 2126 | 2127 | source-map@^0.5.0, source-map@^0.5.3, source-map@~0.5.3: 2128 | version "0.5.6" 2129 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.5.6.tgz#75ce38f52bf0733c5a7f0c118d81334a2bb5f412" 2130 | 2131 | spawn-sync@^1.0.15: 2132 | version "1.0.15" 2133 | resolved "https://registry.yarnpkg.com/spawn-sync/-/spawn-sync-1.0.15.tgz#b00799557eb7fb0c8376c29d44e8a1ea67e57476" 2134 | dependencies: 2135 | concat-stream "^1.4.7" 2136 | os-shim "^0.1.2" 2137 | 2138 | sprintf-js@~1.0.2: 2139 | version "1.0.3" 2140 | resolved "https://registry.yarnpkg.com/sprintf-js/-/sprintf-js-1.0.3.tgz#04e6926f662895354f3dd015203633b857297e2c" 2141 | 2142 | stack-trace@0.0.x: 2143 | version "0.0.9" 2144 | resolved "https://registry.yarnpkg.com/stack-trace/-/stack-trace-0.0.9.tgz#a8f6eaeca90674c333e7c43953f275b451510695" 2145 | 2146 | stream-browserify@^2.0.0: 2147 | version "2.0.1" 2148 | resolved "https://registry.yarnpkg.com/stream-browserify/-/stream-browserify-2.0.1.tgz#66266ee5f9bdb9940a4e4514cafb43bb71e5c9db" 2149 | dependencies: 2150 | inherits "~2.0.1" 2151 | readable-stream "^2.0.2" 2152 | 2153 | stream-combiner2@^1.1.1: 2154 | version "1.1.1" 2155 | resolved "https://registry.yarnpkg.com/stream-combiner2/-/stream-combiner2-1.1.1.tgz#fb4d8a1420ea362764e21ad4780397bebcb41cbe" 2156 | dependencies: 2157 | duplexer2 "~0.1.0" 2158 | readable-stream "^2.0.2" 2159 | 2160 | stream-http@^2.0.0: 2161 | version "2.6.3" 2162 | resolved "https://registry.yarnpkg.com/stream-http/-/stream-http-2.6.3.tgz#4c3ddbf9635968ea2cfd4e48d43de5def2625ac3" 2163 | dependencies: 2164 | builtin-status-codes "^3.0.0" 2165 | inherits "^2.0.1" 2166 | readable-stream "^2.1.0" 2167 | to-arraybuffer "^1.0.0" 2168 | xtend "^4.0.0" 2169 | 2170 | stream-splicer@^2.0.0: 2171 | version "2.0.0" 2172 | resolved "https://registry.yarnpkg.com/stream-splicer/-/stream-splicer-2.0.0.tgz#1b63be438a133e4b671cc1935197600175910d83" 2173 | dependencies: 2174 | inherits "^2.0.1" 2175 | readable-stream "^2.0.2" 2176 | 2177 | string-width@^1.0.1: 2178 | version "1.0.2" 2179 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-1.0.2.tgz#118bdf5b8cdc51a2a7e70d211e07e2b0b9b107d3" 2180 | dependencies: 2181 | code-point-at "^1.0.0" 2182 | is-fullwidth-code-point "^1.0.0" 2183 | strip-ansi "^3.0.0" 2184 | 2185 | string-width@^2.0.0: 2186 | version "2.0.0" 2187 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-2.0.0.tgz#635c5436cc72a6e0c387ceca278d4e2eec52687e" 2188 | dependencies: 2189 | is-fullwidth-code-point "^2.0.0" 2190 | strip-ansi "^3.0.0" 2191 | 2192 | string_decoder@~0.10.0, string_decoder@~0.10.x: 2193 | version "0.10.31" 2194 | resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-0.10.31.tgz#62e203bc41766c6c28c9fc84301dab1c5310fa94" 2195 | 2196 | strip-ansi@^3.0.0: 2197 | version "3.0.1" 2198 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-3.0.1.tgz#6a385fb8853d952d5ff05d0e8aaf94278dc63dcf" 2199 | dependencies: 2200 | ansi-regex "^2.0.0" 2201 | 2202 | strip-bom@^3.0.0: 2203 | version "3.0.0" 2204 | resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-3.0.0.tgz#2334c18e9c759f7bdd56fdef7e9ae3d588e68ed3" 2205 | 2206 | strip-json-comments@~1.0.1: 2207 | version "1.0.4" 2208 | resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-1.0.4.tgz#1e15fbcac97d3ee99bf2d73b4c656b082bbafb91" 2209 | 2210 | subarg@^1.0.0: 2211 | version "1.0.0" 2212 | resolved "https://registry.yarnpkg.com/subarg/-/subarg-1.0.0.tgz#f62cf17581e996b48fc965699f54c06ae268b8d2" 2213 | dependencies: 2214 | minimist "^1.1.0" 2215 | 2216 | supports-color@^2.0.0: 2217 | version "2.0.0" 2218 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-2.0.0.tgz#535d045ce6b6363fa40117084629995e9df324c7" 2219 | 2220 | syntax-error@^1.1.1: 2221 | version "1.1.6" 2222 | resolved "https://registry.yarnpkg.com/syntax-error/-/syntax-error-1.1.6.tgz#b4549706d386cc1c1dc7c2423f18579b6cade710" 2223 | dependencies: 2224 | acorn "^2.7.0" 2225 | 2226 | table@^3.7.8: 2227 | version "3.8.3" 2228 | resolved "https://registry.yarnpkg.com/table/-/table-3.8.3.tgz#2bbc542f0fda9861a755d3947fefd8b3f513855f" 2229 | dependencies: 2230 | ajv "^4.7.0" 2231 | ajv-keywords "^1.0.0" 2232 | chalk "^1.1.1" 2233 | lodash "^4.0.0" 2234 | slice-ansi "0.0.4" 2235 | string-width "^2.0.0" 2236 | 2237 | text-table@~0.2.0: 2238 | version "0.2.0" 2239 | resolved "https://registry.yarnpkg.com/text-table/-/text-table-0.2.0.tgz#7f5ee823ae805207c00af2df4a84ec3fcfa570b4" 2240 | 2241 | through2@^2.0.0: 2242 | version "2.0.3" 2243 | resolved "https://registry.yarnpkg.com/through2/-/through2-2.0.3.tgz#0004569b37c7c74ba39c43f3ced78d1ad94140be" 2244 | dependencies: 2245 | readable-stream "^2.1.5" 2246 | xtend "~4.0.1" 2247 | 2248 | "through@>=2.2.7 <3", through@^2.3.6: 2249 | version "2.3.8" 2250 | resolved "https://registry.yarnpkg.com/through/-/through-2.3.8.tgz#0dd4c9ffaabc357960b1b724115d7e0e86a2e1f5" 2251 | 2252 | timers-browserify@^1.0.1: 2253 | version "1.4.2" 2254 | resolved "https://registry.yarnpkg.com/timers-browserify/-/timers-browserify-1.4.2.tgz#c9c58b575be8407375cb5e2462dacee74359f41d" 2255 | dependencies: 2256 | process "~0.11.0" 2257 | 2258 | tmp@^0.0.29: 2259 | version "0.0.29" 2260 | resolved "https://registry.yarnpkg.com/tmp/-/tmp-0.0.29.tgz#f25125ff0dd9da3ccb0c2dd371ee1288bb9128c0" 2261 | dependencies: 2262 | os-tmpdir "~1.0.1" 2263 | 2264 | to-arraybuffer@^1.0.0: 2265 | version "1.0.1" 2266 | resolved "https://registry.yarnpkg.com/to-arraybuffer/-/to-arraybuffer-1.0.1.tgz#7d229b1fcc637e466ca081180836a7aabff83f43" 2267 | 2268 | to-fast-properties@^1.0.1: 2269 | version "1.0.2" 2270 | resolved "https://registry.yarnpkg.com/to-fast-properties/-/to-fast-properties-1.0.2.tgz#f3f5c0c3ba7299a7ef99427e44633257ade43320" 2271 | 2272 | trim-right@^1.0.1: 2273 | version "1.0.1" 2274 | resolved "https://registry.yarnpkg.com/trim-right/-/trim-right-1.0.1.tgz#cb2e1203067e0c8de1f614094b9fe45704ea6003" 2275 | 2276 | tryit@^1.0.1: 2277 | version "1.0.3" 2278 | resolved "https://registry.yarnpkg.com/tryit/-/tryit-1.0.3.tgz#393be730a9446fd1ead6da59a014308f36c289cb" 2279 | 2280 | tty-browserify@~0.0.0: 2281 | version "0.0.0" 2282 | resolved "https://registry.yarnpkg.com/tty-browserify/-/tty-browserify-0.0.0.tgz#a157ba402da24e9bf957f9aa69d524eed42901a6" 2283 | 2284 | type-check@~0.3.2: 2285 | version "0.3.2" 2286 | resolved "https://registry.yarnpkg.com/type-check/-/type-check-0.3.2.tgz#5884cab512cf1d355e3fb784f30804b2b520db72" 2287 | dependencies: 2288 | prelude-ls "~1.1.2" 2289 | 2290 | typedarray@^0.0.6, typedarray@~0.0.5: 2291 | version "0.0.6" 2292 | resolved "https://registry.yarnpkg.com/typedarray/-/typedarray-0.0.6.tgz#867ac74e3864187b1d3d47d996a78ec5c8830777" 2293 | 2294 | ua-parser-js@^0.7.9: 2295 | version "0.7.12" 2296 | resolved "https://registry.yarnpkg.com/ua-parser-js/-/ua-parser-js-0.7.12.tgz#04c81a99bdd5dc52263ea29d24c6bf8d4818a4bb" 2297 | 2298 | umd@^3.0.0: 2299 | version "3.0.1" 2300 | resolved "https://registry.yarnpkg.com/umd/-/umd-3.0.1.tgz#8ae556e11011f63c2596708a8837259f01b3d60e" 2301 | 2302 | url@~0.11.0: 2303 | version "0.11.0" 2304 | resolved "https://registry.yarnpkg.com/url/-/url-0.11.0.tgz#3838e97cfc60521eb73c525a8e55bfdd9e2e28f1" 2305 | dependencies: 2306 | punycode "1.3.2" 2307 | querystring "0.2.0" 2308 | 2309 | user-home@^2.0.0: 2310 | version "2.0.0" 2311 | resolved "https://registry.yarnpkg.com/user-home/-/user-home-2.0.0.tgz#9c70bfd8169bc1dcbf48604e0f04b8b49cde9e9f" 2312 | dependencies: 2313 | os-homedir "^1.0.0" 2314 | 2315 | util-deprecate@~1.0.1: 2316 | version "1.0.2" 2317 | resolved "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf" 2318 | 2319 | util@0.10.3, util@~0.10.1: 2320 | version "0.10.3" 2321 | resolved "https://registry.yarnpkg.com/util/-/util-0.10.3.tgz#7afb1afe50805246489e3db7fe0ed379336ac0f9" 2322 | dependencies: 2323 | inherits "2.0.1" 2324 | 2325 | vm-browserify@~0.0.1: 2326 | version "0.0.4" 2327 | resolved "https://registry.yarnpkg.com/vm-browserify/-/vm-browserify-0.0.4.tgz#5d7ea45bbef9e4a6ff65f95438e0a87c357d5a73" 2328 | dependencies: 2329 | indexof "0.0.1" 2330 | 2331 | whatwg-fetch@>=0.10.0: 2332 | version "2.0.2" 2333 | resolved "https://registry.yarnpkg.com/whatwg-fetch/-/whatwg-fetch-2.0.2.tgz#fe294d1d89e36c5be8b3195057f2e4bc74fc980e" 2334 | 2335 | winston@^2.2.0: 2336 | version "2.3.1" 2337 | resolved "https://registry.yarnpkg.com/winston/-/winston-2.3.1.tgz#0b48420d978c01804cf0230b648861598225a119" 2338 | dependencies: 2339 | async "~1.0.0" 2340 | colors "1.0.x" 2341 | cycle "1.0.x" 2342 | eyes "0.1.x" 2343 | isstream "0.1.x" 2344 | stack-trace "0.0.x" 2345 | 2346 | wordwrap@~1.0.0: 2347 | version "1.0.0" 2348 | resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-1.0.0.tgz#27584810891456a4171c8d0226441ade90cbcaeb" 2349 | 2350 | wrappy@1: 2351 | version "1.0.2" 2352 | resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f" 2353 | 2354 | write@^0.2.1: 2355 | version "0.2.1" 2356 | resolved "https://registry.yarnpkg.com/write/-/write-0.2.1.tgz#5fc03828e264cea3fe91455476f7a3c566cb0757" 2357 | dependencies: 2358 | mkdirp "^0.5.1" 2359 | 2360 | xtend@^4.0.0, xtend@~4.0.1: 2361 | version "4.0.1" 2362 | resolved "https://registry.yarnpkg.com/xtend/-/xtend-4.0.1.tgz#a5c6d532be656e23db820efb943a1f04998d63af" 2363 | --------------------------------------------------------------------------------