├── .editorconfig ├── .gitignore ├── .npmrc ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── build └── .gitkeep ├── lib ├── config.js ├── doxbee-async.js ├── doxbee-promises.js ├── driver.js ├── fakes-async.js ├── fakes-promises.js ├── fibonacci-async.js ├── measure-async.js ├── measure-promises.js ├── parallel-async.js └── parallel-promises.js ├── package.json ├── run.js ├── src ├── doxbee-async-bluebird.js ├── doxbee-async-es2017-babel.js ├── doxbee-async-es2017-native.js ├── doxbee-promises-bluebird.js ├── doxbee-promises-es2015-native.js ├── fibonacci-async-es2017-babel.js ├── fibonacci-async-es2017-native.js ├── parallel-async-bluebird.js ├── parallel-async-es2017-babel.js ├── parallel-async-es2017-native.js ├── parallel-promises-bluebird.js └── parallel-promises-es2015-native.js ├── webpack.config.js └── yarn.lock /.editorconfig: -------------------------------------------------------------------------------- 1 | # Copyright 2018 Google LLC 2 | # 3 | # Licensed under the Apache License, Version 2.0 (the "License"); 4 | # you may not use this file except in compliance with the License. 5 | # You may obtain a copy of the License at 6 | # 7 | # 8 | # 9 | # Unless required by applicable law or agreed to in writing, software 10 | # distributed under the License is distributed on an "AS IS" BASIS, 11 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 | # See the License for the specific language governing permissions and 13 | # limitations under the License. 14 | 15 | # This file is for unifying the coding style for different editors and IDEs. 16 | # More information at http://EditorConfig.org 17 | 18 | # No .editorconfig files above the root directory 19 | root = true 20 | 21 | [*] 22 | indent_style = space 23 | indent_size = 2 24 | charset = utf-8 25 | trim_trailing_whitespace = true 26 | insert_final_newline = true 27 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | build/ 2 | dist/ 3 | node_modules/ 4 | -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- 1 | package-lock = false 2 | -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- 1 | # Contributor Covenant Code of Conduct 2 | 3 | ## Our Pledge 4 | 5 | In the interest of fostering an open and welcoming environment, we as contributors and maintainers pledge to making participation in our project and our community a harassment-free experience for everyone, regardless of age, body size, disability, ethnicity, gender identity and expression, level of experience, nationality, personal appearance, race, religion, or sexual identity and orientation. 6 | 7 | ## Our Standards 8 | 9 | Examples of behavior that contributes to creating a positive environment include: 10 | 11 | * Using welcoming and inclusive language 12 | * Being respectful of differing viewpoints and experiences 13 | * Gracefully accepting constructive criticism 14 | * Focusing on what is best for the community 15 | * Showing empathy towards other community members 16 | 17 | Examples of unacceptable behavior by participants include: 18 | 19 | * The use of sexualized language or imagery and unwelcome sexual attention or advances 20 | * Trolling, insulting/derogatory comments, and personal or political attacks 21 | * Public or private harassment 22 | * Publishing others' private information, such as a physical or electronic address, without explicit permission 23 | * Other conduct which could reasonably be considered inappropriate in a professional setting 24 | 25 | ## Our Responsibilities 26 | 27 | Project maintainers are responsible for clarifying the standards of acceptable behavior and are expected to take appropriate and fair corrective action in response to any instances of unacceptable behavior. 28 | 29 | Project maintainers have the right and responsibility to remove, edit, or reject comments, commits, code, wiki edits, issues, and other contributions that are not aligned to this Code of Conduct, or to ban temporarily or permanently any contributor for other behaviors that they deem inappropriate, threatening, offensive, or harmful. 30 | 31 | ## Scope 32 | 33 | This Code of Conduct applies both within project spaces and in public spaces when an individual is representing the project or its community. Examples of representing a project or community include using an official project e-mail address, posting via an official social media account, or acting as an appointed representative at an online or offline event. Representation of a project may be further defined and clarified by project maintainers. 34 | 35 | ## Enforcement 36 | 37 | Instances of abusive, harassing, or otherwise unacceptable behavior may be reported by contacting the project team at benedikt.meurer@googlemail.com. The project team will review and investigate all complaints, and will respond in a way that it deems appropriate to the circumstances. The project team is obligated to maintain confidentiality with regard to the reporter of an incident. Further details of specific enforcement policies may be posted separately. 38 | 39 | Project maintainers who do not follow or enforce the Code of Conduct in good faith may face temporary or permanent repercussions as determined by other members of the project's leadership. 40 | 41 | ## Attribution 42 | 43 | This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 1.4, available at [http://contributor-covenant.org/version/1/4][version] 44 | 45 | [homepage]: http://contributor-covenant.org 46 | [version]: http://contributor-covenant.org/version/1/4/ 47 | -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- 1 | # How to Contribute 2 | 3 | We'd love to accept your patches and contributions to this project. There are 4 | just a few small guidelines you need to follow. 5 | 6 | 7 | ## Contributor License Agreement 8 | 9 | Contributions to this project must be accompanied by a Contributor License 10 | Agreement. You (or your employer) retain the copyright to your contribution, 11 | this simply gives us permission to use and redistribute your contributions as 12 | part of the project. Head over to to see 13 | your current agreements on file or to sign a new one. 14 | 15 | You generally only need to submit a CLA once, so if you've already submitted one 16 | (even if it was for a different project), you probably don't need to do it 17 | again. 18 | 19 | 20 | ## Code reviews 21 | 22 | All submissions, including submissions by project members, require review. We 23 | use GitHub pull requests for this purpose. Consult 24 | [GitHub Help](https://help.github.com/articles/about-pull-requests/) for more 25 | information on using pull requests. 26 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | 2 | Apache License 3 | Version 2.0, January 2004 4 | http://www.apache.org/licenses/ 5 | 6 | TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION 7 | 8 | 1. Definitions. 9 | 10 | "License" shall mean the terms and conditions for use, reproduction, 11 | and distribution as defined by Sections 1 through 9 of this document. 12 | 13 | "Licensor" shall mean the copyright owner or entity authorized by 14 | the copyright owner that is granting the License. 15 | 16 | "Legal Entity" shall mean the union of the acting entity and all 17 | other entities that control, are controlled by, or are under common 18 | control with that entity. For the purposes of this definition, 19 | "control" means (i) the power, direct or indirect, to cause the 20 | direction or management of such entity, whether by contract or 21 | otherwise, or (ii) ownership of fifty percent (50%) or more of the 22 | outstanding shares, or (iii) beneficial ownership of such entity. 23 | 24 | "You" (or "Your") shall mean an individual or Legal Entity 25 | exercising permissions granted by this License. 26 | 27 | "Source" form shall mean the preferred form for making modifications, 28 | including but not limited to software source code, documentation 29 | source, and configuration files. 30 | 31 | "Object" form shall mean any form resulting from mechanical 32 | transformation or translation of a Source form, including but 33 | not limited to compiled object code, generated documentation, 34 | and conversions to other media types. 35 | 36 | "Work" shall mean the work of authorship, whether in Source or 37 | Object form, made available under the License, as indicated by a 38 | copyright notice that is included in or attached to the work 39 | (an example is provided in the Appendix below). 40 | 41 | "Derivative Works" shall mean any work, whether in Source or Object 42 | form, that is based on (or derived from) the Work and for which the 43 | editorial revisions, annotations, elaborations, or other modifications 44 | represent, as a whole, an original work of authorship. For the purposes 45 | of this License, Derivative Works shall not include works that remain 46 | separable from, or merely link (or bind by name) to the interfaces of, 47 | the Work and Derivative Works thereof. 48 | 49 | "Contribution" shall mean any work of authorship, including 50 | the original version of the Work and any modifications or additions 51 | to that Work or Derivative Works thereof, that is intentionally 52 | submitted to Licensor for inclusion in the Work by the copyright owner 53 | or by an individual or Legal Entity authorized to submit on behalf of 54 | the copyright owner. For the purposes of this definition, "submitted" 55 | means any form of electronic, verbal, or written communication sent 56 | to the Licensor or its representatives, including but not limited to 57 | communication on electronic mailing lists, source code control systems, 58 | and issue tracking systems that are managed by, or on behalf of, the 59 | Licensor for the purpose of discussing and improving the Work, but 60 | excluding communication that is conspicuously marked or otherwise 61 | designated in writing by the copyright owner as "Not a Contribution." 62 | 63 | "Contributor" shall mean Licensor and any individual or Legal Entity 64 | on behalf of whom a Contribution has been received by Licensor and 65 | subsequently incorporated within the Work. 66 | 67 | 2. Grant of Copyright License. Subject to the terms and conditions of 68 | this License, each Contributor hereby grants to You a perpetual, 69 | worldwide, non-exclusive, no-charge, royalty-free, irrevocable 70 | copyright license to reproduce, prepare Derivative Works of, 71 | publicly display, publicly perform, sublicense, and distribute the 72 | Work and such Derivative Works in Source or Object form. 73 | 74 | 3. Grant of Patent License. Subject to the terms and conditions of 75 | this License, each Contributor hereby grants to You a perpetual, 76 | worldwide, non-exclusive, no-charge, royalty-free, irrevocable 77 | (except as stated in this section) patent license to make, have made, 78 | use, offer to sell, sell, import, and otherwise transfer the Work, 79 | where such license applies only to those patent claims licensable 80 | by such Contributor that are necessarily infringed by their 81 | Contribution(s) alone or by combination of their Contribution(s) 82 | with the Work to which such Contribution(s) was submitted. If You 83 | institute patent litigation against any entity (including a 84 | cross-claim or counterclaim in a lawsuit) alleging that the Work 85 | or a Contribution incorporated within the Work constitutes direct 86 | or contributory patent infringement, then any patent licenses 87 | granted to You under this License for that Work shall terminate 88 | as of the date such litigation is filed. 89 | 90 | 4. Redistribution. You may reproduce and distribute copies of the 91 | Work or Derivative Works thereof in any medium, with or without 92 | modifications, and in Source or Object form, provided that You 93 | meet the following conditions: 94 | 95 | (a) You must give any other recipients of the Work or 96 | Derivative Works a copy of this License; and 97 | 98 | (b) You must cause any modified files to carry prominent notices 99 | stating that You changed the files; and 100 | 101 | (c) You must retain, in the Source form of any Derivative Works 102 | that You distribute, all copyright, patent, trademark, and 103 | attribution notices from the Source form of the Work, 104 | excluding those notices that do not pertain to any part of 105 | the Derivative Works; and 106 | 107 | (d) If the Work includes a "NOTICE" text file as part of its 108 | distribution, then any Derivative Works that You distribute must 109 | include a readable copy of the attribution notices contained 110 | within such NOTICE file, excluding those notices that do not 111 | pertain to any part of the Derivative Works, in at least one 112 | of the following places: within a NOTICE text file distributed 113 | as part of the Derivative Works; within the Source form or 114 | documentation, if provided along with the Derivative Works; or, 115 | within a display generated by the Derivative Works, if and 116 | wherever such third-party notices normally appear. The contents 117 | of the NOTICE file are for informational purposes only and 118 | do not modify the License. You may add Your own attribution 119 | notices within Derivative Works that You distribute, alongside 120 | or as an addendum to the NOTICE text from the Work, provided 121 | that such additional attribution notices cannot be construed 122 | as modifying the License. 123 | 124 | You may add Your own copyright statement to Your modifications and 125 | may provide additional or different license terms and conditions 126 | for use, reproduction, or distribution of Your modifications, or 127 | for any such Derivative Works as a whole, provided Your use, 128 | reproduction, and distribution of the Work otherwise complies with 129 | the conditions stated in this License. 130 | 131 | 5. Submission of Contributions. Unless You explicitly state otherwise, 132 | any Contribution intentionally submitted for inclusion in the Work 133 | by You to the Licensor shall be under the terms and conditions of 134 | this License, without any additional terms or conditions. 135 | Notwithstanding the above, nothing herein shall supersede or modify 136 | the terms of any separate license agreement you may have executed 137 | with Licensor regarding such Contributions. 138 | 139 | 6. Trademarks. This License does not grant permission to use the trade 140 | names, trademarks, service marks, or product names of the Licensor, 141 | except as required for reasonable and customary use in describing the 142 | origin of the Work and reproducing the content of the NOTICE file. 143 | 144 | 7. Disclaimer of Warranty. Unless required by applicable law or 145 | agreed to in writing, Licensor provides the Work (and each 146 | Contributor provides its Contributions) on an "AS IS" BASIS, 147 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or 148 | implied, including, without limitation, any warranties or conditions 149 | of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A 150 | PARTICULAR PURPOSE. You are solely responsible for determining the 151 | appropriateness of using or redistributing the Work and assume any 152 | risks associated with Your exercise of permissions under this License. 153 | 154 | 8. Limitation of Liability. In no event and under no legal theory, 155 | whether in tort (including negligence), contract, or otherwise, 156 | unless required by applicable law (such as deliberate and grossly 157 | negligent acts) or agreed to in writing, shall any Contributor be 158 | liable to You for damages, including any direct, indirect, special, 159 | incidental, or consequential damages of any character arising as a 160 | result of this License or out of the use or inability to use the 161 | Work (including but not limited to damages for loss of goodwill, 162 | work stoppage, computer failure or malfunction, or any and all 163 | other commercial damages or losses), even if such Contributor 164 | has been advised of the possibility of such damages. 165 | 166 | 9. Accepting Warranty or Additional Liability. While redistributing 167 | the Work or Derivative Works thereof, You may choose to offer, 168 | and charge a fee for, acceptance of support, warranty, indemnity, 169 | or other liability obligations and/or rights consistent with this 170 | License. However, in accepting such obligations, You may act only 171 | on Your own behalf and on Your sole responsibility, not on behalf 172 | of any other Contributor, and only if You agree to indemnify, 173 | defend, and hold each Contributor harmless for any liability 174 | incurred by, or claims asserted against, such Contributor by reason 175 | of your accepting any such warranty or additional liability. 176 | 177 | END OF TERMS AND CONDITIONS 178 | 179 | APPENDIX: How to apply the Apache License to your work. 180 | 181 | To apply the Apache License to your work, attach the following 182 | boilerplate notice, with the fields enclosed by brackets "[]" 183 | replaced with your own identifying information. (Don't include 184 | the brackets!) The text should be enclosed in the appropriate 185 | comment syntax for the file format. We also recommend that a 186 | file or class name and description of purpose be included on the 187 | same "printed page" as the copyright notice for easier 188 | identification within third-party archives. 189 | 190 | Copyright [yyyy] [name of copyright owner] 191 | 192 | Licensed under the Apache License, Version 2.0 (the "License"); 193 | you may not use this file except in compliance with the License. 194 | You may obtain a copy of the License at 195 | 196 | http://www.apache.org/licenses/LICENSE-2.0 197 | 198 | Unless required by applicable law or agreed to in writing, software 199 | distributed under the License is distributed on an "AS IS" BASIS, 200 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 201 | See the License for the specific language governing permissions and 202 | limitations under the License. 203 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # promise-performance-tests 2 | 3 | This is a collection of tests used to measure various aspects of `Promise` 4 | performance in JavaScript, especially focusing on `Promise` and `async` 5 | usage in [Node.js](https://nodejs.org). 6 | 7 | 8 | ## Installation 9 | 10 | You can build via 11 | 12 | ``` 13 | $ git clone https://github.com/v8/promise-performance-tests 14 | $ npm install 15 | ``` 16 | 17 | which generates appropriate standalone test files in the `dist` folder. 18 | These can be directly executed via either `node` or JavaScript engine 19 | shells. You can also use the `run.js` script with `node`, i.e. 20 | 21 | ``` 22 | $ node run.js 23 | Time(doxbee-async-bluebird): 206.5 ms. 24 | Time(doxbee-async-es2017-babel): 288.7 ms. 25 | Time(doxbee-async-es2017-native): 128.8 ms. 26 | Time(doxbee-promises-bluebird): 158.4 ms. 27 | Time(doxbee-promises-es2015-native): 243.5 ms. 28 | Time(parallel-async-bluebird): 239.8 ms. 29 | Time(parallel-async-es2017-babel): 592.4 ms. 30 | Time(parallel-async-es2017-native): 480.2 ms. 31 | Time(parallel-promises-bluebird): 191.1 ms. 32 | Time(parallel-promises-es2015-native): 436.4 ms. 33 | ``` 34 | 35 | 36 | ## Disclaimer 37 | 38 | This is not an officially supported Google product. 39 | 40 | 41 | ## Author 42 | 43 | [Benedikt Meurer](https://benediktmeurer.de/) ([@bmeurer](https://twitter.com/bmeurer)) 44 | -------------------------------------------------------------------------------- /build/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v8/promise-performance-tests/ef196bc43f0bd4f0688278d7b3427d02649576f1/build/.gitkeep -------------------------------------------------------------------------------- /lib/config.js: -------------------------------------------------------------------------------- 1 | // Copyright 2018 Google LLC 2 | // 3 | // Licensed under the Apache License, Version 2.0 (the "License"); 4 | // you may not use this file except in compliance with the License. 5 | // You may obtain a copy of the License at 6 | // 7 | // 8 | // 9 | // Unless required by applicable law or agreed to in writing, software 10 | // distributed under the License is distributed on an "AS IS" BASIS, 11 | // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 | // See the License for the specific language governing permissions and 13 | // limitations under the License. 14 | 15 | module.exports = { 16 | iterations: 10000, 17 | parallelQueries: 25, 18 | runs: 10 19 | }; 20 | -------------------------------------------------------------------------------- /lib/doxbee-async.js: -------------------------------------------------------------------------------- 1 | // Copyright 2018 Google LLC 2 | // 3 | // Licensed under the Apache License, Version 2.0 (the "License"); 4 | // you may not use this file except in compliance with the License. 5 | // You may obtain a copy of the License at 6 | // 7 | // 8 | // 9 | // Unless required by applicable law or agreed to in writing, software 10 | // distributed under the License is distributed on an "AS IS" BASIS, 11 | // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 | // See the License for the specific language governing permissions and 13 | // limitations under the License. 14 | 15 | "use strict"; 16 | 17 | const fakes = require("../lib/fakes-async.js"); 18 | 19 | module.exports = async function doxbee(stream, idOrPath) { 20 | const blob = fakes.blobManager.create(fakes.account); 21 | const tx = fakes.db.begin(); 22 | 23 | try { 24 | const blobId = await blob.put(stream); 25 | const file = await fakes.self.byUuidOrPath(idOrPath).get(); 26 | const previousId = file ? file.version : null; 27 | const version = { 28 | userAccountId: fakes.userAccount.id, 29 | date: new Date(), 30 | blobId: blobId, 31 | creatorId: fakes.userAccount.id, 32 | previousId: previousId 33 | }; 34 | version.id = fakes.Version.createHash(version); 35 | await fakes.Version.insert(version).execWithin(tx); 36 | 37 | let fileId; 38 | if (!file) { 39 | const splitPath = idOrPath.split("/"); 40 | const fileName = splitPath[splitPath.length - 1]; 41 | fileId = fakes.uuid.v1(); 42 | const q = await fakes.self.createQuery(idOrPath, { 43 | id: fileId, 44 | userAccountId: fakes.userAccount.id, 45 | name: fileName, 46 | version: version.id 47 | }); 48 | await q.execWithin(tx); 49 | } else { 50 | fileId = file.id; 51 | } 52 | await fakes.FileVersion.insert({ 53 | fileId: fileId, 54 | versionId: version.id 55 | }).execWithin(tx); 56 | 57 | await fakes.File.whereUpdate( 58 | { id: fileId }, 59 | { version: version.id } 60 | ).execWithin(tx); 61 | await tx.commit(); 62 | } catch (err) { 63 | await tx.rollback(); 64 | throw err; 65 | } 66 | }; 67 | -------------------------------------------------------------------------------- /lib/doxbee-promises.js: -------------------------------------------------------------------------------- 1 | // Copyright 2018 Google LLC 2 | // 3 | // Licensed under the Apache License, Version 2.0 (the "License"); 4 | // you may not use this file except in compliance with the License. 5 | // You may obtain a copy of the License at 6 | // 7 | // 8 | // 9 | // Unless required by applicable law or agreed to in writing, software 10 | // distributed under the License is distributed on an "AS IS" BASIS, 11 | // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 | // See the License for the specific language governing permissions and 13 | // limitations under the License. 14 | 15 | "use strict"; 16 | 17 | const fakes = require("../lib/fakes-promises.js"); 18 | 19 | module.exports = function doxbee(stream, idOrPath) { 20 | const blob = fakes.blobManager.create(fakes.account); 21 | const tx = fakes.db.begin(); 22 | let version, blobId, fileId, file; 23 | 24 | return blob 25 | .put(stream) 26 | .then(blobIdV => { 27 | blobId = blobIdV; 28 | return fakes.self.byUuidOrPath(idOrPath).get(); 29 | }) 30 | .then(fileV => { 31 | file = fileV; 32 | const previousId = file ? file.version : null; 33 | version = { 34 | userAccountId: fakes.userAccount.id, 35 | date: new Date(), 36 | blobId: blobId, 37 | creatorId: fakes.userAccount.id, 38 | previousId: previousId 39 | }; 40 | version.id = fakes.Version.createHash(version); 41 | return fakes.Version.insert(version).execWithin(tx); 42 | }) 43 | .then(_ => { 44 | if (!file) { 45 | const splitPath = idOrPath.split("/"); 46 | const fileName = splitPath[splitPath.length - 1]; 47 | const newId = fakes.uuid.v1(); 48 | return fakes.self 49 | .createQuery(idOrPath, { 50 | id: newId, 51 | userAccountId: fakes.userAccount.id, 52 | name: fileName, 53 | version: version.id 54 | }) 55 | .then(q => { 56 | return q.execWithin(tx); 57 | }) 58 | .then(_ => { 59 | return newId; 60 | }); 61 | } else { 62 | return file.id; 63 | } 64 | }) 65 | .then(fileIdV => { 66 | fileId = fileIdV; 67 | return fakes.FileVersion.insert({ 68 | fileId: fileId, 69 | versionId: version.id 70 | }).execWithin(tx); 71 | }) 72 | .then(_ => { 73 | return fakes.File.whereUpdate( 74 | { id: fileId }, 75 | { version: version.id } 76 | ).execWithin(tx); 77 | }) 78 | .then(_ => { 79 | return tx.commit(); 80 | }) 81 | .catch(err => { 82 | return tx.rollback().then(_ => Promise.reject(err)); 83 | }); 84 | }; 85 | -------------------------------------------------------------------------------- /lib/driver.js: -------------------------------------------------------------------------------- 1 | // Copyright 2018 Google LLC 2 | // 3 | // Licensed under the Apache License, Version 2.0 (the "License"); 4 | // you may not use this file except in compliance with the License. 5 | // You may obtain a copy of the License at 6 | // 7 | // 8 | // 9 | // Unless required by applicable law or agreed to in writing, software 10 | // distributed under the License is distributed on an "AS IS" BASIS, 11 | // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 | // See the License for the specific language governing permissions and 13 | // limitations under the License. 14 | 15 | "use strict"; 16 | 17 | module.exports = function driver(times, fn, ...args) { 18 | const startTime = Date.now(); 19 | const promises = new Array(times); 20 | for (let k = 0; k < times; ++k) { 21 | promises[k] = fn(k, ...args); 22 | } 23 | return Promise.all(promises).then(_ => Date.now() - startTime); 24 | }; 25 | -------------------------------------------------------------------------------- /lib/fakes-async.js: -------------------------------------------------------------------------------- 1 | // Copyright 2018 Google LLC 2 | // 3 | // Licensed under the Apache License, Version 2.0 (the "License"); 4 | // you may not use this file except in compliance with the License. 5 | // You may obtain a copy of the License at 6 | // 7 | // 8 | // 9 | // Unless required by applicable law or agreed to in writing, software 10 | // distributed under the License is distributed on an "AS IS" BASIS, 11 | // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 | // See the License for the specific language governing permissions and 13 | // limitations under the License. 14 | 15 | "use strict"; 16 | 17 | async function dummy_1() { } 18 | async function dummy_2(a) { } 19 | 20 | // a queryish object with all kinds of functions 21 | function Queryish() {} 22 | Queryish.prototype.all = dummy_1; 23 | Queryish.prototype.exec = dummy_1; 24 | Queryish.prototype.execWithin = dummy_2; 25 | Queryish.prototype.get = dummy_1; 26 | function queryish() { 27 | return new Queryish(); 28 | } 29 | 30 | class Uuid { 31 | v1() {} 32 | } 33 | const uuid = new Uuid(); 34 | 35 | const userAccount = { id: 1 }; 36 | 37 | const account = {}; 38 | 39 | function Blob() {} 40 | Blob.prototype.put = dummy_2; 41 | class BlobManager { 42 | create() { 43 | return new Blob(); 44 | } 45 | } 46 | const blobManager = new BlobManager(); 47 | 48 | var cqQueryish = queryish(); 49 | 50 | function Self() {} 51 | Self.prototype.byUuidOrPath = queryish; 52 | Self.prototype.createQuery = async function createQuery(x, y) { return cqQueryish; }; 53 | const self = new Self(); 54 | 55 | function File() {} 56 | File.insert = queryish; 57 | File.whereUpdate = queryish; 58 | 59 | function FileVersion() {} 60 | FileVersion.insert = queryish; 61 | 62 | function Version() {} 63 | Version.createHash = function createHash(v) { 64 | return 1; 65 | }; 66 | Version.insert = queryish; 67 | 68 | function Transaction() {} 69 | Transaction.prototype.commit = dummy_1; 70 | Transaction.prototype.rollback = dummy_1; 71 | 72 | class Db { 73 | begin() { 74 | return new Transaction(); 75 | } 76 | } 77 | const db = new Db(); 78 | 79 | module.exports = { 80 | uuid, 81 | userAccount, 82 | account, 83 | blobManager, 84 | self, 85 | File, 86 | FileVersion, 87 | Version, 88 | db 89 | }; 90 | -------------------------------------------------------------------------------- /lib/fakes-promises.js: -------------------------------------------------------------------------------- 1 | // Copyright 2018 Google LLC 2 | // 3 | // Licensed under the Apache License, Version 2.0 (the "License"); 4 | // you may not use this file except in compliance with the License. 5 | // You may obtain a copy of the License at 6 | // 7 | // 8 | // 9 | // Unless required by applicable law or agreed to in writing, software 10 | // distributed under the License is distributed on an "AS IS" BASIS, 11 | // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 | // See the License for the specific language governing permissions and 13 | // limitations under the License. 14 | 15 | "use strict"; 16 | 17 | function dummy_1() { return Promise.resolve(undefined); } 18 | function dummy_2(a) { return Promise.resolve(undefined); } 19 | 20 | // a queryish object with all kinds of functions 21 | function Queryish() {} 22 | Queryish.prototype.all = dummy_1; 23 | Queryish.prototype.exec = dummy_1; 24 | Queryish.prototype.execWithin = dummy_2; 25 | Queryish.prototype.get = dummy_1; 26 | function queryish() { 27 | return new Queryish(); 28 | } 29 | 30 | class Uuid { 31 | v1() {} 32 | } 33 | const uuid = new Uuid(); 34 | 35 | const userAccount = { id: 1 }; 36 | 37 | const account = {}; 38 | 39 | function Blob() {} 40 | Blob.prototype.put = dummy_2; 41 | class BlobManager { 42 | create() { 43 | return new Blob(); 44 | } 45 | } 46 | const blobManager = new BlobManager(); 47 | 48 | var cqQueryish = queryish(); 49 | 50 | function Self() {} 51 | Self.prototype.byUuidOrPath = queryish; 52 | Self.prototype.createQuery = function createQuery(x, y) { 53 | return Promise.resolve(cqQueryish); 54 | }; 55 | const self = new Self(); 56 | 57 | function File() {} 58 | File.insert = queryish; 59 | File.whereUpdate = queryish; 60 | 61 | function FileVersion() {} 62 | FileVersion.insert = queryish; 63 | 64 | function Version() {} 65 | Version.createHash = function createHash(v) { 66 | return 1; 67 | }; 68 | Version.insert = queryish; 69 | 70 | function Transaction() {} 71 | Transaction.prototype.commit = dummy_1; 72 | Transaction.prototype.rollback = dummy_1; 73 | 74 | class Db { 75 | begin() { 76 | return new Transaction(); 77 | } 78 | } 79 | const db = new Db(); 80 | 81 | module.exports = { 82 | uuid, 83 | userAccount, 84 | account, 85 | blobManager, 86 | self, 87 | File, 88 | FileVersion, 89 | Version, 90 | db 91 | }; 92 | -------------------------------------------------------------------------------- /lib/fibonacci-async.js: -------------------------------------------------------------------------------- 1 | // Copyright 2018 Google LLC 2 | // 3 | // Licensed under the Apache License, Version 2.0 (the "License"); 4 | // you may not use this file except in compliance with the License. 5 | // You may obtain a copy of the License at 6 | // 7 | // 8 | // 9 | // Unless required by applicable law or agreed to in writing, software 10 | // distributed under the License is distributed on an "AS IS" BASIS, 11 | // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 | // See the License for the specific language governing permissions and 13 | // limitations under the License. 14 | 15 | "use strict"; 16 | 17 | async function* fibonacciSequence() { 18 | for (let a = 0, b = 1;; ) { 19 | yield a; 20 | const c = a + b; 21 | a = b; 22 | b = c; 23 | } 24 | } 25 | 26 | module.exports = async function fibonacci(id, n) { 27 | for await (const value of fibonacciSequence()) { 28 | if (n-- === 0) return value; 29 | } 30 | } 31 | -------------------------------------------------------------------------------- /lib/measure-async.js: -------------------------------------------------------------------------------- 1 | // Copyright 2018 Google LLC 2 | // 3 | // Licensed under the Apache License, Version 2.0 (the "License"); 4 | // you may not use this file except in compliance with the License. 5 | // You may obtain a copy of the License at 6 | // 7 | // 8 | // 9 | // Unless required by applicable law or agreed to in writing, software 10 | // distributed under the License is distributed on an "AS IS" BASIS, 11 | // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 | // See the License for the specific language governing permissions and 13 | // limitations under the License. 14 | 15 | "use strict"; 16 | 17 | const driver = require("../lib/driver.js"); 18 | const config = require("../lib/config.js"); 19 | 20 | module.exports = async function measure(fn, ...args) { 21 | // Warmup pass. 22 | await driver(Math.min(350, config.iterations), fn, ...args); 23 | 24 | // Perform K runs with N promises. 25 | let time = 0; 26 | for (let k = 0; k < config.runs; ++k) { 27 | time += await driver(config.iterations, fn, ...args); 28 | } 29 | return time / config.runs; 30 | }; 31 | -------------------------------------------------------------------------------- /lib/measure-promises.js: -------------------------------------------------------------------------------- 1 | // Copyright 2018 Google LLC 2 | // 3 | // Licensed under the Apache License, Version 2.0 (the "License"); 4 | // you may not use this file except in compliance with the License. 5 | // You may obtain a copy of the License at 6 | // 7 | // 8 | // 9 | // Unless required by applicable law or agreed to in writing, software 10 | // distributed under the License is distributed on an "AS IS" BASIS, 11 | // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 | // See the License for the specific language governing permissions and 13 | // limitations under the License. 14 | 15 | "use strict"; 16 | 17 | const driver = require("../lib/driver.js"); 18 | const config = require("../lib/config.js"); 19 | 20 | module.exports = function measure(fn, ...args) { 21 | let p = driver(Math.min(350, config.iterations), fn, ...args).then(_ => 0); 22 | for (let k = 0; k < config.runs; ++k) { 23 | p = p.then(ptime => 24 | driver(config.iterations, fn, ...args).then(time => time + ptime) 25 | ); 26 | } 27 | return p.then(time => time / config.runs); 28 | }; 29 | -------------------------------------------------------------------------------- /lib/parallel-async.js: -------------------------------------------------------------------------------- 1 | // Copyright 2018 Google LLC 2 | // 3 | // Licensed under the Apache License, Version 2.0 (the "License"); 4 | // you may not use this file except in compliance with the License. 5 | // You may obtain a copy of the License at 6 | // 7 | // 8 | // 9 | // Unless required by applicable law or agreed to in writing, software 10 | // distributed under the License is distributed on an "AS IS" BASIS, 11 | // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 | // See the License for the specific language governing permissions and 13 | // limitations under the License. 14 | 15 | "use strict"; 16 | 17 | const config = require("../lib/config.js"); 18 | const fakes = require("../lib/fakes-async.js"); 19 | 20 | module.exports = async function parallel(stream, idOrPath) { 21 | const queries = new Array(config.parallelQueries); 22 | const tx = fakes.db.begin(); 23 | 24 | for (let index = 0; index < queries.length; ++index) { 25 | queries[index] = fakes.FileVersion.insert({ index }).execWithin(tx); 26 | } 27 | 28 | try { 29 | await Promise.all(queries); 30 | await tx.commit(); 31 | } catch (err) { 32 | await tx.rollback(); 33 | throw err; 34 | } 35 | }; 36 | -------------------------------------------------------------------------------- /lib/parallel-promises.js: -------------------------------------------------------------------------------- 1 | // Copyright 2018 Google LLC 2 | // 3 | // Licensed under the Apache License, Version 2.0 (the "License"); 4 | // you may not use this file except in compliance with the License. 5 | // You may obtain a copy of the License at 6 | // 7 | // 8 | // 9 | // Unless required by applicable law or agreed to in writing, software 10 | // distributed under the License is distributed on an "AS IS" BASIS, 11 | // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 | // See the License for the specific language governing permissions and 13 | // limitations under the License. 14 | 15 | "use strict"; 16 | 17 | const config = require("../lib/config.js"); 18 | const fakes = require("../lib/fakes-promises.js"); 19 | 20 | module.exports = function parallel(stream, idOrPath) { 21 | const queries = new Array(config.parallelQueries); 22 | const tx = fakes.db.begin(); 23 | 24 | for (let index = 0; index < queries.length; ++index) { 25 | queries[index] = fakes.FileVersion.insert({ index }).execWithin(tx); 26 | } 27 | 28 | Promise.all(queries) 29 | .then(_ => { 30 | return tx.commit(); 31 | }) 32 | .catch(err => { 33 | return tx.rollback().then(_ => Promise.reject(err)); 34 | }); 35 | }; 36 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "promise-performance-tests", 3 | "version": "0.0.1", 4 | "description": "Promise performance tests", 5 | "main": "run.js", 6 | "scripts": { 7 | "build:doxbee-async-babel": "babel -o build/doxbee-async-babel.js --presets env lib/doxbee-async.js", 8 | "build:fibonacci-async-babel": "babel -o build/fibonacci-async-babel.js --plugins transform-async-generator-functions --presets env lib/fibonacci-async.js", 9 | "build:measure-async-babel": "babel -o build/measure-async-babel.js --presets env lib/measure-async.js", 10 | "build:parallel-async-babel": "babel -o build/parallel-async-babel.js --presets env lib/parallel-async.js", 11 | "build": "npm run build:doxbee-async-babel && npm run build:fibonacci-async-babel && npm run build:measure-async-babel && npm run build:parallel-async-babel && webpack", 12 | "postinstall": "npm run build", 13 | "precommit": "lint-staged", 14 | "start": "node run.js", 15 | "test": "echo \"Error: no test specified\" && exit 1" 16 | }, 17 | "lint-staged": { 18 | "lib/*.js": [ 19 | "prettier --write", 20 | "git add" 21 | ], 22 | "webpack.config.js": [ 23 | "prettier --write", 24 | "git add" 25 | ] 26 | }, 27 | "author": { 28 | "name": "Benedikt Meurer", 29 | "email": "bmeurer@chromium.org", 30 | "url": "http://benediktmeurer.de" 31 | }, 32 | "license": "Apache License 2.0", 33 | "dependencies": { 34 | "bluebird": "^3.5.1", 35 | "regenerator-runtime": "^0.11.1" 36 | }, 37 | "devDependencies": { 38 | "babel-cli": "^6.26.0", 39 | "babel-plugin-transform-async-generator-functions": "^6.24.1", 40 | "babel-preset-env": "^1.6.1", 41 | "lint-staged": "^7.0.0", 42 | "prettier": "^1.10.2", 43 | "webpack": "^4.20.2", 44 | "webpack-cli": "^3.1.1" 45 | } 46 | } 47 | -------------------------------------------------------------------------------- /run.js: -------------------------------------------------------------------------------- 1 | // Copyright 2018 Google LLC 2 | // 3 | // Licensed under the Apache License, Version 2.0 (the "License"); 4 | // you may not use this file except in compliance with the License. 5 | // You may obtain a copy of the License at 6 | // 7 | // 8 | // 9 | // Unless required by applicable law or agreed to in writing, software 10 | // distributed under the License is distributed on an "AS IS" BASIS, 11 | // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 | // See the License for the specific language governing permissions and 13 | // limitations under the License. 14 | 15 | "use strict"; 16 | 17 | const cp = require('child_process'); 18 | const fs = require('fs'); 19 | 20 | const BENCHMARKS = fs.readdirSync('src') 21 | .filter(filename => filename.endsWith('.js')) 22 | .map(filename => `./src/${filename}`); 23 | BENCHMARKS.sort(); 24 | 25 | try { 26 | for (const benchmark of BENCHMARKS) { 27 | const p = cp.spawnSync(process.execPath, [ benchmark ]); 28 | console.log(p.stdout.toString().trim()); 29 | } 30 | } catch (err) { 31 | console.error(err); 32 | } 33 | -------------------------------------------------------------------------------- /src/doxbee-async-bluebird.js: -------------------------------------------------------------------------------- 1 | // Copyright 2018 Google LLC 2 | // 3 | // Licensed under the Apache License, Version 2.0 (the "License"); 4 | // you may not use this file except in compliance with the License. 5 | // You may obtain a copy of the License at 6 | // 7 | // 8 | // 9 | // Unless required by applicable law or agreed to in writing, software 10 | // distributed under the License is distributed on an "AS IS" BASIS, 11 | // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 | // See the License for the specific language governing permissions and 13 | // limitations under the License. 14 | 15 | "use strict"; 16 | 17 | Promise = require("bluebird"); 18 | 19 | const doxbee = require("../lib/doxbee-async.js"); 20 | const measure = require("../lib/measure-async.js"); 21 | 22 | (async () => { 23 | try { 24 | const time = await measure(doxbee, "b", "c"); 25 | console.log(`Time(doxbee-async-bluebird): ${time} ms.`); 26 | } catch (err) { 27 | console.error(err); 28 | } 29 | })(); 30 | -------------------------------------------------------------------------------- /src/doxbee-async-es2017-babel.js: -------------------------------------------------------------------------------- 1 | // Copyright 2018 Google LLC 2 | // 3 | // Licensed under the Apache License, Version 2.0 (the "License"); 4 | // you may not use this file except in compliance with the License. 5 | // You may obtain a copy of the License at 6 | // 7 | // 8 | // 9 | // Unless required by applicable law or agreed to in writing, software 10 | // distributed under the License is distributed on an "AS IS" BASIS, 11 | // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 | // See the License for the specific language governing permissions and 13 | // limitations under the License. 14 | 15 | "use strict"; 16 | 17 | require("regenerator-runtime/runtime"); 18 | 19 | const doxbee = require("../build/doxbee-async-babel.js"); 20 | const measure = require("../build/measure-async-babel.js"); 21 | 22 | (async () => { 23 | try { 24 | const time = await measure(doxbee, "b", "c"); 25 | console.log(`Time(doxbee-async-es2017-babel): ${time} ms.`); 26 | } catch (err) { 27 | console.error(err); 28 | } 29 | })(); 30 | -------------------------------------------------------------------------------- /src/doxbee-async-es2017-native.js: -------------------------------------------------------------------------------- 1 | // Copyright 2018 Google LLC 2 | // 3 | // Licensed under the Apache License, Version 2.0 (the "License"); 4 | // you may not use this file except in compliance with the License. 5 | // You may obtain a copy of the License at 6 | // 7 | // 8 | // 9 | // Unless required by applicable law or agreed to in writing, software 10 | // distributed under the License is distributed on an "AS IS" BASIS, 11 | // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 | // See the License for the specific language governing permissions and 13 | // limitations under the License. 14 | 15 | "use strict"; 16 | 17 | const doxbee = require("../lib/doxbee-async.js"); 18 | const measure = require("../lib/measure-async.js"); 19 | 20 | (async () => { 21 | try { 22 | const time = await measure(doxbee, "b", "c"); 23 | console.log(`Time(doxbee-async-es2017-native): ${time} ms.`); 24 | } catch (err) { 25 | console.error(err); 26 | } 27 | })(); 28 | -------------------------------------------------------------------------------- /src/doxbee-promises-bluebird.js: -------------------------------------------------------------------------------- 1 | // Copyright 2018 Google LLC 2 | // 3 | // Licensed under the Apache License, Version 2.0 (the "License"); 4 | // you may not use this file except in compliance with the License. 5 | // You may obtain a copy of the License at 6 | // 7 | // 8 | // 9 | // Unless required by applicable law or agreed to in writing, software 10 | // distributed under the License is distributed on an "AS IS" BASIS, 11 | // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 | // See the License for the specific language governing permissions and 13 | // limitations under the License. 14 | 15 | "use strict"; 16 | 17 | Promise = require("bluebird"); 18 | 19 | const doxbee = require("../lib/doxbee-promises.js"); 20 | const measure = require("../lib/measure-promises.js"); 21 | 22 | measure(doxbee, "b", "c") 23 | .then(time => console.log(`Time(doxbee-promises-bluebird): ${time} ms.`)) 24 | .catch(reason => console.error(reason)); 25 | -------------------------------------------------------------------------------- /src/doxbee-promises-es2015-native.js: -------------------------------------------------------------------------------- 1 | // Copyright 2018 Google LLC 2 | // 3 | // Licensed under the Apache License, Version 2.0 (the "License"); 4 | // you may not use this file except in compliance with the License. 5 | // You may obtain a copy of the License at 6 | // 7 | // 8 | // 9 | // Unless required by applicable law or agreed to in writing, software 10 | // distributed under the License is distributed on an "AS IS" BASIS, 11 | // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 | // See the License for the specific language governing permissions and 13 | // limitations under the License. 14 | 15 | "use strict"; 16 | 17 | const doxbee = require("../lib/doxbee-promises.js"); 18 | const measure = require("../lib/measure-promises.js"); 19 | 20 | measure(doxbee, "b", "c") 21 | .then(time => console.log(`Time(doxbee-promises-es2015-native): ${time} ms.`)) 22 | .catch(reason => console.error(reason)); 23 | -------------------------------------------------------------------------------- /src/fibonacci-async-es2017-babel.js: -------------------------------------------------------------------------------- 1 | // Copyright 2018 Google LLC 2 | // 3 | // Licensed under the Apache License, Version 2.0 (the "License"); 4 | // you may not use this file except in compliance with the License. 5 | // You may obtain a copy of the License at 6 | // 7 | // 8 | // 9 | // Unless required by applicable law or agreed to in writing, software 10 | // distributed under the License is distributed on an "AS IS" BASIS, 11 | // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 | // See the License for the specific language governing permissions and 13 | // limitations under the License. 14 | 15 | "use strict"; 16 | 17 | require("regenerator-runtime/runtime"); 18 | 19 | const fibonacci = require("../build/fibonacci-async-babel.js"); 20 | const measure = require("../build/measure-async-babel.js"); 21 | 22 | (async () => { 23 | try { 24 | const time = await measure(fibonacci, 42); 25 | console.log(`Time(fibonacci-async-es2017-babel): ${time} ms.`); 26 | } catch (err) { 27 | console.error(err); 28 | } 29 | })(); 30 | -------------------------------------------------------------------------------- /src/fibonacci-async-es2017-native.js: -------------------------------------------------------------------------------- 1 | // Copyright 2018 Google LLC 2 | // 3 | // Licensed under the Apache License, Version 2.0 (the "License"); 4 | // you may not use this file except in compliance with the License. 5 | // You may obtain a copy of the License at 6 | // 7 | // 8 | // 9 | // Unless required by applicable law or agreed to in writing, software 10 | // distributed under the License is distributed on an "AS IS" BASIS, 11 | // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 | // See the License for the specific language governing permissions and 13 | // limitations under the License. 14 | 15 | "use strict"; 16 | 17 | const fibonacci = require("../lib/fibonacci-async.js"); 18 | const measure = require("../lib/measure-async.js"); 19 | 20 | (async () => { 21 | try { 22 | const time = await measure(fibonacci, 42); 23 | console.log(`Time(fibonacci-async-es2017-native): ${time} ms.`); 24 | } catch (err) { 25 | console.error(err); 26 | } 27 | })(); 28 | -------------------------------------------------------------------------------- /src/parallel-async-bluebird.js: -------------------------------------------------------------------------------- 1 | // Copyright 2018 Google LLC 2 | // 3 | // Licensed under the Apache License, Version 2.0 (the "License"); 4 | // you may not use this file except in compliance with the License. 5 | // You may obtain a copy of the License at 6 | // 7 | // 8 | // 9 | // Unless required by applicable law or agreed to in writing, software 10 | // distributed under the License is distributed on an "AS IS" BASIS, 11 | // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 | // See the License for the specific language governing permissions and 13 | // limitations under the License. 14 | 15 | "use strict"; 16 | 17 | Promise = require("bluebird"); 18 | 19 | const parallel = require("../lib/parallel-async.js"); 20 | const measure = require("../lib/measure-async.js"); 21 | 22 | (async () => { 23 | try { 24 | const time = await measure(parallel, "b", "c"); 25 | console.log(`Time(parallel-async-bluebird): ${time} ms.`); 26 | } catch (err) { 27 | console.error(err); 28 | } 29 | })(); 30 | -------------------------------------------------------------------------------- /src/parallel-async-es2017-babel.js: -------------------------------------------------------------------------------- 1 | // Copyright 2018 Google LLC 2 | // 3 | // Licensed under the Apache License, Version 2.0 (the "License"); 4 | // you may not use this file except in compliance with the License. 5 | // You may obtain a copy of the License at 6 | // 7 | // 8 | // 9 | // Unless required by applicable law or agreed to in writing, software 10 | // distributed under the License is distributed on an "AS IS" BASIS, 11 | // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 | // See the License for the specific language governing permissions and 13 | // limitations under the License. 14 | 15 | "use strict"; 16 | 17 | require("regenerator-runtime/runtime"); 18 | 19 | const parallel = require("../build/parallel-async-babel.js"); 20 | const measure = require("../build/measure-async-babel.js"); 21 | 22 | (async () => { 23 | try { 24 | const time = await measure(parallel, "b", "c"); 25 | console.log(`Time(parallel-async-es2017-babel): ${time} ms.`); 26 | } catch (err) { 27 | console.error(err); 28 | } 29 | })(); 30 | -------------------------------------------------------------------------------- /src/parallel-async-es2017-native.js: -------------------------------------------------------------------------------- 1 | // Copyright 2018 Google LLC 2 | // 3 | // Licensed under the Apache License, Version 2.0 (the "License"); 4 | // you may not use this file except in compliance with the License. 5 | // You may obtain a copy of the License at 6 | // 7 | // 8 | // 9 | // Unless required by applicable law or agreed to in writing, software 10 | // distributed under the License is distributed on an "AS IS" BASIS, 11 | // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 | // See the License for the specific language governing permissions and 13 | // limitations under the License. 14 | 15 | "use strict"; 16 | 17 | const parallel = require("../lib/parallel-async.js"); 18 | const measure = require("../lib/measure-async.js"); 19 | 20 | (async () => { 21 | try { 22 | const time = await measure(parallel, "b", "c"); 23 | console.log(`Time(parallel-async-es2017-native): ${time} ms.`); 24 | } catch (err) { 25 | console.error(err); 26 | } 27 | })(); 28 | -------------------------------------------------------------------------------- /src/parallel-promises-bluebird.js: -------------------------------------------------------------------------------- 1 | // Copyright 2018 Google LLC 2 | // 3 | // Licensed under the Apache License, Version 2.0 (the "License"); 4 | // you may not use this file except in compliance with the License. 5 | // You may obtain a copy of the License at 6 | // 7 | // 8 | // 9 | // Unless required by applicable law or agreed to in writing, software 10 | // distributed under the License is distributed on an "AS IS" BASIS, 11 | // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 | // See the License for the specific language governing permissions and 13 | // limitations under the License. 14 | 15 | "use strict"; 16 | 17 | Promise = require("bluebird"); 18 | 19 | const parallel = require("../lib/parallel-promises.js"); 20 | const measure = require("../lib/measure-promises.js"); 21 | 22 | measure(parallel, "b", "c") 23 | .then(time => { 24 | console.log(`Time(parallel-promises-bluebird): ${time} ms.`); 25 | }) 26 | .catch(reason => console.error(reason)); 27 | -------------------------------------------------------------------------------- /src/parallel-promises-es2015-native.js: -------------------------------------------------------------------------------- 1 | // Copyright 2018 Google LLC 2 | // 3 | // Licensed under the Apache License, Version 2.0 (the "License"); 4 | // you may not use this file except in compliance with the License. 5 | // You may obtain a copy of the License at 6 | // 7 | // 8 | // 9 | // Unless required by applicable law or agreed to in writing, software 10 | // distributed under the License is distributed on an "AS IS" BASIS, 11 | // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 | // See the License for the specific language governing permissions and 13 | // limitations under the License. 14 | 15 | "use strict"; 16 | 17 | const parallel = require("../lib/parallel-promises.js"); 18 | const measure = require("../lib/measure-promises.js"); 19 | 20 | measure(parallel, "b", "c") 21 | .then(time => { 22 | console.log(`Time(parallel-promises-es2015-native): ${time} ms.`); 23 | }) 24 | .catch(reason => console.error(reason)); 25 | -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- 1 | // Copyright 2018 Google LLC 2 | // 3 | // Licensed under the Apache License, Version 2.0 (the "License"); 4 | // you may not use this file except in compliance with the License. 5 | // You may obtain a copy of the License at 6 | // 7 | // 8 | // 9 | // Unless required by applicable law or agreed to in writing, software 10 | // distributed under the License is distributed on an "AS IS" BASIS, 11 | // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 | // See the License for the specific language governing permissions and 13 | // limitations under the License. 14 | 15 | const fs = require("fs"); 16 | const path = require("path"); 17 | const webpack = require("webpack"); 18 | 19 | module.exports = fs 20 | .readdirSync("src") 21 | .filter(filename => filename.endsWith(".js")) 22 | .map(filename => ({ 23 | context: path.resolve("src"), 24 | entry: `./${filename}`, 25 | output: { 26 | filename, 27 | path: path.resolve("dist") 28 | }, 29 | optimization: { 30 | minimize: false 31 | }, 32 | plugins: [ 33 | new webpack.BannerPlugin({ 34 | banner: 35 | "// Required for JavaScript engine shells.\n" + 36 | "if (typeof console === 'undefined') {\n" + 37 | " console = {log: print};\n" + 38 | "}", 39 | raw: true 40 | }) 41 | ] 42 | })); 43 | -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- 1 | # THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY. 2 | # yarn lockfile v1 3 | 4 | 5 | abbrev@1: 6 | version "1.1.1" 7 | resolved "https://registry.yarnpkg.com/abbrev/-/abbrev-1.1.1.tgz#f8f2c887ad10bf67f634f005b6987fed3179aac8" 8 | 9 | acorn-dynamic-import@^2.0.0: 10 | version "2.0.2" 11 | resolved "https://registry.yarnpkg.com/acorn-dynamic-import/-/acorn-dynamic-import-2.0.2.tgz#c752bd210bef679501b6c6cb7fc84f8f47158cc4" 12 | dependencies: 13 | acorn "^4.0.3" 14 | 15 | acorn@^4.0.3: 16 | version "4.0.13" 17 | resolved "https://registry.yarnpkg.com/acorn/-/acorn-4.0.13.tgz#105495ae5361d697bd195c825192e1ad7f253787" 18 | 19 | acorn@^5.0.0: 20 | version "5.4.1" 21 | resolved "https://registry.yarnpkg.com/acorn/-/acorn-5.4.1.tgz#fdc58d9d17f4a4e98d102ded826a9b9759125102" 22 | 23 | ajv-keywords@^3.1.0: 24 | version "3.1.0" 25 | resolved "https://registry.yarnpkg.com/ajv-keywords/-/ajv-keywords-3.1.0.tgz#ac2b27939c543e95d2c06e7f7f5c27be4aa543be" 26 | 27 | ajv@^4.9.1: 28 | version "4.11.8" 29 | resolved "https://registry.yarnpkg.com/ajv/-/ajv-4.11.8.tgz#82ffb02b29e662ae53bdc20af15947706739c536" 30 | dependencies: 31 | co "^4.6.0" 32 | json-stable-stringify "^1.0.1" 33 | 34 | ajv@^6.1.0: 35 | version "6.1.1" 36 | resolved "https://registry.yarnpkg.com/ajv/-/ajv-6.1.1.tgz#978d597fbc2b7d0e5a5c3ddeb149a682f2abfa0e" 37 | dependencies: 38 | fast-deep-equal "^1.0.0" 39 | fast-json-stable-stringify "^2.0.0" 40 | json-schema-traverse "^0.3.0" 41 | 42 | align-text@^0.1.1, align-text@^0.1.3: 43 | version "0.1.4" 44 | resolved "https://registry.yarnpkg.com/align-text/-/align-text-0.1.4.tgz#0cd90a561093f35d0a99256c22b7069433fad117" 45 | dependencies: 46 | kind-of "^3.0.2" 47 | longest "^1.0.1" 48 | repeat-string "^1.5.2" 49 | 50 | ansi-escapes@^1.0.0: 51 | version "1.4.0" 52 | resolved "https://registry.yarnpkg.com/ansi-escapes/-/ansi-escapes-1.4.0.tgz#d3a8a83b319aa67793662b13e761c7911422306e" 53 | 54 | ansi-regex@^2.0.0: 55 | version "2.1.1" 56 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-2.1.1.tgz#c3b33ab5ee360d86e0e628f0468ae7ef27d654df" 57 | 58 | ansi-regex@^3.0.0: 59 | version "3.0.0" 60 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-3.0.0.tgz#ed0317c322064f79466c02966bddb605ab37d998" 61 | 62 | ansi-styles@^2.2.1: 63 | version "2.2.1" 64 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-2.2.1.tgz#b432dd3358b634cf75e1e4664368240533c1ddbe" 65 | 66 | ansi-styles@^3.2.0: 67 | version "3.2.0" 68 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-3.2.0.tgz#c159b8d5be0f9e5a6f346dab94f16ce022161b88" 69 | dependencies: 70 | color-convert "^1.9.0" 71 | 72 | any-observable@^0.2.0: 73 | version "0.2.0" 74 | resolved "https://registry.yarnpkg.com/any-observable/-/any-observable-0.2.0.tgz#c67870058003579009083f54ac0abafb5c33d242" 75 | 76 | anymatch@^1.3.0: 77 | version "1.3.2" 78 | resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-1.3.2.tgz#553dcb8f91e3c889845dfdba34c77721b90b9d7a" 79 | dependencies: 80 | micromatch "^2.1.5" 81 | normalize-path "^2.0.0" 82 | 83 | app-root-path@^2.0.0: 84 | version "2.0.1" 85 | resolved "https://registry.yarnpkg.com/app-root-path/-/app-root-path-2.0.1.tgz#cd62dcf8e4fd5a417efc664d2e5b10653c651b46" 86 | 87 | aproba@^1.0.3: 88 | version "1.2.0" 89 | resolved "https://registry.yarnpkg.com/aproba/-/aproba-1.2.0.tgz#6802e6264efd18c790a1b0d517f0f2627bf2c94a" 90 | 91 | are-we-there-yet@~1.1.2: 92 | version "1.1.4" 93 | resolved "https://registry.yarnpkg.com/are-we-there-yet/-/are-we-there-yet-1.1.4.tgz#bb5dca382bb94f05e15194373d16fd3ba1ca110d" 94 | dependencies: 95 | delegates "^1.0.0" 96 | readable-stream "^2.0.6" 97 | 98 | argparse@^1.0.7: 99 | version "1.0.9" 100 | resolved "https://registry.yarnpkg.com/argparse/-/argparse-1.0.9.tgz#73d83bc263f86e97f8cc4f6bae1b0e90a7d22c86" 101 | dependencies: 102 | sprintf-js "~1.0.2" 103 | 104 | arr-diff@^2.0.0: 105 | version "2.0.0" 106 | resolved "https://registry.yarnpkg.com/arr-diff/-/arr-diff-2.0.0.tgz#8f3b827f955a8bd669697e4a4256ac3ceae356cf" 107 | dependencies: 108 | arr-flatten "^1.0.1" 109 | 110 | arr-flatten@^1.0.1: 111 | version "1.1.0" 112 | resolved "https://registry.yarnpkg.com/arr-flatten/-/arr-flatten-1.1.0.tgz#36048bbff4e7b47e136644316c99669ea5ae91f1" 113 | 114 | array-unique@^0.2.1: 115 | version "0.2.1" 116 | resolved "https://registry.yarnpkg.com/array-unique/-/array-unique-0.2.1.tgz#a1d97ccafcbc2625cc70fadceb36a50c58b01a53" 117 | 118 | asn1.js@^4.0.0: 119 | version "4.10.1" 120 | resolved "https://registry.yarnpkg.com/asn1.js/-/asn1.js-4.10.1.tgz#b9c2bf5805f1e64aadeed6df3a2bfafb5a73f5a0" 121 | dependencies: 122 | bn.js "^4.0.0" 123 | inherits "^2.0.1" 124 | minimalistic-assert "^1.0.0" 125 | 126 | asn1@~0.2.3: 127 | version "0.2.3" 128 | resolved "https://registry.yarnpkg.com/asn1/-/asn1-0.2.3.tgz#dac8787713c9966849fc8180777ebe9c1ddf3b86" 129 | 130 | assert-plus@1.0.0, assert-plus@^1.0.0: 131 | version "1.0.0" 132 | resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-1.0.0.tgz#f12e0f3c5d77b0b1cdd9146942e4e96c1e4dd525" 133 | 134 | assert-plus@^0.2.0: 135 | version "0.2.0" 136 | resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-0.2.0.tgz#d74e1b87e7affc0db8aadb7021f3fe48101ab234" 137 | 138 | assert@^1.1.1: 139 | version "1.4.1" 140 | resolved "https://registry.yarnpkg.com/assert/-/assert-1.4.1.tgz#99912d591836b5a6f5b345c0f07eefc08fc65d91" 141 | dependencies: 142 | util "0.10.3" 143 | 144 | async-each@^1.0.0: 145 | version "1.0.1" 146 | resolved "https://registry.yarnpkg.com/async-each/-/async-each-1.0.1.tgz#19d386a1d9edc6e7c1c85d388aedbcc56d33602d" 147 | 148 | async@^2.1.2: 149 | version "2.6.0" 150 | resolved "https://registry.yarnpkg.com/async/-/async-2.6.0.tgz#61a29abb6fcc026fea77e56d1c6ec53a795951f4" 151 | dependencies: 152 | lodash "^4.14.0" 153 | 154 | asynckit@^0.4.0: 155 | version "0.4.0" 156 | resolved "https://registry.yarnpkg.com/asynckit/-/asynckit-0.4.0.tgz#c79ed97f7f34cb8f2ba1bc9790bcc366474b4b79" 157 | 158 | aws-sign2@~0.6.0: 159 | version "0.6.0" 160 | resolved "https://registry.yarnpkg.com/aws-sign2/-/aws-sign2-0.6.0.tgz#14342dd38dbcc94d0e5b87d763cd63612c0e794f" 161 | 162 | aws4@^1.2.1: 163 | version "1.6.0" 164 | resolved "https://registry.yarnpkg.com/aws4/-/aws4-1.6.0.tgz#83ef5ca860b2b32e4a0deedee8c771b9db57471e" 165 | 166 | babel-cli@^6.26.0: 167 | version "6.26.0" 168 | resolved "https://registry.yarnpkg.com/babel-cli/-/babel-cli-6.26.0.tgz#502ab54874d7db88ad00b887a06383ce03d002f1" 169 | dependencies: 170 | babel-core "^6.26.0" 171 | babel-polyfill "^6.26.0" 172 | babel-register "^6.26.0" 173 | babel-runtime "^6.26.0" 174 | commander "^2.11.0" 175 | convert-source-map "^1.5.0" 176 | fs-readdir-recursive "^1.0.0" 177 | glob "^7.1.2" 178 | lodash "^4.17.4" 179 | output-file-sync "^1.1.2" 180 | path-is-absolute "^1.0.1" 181 | slash "^1.0.0" 182 | source-map "^0.5.6" 183 | v8flags "^2.1.1" 184 | optionalDependencies: 185 | chokidar "^1.6.1" 186 | 187 | babel-code-frame@^6.26.0: 188 | version "6.26.0" 189 | resolved "https://registry.yarnpkg.com/babel-code-frame/-/babel-code-frame-6.26.0.tgz#63fd43f7dc1e3bb7ce35947db8fe369a3f58c74b" 190 | dependencies: 191 | chalk "^1.1.3" 192 | esutils "^2.0.2" 193 | js-tokens "^3.0.2" 194 | 195 | babel-core@^6.26.0: 196 | version "6.26.0" 197 | resolved "https://registry.yarnpkg.com/babel-core/-/babel-core-6.26.0.tgz#af32f78b31a6fcef119c87b0fd8d9753f03a0bb8" 198 | dependencies: 199 | babel-code-frame "^6.26.0" 200 | babel-generator "^6.26.0" 201 | babel-helpers "^6.24.1" 202 | babel-messages "^6.23.0" 203 | babel-register "^6.26.0" 204 | babel-runtime "^6.26.0" 205 | babel-template "^6.26.0" 206 | babel-traverse "^6.26.0" 207 | babel-types "^6.26.0" 208 | babylon "^6.18.0" 209 | convert-source-map "^1.5.0" 210 | debug "^2.6.8" 211 | json5 "^0.5.1" 212 | lodash "^4.17.4" 213 | minimatch "^3.0.4" 214 | path-is-absolute "^1.0.1" 215 | private "^0.1.7" 216 | slash "^1.0.0" 217 | source-map "^0.5.6" 218 | 219 | babel-generator@^6.26.0: 220 | version "6.26.1" 221 | resolved "https://registry.yarnpkg.com/babel-generator/-/babel-generator-6.26.1.tgz#1844408d3b8f0d35a404ea7ac180f087a601bd90" 222 | dependencies: 223 | babel-messages "^6.23.0" 224 | babel-runtime "^6.26.0" 225 | babel-types "^6.26.0" 226 | detect-indent "^4.0.0" 227 | jsesc "^1.3.0" 228 | lodash "^4.17.4" 229 | source-map "^0.5.7" 230 | trim-right "^1.0.1" 231 | 232 | babel-helper-builder-binary-assignment-operator-visitor@^6.24.1: 233 | version "6.24.1" 234 | resolved "https://registry.yarnpkg.com/babel-helper-builder-binary-assignment-operator-visitor/-/babel-helper-builder-binary-assignment-operator-visitor-6.24.1.tgz#cce4517ada356f4220bcae8a02c2b346f9a56664" 235 | dependencies: 236 | babel-helper-explode-assignable-expression "^6.24.1" 237 | babel-runtime "^6.22.0" 238 | babel-types "^6.24.1" 239 | 240 | babel-helper-call-delegate@^6.24.1: 241 | version "6.24.1" 242 | resolved "https://registry.yarnpkg.com/babel-helper-call-delegate/-/babel-helper-call-delegate-6.24.1.tgz#ece6aacddc76e41c3461f88bfc575bd0daa2df8d" 243 | dependencies: 244 | babel-helper-hoist-variables "^6.24.1" 245 | babel-runtime "^6.22.0" 246 | babel-traverse "^6.24.1" 247 | babel-types "^6.24.1" 248 | 249 | babel-helper-define-map@^6.24.1: 250 | version "6.26.0" 251 | resolved "https://registry.yarnpkg.com/babel-helper-define-map/-/babel-helper-define-map-6.26.0.tgz#a5f56dab41a25f97ecb498c7ebaca9819f95be5f" 252 | dependencies: 253 | babel-helper-function-name "^6.24.1" 254 | babel-runtime "^6.26.0" 255 | babel-types "^6.26.0" 256 | lodash "^4.17.4" 257 | 258 | babel-helper-explode-assignable-expression@^6.24.1: 259 | version "6.24.1" 260 | resolved "https://registry.yarnpkg.com/babel-helper-explode-assignable-expression/-/babel-helper-explode-assignable-expression-6.24.1.tgz#f25b82cf7dc10433c55f70592d5746400ac22caa" 261 | dependencies: 262 | babel-runtime "^6.22.0" 263 | babel-traverse "^6.24.1" 264 | babel-types "^6.24.1" 265 | 266 | babel-helper-function-name@^6.24.1: 267 | version "6.24.1" 268 | resolved "https://registry.yarnpkg.com/babel-helper-function-name/-/babel-helper-function-name-6.24.1.tgz#d3475b8c03ed98242a25b48351ab18399d3580a9" 269 | dependencies: 270 | babel-helper-get-function-arity "^6.24.1" 271 | babel-runtime "^6.22.0" 272 | babel-template "^6.24.1" 273 | babel-traverse "^6.24.1" 274 | babel-types "^6.24.1" 275 | 276 | babel-helper-get-function-arity@^6.24.1: 277 | version "6.24.1" 278 | resolved "https://registry.yarnpkg.com/babel-helper-get-function-arity/-/babel-helper-get-function-arity-6.24.1.tgz#8f7782aa93407c41d3aa50908f89b031b1b6853d" 279 | dependencies: 280 | babel-runtime "^6.22.0" 281 | babel-types "^6.24.1" 282 | 283 | babel-helper-hoist-variables@^6.24.1: 284 | version "6.24.1" 285 | resolved "https://registry.yarnpkg.com/babel-helper-hoist-variables/-/babel-helper-hoist-variables-6.24.1.tgz#1ecb27689c9d25513eadbc9914a73f5408be7a76" 286 | dependencies: 287 | babel-runtime "^6.22.0" 288 | babel-types "^6.24.1" 289 | 290 | babel-helper-optimise-call-expression@^6.24.1: 291 | version "6.24.1" 292 | resolved "https://registry.yarnpkg.com/babel-helper-optimise-call-expression/-/babel-helper-optimise-call-expression-6.24.1.tgz#f7a13427ba9f73f8f4fa993c54a97882d1244257" 293 | dependencies: 294 | babel-runtime "^6.22.0" 295 | babel-types "^6.24.1" 296 | 297 | babel-helper-regex@^6.24.1: 298 | version "6.26.0" 299 | resolved "https://registry.yarnpkg.com/babel-helper-regex/-/babel-helper-regex-6.26.0.tgz#325c59f902f82f24b74faceed0363954f6495e72" 300 | dependencies: 301 | babel-runtime "^6.26.0" 302 | babel-types "^6.26.0" 303 | lodash "^4.17.4" 304 | 305 | babel-helper-remap-async-to-generator@^6.24.1: 306 | version "6.24.1" 307 | resolved "https://registry.yarnpkg.com/babel-helper-remap-async-to-generator/-/babel-helper-remap-async-to-generator-6.24.1.tgz#5ec581827ad723fecdd381f1c928390676e4551b" 308 | dependencies: 309 | babel-helper-function-name "^6.24.1" 310 | babel-runtime "^6.22.0" 311 | babel-template "^6.24.1" 312 | babel-traverse "^6.24.1" 313 | babel-types "^6.24.1" 314 | 315 | babel-helper-replace-supers@^6.24.1: 316 | version "6.24.1" 317 | resolved "https://registry.yarnpkg.com/babel-helper-replace-supers/-/babel-helper-replace-supers-6.24.1.tgz#bf6dbfe43938d17369a213ca8a8bf74b6a90ab1a" 318 | dependencies: 319 | babel-helper-optimise-call-expression "^6.24.1" 320 | babel-messages "^6.23.0" 321 | babel-runtime "^6.22.0" 322 | babel-template "^6.24.1" 323 | babel-traverse "^6.24.1" 324 | babel-types "^6.24.1" 325 | 326 | babel-helpers@^6.24.1: 327 | version "6.24.1" 328 | resolved "https://registry.yarnpkg.com/babel-helpers/-/babel-helpers-6.24.1.tgz#3471de9caec388e5c850e597e58a26ddf37602b2" 329 | dependencies: 330 | babel-runtime "^6.22.0" 331 | babel-template "^6.24.1" 332 | 333 | babel-messages@^6.23.0: 334 | version "6.23.0" 335 | resolved "https://registry.yarnpkg.com/babel-messages/-/babel-messages-6.23.0.tgz#f3cdf4703858035b2a2951c6ec5edf6c62f2630e" 336 | dependencies: 337 | babel-runtime "^6.22.0" 338 | 339 | babel-plugin-check-es2015-constants@^6.22.0: 340 | version "6.22.0" 341 | resolved "https://registry.yarnpkg.com/babel-plugin-check-es2015-constants/-/babel-plugin-check-es2015-constants-6.22.0.tgz#35157b101426fd2ffd3da3f75c7d1e91835bbf8a" 342 | dependencies: 343 | babel-runtime "^6.22.0" 344 | 345 | babel-plugin-syntax-async-functions@^6.8.0: 346 | version "6.13.0" 347 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-async-functions/-/babel-plugin-syntax-async-functions-6.13.0.tgz#cad9cad1191b5ad634bf30ae0872391e0647be95" 348 | 349 | babel-plugin-syntax-exponentiation-operator@^6.8.0: 350 | version "6.13.0" 351 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-exponentiation-operator/-/babel-plugin-syntax-exponentiation-operator-6.13.0.tgz#9ee7e8337290da95288201a6a57f4170317830de" 352 | 353 | babel-plugin-syntax-trailing-function-commas@^6.22.0: 354 | version "6.22.0" 355 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-trailing-function-commas/-/babel-plugin-syntax-trailing-function-commas-6.22.0.tgz#ba0360937f8d06e40180a43fe0d5616fff532cf3" 356 | 357 | babel-plugin-transform-async-to-generator@^6.22.0: 358 | version "6.24.1" 359 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-async-to-generator/-/babel-plugin-transform-async-to-generator-6.24.1.tgz#6536e378aff6cb1d5517ac0e40eb3e9fc8d08761" 360 | dependencies: 361 | babel-helper-remap-async-to-generator "^6.24.1" 362 | babel-plugin-syntax-async-functions "^6.8.0" 363 | babel-runtime "^6.22.0" 364 | 365 | babel-plugin-transform-es2015-arrow-functions@^6.22.0: 366 | version "6.22.0" 367 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-arrow-functions/-/babel-plugin-transform-es2015-arrow-functions-6.22.0.tgz#452692cb711d5f79dc7f85e440ce41b9f244d221" 368 | dependencies: 369 | babel-runtime "^6.22.0" 370 | 371 | babel-plugin-transform-es2015-block-scoped-functions@^6.22.0: 372 | version "6.22.0" 373 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-block-scoped-functions/-/babel-plugin-transform-es2015-block-scoped-functions-6.22.0.tgz#bbc51b49f964d70cb8d8e0b94e820246ce3a6141" 374 | dependencies: 375 | babel-runtime "^6.22.0" 376 | 377 | babel-plugin-transform-es2015-block-scoping@^6.23.0: 378 | version "6.26.0" 379 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-block-scoping/-/babel-plugin-transform-es2015-block-scoping-6.26.0.tgz#d70f5299c1308d05c12f463813b0a09e73b1895f" 380 | dependencies: 381 | babel-runtime "^6.26.0" 382 | babel-template "^6.26.0" 383 | babel-traverse "^6.26.0" 384 | babel-types "^6.26.0" 385 | lodash "^4.17.4" 386 | 387 | babel-plugin-transform-es2015-classes@^6.23.0: 388 | version "6.24.1" 389 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-classes/-/babel-plugin-transform-es2015-classes-6.24.1.tgz#5a4c58a50c9c9461e564b4b2a3bfabc97a2584db" 390 | dependencies: 391 | babel-helper-define-map "^6.24.1" 392 | babel-helper-function-name "^6.24.1" 393 | babel-helper-optimise-call-expression "^6.24.1" 394 | babel-helper-replace-supers "^6.24.1" 395 | babel-messages "^6.23.0" 396 | babel-runtime "^6.22.0" 397 | babel-template "^6.24.1" 398 | babel-traverse "^6.24.1" 399 | babel-types "^6.24.1" 400 | 401 | babel-plugin-transform-es2015-computed-properties@^6.22.0: 402 | version "6.24.1" 403 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-computed-properties/-/babel-plugin-transform-es2015-computed-properties-6.24.1.tgz#6fe2a8d16895d5634f4cd999b6d3480a308159b3" 404 | dependencies: 405 | babel-runtime "^6.22.0" 406 | babel-template "^6.24.1" 407 | 408 | babel-plugin-transform-es2015-destructuring@^6.23.0: 409 | version "6.23.0" 410 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-destructuring/-/babel-plugin-transform-es2015-destructuring-6.23.0.tgz#997bb1f1ab967f682d2b0876fe358d60e765c56d" 411 | dependencies: 412 | babel-runtime "^6.22.0" 413 | 414 | babel-plugin-transform-es2015-duplicate-keys@^6.22.0: 415 | version "6.24.1" 416 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-duplicate-keys/-/babel-plugin-transform-es2015-duplicate-keys-6.24.1.tgz#73eb3d310ca969e3ef9ec91c53741a6f1576423e" 417 | dependencies: 418 | babel-runtime "^6.22.0" 419 | babel-types "^6.24.1" 420 | 421 | babel-plugin-transform-es2015-for-of@^6.23.0: 422 | version "6.23.0" 423 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-for-of/-/babel-plugin-transform-es2015-for-of-6.23.0.tgz#f47c95b2b613df1d3ecc2fdb7573623c75248691" 424 | dependencies: 425 | babel-runtime "^6.22.0" 426 | 427 | babel-plugin-transform-es2015-function-name@^6.22.0: 428 | version "6.24.1" 429 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-function-name/-/babel-plugin-transform-es2015-function-name-6.24.1.tgz#834c89853bc36b1af0f3a4c5dbaa94fd8eacaa8b" 430 | dependencies: 431 | babel-helper-function-name "^6.24.1" 432 | babel-runtime "^6.22.0" 433 | babel-types "^6.24.1" 434 | 435 | babel-plugin-transform-es2015-literals@^6.22.0: 436 | version "6.22.0" 437 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-literals/-/babel-plugin-transform-es2015-literals-6.22.0.tgz#4f54a02d6cd66cf915280019a31d31925377ca2e" 438 | dependencies: 439 | babel-runtime "^6.22.0" 440 | 441 | babel-plugin-transform-es2015-modules-amd@^6.22.0, babel-plugin-transform-es2015-modules-amd@^6.24.1: 442 | version "6.24.1" 443 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-amd/-/babel-plugin-transform-es2015-modules-amd-6.24.1.tgz#3b3e54017239842d6d19c3011c4bd2f00a00d154" 444 | dependencies: 445 | babel-plugin-transform-es2015-modules-commonjs "^6.24.1" 446 | babel-runtime "^6.22.0" 447 | babel-template "^6.24.1" 448 | 449 | babel-plugin-transform-es2015-modules-commonjs@^6.23.0, babel-plugin-transform-es2015-modules-commonjs@^6.24.1: 450 | version "6.26.0" 451 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-commonjs/-/babel-plugin-transform-es2015-modules-commonjs-6.26.0.tgz#0d8394029b7dc6abe1a97ef181e00758dd2e5d8a" 452 | dependencies: 453 | babel-plugin-transform-strict-mode "^6.24.1" 454 | babel-runtime "^6.26.0" 455 | babel-template "^6.26.0" 456 | babel-types "^6.26.0" 457 | 458 | babel-plugin-transform-es2015-modules-systemjs@^6.23.0: 459 | version "6.24.1" 460 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-systemjs/-/babel-plugin-transform-es2015-modules-systemjs-6.24.1.tgz#ff89a142b9119a906195f5f106ecf305d9407d23" 461 | dependencies: 462 | babel-helper-hoist-variables "^6.24.1" 463 | babel-runtime "^6.22.0" 464 | babel-template "^6.24.1" 465 | 466 | babel-plugin-transform-es2015-modules-umd@^6.23.0: 467 | version "6.24.1" 468 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-umd/-/babel-plugin-transform-es2015-modules-umd-6.24.1.tgz#ac997e6285cd18ed6176adb607d602344ad38468" 469 | dependencies: 470 | babel-plugin-transform-es2015-modules-amd "^6.24.1" 471 | babel-runtime "^6.22.0" 472 | babel-template "^6.24.1" 473 | 474 | babel-plugin-transform-es2015-object-super@^6.22.0: 475 | version "6.24.1" 476 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-object-super/-/babel-plugin-transform-es2015-object-super-6.24.1.tgz#24cef69ae21cb83a7f8603dad021f572eb278f8d" 477 | dependencies: 478 | babel-helper-replace-supers "^6.24.1" 479 | babel-runtime "^6.22.0" 480 | 481 | babel-plugin-transform-es2015-parameters@^6.23.0: 482 | version "6.24.1" 483 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-parameters/-/babel-plugin-transform-es2015-parameters-6.24.1.tgz#57ac351ab49caf14a97cd13b09f66fdf0a625f2b" 484 | dependencies: 485 | babel-helper-call-delegate "^6.24.1" 486 | babel-helper-get-function-arity "^6.24.1" 487 | babel-runtime "^6.22.0" 488 | babel-template "^6.24.1" 489 | babel-traverse "^6.24.1" 490 | babel-types "^6.24.1" 491 | 492 | babel-plugin-transform-es2015-shorthand-properties@^6.22.0: 493 | version "6.24.1" 494 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-shorthand-properties/-/babel-plugin-transform-es2015-shorthand-properties-6.24.1.tgz#24f875d6721c87661bbd99a4622e51f14de38aa0" 495 | dependencies: 496 | babel-runtime "^6.22.0" 497 | babel-types "^6.24.1" 498 | 499 | babel-plugin-transform-es2015-spread@^6.22.0: 500 | version "6.22.0" 501 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-spread/-/babel-plugin-transform-es2015-spread-6.22.0.tgz#d6d68a99f89aedc4536c81a542e8dd9f1746f8d1" 502 | dependencies: 503 | babel-runtime "^6.22.0" 504 | 505 | babel-plugin-transform-es2015-sticky-regex@^6.22.0: 506 | version "6.24.1" 507 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-sticky-regex/-/babel-plugin-transform-es2015-sticky-regex-6.24.1.tgz#00c1cdb1aca71112cdf0cf6126c2ed6b457ccdbc" 508 | dependencies: 509 | babel-helper-regex "^6.24.1" 510 | babel-runtime "^6.22.0" 511 | babel-types "^6.24.1" 512 | 513 | babel-plugin-transform-es2015-template-literals@^6.22.0: 514 | version "6.22.0" 515 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-template-literals/-/babel-plugin-transform-es2015-template-literals-6.22.0.tgz#a84b3450f7e9f8f1f6839d6d687da84bb1236d8d" 516 | dependencies: 517 | babel-runtime "^6.22.0" 518 | 519 | babel-plugin-transform-es2015-typeof-symbol@^6.23.0: 520 | version "6.23.0" 521 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-typeof-symbol/-/babel-plugin-transform-es2015-typeof-symbol-6.23.0.tgz#dec09f1cddff94b52ac73d505c84df59dcceb372" 522 | dependencies: 523 | babel-runtime "^6.22.0" 524 | 525 | babel-plugin-transform-es2015-unicode-regex@^6.22.0: 526 | version "6.24.1" 527 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-unicode-regex/-/babel-plugin-transform-es2015-unicode-regex-6.24.1.tgz#d38b12f42ea7323f729387f18a7c5ae1faeb35e9" 528 | dependencies: 529 | babel-helper-regex "^6.24.1" 530 | babel-runtime "^6.22.0" 531 | regexpu-core "^2.0.0" 532 | 533 | babel-plugin-transform-exponentiation-operator@^6.22.0: 534 | version "6.24.1" 535 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-exponentiation-operator/-/babel-plugin-transform-exponentiation-operator-6.24.1.tgz#2ab0c9c7f3098fa48907772bb813fe41e8de3a0e" 536 | dependencies: 537 | babel-helper-builder-binary-assignment-operator-visitor "^6.24.1" 538 | babel-plugin-syntax-exponentiation-operator "^6.8.0" 539 | babel-runtime "^6.22.0" 540 | 541 | babel-plugin-transform-regenerator@^6.22.0: 542 | version "6.26.0" 543 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-regenerator/-/babel-plugin-transform-regenerator-6.26.0.tgz#e0703696fbde27f0a3efcacf8b4dca2f7b3a8f2f" 544 | dependencies: 545 | regenerator-transform "^0.10.0" 546 | 547 | babel-plugin-transform-strict-mode@^6.24.1: 548 | version "6.24.1" 549 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-strict-mode/-/babel-plugin-transform-strict-mode-6.24.1.tgz#d5faf7aa578a65bbe591cf5edae04a0c67020758" 550 | dependencies: 551 | babel-runtime "^6.22.0" 552 | babel-types "^6.24.1" 553 | 554 | babel-polyfill@^6.26.0: 555 | version "6.26.0" 556 | resolved "https://registry.yarnpkg.com/babel-polyfill/-/babel-polyfill-6.26.0.tgz#379937abc67d7895970adc621f284cd966cf2153" 557 | dependencies: 558 | babel-runtime "^6.26.0" 559 | core-js "^2.5.0" 560 | regenerator-runtime "^0.10.5" 561 | 562 | babel-preset-env@^1.6.1: 563 | version "1.6.1" 564 | resolved "https://registry.yarnpkg.com/babel-preset-env/-/babel-preset-env-1.6.1.tgz#a18b564cc9b9afdf4aae57ae3c1b0d99188e6f48" 565 | dependencies: 566 | babel-plugin-check-es2015-constants "^6.22.0" 567 | babel-plugin-syntax-trailing-function-commas "^6.22.0" 568 | babel-plugin-transform-async-to-generator "^6.22.0" 569 | babel-plugin-transform-es2015-arrow-functions "^6.22.0" 570 | babel-plugin-transform-es2015-block-scoped-functions "^6.22.0" 571 | babel-plugin-transform-es2015-block-scoping "^6.23.0" 572 | babel-plugin-transform-es2015-classes "^6.23.0" 573 | babel-plugin-transform-es2015-computed-properties "^6.22.0" 574 | babel-plugin-transform-es2015-destructuring "^6.23.0" 575 | babel-plugin-transform-es2015-duplicate-keys "^6.22.0" 576 | babel-plugin-transform-es2015-for-of "^6.23.0" 577 | babel-plugin-transform-es2015-function-name "^6.22.0" 578 | babel-plugin-transform-es2015-literals "^6.22.0" 579 | babel-plugin-transform-es2015-modules-amd "^6.22.0" 580 | babel-plugin-transform-es2015-modules-commonjs "^6.23.0" 581 | babel-plugin-transform-es2015-modules-systemjs "^6.23.0" 582 | babel-plugin-transform-es2015-modules-umd "^6.23.0" 583 | babel-plugin-transform-es2015-object-super "^6.22.0" 584 | babel-plugin-transform-es2015-parameters "^6.23.0" 585 | babel-plugin-transform-es2015-shorthand-properties "^6.22.0" 586 | babel-plugin-transform-es2015-spread "^6.22.0" 587 | babel-plugin-transform-es2015-sticky-regex "^6.22.0" 588 | babel-plugin-transform-es2015-template-literals "^6.22.0" 589 | babel-plugin-transform-es2015-typeof-symbol "^6.23.0" 590 | babel-plugin-transform-es2015-unicode-regex "^6.22.0" 591 | babel-plugin-transform-exponentiation-operator "^6.22.0" 592 | babel-plugin-transform-regenerator "^6.22.0" 593 | browserslist "^2.1.2" 594 | invariant "^2.2.2" 595 | semver "^5.3.0" 596 | 597 | babel-register@^6.26.0: 598 | version "6.26.0" 599 | resolved "https://registry.yarnpkg.com/babel-register/-/babel-register-6.26.0.tgz#6ed021173e2fcb486d7acb45c6009a856f647071" 600 | dependencies: 601 | babel-core "^6.26.0" 602 | babel-runtime "^6.26.0" 603 | core-js "^2.5.0" 604 | home-or-tmp "^2.0.0" 605 | lodash "^4.17.4" 606 | mkdirp "^0.5.1" 607 | source-map-support "^0.4.15" 608 | 609 | babel-runtime@^6.18.0, babel-runtime@^6.22.0, babel-runtime@^6.26.0: 610 | version "6.26.0" 611 | resolved "https://registry.yarnpkg.com/babel-runtime/-/babel-runtime-6.26.0.tgz#965c7058668e82b55d7bfe04ff2337bc8b5647fe" 612 | dependencies: 613 | core-js "^2.4.0" 614 | regenerator-runtime "^0.11.0" 615 | 616 | babel-template@^6.24.1, babel-template@^6.26.0: 617 | version "6.26.0" 618 | resolved "https://registry.yarnpkg.com/babel-template/-/babel-template-6.26.0.tgz#de03e2d16396b069f46dd9fff8521fb1a0e35e02" 619 | dependencies: 620 | babel-runtime "^6.26.0" 621 | babel-traverse "^6.26.0" 622 | babel-types "^6.26.0" 623 | babylon "^6.18.0" 624 | lodash "^4.17.4" 625 | 626 | babel-traverse@^6.24.1, babel-traverse@^6.26.0: 627 | version "6.26.0" 628 | resolved "https://registry.yarnpkg.com/babel-traverse/-/babel-traverse-6.26.0.tgz#46a9cbd7edcc62c8e5c064e2d2d8d0f4035766ee" 629 | dependencies: 630 | babel-code-frame "^6.26.0" 631 | babel-messages "^6.23.0" 632 | babel-runtime "^6.26.0" 633 | babel-types "^6.26.0" 634 | babylon "^6.18.0" 635 | debug "^2.6.8" 636 | globals "^9.18.0" 637 | invariant "^2.2.2" 638 | lodash "^4.17.4" 639 | 640 | babel-types@^6.19.0, babel-types@^6.24.1, babel-types@^6.26.0: 641 | version "6.26.0" 642 | resolved "https://registry.yarnpkg.com/babel-types/-/babel-types-6.26.0.tgz#a3b073f94ab49eb6fa55cd65227a334380632497" 643 | dependencies: 644 | babel-runtime "^6.26.0" 645 | esutils "^2.0.2" 646 | lodash "^4.17.4" 647 | to-fast-properties "^1.0.3" 648 | 649 | babylon@^6.18.0: 650 | version "6.18.0" 651 | resolved "https://registry.yarnpkg.com/babylon/-/babylon-6.18.0.tgz#af2f3b88fa6f5c1e4c634d1a0f8eac4f55b395e3" 652 | 653 | balanced-match@^1.0.0: 654 | version "1.0.0" 655 | resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.0.tgz#89b4d199ab2bee49de164ea02b89ce462d71b767" 656 | 657 | base64-js@^1.0.2: 658 | version "1.2.1" 659 | resolved "https://registry.yarnpkg.com/base64-js/-/base64-js-1.2.1.tgz#a91947da1f4a516ea38e5b4ec0ec3773675e0886" 660 | 661 | bcrypt-pbkdf@^1.0.0: 662 | version "1.0.1" 663 | resolved "https://registry.yarnpkg.com/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.1.tgz#63bc5dcb61331b92bc05fd528953c33462a06f8d" 664 | dependencies: 665 | tweetnacl "^0.14.3" 666 | 667 | big.js@^3.1.3: 668 | version "3.2.0" 669 | resolved "https://registry.yarnpkg.com/big.js/-/big.js-3.2.0.tgz#a5fc298b81b9e0dca2e458824784b65c52ba588e" 670 | 671 | binary-extensions@^1.0.0: 672 | version "1.11.0" 673 | resolved "https://registry.yarnpkg.com/binary-extensions/-/binary-extensions-1.11.0.tgz#46aa1751fb6a2f93ee5e689bb1087d4b14c6c205" 674 | 675 | block-stream@*: 676 | version "0.0.9" 677 | resolved "https://registry.yarnpkg.com/block-stream/-/block-stream-0.0.9.tgz#13ebfe778a03205cfe03751481ebb4b3300c126a" 678 | dependencies: 679 | inherits "~2.0.0" 680 | 681 | bluebird@^3.5.1: 682 | version "3.5.1" 683 | resolved "https://registry.yarnpkg.com/bluebird/-/bluebird-3.5.1.tgz#d9551f9de98f1fcda1e683d17ee91a0602ee2eb9" 684 | 685 | bn.js@^4.0.0, bn.js@^4.1.0, bn.js@^4.1.1, bn.js@^4.4.0: 686 | version "4.11.8" 687 | resolved "https://registry.yarnpkg.com/bn.js/-/bn.js-4.11.8.tgz#2cde09eb5ee341f484746bb0309b3253b1b1442f" 688 | 689 | boom@2.x.x: 690 | version "2.10.1" 691 | resolved "https://registry.yarnpkg.com/boom/-/boom-2.10.1.tgz#39c8918ceff5799f83f9492a848f625add0c766f" 692 | dependencies: 693 | hoek "2.x.x" 694 | 695 | brace-expansion@^1.1.7: 696 | version "1.1.11" 697 | resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.11.tgz#3c7fcbf529d87226f3d2f52b966ff5271eb441dd" 698 | dependencies: 699 | balanced-match "^1.0.0" 700 | concat-map "0.0.1" 701 | 702 | braces@^1.8.2: 703 | version "1.8.5" 704 | resolved "https://registry.yarnpkg.com/braces/-/braces-1.8.5.tgz#ba77962e12dff969d6b76711e914b737857bf6a7" 705 | dependencies: 706 | expand-range "^1.8.1" 707 | preserve "^0.2.0" 708 | repeat-element "^1.1.2" 709 | 710 | brorand@^1.0.1: 711 | version "1.1.0" 712 | resolved "https://registry.yarnpkg.com/brorand/-/brorand-1.1.0.tgz#12c25efe40a45e3c323eb8675a0a0ce57b22371f" 713 | 714 | browserify-aes@^1.0.0, browserify-aes@^1.0.4: 715 | version "1.1.1" 716 | resolved "https://registry.yarnpkg.com/browserify-aes/-/browserify-aes-1.1.1.tgz#38b7ab55edb806ff2dcda1a7f1620773a477c49f" 717 | dependencies: 718 | buffer-xor "^1.0.3" 719 | cipher-base "^1.0.0" 720 | create-hash "^1.1.0" 721 | evp_bytestokey "^1.0.3" 722 | inherits "^2.0.1" 723 | safe-buffer "^5.0.1" 724 | 725 | browserify-cipher@^1.0.0: 726 | version "1.0.0" 727 | resolved "https://registry.yarnpkg.com/browserify-cipher/-/browserify-cipher-1.0.0.tgz#9988244874bf5ed4e28da95666dcd66ac8fc363a" 728 | dependencies: 729 | browserify-aes "^1.0.4" 730 | browserify-des "^1.0.0" 731 | evp_bytestokey "^1.0.0" 732 | 733 | browserify-des@^1.0.0: 734 | version "1.0.0" 735 | resolved "https://registry.yarnpkg.com/browserify-des/-/browserify-des-1.0.0.tgz#daa277717470922ed2fe18594118a175439721dd" 736 | dependencies: 737 | cipher-base "^1.0.1" 738 | des.js "^1.0.0" 739 | inherits "^2.0.1" 740 | 741 | browserify-rsa@^4.0.0: 742 | version "4.0.1" 743 | resolved "https://registry.yarnpkg.com/browserify-rsa/-/browserify-rsa-4.0.1.tgz#21e0abfaf6f2029cf2fafb133567a701d4135524" 744 | dependencies: 745 | bn.js "^4.1.0" 746 | randombytes "^2.0.1" 747 | 748 | browserify-sign@^4.0.0: 749 | version "4.0.4" 750 | resolved "https://registry.yarnpkg.com/browserify-sign/-/browserify-sign-4.0.4.tgz#aa4eb68e5d7b658baa6bf6a57e630cbd7a93d298" 751 | dependencies: 752 | bn.js "^4.1.1" 753 | browserify-rsa "^4.0.0" 754 | create-hash "^1.1.0" 755 | create-hmac "^1.1.2" 756 | elliptic "^6.0.0" 757 | inherits "^2.0.1" 758 | parse-asn1 "^5.0.0" 759 | 760 | browserify-zlib@^0.2.0: 761 | version "0.2.0" 762 | resolved "https://registry.yarnpkg.com/browserify-zlib/-/browserify-zlib-0.2.0.tgz#2869459d9aa3be245fe8fe2ca1f46e2e7f54d73f" 763 | dependencies: 764 | pako "~1.0.5" 765 | 766 | browserslist@^2.1.2: 767 | version "2.11.3" 768 | resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-2.11.3.tgz#fe36167aed1bbcde4827ebfe71347a2cc70b99b2" 769 | dependencies: 770 | caniuse-lite "^1.0.30000792" 771 | electron-to-chromium "^1.3.30" 772 | 773 | buffer-xor@^1.0.3: 774 | version "1.0.3" 775 | resolved "https://registry.yarnpkg.com/buffer-xor/-/buffer-xor-1.0.3.tgz#26e61ed1422fb70dd42e6e36729ed51d855fe8d9" 776 | 777 | buffer@^4.3.0: 778 | version "4.9.1" 779 | resolved "https://registry.yarnpkg.com/buffer/-/buffer-4.9.1.tgz#6d1bb601b07a4efced97094132093027c95bc298" 780 | dependencies: 781 | base64-js "^1.0.2" 782 | ieee754 "^1.1.4" 783 | isarray "^1.0.0" 784 | 785 | builtin-modules@^1.0.0: 786 | version "1.1.1" 787 | resolved "https://registry.yarnpkg.com/builtin-modules/-/builtin-modules-1.1.1.tgz#270f076c5a72c02f5b65a47df94c5fe3a278892f" 788 | 789 | builtin-status-codes@^3.0.0: 790 | version "3.0.0" 791 | resolved "https://registry.yarnpkg.com/builtin-status-codes/-/builtin-status-codes-3.0.0.tgz#85982878e21b98e1c66425e03d0174788f569ee8" 792 | 793 | camelcase@^1.0.2: 794 | version "1.2.1" 795 | resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-1.2.1.tgz#9bb5304d2e0b56698b2c758b08a3eaa9daa58a39" 796 | 797 | camelcase@^4.1.0: 798 | version "4.1.0" 799 | resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-4.1.0.tgz#d545635be1e33c542649c69173e5de6acfae34dd" 800 | 801 | caniuse-lite@^1.0.30000792: 802 | version "1.0.30000808" 803 | resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30000808.tgz#7d759b5518529ea08b6705a19e70dbf401628ffc" 804 | 805 | caseless@~0.12.0: 806 | version "0.12.0" 807 | resolved "https://registry.yarnpkg.com/caseless/-/caseless-0.12.0.tgz#1b681c21ff84033c826543090689420d187151dc" 808 | 809 | center-align@^0.1.1: 810 | version "0.1.3" 811 | resolved "https://registry.yarnpkg.com/center-align/-/center-align-0.1.3.tgz#aa0d32629b6ee972200411cbd4461c907bc2b7ad" 812 | dependencies: 813 | align-text "^0.1.3" 814 | lazy-cache "^1.0.3" 815 | 816 | chalk@^1.0.0, chalk@^1.1.1, chalk@^1.1.3: 817 | version "1.1.3" 818 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-1.1.3.tgz#a8115c55e4a702fe4d150abd3872822a7e09fc98" 819 | dependencies: 820 | ansi-styles "^2.2.1" 821 | escape-string-regexp "^1.0.2" 822 | has-ansi "^2.0.0" 823 | strip-ansi "^3.0.0" 824 | supports-color "^2.0.0" 825 | 826 | chalk@^2.0.1, chalk@^2.1.0: 827 | version "2.3.1" 828 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-2.3.1.tgz#523fe2678aec7b04e8041909292fe8b17059b796" 829 | dependencies: 830 | ansi-styles "^3.2.0" 831 | escape-string-regexp "^1.0.5" 832 | supports-color "^5.2.0" 833 | 834 | chokidar@^1.6.1, chokidar@^1.7.0: 835 | version "1.7.0" 836 | resolved "https://registry.yarnpkg.com/chokidar/-/chokidar-1.7.0.tgz#798e689778151c8076b4b360e5edd28cda2bb468" 837 | dependencies: 838 | anymatch "^1.3.0" 839 | async-each "^1.0.0" 840 | glob-parent "^2.0.0" 841 | inherits "^2.0.1" 842 | is-binary-path "^1.0.0" 843 | is-glob "^2.0.0" 844 | path-is-absolute "^1.0.0" 845 | readdirp "^2.0.0" 846 | optionalDependencies: 847 | fsevents "^1.0.0" 848 | 849 | cipher-base@^1.0.0, cipher-base@^1.0.1, cipher-base@^1.0.3: 850 | version "1.0.4" 851 | resolved "https://registry.yarnpkg.com/cipher-base/-/cipher-base-1.0.4.tgz#8760e4ecc272f4c363532f926d874aae2c1397de" 852 | dependencies: 853 | inherits "^2.0.1" 854 | safe-buffer "^5.0.1" 855 | 856 | cli-cursor@^1.0.2: 857 | version "1.0.2" 858 | resolved "https://registry.yarnpkg.com/cli-cursor/-/cli-cursor-1.0.2.tgz#64da3f7d56a54412e59794bd62dc35295e8f2987" 859 | dependencies: 860 | restore-cursor "^1.0.1" 861 | 862 | cli-spinners@^0.1.2: 863 | version "0.1.2" 864 | resolved "https://registry.yarnpkg.com/cli-spinners/-/cli-spinners-0.1.2.tgz#bb764d88e185fb9e1e6a2a1f19772318f605e31c" 865 | 866 | cli-truncate@^0.2.1: 867 | version "0.2.1" 868 | resolved "https://registry.yarnpkg.com/cli-truncate/-/cli-truncate-0.2.1.tgz#9f15cfbb0705005369216c626ac7d05ab90dd574" 869 | dependencies: 870 | slice-ansi "0.0.4" 871 | string-width "^1.0.1" 872 | 873 | cliui@^2.1.0: 874 | version "2.1.0" 875 | resolved "https://registry.yarnpkg.com/cliui/-/cliui-2.1.0.tgz#4b475760ff80264c762c3a1719032e91c7fea0d1" 876 | dependencies: 877 | center-align "^0.1.1" 878 | right-align "^0.1.1" 879 | wordwrap "0.0.2" 880 | 881 | cliui@^3.2.0: 882 | version "3.2.0" 883 | resolved "https://registry.yarnpkg.com/cliui/-/cliui-3.2.0.tgz#120601537a916d29940f934da3b48d585a39213d" 884 | dependencies: 885 | string-width "^1.0.1" 886 | strip-ansi "^3.0.1" 887 | wrap-ansi "^2.0.0" 888 | 889 | co@^4.6.0: 890 | version "4.6.0" 891 | resolved "https://registry.yarnpkg.com/co/-/co-4.6.0.tgz#6ea6bdf3d853ae54ccb8e47bfa0bf3f9031fb184" 892 | 893 | code-point-at@^1.0.0: 894 | version "1.1.0" 895 | resolved "https://registry.yarnpkg.com/code-point-at/-/code-point-at-1.1.0.tgz#0d070b4d043a5bea33a2f1a40e2edb3d9a4ccf77" 896 | 897 | color-convert@^1.9.0: 898 | version "1.9.1" 899 | resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-1.9.1.tgz#c1261107aeb2f294ebffec9ed9ecad529a6097ed" 900 | dependencies: 901 | color-name "^1.1.1" 902 | 903 | color-name@^1.1.1: 904 | version "1.1.3" 905 | resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.3.tgz#a7d0558bd89c42f795dd42328f740831ca53bc25" 906 | 907 | combined-stream@^1.0.5, combined-stream@~1.0.5: 908 | version "1.0.6" 909 | resolved "https://registry.yarnpkg.com/combined-stream/-/combined-stream-1.0.6.tgz#723e7df6e801ac5613113a7e445a9b69cb632818" 910 | dependencies: 911 | delayed-stream "~1.0.0" 912 | 913 | commander@^2.11.0, commander@^2.9.0: 914 | version "2.14.1" 915 | resolved "https://registry.yarnpkg.com/commander/-/commander-2.14.1.tgz#2235123e37af8ca3c65df45b026dbd357b01b9aa" 916 | 917 | concat-map@0.0.1: 918 | version "0.0.1" 919 | resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b" 920 | 921 | console-browserify@^1.1.0: 922 | version "1.1.0" 923 | resolved "https://registry.yarnpkg.com/console-browserify/-/console-browserify-1.1.0.tgz#f0241c45730a9fc6323b206dbf38edc741d0bb10" 924 | dependencies: 925 | date-now "^0.1.4" 926 | 927 | console-control-strings@^1.0.0, console-control-strings@~1.1.0: 928 | version "1.1.0" 929 | resolved "https://registry.yarnpkg.com/console-control-strings/-/console-control-strings-1.1.0.tgz#3d7cf4464db6446ea644bf4b39507f9851008e8e" 930 | 931 | constants-browserify@^1.0.0: 932 | version "1.0.0" 933 | resolved "https://registry.yarnpkg.com/constants-browserify/-/constants-browserify-1.0.0.tgz#c20b96d8c617748aaf1c16021760cd27fcb8cb75" 934 | 935 | convert-source-map@^1.5.0: 936 | version "1.5.1" 937 | resolved "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-1.5.1.tgz#b8278097b9bc229365de5c62cf5fcaed8b5599e5" 938 | 939 | core-js@^2.4.0, core-js@^2.5.0: 940 | version "2.5.3" 941 | resolved "https://registry.yarnpkg.com/core-js/-/core-js-2.5.3.tgz#8acc38345824f16d8365b7c9b4259168e8ed603e" 942 | 943 | core-util-is@1.0.2, core-util-is@~1.0.0: 944 | version "1.0.2" 945 | resolved "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.2.tgz#b5fd54220aa2bc5ab57aab7140c940754503c1a7" 946 | 947 | cosmiconfig@^4.0.0: 948 | version "4.0.0" 949 | resolved "https://registry.yarnpkg.com/cosmiconfig/-/cosmiconfig-4.0.0.tgz#760391549580bbd2df1e562bc177b13c290972dc" 950 | dependencies: 951 | is-directory "^0.3.1" 952 | js-yaml "^3.9.0" 953 | parse-json "^4.0.0" 954 | require-from-string "^2.0.1" 955 | 956 | create-ecdh@^4.0.0: 957 | version "4.0.0" 958 | resolved "https://registry.yarnpkg.com/create-ecdh/-/create-ecdh-4.0.0.tgz#888c723596cdf7612f6498233eebd7a35301737d" 959 | dependencies: 960 | bn.js "^4.1.0" 961 | elliptic "^6.0.0" 962 | 963 | create-hash@^1.1.0, create-hash@^1.1.2: 964 | version "1.1.3" 965 | resolved "https://registry.yarnpkg.com/create-hash/-/create-hash-1.1.3.tgz#606042ac8b9262750f483caddab0f5819172d8fd" 966 | dependencies: 967 | cipher-base "^1.0.1" 968 | inherits "^2.0.1" 969 | ripemd160 "^2.0.0" 970 | sha.js "^2.4.0" 971 | 972 | create-hmac@^1.1.0, create-hmac@^1.1.2, create-hmac@^1.1.4: 973 | version "1.1.6" 974 | resolved "https://registry.yarnpkg.com/create-hmac/-/create-hmac-1.1.6.tgz#acb9e221a4e17bdb076e90657c42b93e3726cf06" 975 | dependencies: 976 | cipher-base "^1.0.3" 977 | create-hash "^1.1.0" 978 | inherits "^2.0.1" 979 | ripemd160 "^2.0.0" 980 | safe-buffer "^5.0.1" 981 | sha.js "^2.4.8" 982 | 983 | cross-spawn@^5.0.1: 984 | version "5.1.0" 985 | resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-5.1.0.tgz#e8bd0efee58fcff6f8f94510a0a554bbfa235449" 986 | dependencies: 987 | lru-cache "^4.0.1" 988 | shebang-command "^1.2.0" 989 | which "^1.2.9" 990 | 991 | cryptiles@2.x.x: 992 | version "2.0.5" 993 | resolved "https://registry.yarnpkg.com/cryptiles/-/cryptiles-2.0.5.tgz#3bdfecdc608147c1c67202fa291e7dca59eaa3b8" 994 | dependencies: 995 | boom "2.x.x" 996 | 997 | crypto-browserify@^3.11.0: 998 | version "3.12.0" 999 | resolved "https://registry.yarnpkg.com/crypto-browserify/-/crypto-browserify-3.12.0.tgz#396cf9f3137f03e4b8e532c58f698254e00f80ec" 1000 | dependencies: 1001 | browserify-cipher "^1.0.0" 1002 | browserify-sign "^4.0.0" 1003 | create-ecdh "^4.0.0" 1004 | create-hash "^1.1.0" 1005 | create-hmac "^1.1.0" 1006 | diffie-hellman "^5.0.0" 1007 | inherits "^2.0.1" 1008 | pbkdf2 "^3.0.3" 1009 | public-encrypt "^4.0.0" 1010 | randombytes "^2.0.0" 1011 | randomfill "^1.0.3" 1012 | 1013 | d@1: 1014 | version "1.0.0" 1015 | resolved "https://registry.yarnpkg.com/d/-/d-1.0.0.tgz#754bb5bfe55451da69a58b94d45f4c5b0462d58f" 1016 | dependencies: 1017 | es5-ext "^0.10.9" 1018 | 1019 | dashdash@^1.12.0: 1020 | version "1.14.1" 1021 | resolved "https://registry.yarnpkg.com/dashdash/-/dashdash-1.14.1.tgz#853cfa0f7cbe2fed5de20326b8dd581035f6e2f0" 1022 | dependencies: 1023 | assert-plus "^1.0.0" 1024 | 1025 | date-fns@^1.27.2: 1026 | version "1.29.0" 1027 | resolved "https://registry.yarnpkg.com/date-fns/-/date-fns-1.29.0.tgz#12e609cdcb935127311d04d33334e2960a2a54e6" 1028 | 1029 | date-now@^0.1.4: 1030 | version "0.1.4" 1031 | resolved "https://registry.yarnpkg.com/date-now/-/date-now-0.1.4.tgz#eaf439fd4d4848ad74e5cc7dbef200672b9e345b" 1032 | 1033 | debug@^2.2.0, debug@^2.6.8: 1034 | version "2.6.9" 1035 | resolved "https://registry.yarnpkg.com/debug/-/debug-2.6.9.tgz#5d128515df134ff327e90a4c93f4e077a536341f" 1036 | dependencies: 1037 | ms "2.0.0" 1038 | 1039 | debug@^3.1.0: 1040 | version "3.1.0" 1041 | resolved "https://registry.yarnpkg.com/debug/-/debug-3.1.0.tgz#5bb5a0672628b64149566ba16819e61518c67261" 1042 | dependencies: 1043 | ms "2.0.0" 1044 | 1045 | decamelize@^1.0.0, decamelize@^1.1.1: 1046 | version "1.2.0" 1047 | resolved "https://registry.yarnpkg.com/decamelize/-/decamelize-1.2.0.tgz#f6534d15148269b20352e7bee26f501f9a191290" 1048 | 1049 | dedent@^0.7.0: 1050 | version "0.7.0" 1051 | resolved "https://registry.yarnpkg.com/dedent/-/dedent-0.7.0.tgz#2495ddbaf6eb874abb0e1be9df22d2e5a544326c" 1052 | 1053 | deep-extend@~0.4.0: 1054 | version "0.4.2" 1055 | resolved "https://registry.yarnpkg.com/deep-extend/-/deep-extend-0.4.2.tgz#48b699c27e334bf89f10892be432f6e4c7d34a7f" 1056 | 1057 | delayed-stream@~1.0.0: 1058 | version "1.0.0" 1059 | resolved "https://registry.yarnpkg.com/delayed-stream/-/delayed-stream-1.0.0.tgz#df3ae199acadfb7d440aaae0b29e2272b24ec619" 1060 | 1061 | delegates@^1.0.0: 1062 | version "1.0.0" 1063 | resolved "https://registry.yarnpkg.com/delegates/-/delegates-1.0.0.tgz#84c6e159b81904fdca59a0ef44cd870d31250f9a" 1064 | 1065 | des.js@^1.0.0: 1066 | version "1.0.0" 1067 | resolved "https://registry.yarnpkg.com/des.js/-/des.js-1.0.0.tgz#c074d2e2aa6a8a9a07dbd61f9a15c2cd83ec8ecc" 1068 | dependencies: 1069 | inherits "^2.0.1" 1070 | minimalistic-assert "^1.0.0" 1071 | 1072 | detect-indent@^4.0.0: 1073 | version "4.0.0" 1074 | resolved "https://registry.yarnpkg.com/detect-indent/-/detect-indent-4.0.0.tgz#f76d064352cdf43a1cb6ce619c4ee3a9475de208" 1075 | dependencies: 1076 | repeating "^2.0.0" 1077 | 1078 | detect-libc@^1.0.2: 1079 | version "1.0.3" 1080 | resolved "https://registry.yarnpkg.com/detect-libc/-/detect-libc-1.0.3.tgz#fa137c4bd698edf55cd5cd02ac559f91a4c4ba9b" 1081 | 1082 | diffie-hellman@^5.0.0: 1083 | version "5.0.2" 1084 | resolved "https://registry.yarnpkg.com/diffie-hellman/-/diffie-hellman-5.0.2.tgz#b5835739270cfe26acf632099fded2a07f209e5e" 1085 | dependencies: 1086 | bn.js "^4.1.0" 1087 | miller-rabin "^4.0.0" 1088 | randombytes "^2.0.0" 1089 | 1090 | domain-browser@^1.1.1: 1091 | version "1.2.0" 1092 | resolved "https://registry.yarnpkg.com/domain-browser/-/domain-browser-1.2.0.tgz#3d31f50191a6749dd1375a7f522e823d42e54eda" 1093 | 1094 | ecc-jsbn@~0.1.1: 1095 | version "0.1.1" 1096 | resolved "https://registry.yarnpkg.com/ecc-jsbn/-/ecc-jsbn-0.1.1.tgz#0fc73a9ed5f0d53c38193398523ef7e543777505" 1097 | dependencies: 1098 | jsbn "~0.1.0" 1099 | 1100 | electron-to-chromium@^1.3.30: 1101 | version "1.3.33" 1102 | resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.3.33.tgz#bf00703d62a7c65238136578c352d6c5c042a545" 1103 | 1104 | elegant-spinner@^1.0.1: 1105 | version "1.0.1" 1106 | resolved "https://registry.yarnpkg.com/elegant-spinner/-/elegant-spinner-1.0.1.tgz#db043521c95d7e303fd8f345bedc3349cfb0729e" 1107 | 1108 | elliptic@^6.0.0: 1109 | version "6.4.0" 1110 | resolved "https://registry.yarnpkg.com/elliptic/-/elliptic-6.4.0.tgz#cac9af8762c85836187003c8dfe193e5e2eae5df" 1111 | dependencies: 1112 | bn.js "^4.4.0" 1113 | brorand "^1.0.1" 1114 | hash.js "^1.0.0" 1115 | hmac-drbg "^1.0.0" 1116 | inherits "^2.0.1" 1117 | minimalistic-assert "^1.0.0" 1118 | minimalistic-crypto-utils "^1.0.0" 1119 | 1120 | emojis-list@^2.0.0: 1121 | version "2.1.0" 1122 | resolved "https://registry.yarnpkg.com/emojis-list/-/emojis-list-2.1.0.tgz#4daa4d9db00f9819880c79fa457ae5b09a1fd389" 1123 | 1124 | enhanced-resolve@^3.4.0: 1125 | version "3.4.1" 1126 | resolved "https://registry.yarnpkg.com/enhanced-resolve/-/enhanced-resolve-3.4.1.tgz#0421e339fd71419b3da13d129b3979040230476e" 1127 | dependencies: 1128 | graceful-fs "^4.1.2" 1129 | memory-fs "^0.4.0" 1130 | object-assign "^4.0.1" 1131 | tapable "^0.2.7" 1132 | 1133 | errno@^0.1.3: 1134 | version "0.1.6" 1135 | resolved "https://registry.yarnpkg.com/errno/-/errno-0.1.6.tgz#c386ce8a6283f14fc09563b71560908c9bf53026" 1136 | dependencies: 1137 | prr "~1.0.1" 1138 | 1139 | error-ex@^1.2.0, error-ex@^1.3.1: 1140 | version "1.3.1" 1141 | resolved "https://registry.yarnpkg.com/error-ex/-/error-ex-1.3.1.tgz#f855a86ce61adc4e8621c3cda21e7a7612c3a8dc" 1142 | dependencies: 1143 | is-arrayish "^0.2.1" 1144 | 1145 | es5-ext@^0.10.14, es5-ext@^0.10.35, es5-ext@^0.10.9, es5-ext@~0.10.14: 1146 | version "0.10.38" 1147 | resolved "https://registry.yarnpkg.com/es5-ext/-/es5-ext-0.10.38.tgz#fa7d40d65bbc9bb8a67e1d3f9cc656a00530eed3" 1148 | dependencies: 1149 | es6-iterator "~2.0.3" 1150 | es6-symbol "~3.1.1" 1151 | 1152 | es6-iterator@^2.0.1, es6-iterator@~2.0.1, es6-iterator@~2.0.3: 1153 | version "2.0.3" 1154 | resolved "https://registry.yarnpkg.com/es6-iterator/-/es6-iterator-2.0.3.tgz#a7de889141a05a94b0854403b2d0a0fbfa98f3b7" 1155 | dependencies: 1156 | d "1" 1157 | es5-ext "^0.10.35" 1158 | es6-symbol "^3.1.1" 1159 | 1160 | es6-map@^0.1.3: 1161 | version "0.1.5" 1162 | resolved "https://registry.yarnpkg.com/es6-map/-/es6-map-0.1.5.tgz#9136e0503dcc06a301690f0bb14ff4e364e949f0" 1163 | dependencies: 1164 | d "1" 1165 | es5-ext "~0.10.14" 1166 | es6-iterator "~2.0.1" 1167 | es6-set "~0.1.5" 1168 | es6-symbol "~3.1.1" 1169 | event-emitter "~0.3.5" 1170 | 1171 | es6-set@~0.1.5: 1172 | version "0.1.5" 1173 | resolved "https://registry.yarnpkg.com/es6-set/-/es6-set-0.1.5.tgz#d2b3ec5d4d800ced818db538d28974db0a73ccb1" 1174 | dependencies: 1175 | d "1" 1176 | es5-ext "~0.10.14" 1177 | es6-iterator "~2.0.1" 1178 | es6-symbol "3.1.1" 1179 | event-emitter "~0.3.5" 1180 | 1181 | es6-symbol@3.1.1, es6-symbol@^3.1.1, es6-symbol@~3.1.1: 1182 | version "3.1.1" 1183 | resolved "https://registry.yarnpkg.com/es6-symbol/-/es6-symbol-3.1.1.tgz#bf00ef4fdab6ba1b46ecb7b629b4c7ed5715cc77" 1184 | dependencies: 1185 | d "1" 1186 | es5-ext "~0.10.14" 1187 | 1188 | es6-weak-map@^2.0.1: 1189 | version "2.0.2" 1190 | resolved "https://registry.yarnpkg.com/es6-weak-map/-/es6-weak-map-2.0.2.tgz#5e3ab32251ffd1538a1f8e5ffa1357772f92d96f" 1191 | dependencies: 1192 | d "1" 1193 | es5-ext "^0.10.14" 1194 | es6-iterator "^2.0.1" 1195 | es6-symbol "^3.1.1" 1196 | 1197 | escape-string-regexp@^1.0.2, escape-string-regexp@^1.0.5: 1198 | version "1.0.5" 1199 | resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4" 1200 | 1201 | escope@^3.6.0: 1202 | version "3.6.0" 1203 | resolved "https://registry.yarnpkg.com/escope/-/escope-3.6.0.tgz#e01975e812781a163a6dadfdd80398dc64c889c3" 1204 | dependencies: 1205 | es6-map "^0.1.3" 1206 | es6-weak-map "^2.0.1" 1207 | esrecurse "^4.1.0" 1208 | estraverse "^4.1.1" 1209 | 1210 | esprima@^4.0.0: 1211 | version "4.0.0" 1212 | resolved "https://registry.yarnpkg.com/esprima/-/esprima-4.0.0.tgz#4499eddcd1110e0b218bacf2fa7f7f59f55ca804" 1213 | 1214 | esrecurse@^4.1.0: 1215 | version "4.2.0" 1216 | resolved "https://registry.yarnpkg.com/esrecurse/-/esrecurse-4.2.0.tgz#fa9568d98d3823f9a41d91e902dcab9ea6e5b163" 1217 | dependencies: 1218 | estraverse "^4.1.0" 1219 | object-assign "^4.0.1" 1220 | 1221 | estraverse@^4.1.0, estraverse@^4.1.1: 1222 | version "4.2.0" 1223 | resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-4.2.0.tgz#0dee3fed31fcd469618ce7342099fc1afa0bdb13" 1224 | 1225 | esutils@^2.0.2: 1226 | version "2.0.2" 1227 | resolved "https://registry.yarnpkg.com/esutils/-/esutils-2.0.2.tgz#0abf4f1caa5bcb1f7a9d8acc6dea4faaa04bac9b" 1228 | 1229 | event-emitter@~0.3.5: 1230 | version "0.3.5" 1231 | resolved "https://registry.yarnpkg.com/event-emitter/-/event-emitter-0.3.5.tgz#df8c69eef1647923c7157b9ce83840610b02cc39" 1232 | dependencies: 1233 | d "1" 1234 | es5-ext "~0.10.14" 1235 | 1236 | events@^1.0.0: 1237 | version "1.1.1" 1238 | resolved "https://registry.yarnpkg.com/events/-/events-1.1.1.tgz#9ebdb7635ad099c70dcc4c2a1f5004288e8bd924" 1239 | 1240 | evp_bytestokey@^1.0.0, evp_bytestokey@^1.0.3: 1241 | version "1.0.3" 1242 | resolved "https://registry.yarnpkg.com/evp_bytestokey/-/evp_bytestokey-1.0.3.tgz#7fcbdb198dc71959432efe13842684e0525acb02" 1243 | dependencies: 1244 | md5.js "^1.3.4" 1245 | safe-buffer "^5.1.1" 1246 | 1247 | execa@^0.7.0: 1248 | version "0.7.0" 1249 | resolved "https://registry.yarnpkg.com/execa/-/execa-0.7.0.tgz#944becd34cc41ee32a63a9faf27ad5a65fc59777" 1250 | dependencies: 1251 | cross-spawn "^5.0.1" 1252 | get-stream "^3.0.0" 1253 | is-stream "^1.1.0" 1254 | npm-run-path "^2.0.0" 1255 | p-finally "^1.0.0" 1256 | signal-exit "^3.0.0" 1257 | strip-eof "^1.0.0" 1258 | 1259 | execa@^0.8.0: 1260 | version "0.8.0" 1261 | resolved "https://registry.yarnpkg.com/execa/-/execa-0.8.0.tgz#d8d76bbc1b55217ed190fd6dd49d3c774ecfc8da" 1262 | dependencies: 1263 | cross-spawn "^5.0.1" 1264 | get-stream "^3.0.0" 1265 | is-stream "^1.1.0" 1266 | npm-run-path "^2.0.0" 1267 | p-finally "^1.0.0" 1268 | signal-exit "^3.0.0" 1269 | strip-eof "^1.0.0" 1270 | 1271 | exit-hook@^1.0.0: 1272 | version "1.1.1" 1273 | resolved "https://registry.yarnpkg.com/exit-hook/-/exit-hook-1.1.1.tgz#f05ca233b48c05d54fff07765df8507e95c02ff8" 1274 | 1275 | expand-brackets@^0.1.4: 1276 | version "0.1.5" 1277 | resolved "https://registry.yarnpkg.com/expand-brackets/-/expand-brackets-0.1.5.tgz#df07284e342a807cd733ac5af72411e581d1177b" 1278 | dependencies: 1279 | is-posix-bracket "^0.1.0" 1280 | 1281 | expand-range@^1.8.1: 1282 | version "1.8.2" 1283 | resolved "https://registry.yarnpkg.com/expand-range/-/expand-range-1.8.2.tgz#a299effd335fe2721ebae8e257ec79644fc85337" 1284 | dependencies: 1285 | fill-range "^2.1.0" 1286 | 1287 | extend@~3.0.0: 1288 | version "3.0.1" 1289 | resolved "https://registry.yarnpkg.com/extend/-/extend-3.0.1.tgz#a755ea7bc1adfcc5a31ce7e762dbaadc5e636444" 1290 | 1291 | extglob@^0.3.1: 1292 | version "0.3.2" 1293 | resolved "https://registry.yarnpkg.com/extglob/-/extglob-0.3.2.tgz#2e18ff3d2f49ab2765cec9023f011daa8d8349a1" 1294 | dependencies: 1295 | is-extglob "^1.0.0" 1296 | 1297 | extsprintf@1.3.0: 1298 | version "1.3.0" 1299 | resolved "https://registry.yarnpkg.com/extsprintf/-/extsprintf-1.3.0.tgz#96918440e3041a7a414f8c52e3c574eb3c3e1e05" 1300 | 1301 | extsprintf@^1.2.0: 1302 | version "1.4.0" 1303 | resolved "https://registry.yarnpkg.com/extsprintf/-/extsprintf-1.4.0.tgz#e2689f8f356fad62cca65a3a91c5df5f9551692f" 1304 | 1305 | fast-deep-equal@^1.0.0: 1306 | version "1.0.0" 1307 | resolved "https://registry.yarnpkg.com/fast-deep-equal/-/fast-deep-equal-1.0.0.tgz#96256a3bc975595eb36d82e9929d060d893439ff" 1308 | 1309 | fast-json-stable-stringify@^2.0.0: 1310 | version "2.0.0" 1311 | resolved "https://registry.yarnpkg.com/fast-json-stable-stringify/-/fast-json-stable-stringify-2.0.0.tgz#d5142c0caee6b1189f87d3a76111064f86c8bbf2" 1312 | 1313 | figures@^1.7.0: 1314 | version "1.7.0" 1315 | resolved "https://registry.yarnpkg.com/figures/-/figures-1.7.0.tgz#cbe1e3affcf1cd44b80cadfed28dc793a9701d2e" 1316 | dependencies: 1317 | escape-string-regexp "^1.0.5" 1318 | object-assign "^4.1.0" 1319 | 1320 | filename-regex@^2.0.0: 1321 | version "2.0.1" 1322 | resolved "https://registry.yarnpkg.com/filename-regex/-/filename-regex-2.0.1.tgz#c1c4b9bee3e09725ddb106b75c1e301fe2f18b26" 1323 | 1324 | fill-range@^2.1.0: 1325 | version "2.2.3" 1326 | resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-2.2.3.tgz#50b77dfd7e469bc7492470963699fe7a8485a723" 1327 | dependencies: 1328 | is-number "^2.1.0" 1329 | isobject "^2.0.0" 1330 | randomatic "^1.1.3" 1331 | repeat-element "^1.1.2" 1332 | repeat-string "^1.5.2" 1333 | 1334 | find-parent-dir@^0.3.0: 1335 | version "0.3.0" 1336 | resolved "https://registry.yarnpkg.com/find-parent-dir/-/find-parent-dir-0.3.0.tgz#33c44b429ab2b2f0646299c5f9f718f376ff8d54" 1337 | 1338 | find-up@^2.0.0: 1339 | version "2.1.0" 1340 | resolved "https://registry.yarnpkg.com/find-up/-/find-up-2.1.0.tgz#45d1b7e506c717ddd482775a2b77920a3c0c57a7" 1341 | dependencies: 1342 | locate-path "^2.0.0" 1343 | 1344 | for-in@^1.0.1: 1345 | version "1.0.2" 1346 | resolved "https://registry.yarnpkg.com/for-in/-/for-in-1.0.2.tgz#81068d295a8142ec0ac726c6e2200c30fb6d5e80" 1347 | 1348 | for-own@^0.1.4: 1349 | version "0.1.5" 1350 | resolved "https://registry.yarnpkg.com/for-own/-/for-own-0.1.5.tgz#5265c681a4f294dabbf17c9509b6763aa84510ce" 1351 | dependencies: 1352 | for-in "^1.0.1" 1353 | 1354 | forever-agent@~0.6.1: 1355 | version "0.6.1" 1356 | resolved "https://registry.yarnpkg.com/forever-agent/-/forever-agent-0.6.1.tgz#fbc71f0c41adeb37f96c577ad1ed42d8fdacca91" 1357 | 1358 | form-data@~2.1.1: 1359 | version "2.1.4" 1360 | resolved "https://registry.yarnpkg.com/form-data/-/form-data-2.1.4.tgz#33c183acf193276ecaa98143a69e94bfee1750d1" 1361 | dependencies: 1362 | asynckit "^0.4.0" 1363 | combined-stream "^1.0.5" 1364 | mime-types "^2.1.12" 1365 | 1366 | fs-readdir-recursive@^1.0.0: 1367 | version "1.1.0" 1368 | resolved "https://registry.yarnpkg.com/fs-readdir-recursive/-/fs-readdir-recursive-1.1.0.tgz#e32fc030a2ccee44a6b5371308da54be0b397d27" 1369 | 1370 | fs.realpath@^1.0.0: 1371 | version "1.0.0" 1372 | resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f" 1373 | 1374 | fsevents@^1.0.0: 1375 | version "1.1.3" 1376 | resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-1.1.3.tgz#11f82318f5fe7bb2cd22965a108e9306208216d8" 1377 | dependencies: 1378 | nan "^2.3.0" 1379 | node-pre-gyp "^0.6.39" 1380 | 1381 | fstream-ignore@^1.0.5: 1382 | version "1.0.5" 1383 | resolved "https://registry.yarnpkg.com/fstream-ignore/-/fstream-ignore-1.0.5.tgz#9c31dae34767018fe1d249b24dada67d092da105" 1384 | dependencies: 1385 | fstream "^1.0.0" 1386 | inherits "2" 1387 | minimatch "^3.0.0" 1388 | 1389 | fstream@^1.0.0, fstream@^1.0.10, fstream@^1.0.2: 1390 | version "1.0.11" 1391 | resolved "https://registry.yarnpkg.com/fstream/-/fstream-1.0.11.tgz#5c1fb1f117477114f0632a0eb4b71b3cb0fd3171" 1392 | dependencies: 1393 | graceful-fs "^4.1.2" 1394 | inherits "~2.0.0" 1395 | mkdirp ">=0.5 0" 1396 | rimraf "2" 1397 | 1398 | gauge@~2.7.3: 1399 | version "2.7.4" 1400 | resolved "https://registry.yarnpkg.com/gauge/-/gauge-2.7.4.tgz#2c03405c7538c39d7eb37b317022e325fb018bf7" 1401 | dependencies: 1402 | aproba "^1.0.3" 1403 | console-control-strings "^1.0.0" 1404 | has-unicode "^2.0.0" 1405 | object-assign "^4.1.0" 1406 | signal-exit "^3.0.0" 1407 | string-width "^1.0.1" 1408 | strip-ansi "^3.0.1" 1409 | wide-align "^1.1.0" 1410 | 1411 | get-caller-file@^1.0.1: 1412 | version "1.0.2" 1413 | resolved "https://registry.yarnpkg.com/get-caller-file/-/get-caller-file-1.0.2.tgz#f702e63127e7e231c160a80c1554acb70d5047e5" 1414 | 1415 | get-own-enumerable-property-symbols@^2.0.1: 1416 | version "2.0.1" 1417 | resolved "https://registry.yarnpkg.com/get-own-enumerable-property-symbols/-/get-own-enumerable-property-symbols-2.0.1.tgz#5c4ad87f2834c4b9b4e84549dc1e0650fb38c24b" 1418 | 1419 | get-stream@^3.0.0: 1420 | version "3.0.0" 1421 | resolved "https://registry.yarnpkg.com/get-stream/-/get-stream-3.0.0.tgz#8e943d1358dc37555054ecbe2edb05aa174ede14" 1422 | 1423 | getpass@^0.1.1: 1424 | version "0.1.7" 1425 | resolved "https://registry.yarnpkg.com/getpass/-/getpass-0.1.7.tgz#5eff8e3e684d569ae4cb2b1282604e8ba62149fa" 1426 | dependencies: 1427 | assert-plus "^1.0.0" 1428 | 1429 | glob-base@^0.3.0: 1430 | version "0.3.0" 1431 | resolved "https://registry.yarnpkg.com/glob-base/-/glob-base-0.3.0.tgz#dbb164f6221b1c0b1ccf82aea328b497df0ea3c4" 1432 | dependencies: 1433 | glob-parent "^2.0.0" 1434 | is-glob "^2.0.0" 1435 | 1436 | glob-parent@^2.0.0: 1437 | version "2.0.0" 1438 | resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-2.0.0.tgz#81383d72db054fcccf5336daa902f182f6edbb28" 1439 | dependencies: 1440 | is-glob "^2.0.0" 1441 | 1442 | glob@^7.0.5, glob@^7.1.2: 1443 | version "7.1.2" 1444 | resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.2.tgz#c19c9df9a028702d678612384a6552404c636d15" 1445 | dependencies: 1446 | fs.realpath "^1.0.0" 1447 | inflight "^1.0.4" 1448 | inherits "2" 1449 | minimatch "^3.0.4" 1450 | once "^1.3.0" 1451 | path-is-absolute "^1.0.0" 1452 | 1453 | globals@^9.18.0: 1454 | version "9.18.0" 1455 | resolved "https://registry.yarnpkg.com/globals/-/globals-9.18.0.tgz#aa3896b3e69b487f17e31ed2143d69a8e30c2d8a" 1456 | 1457 | graceful-fs@^4.1.2, graceful-fs@^4.1.4: 1458 | version "4.1.11" 1459 | resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.1.11.tgz#0e8bdfe4d1ddb8854d64e04ea7c00e2a026e5658" 1460 | 1461 | har-schema@^1.0.5: 1462 | version "1.0.5" 1463 | resolved "https://registry.yarnpkg.com/har-schema/-/har-schema-1.0.5.tgz#d263135f43307c02c602afc8fe95970c0151369e" 1464 | 1465 | har-validator@~4.2.1: 1466 | version "4.2.1" 1467 | resolved "https://registry.yarnpkg.com/har-validator/-/har-validator-4.2.1.tgz#33481d0f1bbff600dd203d75812a6a5fba002e2a" 1468 | dependencies: 1469 | ajv "^4.9.1" 1470 | har-schema "^1.0.5" 1471 | 1472 | has-ansi@^2.0.0: 1473 | version "2.0.0" 1474 | resolved "https://registry.yarnpkg.com/has-ansi/-/has-ansi-2.0.0.tgz#34f5049ce1ecdf2b0649af3ef24e45ed35416d91" 1475 | dependencies: 1476 | ansi-regex "^2.0.0" 1477 | 1478 | has-flag@^2.0.0: 1479 | version "2.0.0" 1480 | resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-2.0.0.tgz#e8207af1cc7b30d446cc70b734b5e8be18f88d51" 1481 | 1482 | has-flag@^3.0.0: 1483 | version "3.0.0" 1484 | resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-3.0.0.tgz#b5d454dc2199ae225699f3467e5a07f3b955bafd" 1485 | 1486 | has-unicode@^2.0.0: 1487 | version "2.0.1" 1488 | resolved "https://registry.yarnpkg.com/has-unicode/-/has-unicode-2.0.1.tgz#e0e6fe6a28cf51138855e086d1691e771de2a8b9" 1489 | 1490 | hash-base@^2.0.0: 1491 | version "2.0.2" 1492 | resolved "https://registry.yarnpkg.com/hash-base/-/hash-base-2.0.2.tgz#66ea1d856db4e8a5470cadf6fce23ae5244ef2e1" 1493 | dependencies: 1494 | inherits "^2.0.1" 1495 | 1496 | hash-base@^3.0.0: 1497 | version "3.0.4" 1498 | resolved "https://registry.yarnpkg.com/hash-base/-/hash-base-3.0.4.tgz#5fc8686847ecd73499403319a6b0a3f3f6ae4918" 1499 | dependencies: 1500 | inherits "^2.0.1" 1501 | safe-buffer "^5.0.1" 1502 | 1503 | hash.js@^1.0.0, hash.js@^1.0.3: 1504 | version "1.1.3" 1505 | resolved "https://registry.yarnpkg.com/hash.js/-/hash.js-1.1.3.tgz#340dedbe6290187151c1ea1d777a3448935df846" 1506 | dependencies: 1507 | inherits "^2.0.3" 1508 | minimalistic-assert "^1.0.0" 1509 | 1510 | hawk@3.1.3, hawk@~3.1.3: 1511 | version "3.1.3" 1512 | resolved "https://registry.yarnpkg.com/hawk/-/hawk-3.1.3.tgz#078444bd7c1640b0fe540d2c9b73d59678e8e1c4" 1513 | dependencies: 1514 | boom "2.x.x" 1515 | cryptiles "2.x.x" 1516 | hoek "2.x.x" 1517 | sntp "1.x.x" 1518 | 1519 | hmac-drbg@^1.0.0: 1520 | version "1.0.1" 1521 | resolved "https://registry.yarnpkg.com/hmac-drbg/-/hmac-drbg-1.0.1.tgz#d2745701025a6c775a6c545793ed502fc0c649a1" 1522 | dependencies: 1523 | hash.js "^1.0.3" 1524 | minimalistic-assert "^1.0.0" 1525 | minimalistic-crypto-utils "^1.0.1" 1526 | 1527 | hoek@2.x.x: 1528 | version "2.16.3" 1529 | resolved "https://registry.yarnpkg.com/hoek/-/hoek-2.16.3.tgz#20bb7403d3cea398e91dc4710a8ff1b8274a25ed" 1530 | 1531 | home-or-tmp@^2.0.0: 1532 | version "2.0.0" 1533 | resolved "https://registry.yarnpkg.com/home-or-tmp/-/home-or-tmp-2.0.0.tgz#e36c3f2d2cae7d746a857e38d18d5f32a7882db8" 1534 | dependencies: 1535 | os-homedir "^1.0.0" 1536 | os-tmpdir "^1.0.1" 1537 | 1538 | hosted-git-info@^2.1.4: 1539 | version "2.5.0" 1540 | resolved "https://registry.yarnpkg.com/hosted-git-info/-/hosted-git-info-2.5.0.tgz#6d60e34b3abbc8313062c3b798ef8d901a07af3c" 1541 | 1542 | http-signature@~1.1.0: 1543 | version "1.1.1" 1544 | resolved "https://registry.yarnpkg.com/http-signature/-/http-signature-1.1.1.tgz#df72e267066cd0ac67fb76adf8e134a8fbcf91bf" 1545 | dependencies: 1546 | assert-plus "^0.2.0" 1547 | jsprim "^1.2.2" 1548 | sshpk "^1.7.0" 1549 | 1550 | https-browserify@^1.0.0: 1551 | version "1.0.0" 1552 | resolved "https://registry.yarnpkg.com/https-browserify/-/https-browserify-1.0.0.tgz#ec06c10e0a34c0f2faf199f7fd7fc78fffd03c73" 1553 | 1554 | ieee754@^1.1.4: 1555 | version "1.1.8" 1556 | resolved "https://registry.yarnpkg.com/ieee754/-/ieee754-1.1.8.tgz#be33d40ac10ef1926701f6f08a2d86fbfd1ad3e4" 1557 | 1558 | indent-string@^2.1.0: 1559 | version "2.1.0" 1560 | resolved "https://registry.yarnpkg.com/indent-string/-/indent-string-2.1.0.tgz#8e2d48348742121b4a8218b7a137e9a52049dc80" 1561 | dependencies: 1562 | repeating "^2.0.0" 1563 | 1564 | indent-string@^3.0.0: 1565 | version "3.2.0" 1566 | resolved "https://registry.yarnpkg.com/indent-string/-/indent-string-3.2.0.tgz#4a5fd6d27cc332f37e5419a504dbb837105c9289" 1567 | 1568 | indexof@0.0.1: 1569 | version "0.0.1" 1570 | resolved "https://registry.yarnpkg.com/indexof/-/indexof-0.0.1.tgz#82dc336d232b9062179d05ab3293a66059fd435d" 1571 | 1572 | inflight@^1.0.4: 1573 | version "1.0.6" 1574 | resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9" 1575 | dependencies: 1576 | once "^1.3.0" 1577 | wrappy "1" 1578 | 1579 | inherits@2, inherits@^2.0.1, inherits@^2.0.3, inherits@~2.0.0, inherits@~2.0.1, inherits@~2.0.3: 1580 | version "2.0.3" 1581 | resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.3.tgz#633c2c83e3da42a502f52466022480f4208261de" 1582 | 1583 | inherits@2.0.1: 1584 | version "2.0.1" 1585 | resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.1.tgz#b17d08d326b4423e568eff719f91b0b1cbdf69f1" 1586 | 1587 | ini@~1.3.0: 1588 | version "1.3.5" 1589 | resolved "https://registry.yarnpkg.com/ini/-/ini-1.3.5.tgz#eee25f56db1c9ec6085e0c22778083f596abf927" 1590 | 1591 | interpret@^1.0.0: 1592 | version "1.1.0" 1593 | resolved "https://registry.yarnpkg.com/interpret/-/interpret-1.1.0.tgz#7ed1b1410c6a0e0f78cf95d3b8440c63f78b8614" 1594 | 1595 | invariant@^2.2.2: 1596 | version "2.2.2" 1597 | resolved "https://registry.yarnpkg.com/invariant/-/invariant-2.2.2.tgz#9e1f56ac0acdb6bf303306f338be3b204ae60360" 1598 | dependencies: 1599 | loose-envify "^1.0.0" 1600 | 1601 | invert-kv@^1.0.0: 1602 | version "1.0.0" 1603 | resolved "https://registry.yarnpkg.com/invert-kv/-/invert-kv-1.0.0.tgz#104a8e4aaca6d3d8cd157a8ef8bfab2d7a3ffdb6" 1604 | 1605 | is-arrayish@^0.2.1: 1606 | version "0.2.1" 1607 | resolved "https://registry.yarnpkg.com/is-arrayish/-/is-arrayish-0.2.1.tgz#77c99840527aa8ecb1a8ba697b80645a7a926a9d" 1608 | 1609 | is-binary-path@^1.0.0: 1610 | version "1.0.1" 1611 | resolved "https://registry.yarnpkg.com/is-binary-path/-/is-binary-path-1.0.1.tgz#75f16642b480f187a711c814161fd3a4a7655898" 1612 | dependencies: 1613 | binary-extensions "^1.0.0" 1614 | 1615 | is-buffer@^1.1.5: 1616 | version "1.1.6" 1617 | resolved "https://registry.yarnpkg.com/is-buffer/-/is-buffer-1.1.6.tgz#efaa2ea9daa0d7ab2ea13a97b2b8ad51fefbe8be" 1618 | 1619 | is-builtin-module@^1.0.0: 1620 | version "1.0.0" 1621 | resolved "https://registry.yarnpkg.com/is-builtin-module/-/is-builtin-module-1.0.0.tgz#540572d34f7ac3119f8f76c30cbc1b1e037affbe" 1622 | dependencies: 1623 | builtin-modules "^1.0.0" 1624 | 1625 | is-directory@^0.3.1: 1626 | version "0.3.1" 1627 | resolved "https://registry.yarnpkg.com/is-directory/-/is-directory-0.3.1.tgz#61339b6f2475fc772fd9c9d83f5c8575dc154ae1" 1628 | 1629 | is-dotfile@^1.0.0: 1630 | version "1.0.3" 1631 | resolved "https://registry.yarnpkg.com/is-dotfile/-/is-dotfile-1.0.3.tgz#a6a2f32ffd2dfb04f5ca25ecd0f6b83cf798a1e1" 1632 | 1633 | is-equal-shallow@^0.1.3: 1634 | version "0.1.3" 1635 | resolved "https://registry.yarnpkg.com/is-equal-shallow/-/is-equal-shallow-0.1.3.tgz#2238098fc221de0bcfa5d9eac4c45d638aa1c534" 1636 | dependencies: 1637 | is-primitive "^2.0.0" 1638 | 1639 | is-extendable@^0.1.1: 1640 | version "0.1.1" 1641 | resolved "https://registry.yarnpkg.com/is-extendable/-/is-extendable-0.1.1.tgz#62b110e289a471418e3ec36a617d472e301dfc89" 1642 | 1643 | is-extglob@^1.0.0: 1644 | version "1.0.0" 1645 | resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-1.0.0.tgz#ac468177c4943405a092fc8f29760c6ffc6206c0" 1646 | 1647 | is-extglob@^2.1.1: 1648 | version "2.1.1" 1649 | resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-2.1.1.tgz#a88c02535791f02ed37c76a1b9ea9773c833f8c2" 1650 | 1651 | is-finite@^1.0.0: 1652 | version "1.0.2" 1653 | resolved "https://registry.yarnpkg.com/is-finite/-/is-finite-1.0.2.tgz#cc6677695602be550ef11e8b4aa6305342b6d0aa" 1654 | dependencies: 1655 | number-is-nan "^1.0.0" 1656 | 1657 | is-fullwidth-code-point@^1.0.0: 1658 | version "1.0.0" 1659 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz#ef9e31386f031a7f0d643af82fde50c457ef00cb" 1660 | dependencies: 1661 | number-is-nan "^1.0.0" 1662 | 1663 | is-fullwidth-code-point@^2.0.0: 1664 | version "2.0.0" 1665 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz#a3b30a5c4f199183167aaab93beefae3ddfb654f" 1666 | 1667 | is-glob@^2.0.0, is-glob@^2.0.1: 1668 | version "2.0.1" 1669 | resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-2.0.1.tgz#d096f926a3ded5600f3fdfd91198cb0888c2d863" 1670 | dependencies: 1671 | is-extglob "^1.0.0" 1672 | 1673 | is-glob@^4.0.0: 1674 | version "4.0.0" 1675 | resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-4.0.0.tgz#9521c76845cc2610a85203ddf080a958c2ffabc0" 1676 | dependencies: 1677 | is-extglob "^2.1.1" 1678 | 1679 | is-number@^2.1.0: 1680 | version "2.1.0" 1681 | resolved "https://registry.yarnpkg.com/is-number/-/is-number-2.1.0.tgz#01fcbbb393463a548f2f466cce16dece49db908f" 1682 | dependencies: 1683 | kind-of "^3.0.2" 1684 | 1685 | is-number@^3.0.0: 1686 | version "3.0.0" 1687 | resolved "https://registry.yarnpkg.com/is-number/-/is-number-3.0.0.tgz#24fd6201a4782cf50561c810276afc7d12d71195" 1688 | dependencies: 1689 | kind-of "^3.0.2" 1690 | 1691 | is-obj@^1.0.1: 1692 | version "1.0.1" 1693 | resolved "https://registry.yarnpkg.com/is-obj/-/is-obj-1.0.1.tgz#3e4729ac1f5fde025cd7d83a896dab9f4f67db0f" 1694 | 1695 | is-observable@^0.2.0: 1696 | version "0.2.0" 1697 | resolved "https://registry.yarnpkg.com/is-observable/-/is-observable-0.2.0.tgz#b361311d83c6e5d726cabf5e250b0237106f5ae2" 1698 | dependencies: 1699 | symbol-observable "^0.2.2" 1700 | 1701 | is-posix-bracket@^0.1.0: 1702 | version "0.1.1" 1703 | resolved "https://registry.yarnpkg.com/is-posix-bracket/-/is-posix-bracket-0.1.1.tgz#3334dc79774368e92f016e6fbc0a88f5cd6e6bc4" 1704 | 1705 | is-primitive@^2.0.0: 1706 | version "2.0.0" 1707 | resolved "https://registry.yarnpkg.com/is-primitive/-/is-primitive-2.0.0.tgz#207bab91638499c07b2adf240a41a87210034575" 1708 | 1709 | is-promise@^2.1.0: 1710 | version "2.1.0" 1711 | resolved "https://registry.yarnpkg.com/is-promise/-/is-promise-2.1.0.tgz#79a2a9ece7f096e80f36d2b2f3bc16c1ff4bf3fa" 1712 | 1713 | is-regexp@^1.0.0: 1714 | version "1.0.0" 1715 | resolved "https://registry.yarnpkg.com/is-regexp/-/is-regexp-1.0.0.tgz#fd2d883545c46bac5a633e7b9a09e87fa2cb5069" 1716 | 1717 | is-stream@^1.1.0: 1718 | version "1.1.0" 1719 | resolved "https://registry.yarnpkg.com/is-stream/-/is-stream-1.1.0.tgz#12d4a3dd4e68e0b79ceb8dbc84173ae80d91ca44" 1720 | 1721 | is-typedarray@~1.0.0: 1722 | version "1.0.0" 1723 | resolved "https://registry.yarnpkg.com/is-typedarray/-/is-typedarray-1.0.0.tgz#e479c80858df0c1b11ddda6940f96011fcda4a9a" 1724 | 1725 | isarray@1.0.0, isarray@^1.0.0, isarray@~1.0.0: 1726 | version "1.0.0" 1727 | resolved "https://registry.yarnpkg.com/isarray/-/isarray-1.0.0.tgz#bb935d48582cba168c06834957a54a3e07124f11" 1728 | 1729 | isexe@^2.0.0: 1730 | version "2.0.0" 1731 | resolved "https://registry.yarnpkg.com/isexe/-/isexe-2.0.0.tgz#e8fbf374dc556ff8947a10dcb0572d633f2cfa10" 1732 | 1733 | isobject@^2.0.0: 1734 | version "2.1.0" 1735 | resolved "https://registry.yarnpkg.com/isobject/-/isobject-2.1.0.tgz#f065561096a3f1da2ef46272f815c840d87e0c89" 1736 | dependencies: 1737 | isarray "1.0.0" 1738 | 1739 | isstream@~0.1.2: 1740 | version "0.1.2" 1741 | resolved "https://registry.yarnpkg.com/isstream/-/isstream-0.1.2.tgz#47e63f7af55afa6f92e1500e690eb8b8529c099a" 1742 | 1743 | jest-get-type@^21.2.0: 1744 | version "21.2.0" 1745 | resolved "https://registry.yarnpkg.com/jest-get-type/-/jest-get-type-21.2.0.tgz#f6376ab9db4b60d81e39f30749c6c466f40d4a23" 1746 | 1747 | jest-validate@^21.1.0: 1748 | version "21.2.1" 1749 | resolved "https://registry.yarnpkg.com/jest-validate/-/jest-validate-21.2.1.tgz#cc0cbca653cd54937ba4f2a111796774530dd3c7" 1750 | dependencies: 1751 | chalk "^2.0.1" 1752 | jest-get-type "^21.2.0" 1753 | leven "^2.1.0" 1754 | pretty-format "^21.2.1" 1755 | 1756 | js-tokens@^3.0.0, js-tokens@^3.0.2: 1757 | version "3.0.2" 1758 | resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-3.0.2.tgz#9866df395102130e38f7f996bceb65443209c25b" 1759 | 1760 | js-yaml@^3.9.0: 1761 | version "3.10.0" 1762 | resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-3.10.0.tgz#2e78441646bd4682e963f22b6e92823c309c62dc" 1763 | dependencies: 1764 | argparse "^1.0.7" 1765 | esprima "^4.0.0" 1766 | 1767 | jsbn@~0.1.0: 1768 | version "0.1.1" 1769 | resolved "https://registry.yarnpkg.com/jsbn/-/jsbn-0.1.1.tgz#a5e654c2e5a2deb5f201d96cefbca80c0ef2f513" 1770 | 1771 | jsesc@^1.3.0: 1772 | version "1.3.0" 1773 | resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-1.3.0.tgz#46c3fec8c1892b12b0833db9bc7622176dbab34b" 1774 | 1775 | jsesc@~0.5.0: 1776 | version "0.5.0" 1777 | resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-0.5.0.tgz#e7dee66e35d6fc16f710fe91d5cf69f70f08911d" 1778 | 1779 | json-loader@^0.5.4: 1780 | version "0.5.7" 1781 | resolved "https://registry.yarnpkg.com/json-loader/-/json-loader-0.5.7.tgz#dca14a70235ff82f0ac9a3abeb60d337a365185d" 1782 | 1783 | json-parse-better-errors@^1.0.1: 1784 | version "1.0.1" 1785 | resolved "https://registry.yarnpkg.com/json-parse-better-errors/-/json-parse-better-errors-1.0.1.tgz#50183cd1b2d25275de069e9e71b467ac9eab973a" 1786 | 1787 | json-schema-traverse@^0.3.0: 1788 | version "0.3.1" 1789 | resolved "https://registry.yarnpkg.com/json-schema-traverse/-/json-schema-traverse-0.3.1.tgz#349a6d44c53a51de89b40805c5d5e59b417d3340" 1790 | 1791 | json-schema@0.2.3: 1792 | version "0.2.3" 1793 | resolved "https://registry.yarnpkg.com/json-schema/-/json-schema-0.2.3.tgz#b480c892e59a2f05954ce727bd3f2a4e882f9e13" 1794 | 1795 | json-stable-stringify@^1.0.1: 1796 | version "1.0.1" 1797 | resolved "https://registry.yarnpkg.com/json-stable-stringify/-/json-stable-stringify-1.0.1.tgz#9a759d39c5f2ff503fd5300646ed445f88c4f9af" 1798 | dependencies: 1799 | jsonify "~0.0.0" 1800 | 1801 | json-stringify-safe@~5.0.1: 1802 | version "5.0.1" 1803 | resolved "https://registry.yarnpkg.com/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz#1296a2d58fd45f19a0f6ce01d65701e2c735b6eb" 1804 | 1805 | json5@^0.5.0, json5@^0.5.1: 1806 | version "0.5.1" 1807 | resolved "https://registry.yarnpkg.com/json5/-/json5-0.5.1.tgz#1eade7acc012034ad84e2396767ead9fa5495821" 1808 | 1809 | jsonify@~0.0.0: 1810 | version "0.0.0" 1811 | resolved "https://registry.yarnpkg.com/jsonify/-/jsonify-0.0.0.tgz#2c74b6ee41d93ca51b7b5aaee8f503631d252a73" 1812 | 1813 | jsprim@^1.2.2: 1814 | version "1.4.1" 1815 | resolved "https://registry.yarnpkg.com/jsprim/-/jsprim-1.4.1.tgz#313e66bc1e5cc06e438bc1b7499c2e5c56acb6a2" 1816 | dependencies: 1817 | assert-plus "1.0.0" 1818 | extsprintf "1.3.0" 1819 | json-schema "0.2.3" 1820 | verror "1.10.0" 1821 | 1822 | kind-of@^3.0.2: 1823 | version "3.2.2" 1824 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-3.2.2.tgz#31ea21a734bab9bbb0f32466d893aea51e4a3c64" 1825 | dependencies: 1826 | is-buffer "^1.1.5" 1827 | 1828 | kind-of@^4.0.0: 1829 | version "4.0.0" 1830 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-4.0.0.tgz#20813df3d712928b207378691a45066fae72dd57" 1831 | dependencies: 1832 | is-buffer "^1.1.5" 1833 | 1834 | lazy-cache@^1.0.3: 1835 | version "1.0.4" 1836 | resolved "https://registry.yarnpkg.com/lazy-cache/-/lazy-cache-1.0.4.tgz#a1d78fc3a50474cb80845d3b3b6e1da49a446e8e" 1837 | 1838 | lcid@^1.0.0: 1839 | version "1.0.0" 1840 | resolved "https://registry.yarnpkg.com/lcid/-/lcid-1.0.0.tgz#308accafa0bc483a3867b4b6f2b9506251d1b835" 1841 | dependencies: 1842 | invert-kv "^1.0.0" 1843 | 1844 | leven@^2.1.0: 1845 | version "2.1.0" 1846 | resolved "https://registry.yarnpkg.com/leven/-/leven-2.1.0.tgz#c2e7a9f772094dee9d34202ae8acce4687875580" 1847 | 1848 | lint-staged@^6.1.0: 1849 | version "6.1.0" 1850 | resolved "https://registry.yarnpkg.com/lint-staged/-/lint-staged-6.1.0.tgz#28f600c10a6cbd249ceb003118a1552e53544a93" 1851 | dependencies: 1852 | app-root-path "^2.0.0" 1853 | chalk "^2.1.0" 1854 | commander "^2.11.0" 1855 | cosmiconfig "^4.0.0" 1856 | debug "^3.1.0" 1857 | dedent "^0.7.0" 1858 | execa "^0.8.0" 1859 | find-parent-dir "^0.3.0" 1860 | is-glob "^4.0.0" 1861 | jest-validate "^21.1.0" 1862 | listr "^0.13.0" 1863 | lodash "^4.17.4" 1864 | log-symbols "^2.0.0" 1865 | minimatch "^3.0.0" 1866 | npm-which "^3.0.1" 1867 | p-map "^1.1.1" 1868 | path-is-inside "^1.0.2" 1869 | pify "^3.0.0" 1870 | staged-git-files "0.0.4" 1871 | stringify-object "^3.2.0" 1872 | 1873 | listr-silent-renderer@^1.1.1: 1874 | version "1.1.1" 1875 | resolved "https://registry.yarnpkg.com/listr-silent-renderer/-/listr-silent-renderer-1.1.1.tgz#924b5a3757153770bf1a8e3fbf74b8bbf3f9242e" 1876 | 1877 | listr-update-renderer@^0.4.0: 1878 | version "0.4.0" 1879 | resolved "https://registry.yarnpkg.com/listr-update-renderer/-/listr-update-renderer-0.4.0.tgz#344d980da2ca2e8b145ba305908f32ae3f4cc8a7" 1880 | dependencies: 1881 | chalk "^1.1.3" 1882 | cli-truncate "^0.2.1" 1883 | elegant-spinner "^1.0.1" 1884 | figures "^1.7.0" 1885 | indent-string "^3.0.0" 1886 | log-symbols "^1.0.2" 1887 | log-update "^1.0.2" 1888 | strip-ansi "^3.0.1" 1889 | 1890 | listr-verbose-renderer@^0.4.0: 1891 | version "0.4.1" 1892 | resolved "https://registry.yarnpkg.com/listr-verbose-renderer/-/listr-verbose-renderer-0.4.1.tgz#8206f4cf6d52ddc5827e5fd14989e0e965933a35" 1893 | dependencies: 1894 | chalk "^1.1.3" 1895 | cli-cursor "^1.0.2" 1896 | date-fns "^1.27.2" 1897 | figures "^1.7.0" 1898 | 1899 | listr@^0.13.0: 1900 | version "0.13.0" 1901 | resolved "https://registry.yarnpkg.com/listr/-/listr-0.13.0.tgz#20bb0ba30bae660ee84cc0503df4be3d5623887d" 1902 | dependencies: 1903 | chalk "^1.1.3" 1904 | cli-truncate "^0.2.1" 1905 | figures "^1.7.0" 1906 | indent-string "^2.1.0" 1907 | is-observable "^0.2.0" 1908 | is-promise "^2.1.0" 1909 | is-stream "^1.1.0" 1910 | listr-silent-renderer "^1.1.1" 1911 | listr-update-renderer "^0.4.0" 1912 | listr-verbose-renderer "^0.4.0" 1913 | log-symbols "^1.0.2" 1914 | log-update "^1.0.2" 1915 | ora "^0.2.3" 1916 | p-map "^1.1.1" 1917 | rxjs "^5.4.2" 1918 | stream-to-observable "^0.2.0" 1919 | strip-ansi "^3.0.1" 1920 | 1921 | load-json-file@^2.0.0: 1922 | version "2.0.0" 1923 | resolved "https://registry.yarnpkg.com/load-json-file/-/load-json-file-2.0.0.tgz#7947e42149af80d696cbf797bcaabcfe1fe29ca8" 1924 | dependencies: 1925 | graceful-fs "^4.1.2" 1926 | parse-json "^2.2.0" 1927 | pify "^2.0.0" 1928 | strip-bom "^3.0.0" 1929 | 1930 | loader-runner@^2.3.0: 1931 | version "2.3.0" 1932 | resolved "https://registry.yarnpkg.com/loader-runner/-/loader-runner-2.3.0.tgz#f482aea82d543e07921700d5a46ef26fdac6b8a2" 1933 | 1934 | loader-utils@^1.1.0: 1935 | version "1.1.0" 1936 | resolved "https://registry.yarnpkg.com/loader-utils/-/loader-utils-1.1.0.tgz#c98aef488bcceda2ffb5e2de646d6a754429f5cd" 1937 | dependencies: 1938 | big.js "^3.1.3" 1939 | emojis-list "^2.0.0" 1940 | json5 "^0.5.0" 1941 | 1942 | locate-path@^2.0.0: 1943 | version "2.0.0" 1944 | resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-2.0.0.tgz#2b568b265eec944c6d9c0de9c3dbbbca0354cd8e" 1945 | dependencies: 1946 | p-locate "^2.0.0" 1947 | path-exists "^3.0.0" 1948 | 1949 | lodash@^4.14.0, lodash@^4.17.4: 1950 | version "4.17.5" 1951 | resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.5.tgz#99a92d65c0272debe8c96b6057bc8fbfa3bed511" 1952 | 1953 | log-symbols@^1.0.2: 1954 | version "1.0.2" 1955 | resolved "https://registry.yarnpkg.com/log-symbols/-/log-symbols-1.0.2.tgz#376ff7b58ea3086a0f09facc74617eca501e1a18" 1956 | dependencies: 1957 | chalk "^1.0.0" 1958 | 1959 | log-symbols@^2.0.0: 1960 | version "2.2.0" 1961 | resolved "https://registry.yarnpkg.com/log-symbols/-/log-symbols-2.2.0.tgz#5740e1c5d6f0dfda4ad9323b5332107ef6b4c40a" 1962 | dependencies: 1963 | chalk "^2.0.1" 1964 | 1965 | log-update@^1.0.2: 1966 | version "1.0.2" 1967 | resolved "https://registry.yarnpkg.com/log-update/-/log-update-1.0.2.tgz#19929f64c4093d2d2e7075a1dad8af59c296b8d1" 1968 | dependencies: 1969 | ansi-escapes "^1.0.0" 1970 | cli-cursor "^1.0.2" 1971 | 1972 | longest@^1.0.1: 1973 | version "1.0.1" 1974 | resolved "https://registry.yarnpkg.com/longest/-/longest-1.0.1.tgz#30a0b2da38f73770e8294a0d22e6625ed77d0097" 1975 | 1976 | loose-envify@^1.0.0: 1977 | version "1.3.1" 1978 | resolved "https://registry.yarnpkg.com/loose-envify/-/loose-envify-1.3.1.tgz#d1a8ad33fa9ce0e713d65fdd0ac8b748d478c848" 1979 | dependencies: 1980 | js-tokens "^3.0.0" 1981 | 1982 | lru-cache@^4.0.1: 1983 | version "4.1.1" 1984 | resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-4.1.1.tgz#622e32e82488b49279114a4f9ecf45e7cd6bba55" 1985 | dependencies: 1986 | pseudomap "^1.0.2" 1987 | yallist "^2.1.2" 1988 | 1989 | md5.js@^1.3.4: 1990 | version "1.3.4" 1991 | resolved "https://registry.yarnpkg.com/md5.js/-/md5.js-1.3.4.tgz#e9bdbde94a20a5ac18b04340fc5764d5b09d901d" 1992 | dependencies: 1993 | hash-base "^3.0.0" 1994 | inherits "^2.0.1" 1995 | 1996 | mem@^1.1.0: 1997 | version "1.1.0" 1998 | resolved "https://registry.yarnpkg.com/mem/-/mem-1.1.0.tgz#5edd52b485ca1d900fe64895505399a0dfa45f76" 1999 | dependencies: 2000 | mimic-fn "^1.0.0" 2001 | 2002 | memory-fs@^0.4.0, memory-fs@~0.4.1: 2003 | version "0.4.1" 2004 | resolved "https://registry.yarnpkg.com/memory-fs/-/memory-fs-0.4.1.tgz#3a9a20b8462523e447cfbc7e8bb80ed667bfc552" 2005 | dependencies: 2006 | errno "^0.1.3" 2007 | readable-stream "^2.0.1" 2008 | 2009 | micromatch@^2.1.5: 2010 | version "2.3.11" 2011 | resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-2.3.11.tgz#86677c97d1720b363431d04d0d15293bd38c1565" 2012 | dependencies: 2013 | arr-diff "^2.0.0" 2014 | array-unique "^0.2.1" 2015 | braces "^1.8.2" 2016 | expand-brackets "^0.1.4" 2017 | extglob "^0.3.1" 2018 | filename-regex "^2.0.0" 2019 | is-extglob "^1.0.0" 2020 | is-glob "^2.0.1" 2021 | kind-of "^3.0.2" 2022 | normalize-path "^2.0.1" 2023 | object.omit "^2.0.0" 2024 | parse-glob "^3.0.4" 2025 | regex-cache "^0.4.2" 2026 | 2027 | miller-rabin@^4.0.0: 2028 | version "4.0.1" 2029 | resolved "https://registry.yarnpkg.com/miller-rabin/-/miller-rabin-4.0.1.tgz#f080351c865b0dc562a8462966daa53543c78a4d" 2030 | dependencies: 2031 | bn.js "^4.0.0" 2032 | brorand "^1.0.1" 2033 | 2034 | mime-db@~1.30.0: 2035 | version "1.30.0" 2036 | resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.30.0.tgz#74c643da2dd9d6a45399963465b26d5ca7d71f01" 2037 | 2038 | mime-types@^2.1.12, mime-types@~2.1.7: 2039 | version "2.1.17" 2040 | resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.17.tgz#09d7a393f03e995a79f8af857b70a9e0ab16557a" 2041 | dependencies: 2042 | mime-db "~1.30.0" 2043 | 2044 | mimic-fn@^1.0.0: 2045 | version "1.2.0" 2046 | resolved "https://registry.yarnpkg.com/mimic-fn/-/mimic-fn-1.2.0.tgz#820c86a39334640e99516928bd03fca88057d022" 2047 | 2048 | minimalistic-assert@^1.0.0: 2049 | version "1.0.0" 2050 | resolved "https://registry.yarnpkg.com/minimalistic-assert/-/minimalistic-assert-1.0.0.tgz#702be2dda6b37f4836bcb3f5db56641b64a1d3d3" 2051 | 2052 | minimalistic-crypto-utils@^1.0.0, minimalistic-crypto-utils@^1.0.1: 2053 | version "1.0.1" 2054 | resolved "https://registry.yarnpkg.com/minimalistic-crypto-utils/-/minimalistic-crypto-utils-1.0.1.tgz#f6c00c1c0b082246e5c4d99dfb8c7c083b2b582a" 2055 | 2056 | minimatch@^3.0.0, minimatch@^3.0.2, minimatch@^3.0.4: 2057 | version "3.0.4" 2058 | resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.0.4.tgz#5166e286457f03306064be5497e8dbb0c3d32083" 2059 | dependencies: 2060 | brace-expansion "^1.1.7" 2061 | 2062 | minimist@0.0.8: 2063 | version "0.0.8" 2064 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-0.0.8.tgz#857fcabfc3397d2625b8228262e86aa7a011b05d" 2065 | 2066 | minimist@^1.2.0: 2067 | version "1.2.0" 2068 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.0.tgz#a35008b20f41383eec1fb914f4cd5df79a264284" 2069 | 2070 | "mkdirp@>=0.5 0", mkdirp@^0.5.1, mkdirp@~0.5.0: 2071 | version "0.5.1" 2072 | resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.5.1.tgz#30057438eac6cf7f8c4767f38648d6697d75c903" 2073 | dependencies: 2074 | minimist "0.0.8" 2075 | 2076 | ms@2.0.0: 2077 | version "2.0.0" 2078 | resolved "https://registry.yarnpkg.com/ms/-/ms-2.0.0.tgz#5608aeadfc00be6c2901df5f9861788de0d597c8" 2079 | 2080 | nan@^2.3.0: 2081 | version "2.8.0" 2082 | resolved "https://registry.yarnpkg.com/nan/-/nan-2.8.0.tgz#ed715f3fe9de02b57a5e6252d90a96675e1f085a" 2083 | 2084 | node-libs-browser@^2.0.0: 2085 | version "2.1.0" 2086 | resolved "https://registry.yarnpkg.com/node-libs-browser/-/node-libs-browser-2.1.0.tgz#5f94263d404f6e44767d726901fff05478d600df" 2087 | dependencies: 2088 | assert "^1.1.1" 2089 | browserify-zlib "^0.2.0" 2090 | buffer "^4.3.0" 2091 | console-browserify "^1.1.0" 2092 | constants-browserify "^1.0.0" 2093 | crypto-browserify "^3.11.0" 2094 | domain-browser "^1.1.1" 2095 | events "^1.0.0" 2096 | https-browserify "^1.0.0" 2097 | os-browserify "^0.3.0" 2098 | path-browserify "0.0.0" 2099 | process "^0.11.10" 2100 | punycode "^1.2.4" 2101 | querystring-es3 "^0.2.0" 2102 | readable-stream "^2.3.3" 2103 | stream-browserify "^2.0.1" 2104 | stream-http "^2.7.2" 2105 | string_decoder "^1.0.0" 2106 | timers-browserify "^2.0.4" 2107 | tty-browserify "0.0.0" 2108 | url "^0.11.0" 2109 | util "^0.10.3" 2110 | vm-browserify "0.0.4" 2111 | 2112 | node-pre-gyp@^0.6.39: 2113 | version "0.6.39" 2114 | resolved "https://registry.yarnpkg.com/node-pre-gyp/-/node-pre-gyp-0.6.39.tgz#c00e96860b23c0e1420ac7befc5044e1d78d8649" 2115 | dependencies: 2116 | detect-libc "^1.0.2" 2117 | hawk "3.1.3" 2118 | mkdirp "^0.5.1" 2119 | nopt "^4.0.1" 2120 | npmlog "^4.0.2" 2121 | rc "^1.1.7" 2122 | request "2.81.0" 2123 | rimraf "^2.6.1" 2124 | semver "^5.3.0" 2125 | tar "^2.2.1" 2126 | tar-pack "^3.4.0" 2127 | 2128 | nopt@^4.0.1: 2129 | version "4.0.1" 2130 | resolved "https://registry.yarnpkg.com/nopt/-/nopt-4.0.1.tgz#d0d4685afd5415193c8c7505602d0d17cd64474d" 2131 | dependencies: 2132 | abbrev "1" 2133 | osenv "^0.1.4" 2134 | 2135 | normalize-package-data@^2.3.2: 2136 | version "2.4.0" 2137 | resolved "https://registry.yarnpkg.com/normalize-package-data/-/normalize-package-data-2.4.0.tgz#12f95a307d58352075a04907b84ac8be98ac012f" 2138 | dependencies: 2139 | hosted-git-info "^2.1.4" 2140 | is-builtin-module "^1.0.0" 2141 | semver "2 || 3 || 4 || 5" 2142 | validate-npm-package-license "^3.0.1" 2143 | 2144 | normalize-path@^2.0.0, normalize-path@^2.0.1: 2145 | version "2.1.1" 2146 | resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-2.1.1.tgz#1ab28b556e198363a8c1a6f7e6fa20137fe6aed9" 2147 | dependencies: 2148 | remove-trailing-separator "^1.0.1" 2149 | 2150 | npm-path@^2.0.2: 2151 | version "2.0.4" 2152 | resolved "https://registry.yarnpkg.com/npm-path/-/npm-path-2.0.4.tgz#c641347a5ff9d6a09e4d9bce5580c4f505278e64" 2153 | dependencies: 2154 | which "^1.2.10" 2155 | 2156 | npm-run-path@^2.0.0: 2157 | version "2.0.2" 2158 | resolved "https://registry.yarnpkg.com/npm-run-path/-/npm-run-path-2.0.2.tgz#35a9232dfa35d7067b4cb2ddf2357b1871536c5f" 2159 | dependencies: 2160 | path-key "^2.0.0" 2161 | 2162 | npm-which@^3.0.1: 2163 | version "3.0.1" 2164 | resolved "https://registry.yarnpkg.com/npm-which/-/npm-which-3.0.1.tgz#9225f26ec3a285c209cae67c3b11a6b4ab7140aa" 2165 | dependencies: 2166 | commander "^2.9.0" 2167 | npm-path "^2.0.2" 2168 | which "^1.2.10" 2169 | 2170 | npmlog@^4.0.2: 2171 | version "4.1.2" 2172 | resolved "https://registry.yarnpkg.com/npmlog/-/npmlog-4.1.2.tgz#08a7f2a8bf734604779a9efa4ad5cc717abb954b" 2173 | dependencies: 2174 | are-we-there-yet "~1.1.2" 2175 | console-control-strings "~1.1.0" 2176 | gauge "~2.7.3" 2177 | set-blocking "~2.0.0" 2178 | 2179 | number-is-nan@^1.0.0: 2180 | version "1.0.1" 2181 | resolved "https://registry.yarnpkg.com/number-is-nan/-/number-is-nan-1.0.1.tgz#097b602b53422a522c1afb8790318336941a011d" 2182 | 2183 | oauth-sign@~0.8.1: 2184 | version "0.8.2" 2185 | resolved "https://registry.yarnpkg.com/oauth-sign/-/oauth-sign-0.8.2.tgz#46a6ab7f0aead8deae9ec0565780b7d4efeb9d43" 2186 | 2187 | object-assign@^4.0.1, object-assign@^4.1.0: 2188 | version "4.1.1" 2189 | resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863" 2190 | 2191 | object.omit@^2.0.0: 2192 | version "2.0.1" 2193 | resolved "https://registry.yarnpkg.com/object.omit/-/object.omit-2.0.1.tgz#1a9c744829f39dbb858c76ca3579ae2a54ebd1fa" 2194 | dependencies: 2195 | for-own "^0.1.4" 2196 | is-extendable "^0.1.1" 2197 | 2198 | once@^1.3.0, once@^1.3.3: 2199 | version "1.4.0" 2200 | resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1" 2201 | dependencies: 2202 | wrappy "1" 2203 | 2204 | onetime@^1.0.0: 2205 | version "1.1.0" 2206 | resolved "https://registry.yarnpkg.com/onetime/-/onetime-1.1.0.tgz#a1f7838f8314c516f05ecefcbc4ccfe04b4ed789" 2207 | 2208 | ora@^0.2.3: 2209 | version "0.2.3" 2210 | resolved "https://registry.yarnpkg.com/ora/-/ora-0.2.3.tgz#37527d220adcd53c39b73571d754156d5db657a4" 2211 | dependencies: 2212 | chalk "^1.1.1" 2213 | cli-cursor "^1.0.2" 2214 | cli-spinners "^0.1.2" 2215 | object-assign "^4.0.1" 2216 | 2217 | os-browserify@^0.3.0: 2218 | version "0.3.0" 2219 | resolved "https://registry.yarnpkg.com/os-browserify/-/os-browserify-0.3.0.tgz#854373c7f5c2315914fc9bfc6bd8238fdda1ec27" 2220 | 2221 | os-homedir@^1.0.0: 2222 | version "1.0.2" 2223 | resolved "https://registry.yarnpkg.com/os-homedir/-/os-homedir-1.0.2.tgz#ffbc4988336e0e833de0c168c7ef152121aa7fb3" 2224 | 2225 | os-locale@^2.0.0: 2226 | version "2.1.0" 2227 | resolved "https://registry.yarnpkg.com/os-locale/-/os-locale-2.1.0.tgz#42bc2900a6b5b8bd17376c8e882b65afccf24bf2" 2228 | dependencies: 2229 | execa "^0.7.0" 2230 | lcid "^1.0.0" 2231 | mem "^1.1.0" 2232 | 2233 | os-tmpdir@^1.0.0, os-tmpdir@^1.0.1: 2234 | version "1.0.2" 2235 | resolved "https://registry.yarnpkg.com/os-tmpdir/-/os-tmpdir-1.0.2.tgz#bbe67406c79aa85c5cfec766fe5734555dfa1274" 2236 | 2237 | osenv@^0.1.4: 2238 | version "0.1.4" 2239 | resolved "https://registry.yarnpkg.com/osenv/-/osenv-0.1.4.tgz#42fe6d5953df06c8064be6f176c3d05aaaa34644" 2240 | dependencies: 2241 | os-homedir "^1.0.0" 2242 | os-tmpdir "^1.0.0" 2243 | 2244 | output-file-sync@^1.1.2: 2245 | version "1.1.2" 2246 | resolved "https://registry.yarnpkg.com/output-file-sync/-/output-file-sync-1.1.2.tgz#d0a33eefe61a205facb90092e826598d5245ce76" 2247 | dependencies: 2248 | graceful-fs "^4.1.4" 2249 | mkdirp "^0.5.1" 2250 | object-assign "^4.1.0" 2251 | 2252 | p-finally@^1.0.0: 2253 | version "1.0.0" 2254 | resolved "https://registry.yarnpkg.com/p-finally/-/p-finally-1.0.0.tgz#3fbcfb15b899a44123b34b6dcc18b724336a2cae" 2255 | 2256 | p-limit@^1.1.0: 2257 | version "1.2.0" 2258 | resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-1.2.0.tgz#0e92b6bedcb59f022c13d0f1949dc82d15909f1c" 2259 | dependencies: 2260 | p-try "^1.0.0" 2261 | 2262 | p-locate@^2.0.0: 2263 | version "2.0.0" 2264 | resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-2.0.0.tgz#20a0103b222a70c8fd39cc2e580680f3dde5ec43" 2265 | dependencies: 2266 | p-limit "^1.1.0" 2267 | 2268 | p-map@^1.1.1: 2269 | version "1.2.0" 2270 | resolved "https://registry.yarnpkg.com/p-map/-/p-map-1.2.0.tgz#e4e94f311eabbc8633a1e79908165fca26241b6b" 2271 | 2272 | p-try@^1.0.0: 2273 | version "1.0.0" 2274 | resolved "https://registry.yarnpkg.com/p-try/-/p-try-1.0.0.tgz#cbc79cdbaf8fd4228e13f621f2b1a237c1b207b3" 2275 | 2276 | pako@~1.0.5: 2277 | version "1.0.6" 2278 | resolved "https://registry.yarnpkg.com/pako/-/pako-1.0.6.tgz#0101211baa70c4bca4a0f63f2206e97b7dfaf258" 2279 | 2280 | parse-asn1@^5.0.0: 2281 | version "5.1.0" 2282 | resolved "https://registry.yarnpkg.com/parse-asn1/-/parse-asn1-5.1.0.tgz#37c4f9b7ed3ab65c74817b5f2480937fbf97c712" 2283 | dependencies: 2284 | asn1.js "^4.0.0" 2285 | browserify-aes "^1.0.0" 2286 | create-hash "^1.1.0" 2287 | evp_bytestokey "^1.0.0" 2288 | pbkdf2 "^3.0.3" 2289 | 2290 | parse-glob@^3.0.4: 2291 | version "3.0.4" 2292 | resolved "https://registry.yarnpkg.com/parse-glob/-/parse-glob-3.0.4.tgz#b2c376cfb11f35513badd173ef0bb6e3a388391c" 2293 | dependencies: 2294 | glob-base "^0.3.0" 2295 | is-dotfile "^1.0.0" 2296 | is-extglob "^1.0.0" 2297 | is-glob "^2.0.0" 2298 | 2299 | parse-json@^2.2.0: 2300 | version "2.2.0" 2301 | resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-2.2.0.tgz#f480f40434ef80741f8469099f8dea18f55a4dc9" 2302 | dependencies: 2303 | error-ex "^1.2.0" 2304 | 2305 | parse-json@^4.0.0: 2306 | version "4.0.0" 2307 | resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-4.0.0.tgz#be35f5425be1f7f6c747184f98a788cb99477ee0" 2308 | dependencies: 2309 | error-ex "^1.3.1" 2310 | json-parse-better-errors "^1.0.1" 2311 | 2312 | path-browserify@0.0.0: 2313 | version "0.0.0" 2314 | resolved "https://registry.yarnpkg.com/path-browserify/-/path-browserify-0.0.0.tgz#a0b870729aae214005b7d5032ec2cbbb0fb4451a" 2315 | 2316 | path-exists@^3.0.0: 2317 | version "3.0.0" 2318 | resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-3.0.0.tgz#ce0ebeaa5f78cb18925ea7d810d7b59b010fd515" 2319 | 2320 | path-is-absolute@^1.0.0, path-is-absolute@^1.0.1: 2321 | version "1.0.1" 2322 | resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f" 2323 | 2324 | path-is-inside@^1.0.2: 2325 | version "1.0.2" 2326 | resolved "https://registry.yarnpkg.com/path-is-inside/-/path-is-inside-1.0.2.tgz#365417dede44430d1c11af61027facf074bdfc53" 2327 | 2328 | path-key@^2.0.0: 2329 | version "2.0.1" 2330 | resolved "https://registry.yarnpkg.com/path-key/-/path-key-2.0.1.tgz#411cadb574c5a140d3a4b1910d40d80cc9f40b40" 2331 | 2332 | path-type@^2.0.0: 2333 | version "2.0.0" 2334 | resolved "https://registry.yarnpkg.com/path-type/-/path-type-2.0.0.tgz#f012ccb8415b7096fc2daa1054c3d72389594c73" 2335 | dependencies: 2336 | pify "^2.0.0" 2337 | 2338 | pbkdf2@^3.0.3: 2339 | version "3.0.14" 2340 | resolved "https://registry.yarnpkg.com/pbkdf2/-/pbkdf2-3.0.14.tgz#a35e13c64799b06ce15320f459c230e68e73bade" 2341 | dependencies: 2342 | create-hash "^1.1.2" 2343 | create-hmac "^1.1.4" 2344 | ripemd160 "^2.0.1" 2345 | safe-buffer "^5.0.1" 2346 | sha.js "^2.4.8" 2347 | 2348 | performance-now@^0.2.0: 2349 | version "0.2.0" 2350 | resolved "https://registry.yarnpkg.com/performance-now/-/performance-now-0.2.0.tgz#33ef30c5c77d4ea21c5a53869d91b56d8f2555e5" 2351 | 2352 | pify@^2.0.0: 2353 | version "2.3.0" 2354 | resolved "https://registry.yarnpkg.com/pify/-/pify-2.3.0.tgz#ed141a6ac043a849ea588498e7dca8b15330e90c" 2355 | 2356 | pify@^3.0.0: 2357 | version "3.0.0" 2358 | resolved "https://registry.yarnpkg.com/pify/-/pify-3.0.0.tgz#e5a4acd2c101fdf3d9a4d07f0dbc4db49dd28176" 2359 | 2360 | preserve@^0.2.0: 2361 | version "0.2.0" 2362 | resolved "https://registry.yarnpkg.com/preserve/-/preserve-0.2.0.tgz#815ed1f6ebc65926f865b310c0713bcb3315ce4b" 2363 | 2364 | prettier@^1.10.2: 2365 | version "1.10.2" 2366 | resolved "https://registry.yarnpkg.com/prettier/-/prettier-1.10.2.tgz#1af8356d1842276a99a5b5529c82dd9e9ad3cc93" 2367 | 2368 | pretty-format@^21.2.1: 2369 | version "21.2.1" 2370 | resolved "https://registry.yarnpkg.com/pretty-format/-/pretty-format-21.2.1.tgz#ae5407f3cf21066cd011aa1ba5fce7b6a2eddb36" 2371 | dependencies: 2372 | ansi-regex "^3.0.0" 2373 | ansi-styles "^3.2.0" 2374 | 2375 | private@^0.1.6, private@^0.1.7: 2376 | version "0.1.8" 2377 | resolved "https://registry.yarnpkg.com/private/-/private-0.1.8.tgz#2381edb3689f7a53d653190060fcf822d2f368ff" 2378 | 2379 | process-nextick-args@~2.0.0: 2380 | version "2.0.0" 2381 | resolved "https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-2.0.0.tgz#a37d732f4271b4ab1ad070d35508e8290788ffaa" 2382 | 2383 | process@^0.11.10: 2384 | version "0.11.10" 2385 | resolved "https://registry.yarnpkg.com/process/-/process-0.11.10.tgz#7332300e840161bda3e69a1d1d91a7d4bc16f182" 2386 | 2387 | prr@~1.0.1: 2388 | version "1.0.1" 2389 | resolved "https://registry.yarnpkg.com/prr/-/prr-1.0.1.tgz#d3fc114ba06995a45ec6893f484ceb1d78f5f476" 2390 | 2391 | pseudomap@^1.0.2: 2392 | version "1.0.2" 2393 | resolved "https://registry.yarnpkg.com/pseudomap/-/pseudomap-1.0.2.tgz#f052a28da70e618917ef0a8ac34c1ae5a68286b3" 2394 | 2395 | public-encrypt@^4.0.0: 2396 | version "4.0.0" 2397 | resolved "https://registry.yarnpkg.com/public-encrypt/-/public-encrypt-4.0.0.tgz#39f699f3a46560dd5ebacbca693caf7c65c18cc6" 2398 | dependencies: 2399 | bn.js "^4.1.0" 2400 | browserify-rsa "^4.0.0" 2401 | create-hash "^1.1.0" 2402 | parse-asn1 "^5.0.0" 2403 | randombytes "^2.0.1" 2404 | 2405 | punycode@1.3.2: 2406 | version "1.3.2" 2407 | resolved "https://registry.yarnpkg.com/punycode/-/punycode-1.3.2.tgz#9653a036fb7c1ee42342f2325cceefea3926c48d" 2408 | 2409 | punycode@^1.2.4, punycode@^1.4.1: 2410 | version "1.4.1" 2411 | resolved "https://registry.yarnpkg.com/punycode/-/punycode-1.4.1.tgz#c0d5a63b2718800ad8e1eb0fa5269c84dd41845e" 2412 | 2413 | qs@~6.4.0: 2414 | version "6.4.0" 2415 | resolved "https://registry.yarnpkg.com/qs/-/qs-6.4.0.tgz#13e26d28ad6b0ffaa91312cd3bf708ed351e7233" 2416 | 2417 | querystring-es3@^0.2.0: 2418 | version "0.2.1" 2419 | resolved "https://registry.yarnpkg.com/querystring-es3/-/querystring-es3-0.2.1.tgz#9ec61f79049875707d69414596fd907a4d711e73" 2420 | 2421 | querystring@0.2.0: 2422 | version "0.2.0" 2423 | resolved "https://registry.yarnpkg.com/querystring/-/querystring-0.2.0.tgz#b209849203bb25df820da756e747005878521620" 2424 | 2425 | randomatic@^1.1.3: 2426 | version "1.1.7" 2427 | resolved "https://registry.yarnpkg.com/randomatic/-/randomatic-1.1.7.tgz#c7abe9cc8b87c0baa876b19fde83fd464797e38c" 2428 | dependencies: 2429 | is-number "^3.0.0" 2430 | kind-of "^4.0.0" 2431 | 2432 | randombytes@^2.0.0, randombytes@^2.0.1, randombytes@^2.0.5: 2433 | version "2.0.6" 2434 | resolved "https://registry.yarnpkg.com/randombytes/-/randombytes-2.0.6.tgz#d302c522948588848a8d300c932b44c24231da80" 2435 | dependencies: 2436 | safe-buffer "^5.1.0" 2437 | 2438 | randomfill@^1.0.3: 2439 | version "1.0.3" 2440 | resolved "https://registry.yarnpkg.com/randomfill/-/randomfill-1.0.3.tgz#b96b7df587f01dd91726c418f30553b1418e3d62" 2441 | dependencies: 2442 | randombytes "^2.0.5" 2443 | safe-buffer "^5.1.0" 2444 | 2445 | rc@^1.1.7: 2446 | version "1.2.5" 2447 | resolved "https://registry.yarnpkg.com/rc/-/rc-1.2.5.tgz#275cd687f6e3b36cc756baa26dfee80a790301fd" 2448 | dependencies: 2449 | deep-extend "~0.4.0" 2450 | ini "~1.3.0" 2451 | minimist "^1.2.0" 2452 | strip-json-comments "~2.0.1" 2453 | 2454 | read-pkg-up@^2.0.0: 2455 | version "2.0.0" 2456 | resolved "https://registry.yarnpkg.com/read-pkg-up/-/read-pkg-up-2.0.0.tgz#6b72a8048984e0c41e79510fd5e9fa99b3b549be" 2457 | dependencies: 2458 | find-up "^2.0.0" 2459 | read-pkg "^2.0.0" 2460 | 2461 | read-pkg@^2.0.0: 2462 | version "2.0.0" 2463 | resolved "https://registry.yarnpkg.com/read-pkg/-/read-pkg-2.0.0.tgz#8ef1c0623c6a6db0dc6713c4bfac46332b2368f8" 2464 | dependencies: 2465 | load-json-file "^2.0.0" 2466 | normalize-package-data "^2.3.2" 2467 | path-type "^2.0.0" 2468 | 2469 | readable-stream@^2.0.1, readable-stream@^2.0.2, readable-stream@^2.0.6, readable-stream@^2.1.4, readable-stream@^2.3.3: 2470 | version "2.3.4" 2471 | resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.3.4.tgz#c946c3f47fa7d8eabc0b6150f4a12f69a4574071" 2472 | dependencies: 2473 | core-util-is "~1.0.0" 2474 | inherits "~2.0.3" 2475 | isarray "~1.0.0" 2476 | process-nextick-args "~2.0.0" 2477 | safe-buffer "~5.1.1" 2478 | string_decoder "~1.0.3" 2479 | util-deprecate "~1.0.1" 2480 | 2481 | readdirp@^2.0.0: 2482 | version "2.1.0" 2483 | resolved "https://registry.yarnpkg.com/readdirp/-/readdirp-2.1.0.tgz#4ed0ad060df3073300c48440373f72d1cc642d78" 2484 | dependencies: 2485 | graceful-fs "^4.1.2" 2486 | minimatch "^3.0.2" 2487 | readable-stream "^2.0.2" 2488 | set-immediate-shim "^1.0.1" 2489 | 2490 | regenerate@^1.2.1: 2491 | version "1.3.3" 2492 | resolved "https://registry.yarnpkg.com/regenerate/-/regenerate-1.3.3.tgz#0c336d3980553d755c39b586ae3b20aa49c82b7f" 2493 | 2494 | regenerator-runtime@^0.10.5: 2495 | version "0.10.5" 2496 | resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.10.5.tgz#336c3efc1220adcedda2c9fab67b5a7955a33658" 2497 | 2498 | regenerator-runtime@^0.11.0, regenerator-runtime@^0.11.1: 2499 | version "0.11.1" 2500 | resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.11.1.tgz#be05ad7f9bf7d22e056f9726cee5017fbf19e2e9" 2501 | 2502 | regenerator-transform@^0.10.0: 2503 | version "0.10.1" 2504 | resolved "https://registry.yarnpkg.com/regenerator-transform/-/regenerator-transform-0.10.1.tgz#1e4996837231da8b7f3cf4114d71b5691a0680dd" 2505 | dependencies: 2506 | babel-runtime "^6.18.0" 2507 | babel-types "^6.19.0" 2508 | private "^0.1.6" 2509 | 2510 | regex-cache@^0.4.2: 2511 | version "0.4.4" 2512 | resolved "https://registry.yarnpkg.com/regex-cache/-/regex-cache-0.4.4.tgz#75bdc58a2a1496cec48a12835bc54c8d562336dd" 2513 | dependencies: 2514 | is-equal-shallow "^0.1.3" 2515 | 2516 | regexpu-core@^2.0.0: 2517 | version "2.0.0" 2518 | resolved "https://registry.yarnpkg.com/regexpu-core/-/regexpu-core-2.0.0.tgz#49d038837b8dcf8bfa5b9a42139938e6ea2ae240" 2519 | dependencies: 2520 | regenerate "^1.2.1" 2521 | regjsgen "^0.2.0" 2522 | regjsparser "^0.1.4" 2523 | 2524 | regjsgen@^0.2.0: 2525 | version "0.2.0" 2526 | resolved "https://registry.yarnpkg.com/regjsgen/-/regjsgen-0.2.0.tgz#6c016adeac554f75823fe37ac05b92d5a4edb1f7" 2527 | 2528 | regjsparser@^0.1.4: 2529 | version "0.1.5" 2530 | resolved "https://registry.yarnpkg.com/regjsparser/-/regjsparser-0.1.5.tgz#7ee8f84dc6fa792d3fd0ae228d24bd949ead205c" 2531 | dependencies: 2532 | jsesc "~0.5.0" 2533 | 2534 | remove-trailing-separator@^1.0.1: 2535 | version "1.1.0" 2536 | resolved "https://registry.yarnpkg.com/remove-trailing-separator/-/remove-trailing-separator-1.1.0.tgz#c24bce2a283adad5bc3f58e0d48249b92379d8ef" 2537 | 2538 | repeat-element@^1.1.2: 2539 | version "1.1.2" 2540 | resolved "https://registry.yarnpkg.com/repeat-element/-/repeat-element-1.1.2.tgz#ef089a178d1483baae4d93eb98b4f9e4e11d990a" 2541 | 2542 | repeat-string@^1.5.2: 2543 | version "1.6.1" 2544 | resolved "https://registry.yarnpkg.com/repeat-string/-/repeat-string-1.6.1.tgz#8dcae470e1c88abc2d600fff4a776286da75e637" 2545 | 2546 | repeating@^2.0.0: 2547 | version "2.0.1" 2548 | resolved "https://registry.yarnpkg.com/repeating/-/repeating-2.0.1.tgz#5214c53a926d3552707527fbab415dbc08d06dda" 2549 | dependencies: 2550 | is-finite "^1.0.0" 2551 | 2552 | request@2.81.0: 2553 | version "2.81.0" 2554 | resolved "https://registry.yarnpkg.com/request/-/request-2.81.0.tgz#c6928946a0e06c5f8d6f8a9333469ffda46298a0" 2555 | dependencies: 2556 | aws-sign2 "~0.6.0" 2557 | aws4 "^1.2.1" 2558 | caseless "~0.12.0" 2559 | combined-stream "~1.0.5" 2560 | extend "~3.0.0" 2561 | forever-agent "~0.6.1" 2562 | form-data "~2.1.1" 2563 | har-validator "~4.2.1" 2564 | hawk "~3.1.3" 2565 | http-signature "~1.1.0" 2566 | is-typedarray "~1.0.0" 2567 | isstream "~0.1.2" 2568 | json-stringify-safe "~5.0.1" 2569 | mime-types "~2.1.7" 2570 | oauth-sign "~0.8.1" 2571 | performance-now "^0.2.0" 2572 | qs "~6.4.0" 2573 | safe-buffer "^5.0.1" 2574 | stringstream "~0.0.4" 2575 | tough-cookie "~2.3.0" 2576 | tunnel-agent "^0.6.0" 2577 | uuid "^3.0.0" 2578 | 2579 | require-directory@^2.1.1: 2580 | version "2.1.1" 2581 | resolved "https://registry.yarnpkg.com/require-directory/-/require-directory-2.1.1.tgz#8c64ad5fd30dab1c976e2344ffe7f792a6a6df42" 2582 | 2583 | require-from-string@^2.0.1: 2584 | version "2.0.1" 2585 | resolved "https://registry.yarnpkg.com/require-from-string/-/require-from-string-2.0.1.tgz#c545233e9d7da6616e9d59adfb39fc9f588676ff" 2586 | 2587 | require-main-filename@^1.0.1: 2588 | version "1.0.1" 2589 | resolved "https://registry.yarnpkg.com/require-main-filename/-/require-main-filename-1.0.1.tgz#97f717b69d48784f5f526a6c5aa8ffdda055a4d1" 2590 | 2591 | restore-cursor@^1.0.1: 2592 | version "1.0.1" 2593 | resolved "https://registry.yarnpkg.com/restore-cursor/-/restore-cursor-1.0.1.tgz#34661f46886327fed2991479152252df92daa541" 2594 | dependencies: 2595 | exit-hook "^1.0.0" 2596 | onetime "^1.0.0" 2597 | 2598 | right-align@^0.1.1: 2599 | version "0.1.3" 2600 | resolved "https://registry.yarnpkg.com/right-align/-/right-align-0.1.3.tgz#61339b722fe6a3515689210d24e14c96148613ef" 2601 | dependencies: 2602 | align-text "^0.1.1" 2603 | 2604 | rimraf@2, rimraf@^2.5.1, rimraf@^2.6.1: 2605 | version "2.6.2" 2606 | resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.6.2.tgz#2ed8150d24a16ea8651e6d6ef0f47c4158ce7a36" 2607 | dependencies: 2608 | glob "^7.0.5" 2609 | 2610 | ripemd160@^2.0.0, ripemd160@^2.0.1: 2611 | version "2.0.1" 2612 | resolved "https://registry.yarnpkg.com/ripemd160/-/ripemd160-2.0.1.tgz#0f4584295c53a3628af7e6d79aca21ce57d1c6e7" 2613 | dependencies: 2614 | hash-base "^2.0.0" 2615 | inherits "^2.0.1" 2616 | 2617 | rxjs@^5.4.2: 2618 | version "5.5.6" 2619 | resolved "https://registry.yarnpkg.com/rxjs/-/rxjs-5.5.6.tgz#e31fb96d6fd2ff1fd84bcea8ae9c02d007179c02" 2620 | dependencies: 2621 | symbol-observable "1.0.1" 2622 | 2623 | safe-buffer@^5.0.1, safe-buffer@^5.1.0, safe-buffer@^5.1.1, safe-buffer@~5.1.0, safe-buffer@~5.1.1: 2624 | version "5.1.1" 2625 | resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.1.1.tgz#893312af69b2123def71f57889001671eeb2c853" 2626 | 2627 | "semver@2 || 3 || 4 || 5", semver@^5.3.0: 2628 | version "5.5.0" 2629 | resolved "https://registry.yarnpkg.com/semver/-/semver-5.5.0.tgz#dc4bbc7a6ca9d916dee5d43516f0092b58f7b8ab" 2630 | 2631 | set-blocking@^2.0.0, set-blocking@~2.0.0: 2632 | version "2.0.0" 2633 | resolved "https://registry.yarnpkg.com/set-blocking/-/set-blocking-2.0.0.tgz#045f9782d011ae9a6803ddd382b24392b3d890f7" 2634 | 2635 | set-immediate-shim@^1.0.1: 2636 | version "1.0.1" 2637 | resolved "https://registry.yarnpkg.com/set-immediate-shim/-/set-immediate-shim-1.0.1.tgz#4b2b1b27eb808a9f8dcc481a58e5e56f599f3f61" 2638 | 2639 | setimmediate@^1.0.4: 2640 | version "1.0.5" 2641 | resolved "https://registry.yarnpkg.com/setimmediate/-/setimmediate-1.0.5.tgz#290cbb232e306942d7d7ea9b83732ab7856f8285" 2642 | 2643 | sha.js@^2.4.0, sha.js@^2.4.8: 2644 | version "2.4.10" 2645 | resolved "https://registry.yarnpkg.com/sha.js/-/sha.js-2.4.10.tgz#b1fde5cd7d11a5626638a07c604ab909cfa31f9b" 2646 | dependencies: 2647 | inherits "^2.0.1" 2648 | safe-buffer "^5.0.1" 2649 | 2650 | shebang-command@^1.2.0: 2651 | version "1.2.0" 2652 | resolved "https://registry.yarnpkg.com/shebang-command/-/shebang-command-1.2.0.tgz#44aac65b695b03398968c39f363fee5deafdf1ea" 2653 | dependencies: 2654 | shebang-regex "^1.0.0" 2655 | 2656 | shebang-regex@^1.0.0: 2657 | version "1.0.0" 2658 | resolved "https://registry.yarnpkg.com/shebang-regex/-/shebang-regex-1.0.0.tgz#da42f49740c0b42db2ca9728571cb190c98efea3" 2659 | 2660 | signal-exit@^3.0.0: 2661 | version "3.0.2" 2662 | resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.2.tgz#b5fdc08f1287ea1178628e415e25132b73646c6d" 2663 | 2664 | slash@^1.0.0: 2665 | version "1.0.0" 2666 | resolved "https://registry.yarnpkg.com/slash/-/slash-1.0.0.tgz#c41f2f6c39fc16d1cd17ad4b5d896114ae470d55" 2667 | 2668 | slice-ansi@0.0.4: 2669 | version "0.0.4" 2670 | resolved "https://registry.yarnpkg.com/slice-ansi/-/slice-ansi-0.0.4.tgz#edbf8903f66f7ce2f8eafd6ceed65e264c831b35" 2671 | 2672 | sntp@1.x.x: 2673 | version "1.0.9" 2674 | resolved "https://registry.yarnpkg.com/sntp/-/sntp-1.0.9.tgz#6541184cc90aeea6c6e7b35e2659082443c66198" 2675 | dependencies: 2676 | hoek "2.x.x" 2677 | 2678 | source-list-map@^2.0.0: 2679 | version "2.0.0" 2680 | resolved "https://registry.yarnpkg.com/source-list-map/-/source-list-map-2.0.0.tgz#aaa47403f7b245a92fbc97ea08f250d6087ed085" 2681 | 2682 | source-map-support@^0.4.15: 2683 | version "0.4.18" 2684 | resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.4.18.tgz#0286a6de8be42641338594e97ccea75f0a2c585f" 2685 | dependencies: 2686 | source-map "^0.5.6" 2687 | 2688 | source-map@^0.5.3, source-map@^0.5.6, source-map@^0.5.7, source-map@~0.5.1: 2689 | version "0.5.7" 2690 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.5.7.tgz#8a039d2d1021d22d1ea14c80d8ea468ba2ef3fcc" 2691 | 2692 | source-map@~0.6.1: 2693 | version "0.6.1" 2694 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.6.1.tgz#74722af32e9614e9c287a8d0bbde48b5e2f1a263" 2695 | 2696 | spdx-correct@~1.0.0: 2697 | version "1.0.2" 2698 | resolved "https://registry.yarnpkg.com/spdx-correct/-/spdx-correct-1.0.2.tgz#4b3073d933ff51f3912f03ac5519498a4150db40" 2699 | dependencies: 2700 | spdx-license-ids "^1.0.2" 2701 | 2702 | spdx-expression-parse@~1.0.0: 2703 | version "1.0.4" 2704 | resolved "https://registry.yarnpkg.com/spdx-expression-parse/-/spdx-expression-parse-1.0.4.tgz#9bdf2f20e1f40ed447fbe273266191fced51626c" 2705 | 2706 | spdx-license-ids@^1.0.2: 2707 | version "1.2.2" 2708 | resolved "https://registry.yarnpkg.com/spdx-license-ids/-/spdx-license-ids-1.2.2.tgz#c9df7a3424594ade6bd11900d596696dc06bac57" 2709 | 2710 | sprintf-js@~1.0.2: 2711 | version "1.0.3" 2712 | resolved "https://registry.yarnpkg.com/sprintf-js/-/sprintf-js-1.0.3.tgz#04e6926f662895354f3dd015203633b857297e2c" 2713 | 2714 | sshpk@^1.7.0: 2715 | version "1.13.1" 2716 | resolved "https://registry.yarnpkg.com/sshpk/-/sshpk-1.13.1.tgz#512df6da6287144316dc4c18fe1cf1d940739be3" 2717 | dependencies: 2718 | asn1 "~0.2.3" 2719 | assert-plus "^1.0.0" 2720 | dashdash "^1.12.0" 2721 | getpass "^0.1.1" 2722 | optionalDependencies: 2723 | bcrypt-pbkdf "^1.0.0" 2724 | ecc-jsbn "~0.1.1" 2725 | jsbn "~0.1.0" 2726 | tweetnacl "~0.14.0" 2727 | 2728 | staged-git-files@0.0.4: 2729 | version "0.0.4" 2730 | resolved "https://registry.yarnpkg.com/staged-git-files/-/staged-git-files-0.0.4.tgz#d797e1b551ca7a639dec0237dc6eb4bb9be17d35" 2731 | 2732 | stream-browserify@^2.0.1: 2733 | version "2.0.1" 2734 | resolved "https://registry.yarnpkg.com/stream-browserify/-/stream-browserify-2.0.1.tgz#66266ee5f9bdb9940a4e4514cafb43bb71e5c9db" 2735 | dependencies: 2736 | inherits "~2.0.1" 2737 | readable-stream "^2.0.2" 2738 | 2739 | stream-http@^2.7.2: 2740 | version "2.8.0" 2741 | resolved "https://registry.yarnpkg.com/stream-http/-/stream-http-2.8.0.tgz#fd86546dac9b1c91aff8fc5d287b98fafb41bc10" 2742 | dependencies: 2743 | builtin-status-codes "^3.0.0" 2744 | inherits "^2.0.1" 2745 | readable-stream "^2.3.3" 2746 | to-arraybuffer "^1.0.0" 2747 | xtend "^4.0.0" 2748 | 2749 | stream-to-observable@^0.2.0: 2750 | version "0.2.0" 2751 | resolved "https://registry.yarnpkg.com/stream-to-observable/-/stream-to-observable-0.2.0.tgz#59d6ea393d87c2c0ddac10aa0d561bc6ba6f0e10" 2752 | dependencies: 2753 | any-observable "^0.2.0" 2754 | 2755 | string-width@^1.0.1, string-width@^1.0.2: 2756 | version "1.0.2" 2757 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-1.0.2.tgz#118bdf5b8cdc51a2a7e70d211e07e2b0b9b107d3" 2758 | dependencies: 2759 | code-point-at "^1.0.0" 2760 | is-fullwidth-code-point "^1.0.0" 2761 | strip-ansi "^3.0.0" 2762 | 2763 | string-width@^2.0.0: 2764 | version "2.1.1" 2765 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-2.1.1.tgz#ab93f27a8dc13d28cac815c462143a6d9012ae9e" 2766 | dependencies: 2767 | is-fullwidth-code-point "^2.0.0" 2768 | strip-ansi "^4.0.0" 2769 | 2770 | string_decoder@^1.0.0, string_decoder@~1.0.3: 2771 | version "1.0.3" 2772 | resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.0.3.tgz#0fc67d7c141825de94282dd536bec6b9bce860ab" 2773 | dependencies: 2774 | safe-buffer "~5.1.0" 2775 | 2776 | stringify-object@^3.2.0: 2777 | version "3.2.2" 2778 | resolved "https://registry.yarnpkg.com/stringify-object/-/stringify-object-3.2.2.tgz#9853052e5a88fb605a44cd27445aa257ad7ffbcd" 2779 | dependencies: 2780 | get-own-enumerable-property-symbols "^2.0.1" 2781 | is-obj "^1.0.1" 2782 | is-regexp "^1.0.0" 2783 | 2784 | stringstream@~0.0.4: 2785 | version "0.0.5" 2786 | resolved "https://registry.yarnpkg.com/stringstream/-/stringstream-0.0.5.tgz#4e484cd4de5a0bbbee18e46307710a8a81621878" 2787 | 2788 | strip-ansi@^3.0.0, strip-ansi@^3.0.1: 2789 | version "3.0.1" 2790 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-3.0.1.tgz#6a385fb8853d952d5ff05d0e8aaf94278dc63dcf" 2791 | dependencies: 2792 | ansi-regex "^2.0.0" 2793 | 2794 | strip-ansi@^4.0.0: 2795 | version "4.0.0" 2796 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-4.0.0.tgz#a8479022eb1ac368a871389b635262c505ee368f" 2797 | dependencies: 2798 | ansi-regex "^3.0.0" 2799 | 2800 | strip-bom@^3.0.0: 2801 | version "3.0.0" 2802 | resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-3.0.0.tgz#2334c18e9c759f7bdd56fdef7e9ae3d588e68ed3" 2803 | 2804 | strip-eof@^1.0.0: 2805 | version "1.0.0" 2806 | resolved "https://registry.yarnpkg.com/strip-eof/-/strip-eof-1.0.0.tgz#bb43ff5598a6eb05d89b59fcd129c983313606bf" 2807 | 2808 | strip-json-comments@~2.0.1: 2809 | version "2.0.1" 2810 | resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-2.0.1.tgz#3c531942e908c2697c0ec344858c286c7ca0a60a" 2811 | 2812 | supports-color@^2.0.0: 2813 | version "2.0.0" 2814 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-2.0.0.tgz#535d045ce6b6363fa40117084629995e9df324c7" 2815 | 2816 | supports-color@^4.2.1: 2817 | version "4.5.0" 2818 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-4.5.0.tgz#be7a0de484dec5c5cddf8b3d59125044912f635b" 2819 | dependencies: 2820 | has-flag "^2.0.0" 2821 | 2822 | supports-color@^5.2.0: 2823 | version "5.2.0" 2824 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-5.2.0.tgz#b0d5333b1184dd3666cbe5aa0b45c5ac7ac17a4a" 2825 | dependencies: 2826 | has-flag "^3.0.0" 2827 | 2828 | symbol-observable@1.0.1: 2829 | version "1.0.1" 2830 | resolved "https://registry.yarnpkg.com/symbol-observable/-/symbol-observable-1.0.1.tgz#8340fc4702c3122df5d22288f88283f513d3fdd4" 2831 | 2832 | symbol-observable@^0.2.2: 2833 | version "0.2.4" 2834 | resolved "https://registry.yarnpkg.com/symbol-observable/-/symbol-observable-0.2.4.tgz#95a83db26186d6af7e7a18dbd9760a2f86d08f40" 2835 | 2836 | tapable@^0.2.7: 2837 | version "0.2.8" 2838 | resolved "https://registry.yarnpkg.com/tapable/-/tapable-0.2.8.tgz#99372a5c999bf2df160afc0d74bed4f47948cd22" 2839 | 2840 | tar-pack@^3.4.0: 2841 | version "3.4.1" 2842 | resolved "https://registry.yarnpkg.com/tar-pack/-/tar-pack-3.4.1.tgz#e1dbc03a9b9d3ba07e896ad027317eb679a10a1f" 2843 | dependencies: 2844 | debug "^2.2.0" 2845 | fstream "^1.0.10" 2846 | fstream-ignore "^1.0.5" 2847 | once "^1.3.3" 2848 | readable-stream "^2.1.4" 2849 | rimraf "^2.5.1" 2850 | tar "^2.2.1" 2851 | uid-number "^0.0.6" 2852 | 2853 | tar@^2.2.1: 2854 | version "2.2.1" 2855 | resolved "https://registry.yarnpkg.com/tar/-/tar-2.2.1.tgz#8e4d2a256c0e2185c6b18ad694aec968b83cb1d1" 2856 | dependencies: 2857 | block-stream "*" 2858 | fstream "^1.0.2" 2859 | inherits "2" 2860 | 2861 | timers-browserify@^2.0.4: 2862 | version "2.0.6" 2863 | resolved "https://registry.yarnpkg.com/timers-browserify/-/timers-browserify-2.0.6.tgz#241e76927d9ca05f4d959819022f5b3664b64bae" 2864 | dependencies: 2865 | setimmediate "^1.0.4" 2866 | 2867 | to-arraybuffer@^1.0.0: 2868 | version "1.0.1" 2869 | resolved "https://registry.yarnpkg.com/to-arraybuffer/-/to-arraybuffer-1.0.1.tgz#7d229b1fcc637e466ca081180836a7aabff83f43" 2870 | 2871 | to-fast-properties@^1.0.3: 2872 | version "1.0.3" 2873 | resolved "https://registry.yarnpkg.com/to-fast-properties/-/to-fast-properties-1.0.3.tgz#b83571fa4d8c25b82e231b06e3a3055de4ca1a47" 2874 | 2875 | tough-cookie@~2.3.0: 2876 | version "2.3.3" 2877 | resolved "https://registry.yarnpkg.com/tough-cookie/-/tough-cookie-2.3.3.tgz#0b618a5565b6dea90bf3425d04d55edc475a7561" 2878 | dependencies: 2879 | punycode "^1.4.1" 2880 | 2881 | trim-right@^1.0.1: 2882 | version "1.0.1" 2883 | resolved "https://registry.yarnpkg.com/trim-right/-/trim-right-1.0.1.tgz#cb2e1203067e0c8de1f614094b9fe45704ea6003" 2884 | 2885 | tty-browserify@0.0.0: 2886 | version "0.0.0" 2887 | resolved "https://registry.yarnpkg.com/tty-browserify/-/tty-browserify-0.0.0.tgz#a157ba402da24e9bf957f9aa69d524eed42901a6" 2888 | 2889 | tunnel-agent@^0.6.0: 2890 | version "0.6.0" 2891 | resolved "https://registry.yarnpkg.com/tunnel-agent/-/tunnel-agent-0.6.0.tgz#27a5dea06b36b04a0a9966774b290868f0fc40fd" 2892 | dependencies: 2893 | safe-buffer "^5.0.1" 2894 | 2895 | tweetnacl@^0.14.3, tweetnacl@~0.14.0: 2896 | version "0.14.5" 2897 | resolved "https://registry.yarnpkg.com/tweetnacl/-/tweetnacl-0.14.5.tgz#5ae68177f192d4456269d108afa93ff8743f4f64" 2898 | 2899 | uglify-js@^2.8.29: 2900 | version "2.8.29" 2901 | resolved "https://registry.yarnpkg.com/uglify-js/-/uglify-js-2.8.29.tgz#29c5733148057bb4e1f75df35b7a9cb72e6a59dd" 2902 | dependencies: 2903 | source-map "~0.5.1" 2904 | yargs "~3.10.0" 2905 | optionalDependencies: 2906 | uglify-to-browserify "~1.0.0" 2907 | 2908 | uglify-to-browserify@~1.0.0: 2909 | version "1.0.2" 2910 | resolved "https://registry.yarnpkg.com/uglify-to-browserify/-/uglify-to-browserify-1.0.2.tgz#6e0924d6bda6b5afe349e39a6d632850a0f882b7" 2911 | 2912 | uglifyjs-webpack-plugin@^0.4.6: 2913 | version "0.4.6" 2914 | resolved "https://registry.yarnpkg.com/uglifyjs-webpack-plugin/-/uglifyjs-webpack-plugin-0.4.6.tgz#b951f4abb6bd617e66f63eb891498e391763e309" 2915 | dependencies: 2916 | source-map "^0.5.6" 2917 | uglify-js "^2.8.29" 2918 | webpack-sources "^1.0.1" 2919 | 2920 | uid-number@^0.0.6: 2921 | version "0.0.6" 2922 | resolved "https://registry.yarnpkg.com/uid-number/-/uid-number-0.0.6.tgz#0ea10e8035e8eb5b8e4449f06da1c730663baa81" 2923 | 2924 | url@^0.11.0: 2925 | version "0.11.0" 2926 | resolved "https://registry.yarnpkg.com/url/-/url-0.11.0.tgz#3838e97cfc60521eb73c525a8e55bfdd9e2e28f1" 2927 | dependencies: 2928 | punycode "1.3.2" 2929 | querystring "0.2.0" 2930 | 2931 | user-home@^1.1.1: 2932 | version "1.1.1" 2933 | resolved "https://registry.yarnpkg.com/user-home/-/user-home-1.1.1.tgz#2b5be23a32b63a7c9deb8d0f28d485724a3df190" 2934 | 2935 | util-deprecate@~1.0.1: 2936 | version "1.0.2" 2937 | resolved "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf" 2938 | 2939 | util@0.10.3, util@^0.10.3: 2940 | version "0.10.3" 2941 | resolved "https://registry.yarnpkg.com/util/-/util-0.10.3.tgz#7afb1afe50805246489e3db7fe0ed379336ac0f9" 2942 | dependencies: 2943 | inherits "2.0.1" 2944 | 2945 | uuid@^3.0.0: 2946 | version "3.2.1" 2947 | resolved "https://registry.yarnpkg.com/uuid/-/uuid-3.2.1.tgz#12c528bb9d58d0b9265d9a2f6f0fe8be17ff1f14" 2948 | 2949 | v8flags@^2.1.1: 2950 | version "2.1.1" 2951 | resolved "https://registry.yarnpkg.com/v8flags/-/v8flags-2.1.1.tgz#aab1a1fa30d45f88dd321148875ac02c0b55e5b4" 2952 | dependencies: 2953 | user-home "^1.1.1" 2954 | 2955 | validate-npm-package-license@^3.0.1: 2956 | version "3.0.1" 2957 | resolved "https://registry.yarnpkg.com/validate-npm-package-license/-/validate-npm-package-license-3.0.1.tgz#2804babe712ad3379459acfbe24746ab2c303fbc" 2958 | dependencies: 2959 | spdx-correct "~1.0.0" 2960 | spdx-expression-parse "~1.0.0" 2961 | 2962 | verror@1.10.0: 2963 | version "1.10.0" 2964 | resolved "https://registry.yarnpkg.com/verror/-/verror-1.10.0.tgz#3a105ca17053af55d6e270c1f8288682e18da400" 2965 | dependencies: 2966 | assert-plus "^1.0.0" 2967 | core-util-is "1.0.2" 2968 | extsprintf "^1.2.0" 2969 | 2970 | vm-browserify@0.0.4: 2971 | version "0.0.4" 2972 | resolved "https://registry.yarnpkg.com/vm-browserify/-/vm-browserify-0.0.4.tgz#5d7ea45bbef9e4a6ff65f95438e0a87c357d5a73" 2973 | dependencies: 2974 | indexof "0.0.1" 2975 | 2976 | watchpack@^1.4.0: 2977 | version "1.4.0" 2978 | resolved "https://registry.yarnpkg.com/watchpack/-/watchpack-1.4.0.tgz#4a1472bcbb952bd0a9bb4036801f954dfb39faac" 2979 | dependencies: 2980 | async "^2.1.2" 2981 | chokidar "^1.7.0" 2982 | graceful-fs "^4.1.2" 2983 | 2984 | webpack-sources@^1.0.1: 2985 | version "1.1.0" 2986 | resolved "https://registry.yarnpkg.com/webpack-sources/-/webpack-sources-1.1.0.tgz#a101ebae59d6507354d71d8013950a3a8b7a5a54" 2987 | dependencies: 2988 | source-list-map "^2.0.0" 2989 | source-map "~0.6.1" 2990 | 2991 | webpack@^3.11.0: 2992 | version "3.11.0" 2993 | resolved "https://registry.yarnpkg.com/webpack/-/webpack-3.11.0.tgz#77da451b1d7b4b117adaf41a1a93b5742f24d894" 2994 | dependencies: 2995 | acorn "^5.0.0" 2996 | acorn-dynamic-import "^2.0.0" 2997 | ajv "^6.1.0" 2998 | ajv-keywords "^3.1.0" 2999 | async "^2.1.2" 3000 | enhanced-resolve "^3.4.0" 3001 | escope "^3.6.0" 3002 | interpret "^1.0.0" 3003 | json-loader "^0.5.4" 3004 | json5 "^0.5.1" 3005 | loader-runner "^2.3.0" 3006 | loader-utils "^1.1.0" 3007 | memory-fs "~0.4.1" 3008 | mkdirp "~0.5.0" 3009 | node-libs-browser "^2.0.0" 3010 | source-map "^0.5.3" 3011 | supports-color "^4.2.1" 3012 | tapable "^0.2.7" 3013 | uglifyjs-webpack-plugin "^0.4.6" 3014 | watchpack "^1.4.0" 3015 | webpack-sources "^1.0.1" 3016 | yargs "^8.0.2" 3017 | 3018 | which-module@^2.0.0: 3019 | version "2.0.0" 3020 | resolved "https://registry.yarnpkg.com/which-module/-/which-module-2.0.0.tgz#d9ef07dce77b9902b8a3a8fa4b31c3e3f7e6e87a" 3021 | 3022 | which@^1.2.10, which@^1.2.9: 3023 | version "1.3.0" 3024 | resolved "https://registry.yarnpkg.com/which/-/which-1.3.0.tgz#ff04bdfc010ee547d780bec38e1ac1c2777d253a" 3025 | dependencies: 3026 | isexe "^2.0.0" 3027 | 3028 | wide-align@^1.1.0: 3029 | version "1.1.2" 3030 | resolved "https://registry.yarnpkg.com/wide-align/-/wide-align-1.1.2.tgz#571e0f1b0604636ebc0dfc21b0339bbe31341710" 3031 | dependencies: 3032 | string-width "^1.0.2" 3033 | 3034 | window-size@0.1.0: 3035 | version "0.1.0" 3036 | resolved "https://registry.yarnpkg.com/window-size/-/window-size-0.1.0.tgz#5438cd2ea93b202efa3a19fe8887aee7c94f9c9d" 3037 | 3038 | wordwrap@0.0.2: 3039 | version "0.0.2" 3040 | resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-0.0.2.tgz#b79669bb42ecb409f83d583cad52ca17eaa1643f" 3041 | 3042 | wrap-ansi@^2.0.0: 3043 | version "2.1.0" 3044 | resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-2.1.0.tgz#d8fc3d284dd05794fe84973caecdd1cf824fdd85" 3045 | dependencies: 3046 | string-width "^1.0.1" 3047 | strip-ansi "^3.0.1" 3048 | 3049 | wrappy@1: 3050 | version "1.0.2" 3051 | resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f" 3052 | 3053 | xtend@^4.0.0: 3054 | version "4.0.1" 3055 | resolved "https://registry.yarnpkg.com/xtend/-/xtend-4.0.1.tgz#a5c6d532be656e23db820efb943a1f04998d63af" 3056 | 3057 | y18n@^3.2.1: 3058 | version "3.2.1" 3059 | resolved "https://registry.yarnpkg.com/y18n/-/y18n-3.2.1.tgz#6d15fba884c08679c0d77e88e7759e811e07fa41" 3060 | 3061 | yallist@^2.1.2: 3062 | version "2.1.2" 3063 | resolved "https://registry.yarnpkg.com/yallist/-/yallist-2.1.2.tgz#1c11f9218f076089a47dd512f93c6699a6a81d52" 3064 | 3065 | yargs-parser@^7.0.0: 3066 | version "7.0.0" 3067 | resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-7.0.0.tgz#8d0ac42f16ea55debd332caf4c4038b3e3f5dfd9" 3068 | dependencies: 3069 | camelcase "^4.1.0" 3070 | 3071 | yargs@^8.0.2: 3072 | version "8.0.2" 3073 | resolved "https://registry.yarnpkg.com/yargs/-/yargs-8.0.2.tgz#6299a9055b1cefc969ff7e79c1d918dceb22c360" 3074 | dependencies: 3075 | camelcase "^4.1.0" 3076 | cliui "^3.2.0" 3077 | decamelize "^1.1.1" 3078 | get-caller-file "^1.0.1" 3079 | os-locale "^2.0.0" 3080 | read-pkg-up "^2.0.0" 3081 | require-directory "^2.1.1" 3082 | require-main-filename "^1.0.1" 3083 | set-blocking "^2.0.0" 3084 | string-width "^2.0.0" 3085 | which-module "^2.0.0" 3086 | y18n "^3.2.1" 3087 | yargs-parser "^7.0.0" 3088 | 3089 | yargs@~3.10.0: 3090 | version "3.10.0" 3091 | resolved "https://registry.yarnpkg.com/yargs/-/yargs-3.10.0.tgz#f7ee7bd857dd7c1d2d38c0e74efbd681d1431fd1" 3092 | dependencies: 3093 | camelcase "^1.0.2" 3094 | cliui "^2.1.0" 3095 | decamelize "^1.0.0" 3096 | window-size "0.1.0" 3097 | --------------------------------------------------------------------------------