├── .gitignore ├── .npmignore ├── LICENSE ├── README.md ├── icon.png ├── index.js ├── package.json ├── src └── index.js └── yarn.lock /.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 | _assets/plugin.js 28 | -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | !_assets 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | Apache License 2 | Version 2.0, January 2004 3 | http://www.apache.org/licenses/ 4 | 5 | TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION 6 | 7 | 1. Definitions. 8 | 9 | "License" shall mean the terms and conditions for use, reproduction, 10 | and distribution as defined by Sections 1 through 9 of this document. 11 | 12 | "Licensor" shall mean the copyright owner or entity authorized by 13 | the copyright owner that is granting the License. 14 | 15 | "Legal Entity" shall mean the union of the acting entity and all 16 | other entities that control, are controlled by, or are under common 17 | control with that entity. For the purposes of this definition, 18 | "control" means (i) the power, direct or indirect, to cause the 19 | direction or management of such entity, whether by contract or 20 | otherwise, or (ii) ownership of fifty percent (50%) or more of the 21 | outstanding shares, or (iii) beneficial ownership of such entity. 22 | 23 | "You" (or "Your") shall mean an individual or Legal Entity 24 | exercising permissions granted by this License. 25 | 26 | "Source" form shall mean the preferred form for making modifications, 27 | including but not limited to software source code, documentation 28 | source, and configuration files. 29 | 30 | "Object" form shall mean any form resulting from mechanical 31 | transformation or translation of a Source form, including but 32 | not limited to compiled object code, generated documentation, 33 | and conversions to other media types. 34 | 35 | "Work" shall mean the work of authorship, whether in Source or 36 | Object form, made available under the License, as indicated by a 37 | copyright notice that is included in or attached to the work 38 | (an example is provided in the Appendix below). 39 | 40 | "Derivative Works" shall mean any work, whether in Source or Object 41 | form, that is based on (or derived from) the Work and for which the 42 | editorial revisions, annotations, elaborations, or other modifications 43 | represent, as a whole, an original work of authorship. For the purposes 44 | of this License, Derivative Works shall not include works that remain 45 | separable from, or merely link (or bind by name) to the interfaces of, 46 | the Work and Derivative Works thereof. 47 | 48 | "Contribution" shall mean any work of authorship, including 49 | the original version of the Work and any modifications or additions 50 | to that Work or Derivative Works thereof, that is intentionally 51 | submitted to Licensor for inclusion in the Work by the copyright owner 52 | or by an individual or Legal Entity authorized to submit on behalf of 53 | the copyright owner. For the purposes of this definition, "submitted" 54 | means any form of electronic, verbal, or written communication sent 55 | to the Licensor or its representatives, including but not limited to 56 | communication on electronic mailing lists, source code control systems, 57 | and issue tracking systems that are managed by, or on behalf of, the 58 | Licensor for the purpose of discussing and improving the Work, but 59 | excluding communication that is conspicuously marked or otherwise 60 | designated in writing by the copyright owner as "Not a Contribution." 61 | 62 | "Contributor" shall mean Licensor and any individual or Legal Entity 63 | on behalf of whom a Contribution has been received by Licensor and 64 | subsequently incorporated within the Work. 65 | 66 | 2. Grant of Copyright License. Subject to the terms and conditions of 67 | this License, each Contributor hereby grants to You a perpetual, 68 | worldwide, non-exclusive, no-charge, royalty-free, irrevocable 69 | copyright license to reproduce, prepare Derivative Works of, 70 | publicly display, publicly perform, sublicense, and distribute the 71 | Work and such Derivative Works in Source or Object form. 72 | 73 | 3. Grant of Patent License. Subject to the terms and conditions of 74 | this License, each Contributor hereby grants to You a perpetual, 75 | worldwide, non-exclusive, no-charge, royalty-free, irrevocable 76 | (except as stated in this section) patent license to make, have made, 77 | use, offer to sell, sell, import, and otherwise transfer the Work, 78 | where such license applies only to those patent claims licensable 79 | by such Contributor that are necessarily infringed by their 80 | Contribution(s) alone or by combination of their Contribution(s) 81 | with the Work to which such Contribution(s) was submitted. If You 82 | institute patent litigation against any entity (including a 83 | cross-claim or counterclaim in a lawsuit) alleging that the Work 84 | or a Contribution incorporated within the Work constitutes direct 85 | or contributory patent infringement, then any patent licenses 86 | granted to You under this License for that Work shall terminate 87 | as of the date such litigation is filed. 88 | 89 | 4. Redistribution. You may reproduce and distribute copies of the 90 | Work or Derivative Works thereof in any medium, with or without 91 | modifications, and in Source or Object form, provided that You 92 | meet the following conditions: 93 | 94 | (a) You must give any other recipients of the Work or 95 | Derivative Works a copy of this License; and 96 | 97 | (b) You must cause any modified files to carry prominent notices 98 | stating that You changed the files; and 99 | 100 | (c) You must retain, in the Source form of any Derivative Works 101 | that You distribute, all copyright, patent, trademark, and 102 | attribution notices from the Source form of the Work, 103 | excluding those notices that do not pertain to any part of 104 | the Derivative Works; and 105 | 106 | (d) If the Work includes a "NOTICE" text file as part of its 107 | distribution, then any Derivative Works that You distribute must 108 | include a readable copy of the attribution notices contained 109 | within such NOTICE file, excluding those notices that do not 110 | pertain to any part of the Derivative Works, in at least one 111 | of the following places: within a NOTICE text file distributed 112 | as part of the Derivative Works; within the Source form or 113 | documentation, if provided along with the Derivative Works; or, 114 | within a display generated by the Derivative Works, if and 115 | wherever such third-party notices normally appear. The contents 116 | of the NOTICE file are for informational purposes only and 117 | do not modify the License. You may add Your own attribution 118 | notices within Derivative Works that You distribute, alongside 119 | or as an addendum to the NOTICE text from the Work, provided 120 | that such additional attribution notices cannot be construed 121 | as modifying the License. 122 | 123 | You may add Your own copyright statement to Your modifications and 124 | may provide additional or different license terms and conditions 125 | for use, reproduction, or distribution of Your modifications, or 126 | for any such Derivative Works as a whole, provided Your use, 127 | reproduction, and distribution of the Work otherwise complies with 128 | the conditions stated in this License. 129 | 130 | 5. Submission of Contributions. Unless You explicitly state otherwise, 131 | any Contribution intentionally submitted for inclusion in the Work 132 | by You to the Licensor shall be under the terms and conditions of 133 | this License, without any additional terms or conditions. 134 | Notwithstanding the above, nothing herein shall supersede or modify 135 | the terms of any separate license agreement you may have executed 136 | with Licensor regarding such Contributions. 137 | 138 | 6. Trademarks. This License does not grant permission to use the trade 139 | names, trademarks, service marks, or product names of the Licensor, 140 | except as required for reasonable and customary use in describing the 141 | origin of the Work and reproducing the content of the NOTICE file. 142 | 143 | 7. Disclaimer of Warranty. Unless required by applicable law or 144 | agreed to in writing, Licensor provides the Work (and each 145 | Contributor provides its Contributions) on an "AS IS" BASIS, 146 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or 147 | implied, including, without limitation, any warranties or conditions 148 | of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A 149 | PARTICULAR PURPOSE. You are solely responsible for determining the 150 | appropriateness of using or redistributing the Work and assume any 151 | risks associated with Your exercise of permissions under this License. 152 | 153 | 8. Limitation of Liability. In no event and under no legal theory, 154 | whether in tort (including negligence), contract, or otherwise, 155 | unless required by applicable law (such as deliberate and grossly 156 | negligent acts) or agreed to in writing, shall any Contributor be 157 | liable to You for damages, including any direct, indirect, special, 158 | incidental, or consequential damages of any character arising as a 159 | result of this License or out of the use or inability to use the 160 | Work (including but not limited to damages for loss of goodwill, 161 | work stoppage, computer failure or malfunction, or any and all 162 | other commercial damages or losses), even if such Contributor 163 | has been advised of the possibility of such damages. 164 | 165 | 9. Accepting Warranty or Additional Liability. While redistributing 166 | the Work or Derivative Works thereof, You may choose to offer, 167 | and charge a fee for, acceptance of support, warranty, indemnity, 168 | or other liability obligations and/or rights consistent with this 169 | License. However, in accepting such obligations, You may act only 170 | on Your own behalf and on Your sole responsibility, not on behalf 171 | of any other Contributor, and only if You agree to indemnify, 172 | defend, and hold each Contributor harmless for any liability 173 | incurred by, or claims asserted against, such Contributor by reason 174 | of your accepting any such warranty or additional liability. 175 | 176 | END OF TERMS AND CONDITIONS 177 | 178 | APPENDIX: How to apply the Apache License to your work. 179 | 180 | To apply the Apache License to your work, attach the following 181 | boilerplate notice, with the fields enclosed by brackets "{}" 182 | replaced with your own identifying information. (Don't include 183 | the brackets!) The text should be enclosed in the appropriate 184 | comment syntax for the file format. We also recommend that a 185 | file or class name and description of purpose be included on the 186 | same "printed page" as the copyright notice for easier 187 | identification within third-party archives. 188 | 189 | Copyright {yyyy} {name of copyright owner} 190 | 191 | Licensed under the Apache License, Version 2.0 (the "License"); 192 | you may not use this file except in compliance with the License. 193 | You may obtain a copy of the License at 194 | 195 | http://www.apache.org/licenses/LICENSE-2.0 196 | 197 | Unless required by applicable law or agreed to in writing, software 198 | distributed under the License is distributed on an "AS IS" BASIS, 199 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 200 | See the License for the specific language governing permissions and 201 | limitations under the License. -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | Google Analytics tracking for GitBook 2 | ============== 3 | 4 | You can use install it via **NPM**: 5 | 6 | ``` 7 | $ npm install gitbook-plugin-ga 8 | ``` 9 | 10 | And use it for your book with in the book.json: 11 | 12 | ``` 13 | { 14 | "plugins": ["ga"] 15 | } 16 | ``` 17 | 18 | You can set the Google Analytics tracking ID using the plugins configuration in the book.json: 19 | 20 | ``` 21 | { 22 | "plugins": ["ga"], 23 | "pluginsConfig": { 24 | "ga": { 25 | "token": "UA-XXXX-Y" 26 | } 27 | } 28 | } 29 | ``` 30 | 31 | You can customize the tracker object by passing additional configuration options. You can either pass in `auto`, `none` or an object: 32 | 33 | ``` 34 | { 35 | "plugins": ["ga"], 36 | "pluginsConfig": { 37 | "ga": { 38 | "token": "UA-XXXX-Y", 39 | "configuration": { 40 | "cookieName": "new_cookie_name", 41 | "cookieDomain": "mynew.domain.com" 42 | } 43 | } 44 | } 45 | } 46 | ``` 47 | 48 | For an overview of all available configuration parameters, please refer to the [analytics.js field reference](https://developers.google.com/analytics/devguides/collection/analyticsjs/field-reference#create). 49 | -------------------------------------------------------------------------------- /icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitbookIO/plugin-ga/05356de42b60e693a5420247be6743c4ee0ec017/icon.png -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | book: { 3 | assets: "./book", 4 | js: [ 5 | "plugin.js" 6 | ] 7 | } 8 | }; 9 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "gitbook-plugin-ga", 3 | "title": "Google Analytics", 4 | "description": "Track page views of your book into Google Analytics", 5 | "main": "index.js", 6 | "icon": "./icon.png", 7 | "browser": "./_assets/plugin.js", 8 | "version": "2.0.0", 9 | "engines": { 10 | "gitbook": ">=4.0.0-alpha.0" 11 | }, 12 | "devDependencies": { 13 | "gitbook-plugin": "^4.0.0-alpha.4" 14 | }, 15 | "scripts": { 16 | "prepublish": "gitbook-plugin build ./src/index.js ./_assets/plugin.js" 17 | }, 18 | "homepage": "https://github.com/GitbookIO/plugin-ga", 19 | "repository": { 20 | "type": "git", 21 | "url": "https://github.com/GitbookIO/plugin-ga.git" 22 | }, 23 | "license": "Apache-2.0", 24 | "bugs": { 25 | "url": "https://github.com/GitbookIO/plugin-ga/issues" 26 | }, 27 | "gitbook": { 28 | "properties": { 29 | "token": { 30 | "type": "string", 31 | "title": "Tracking ID", 32 | "required": true 33 | }, 34 | "configuration": { 35 | "type": "string", 36 | "title": "Configuration mode", 37 | "default": "auto" 38 | } 39 | } 40 | } 41 | } 42 | -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- 1 | const GitBook = require('gitbook-core'); 2 | const { React } = GitBook; 3 | 4 | /** 5 | * Ga wrapper to track page view. 6 | * @type {ReactClass} 7 | */ 8 | let GAWrapper = React.createClass({ 9 | propTypes: { 10 | children: React.PropTypes.node, 11 | config: GitBook.PropTypes.map.isRequired, 12 | location: GitBook.PropTypes.Location.isRequired 13 | }, 14 | 15 | componentDidMount() { 16 | const { config } = this.props; 17 | 18 | // Load ga 19 | (function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){ 20 | (i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o), 21 | m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m) 22 | })(window,document,'script','//www.google-analytics.com/analytics.js','ga'); 23 | 24 | // Initialize ga 25 | ga('create', config.get('token'), config.get('configuration')); 26 | }, 27 | 28 | componentDidUpdate(prevProps) { 29 | const { location: prevLocation } = prevProps; 30 | const { location } = this.props; 31 | 32 | // We do not track hash change 33 | const hasChanged = !prevLocation.delete('hash').equals(location.delete('hash')); 34 | 35 | if (hasChanged) { 36 | ga('send', 'pageview', location.toString()); 37 | } 38 | }, 39 | 40 | render() { 41 | const { children } = this.props; 42 | return children ? React.Children.only(children) : null; 43 | } 44 | }); 45 | GAWrapper = GitBook.connect( 46 | GAWrapper, 47 | ({ history, config }) => ({ 48 | location: history.location, 49 | config: config.getForPlugin('ga') 50 | }) 51 | ); 52 | 53 | module.exports = GitBook.createPlugin({ 54 | activate: (dispatch, getState, { Components }) => { 55 | dispatch(Components.registerComponent(GAWrapper, { role: 'website:body' })); 56 | } 57 | }); 58 | -------------------------------------------------------------------------------- /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@^1.0.3: 13 | version "1.2.2" 14 | resolved "https://registry.yarnpkg.com/acorn/-/acorn-1.2.2.tgz#c8ce27de0acc76d896d2b1fad3df588d9e82f014" 15 | 16 | acorn@^2.7.0: 17 | version "2.7.0" 18 | resolved "https://registry.yarnpkg.com/acorn/-/acorn-2.7.0.tgz#ab6e7d9d886aaca8b085bc3312b79a198433f0e7" 19 | 20 | acorn@^3.1.0: 21 | version "3.3.0" 22 | resolved "https://registry.yarnpkg.com/acorn/-/acorn-3.3.0.tgz#45e37fb39e8da3f25baee3ff5369e2bb5f22017a" 23 | 24 | ansi-escapes@^1.1.0: 25 | version "1.4.0" 26 | resolved "https://registry.yarnpkg.com/ansi-escapes/-/ansi-escapes-1.4.0.tgz#d3a8a83b319aa67793662b13e761c7911422306e" 27 | 28 | ansi-regex@^2.0.0: 29 | version "2.1.1" 30 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-2.1.1.tgz#c3b33ab5ee360d86e0e628f0468ae7ef27d654df" 31 | 32 | ansi-styles@^2.2.1: 33 | version "2.2.1" 34 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-2.2.1.tgz#b432dd3358b634cf75e1e4664368240533c1ddbe" 35 | 36 | array-filter@~0.0.0: 37 | version "0.0.1" 38 | resolved "https://registry.yarnpkg.com/array-filter/-/array-filter-0.0.1.tgz#7da8cf2e26628ed732803581fd21f67cacd2eeec" 39 | 40 | array-map@~0.0.0: 41 | version "0.0.0" 42 | resolved "https://registry.yarnpkg.com/array-map/-/array-map-0.0.0.tgz#88a2bab73d1cf7bcd5c1b118a003f66f665fa662" 43 | 44 | array-reduce@~0.0.0: 45 | version "0.0.0" 46 | resolved "https://registry.yarnpkg.com/array-reduce/-/array-reduce-0.0.0.tgz#173899d3ffd1c7d9383e4479525dbe278cab5f2b" 47 | 48 | asn1.js@^4.0.0: 49 | version "4.9.1" 50 | resolved "https://registry.yarnpkg.com/asn1.js/-/asn1.js-4.9.1.tgz#48ba240b45a9280e94748990ba597d216617fd40" 51 | dependencies: 52 | bn.js "^4.0.0" 53 | inherits "^2.0.1" 54 | minimalistic-assert "^1.0.0" 55 | 56 | assert@^1.4.0: 57 | version "1.4.1" 58 | resolved "https://registry.yarnpkg.com/assert/-/assert-1.4.1.tgz#99912d591836b5a6f5b345c0f07eefc08fc65d91" 59 | dependencies: 60 | util "0.10.3" 61 | 62 | astw@^2.0.0: 63 | version "2.0.0" 64 | resolved "https://registry.yarnpkg.com/astw/-/astw-2.0.0.tgz#08121ac8288d35611c0ceec663f6cd545604897d" 65 | dependencies: 66 | acorn "^1.0.3" 67 | 68 | async@~1.0.0: 69 | version "1.0.0" 70 | resolved "https://registry.yarnpkg.com/async/-/async-1.0.0.tgz#f8fc04ca3a13784ade9e1641af98578cfbd647a9" 71 | 72 | babel-code-frame@^6.22.0: 73 | version "6.22.0" 74 | resolved "https://registry.yarnpkg.com/babel-code-frame/-/babel-code-frame-6.22.0.tgz#027620bee567a88c32561574e7fd0801d33118e4" 75 | dependencies: 76 | chalk "^1.1.0" 77 | esutils "^2.0.2" 78 | js-tokens "^3.0.0" 79 | 80 | babel-core@^6.0.14, babel-core@^6.23.0: 81 | version "6.23.1" 82 | resolved "https://registry.yarnpkg.com/babel-core/-/babel-core-6.23.1.tgz#c143cb621bb2f621710c220c5d579d15b8a442df" 83 | dependencies: 84 | babel-code-frame "^6.22.0" 85 | babel-generator "^6.23.0" 86 | babel-helpers "^6.23.0" 87 | babel-messages "^6.23.0" 88 | babel-register "^6.23.0" 89 | babel-runtime "^6.22.0" 90 | babel-template "^6.23.0" 91 | babel-traverse "^6.23.1" 92 | babel-types "^6.23.0" 93 | babylon "^6.11.0" 94 | convert-source-map "^1.1.0" 95 | debug "^2.1.1" 96 | json5 "^0.5.0" 97 | lodash "^4.2.0" 98 | minimatch "^3.0.2" 99 | path-is-absolute "^1.0.0" 100 | private "^0.1.6" 101 | slash "^1.0.0" 102 | source-map "^0.5.0" 103 | 104 | babel-generator@^6.23.0: 105 | version "6.23.0" 106 | resolved "https://registry.yarnpkg.com/babel-generator/-/babel-generator-6.23.0.tgz#6b8edab956ef3116f79d8c84c5a3c05f32a74bc5" 107 | dependencies: 108 | babel-messages "^6.23.0" 109 | babel-runtime "^6.22.0" 110 | babel-types "^6.23.0" 111 | detect-indent "^4.0.0" 112 | jsesc "^1.3.0" 113 | lodash "^4.2.0" 114 | source-map "^0.5.0" 115 | trim-right "^1.0.1" 116 | 117 | babel-helper-builder-react-jsx@^6.23.0: 118 | version "6.23.0" 119 | resolved "https://registry.yarnpkg.com/babel-helper-builder-react-jsx/-/babel-helper-builder-react-jsx-6.23.0.tgz#d53fc8c996e0bc56d0de0fc4cc55a7138395ea4b" 120 | dependencies: 121 | babel-runtime "^6.22.0" 122 | babel-types "^6.23.0" 123 | esutils "^2.0.0" 124 | lodash "^4.2.0" 125 | 126 | babel-helper-call-delegate@^6.22.0: 127 | version "6.22.0" 128 | resolved "https://registry.yarnpkg.com/babel-helper-call-delegate/-/babel-helper-call-delegate-6.22.0.tgz#119921b56120f17e9dae3f74b4f5cc7bcc1b37ef" 129 | dependencies: 130 | babel-helper-hoist-variables "^6.22.0" 131 | babel-runtime "^6.22.0" 132 | babel-traverse "^6.22.0" 133 | babel-types "^6.22.0" 134 | 135 | babel-helper-define-map@^6.23.0: 136 | version "6.23.0" 137 | resolved "https://registry.yarnpkg.com/babel-helper-define-map/-/babel-helper-define-map-6.23.0.tgz#1444f960c9691d69a2ced6a205315f8fd00804e7" 138 | dependencies: 139 | babel-helper-function-name "^6.23.0" 140 | babel-runtime "^6.22.0" 141 | babel-types "^6.23.0" 142 | lodash "^4.2.0" 143 | 144 | babel-helper-function-name@^6.22.0, babel-helper-function-name@^6.23.0: 145 | version "6.23.0" 146 | resolved "https://registry.yarnpkg.com/babel-helper-function-name/-/babel-helper-function-name-6.23.0.tgz#25742d67175c8903dbe4b6cb9d9e1fcb8dcf23a6" 147 | dependencies: 148 | babel-helper-get-function-arity "^6.22.0" 149 | babel-runtime "^6.22.0" 150 | babel-template "^6.23.0" 151 | babel-traverse "^6.23.0" 152 | babel-types "^6.23.0" 153 | 154 | babel-helper-get-function-arity@^6.22.0: 155 | version "6.22.0" 156 | resolved "https://registry.yarnpkg.com/babel-helper-get-function-arity/-/babel-helper-get-function-arity-6.22.0.tgz#0beb464ad69dc7347410ac6ade9f03a50634f5ce" 157 | dependencies: 158 | babel-runtime "^6.22.0" 159 | babel-types "^6.22.0" 160 | 161 | babel-helper-hoist-variables@^6.22.0: 162 | version "6.22.0" 163 | resolved "https://registry.yarnpkg.com/babel-helper-hoist-variables/-/babel-helper-hoist-variables-6.22.0.tgz#3eacbf731d80705845dd2e9718f600cfb9b4ba72" 164 | dependencies: 165 | babel-runtime "^6.22.0" 166 | babel-types "^6.22.0" 167 | 168 | babel-helper-optimise-call-expression@^6.23.0: 169 | version "6.23.0" 170 | resolved "https://registry.yarnpkg.com/babel-helper-optimise-call-expression/-/babel-helper-optimise-call-expression-6.23.0.tgz#f3ee7eed355b4282138b33d02b78369e470622f5" 171 | dependencies: 172 | babel-runtime "^6.22.0" 173 | babel-types "^6.23.0" 174 | 175 | babel-helper-regex@^6.22.0: 176 | version "6.22.0" 177 | resolved "https://registry.yarnpkg.com/babel-helper-regex/-/babel-helper-regex-6.22.0.tgz#79f532be1647b1f0ee3474b5f5c3da58001d247d" 178 | dependencies: 179 | babel-runtime "^6.22.0" 180 | babel-types "^6.22.0" 181 | lodash "^4.2.0" 182 | 183 | babel-helper-replace-supers@^6.22.0, babel-helper-replace-supers@^6.23.0: 184 | version "6.23.0" 185 | resolved "https://registry.yarnpkg.com/babel-helper-replace-supers/-/babel-helper-replace-supers-6.23.0.tgz#eeaf8ad9b58ec4337ca94223bacdca1f8d9b4bfd" 186 | dependencies: 187 | babel-helper-optimise-call-expression "^6.23.0" 188 | babel-messages "^6.23.0" 189 | babel-runtime "^6.22.0" 190 | babel-template "^6.23.0" 191 | babel-traverse "^6.23.0" 192 | babel-types "^6.23.0" 193 | 194 | babel-helpers@^6.23.0: 195 | version "6.23.0" 196 | resolved "https://registry.yarnpkg.com/babel-helpers/-/babel-helpers-6.23.0.tgz#4f8f2e092d0b6a8808a4bde79c27f1e2ecf0d992" 197 | dependencies: 198 | babel-runtime "^6.22.0" 199 | babel-template "^6.23.0" 200 | 201 | babel-messages@^6.23.0: 202 | version "6.23.0" 203 | resolved "https://registry.yarnpkg.com/babel-messages/-/babel-messages-6.23.0.tgz#f3cdf4703858035b2a2951c6ec5edf6c62f2630e" 204 | dependencies: 205 | babel-runtime "^6.22.0" 206 | 207 | babel-plugin-check-es2015-constants@^6.22.0: 208 | version "6.22.0" 209 | resolved "https://registry.yarnpkg.com/babel-plugin-check-es2015-constants/-/babel-plugin-check-es2015-constants-6.22.0.tgz#35157b101426fd2ffd3da3f75c7d1e91835bbf8a" 210 | dependencies: 211 | babel-runtime "^6.22.0" 212 | 213 | babel-plugin-syntax-flow@^6.18.0: 214 | version "6.18.0" 215 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-flow/-/babel-plugin-syntax-flow-6.18.0.tgz#4c3ab20a2af26aa20cd25995c398c4eb70310c8d" 216 | 217 | babel-plugin-syntax-jsx@^6.3.13, babel-plugin-syntax-jsx@^6.8.0: 218 | version "6.18.0" 219 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-jsx/-/babel-plugin-syntax-jsx-6.18.0.tgz#0af32a9a6e13ca7a3fd5069e62d7b0f58d0d8946" 220 | 221 | babel-plugin-transform-es2015-arrow-functions@^6.22.0: 222 | version "6.22.0" 223 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-arrow-functions/-/babel-plugin-transform-es2015-arrow-functions-6.22.0.tgz#452692cb711d5f79dc7f85e440ce41b9f244d221" 224 | dependencies: 225 | babel-runtime "^6.22.0" 226 | 227 | babel-plugin-transform-es2015-block-scoped-functions@^6.22.0: 228 | version "6.22.0" 229 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-block-scoped-functions/-/babel-plugin-transform-es2015-block-scoped-functions-6.22.0.tgz#bbc51b49f964d70cb8d8e0b94e820246ce3a6141" 230 | dependencies: 231 | babel-runtime "^6.22.0" 232 | 233 | babel-plugin-transform-es2015-block-scoping@^6.22.0: 234 | version "6.23.0" 235 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-block-scoping/-/babel-plugin-transform-es2015-block-scoping-6.23.0.tgz#e48895cf0b375be148cd7c8879b422707a053b51" 236 | dependencies: 237 | babel-runtime "^6.22.0" 238 | babel-template "^6.23.0" 239 | babel-traverse "^6.23.0" 240 | babel-types "^6.23.0" 241 | lodash "^4.2.0" 242 | 243 | babel-plugin-transform-es2015-classes@^6.22.0: 244 | version "6.23.0" 245 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-classes/-/babel-plugin-transform-es2015-classes-6.23.0.tgz#49b53f326202a2fd1b3bbaa5e2edd8a4f78643c1" 246 | dependencies: 247 | babel-helper-define-map "^6.23.0" 248 | babel-helper-function-name "^6.23.0" 249 | babel-helper-optimise-call-expression "^6.23.0" 250 | babel-helper-replace-supers "^6.23.0" 251 | babel-messages "^6.23.0" 252 | babel-runtime "^6.22.0" 253 | babel-template "^6.23.0" 254 | babel-traverse "^6.23.0" 255 | babel-types "^6.23.0" 256 | 257 | babel-plugin-transform-es2015-computed-properties@^6.22.0: 258 | version "6.22.0" 259 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-computed-properties/-/babel-plugin-transform-es2015-computed-properties-6.22.0.tgz#7c383e9629bba4820c11b0425bdd6290f7f057e7" 260 | dependencies: 261 | babel-runtime "^6.22.0" 262 | babel-template "^6.22.0" 263 | 264 | babel-plugin-transform-es2015-destructuring@^6.22.0: 265 | version "6.23.0" 266 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-destructuring/-/babel-plugin-transform-es2015-destructuring-6.23.0.tgz#997bb1f1ab967f682d2b0876fe358d60e765c56d" 267 | dependencies: 268 | babel-runtime "^6.22.0" 269 | 270 | babel-plugin-transform-es2015-duplicate-keys@^6.22.0: 271 | version "6.22.0" 272 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-duplicate-keys/-/babel-plugin-transform-es2015-duplicate-keys-6.22.0.tgz#672397031c21610d72dd2bbb0ba9fb6277e1c36b" 273 | dependencies: 274 | babel-runtime "^6.22.0" 275 | babel-types "^6.22.0" 276 | 277 | babel-plugin-transform-es2015-for-of@^6.22.0: 278 | version "6.23.0" 279 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-for-of/-/babel-plugin-transform-es2015-for-of-6.23.0.tgz#f47c95b2b613df1d3ecc2fdb7573623c75248691" 280 | dependencies: 281 | babel-runtime "^6.22.0" 282 | 283 | babel-plugin-transform-es2015-function-name@^6.22.0: 284 | version "6.22.0" 285 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-function-name/-/babel-plugin-transform-es2015-function-name-6.22.0.tgz#f5fcc8b09093f9a23c76ac3d9e392c3ec4b77104" 286 | dependencies: 287 | babel-helper-function-name "^6.22.0" 288 | babel-runtime "^6.22.0" 289 | babel-types "^6.22.0" 290 | 291 | babel-plugin-transform-es2015-literals@^6.22.0: 292 | version "6.22.0" 293 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-literals/-/babel-plugin-transform-es2015-literals-6.22.0.tgz#4f54a02d6cd66cf915280019a31d31925377ca2e" 294 | dependencies: 295 | babel-runtime "^6.22.0" 296 | 297 | babel-plugin-transform-es2015-modules-amd@^6.22.0: 298 | version "6.22.0" 299 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-amd/-/babel-plugin-transform-es2015-modules-amd-6.22.0.tgz#bf69cd34889a41c33d90dfb740e0091ccff52f21" 300 | dependencies: 301 | babel-plugin-transform-es2015-modules-commonjs "^6.22.0" 302 | babel-runtime "^6.22.0" 303 | babel-template "^6.22.0" 304 | 305 | babel-plugin-transform-es2015-modules-commonjs@^6.22.0: 306 | version "6.23.0" 307 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-commonjs/-/babel-plugin-transform-es2015-modules-commonjs-6.23.0.tgz#cba7aa6379fb7ec99250e6d46de2973aaffa7b92" 308 | dependencies: 309 | babel-plugin-transform-strict-mode "^6.22.0" 310 | babel-runtime "^6.22.0" 311 | babel-template "^6.23.0" 312 | babel-types "^6.23.0" 313 | 314 | babel-plugin-transform-es2015-modules-systemjs@^6.22.0: 315 | version "6.23.0" 316 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-systemjs/-/babel-plugin-transform-es2015-modules-systemjs-6.23.0.tgz#ae3469227ffac39b0310d90fec73bfdc4f6317b0" 317 | dependencies: 318 | babel-helper-hoist-variables "^6.22.0" 319 | babel-runtime "^6.22.0" 320 | babel-template "^6.23.0" 321 | 322 | babel-plugin-transform-es2015-modules-umd@^6.22.0: 323 | version "6.23.0" 324 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-umd/-/babel-plugin-transform-es2015-modules-umd-6.23.0.tgz#8d284ae2e19ed8fe21d2b1b26d6e7e0fcd94f0f1" 325 | dependencies: 326 | babel-plugin-transform-es2015-modules-amd "^6.22.0" 327 | babel-runtime "^6.22.0" 328 | babel-template "^6.23.0" 329 | 330 | babel-plugin-transform-es2015-object-super@^6.22.0: 331 | version "6.22.0" 332 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-object-super/-/babel-plugin-transform-es2015-object-super-6.22.0.tgz#daa60e114a042ea769dd53fe528fc82311eb98fc" 333 | dependencies: 334 | babel-helper-replace-supers "^6.22.0" 335 | babel-runtime "^6.22.0" 336 | 337 | babel-plugin-transform-es2015-parameters@^6.22.0: 338 | version "6.23.0" 339 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-parameters/-/babel-plugin-transform-es2015-parameters-6.23.0.tgz#3a2aabb70c8af945d5ce386f1a4250625a83ae3b" 340 | dependencies: 341 | babel-helper-call-delegate "^6.22.0" 342 | babel-helper-get-function-arity "^6.22.0" 343 | babel-runtime "^6.22.0" 344 | babel-template "^6.23.0" 345 | babel-traverse "^6.23.0" 346 | babel-types "^6.23.0" 347 | 348 | babel-plugin-transform-es2015-shorthand-properties@^6.22.0: 349 | version "6.22.0" 350 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-shorthand-properties/-/babel-plugin-transform-es2015-shorthand-properties-6.22.0.tgz#8ba776e0affaa60bff21e921403b8a652a2ff723" 351 | dependencies: 352 | babel-runtime "^6.22.0" 353 | babel-types "^6.22.0" 354 | 355 | babel-plugin-transform-es2015-spread@^6.22.0: 356 | version "6.22.0" 357 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-spread/-/babel-plugin-transform-es2015-spread-6.22.0.tgz#d6d68a99f89aedc4536c81a542e8dd9f1746f8d1" 358 | dependencies: 359 | babel-runtime "^6.22.0" 360 | 361 | babel-plugin-transform-es2015-sticky-regex@^6.22.0: 362 | version "6.22.0" 363 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-sticky-regex/-/babel-plugin-transform-es2015-sticky-regex-6.22.0.tgz#ab316829e866ee3f4b9eb96939757d19a5bc4593" 364 | dependencies: 365 | babel-helper-regex "^6.22.0" 366 | babel-runtime "^6.22.0" 367 | babel-types "^6.22.0" 368 | 369 | babel-plugin-transform-es2015-template-literals@^6.22.0: 370 | version "6.22.0" 371 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-template-literals/-/babel-plugin-transform-es2015-template-literals-6.22.0.tgz#a84b3450f7e9f8f1f6839d6d687da84bb1236d8d" 372 | dependencies: 373 | babel-runtime "^6.22.0" 374 | 375 | babel-plugin-transform-es2015-typeof-symbol@^6.22.0: 376 | version "6.23.0" 377 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-typeof-symbol/-/babel-plugin-transform-es2015-typeof-symbol-6.23.0.tgz#dec09f1cddff94b52ac73d505c84df59dcceb372" 378 | dependencies: 379 | babel-runtime "^6.22.0" 380 | 381 | babel-plugin-transform-es2015-unicode-regex@^6.22.0: 382 | version "6.22.0" 383 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-unicode-regex/-/babel-plugin-transform-es2015-unicode-regex-6.22.0.tgz#8d9cc27e7ee1decfe65454fb986452a04a613d20" 384 | dependencies: 385 | babel-helper-regex "^6.22.0" 386 | babel-runtime "^6.22.0" 387 | regexpu-core "^2.0.0" 388 | 389 | babel-plugin-transform-flow-strip-types@^6.22.0: 390 | version "6.22.0" 391 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-flow-strip-types/-/babel-plugin-transform-flow-strip-types-6.22.0.tgz#84cb672935d43714fdc32bce84568d87441cf7cf" 392 | dependencies: 393 | babel-plugin-syntax-flow "^6.18.0" 394 | babel-runtime "^6.22.0" 395 | 396 | babel-plugin-transform-react-display-name@^6.23.0: 397 | version "6.23.0" 398 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-react-display-name/-/babel-plugin-transform-react-display-name-6.23.0.tgz#4398910c358441dc4cef18787264d0412ed36b37" 399 | dependencies: 400 | babel-runtime "^6.22.0" 401 | 402 | babel-plugin-transform-react-jsx-self@^6.22.0: 403 | version "6.22.0" 404 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-react-jsx-self/-/babel-plugin-transform-react-jsx-self-6.22.0.tgz#df6d80a9da2612a121e6ddd7558bcbecf06e636e" 405 | dependencies: 406 | babel-plugin-syntax-jsx "^6.8.0" 407 | babel-runtime "^6.22.0" 408 | 409 | babel-plugin-transform-react-jsx-source@^6.22.0: 410 | version "6.22.0" 411 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-react-jsx-source/-/babel-plugin-transform-react-jsx-source-6.22.0.tgz#66ac12153f5cd2d17b3c19268f4bf0197f44ecd6" 412 | dependencies: 413 | babel-plugin-syntax-jsx "^6.8.0" 414 | babel-runtime "^6.22.0" 415 | 416 | babel-plugin-transform-react-jsx@^6.23.0: 417 | version "6.23.0" 418 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-react-jsx/-/babel-plugin-transform-react-jsx-6.23.0.tgz#23e892f7f2e759678eb5e4446a8f8e94e81b3470" 419 | dependencies: 420 | babel-helper-builder-react-jsx "^6.23.0" 421 | babel-plugin-syntax-jsx "^6.8.0" 422 | babel-runtime "^6.22.0" 423 | 424 | babel-plugin-transform-regenerator@^6.22.0: 425 | version "6.22.0" 426 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-regenerator/-/babel-plugin-transform-regenerator-6.22.0.tgz#65740593a319c44522157538d690b84094617ea6" 427 | dependencies: 428 | regenerator-transform "0.9.8" 429 | 430 | babel-plugin-transform-strict-mode@^6.22.0: 431 | version "6.22.0" 432 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-strict-mode/-/babel-plugin-transform-strict-mode-6.22.0.tgz#e008df01340fdc87e959da65991b7e05970c8c7c" 433 | dependencies: 434 | babel-runtime "^6.22.0" 435 | babel-types "^6.22.0" 436 | 437 | babel-preset-es2015@^6.14.0: 438 | version "6.22.0" 439 | resolved "https://registry.yarnpkg.com/babel-preset-es2015/-/babel-preset-es2015-6.22.0.tgz#af5a98ecb35eb8af764ad8a5a05eb36dc4386835" 440 | dependencies: 441 | babel-plugin-check-es2015-constants "^6.22.0" 442 | babel-plugin-transform-es2015-arrow-functions "^6.22.0" 443 | babel-plugin-transform-es2015-block-scoped-functions "^6.22.0" 444 | babel-plugin-transform-es2015-block-scoping "^6.22.0" 445 | babel-plugin-transform-es2015-classes "^6.22.0" 446 | babel-plugin-transform-es2015-computed-properties "^6.22.0" 447 | babel-plugin-transform-es2015-destructuring "^6.22.0" 448 | babel-plugin-transform-es2015-duplicate-keys "^6.22.0" 449 | babel-plugin-transform-es2015-for-of "^6.22.0" 450 | babel-plugin-transform-es2015-function-name "^6.22.0" 451 | babel-plugin-transform-es2015-literals "^6.22.0" 452 | babel-plugin-transform-es2015-modules-amd "^6.22.0" 453 | babel-plugin-transform-es2015-modules-commonjs "^6.22.0" 454 | babel-plugin-transform-es2015-modules-systemjs "^6.22.0" 455 | babel-plugin-transform-es2015-modules-umd "^6.22.0" 456 | babel-plugin-transform-es2015-object-super "^6.22.0" 457 | babel-plugin-transform-es2015-parameters "^6.22.0" 458 | babel-plugin-transform-es2015-shorthand-properties "^6.22.0" 459 | babel-plugin-transform-es2015-spread "^6.22.0" 460 | babel-plugin-transform-es2015-sticky-regex "^6.22.0" 461 | babel-plugin-transform-es2015-template-literals "^6.22.0" 462 | babel-plugin-transform-es2015-typeof-symbol "^6.22.0" 463 | babel-plugin-transform-es2015-unicode-regex "^6.22.0" 464 | babel-plugin-transform-regenerator "^6.22.0" 465 | 466 | babel-preset-flow@^6.23.0: 467 | version "6.23.0" 468 | resolved "https://registry.yarnpkg.com/babel-preset-flow/-/babel-preset-flow-6.23.0.tgz#e71218887085ae9a24b5be4169affb599816c49d" 469 | dependencies: 470 | babel-plugin-transform-flow-strip-types "^6.22.0" 471 | 472 | babel-preset-react@^6.11.1: 473 | version "6.23.0" 474 | resolved "https://registry.yarnpkg.com/babel-preset-react/-/babel-preset-react-6.23.0.tgz#eb7cee4de98a3f94502c28565332da9819455195" 475 | dependencies: 476 | babel-plugin-syntax-jsx "^6.3.13" 477 | babel-plugin-transform-react-display-name "^6.23.0" 478 | babel-plugin-transform-react-jsx "^6.23.0" 479 | babel-plugin-transform-react-jsx-self "^6.22.0" 480 | babel-plugin-transform-react-jsx-source "^6.22.0" 481 | babel-preset-flow "^6.23.0" 482 | 483 | babel-register@^6.23.0: 484 | version "6.23.0" 485 | resolved "https://registry.yarnpkg.com/babel-register/-/babel-register-6.23.0.tgz#c9aa3d4cca94b51da34826c4a0f9e08145d74ff3" 486 | dependencies: 487 | babel-core "^6.23.0" 488 | babel-runtime "^6.22.0" 489 | core-js "^2.4.0" 490 | home-or-tmp "^2.0.0" 491 | lodash "^4.2.0" 492 | mkdirp "^0.5.1" 493 | source-map-support "^0.4.2" 494 | 495 | babel-runtime@^6.18.0, babel-runtime@^6.22.0: 496 | version "6.23.0" 497 | resolved "https://registry.yarnpkg.com/babel-runtime/-/babel-runtime-6.23.0.tgz#0a9489f144de70efb3ce4300accdb329e2fc543b" 498 | dependencies: 499 | core-js "^2.4.0" 500 | regenerator-runtime "^0.10.0" 501 | 502 | babel-template@^6.22.0, babel-template@^6.23.0: 503 | version "6.23.0" 504 | resolved "https://registry.yarnpkg.com/babel-template/-/babel-template-6.23.0.tgz#04d4f270adbb3aa704a8143ae26faa529238e638" 505 | dependencies: 506 | babel-runtime "^6.22.0" 507 | babel-traverse "^6.23.0" 508 | babel-types "^6.23.0" 509 | babylon "^6.11.0" 510 | lodash "^4.2.0" 511 | 512 | babel-traverse@^6.22.0, babel-traverse@^6.23.0, babel-traverse@^6.23.1: 513 | version "6.23.1" 514 | resolved "https://registry.yarnpkg.com/babel-traverse/-/babel-traverse-6.23.1.tgz#d3cb59010ecd06a97d81310065f966b699e14f48" 515 | dependencies: 516 | babel-code-frame "^6.22.0" 517 | babel-messages "^6.23.0" 518 | babel-runtime "^6.22.0" 519 | babel-types "^6.23.0" 520 | babylon "^6.15.0" 521 | debug "^2.2.0" 522 | globals "^9.0.0" 523 | invariant "^2.2.0" 524 | lodash "^4.2.0" 525 | 526 | babel-types@^6.19.0, babel-types@^6.22.0, babel-types@^6.23.0: 527 | version "6.23.0" 528 | resolved "https://registry.yarnpkg.com/babel-types/-/babel-types-6.23.0.tgz#bb17179d7538bad38cd0c9e115d340f77e7e9acf" 529 | dependencies: 530 | babel-runtime "^6.22.0" 531 | esutils "^2.0.2" 532 | lodash "^4.2.0" 533 | to-fast-properties "^1.0.1" 534 | 535 | babelify@^7.3.0: 536 | version "7.3.0" 537 | resolved "https://registry.yarnpkg.com/babelify/-/babelify-7.3.0.tgz#aa56aede7067fd7bd549666ee16dc285087e88e5" 538 | dependencies: 539 | babel-core "^6.0.14" 540 | object-assign "^4.0.0" 541 | 542 | babylon@^6.11.0, babylon@^6.15.0: 543 | version "6.15.0" 544 | resolved "https://registry.yarnpkg.com/babylon/-/babylon-6.15.0.tgz#ba65cfa1a80e1759b0e89fb562e27dccae70348e" 545 | 546 | balanced-match@^0.4.1: 547 | version "0.4.2" 548 | resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-0.4.2.tgz#cb3f3e3c732dc0f01ee70b403f302e61d7709838" 549 | 550 | base64-js@^1.0.2: 551 | version "1.2.0" 552 | resolved "https://registry.yarnpkg.com/base64-js/-/base64-js-1.2.0.tgz#a39992d723584811982be5e290bb6a53d86700f1" 553 | 554 | bn.js@^4.0.0, bn.js@^4.1.0, bn.js@^4.1.1, bn.js@^4.4.0: 555 | version "4.11.6" 556 | resolved "https://registry.yarnpkg.com/bn.js/-/bn.js-4.11.6.tgz#53344adb14617a13f6e8dd2ce28905d1c0ba3215" 557 | 558 | brace-expansion@^1.0.0: 559 | version "1.1.6" 560 | resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.6.tgz#7197d7eaa9b87e648390ea61fc66c84427420df9" 561 | dependencies: 562 | balanced-match "^0.4.1" 563 | concat-map "0.0.1" 564 | 565 | brorand@^1.0.1: 566 | version "1.0.7" 567 | resolved "https://registry.yarnpkg.com/brorand/-/brorand-1.0.7.tgz#6677fa5e4901bdbf9c9ec2a748e28dca407a9bfc" 568 | 569 | browser-pack@^6.0.1: 570 | version "6.0.2" 571 | resolved "https://registry.yarnpkg.com/browser-pack/-/browser-pack-6.0.2.tgz#f86cd6cef4f5300c8e63e07a4d512f65fbff4531" 572 | dependencies: 573 | JSONStream "^1.0.3" 574 | combine-source-map "~0.7.1" 575 | defined "^1.0.0" 576 | through2 "^2.0.0" 577 | umd "^3.0.0" 578 | 579 | browser-resolve@^1.11.0, browser-resolve@^1.7.0: 580 | version "1.11.2" 581 | resolved "https://registry.yarnpkg.com/browser-resolve/-/browser-resolve-1.11.2.tgz#8ff09b0a2c421718a1051c260b32e48f442938ce" 582 | dependencies: 583 | resolve "1.1.7" 584 | 585 | browserify-aes@^1.0.0, browserify-aes@^1.0.4: 586 | version "1.0.6" 587 | resolved "https://registry.yarnpkg.com/browserify-aes/-/browserify-aes-1.0.6.tgz#5e7725dbdef1fd5930d4ebab48567ce451c48a0a" 588 | dependencies: 589 | buffer-xor "^1.0.2" 590 | cipher-base "^1.0.0" 591 | create-hash "^1.1.0" 592 | evp_bytestokey "^1.0.0" 593 | inherits "^2.0.1" 594 | 595 | browserify-cipher@^1.0.0: 596 | version "1.0.0" 597 | resolved "https://registry.yarnpkg.com/browserify-cipher/-/browserify-cipher-1.0.0.tgz#9988244874bf5ed4e28da95666dcd66ac8fc363a" 598 | dependencies: 599 | browserify-aes "^1.0.4" 600 | browserify-des "^1.0.0" 601 | evp_bytestokey "^1.0.0" 602 | 603 | browserify-des@^1.0.0: 604 | version "1.0.0" 605 | resolved "https://registry.yarnpkg.com/browserify-des/-/browserify-des-1.0.0.tgz#daa277717470922ed2fe18594118a175439721dd" 606 | dependencies: 607 | cipher-base "^1.0.1" 608 | des.js "^1.0.0" 609 | inherits "^2.0.1" 610 | 611 | browserify-rsa@^4.0.0: 612 | version "4.0.1" 613 | resolved "https://registry.yarnpkg.com/browserify-rsa/-/browserify-rsa-4.0.1.tgz#21e0abfaf6f2029cf2fafb133567a701d4135524" 614 | dependencies: 615 | bn.js "^4.1.0" 616 | randombytes "^2.0.1" 617 | 618 | browserify-sign@^4.0.0: 619 | version "4.0.0" 620 | resolved "https://registry.yarnpkg.com/browserify-sign/-/browserify-sign-4.0.0.tgz#10773910c3c206d5420a46aad8694f820b85968f" 621 | dependencies: 622 | bn.js "^4.1.1" 623 | browserify-rsa "^4.0.0" 624 | create-hash "^1.1.0" 625 | create-hmac "^1.1.2" 626 | elliptic "^6.0.0" 627 | inherits "^2.0.1" 628 | parse-asn1 "^5.0.0" 629 | 630 | browserify-zlib@~0.1.2: 631 | version "0.1.4" 632 | resolved "https://registry.yarnpkg.com/browserify-zlib/-/browserify-zlib-0.1.4.tgz#bb35f8a519f600e0fa6b8485241c979d0141fb2d" 633 | dependencies: 634 | pako "~0.2.0" 635 | 636 | browserify@^13.1.0: 637 | version "13.3.0" 638 | resolved "https://registry.yarnpkg.com/browserify/-/browserify-13.3.0.tgz#b5a9c9020243f0c70e4675bec8223bc627e415ce" 639 | dependencies: 640 | JSONStream "^1.0.3" 641 | assert "^1.4.0" 642 | browser-pack "^6.0.1" 643 | browser-resolve "^1.11.0" 644 | browserify-zlib "~0.1.2" 645 | buffer "^4.1.0" 646 | cached-path-relative "^1.0.0" 647 | concat-stream "~1.5.1" 648 | console-browserify "^1.1.0" 649 | constants-browserify "~1.0.0" 650 | crypto-browserify "^3.0.0" 651 | defined "^1.0.0" 652 | deps-sort "^2.0.0" 653 | domain-browser "~1.1.0" 654 | duplexer2 "~0.1.2" 655 | events "~1.1.0" 656 | glob "^7.1.0" 657 | has "^1.0.0" 658 | htmlescape "^1.1.0" 659 | https-browserify "~0.0.0" 660 | inherits "~2.0.1" 661 | insert-module-globals "^7.0.0" 662 | labeled-stream-splicer "^2.0.0" 663 | module-deps "^4.0.8" 664 | os-browserify "~0.1.1" 665 | parents "^1.0.1" 666 | path-browserify "~0.0.0" 667 | process "~0.11.0" 668 | punycode "^1.3.2" 669 | querystring-es3 "~0.2.0" 670 | read-only-stream "^2.0.0" 671 | readable-stream "^2.0.2" 672 | resolve "^1.1.4" 673 | shasum "^1.0.0" 674 | shell-quote "^1.6.1" 675 | stream-browserify "^2.0.0" 676 | stream-http "^2.0.0" 677 | string_decoder "~0.10.0" 678 | subarg "^1.0.0" 679 | syntax-error "^1.1.1" 680 | through2 "^2.0.0" 681 | timers-browserify "^1.0.1" 682 | tty-browserify "~0.0.0" 683 | url "~0.11.0" 684 | util "~0.10.1" 685 | vm-browserify "~0.0.1" 686 | xtend "^4.0.0" 687 | 688 | buffer-shims@^1.0.0: 689 | version "1.0.0" 690 | resolved "https://registry.yarnpkg.com/buffer-shims/-/buffer-shims-1.0.0.tgz#9978ce317388c649ad8793028c3477ef044a8b51" 691 | 692 | buffer-xor@^1.0.2: 693 | version "1.0.3" 694 | resolved "https://registry.yarnpkg.com/buffer-xor/-/buffer-xor-1.0.3.tgz#26e61ed1422fb70dd42e6e36729ed51d855fe8d9" 695 | 696 | buffer@^4.1.0: 697 | version "4.9.1" 698 | resolved "https://registry.yarnpkg.com/buffer/-/buffer-4.9.1.tgz#6d1bb601b07a4efced97094132093027c95bc298" 699 | dependencies: 700 | base64-js "^1.0.2" 701 | ieee754 "^1.1.4" 702 | isarray "^1.0.0" 703 | 704 | builtin-status-codes@^3.0.0: 705 | version "3.0.0" 706 | resolved "https://registry.yarnpkg.com/builtin-status-codes/-/builtin-status-codes-3.0.0.tgz#85982878e21b98e1c66425e03d0174788f569ee8" 707 | 708 | cached-path-relative@^1.0.0: 709 | version "1.0.1" 710 | resolved "https://registry.yarnpkg.com/cached-path-relative/-/cached-path-relative-1.0.1.tgz#d09c4b52800aa4c078e2dd81a869aac90d2e54e7" 711 | 712 | chalk@^1.0.0, chalk@^1.1.0: 713 | version "1.1.3" 714 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-1.1.3.tgz#a8115c55e4a702fe4d150abd3872822a7e09fc98" 715 | dependencies: 716 | ansi-styles "^2.2.1" 717 | escape-string-regexp "^1.0.2" 718 | has-ansi "^2.0.0" 719 | strip-ansi "^3.0.0" 720 | supports-color "^2.0.0" 721 | 722 | cipher-base@^1.0.0, cipher-base@^1.0.1: 723 | version "1.0.3" 724 | resolved "https://registry.yarnpkg.com/cipher-base/-/cipher-base-1.0.3.tgz#eeabf194419ce900da3018c207d212f2a6df0a07" 725 | dependencies: 726 | inherits "^2.0.1" 727 | 728 | cli-cursor@^1.0.1: 729 | version "1.0.2" 730 | resolved "https://registry.yarnpkg.com/cli-cursor/-/cli-cursor-1.0.2.tgz#64da3f7d56a54412e59794bd62dc35295e8f2987" 731 | dependencies: 732 | restore-cursor "^1.0.1" 733 | 734 | cli-width@^2.0.0: 735 | version "2.1.0" 736 | resolved "https://registry.yarnpkg.com/cli-width/-/cli-width-2.1.0.tgz#b234ca209b29ef66fc518d9b98d5847b00edf00a" 737 | 738 | code-point-at@^1.0.0: 739 | version "1.1.0" 740 | resolved "https://registry.yarnpkg.com/code-point-at/-/code-point-at-1.1.0.tgz#0d070b4d043a5bea33a2f1a40e2edb3d9a4ccf77" 741 | 742 | colors@1.0.x: 743 | version "1.0.3" 744 | resolved "https://registry.yarnpkg.com/colors/-/colors-1.0.3.tgz#0433f44d809680fdeb60ed260f1b0c262e82a40b" 745 | 746 | combine-source-map@~0.7.1: 747 | version "0.7.2" 748 | resolved "https://registry.yarnpkg.com/combine-source-map/-/combine-source-map-0.7.2.tgz#0870312856b307a87cc4ac486f3a9a62aeccc09e" 749 | dependencies: 750 | convert-source-map "~1.1.0" 751 | inline-source-map "~0.6.0" 752 | lodash.memoize "~3.0.3" 753 | source-map "~0.5.3" 754 | 755 | commander@^2.9.0: 756 | version "2.9.0" 757 | resolved "https://registry.yarnpkg.com/commander/-/commander-2.9.0.tgz#9c99094176e12240cb22d6c5146098400fe0f7d4" 758 | dependencies: 759 | graceful-readlink ">= 1.0.0" 760 | 761 | concat-map@0.0.1: 762 | version "0.0.1" 763 | resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b" 764 | 765 | concat-stream@^1.4.7: 766 | version "1.6.0" 767 | resolved "https://registry.yarnpkg.com/concat-stream/-/concat-stream-1.6.0.tgz#0aac662fd52be78964d5532f694784e70110acf7" 768 | dependencies: 769 | inherits "^2.0.3" 770 | readable-stream "^2.2.2" 771 | typedarray "^0.0.6" 772 | 773 | concat-stream@~1.5.0, concat-stream@~1.5.1: 774 | version "1.5.2" 775 | resolved "https://registry.yarnpkg.com/concat-stream/-/concat-stream-1.5.2.tgz#708978624d856af41a5a741defdd261da752c266" 776 | dependencies: 777 | inherits "~2.0.1" 778 | readable-stream "~2.0.0" 779 | typedarray "~0.0.5" 780 | 781 | console-browserify@^1.1.0: 782 | version "1.1.0" 783 | resolved "https://registry.yarnpkg.com/console-browserify/-/console-browserify-1.1.0.tgz#f0241c45730a9fc6323b206dbf38edc741d0bb10" 784 | dependencies: 785 | date-now "^0.1.4" 786 | 787 | constants-browserify@~1.0.0: 788 | version "1.0.0" 789 | resolved "https://registry.yarnpkg.com/constants-browserify/-/constants-browserify-1.0.0.tgz#c20b96d8c617748aaf1c16021760cd27fcb8cb75" 790 | 791 | convert-source-map@^1.1.0: 792 | version "1.4.0" 793 | resolved "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-1.4.0.tgz#e3dad195bf61bfe13a7a3c73e9876ec14a0268f3" 794 | 795 | convert-source-map@~1.1.0: 796 | version "1.1.3" 797 | resolved "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-1.1.3.tgz#4829c877e9fe49b3161f3bf3673888e204699860" 798 | 799 | core-js@^2.4.0: 800 | version "2.4.1" 801 | resolved "https://registry.yarnpkg.com/core-js/-/core-js-2.4.1.tgz#4de911e667b0eae9124e34254b53aea6fc618d3e" 802 | 803 | core-util-is@~1.0.0: 804 | version "1.0.2" 805 | resolved "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.2.tgz#b5fd54220aa2bc5ab57aab7140c940754503c1a7" 806 | 807 | create-ecdh@^4.0.0: 808 | version "4.0.0" 809 | resolved "https://registry.yarnpkg.com/create-ecdh/-/create-ecdh-4.0.0.tgz#888c723596cdf7612f6498233eebd7a35301737d" 810 | dependencies: 811 | bn.js "^4.1.0" 812 | elliptic "^6.0.0" 813 | 814 | create-hash@^1.1.0, create-hash@^1.1.1: 815 | version "1.1.2" 816 | resolved "https://registry.yarnpkg.com/create-hash/-/create-hash-1.1.2.tgz#51210062d7bb7479f6c65bb41a92208b1d61abad" 817 | dependencies: 818 | cipher-base "^1.0.1" 819 | inherits "^2.0.1" 820 | ripemd160 "^1.0.0" 821 | sha.js "^2.3.6" 822 | 823 | create-hmac@^1.1.0, create-hmac@^1.1.2: 824 | version "1.1.4" 825 | resolved "https://registry.yarnpkg.com/create-hmac/-/create-hmac-1.1.4.tgz#d3fb4ba253eb8b3f56e39ea2fbcb8af747bd3170" 826 | dependencies: 827 | create-hash "^1.1.0" 828 | inherits "^2.0.1" 829 | 830 | crypto-browserify@^3.0.0: 831 | version "3.11.0" 832 | resolved "https://registry.yarnpkg.com/crypto-browserify/-/crypto-browserify-3.11.0.tgz#3652a0906ab9b2a7e0c3ce66a408e957a2485522" 833 | dependencies: 834 | browserify-cipher "^1.0.0" 835 | browserify-sign "^4.0.0" 836 | create-ecdh "^4.0.0" 837 | create-hash "^1.1.0" 838 | create-hmac "^1.1.0" 839 | diffie-hellman "^5.0.0" 840 | inherits "^2.0.1" 841 | pbkdf2 "^3.0.3" 842 | public-encrypt "^4.0.0" 843 | randombytes "^2.0.0" 844 | 845 | cycle@1.0.x: 846 | version "1.0.3" 847 | resolved "https://registry.yarnpkg.com/cycle/-/cycle-1.0.3.tgz#21e80b2be8580f98b468f379430662b046c34ad2" 848 | 849 | date-now@^0.1.4: 850 | version "0.1.4" 851 | resolved "https://registry.yarnpkg.com/date-now/-/date-now-0.1.4.tgz#eaf439fd4d4848ad74e5cc7dbef200672b9e345b" 852 | 853 | debug@^2.1.1, debug@^2.2.0: 854 | version "2.6.1" 855 | resolved "https://registry.yarnpkg.com/debug/-/debug-2.6.1.tgz#79855090ba2c4e3115cc7d8769491d58f0491351" 856 | dependencies: 857 | ms "0.7.2" 858 | 859 | defined@^1.0.0: 860 | version "1.0.0" 861 | resolved "https://registry.yarnpkg.com/defined/-/defined-1.0.0.tgz#c98d9bcef75674188e110969151199e39b1fa693" 862 | 863 | deps-sort@^2.0.0: 864 | version "2.0.0" 865 | resolved "https://registry.yarnpkg.com/deps-sort/-/deps-sort-2.0.0.tgz#091724902e84658260eb910748cccd1af6e21fb5" 866 | dependencies: 867 | JSONStream "^1.0.3" 868 | shasum "^1.0.0" 869 | subarg "^1.0.0" 870 | through2 "^2.0.0" 871 | 872 | des.js@^1.0.0: 873 | version "1.0.0" 874 | resolved "https://registry.yarnpkg.com/des.js/-/des.js-1.0.0.tgz#c074d2e2aa6a8a9a07dbd61f9a15c2cd83ec8ecc" 875 | dependencies: 876 | inherits "^2.0.1" 877 | minimalistic-assert "^1.0.0" 878 | 879 | detect-indent@^4.0.0: 880 | version "4.0.0" 881 | resolved "https://registry.yarnpkg.com/detect-indent/-/detect-indent-4.0.0.tgz#f76d064352cdf43a1cb6ce619c4ee3a9475de208" 882 | dependencies: 883 | repeating "^2.0.0" 884 | 885 | detective@^4.0.0: 886 | version "4.3.2" 887 | resolved "https://registry.yarnpkg.com/detective/-/detective-4.3.2.tgz#77697e2e7947ac3fe7c8e26a6d6f115235afa91c" 888 | dependencies: 889 | acorn "^3.1.0" 890 | defined "^1.0.0" 891 | 892 | diffie-hellman@^5.0.0: 893 | version "5.0.2" 894 | resolved "https://registry.yarnpkg.com/diffie-hellman/-/diffie-hellman-5.0.2.tgz#b5835739270cfe26acf632099fded2a07f209e5e" 895 | dependencies: 896 | bn.js "^4.1.0" 897 | miller-rabin "^4.0.0" 898 | randombytes "^2.0.0" 899 | 900 | domain-browser@~1.1.0: 901 | version "1.1.7" 902 | resolved "https://registry.yarnpkg.com/domain-browser/-/domain-browser-1.1.7.tgz#867aa4b093faa05f1de08c06f4d7b21fdf8698bc" 903 | 904 | duplexer2@^0.1.2, duplexer2@~0.1.0, duplexer2@~0.1.2: 905 | version "0.1.4" 906 | resolved "https://registry.yarnpkg.com/duplexer2/-/duplexer2-0.1.4.tgz#8b12dab878c0d69e3e7891051662a32fc6bddcc1" 907 | dependencies: 908 | readable-stream "^2.0.2" 909 | 910 | elliptic@^6.0.0: 911 | version "6.3.3" 912 | resolved "https://registry.yarnpkg.com/elliptic/-/elliptic-6.3.3.tgz#5482d9646d54bcb89fd7d994fc9e2e9568876e3f" 913 | dependencies: 914 | bn.js "^4.4.0" 915 | brorand "^1.0.1" 916 | hash.js "^1.0.0" 917 | inherits "^2.0.1" 918 | 919 | escape-string-regexp@^1.0.2, escape-string-regexp@^1.0.5: 920 | version "1.0.5" 921 | resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4" 922 | 923 | esutils@^2.0.0, esutils@^2.0.2: 924 | version "2.0.2" 925 | resolved "https://registry.yarnpkg.com/esutils/-/esutils-2.0.2.tgz#0abf4f1caa5bcb1f7a9d8acc6dea4faaa04bac9b" 926 | 927 | events@~1.1.0: 928 | version "1.1.1" 929 | resolved "https://registry.yarnpkg.com/events/-/events-1.1.1.tgz#9ebdb7635ad099c70dcc4c2a1f5004288e8bd924" 930 | 931 | evp_bytestokey@^1.0.0: 932 | version "1.0.0" 933 | resolved "https://registry.yarnpkg.com/evp_bytestokey/-/evp_bytestokey-1.0.0.tgz#497b66ad9fef65cd7c08a6180824ba1476b66e53" 934 | dependencies: 935 | create-hash "^1.1.1" 936 | 937 | exit-hook@^1.0.0: 938 | version "1.1.1" 939 | resolved "https://registry.yarnpkg.com/exit-hook/-/exit-hook-1.1.1.tgz#f05ca233b48c05d54fff07765df8507e95c02ff8" 940 | 941 | extend@^3.0.0: 942 | version "3.0.0" 943 | resolved "https://registry.yarnpkg.com/extend/-/extend-3.0.0.tgz#5a474353b9f3353ddd8176dfd37b91c83a46f1d4" 944 | 945 | external-editor@^1.1.0: 946 | version "1.1.1" 947 | resolved "https://registry.yarnpkg.com/external-editor/-/external-editor-1.1.1.tgz#12d7b0db850f7ff7e7081baf4005700060c4600b" 948 | dependencies: 949 | extend "^3.0.0" 950 | spawn-sync "^1.0.15" 951 | tmp "^0.0.29" 952 | 953 | eyes@0.1.x: 954 | version "0.1.8" 955 | resolved "https://registry.yarnpkg.com/eyes/-/eyes-0.1.8.tgz#62cf120234c683785d902348a800ef3e0cc20bc0" 956 | 957 | figures@^1.3.5: 958 | version "1.7.0" 959 | resolved "https://registry.yarnpkg.com/figures/-/figures-1.7.0.tgz#cbe1e3affcf1cd44b80cadfed28dc793a9701d2e" 960 | dependencies: 961 | escape-string-regexp "^1.0.5" 962 | object-assign "^4.1.0" 963 | 964 | fs-extra@^0.30.0: 965 | version "0.30.0" 966 | resolved "https://registry.yarnpkg.com/fs-extra/-/fs-extra-0.30.0.tgz#f233ffcc08d4da7d432daa449776989db1df93f0" 967 | dependencies: 968 | graceful-fs "^4.1.2" 969 | jsonfile "^2.1.0" 970 | klaw "^1.0.0" 971 | path-is-absolute "^1.0.0" 972 | rimraf "^2.2.8" 973 | 974 | fs.realpath@^1.0.0: 975 | version "1.0.0" 976 | resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f" 977 | 978 | function-bind@^1.0.2: 979 | version "1.1.0" 980 | resolved "https://registry.yarnpkg.com/function-bind/-/function-bind-1.1.0.tgz#16176714c801798e4e8f2cf7f7529467bb4a5771" 981 | 982 | gitbook-plugin@^4.0.0-alpha.4: 983 | version "4.0.0-alpha.4" 984 | resolved "https://registry.yarnpkg.com/gitbook-plugin/-/gitbook-plugin-4.0.0-alpha.4.tgz#cd92d311198ca3c289470b7aa25114330b58a04a" 985 | dependencies: 986 | babel-preset-es2015 "^6.14.0" 987 | babel-preset-react "^6.11.1" 988 | babelify "^7.3.0" 989 | browserify "^13.1.0" 990 | commander "^2.9.0" 991 | fs-extra "^0.30.0" 992 | inquirer "^1.1.3" 993 | q "^1.4.1" 994 | winston "^2.2.0" 995 | 996 | glob@^7.0.5, glob@^7.1.0: 997 | version "7.1.1" 998 | resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.1.tgz#805211df04faaf1c63a3600306cdf5ade50b2ec8" 999 | dependencies: 1000 | fs.realpath "^1.0.0" 1001 | inflight "^1.0.4" 1002 | inherits "2" 1003 | minimatch "^3.0.2" 1004 | once "^1.3.0" 1005 | path-is-absolute "^1.0.0" 1006 | 1007 | globals@^9.0.0: 1008 | version "9.16.0" 1009 | resolved "https://registry.yarnpkg.com/globals/-/globals-9.16.0.tgz#63e903658171ec2d9f51b1d31de5e2b8dc01fb80" 1010 | 1011 | graceful-fs@^4.1.2, graceful-fs@^4.1.6, graceful-fs@^4.1.9: 1012 | version "4.1.11" 1013 | resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.1.11.tgz#0e8bdfe4d1ddb8854d64e04ea7c00e2a026e5658" 1014 | 1015 | "graceful-readlink@>= 1.0.0": 1016 | version "1.0.1" 1017 | resolved "https://registry.yarnpkg.com/graceful-readlink/-/graceful-readlink-1.0.1.tgz#4cafad76bc62f02fa039b2f94e9a3dd3a391a725" 1018 | 1019 | has-ansi@^2.0.0: 1020 | version "2.0.0" 1021 | resolved "https://registry.yarnpkg.com/has-ansi/-/has-ansi-2.0.0.tgz#34f5049ce1ecdf2b0649af3ef24e45ed35416d91" 1022 | dependencies: 1023 | ansi-regex "^2.0.0" 1024 | 1025 | has@^1.0.0: 1026 | version "1.0.1" 1027 | resolved "https://registry.yarnpkg.com/has/-/has-1.0.1.tgz#8461733f538b0837c9361e39a9ab9e9704dc2f28" 1028 | dependencies: 1029 | function-bind "^1.0.2" 1030 | 1031 | hash.js@^1.0.0: 1032 | version "1.0.3" 1033 | resolved "https://registry.yarnpkg.com/hash.js/-/hash.js-1.0.3.tgz#1332ff00156c0a0ffdd8236013d07b77a0451573" 1034 | dependencies: 1035 | inherits "^2.0.1" 1036 | 1037 | home-or-tmp@^2.0.0: 1038 | version "2.0.0" 1039 | resolved "https://registry.yarnpkg.com/home-or-tmp/-/home-or-tmp-2.0.0.tgz#e36c3f2d2cae7d746a857e38d18d5f32a7882db8" 1040 | dependencies: 1041 | os-homedir "^1.0.0" 1042 | os-tmpdir "^1.0.1" 1043 | 1044 | htmlescape@^1.1.0: 1045 | version "1.1.1" 1046 | resolved "https://registry.yarnpkg.com/htmlescape/-/htmlescape-1.1.1.tgz#3a03edc2214bca3b66424a3e7959349509cb0351" 1047 | 1048 | https-browserify@~0.0.0: 1049 | version "0.0.1" 1050 | resolved "https://registry.yarnpkg.com/https-browserify/-/https-browserify-0.0.1.tgz#3f91365cabe60b77ed0ebba24b454e3e09d95a82" 1051 | 1052 | ieee754@^1.1.4: 1053 | version "1.1.8" 1054 | resolved "https://registry.yarnpkg.com/ieee754/-/ieee754-1.1.8.tgz#be33d40ac10ef1926701f6f08a2d86fbfd1ad3e4" 1055 | 1056 | indexof@0.0.1: 1057 | version "0.0.1" 1058 | resolved "https://registry.yarnpkg.com/indexof/-/indexof-0.0.1.tgz#82dc336d232b9062179d05ab3293a66059fd435d" 1059 | 1060 | inflight@^1.0.4: 1061 | version "1.0.6" 1062 | resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9" 1063 | dependencies: 1064 | once "^1.3.0" 1065 | wrappy "1" 1066 | 1067 | inherits@2, inherits@^2.0.1, inherits@^2.0.3, inherits@~2.0.1: 1068 | version "2.0.3" 1069 | resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.3.tgz#633c2c83e3da42a502f52466022480f4208261de" 1070 | 1071 | inherits@2.0.1: 1072 | version "2.0.1" 1073 | resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.1.tgz#b17d08d326b4423e568eff719f91b0b1cbdf69f1" 1074 | 1075 | inline-source-map@~0.6.0: 1076 | version "0.6.2" 1077 | resolved "https://registry.yarnpkg.com/inline-source-map/-/inline-source-map-0.6.2.tgz#f9393471c18a79d1724f863fa38b586370ade2a5" 1078 | dependencies: 1079 | source-map "~0.5.3" 1080 | 1081 | inquirer@^1.1.3: 1082 | version "1.2.3" 1083 | resolved "https://registry.yarnpkg.com/inquirer/-/inquirer-1.2.3.tgz#4dec6f32f37ef7bb0b2ed3f1d1a5c3f545074918" 1084 | dependencies: 1085 | ansi-escapes "^1.1.0" 1086 | chalk "^1.0.0" 1087 | cli-cursor "^1.0.1" 1088 | cli-width "^2.0.0" 1089 | external-editor "^1.1.0" 1090 | figures "^1.3.5" 1091 | lodash "^4.3.0" 1092 | mute-stream "0.0.6" 1093 | pinkie-promise "^2.0.0" 1094 | run-async "^2.2.0" 1095 | rx "^4.1.0" 1096 | string-width "^1.0.1" 1097 | strip-ansi "^3.0.0" 1098 | through "^2.3.6" 1099 | 1100 | insert-module-globals@^7.0.0: 1101 | version "7.0.1" 1102 | resolved "https://registry.yarnpkg.com/insert-module-globals/-/insert-module-globals-7.0.1.tgz#c03bf4e01cb086d5b5e5ace8ad0afe7889d638c3" 1103 | dependencies: 1104 | JSONStream "^1.0.3" 1105 | combine-source-map "~0.7.1" 1106 | concat-stream "~1.5.1" 1107 | is-buffer "^1.1.0" 1108 | lexical-scope "^1.2.0" 1109 | process "~0.11.0" 1110 | through2 "^2.0.0" 1111 | xtend "^4.0.0" 1112 | 1113 | invariant@^2.2.0: 1114 | version "2.2.2" 1115 | resolved "https://registry.yarnpkg.com/invariant/-/invariant-2.2.2.tgz#9e1f56ac0acdb6bf303306f338be3b204ae60360" 1116 | dependencies: 1117 | loose-envify "^1.0.0" 1118 | 1119 | is-buffer@^1.1.0: 1120 | version "1.1.4" 1121 | resolved "https://registry.yarnpkg.com/is-buffer/-/is-buffer-1.1.4.tgz#cfc86ccd5dc5a52fa80489111c6920c457e2d98b" 1122 | 1123 | is-finite@^1.0.0: 1124 | version "1.0.2" 1125 | resolved "https://registry.yarnpkg.com/is-finite/-/is-finite-1.0.2.tgz#cc6677695602be550ef11e8b4aa6305342b6d0aa" 1126 | dependencies: 1127 | number-is-nan "^1.0.0" 1128 | 1129 | is-fullwidth-code-point@^1.0.0: 1130 | version "1.0.0" 1131 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz#ef9e31386f031a7f0d643af82fde50c457ef00cb" 1132 | dependencies: 1133 | number-is-nan "^1.0.0" 1134 | 1135 | is-promise@^2.1.0: 1136 | version "2.1.0" 1137 | resolved "https://registry.yarnpkg.com/is-promise/-/is-promise-2.1.0.tgz#79a2a9ece7f096e80f36d2b2f3bc16c1ff4bf3fa" 1138 | 1139 | isarray@^1.0.0, isarray@~1.0.0: 1140 | version "1.0.0" 1141 | resolved "https://registry.yarnpkg.com/isarray/-/isarray-1.0.0.tgz#bb935d48582cba168c06834957a54a3e07124f11" 1142 | 1143 | isarray@~0.0.1: 1144 | version "0.0.1" 1145 | resolved "https://registry.yarnpkg.com/isarray/-/isarray-0.0.1.tgz#8a18acfca9a8f4177e09abfc6038939b05d1eedf" 1146 | 1147 | isstream@0.1.x: 1148 | version "0.1.2" 1149 | resolved "https://registry.yarnpkg.com/isstream/-/isstream-0.1.2.tgz#47e63f7af55afa6f92e1500e690eb8b8529c099a" 1150 | 1151 | js-tokens@^3.0.0: 1152 | version "3.0.1" 1153 | resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-3.0.1.tgz#08e9f132484a2c45a30907e9dc4d5567b7f114d7" 1154 | 1155 | jsesc@^1.3.0: 1156 | version "1.3.0" 1157 | resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-1.3.0.tgz#46c3fec8c1892b12b0833db9bc7622176dbab34b" 1158 | 1159 | jsesc@~0.5.0: 1160 | version "0.5.0" 1161 | resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-0.5.0.tgz#e7dee66e35d6fc16f710fe91d5cf69f70f08911d" 1162 | 1163 | json-stable-stringify@~0.0.0: 1164 | version "0.0.1" 1165 | resolved "https://registry.yarnpkg.com/json-stable-stringify/-/json-stable-stringify-0.0.1.tgz#611c23e814db375527df851193db59dd2af27f45" 1166 | dependencies: 1167 | jsonify "~0.0.0" 1168 | 1169 | json5@^0.5.0: 1170 | version "0.5.1" 1171 | resolved "https://registry.yarnpkg.com/json5/-/json5-0.5.1.tgz#1eade7acc012034ad84e2396767ead9fa5495821" 1172 | 1173 | jsonfile@^2.1.0: 1174 | version "2.4.0" 1175 | resolved "https://registry.yarnpkg.com/jsonfile/-/jsonfile-2.4.0.tgz#3736a2b428b87bbda0cc83b53fa3d633a35c2ae8" 1176 | optionalDependencies: 1177 | graceful-fs "^4.1.6" 1178 | 1179 | jsonify@~0.0.0: 1180 | version "0.0.0" 1181 | resolved "https://registry.yarnpkg.com/jsonify/-/jsonify-0.0.0.tgz#2c74b6ee41d93ca51b7b5aaee8f503631d252a73" 1182 | 1183 | jsonparse@^1.2.0: 1184 | version "1.3.0" 1185 | resolved "https://registry.yarnpkg.com/jsonparse/-/jsonparse-1.3.0.tgz#85fc245b1d9259acc6941960b905adf64e7de0e8" 1186 | 1187 | klaw@^1.0.0: 1188 | version "1.3.1" 1189 | resolved "https://registry.yarnpkg.com/klaw/-/klaw-1.3.1.tgz#4088433b46b3b1ba259d78785d8e96f73ba02439" 1190 | optionalDependencies: 1191 | graceful-fs "^4.1.9" 1192 | 1193 | labeled-stream-splicer@^2.0.0: 1194 | version "2.0.0" 1195 | resolved "https://registry.yarnpkg.com/labeled-stream-splicer/-/labeled-stream-splicer-2.0.0.tgz#a52e1d138024c00b86b1c0c91f677918b8ae0a59" 1196 | dependencies: 1197 | inherits "^2.0.1" 1198 | isarray "~0.0.1" 1199 | stream-splicer "^2.0.0" 1200 | 1201 | lexical-scope@^1.2.0: 1202 | version "1.2.0" 1203 | resolved "https://registry.yarnpkg.com/lexical-scope/-/lexical-scope-1.2.0.tgz#fcea5edc704a4b3a8796cdca419c3a0afaf22df4" 1204 | dependencies: 1205 | astw "^2.0.0" 1206 | 1207 | lodash.memoize@~3.0.3: 1208 | version "3.0.4" 1209 | resolved "https://registry.yarnpkg.com/lodash.memoize/-/lodash.memoize-3.0.4.tgz#2dcbd2c287cbc0a55cc42328bd0c736150d53e3f" 1210 | 1211 | lodash@^4.2.0, lodash@^4.3.0: 1212 | version "4.17.4" 1213 | resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.4.tgz#78203a4d1c328ae1d86dca6460e369b57f4055ae" 1214 | 1215 | loose-envify@^1.0.0: 1216 | version "1.3.1" 1217 | resolved "https://registry.yarnpkg.com/loose-envify/-/loose-envify-1.3.1.tgz#d1a8ad33fa9ce0e713d65fdd0ac8b748d478c848" 1218 | dependencies: 1219 | js-tokens "^3.0.0" 1220 | 1221 | miller-rabin@^4.0.0: 1222 | version "4.0.0" 1223 | resolved "https://registry.yarnpkg.com/miller-rabin/-/miller-rabin-4.0.0.tgz#4a62fb1d42933c05583982f4c716f6fb9e6c6d3d" 1224 | dependencies: 1225 | bn.js "^4.0.0" 1226 | brorand "^1.0.1" 1227 | 1228 | minimalistic-assert@^1.0.0: 1229 | version "1.0.0" 1230 | resolved "https://registry.yarnpkg.com/minimalistic-assert/-/minimalistic-assert-1.0.0.tgz#702be2dda6b37f4836bcb3f5db56641b64a1d3d3" 1231 | 1232 | minimatch@^3.0.2: 1233 | version "3.0.3" 1234 | resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.0.3.tgz#2a4e4090b96b2db06a9d7df01055a62a77c9b774" 1235 | dependencies: 1236 | brace-expansion "^1.0.0" 1237 | 1238 | minimist@0.0.8: 1239 | version "0.0.8" 1240 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-0.0.8.tgz#857fcabfc3397d2625b8228262e86aa7a011b05d" 1241 | 1242 | minimist@^1.1.0: 1243 | version "1.2.0" 1244 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.0.tgz#a35008b20f41383eec1fb914f4cd5df79a264284" 1245 | 1246 | mkdirp@^0.5.1: 1247 | version "0.5.1" 1248 | resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.5.1.tgz#30057438eac6cf7f8c4767f38648d6697d75c903" 1249 | dependencies: 1250 | minimist "0.0.8" 1251 | 1252 | module-deps@^4.0.8: 1253 | version "4.1.1" 1254 | resolved "https://registry.yarnpkg.com/module-deps/-/module-deps-4.1.1.tgz#23215833f1da13fd606ccb8087b44852dcb821fd" 1255 | dependencies: 1256 | JSONStream "^1.0.3" 1257 | browser-resolve "^1.7.0" 1258 | cached-path-relative "^1.0.0" 1259 | concat-stream "~1.5.0" 1260 | defined "^1.0.0" 1261 | detective "^4.0.0" 1262 | duplexer2 "^0.1.2" 1263 | inherits "^2.0.1" 1264 | parents "^1.0.0" 1265 | readable-stream "^2.0.2" 1266 | resolve "^1.1.3" 1267 | stream-combiner2 "^1.1.1" 1268 | subarg "^1.0.0" 1269 | through2 "^2.0.0" 1270 | xtend "^4.0.0" 1271 | 1272 | ms@0.7.2: 1273 | version "0.7.2" 1274 | resolved "https://registry.yarnpkg.com/ms/-/ms-0.7.2.tgz#ae25cf2512b3885a1d95d7f037868d8431124765" 1275 | 1276 | mute-stream@0.0.6: 1277 | version "0.0.6" 1278 | resolved "https://registry.yarnpkg.com/mute-stream/-/mute-stream-0.0.6.tgz#48962b19e169fd1dfc240b3f1e7317627bbc47db" 1279 | 1280 | number-is-nan@^1.0.0: 1281 | version "1.0.1" 1282 | resolved "https://registry.yarnpkg.com/number-is-nan/-/number-is-nan-1.0.1.tgz#097b602b53422a522c1afb8790318336941a011d" 1283 | 1284 | object-assign@^4.0.0, object-assign@^4.1.0: 1285 | version "4.1.1" 1286 | resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863" 1287 | 1288 | once@^1.3.0: 1289 | version "1.4.0" 1290 | resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1" 1291 | dependencies: 1292 | wrappy "1" 1293 | 1294 | onetime@^1.0.0: 1295 | version "1.1.0" 1296 | resolved "https://registry.yarnpkg.com/onetime/-/onetime-1.1.0.tgz#a1f7838f8314c516f05ecefcbc4ccfe04b4ed789" 1297 | 1298 | os-browserify@~0.1.1: 1299 | version "0.1.2" 1300 | resolved "https://registry.yarnpkg.com/os-browserify/-/os-browserify-0.1.2.tgz#49ca0293e0b19590a5f5de10c7f265a617d8fe54" 1301 | 1302 | os-homedir@^1.0.0: 1303 | version "1.0.2" 1304 | resolved "https://registry.yarnpkg.com/os-homedir/-/os-homedir-1.0.2.tgz#ffbc4988336e0e833de0c168c7ef152121aa7fb3" 1305 | 1306 | os-shim@^0.1.2: 1307 | version "0.1.3" 1308 | resolved "https://registry.yarnpkg.com/os-shim/-/os-shim-0.1.3.tgz#6b62c3791cf7909ea35ed46e17658bb417cb3917" 1309 | 1310 | os-tmpdir@^1.0.1, os-tmpdir@~1.0.1: 1311 | version "1.0.2" 1312 | resolved "https://registry.yarnpkg.com/os-tmpdir/-/os-tmpdir-1.0.2.tgz#bbe67406c79aa85c5cfec766fe5734555dfa1274" 1313 | 1314 | pako@~0.2.0: 1315 | version "0.2.9" 1316 | resolved "https://registry.yarnpkg.com/pako/-/pako-0.2.9.tgz#f3f7522f4ef782348da8161bad9ecfd51bf83a75" 1317 | 1318 | parents@^1.0.0, parents@^1.0.1: 1319 | version "1.0.1" 1320 | resolved "https://registry.yarnpkg.com/parents/-/parents-1.0.1.tgz#fedd4d2bf193a77745fe71e371d73c3307d9c751" 1321 | dependencies: 1322 | path-platform "~0.11.15" 1323 | 1324 | parse-asn1@^5.0.0: 1325 | version "5.0.0" 1326 | resolved "https://registry.yarnpkg.com/parse-asn1/-/parse-asn1-5.0.0.tgz#35060f6d5015d37628c770f4e091a0b5a278bc23" 1327 | dependencies: 1328 | asn1.js "^4.0.0" 1329 | browserify-aes "^1.0.0" 1330 | create-hash "^1.1.0" 1331 | evp_bytestokey "^1.0.0" 1332 | pbkdf2 "^3.0.3" 1333 | 1334 | path-browserify@~0.0.0: 1335 | version "0.0.0" 1336 | resolved "https://registry.yarnpkg.com/path-browserify/-/path-browserify-0.0.0.tgz#a0b870729aae214005b7d5032ec2cbbb0fb4451a" 1337 | 1338 | path-is-absolute@^1.0.0: 1339 | version "1.0.1" 1340 | resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f" 1341 | 1342 | path-platform@~0.11.15: 1343 | version "0.11.15" 1344 | resolved "https://registry.yarnpkg.com/path-platform/-/path-platform-0.11.15.tgz#e864217f74c36850f0852b78dc7bf7d4a5721bf2" 1345 | 1346 | pbkdf2@^3.0.3: 1347 | version "3.0.9" 1348 | resolved "https://registry.yarnpkg.com/pbkdf2/-/pbkdf2-3.0.9.tgz#f2c4b25a600058b3c3773c086c37dbbee1ffe693" 1349 | dependencies: 1350 | create-hmac "^1.1.2" 1351 | 1352 | pinkie-promise@^2.0.0: 1353 | version "2.0.1" 1354 | resolved "https://registry.yarnpkg.com/pinkie-promise/-/pinkie-promise-2.0.1.tgz#2135d6dfa7a358c069ac9b178776288228450ffa" 1355 | dependencies: 1356 | pinkie "^2.0.0" 1357 | 1358 | pinkie@^2.0.0: 1359 | version "2.0.4" 1360 | resolved "https://registry.yarnpkg.com/pinkie/-/pinkie-2.0.4.tgz#72556b80cfa0d48a974e80e77248e80ed4f7f870" 1361 | 1362 | private@^0.1.6: 1363 | version "0.1.7" 1364 | resolved "https://registry.yarnpkg.com/private/-/private-0.1.7.tgz#68ce5e8a1ef0a23bb570cc28537b5332aba63ef1" 1365 | 1366 | process-nextick-args@~1.0.6: 1367 | version "1.0.7" 1368 | resolved "https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-1.0.7.tgz#150e20b756590ad3f91093f25a4f2ad8bff30ba3" 1369 | 1370 | process@~0.11.0: 1371 | version "0.11.9" 1372 | resolved "https://registry.yarnpkg.com/process/-/process-0.11.9.tgz#7bd5ad21aa6253e7da8682264f1e11d11c0318c1" 1373 | 1374 | public-encrypt@^4.0.0: 1375 | version "4.0.0" 1376 | resolved "https://registry.yarnpkg.com/public-encrypt/-/public-encrypt-4.0.0.tgz#39f699f3a46560dd5ebacbca693caf7c65c18cc6" 1377 | dependencies: 1378 | bn.js "^4.1.0" 1379 | browserify-rsa "^4.0.0" 1380 | create-hash "^1.1.0" 1381 | parse-asn1 "^5.0.0" 1382 | randombytes "^2.0.1" 1383 | 1384 | punycode@1.3.2: 1385 | version "1.3.2" 1386 | resolved "https://registry.yarnpkg.com/punycode/-/punycode-1.3.2.tgz#9653a036fb7c1ee42342f2325cceefea3926c48d" 1387 | 1388 | punycode@^1.3.2: 1389 | version "1.4.1" 1390 | resolved "https://registry.yarnpkg.com/punycode/-/punycode-1.4.1.tgz#c0d5a63b2718800ad8e1eb0fa5269c84dd41845e" 1391 | 1392 | q@^1.4.1: 1393 | version "1.4.1" 1394 | resolved "https://registry.yarnpkg.com/q/-/q-1.4.1.tgz#55705bcd93c5f3673530c2c2cbc0c2b3addc286e" 1395 | 1396 | querystring-es3@~0.2.0: 1397 | version "0.2.1" 1398 | resolved "https://registry.yarnpkg.com/querystring-es3/-/querystring-es3-0.2.1.tgz#9ec61f79049875707d69414596fd907a4d711e73" 1399 | 1400 | querystring@0.2.0: 1401 | version "0.2.0" 1402 | resolved "https://registry.yarnpkg.com/querystring/-/querystring-0.2.0.tgz#b209849203bb25df820da756e747005878521620" 1403 | 1404 | randombytes@^2.0.0, randombytes@^2.0.1: 1405 | version "2.0.3" 1406 | resolved "https://registry.yarnpkg.com/randombytes/-/randombytes-2.0.3.tgz#674c99760901c3c4112771a31e521dc349cc09ec" 1407 | 1408 | read-only-stream@^2.0.0: 1409 | version "2.0.0" 1410 | resolved "https://registry.yarnpkg.com/read-only-stream/-/read-only-stream-2.0.0.tgz#2724fd6a8113d73764ac288d4386270c1dbf17f0" 1411 | dependencies: 1412 | readable-stream "^2.0.2" 1413 | 1414 | readable-stream@^2.0.2, readable-stream@^2.1.0, readable-stream@^2.1.5, readable-stream@^2.2.2: 1415 | version "2.2.2" 1416 | resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.2.2.tgz#a9e6fec3c7dda85f8bb1b3ba7028604556fc825e" 1417 | dependencies: 1418 | buffer-shims "^1.0.0" 1419 | core-util-is "~1.0.0" 1420 | inherits "~2.0.1" 1421 | isarray "~1.0.0" 1422 | process-nextick-args "~1.0.6" 1423 | string_decoder "~0.10.x" 1424 | util-deprecate "~1.0.1" 1425 | 1426 | readable-stream@~2.0.0: 1427 | version "2.0.6" 1428 | resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.0.6.tgz#8f90341e68a53ccc928788dacfcd11b36eb9b78e" 1429 | dependencies: 1430 | core-util-is "~1.0.0" 1431 | inherits "~2.0.1" 1432 | isarray "~1.0.0" 1433 | process-nextick-args "~1.0.6" 1434 | string_decoder "~0.10.x" 1435 | util-deprecate "~1.0.1" 1436 | 1437 | regenerate@^1.2.1: 1438 | version "1.3.2" 1439 | resolved "https://registry.yarnpkg.com/regenerate/-/regenerate-1.3.2.tgz#d1941c67bad437e1be76433add5b385f95b19260" 1440 | 1441 | regenerator-runtime@^0.10.0: 1442 | version "0.10.3" 1443 | resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.10.3.tgz#8c4367a904b51ea62a908ac310bf99ff90a82a3e" 1444 | 1445 | regenerator-transform@0.9.8: 1446 | version "0.9.8" 1447 | resolved "https://registry.yarnpkg.com/regenerator-transform/-/regenerator-transform-0.9.8.tgz#0f88bb2bc03932ddb7b6b7312e68078f01026d6c" 1448 | dependencies: 1449 | babel-runtime "^6.18.0" 1450 | babel-types "^6.19.0" 1451 | private "^0.1.6" 1452 | 1453 | regexpu-core@^2.0.0: 1454 | version "2.0.0" 1455 | resolved "https://registry.yarnpkg.com/regexpu-core/-/regexpu-core-2.0.0.tgz#49d038837b8dcf8bfa5b9a42139938e6ea2ae240" 1456 | dependencies: 1457 | regenerate "^1.2.1" 1458 | regjsgen "^0.2.0" 1459 | regjsparser "^0.1.4" 1460 | 1461 | regjsgen@^0.2.0: 1462 | version "0.2.0" 1463 | resolved "https://registry.yarnpkg.com/regjsgen/-/regjsgen-0.2.0.tgz#6c016adeac554f75823fe37ac05b92d5a4edb1f7" 1464 | 1465 | regjsparser@^0.1.4: 1466 | version "0.1.5" 1467 | resolved "https://registry.yarnpkg.com/regjsparser/-/regjsparser-0.1.5.tgz#7ee8f84dc6fa792d3fd0ae228d24bd949ead205c" 1468 | dependencies: 1469 | jsesc "~0.5.0" 1470 | 1471 | repeating@^2.0.0: 1472 | version "2.0.1" 1473 | resolved "https://registry.yarnpkg.com/repeating/-/repeating-2.0.1.tgz#5214c53a926d3552707527fbab415dbc08d06dda" 1474 | dependencies: 1475 | is-finite "^1.0.0" 1476 | 1477 | resolve@1.1.7: 1478 | version "1.1.7" 1479 | resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.1.7.tgz#203114d82ad2c5ed9e8e0411b3932875e889e97b" 1480 | 1481 | resolve@^1.1.3, resolve@^1.1.4: 1482 | version "1.2.0" 1483 | resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.2.0.tgz#9589c3f2f6149d1417a40becc1663db6ec6bc26c" 1484 | 1485 | restore-cursor@^1.0.1: 1486 | version "1.0.1" 1487 | resolved "https://registry.yarnpkg.com/restore-cursor/-/restore-cursor-1.0.1.tgz#34661f46886327fed2991479152252df92daa541" 1488 | dependencies: 1489 | exit-hook "^1.0.0" 1490 | onetime "^1.0.0" 1491 | 1492 | rimraf@^2.2.8: 1493 | version "2.6.0" 1494 | resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.6.0.tgz#89b8a0fe432b9ff9ec9a925a00b6cdb3a91bbada" 1495 | dependencies: 1496 | glob "^7.0.5" 1497 | 1498 | ripemd160@^1.0.0: 1499 | version "1.0.1" 1500 | resolved "https://registry.yarnpkg.com/ripemd160/-/ripemd160-1.0.1.tgz#93a4bbd4942bc574b69a8fa57c71de10ecca7d6e" 1501 | 1502 | run-async@^2.2.0: 1503 | version "2.3.0" 1504 | resolved "https://registry.yarnpkg.com/run-async/-/run-async-2.3.0.tgz#0371ab4ae0bdd720d4166d7dfda64ff7a445a6c0" 1505 | dependencies: 1506 | is-promise "^2.1.0" 1507 | 1508 | rx@^4.1.0: 1509 | version "4.1.0" 1510 | resolved "https://registry.yarnpkg.com/rx/-/rx-4.1.0.tgz#a5f13ff79ef3b740fe30aa803fb09f98805d4782" 1511 | 1512 | sha.js@^2.3.6, sha.js@~2.4.4: 1513 | version "2.4.8" 1514 | resolved "https://registry.yarnpkg.com/sha.js/-/sha.js-2.4.8.tgz#37068c2c476b6baf402d14a49c67f597921f634f" 1515 | dependencies: 1516 | inherits "^2.0.1" 1517 | 1518 | shasum@^1.0.0: 1519 | version "1.0.2" 1520 | resolved "https://registry.yarnpkg.com/shasum/-/shasum-1.0.2.tgz#e7012310d8f417f4deb5712150e5678b87ae565f" 1521 | dependencies: 1522 | json-stable-stringify "~0.0.0" 1523 | sha.js "~2.4.4" 1524 | 1525 | shell-quote@^1.6.1: 1526 | version "1.6.1" 1527 | resolved "https://registry.yarnpkg.com/shell-quote/-/shell-quote-1.6.1.tgz#f4781949cce402697127430ea3b3c5476f481767" 1528 | dependencies: 1529 | array-filter "~0.0.0" 1530 | array-map "~0.0.0" 1531 | array-reduce "~0.0.0" 1532 | jsonify "~0.0.0" 1533 | 1534 | slash@^1.0.0: 1535 | version "1.0.0" 1536 | resolved "https://registry.yarnpkg.com/slash/-/slash-1.0.0.tgz#c41f2f6c39fc16d1cd17ad4b5d896114ae470d55" 1537 | 1538 | source-map-support@^0.4.2: 1539 | version "0.4.11" 1540 | resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.4.11.tgz#647f939978b38535909530885303daf23279f322" 1541 | dependencies: 1542 | source-map "^0.5.3" 1543 | 1544 | source-map@^0.5.0, source-map@^0.5.3, source-map@~0.5.3: 1545 | version "0.5.6" 1546 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.5.6.tgz#75ce38f52bf0733c5a7f0c118d81334a2bb5f412" 1547 | 1548 | spawn-sync@^1.0.15: 1549 | version "1.0.15" 1550 | resolved "https://registry.yarnpkg.com/spawn-sync/-/spawn-sync-1.0.15.tgz#b00799557eb7fb0c8376c29d44e8a1ea67e57476" 1551 | dependencies: 1552 | concat-stream "^1.4.7" 1553 | os-shim "^0.1.2" 1554 | 1555 | stack-trace@0.0.x: 1556 | version "0.0.9" 1557 | resolved "https://registry.yarnpkg.com/stack-trace/-/stack-trace-0.0.9.tgz#a8f6eaeca90674c333e7c43953f275b451510695" 1558 | 1559 | stream-browserify@^2.0.0: 1560 | version "2.0.1" 1561 | resolved "https://registry.yarnpkg.com/stream-browserify/-/stream-browserify-2.0.1.tgz#66266ee5f9bdb9940a4e4514cafb43bb71e5c9db" 1562 | dependencies: 1563 | inherits "~2.0.1" 1564 | readable-stream "^2.0.2" 1565 | 1566 | stream-combiner2@^1.1.1: 1567 | version "1.1.1" 1568 | resolved "https://registry.yarnpkg.com/stream-combiner2/-/stream-combiner2-1.1.1.tgz#fb4d8a1420ea362764e21ad4780397bebcb41cbe" 1569 | dependencies: 1570 | duplexer2 "~0.1.0" 1571 | readable-stream "^2.0.2" 1572 | 1573 | stream-http@^2.0.0: 1574 | version "2.6.3" 1575 | resolved "https://registry.yarnpkg.com/stream-http/-/stream-http-2.6.3.tgz#4c3ddbf9635968ea2cfd4e48d43de5def2625ac3" 1576 | dependencies: 1577 | builtin-status-codes "^3.0.0" 1578 | inherits "^2.0.1" 1579 | readable-stream "^2.1.0" 1580 | to-arraybuffer "^1.0.0" 1581 | xtend "^4.0.0" 1582 | 1583 | stream-splicer@^2.0.0: 1584 | version "2.0.0" 1585 | resolved "https://registry.yarnpkg.com/stream-splicer/-/stream-splicer-2.0.0.tgz#1b63be438a133e4b671cc1935197600175910d83" 1586 | dependencies: 1587 | inherits "^2.0.1" 1588 | readable-stream "^2.0.2" 1589 | 1590 | string-width@^1.0.1: 1591 | version "1.0.2" 1592 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-1.0.2.tgz#118bdf5b8cdc51a2a7e70d211e07e2b0b9b107d3" 1593 | dependencies: 1594 | code-point-at "^1.0.0" 1595 | is-fullwidth-code-point "^1.0.0" 1596 | strip-ansi "^3.0.0" 1597 | 1598 | string_decoder@~0.10.0, string_decoder@~0.10.x: 1599 | version "0.10.31" 1600 | resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-0.10.31.tgz#62e203bc41766c6c28c9fc84301dab1c5310fa94" 1601 | 1602 | strip-ansi@^3.0.0: 1603 | version "3.0.1" 1604 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-3.0.1.tgz#6a385fb8853d952d5ff05d0e8aaf94278dc63dcf" 1605 | dependencies: 1606 | ansi-regex "^2.0.0" 1607 | 1608 | subarg@^1.0.0: 1609 | version "1.0.0" 1610 | resolved "https://registry.yarnpkg.com/subarg/-/subarg-1.0.0.tgz#f62cf17581e996b48fc965699f54c06ae268b8d2" 1611 | dependencies: 1612 | minimist "^1.1.0" 1613 | 1614 | supports-color@^2.0.0: 1615 | version "2.0.0" 1616 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-2.0.0.tgz#535d045ce6b6363fa40117084629995e9df324c7" 1617 | 1618 | syntax-error@^1.1.1: 1619 | version "1.1.6" 1620 | resolved "https://registry.yarnpkg.com/syntax-error/-/syntax-error-1.1.6.tgz#b4549706d386cc1c1dc7c2423f18579b6cade710" 1621 | dependencies: 1622 | acorn "^2.7.0" 1623 | 1624 | through2@^2.0.0: 1625 | version "2.0.3" 1626 | resolved "https://registry.yarnpkg.com/through2/-/through2-2.0.3.tgz#0004569b37c7c74ba39c43f3ced78d1ad94140be" 1627 | dependencies: 1628 | readable-stream "^2.1.5" 1629 | xtend "~4.0.1" 1630 | 1631 | "through@>=2.2.7 <3", through@^2.3.6: 1632 | version "2.3.8" 1633 | resolved "https://registry.yarnpkg.com/through/-/through-2.3.8.tgz#0dd4c9ffaabc357960b1b724115d7e0e86a2e1f5" 1634 | 1635 | timers-browserify@^1.0.1: 1636 | version "1.4.2" 1637 | resolved "https://registry.yarnpkg.com/timers-browserify/-/timers-browserify-1.4.2.tgz#c9c58b575be8407375cb5e2462dacee74359f41d" 1638 | dependencies: 1639 | process "~0.11.0" 1640 | 1641 | tmp@^0.0.29: 1642 | version "0.0.29" 1643 | resolved "https://registry.yarnpkg.com/tmp/-/tmp-0.0.29.tgz#f25125ff0dd9da3ccb0c2dd371ee1288bb9128c0" 1644 | dependencies: 1645 | os-tmpdir "~1.0.1" 1646 | 1647 | to-arraybuffer@^1.0.0: 1648 | version "1.0.1" 1649 | resolved "https://registry.yarnpkg.com/to-arraybuffer/-/to-arraybuffer-1.0.1.tgz#7d229b1fcc637e466ca081180836a7aabff83f43" 1650 | 1651 | to-fast-properties@^1.0.1: 1652 | version "1.0.2" 1653 | resolved "https://registry.yarnpkg.com/to-fast-properties/-/to-fast-properties-1.0.2.tgz#f3f5c0c3ba7299a7ef99427e44633257ade43320" 1654 | 1655 | trim-right@^1.0.1: 1656 | version "1.0.1" 1657 | resolved "https://registry.yarnpkg.com/trim-right/-/trim-right-1.0.1.tgz#cb2e1203067e0c8de1f614094b9fe45704ea6003" 1658 | 1659 | tty-browserify@~0.0.0: 1660 | version "0.0.0" 1661 | resolved "https://registry.yarnpkg.com/tty-browserify/-/tty-browserify-0.0.0.tgz#a157ba402da24e9bf957f9aa69d524eed42901a6" 1662 | 1663 | typedarray@^0.0.6, typedarray@~0.0.5: 1664 | version "0.0.6" 1665 | resolved "https://registry.yarnpkg.com/typedarray/-/typedarray-0.0.6.tgz#867ac74e3864187b1d3d47d996a78ec5c8830777" 1666 | 1667 | umd@^3.0.0: 1668 | version "3.0.1" 1669 | resolved "https://registry.yarnpkg.com/umd/-/umd-3.0.1.tgz#8ae556e11011f63c2596708a8837259f01b3d60e" 1670 | 1671 | url@~0.11.0: 1672 | version "0.11.0" 1673 | resolved "https://registry.yarnpkg.com/url/-/url-0.11.0.tgz#3838e97cfc60521eb73c525a8e55bfdd9e2e28f1" 1674 | dependencies: 1675 | punycode "1.3.2" 1676 | querystring "0.2.0" 1677 | 1678 | util-deprecate@~1.0.1: 1679 | version "1.0.2" 1680 | resolved "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf" 1681 | 1682 | util@0.10.3, util@~0.10.1: 1683 | version "0.10.3" 1684 | resolved "https://registry.yarnpkg.com/util/-/util-0.10.3.tgz#7afb1afe50805246489e3db7fe0ed379336ac0f9" 1685 | dependencies: 1686 | inherits "2.0.1" 1687 | 1688 | vm-browserify@~0.0.1: 1689 | version "0.0.4" 1690 | resolved "https://registry.yarnpkg.com/vm-browserify/-/vm-browserify-0.0.4.tgz#5d7ea45bbef9e4a6ff65f95438e0a87c357d5a73" 1691 | dependencies: 1692 | indexof "0.0.1" 1693 | 1694 | winston@^2.2.0: 1695 | version "2.3.1" 1696 | resolved "https://registry.yarnpkg.com/winston/-/winston-2.3.1.tgz#0b48420d978c01804cf0230b648861598225a119" 1697 | dependencies: 1698 | async "~1.0.0" 1699 | colors "1.0.x" 1700 | cycle "1.0.x" 1701 | eyes "0.1.x" 1702 | isstream "0.1.x" 1703 | stack-trace "0.0.x" 1704 | 1705 | wrappy@1: 1706 | version "1.0.2" 1707 | resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f" 1708 | 1709 | xtend@^4.0.0, xtend@~4.0.1: 1710 | version "4.0.1" 1711 | resolved "https://registry.yarnpkg.com/xtend/-/xtend-4.0.1.tgz#a5c6d532be656e23db820efb943a1f04998d63af" 1712 | --------------------------------------------------------------------------------