├── .arcconfig ├── .arclint ├── .circleci └── config.yml ├── .editorconfig ├── .gitignore ├── .npmignore ├── AUTHORS ├── CHANGELOG.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── devServer.js ├── dist ├── IndefiniteObservable.d.ts ├── IndefiniteObservable.js ├── indefinite-observable.bundle.js ├── index.d.ts ├── index.js ├── types.d.ts ├── types.js ├── wrapWithObserver.d.ts └── wrapWithObserver.js ├── examples ├── as-module │ ├── index.js │ ├── main.js │ └── site │ │ └── index.html └── as-script-tag │ └── index.html ├── package.json ├── rollup.config.js ├── rollupPlugins.js ├── src ├── IndefiniteObservable.ts ├── __tests__ │ └── IndefiniteObservable.test.ts ├── index.ts ├── types.ts └── wrapWithObserver.ts ├── tsconfig.json ├── tsconfig.tests.json ├── tslint.json └── yarn.lock /.arcconfig: -------------------------------------------------------------------------------- 1 | { 2 | "load": [ 3 | "material-arc-tools/third_party/arc-hook-conphig", 4 | "material-arc-tools/third_party/arc-hook-github-issues", 5 | "material-arc-tools/third_party/arc-tslint", 6 | "material-arc-tools/third_party/arc-tsclint", 7 | "material-arc-tools/third_party/arc-proselint" 8 | ], 9 | "arcanist_configuration": "HookConphig", 10 | "phabricator.uri": "http://codereview.cc/", 11 | "arc.land.onto.default": "develop", 12 | "arc.feature.start.default": "origin/develop" 13 | } 14 | -------------------------------------------------------------------------------- /.arclint: -------------------------------------------------------------------------------- 1 | { 2 | "linters": { 3 | "chmod": { 4 | "type": "chmod" 5 | }, 6 | "js-lint": { 7 | "type": "tslint", 8 | "include": "(src/.*\\.(ts)$)", 9 | "tslint.project": "tsconfig.json" 10 | }, 11 | "js-build": { 12 | "type": "tsc", 13 | "include": "(src/.*\\.(ts)$)" 14 | }, 15 | "prose": { 16 | "type": "prose", 17 | "include": "(\\.(md)$)", 18 | "exclude": [ 19 | "(^CHANGELOG.md)" 20 | ], 21 | "severity": { 22 | "consistency.spacing": "disabled", 23 | "typography.symbols.curly_quotes": "disabled", 24 | "typography.symbols.ellipsis": "disabled", 25 | "leonard.exclamation.30ppm": "disabled", 26 | "misc.annotations": "warning" 27 | } 28 | }, 29 | "spelling": { 30 | "type": "spelling", 31 | "include": "(\\.(md)$)" 32 | } 33 | } 34 | } 35 | -------------------------------------------------------------------------------- /.circleci/config.yml: -------------------------------------------------------------------------------- 1 | # This configuration was automatically generated from a CircleCI 1.0 config. 2 | # It should include any build commands you had along with commands that CircleCI 3 | # inferred from your project structure. We strongly recommend you read all the 4 | # comments in this file to understand the structure of CircleCI 2.0, as the idiom 5 | # for configuration has changed substantially in 2.0 to allow arbitrary jobs rather 6 | # than the prescribed lifecycle of 1.0. In general, we recommend using this generated 7 | # configuration as a reference rather than using it in production, though in most 8 | # cases it should duplicate the execution of your original 1.0 config. 9 | version: 2 10 | jobs: 11 | build: 12 | working_directory: ~/material-motion/indefinite-observable-js 13 | parallelism: 1 14 | shell: /bin/bash --login 15 | # CircleCI 2.0 does not support environment variables that refer to each other the same way as 1.0 did. 16 | # If any of these refer to each other, rewrite them so that they don't or see https://circleci.com/docs/2.0/env-vars/#interpolating-environment-variables-to-set-other-environment-variables . 17 | environment: 18 | CIRCLE_ARTIFACTS: /tmp/circleci-artifacts 19 | CIRCLE_TEST_REPORTS: /tmp/circleci-test-results 20 | # In CircleCI 1.0 we used a pre-configured image with a large number of languages and other packages. 21 | # In CircleCI 2.0 you can now specify your own image, or use one of our pre-configured images. 22 | # The following configuration line tells CircleCI to use the specified docker image as the runtime environment for you job. 23 | # We have selected a pre-built image that mirrors the build environment we use on 24 | # the 1.0 platform, but we recommend you choose an image more tailored to the needs 25 | # of each job. For more information on choosing an image (or alternatively using a 26 | # VM instead of a container) see https://circleci.com/docs/2.0/executor-types/ 27 | # To see the list of pre-built images that CircleCI provides for most common languages see 28 | # https://circleci.com/docs/2.0/circleci-images/ 29 | docker: 30 | - image: circleci/node:10-stretch-browsers 31 | steps: 32 | # Machine Setup 33 | # If you break your build into multiple jobs with workflows, you will probably want to do the parts of this that are relevant in each 34 | # The following `checkout` command checks out your code to your working directory. In 1.0 we did this implicitly. In 2.0 you can choose where in the course of a job your code should be checked out. 35 | - checkout 36 | # Prepare for artifact and test results collection equivalent to how it was done on 1.0. 37 | # In many cases you can simplify this from what is generated here. 38 | # 'See docs on artifact collection here https://circleci.com/docs/2.0/artifacts/' 39 | - run: mkdir -p $CIRCLE_ARTIFACTS $CIRCLE_TEST_REPORTS/tslint/ $CIRCLE_TEST_REPORTS/mocha/ 40 | # Dependencies 41 | # This would typically go in either a build or a build-and-test job when using workflows 42 | # Restore the dependency cache 43 | - restore_cache: 44 | keys: 45 | # This branch if available 46 | - node10-{{ .Branch }}- 47 | # Default branch if not 48 | - node10-develop- 49 | # Any branch if there are none on the default branch - this should be unnecessary if you have your default branch configured correctly 50 | - node10- 51 | 52 | # set default yarn installation's install path 53 | - run: yarn config set prefix "$HOME/.yarn" 54 | - run: PATH=$( yarn global bin ):$PATH 55 | 56 | - run: yarn 57 | 58 | # Save dependency cache 59 | - save_cache: 60 | key: node10-{{ .Branch }}-{{ epoch }} 61 | paths: 62 | - ~/.cache/yarn 63 | - ./node_modules 64 | 65 | # yarn will lint separately as part of pretest, but we're running it manually to get the output piped into Circle 66 | - run: 67 | name: Run linter 68 | command: yarn run lint --out $CIRCLE_TEST_REPORTS/tslint/core.xml --formatters-dir ./node_modules/tslint-junit-formatter/formatters --format junit 69 | when: always 70 | 71 | # Test 72 | # This would typically be a build job when using workflows, possibly combined with build 73 | # This is based on your 1.0 configuration file or project settings 74 | - run: 75 | name: Run unit tests 76 | command: yarn run test --reporter mocha-junit-reporter --reporter-options mochaFile=$CIRCLE_TEST_REPORTS/mocha/test-results.xml 77 | when: always 78 | 79 | # Teardown 80 | # If you break your build into multiple jobs with workflows, you will probably want to do the parts of this that are relevant in each 81 | # Save test results 82 | - store_test_results: 83 | path: /tmp/circleci-test-results 84 | # Save artifacts 85 | - store_artifacts: 86 | path: /tmp/circleci-artifacts 87 | - store_artifacts: 88 | path: /tmp/circleci-test-results 89 | 90 | # From http://codereview.cc/harbormaster/step/edit/6/ 91 | # 92 | # This was from CircleCI v1, but Internet comments lead me to believe it's 93 | # unofficially still supported in Circle v2. 94 | notify: 95 | webhooks: 96 | - url: http://codereview.cc/harbormaster/hook/circleci/ 97 | 98 | -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- 1 | # http://editorconfig.org 2 | 3 | root = true 4 | 5 | [*] 6 | charset = utf-8 7 | indent_style = space 8 | indent_size = 2 9 | end_of_line = lf 10 | insert_final_newline = true 11 | trim_trailing_whitespace = true 12 | 13 | [*.md] 14 | trim_trailing_whitespace = true 15 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | node_modules 3 | npm-debug.log 4 | *.pyc 5 | *.js.map 6 | **/dist/**/__tests__/** 7 | coverage/** 8 | .nyc_output/** 9 | .rpt2_cache/ 10 | -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | __tests__ 2 | .* 3 | coverage 4 | examples 5 | third_party 6 | build.js 7 | devServer.js 8 | tsconfig.tests.json 9 | rollup.config.js 10 | tslint.json 11 | -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- 1 | # This is the list of Indefinite Observable authors for copyright purposes. 2 | # 3 | # This does not necessarily list everyone who has contributed code, since in 4 | # some cases, their employer may be the copyright holder. To see the full list 5 | # of contributors, see the revision history with git log. 6 | 7 | Google Inc. 8 | and other contributors 9 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- 1 | # Changelog # 2 | 3 | ## v2.0.1 (2018-12-12) ## 4 | ### Changes ### 5 | - Bundled version is now exported as `unpkg` rather than `browser` in `package.json`. This should help prevent dependencies from being duplicated when bundled downstream. 6 | 7 | ## v2.0.0 (2018-12-10) ## 8 | ### Changes ### 9 | - Replaced `main` with `module` in `package.json`. Both the `browser` and the `module` bundles use ES Modules. We no longer distribute a CommonJS format. 10 | 11 | ### Additions ### 12 | - Added named exports for `IndefiniteObservable` and `wrapWithObserver`. 13 | 14 | ## v1.0.2 (2018-11-27) ## 15 | ### Fixes ### 16 | - Added `private` annotation to `_connect`. 17 | 18 | ### Changes ### 19 | - Upgraded to `symbol-observable@1.2.0`. 20 | 21 | ## v1.0.1 (2017-01-17) ## 22 | ### Removals ### 23 | - Moved `IndefiniteSubject` to [`material-motion`](https://github.com/material-motion/material-motion-js/blob/develop/packages/core/src/observables/IndefiniteSubject.ts) until it is more throughly documented here. 24 | 25 | ### Fixes ### 26 | - Fixed missing `var` in inline version of `symbol-observable`. 27 | 28 | ## v0.3.0 (2016-12-12) ## 29 | ### Additions ### 30 | - Added `IndefiniteSubject`. 31 | - Added JSDoc comments. 32 | 33 | ### Fixes ### 34 | - Fixed presumption that every observer had a `next` channel. 35 | - Fixed `unsubscribe` closing over an unreachable `disconnect`. 36 | 37 | ## v0.2.0 (2016-12-02) ## 38 | - Removed `browser` field from `package.json`. 39 | 40 | ## v0.1.0 (2016-12-06) ## 41 | - Initial publication to npm. 42 | 43 | -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- 1 | Want to contribute? Great! First, read this page (including the small print at 2 | the end). 3 | 4 | ### Before you contribute 5 | 6 | Before we can use your code, you must sign the 7 | [Google Individual Contributor License Agreement] 8 | (https://cla.developers.google.com/about/google-individual) 9 | (CLA), which you can do online. The CLA is necessary mainly because you own the 10 | copyright to your changes, even after your contribution becomes part of our 11 | codebase, so we need your permission to use and distribute your code. We also 12 | need to be sure of various other things—for instance that you'll tell us if you 13 | know that your code infringes on other people's patents. You don't have to sign 14 | the CLA until after you've submitted your code for review and a member has 15 | approved it, but you must do it before we can put your code into our codebase. 16 | Before you start working on a larger contribution, you should get in touch with 17 | us first through the issue tracker with your idea so that we can help out and 18 | possibly guide you. Coordinating up front makes it much easier to avoid 19 | frustration later on. 20 | 21 | ### Code reviews 22 | 23 | All submissions, including submissions by project members, require review. 24 | We use GitHub pull requests for this purpose. 25 | 26 | ### The small print 27 | 28 | Contributions made by corporations are covered by a different agreement than 29 | the one above, the 30 | [Software Grant and Corporate Contributor License Agreement] 31 | (https://cla.developers.google.com/about/google-corporate). 32 | -------------------------------------------------------------------------------- /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 | # Indefinite Observable # 2 | 3 | 4 | [![Current version:](https://img.shields.io/badge/v2.0.1:-222222.svg?logo=npm)](https://www.npmjs.com/package/indefinite-observable/v/2.0.1) 5 | [![Test status](https://img.shields.io/circleci/project/github/material-motion/indefinite-observable-js/stable.svg?logo=circleci&label=Tests)](https://circleci.com/gh/material-motion/indefinite-observable-js/48) 6 | [![Code coverage](https://img.shields.io/codecov/c/github/material-motion/indefinite-observable-js/stable.svg?logo=codecov&logoColor=white&label=Coverage)](https://codecov.io/gh/material-motion/indefinite-observable-js/tree/f601df73be779477218f1fcf709b18e6b621de20/src)
7 | [![HEAD:](https://img.shields.io/badge/HEAD:-222222.svg?logo=github&logoColor=white)](https://github.com/material-motion/indefinite-observable-js) 8 | [![Test status](https://img.shields.io/circleci/project/github/material-motion/indefinite-observable-js/develop.svg?logo=circleci&label=Tests)](https://circleci.com/gh/material-motion/indefinite-observable-js/tree/develop) 9 | [![Code coverage](https://img.shields.io/codecov/c/github/material-motion/indefinite-observable-js/develop.svg?logo=codecov&logoColor=white&label=Coverage)](https://codecov.io/gh/material-motion/indefinite-observable-js/branch/develop) 10 | 11 | ## Why? ## 12 | 13 | There are a lot of great Observable implementations, but they're baked into featureful libraries which contribute to both complexity and filesize. We wanted the simplest-possible Observable implementation, with no operators, no fancy scheduling. The entire thing is basically [three statements in `subscribe`](https://github.com/material-motion/indefinite-observable-js/blob/develop/src/IndefiniteObservable.ts#L68-L72). 14 | 15 | Indefinite Observable is a subset of the [TC39 Observable proposal](https://tc39.github.io/proposal-observable/) that never `complete`s or `error`s. It implements the [minimal-necessary functionality](https://en.wikipedia.org/wiki/You_aren't_gonna_need_it), but it should be completely interchangeable with the TC39 proposal for the subset that it does implement. 16 | 17 | If you want a complete Observables library that works out-of-the-box, check out [xstream](https://github.com/staltz/xstream/), [RxJS](https://github.com/ReactiveX/RxJS/), [Most](https://github.com/cujojs/most/), [Bacon](https://github.com/baconjs/bacon.js/), or [Kefir](https://github.com/rpominov/kefir/). If you want to build your own Observables library that includes just the functionality you need, try [Indefinite Observable](https://github.com/material-motion/indefinite-observable-js/#indefinite-observable). 18 | 19 | ## Usage ## 20 | 21 | ```javascript 22 | import { IndefiniteObservable } from 'indefinite-observable'; 23 | 24 | const moveEvent$ = new IndefiniteObservable( 25 | (observer) => { 26 | // Whenever you want the observable to dispatch a value, call 27 | // observer.next(value). 28 | element.addEventListener('pointermove', observer.next); 29 | 30 | // Return a function that will perform any necessary clean up when the 31 | // observable is unsubscribed from. 32 | return () => { 33 | element.removeEventListener('pointermove', observer.next); 34 | } 35 | } 36 | ); 37 | 38 | // To receive the values dispatched by an observable, pass an observer to its 39 | // subscribe method. An observer is just an object with a next method. 40 | // 41 | // subscribe returns a unsubscribe function. Call that when you no longer want 42 | // to receive dispatches from the observable. 43 | const unsubscribe = moveEvent$.subscribe({ 44 | next(moveEvent) { 45 | console.log('got a pointer event: ', moveEvent); 46 | } 47 | }); 48 | ``` 49 | 50 | Learn more about [How Indefinite Observables work](https://material-motion.github.io/material-motion/documentation/IndefiniteObservable). 51 | 52 | ## Installation ## 53 | 54 | ``` 55 | yarn add indefinite-observable 56 | ``` 57 | 58 | or include as a script tag: 59 | 60 | ```html 61 | 64 | ``` 65 | 66 | ## Contributing ## 67 | 68 | This library aims to be as simple as possible, so modifications will be rare. Reasons we might make changes are limited to: 69 | 70 | - bugs, or 71 | - remaining compatible with the subset of the Observable spec that we support. 72 | 73 | If you'd like to add operators, static methods, or other features, we invite you to depend upon us subclassing `IndefiniteObservable` in your own module. In fact, [that's how we add features too](https://github.com/material-motion/material-motion-js/blob/develop/packages/core/src/observables/MotionObservable.ts). 74 | 75 | Of course, we welcome improvements to the examples and documentation in this repo. 76 | 77 | ### Bundling ### 78 | 79 | Our source is available in 3 flavors: a TypeScript module, a JavaScript module, and a JavaScript bundle. Any changes made to the first need to be reflected in the other two. This should be handled for you automatically via a pre-commit hook. If you have a clean working copy after committing, you're good. If not, amend the commit with the new build before pushing. 80 | 81 | If you need to bundle it independently, run 82 | 83 | ``` 84 | yarn run build 85 | ``` 86 | 87 | ### Testing ### 88 | 89 | ``` 90 | yarn run test 91 | ``` 92 | 93 | ## License ## 94 | 95 | [Apache 2.0](http://www.apache.org/licenses/LICENSE-2.0) 96 | -------------------------------------------------------------------------------- /devServer.js: -------------------------------------------------------------------------------- 1 | #!/usr/local/bin/node 2 | 3 | /** @license 4 | * Copyright 2016 - present The Material Motion Authors. All Rights Reserved. 5 | * 6 | * Licensed under the Apache License, Version 2.0 (the "License"); you may not 7 | * use this file except in compliance with the License. You may obtain a copy 8 | * of the License at 9 | * 10 | * http://www.apache.org/licenses/LICENSE-2.0 11 | * 12 | * Unless required by applicable law or agreed to in writing, software 13 | * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT 14 | * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the 15 | * License for the specific language governing permissions and limitations 16 | * under the License. 17 | */ 18 | 19 | const Path = require('path') 20 | const PundleDev = require('pundle-dev') 21 | 22 | const server = new PundleDev({ 23 | server: { 24 | hmr: true, 25 | port: 8080, 26 | hmrPath: '/dist/bundle_hmr', 27 | bundlePath: '/dist/bundle.js', 28 | sourceRoot: Path.join(__dirname, 'example/as-module/site'), 29 | sourceMapPath: '/dist/bundle.js.map', 30 | error(error) { 31 | console.error(error) 32 | } 33 | }, 34 | pundle: { 35 | entry: [require.resolve('./example/as-module/index.js')], 36 | pathType: 'filePath', 37 | rootDirectory: __dirname, 38 | replaceVariables: { 39 | 'process.env.NODE_ENV': 'development', 40 | } 41 | }, 42 | watcher: { }, 43 | generator: { 44 | wrapper: 'hmr', 45 | sourceMap: true 46 | } 47 | }) 48 | 49 | server.pundle.loadPlugins([ 50 | [ 51 | 'typescript-pundle', 52 | { 53 | extensions: ['.js', '.ts', '.tsx'], 54 | config: { 55 | compilerOptions: { 56 | jsx: 'react', 57 | strictNullChecks: true, 58 | } 59 | } 60 | } 61 | ] 62 | ]).then( 63 | () => { 64 | server.pundle.loadLoaders([ 65 | { 66 | extensions: ['.js', '.ts', '.tsx'], 67 | loader: require('pundle/lib/loaders/javascript').default 68 | }, 69 | ]) 70 | return server.activate() 71 | } 72 | ).then( 73 | () => console.log('Dev server is listening') 74 | ).catch(console.error) 75 | -------------------------------------------------------------------------------- /dist/IndefiniteObservable.d.ts: -------------------------------------------------------------------------------- 1 | /** @license 2 | * Copyright 2016 - present The Material Motion Authors. All Rights Reserved. 3 | * 4 | * Licensed under the Apache License, Version 2.0 (the "License"); you may not 5 | * use this file except in compliance with the License. You may obtain a copy 6 | * of the License at 7 | * 8 | * http://www.apache.org/licenses/LICENSE-2.0 9 | * 10 | * Unless required by applicable law or agreed to in writing, software 11 | * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT 12 | * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the 13 | * License for the specific language governing permissions and limitations 14 | * under the License. 15 | */ 16 | import { Connect, Observable, ObserverOrNext, Subscription } from './types'; 17 | /** 18 | * `Observable` is a standard interface that's useful for modeling multiple, 19 | * asynchronous events. 20 | * 21 | * `IndefiniteObservable` is a minimalist implementation of a subset of the TC39 22 | * Observable proposal. It is indefinite because it will never call `complete` 23 | * or `error` on the provided observer. 24 | */ 25 | export declare class IndefiniteObservable implements Observable { 26 | private _connect; 27 | /** 28 | * The provided function should receive an observer and connect that 29 | * observer's `next` method to an event source (for instance, 30 | * `element.addEventListener('click', observer.next)`). 31 | * 32 | * It must return a function that will disconnect the observer from the event 33 | * source. 34 | */ 35 | constructor(connect: Connect); 36 | /** 37 | * `subscribe` uses the function supplied to the constructor to connect an 38 | * observer to an event source. Each observer is connected independently: 39 | * each call to `subscribe` calls `connect` with the new observer. 40 | * 41 | * To disconnect the observer from the event source, call `unsubscribe` on the 42 | * returned subscription. 43 | * 44 | * Note: `subscribe` accepts either a function or an object with a 45 | * next method. 46 | */ 47 | subscribe(observerOrNext: ObserverOrNext): Subscription; 48 | } 49 | export default IndefiniteObservable; 50 | -------------------------------------------------------------------------------- /dist/IndefiniteObservable.js: -------------------------------------------------------------------------------- 1 | /** @license 2 | * Copyright 2016 - present The Material Motion Authors. All Rights Reserved. 3 | * 4 | * Licensed under the Apache License, Version 2.0 (the "License"); you may not 5 | * use this file except in compliance with the License. You may obtain a copy 6 | * of the License at 7 | * 8 | * http://www.apache.org/licenses/LICENSE-2.0 9 | * 10 | * Unless required by applicable law or agreed to in writing, software 11 | * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT 12 | * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the 13 | * License for the specific language governing permissions and limitations 14 | * under the License. 15 | */ 16 | import $$observable from 'symbol-observable'; 17 | import wrapWithObserver from './wrapWithObserver'; 18 | /** 19 | * `Observable` is a standard interface that's useful for modeling multiple, 20 | * asynchronous events. 21 | * 22 | * `IndefiniteObservable` is a minimalist implementation of a subset of the TC39 23 | * Observable proposal. It is indefinite because it will never call `complete` 24 | * or `error` on the provided observer. 25 | */ 26 | export class IndefiniteObservable { 27 | /** 28 | * The provided function should receive an observer and connect that 29 | * observer's `next` method to an event source (for instance, 30 | * `element.addEventListener('click', observer.next)`). 31 | * 32 | * It must return a function that will disconnect the observer from the event 33 | * source. 34 | */ 35 | constructor(connect) { 36 | this._connect = connect; 37 | } 38 | /** 39 | * `subscribe` uses the function supplied to the constructor to connect an 40 | * observer to an event source. Each observer is connected independently: 41 | * each call to `subscribe` calls `connect` with the new observer. 42 | * 43 | * To disconnect the observer from the event source, call `unsubscribe` on the 44 | * returned subscription. 45 | * 46 | * Note: `subscribe` accepts either a function or an object with a 47 | * next method. 48 | */ 49 | subscribe(observerOrNext) { 50 | // For simplicity's sake, `subscribe` accepts `next` either as either an 51 | // anonymous function or wrapped in an object (the observer). Since 52 | // `connect` always expects to receive an observer, wrap any loose 53 | // functions in an object. 54 | const observer = wrapWithObserver(observerOrNext); 55 | let disconnect = this._connect(observer); 56 | return { 57 | unsubscribe() { 58 | if (disconnect) { 59 | disconnect(); 60 | disconnect = undefined; 61 | } 62 | } 63 | }; 64 | } 65 | /** 66 | * Tells other libraries that know about observables that we are one. 67 | * 68 | * https://github.com/tc39/proposal-observable#observable 69 | */ 70 | [$$observable]() { 71 | return this; 72 | } 73 | } 74 | export default IndefiniteObservable; 75 | //# sourceMappingURL=IndefiniteObservable.js.map -------------------------------------------------------------------------------- /dist/indefinite-observable.bundle.js: -------------------------------------------------------------------------------- 1 | /** @license for symbol-observable 2 | * The MIT License (MIT) 3 | * 4 | * Copyright (c) Sindre Sorhus (sindresorhus.com) 5 | * Copyright (c) Ben Lesh 6 | * 7 | * Permission is hereby granted, free of charge, to any person obtaining a copy 8 | * of this software and associated documentation files (the "Software"), to deal 9 | * in the Software without restriction, including without limitation the rights 10 | * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 11 | * copies of the Software, and to permit persons to whom the Software is 12 | * furnished to do so, subject to the following conditions: 13 | * 14 | * The above copyright notice and this permission notice shall be included in 15 | * all copies or substantial portions of the Software. 16 | * 17 | * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 18 | * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 19 | * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 20 | * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 21 | * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 22 | * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 23 | * THE SOFTWARE. 24 | */ 25 | function symbolObservablePonyfill(root) { 26 | var result; 27 | var Symbol = root.Symbol; 28 | 29 | if (typeof Symbol === 'function') { 30 | if (Symbol.observable) { 31 | result = Symbol.observable; 32 | } else { 33 | result = Symbol('observable'); 34 | Symbol.observable = result; 35 | } 36 | } else { 37 | result = '@@observable'; 38 | } 39 | 40 | return result; 41 | } 42 | 43 | /* global window */ 44 | 45 | var root; 46 | 47 | if (typeof self !== 'undefined') { 48 | root = self; 49 | } else if (typeof window !== 'undefined') { 50 | root = window; 51 | } else if (typeof global !== 'undefined') { 52 | root = global; 53 | } else if (typeof module !== 'undefined') { 54 | root = module; 55 | } else { 56 | root = Function('return this')(); 57 | } 58 | 59 | var $observable = symbolObservablePonyfill(root); 60 | 61 | /** @license 62 | * Copyright 2016 - present The Material Motion Authors. All Rights Reserved. 63 | * 64 | * Licensed under the Apache License, Version 2.0 (the "License"); you may not 65 | * use this file except in compliance with the License. You may obtain a copy 66 | * of the License at 67 | * 68 | * http://www.apache.org/licenses/LICENSE-2.0 69 | * 70 | * Unless required by applicable law or agreed to in writing, software 71 | * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT 72 | * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the 73 | * License for the specific language governing permissions and limitations 74 | * under the License. 75 | */ 76 | /** 77 | * TypeScript is a pain to use with polymorphic types unless you wrap them in a 78 | * function that returns a single type. So, that's what this is. 79 | * 80 | * If you give it an observer, you get back that observer. If you give it an 81 | * anonymous function, you get back that anonymous function wrapped in an 82 | * observer. 83 | */ 84 | function wrapWithObserver(listener) { 85 | if (typeof listener === 'function') { 86 | return { 87 | next: listener 88 | }; 89 | } 90 | else { 91 | return listener; 92 | } 93 | } 94 | 95 | 96 | /** 97 | * `Observable` is a standard interface that's useful for modeling multiple, 98 | * asynchronous events. 99 | * 100 | * `IndefiniteObservable` is a minimalist implementation of a subset of the TC39 101 | * Observable proposal. It is indefinite because it will never call `complete` 102 | * or `error` on the provided observer. 103 | */ 104 | class IndefiniteObservable { 105 | /** 106 | * The provided function should receive an observer and connect that 107 | * observer's `next` method to an event source (for instance, 108 | * `element.addEventListener('click', observer.next)`). 109 | * 110 | * It must return a function that will disconnect the observer from the event 111 | * source. 112 | */ 113 | constructor(connect) { 114 | this._connect = connect; 115 | } 116 | /** 117 | * `subscribe` uses the function supplied to the constructor to connect an 118 | * observer to an event source. Each observer is connected independently: 119 | * each call to `subscribe` calls `connect` with the new observer. 120 | * 121 | * To disconnect the observer from the event source, call `unsubscribe` on the 122 | * returned subscription. 123 | * 124 | * Note: `subscribe` accepts either a function or an object with a 125 | * next method. 126 | */ 127 | subscribe(observerOrNext) { 128 | // For simplicity's sake, `subscribe` accepts `next` either as either an 129 | // anonymous function or wrapped in an object (the observer). Since 130 | // `connect` always expects to receive an observer, wrap any loose 131 | // functions in an object. 132 | const observer = wrapWithObserver(observerOrNext); 133 | let disconnect = this._connect(observer); 134 | return { 135 | unsubscribe() { 136 | if (disconnect) { 137 | disconnect(); 138 | disconnect = undefined; 139 | } 140 | } 141 | }; 142 | } 143 | /** 144 | * Tells other libraries that know about observables that we are one. 145 | * 146 | * https://github.com/tc39/proposal-observable#observable 147 | */ 148 | [$observable]() { 149 | return this; 150 | } 151 | } 152 | 153 | 154 | 155 | export { wrapWithObserver, IndefiniteObservable }; 156 | export default IndefiniteObservable; 157 | -------------------------------------------------------------------------------- /dist/index.d.ts: -------------------------------------------------------------------------------- 1 | /** @license 2 | * Copyright 2016 - present The Material Motion Authors. All Rights Reserved. 3 | * 4 | * Licensed under the Apache License, Version 2.0 (the "License"); you may not 5 | * use this file except in compliance with the License. You may obtain a copy 6 | * of the License at 7 | * 8 | * http://www.apache.org/licenses/LICENSE-2.0 9 | * 10 | * Unless required by applicable law or agreed to in writing, software 11 | * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT 12 | * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the 13 | * License for the specific language governing permissions and limitations 14 | * under the License. 15 | */ 16 | export * from './types'; 17 | export * from './IndefiniteObservable'; 18 | export { wrapWithObserver } from './wrapWithObserver'; 19 | export { default as IndefiniteObservable } from './IndefiniteObservable'; 20 | -------------------------------------------------------------------------------- /dist/index.js: -------------------------------------------------------------------------------- 1 | /** @license 2 | * Copyright 2016 - present The Material Motion Authors. All Rights Reserved. 3 | * 4 | * Licensed under the Apache License, Version 2.0 (the "License"); you may not 5 | * use this file except in compliance with the License. You may obtain a copy 6 | * of the License at 7 | * 8 | * http://www.apache.org/licenses/LICENSE-2.0 9 | * 10 | * Unless required by applicable law or agreed to in writing, software 11 | * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT 12 | * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the 13 | * License for the specific language governing permissions and limitations 14 | * under the License. 15 | */ 16 | export * from './IndefiniteObservable'; 17 | export { wrapWithObserver } from './wrapWithObserver'; 18 | export { default as IndefiniteObservable } from './IndefiniteObservable'; 19 | //# sourceMappingURL=index.js.map -------------------------------------------------------------------------------- /dist/types.d.ts: -------------------------------------------------------------------------------- 1 | /** @license 2 | * Copyright 2016 - present The Material Motion Authors. All Rights Reserved. 3 | * 4 | * Licensed under the Apache License, Version 2.0 (the "License"); you may not 5 | * use this file except in compliance with the License. You may obtain a copy 6 | * of the License at 7 | * 8 | * http://www.apache.org/licenses/LICENSE-2.0 9 | * 10 | * Unless required by applicable law or agreed to in writing, software 11 | * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT 12 | * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the 13 | * License for the specific language governing permissions and limitations 14 | * under the License. 15 | */ 16 | export interface Observable { 17 | subscribe(observerOrNext: ObserverOrNext): Subscription; 18 | } 19 | export interface Observer { 20 | next: NextChannel; 21 | } 22 | export declare type Connect = (observer: Observer) => Disconnect; 23 | export declare type Disconnect = () => void; 24 | export declare type NextChannel = (value: T) => void; 25 | export declare type ObserverOrNext = Observer | NextChannel; 26 | export declare type Unsubscribe = () => void; 27 | export declare type Subscription = { 28 | unsubscribe: Unsubscribe; 29 | }; 30 | -------------------------------------------------------------------------------- /dist/types.js: -------------------------------------------------------------------------------- 1 | /** @license 2 | * Copyright 2016 - present The Material Motion Authors. All Rights Reserved. 3 | * 4 | * Licensed under the Apache License, Version 2.0 (the "License"); you may not 5 | * use this file except in compliance with the License. You may obtain a copy 6 | * of the License at 7 | * 8 | * http://www.apache.org/licenses/LICENSE-2.0 9 | * 10 | * Unless required by applicable law or agreed to in writing, software 11 | * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT 12 | * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the 13 | * License for the specific language governing permissions and limitations 14 | * under the License. 15 | */ 16 | //# sourceMappingURL=types.js.map -------------------------------------------------------------------------------- /dist/wrapWithObserver.d.ts: -------------------------------------------------------------------------------- 1 | /** @license 2 | * Copyright 2016 - present The Material Motion Authors. All Rights Reserved. 3 | * 4 | * Licensed under the Apache License, Version 2.0 (the "License"); you may not 5 | * use this file except in compliance with the License. You may obtain a copy 6 | * of the License at 7 | * 8 | * http://www.apache.org/licenses/LICENSE-2.0 9 | * 10 | * Unless required by applicable law or agreed to in writing, software 11 | * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT 12 | * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the 13 | * License for the specific language governing permissions and limitations 14 | * under the License. 15 | */ 16 | import { Observer, ObserverOrNext } from './types'; 17 | /** 18 | * TypeScript is a pain to use with polymorphic types unless you wrap them in a 19 | * function that returns a single type. So, that's what this is. 20 | * 21 | * If you give it an observer, you get back that observer. If you give it an 22 | * anonymous function, you get back that anonymous function wrapped in an 23 | * observer. 24 | */ 25 | export declare function wrapWithObserver(listener: ObserverOrNext): Observer; 26 | export default wrapWithObserver; 27 | -------------------------------------------------------------------------------- /dist/wrapWithObserver.js: -------------------------------------------------------------------------------- 1 | /** @license 2 | * Copyright 2016 - present The Material Motion Authors. All Rights Reserved. 3 | * 4 | * Licensed under the Apache License, Version 2.0 (the "License"); you may not 5 | * use this file except in compliance with the License. You may obtain a copy 6 | * of the License at 7 | * 8 | * http://www.apache.org/licenses/LICENSE-2.0 9 | * 10 | * Unless required by applicable law or agreed to in writing, software 11 | * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT 12 | * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the 13 | * License for the specific language governing permissions and limitations 14 | * under the License. 15 | */ 16 | /** 17 | * TypeScript is a pain to use with polymorphic types unless you wrap them in a 18 | * function that returns a single type. So, that's what this is. 19 | * 20 | * If you give it an observer, you get back that observer. If you give it an 21 | * anonymous function, you get back that anonymous function wrapped in an 22 | * observer. 23 | */ 24 | export function wrapWithObserver(listener) { 25 | if (typeof listener === 'function') { 26 | return { 27 | next: listener 28 | }; 29 | } 30 | else { 31 | return listener; 32 | } 33 | } 34 | export default wrapWithObserver; 35 | //# sourceMappingURL=wrapWithObserver.js.map -------------------------------------------------------------------------------- /examples/as-module/index.js: -------------------------------------------------------------------------------- 1 | /** @license 2 | * Copyright 2016 - present The Material Motion Authors. All Rights Reserved. 3 | * 4 | * Licensed under the Apache License, Version 2.0 (the "License"); you may not 5 | * use this file except in compliance with the License. You may obtain a copy 6 | * of the License at 7 | * 8 | * http://www.apache.org/licenses/LICENSE-2.0 9 | * 10 | * Unless required by applicable law or agreed to in writing, software 11 | * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT 12 | * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the 13 | * License for the specific language governing permissions and limitations 14 | * under the License. 15 | */ 16 | 17 | // Just a root node to make hot-module-replacement work. The actual example is 18 | // in main.js 19 | 20 | import './main'; 21 | 22 | if (module.hot) { 23 | module.hot.accept() 24 | } 25 | -------------------------------------------------------------------------------- /examples/as-module/main.js: -------------------------------------------------------------------------------- 1 | /** @license 2 | * Copyright 2016 - present The Material Motion Authors. All Rights Reserved. 3 | * 4 | * Licensed under the Apache License, Version 2.0 (the "License"); you may not 5 | * use this file except in compliance with the License. You may obtain a copy 6 | * of the License at 7 | * 8 | * http://www.apache.org/licenses/LICENSE-2.0 9 | * 10 | * Unless required by applicable law or agreed to in writing, software 11 | * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT 12 | * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the 13 | * License for the specific language governing permissions and limitations 14 | * under the License. 15 | */ 16 | 17 | import IndefiniteObservable from '../../src'; 18 | 19 | // Make a subclass of IndefiniteObservable to hold whatever operators you like. 20 | class MyStream extends IndefiniteObservable { 21 | map(predicate) { 22 | return new MyStream( 23 | (observer) => { 24 | let subscription = this.subscribe( 25 | (value) => { 26 | observer.next( 27 | predicate(value) 28 | ); 29 | } 30 | ); 31 | 32 | return subscription.unsubscribe; 33 | } 34 | ); 35 | } 36 | } 37 | 38 | function createMove$(element) { 39 | let observers = new Set(); 40 | 41 | return new MyStream( 42 | (observer) => { 43 | element.addEventListener('mousemove', observer.next); 44 | 45 | console.log('starting move$'); 46 | observers.add(observer); 47 | updateInnerText(); 48 | 49 | return function unsubscribe () { 50 | element.removeEventListener('mousemove', observer.next); 51 | 52 | console.log('stopping move$'); 53 | observers.delete(observer); 54 | updateInnerText(); 55 | } 56 | } 57 | ); 58 | 59 | function updateInnerText() { 60 | let observerCount = observers.size; 61 | 62 | element.innerHTML = `observer count: ${ observerCount }`; 63 | 64 | if (observerCount) { 65 | element.innerHTML = `
move your pointer here.

${ element.innerHTML }
`; 66 | } 67 | } 68 | } 69 | 70 | let track = document.getElementById('track'); 71 | let doubled = document.getElementById('doubled'); 72 | let excited = document.getElementById('excited'); 73 | 74 | let move$ = createMove$(track).map( 75 | event => event.pageX 76 | ); 77 | 78 | let doubledMove$ = move$.map( 79 | x => x + x 80 | ); 81 | 82 | let excitedMove$ = move$.map( 83 | x => x + "!!!" 84 | ); 85 | 86 | let doubledSubscription = doubledMove$.subscribe({ 87 | next(value) { 88 | doubled.innerText = "doubled: " + value; 89 | } 90 | }); 91 | 92 | let excitedSubscription = excitedMove$.subscribe( 93 | value => excited.innerText = "excited: " + value 94 | ); 95 | 96 | doubled.addEventListener( 97 | 'click', 98 | () => { 99 | doubledSubscription.unsubscribe(); 100 | doubled.innerText = 'unsubscribed'; 101 | } 102 | ); 103 | 104 | excited.addEventListener( 105 | 'click', 106 | () => { 107 | excitedSubscription.unsubscribe(); 108 | excited.innerText = 'unsubscribed'; 109 | } 110 | ); 111 | -------------------------------------------------------------------------------- /examples/as-module/site/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Indefinitely Observable Example 6 | 7 | 14 | 56 | 57 | 58 |
59 |
60 | move your pointer here! 61 |
62 |
63 |
64 |
65 | 66 | 68 | 69 | 70 | -------------------------------------------------------------------------------- /examples/as-script-tag/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Indefinitely Observable Example 6 | 7 | 14 | 56 | 57 | 58 |
59 |
60 | move your pointer here! 61 |
62 |
63 |
64 |
65 | 66 | 68 | 69 | 163 | 164 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "indefinite-observable", 3 | "version": "2.0.1", 4 | "scripts": { 5 | "start": "node ./devServer.js", 6 | "clean": "rm -rf ./dist/*; mkdir -p ./dist/", 7 | "lint": "tslint -c tslint.json --project tsconfig.json", 8 | "pretest": "yarn run lint; yarn run build; tsc --project ./tsconfig.tests.json", 9 | "test": "nyc --require @std/esm mocha ./dist/**/__tests__/**.js", 10 | "posttest": "nyc report --reporter=json && codecov -f coverage/*.json", 11 | "build": "yarn run clean; tsc; rollup --config rollup.config.js", 12 | "prepublish": "yarn run build" 13 | }, 14 | "module": "dist/index.js", 15 | "types": "dist/index.d.ts", 16 | "unpkg": "dist/indefinite-observable.bundle.js", 17 | "typescript:main": "src/index.ts", 18 | "dependencies": { 19 | "symbol-observable": "1.2.0" 20 | }, 21 | "@std/esm": { 22 | "mode": "all", 23 | "cjs": true 24 | }, 25 | "devDependencies": { 26 | "@std/esm": "^0.26.0", 27 | "chai": "3.5.0", 28 | "codecov": "^1.0.1", 29 | "mocha": "3.2.0", 30 | "mocha-junit-reporter": "^1.18.0", 31 | "mocha-sugar-free": "1.3.1", 32 | "nyc": "^10.0.0", 33 | "pre-commit": "1.1.3", 34 | "pundle-dev": "1.1.11", 35 | "rollup": "^0.67.4", 36 | "rollup-plugin-node-resolve": "^3.4.0", 37 | "rollup-plugin-typescript2": "^0.18.0", 38 | "sinon": "2.0.0-pre.3", 39 | "sinon-chai": "2.8.0", 40 | "tsickle": "0.2.0", 41 | "tslint": "4.0.2", 42 | "tslint-junit-formatter": "^5.1.0", 43 | "typescript": "3", 44 | "typescript-pundle": "1.0.1" 45 | }, 46 | "pre-commit": [ 47 | "build" 48 | ], 49 | "repository": { 50 | "type": "git", 51 | "url": "git@github.com:material-motion/indefinite-observable-js.git" 52 | }, 53 | "author": "The Indefinite Observable Authors (see AUTHORS)", 54 | "license": "Apache-2.0", 55 | "bugs": { 56 | "url": "https://github.com/material-motion/indefinite-observable-js/issues/" 57 | }, 58 | "homepage": "https://github.com/material-motion/indefinite-observable-js/#readme" 59 | } 60 | -------------------------------------------------------------------------------- /rollup.config.js: -------------------------------------------------------------------------------- 1 | /** @license 2 | * Copyright 2016 - present The Material Motion Authors. All Rights Reserved. 3 | * 4 | * Licensed under the Apache License, Version 2.0 (the "License"); you may not 5 | * use this file except in compliance with the License. You may obtain a copy 6 | * of the License at 7 | * 8 | * http://www.apache.org/licenses/LICENSE-2.0 9 | * 10 | * Unless required by applicable law or agreed to in writing, software 11 | * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT 12 | * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the 13 | * License for the specific language governing permissions and limitations 14 | * under the License. 15 | */ 16 | 17 | import resolve from 'rollup-plugin-node-resolve'; 18 | import typescript from 'rollup-plugin-typescript2'; 19 | 20 | import { 21 | renameSymbolObservable, 22 | unifyLicenses, 23 | addDefaultExport, 24 | } from './rollupPlugins'; 25 | 26 | export default [ 27 | { 28 | input: './src/index.ts', 29 | output: { 30 | file: './dist/indefinite-observable.bundle.js', 31 | format: 'esm', 32 | }, 33 | plugins: [ 34 | typescript(), 35 | resolve(), 36 | renameSymbolObservable(), 37 | unifyLicenses(), 38 | addDefaultExport('IndefiniteObservable'), 39 | ], 40 | }, 41 | ]; 42 | 43 | -------------------------------------------------------------------------------- /rollupPlugins.js: -------------------------------------------------------------------------------- 1 | /** @license 2 | * Copyright 2016 - present The Material Motion Authors. All Rights Reserved. 3 | * 4 | * Licensed under the Apache License, Version 2.0 (the "License"); you may not 5 | * use this file except in compliance with the License. You may obtain a copy 6 | * of the License at 7 | * 8 | * http://www.apache.org/licenses/LICENSE-2.0 9 | * 10 | * Unless required by applicable law or agreed to in writing, software 11 | * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT 12 | * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the 13 | * License for the specific language governing permissions and limitations 14 | * under the License. 15 | */ 16 | 17 | 18 | /** 19 | * This plugin ensures that a license appears exactly once for each module in 20 | * the build. 21 | * 22 | * This version is hand-written for this module, but a more generic one could be 23 | * abstracted from it. 24 | */ 25 | export function unifyLicenses() { 26 | const MOTION_LICENSE = `/** @license 27 | * Copyright 2016 - present The Material Motion Authors. All Rights Reserved. 28 | * 29 | * Licensed under the Apache License, Version 2.0 (the "License"); you may not 30 | * use this file except in compliance with the License. You may obtain a copy 31 | * of the License at 32 | * 33 | * http://www.apache.org/licenses/LICENSE-2.0 34 | * 35 | * Unless required by applicable law or agreed to in writing, software 36 | * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT 37 | * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the 38 | * License for the specific language governing permissions and limitations 39 | * under the License. 40 | */`; 41 | 42 | const SYMBOL_OBSERVABLE_LICENSE = `/** @license for symbol-observable 43 | * The MIT License (MIT) 44 | * 45 | * Copyright (c) Sindre Sorhus (sindresorhus.com) 46 | * Copyright (c) Ben Lesh 47 | * 48 | * Permission is hereby granted, free of charge, to any person obtaining a copy 49 | * of this software and associated documentation files (the "Software"), to deal 50 | * in the Software without restriction, including without limitation the rights 51 | * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 52 | * copies of the Software, and to permit persons to whom the Software is 53 | * furnished to do so, subject to the following conditions: 54 | * 55 | * The above copyright notice and this permission notice shall be included in 56 | * all copies or substantial portions of the Software. 57 | * 58 | * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 59 | * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 60 | * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 61 | * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 62 | * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 63 | * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 64 | * THE SOFTWARE. 65 | */ 66 | `; 67 | 68 | const WOBBLE_SHORT_LICENSE = `/** 69 | * @license 70 | * Copyright 2017 Adam Miskiewicz 71 | * 72 | * Use of this source code is governed by a MIT-style license that can be found 73 | * in the LICENSE file or at https://opensource.org/licenses/MIT. 74 | */ 75 | `; 76 | 77 | const WOBBLE_LICENSE = `/** @license for wobble 78 | * The MIT License (MIT) 79 | * 80 | * Copyright (c) 2017 Adam Miskiewicz 81 | * 82 | * Permission is hereby granted, free of charge, to any person obtaining a copy 83 | * of this software and associated documentation files (the "Software"), to deal 84 | * in the Software without restriction, including without limitation the rights 85 | * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 86 | * copies of the Software, and to permit persons to whom the Software is 87 | * furnished to do so, subject to the following conditions: 88 | * 89 | * The above copyright notice and this permission notice shall be included in 90 | * all copies or substantial portions of the Software. 91 | * 92 | * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 93 | * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 94 | * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 95 | * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 96 | * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 97 | * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 98 | * THE SOFTWARE. 99 | */ 100 | `; 101 | 102 | const FAST_EQUALS_LICENSE = `/** @license for fast-equals 103 | * The MIT License (MIT) 104 | * 105 | * Copyright (c) 2017 Tony Quetano 106 | * 107 | * Permission is hereby granted, free of charge, to any person obtaining a copy 108 | * of this software and associated documentation files (the "Software"), to deal 109 | * in the Software without restriction, including without limitation the rights 110 | * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 111 | * copies of the Software, and to permit persons to whom the Software is 112 | * furnished to do so, subject to the following conditions: 113 | * 114 | * The above copyright notice and this permission notice shall be included in 115 | * all copies or substantial portions of the Software. 116 | * 117 | * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 118 | * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 119 | * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 120 | * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 121 | * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 122 | * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 123 | * THE SOFTWARE. 124 | */ 125 | `; 126 | 127 | const MOTION_MARKER = '/* material-motion */'; 128 | const SYMBOL_OBSERVABLE_MARKER = '/* symbol-observable */'; 129 | const WOBBLE_MARKER = '/* wobble */'; 130 | const FAST_EQUALS_MARKER = '/* fast-equals */'; 131 | 132 | const LFCR = String.fromCharCode(13) + String.fromCharCode(10); 133 | const CR = String.fromCharCode(10); 134 | 135 | return { 136 | /** 137 | * Injects a license into each module before the bundle is output. 138 | */ 139 | renderChunk(source) { 140 | source = source 141 | // replaces the first instance of each marker with a license. 142 | .replace(MOTION_MARKER, MOTION_LICENSE) 143 | .replace(SYMBOL_OBSERVABLE_MARKER, SYMBOL_OBSERVABLE_LICENSE) 144 | .replace(WOBBLE_MARKER, WOBBLE_LICENSE) 145 | .replace(FAST_EQUALS_MARKER, FAST_EQUALS_LICENSE); 146 | 147 | return [ 148 | MOTION_MARKER, 149 | SYMBOL_OBSERVABLE_MARKER, 150 | WOBBLE_MARKER, 151 | FAST_EQUALS_MARKER, 152 | ].reduce( 153 | (source, marker) => replaceAll(source, marker), 154 | source 155 | ); 156 | }, 157 | 158 | /** 159 | * Marks each module with its package name, and strips any recognized 160 | * licenses from it. A single license will be added back in 161 | * `renderChunk`. 162 | */ 163 | transform(source, id) { 164 | // Normalize line endings, so `replace` works as expected 165 | source = source.replace(new RegExp(LFCR, 'g'), CR); 166 | 167 | if ( 168 | id.match(/\/indefinite-observable-js\/(src|dist)/) || 169 | 170 | // This supports material-motion until `unifyLicenses` is generalized 171 | // into its own plugin. 172 | id.match(/\/material-motion-js\/packages\/[a-z\-]+\/(src|dist)/)) { 173 | source = MOTION_MARKER + source; 174 | source = replaceAll(source, MOTION_LICENSE); 175 | 176 | } else if (id.includes('symbol-observable')) { 177 | source = SYMBOL_OBSERVABLE_MARKER + source; 178 | source = replaceAll(source, SYMBOL_OBSERVABLE_LICENSE); 179 | 180 | } else if (id.includes('wobble')) { 181 | source = WOBBLE_MARKER + source; 182 | source = replaceAll(source, WOBBLE_LICENSE); 183 | source = replaceAll(source, WOBBLE_SHORT_LICENSE); 184 | 185 | } else if (id.includes('fast-equals')) { 186 | source = FAST_EQUALS_MARKER + source; 187 | source = replaceAll(source, FAST_EQUALS_LICENSE); 188 | } 189 | 190 | return source; 191 | } 192 | }; 193 | } 194 | 195 | function replaceAll(source, before, after = '') { 196 | return source.split(before).join(after); 197 | } 198 | 199 | /** 200 | * The `resolve` plugin uses the internal name of the export (`result`). 201 | * 202 | * This replaces it with a more semantic name (`$observable`); 203 | */ 204 | export function renameSymbolObservable() { 205 | return { 206 | transform(source, id) { 207 | if (id.includes('symbol-observable')) { 208 | source = source.replace( 209 | `var result = ponyfill(root); 210 | export default result;`, 211 | `var $observable = ponyfill(root); 212 | export default $observable;`, 213 | ); 214 | } 215 | 216 | return source; 217 | } 218 | } 219 | } 220 | 221 | /** 222 | * Rollup won't let you have a default export if there are named ones. This 223 | * plugin appends `export default ${ name };` to the end of the bundle to 224 | * override Rollup. 225 | */ 226 | export function addDefaultExport(name) { 227 | return { 228 | renderChunk(source) { 229 | if (!source.includes(' ' + name)) { 230 | throw new Error(`${ name } not found in bundle. Cannot add default export.`); 231 | } 232 | 233 | return source + ` 234 | export default ${ name };` 235 | }, 236 | }; 237 | } 238 | -------------------------------------------------------------------------------- /src/IndefiniteObservable.ts: -------------------------------------------------------------------------------- 1 | /** @license 2 | * Copyright 2016 - present The Material Motion Authors. All Rights Reserved. 3 | * 4 | * Licensed under the Apache License, Version 2.0 (the "License"); you may not 5 | * use this file except in compliance with the License. You may obtain a copy 6 | * of the License at 7 | * 8 | * http://www.apache.org/licenses/LICENSE-2.0 9 | * 10 | * Unless required by applicable law or agreed to in writing, software 11 | * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT 12 | * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the 13 | * License for the specific language governing permissions and limitations 14 | * under the License. 15 | */ 16 | 17 | import $$observable from 'symbol-observable'; 18 | 19 | import wrapWithObserver from './wrapWithObserver'; 20 | 21 | import { 22 | Connect, 23 | Disconnect, 24 | Observable, 25 | ObserverOrNext, 26 | Subscription, 27 | } from './types'; 28 | 29 | /** 30 | * `Observable` is a standard interface that's useful for modeling multiple, 31 | * asynchronous events. 32 | * 33 | * `IndefiniteObservable` is a minimalist implementation of a subset of the TC39 34 | * Observable proposal. It is indefinite because it will never call `complete` 35 | * or `error` on the provided observer. 36 | */ 37 | export class IndefiniteObservable implements Observable { 38 | private _connect: Connect; 39 | 40 | /** 41 | * The provided function should receive an observer and connect that 42 | * observer's `next` method to an event source (for instance, 43 | * `element.addEventListener('click', observer.next)`). 44 | * 45 | * It must return a function that will disconnect the observer from the event 46 | * source. 47 | */ 48 | constructor(connect: Connect) { 49 | this._connect = connect; 50 | } 51 | 52 | /** 53 | * `subscribe` uses the function supplied to the constructor to connect an 54 | * observer to an event source. Each observer is connected independently: 55 | * each call to `subscribe` calls `connect` with the new observer. 56 | * 57 | * To disconnect the observer from the event source, call `unsubscribe` on the 58 | * returned subscription. 59 | * 60 | * Note: `subscribe` accepts either a function or an object with a 61 | * next method. 62 | */ 63 | subscribe(observerOrNext: ObserverOrNext): Subscription { 64 | // For simplicity's sake, `subscribe` accepts `next` either as either an 65 | // anonymous function or wrapped in an object (the observer). Since 66 | // `connect` always expects to receive an observer, wrap any loose 67 | // functions in an object. 68 | const observer = wrapWithObserver(observerOrNext); 69 | 70 | let disconnect: Disconnect | undefined = this._connect(observer); 71 | 72 | return { 73 | unsubscribe() { 74 | if (disconnect) { 75 | disconnect(); 76 | disconnect = undefined; 77 | } 78 | } 79 | }; 80 | } 81 | 82 | /** 83 | * Tells other libraries that know about observables that we are one. 84 | * 85 | * https://github.com/tc39/proposal-observable#observable 86 | */ 87 | [$$observable](): Observable { 88 | return this; 89 | } 90 | } 91 | export default IndefiniteObservable; 92 | -------------------------------------------------------------------------------- /src/__tests__/IndefiniteObservable.test.ts: -------------------------------------------------------------------------------- 1 | /** @license 2 | * Copyright 2016 - present The Material Motion Authors. All Rights Reserved. 3 | * 4 | * Licensed under the Apache License, Version 2.0 (the "License"); you may not 5 | * use this file except in compliance with the License. You may obtain a copy 6 | * of the License at 7 | * 8 | * http://www.apache.org/licenses/LICENSE-2.0 9 | * 10 | * Unless required by applicable law or agreed to in writing, software 11 | * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT 12 | * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the 13 | * License for the specific language governing permissions and limitations 14 | * under the License. 15 | */ 16 | 17 | import { expect } from 'chai'; 18 | 19 | import { 20 | beforeEach, 21 | describe, 22 | it, 23 | } from 'mocha-sugar-free'; 24 | 25 | import { 26 | stub, 27 | } from 'sinon'; 28 | 29 | import IndefiniteObservable from '../IndefiniteObservable'; 30 | 31 | declare function require(name: string); 32 | 33 | // chai really doesn't like being imported as an ES2015 module; will be fixed in v4 34 | require('chai').use( 35 | require('sinon-chai') 36 | ); 37 | 38 | describe('IndefiniteObservable', 39 | () => { 40 | let next; 41 | let stream; 42 | let listener1; 43 | let listener2; 44 | let disconnect; 45 | 46 | beforeEach( 47 | () => { 48 | stream = new IndefiniteObservable( 49 | observer => { 50 | next = (value) => { 51 | observer.next(value); 52 | } 53 | 54 | return disconnect; 55 | } 56 | ); 57 | 58 | listener1 = stub(); 59 | listener2 = stub(); 60 | disconnect = stub(); 61 | } 62 | ); 63 | 64 | it(`should not call a subscriber until next has been called`, 65 | () => { 66 | stream.subscribe(listener1); 67 | expect(listener1).not.to.have.been.called; 68 | } 69 | ); 70 | 71 | it(`should forward values from connect to a subscriber`, 72 | () => { 73 | stream.subscribe(listener1); 74 | 75 | next(2); 76 | 77 | expect(listener1).to.have.been.calledWith(2); 78 | 79 | next(3); 80 | 81 | expect(listener1).to.have.been.calledWith(3); 82 | } 83 | ); 84 | 85 | it(`should connect each subscriber independently`, 86 | () => { 87 | let connect = stub().returns(disconnect); 88 | 89 | let spiedStream = new IndefiniteObservable(connect); 90 | 91 | spiedStream.subscribe(listener1); 92 | spiedStream.subscribe(listener2); 93 | 94 | expect(connect).to.have.been.calledTwice; 95 | } 96 | ); 97 | 98 | // This is the test that led to https://github.com/material-motion/indefinite-observable-js/commit/26a7963a3e353e9ff83ea7b26a8beed46ad6e15d 99 | it(`should send values to each subscriber independently`, 100 | () => { 101 | let counter = 0; 102 | 103 | const random$ = new IndefiniteObservable( 104 | (observer) => { 105 | counter++; 106 | observer.next(counter); 107 | 108 | return disconnect; 109 | } 110 | ); 111 | 112 | random$.subscribe(listener1); 113 | random$.subscribe(listener2); 114 | 115 | const value1 = listener1.lastCall.args[0]; 116 | const value2 = listener2.lastCall.args[0]; 117 | 118 | expect(listener1).to.have.been.called; 119 | expect(listener2).to.have.been.called; 120 | expect(value1).not.to.equal(value2); 121 | } 122 | ); 123 | 124 | it(`should disconnect observers from events when unsubscribe is called`, 125 | () => { 126 | const subscription = stream.subscribe(listener1); 127 | subscription.unsubscribe(); 128 | 129 | expect(disconnect).to.have.been.calledOnce; 130 | } 131 | ); 132 | 133 | it(`doesn't forward unsubscribe arguments to disconnect`, 134 | () => { 135 | const subscription = stream.subscribe(listener1); 136 | (subscription.unsubscribe as any)(1); 137 | 138 | expect(disconnect).to.have.been.calledOnce; 139 | expect(disconnect).not.to.have.been.calledWith(1); 140 | } 141 | ); 142 | 143 | it(`should only allow each subscription to be unsubscribed once`, 144 | () => { 145 | const subscription = stream.subscribe(listener1); 146 | subscription.unsubscribe(); 147 | subscription.unsubscribe(); 148 | 149 | expect(disconnect).to.have.been.calledOnce; 150 | } 151 | ); 152 | 153 | it(`should accept an observer or an anonymous function`, 154 | () => { 155 | stream.subscribe({ 156 | next: listener1 157 | }); 158 | 159 | next(7); 160 | 161 | expect(listener1).to.have.been.calledWith(7); 162 | } 163 | ); 164 | 165 | it(`should allow an observer to have arbitrary channels`, 166 | () => { 167 | let channel1; 168 | let channel2; 169 | 170 | const multichannelStream = new IndefiniteObservable( 171 | (observer: any) => { 172 | channel1 = observer.channel1; 173 | channel2 = observer.channel2; 174 | 175 | return disconnect; 176 | } 177 | ); 178 | 179 | multichannelStream.subscribe({ 180 | channel1: listener1, 181 | channel2: listener2, 182 | } as any); 183 | 184 | channel1(5); 185 | channel2(7); 186 | 187 | expect(listener1).to.have.been.calledWith(5); 188 | expect(listener2).to.have.been.calledWith(7); 189 | } 190 | ); 191 | 192 | it(`should identify itself as an adherent of the TC39 observable proposal`, 193 | () => { 194 | // According to the TC39 spec, if Symbol is defined, `this` should be 195 | // returned by stream[Symbol.observable](). Otherwise, the key is 196 | // '@@observable'. 197 | const $$observable = typeof Symbol !== 'undefined' 198 | ? (Symbol as any).observable 199 | : '@@observable'; 200 | 201 | expect(stream[$$observable]()).to.equal(stream); 202 | } 203 | ); 204 | } 205 | ); 206 | 207 | -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- 1 | /** @license 2 | * Copyright 2016 - present The Material Motion Authors. All Rights Reserved. 3 | * 4 | * Licensed under the Apache License, Version 2.0 (the "License"); you may not 5 | * use this file except in compliance with the License. You may obtain a copy 6 | * of the License at 7 | * 8 | * http://www.apache.org/licenses/LICENSE-2.0 9 | * 10 | * Unless required by applicable law or agreed to in writing, software 11 | * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT 12 | * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the 13 | * License for the specific language governing permissions and limitations 14 | * under the License. 15 | */ 16 | 17 | export * from './types'; 18 | 19 | export * from './IndefiniteObservable'; 20 | export { wrapWithObserver } from './wrapWithObserver'; 21 | export { default as IndefiniteObservable } from './IndefiniteObservable'; 22 | -------------------------------------------------------------------------------- /src/types.ts: -------------------------------------------------------------------------------- 1 | /** @license 2 | * Copyright 2016 - present The Material Motion Authors. All Rights Reserved. 3 | * 4 | * Licensed under the Apache License, Version 2.0 (the "License"); you may not 5 | * use this file except in compliance with the License. You may obtain a copy 6 | * of the License at 7 | * 8 | * http://www.apache.org/licenses/LICENSE-2.0 9 | * 10 | * Unless required by applicable law or agreed to in writing, software 11 | * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT 12 | * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the 13 | * License for the specific language governing permissions and limitations 14 | * under the License. 15 | */ 16 | 17 | export interface Observable { 18 | subscribe(observerOrNext: ObserverOrNext): Subscription; 19 | } 20 | 21 | export interface Observer { 22 | next: NextChannel, 23 | } 24 | 25 | export type Connect = (observer: Observer) => Disconnect; 26 | export type Disconnect = () => void; 27 | 28 | export type NextChannel = (value: T) => void; 29 | export type ObserverOrNext = Observer | NextChannel; 30 | 31 | export type Unsubscribe = () => void; 32 | export type Subscription = { 33 | unsubscribe: Unsubscribe, 34 | }; 35 | -------------------------------------------------------------------------------- /src/wrapWithObserver.ts: -------------------------------------------------------------------------------- 1 | /** @license 2 | * Copyright 2016 - present The Material Motion Authors. All Rights Reserved. 3 | * 4 | * Licensed under the Apache License, Version 2.0 (the "License"); you may not 5 | * use this file except in compliance with the License. You may obtain a copy 6 | * of the License at 7 | * 8 | * http://www.apache.org/licenses/LICENSE-2.0 9 | * 10 | * Unless required by applicable law or agreed to in writing, software 11 | * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT 12 | * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the 13 | * License for the specific language governing permissions and limitations 14 | * under the License. 15 | */ 16 | 17 | import { 18 | Observer, 19 | ObserverOrNext, 20 | } from './types'; 21 | 22 | /** 23 | * TypeScript is a pain to use with polymorphic types unless you wrap them in a 24 | * function that returns a single type. So, that's what this is. 25 | * 26 | * If you give it an observer, you get back that observer. If you give it an 27 | * anonymous function, you get back that anonymous function wrapped in an 28 | * observer. 29 | */ 30 | export function wrapWithObserver(listener: ObserverOrNext): Observer { 31 | if (typeof listener === 'function') { 32 | return { 33 | next: listener 34 | }; 35 | 36 | } else { 37 | return listener; 38 | } 39 | } 40 | export default wrapWithObserver; 41 | -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "include": ["./src/**/*"], 3 | "exclude": ["**/*.test.*"], 4 | "compilerOptions": { 5 | "declaration": true, 6 | "lib": [ 7 | "es2015", 8 | "dom" 9 | ], 10 | "module": "es2015", 11 | "moduleResolution": "node", 12 | "newLine": "lf", 13 | "noImplicitAny": true, 14 | "noImplicitThis": true, 15 | "noUnusedLocals": true, 16 | "noUnusedParameters": true, 17 | "outDir": "dist", 18 | "rootDir": "src", 19 | "sourceMap": true, 20 | "strictNullChecks": true, 21 | "target": "es6" 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /tsconfig.tests.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "./tsconfig.json", 3 | "include": ["./src/**/*.test.*"], 4 | "exclude": [], 5 | "compilerOptions": { 6 | "noImplicitAny": false, 7 | "noImplicitThis": false, 8 | "noUnusedLocals": false, 9 | "noUnusedParameters": false, 10 | "strictNullChecks": false 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /tslint.json: -------------------------------------------------------------------------------- 1 | { 2 | "rules": { 3 | "array-type": [true, "array-simple"], 4 | "class-name": true, 5 | "comment-format": [true, "check-space"], 6 | "curly": true, 7 | "eofline": true, 8 | "forin": true, 9 | "indent": [true, "spaces"], 10 | "interface-name": [true, "never-prefix"], 11 | "jsdoc-format": true, 12 | "label-position": true, 13 | "new-parens": true, 14 | "no-angle-bracket-type-assertion": true, 15 | "no-conditional-assignment": true, 16 | "no-construct": true, 17 | "no-debugger": true, 18 | "no-namespace": [true, "allow-declarations"], 19 | "no-reference": true, 20 | "no-require-imports": true, 21 | "no-trailing-whitespace": true, 22 | "no-unused-expression": true, 23 | "no-use-before-declare": false, 24 | "no-var-keyword": true, 25 | "one-variable-per-declaration": [true, "ignore-for-loop"], 26 | "object-literal-shorthand": true, 27 | "ordered-imports": [ 28 | true, 29 | { 30 | "named-imports-order": "lowercase-last" 31 | } 32 | ], 33 | "radix": true, 34 | "semicolon": [true, "always", "ignore-interfaces"], 35 | "switch-default": true, 36 | "triple-equals": [true, "allow-null-check"], 37 | "use-isnan": true, 38 | "variable-name": [ 39 | true, 40 | "check-format", 41 | "ban-keywords", 42 | "allow-leading-underscore" 43 | ] 44 | } 45 | } 46 | -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- 1 | # THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY. 2 | # yarn lockfile v1 3 | 4 | 5 | "@std/esm@^0.26.0": 6 | version "0.26.0" 7 | resolved "https://registry.yarnpkg.com/@std/esm/-/esm-0.26.0.tgz#c3ec3abdee95738e15ea7c695b7fee14ae529b81" 8 | integrity sha512-g3RDuosSa5fZOzENtrZdx7Gevb3zabfn8qglug2aCJIVz/4woFpKoqm1yD3mG2RD0zJEZRnkkuPHsmNglKGl7g== 9 | 10 | "@types/estree@0.0.39": 11 | version "0.0.39" 12 | resolved "https://registry.yarnpkg.com/@types/estree/-/estree-0.0.39.tgz#e177e699ee1b8c22d23174caaa7422644389509f" 13 | integrity sha512-EYNwp3bU+98cpU4lAWYYL7Zz+2gryWH1qbdDTidVd6hkiR6weksdbMadyXKXNPEkQFhXM+hVO9ZygomHXp+AIw== 14 | 15 | "@types/node@*": 16 | version "10.12.12" 17 | resolved "https://registry.yarnpkg.com/@types/node/-/node-10.12.12.tgz#e15a9d034d9210f00320ef718a50c4a799417c47" 18 | integrity sha512-Pr+6JRiKkfsFvmU/LK68oBRCQeEg36TyAbPhc2xpez24OOZZCuoIhWGTd39VZy6nGafSbxzGouFPTFD/rR1A0A== 19 | 20 | abbrev@1: 21 | version "1.0.9" 22 | resolved "https://registry.yarnpkg.com/abbrev/-/abbrev-1.0.9.tgz#91b4792588a7738c25f35dd6f63752a2f8776135" 23 | integrity sha1-kbR5JYinc4wl813W9jdSovh3YTU= 24 | 25 | accepts@~1.3.3: 26 | version "1.3.3" 27 | resolved "https://registry.yarnpkg.com/accepts/-/accepts-1.3.3.tgz#c3ca7434938648c3e0d9c1e328dd68b622c284ca" 28 | integrity sha1-w8p0NJOGSMPg2cHjKN1otiLChMo= 29 | dependencies: 30 | mime-types "~2.1.11" 31 | negotiator "0.6.1" 32 | 33 | align-text@^0.1.1, align-text@^0.1.3: 34 | version "0.1.4" 35 | resolved "https://registry.yarnpkg.com/align-text/-/align-text-0.1.4.tgz#0cd90a561093f35d0a99256c22b7069433fad117" 36 | integrity sha1-DNkKVhCT810KmSVsIrcGlDP60Rc= 37 | dependencies: 38 | kind-of "^3.0.2" 39 | longest "^1.0.1" 40 | repeat-string "^1.5.2" 41 | 42 | amdefine@>=0.0.4: 43 | version "1.0.1" 44 | resolved "https://registry.yarnpkg.com/amdefine/-/amdefine-1.0.1.tgz#4a5282ac164729e93619bcfd3ad151f817ce91f5" 45 | integrity sha1-SlKCrBZHKek2Gbz9OtFR+BfOkfU= 46 | 47 | ansi-align@^1.1.0: 48 | version "1.1.0" 49 | resolved "https://registry.yarnpkg.com/ansi-align/-/ansi-align-1.1.0.tgz#2f0c1658829739add5ebb15e6b0c6e3423f016ba" 50 | integrity sha1-LwwWWIKXOa3V67FeawxuNCPwFro= 51 | dependencies: 52 | string-width "^1.0.1" 53 | 54 | ansi-regex@^2.0.0: 55 | version "2.0.0" 56 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-2.0.0.tgz#c5061b6e0ef8a81775e50f5d66151bf6bf371107" 57 | integrity sha1-xQYbbg74qBd15Q9dZhUb9r83EQc= 58 | 59 | ansi-regex@^3.0.0: 60 | version "3.0.0" 61 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-3.0.0.tgz#ed0317c322064f79466c02966bddb605ab37d998" 62 | integrity sha1-7QMXwyIGT3lGbAKWa922Bas32Zg= 63 | 64 | ansi-styles@^2.2.1: 65 | version "2.2.1" 66 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-2.2.1.tgz#b432dd3358b634cf75e1e4664368240533c1ddbe" 67 | integrity sha1-tDLdM1i2NM914eRmQ2gkBTPB3b4= 68 | 69 | anymatch@^1.3.0: 70 | version "1.3.0" 71 | resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-1.3.0.tgz#a3e52fa39168c825ff57b0248126ce5a8ff95507" 72 | integrity sha1-o+Uvo5FoyCX/V7AkgSbOWo/5VQc= 73 | dependencies: 74 | arrify "^1.0.0" 75 | micromatch "^2.1.5" 76 | 77 | append-transform@^0.3.0: 78 | version "0.3.0" 79 | resolved "https://registry.yarnpkg.com/append-transform/-/append-transform-0.3.0.tgz#d6933ce4a85f09445d9ccc4cc119051b7381a813" 80 | integrity sha1-1pM85KhfCURdnMxMwRkFG3OBqBM= 81 | 82 | aproba@^1.0.3: 83 | version "1.0.4" 84 | resolved "https://registry.yarnpkg.com/aproba/-/aproba-1.0.4.tgz#2713680775e7614c8ba186c065d4e2e52d1072c0" 85 | integrity sha1-JxNoB3XnYUyLoYbAZdTi5S0QcsA= 86 | 87 | archy@^1.0.0: 88 | version "1.0.0" 89 | resolved "https://registry.yarnpkg.com/archy/-/archy-1.0.0.tgz#f9c8c13757cc1dd7bc379ac77b2c62a5c2868c40" 90 | integrity sha1-+cjBN1fMHde8N5rHeyxipcKGjEA= 91 | 92 | are-we-there-yet@~1.1.2: 93 | version "1.1.2" 94 | resolved "https://registry.yarnpkg.com/are-we-there-yet/-/are-we-there-yet-1.1.2.tgz#80e470e95a084794fe1899262c5667c6e88de1b3" 95 | integrity sha1-gORw6VoIR5T+GJkmLFZnxuiN4bM= 96 | dependencies: 97 | delegates "^1.0.0" 98 | readable-stream "^2.0.0 || ^1.1.13" 99 | 100 | argv@>=0.0.2: 101 | version "0.0.2" 102 | resolved "https://registry.yarnpkg.com/argv/-/argv-0.0.2.tgz#ecbd16f8949b157183711b1bda334f37840185ab" 103 | integrity sha1-7L0W+JSbFXGDcRsb2jNPN4QBhas= 104 | 105 | arr-diff@^2.0.0: 106 | version "2.0.0" 107 | resolved "https://registry.yarnpkg.com/arr-diff/-/arr-diff-2.0.0.tgz#8f3b827f955a8bd669697e4a4256ac3ceae356cf" 108 | integrity sha1-jzuCf5Vai9ZpaX5KQlasPOrjVs8= 109 | dependencies: 110 | arr-flatten "^1.0.1" 111 | 112 | arr-flatten@^1.0.1: 113 | version "1.0.1" 114 | resolved "https://registry.yarnpkg.com/arr-flatten/-/arr-flatten-1.0.1.tgz#e5ffe54d45e19f32f216e91eb99c8ce892bb604b" 115 | integrity sha1-5f/lTUXhnzLyFukeuZyM6JK7YEs= 116 | 117 | array-flatten@1.1.1: 118 | version "1.1.1" 119 | resolved "https://registry.yarnpkg.com/array-flatten/-/array-flatten-1.1.1.tgz#9a5f699051b1e7073328f2a008968b64ea2955d2" 120 | integrity sha1-ml9pkFGx5wczKPKgCJaLZOopVdI= 121 | 122 | array-unique@^0.2.1: 123 | version "0.2.1" 124 | resolved "https://registry.yarnpkg.com/array-unique/-/array-unique-0.2.1.tgz#a1d97ccafcbc2625cc70fadceb36a50c58b01a53" 125 | integrity sha1-odl8yvy8JiXMcPrc6zalDFiwGlM= 126 | 127 | arrify@^1.0.0, arrify@^1.0.1: 128 | version "1.0.1" 129 | resolved "https://registry.yarnpkg.com/arrify/-/arrify-1.0.1.tgz#898508da2226f380df904728456849c1501a4b0d" 130 | integrity sha1-iYUI2iIm84DfkEcoRWhJwVAaSw0= 131 | 132 | asn1.js@^4.0.0: 133 | version "4.9.0" 134 | resolved "https://registry.yarnpkg.com/asn1.js/-/asn1.js-4.9.0.tgz#f71a1243f3e79d46d7b07d7fbf4824ee73af054a" 135 | integrity sha1-9xoSQ/PnnUbXsH1/v0gk7nOvBUo= 136 | dependencies: 137 | bn.js "^4.0.0" 138 | inherits "^2.0.1" 139 | minimalistic-assert "^1.0.0" 140 | 141 | asn1@~0.2.3: 142 | version "0.2.3" 143 | resolved "https://registry.yarnpkg.com/asn1/-/asn1-0.2.3.tgz#dac8787713c9966849fc8180777ebe9c1ddf3b86" 144 | integrity sha1-2sh4dxPJlmhJ/IGAd36+nB3fO4Y= 145 | 146 | assert-plus@^0.2.0: 147 | version "0.2.0" 148 | resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-0.2.0.tgz#d74e1b87e7affc0db8aadb7021f3fe48101ab234" 149 | integrity sha1-104bh+ev/A24qttwIfP+SBAasjQ= 150 | 151 | assert-plus@^1.0.0: 152 | version "1.0.0" 153 | resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-1.0.0.tgz#f12e0f3c5d77b0b1cdd9146942e4e96c1e4dd525" 154 | integrity sha1-8S4PPF13sLHN2RRpQuTpbB5N1SU= 155 | 156 | assert@^1.3.0: 157 | version "1.4.1" 158 | resolved "https://registry.yarnpkg.com/assert/-/assert-1.4.1.tgz#99912d591836b5a6f5b345c0f07eefc08fc65d91" 159 | integrity sha1-mZEtWRg2tab1s0XA8H7vwI/GXZE= 160 | dependencies: 161 | util "0.10.3" 162 | 163 | assertion-error@^1.0.1: 164 | version "1.0.2" 165 | resolved "https://registry.yarnpkg.com/assertion-error/-/assertion-error-1.0.2.tgz#13ca515d86206da0bac66e834dd397d87581094c" 166 | integrity sha1-E8pRXYYgbaC6xm6DTdOX2HWBCUw= 167 | 168 | async-each@^1.0.0: 169 | version "1.0.1" 170 | resolved "https://registry.yarnpkg.com/async-each/-/async-each-1.0.1.tgz#19d386a1d9edc6e7c1c85d388aedbcc56d33602d" 171 | integrity sha1-GdOGodntxufByF04iu28xW0zYC0= 172 | 173 | async@^1.4.0, async@^1.4.2: 174 | version "1.5.2" 175 | resolved "https://registry.yarnpkg.com/async/-/async-1.5.2.tgz#ec6a61ae56480c0c3cb241c95618e20892f9672a" 176 | integrity sha1-7GphrlZIDAw8skHJVhjiCJL5Zyo= 177 | 178 | async@~0.2.6: 179 | version "0.2.10" 180 | resolved "https://registry.yarnpkg.com/async/-/async-0.2.10.tgz#b6bbe0b0674b9d719708ca38de8c237cb526c3d1" 181 | integrity sha1-trvgsGdLnXGXCMo43owjfLUmw9E= 182 | 183 | asynckit@^0.4.0: 184 | version "0.4.0" 185 | resolved "https://registry.yarnpkg.com/asynckit/-/asynckit-0.4.0.tgz#c79ed97f7f34cb8f2ba1bc9790bcc366474b4b79" 186 | integrity sha1-x57Zf380y48robyXkLzDZkdLS3k= 187 | 188 | aws-sign2@~0.6.0: 189 | version "0.6.0" 190 | resolved "https://registry.yarnpkg.com/aws-sign2/-/aws-sign2-0.6.0.tgz#14342dd38dbcc94d0e5b87d763cd63612c0e794f" 191 | integrity sha1-FDQt0428yU0OW4fXY81jYSwOeU8= 192 | 193 | aws4@^1.2.1: 194 | version "1.5.0" 195 | resolved "https://registry.yarnpkg.com/aws4/-/aws4-1.5.0.tgz#0a29ffb79c31c9e712eeb087e8e7a64b4a56d755" 196 | integrity sha1-Cin/t5wxyecS7rCH6OemS0pW11U= 197 | 198 | babel-code-frame@^6.20.0: 199 | version "6.20.0" 200 | resolved "https://registry.yarnpkg.com/babel-code-frame/-/babel-code-frame-6.20.0.tgz#b968f839090f9a8bc6d41938fb96cb84f7387b26" 201 | integrity sha1-uWj4OQkPmovG1Bk4+5bLhPc4eyY= 202 | dependencies: 203 | chalk "^1.1.0" 204 | esutils "^2.0.2" 205 | js-tokens "^2.0.0" 206 | 207 | babel-generator@^6.11.4, babel-generator@^6.18.0: 208 | version "6.19.0" 209 | resolved "https://registry.yarnpkg.com/babel-generator/-/babel-generator-6.19.0.tgz#9b2f244204777a3d6810ec127c673c87b349fac5" 210 | integrity sha1-my8kQgR3ej1oEOwSfGc8h7NJ+sU= 211 | dependencies: 212 | babel-messages "^6.8.0" 213 | babel-runtime "^6.9.0" 214 | babel-types "^6.19.0" 215 | detect-indent "^4.0.0" 216 | jsesc "^1.3.0" 217 | lodash "^4.2.0" 218 | source-map "^0.5.0" 219 | 220 | babel-messages@^6.8.0: 221 | version "6.8.0" 222 | resolved "https://registry.yarnpkg.com/babel-messages/-/babel-messages-6.8.0.tgz#bf504736ca967e6d65ef0adb5a2a5f947c8e0eb9" 223 | integrity sha1-v1BHNsqWfm1l7wrbWipflHyODrk= 224 | dependencies: 225 | babel-runtime "^6.0.0" 226 | 227 | babel-runtime@^6.0.0, babel-runtime@^6.9.0, babel-runtime@^6.9.1: 228 | version "6.18.0" 229 | resolved "https://registry.yarnpkg.com/babel-runtime/-/babel-runtime-6.18.0.tgz#0f4177ffd98492ef13b9f823e9994a02584c9078" 230 | integrity sha1-D0F3/9mEku8Tufgj6ZlKAlhMkHg= 231 | dependencies: 232 | core-js "^2.4.0" 233 | regenerator-runtime "^0.9.5" 234 | 235 | babel-runtime@^6.20.0: 236 | version "6.20.0" 237 | resolved "https://registry.yarnpkg.com/babel-runtime/-/babel-runtime-6.20.0.tgz#87300bdcf4cd770f09bf0048c64204e17806d16f" 238 | integrity sha1-hzAL3PTNdw8JvwBIxkIE4XgG0W8= 239 | dependencies: 240 | core-js "^2.4.0" 241 | regenerator-runtime "^0.10.0" 242 | 243 | babel-template@^6.16.0: 244 | version "6.16.0" 245 | resolved "https://registry.yarnpkg.com/babel-template/-/babel-template-6.16.0.tgz#e149dd1a9f03a35f817ddbc4d0481988e7ebc8ca" 246 | integrity sha1-4UndGp8Do1+BfdvE0EgZiOfryMo= 247 | dependencies: 248 | babel-runtime "^6.9.0" 249 | babel-traverse "^6.16.0" 250 | babel-types "^6.16.0" 251 | babylon "^6.11.0" 252 | lodash "^4.2.0" 253 | 254 | babel-traverse@^6.16.0, babel-traverse@^6.18.0: 255 | version "6.20.0" 256 | resolved "https://registry.yarnpkg.com/babel-traverse/-/babel-traverse-6.20.0.tgz#5378d1a743e3d856e6a52289994100bbdfd9872a" 257 | integrity sha1-U3jRp0Pj2FbmpSKJmUEAu9/Zhyo= 258 | dependencies: 259 | babel-code-frame "^6.20.0" 260 | babel-messages "^6.8.0" 261 | babel-runtime "^6.20.0" 262 | babel-types "^6.20.0" 263 | babylon "^6.11.0" 264 | debug "^2.2.0" 265 | globals "^9.0.0" 266 | invariant "^2.2.0" 267 | lodash "^4.2.0" 268 | 269 | babel-types@^6.11.1, babel-types@^6.18.0, babel-types@^6.19.0: 270 | version "6.19.0" 271 | resolved "https://registry.yarnpkg.com/babel-types/-/babel-types-6.19.0.tgz#8db2972dbed01f1192a8b602ba1e1e4c516240b9" 272 | integrity sha1-jbKXLb7QHxGSqLYCuh4eTFFiQLk= 273 | dependencies: 274 | babel-runtime "^6.9.1" 275 | esutils "^2.0.2" 276 | lodash "^4.2.0" 277 | to-fast-properties "^1.0.1" 278 | 279 | babel-types@^6.16.0, babel-types@^6.20.0: 280 | version "6.20.0" 281 | resolved "https://registry.yarnpkg.com/babel-types/-/babel-types-6.20.0.tgz#3869ecb98459533b37df809886b3f7f3b08d2baa" 282 | integrity sha1-OGnsuYRZUzs334CYhrP387CNK6o= 283 | dependencies: 284 | babel-runtime "^6.20.0" 285 | esutils "^2.0.2" 286 | lodash "^4.2.0" 287 | to-fast-properties "^1.0.1" 288 | 289 | babylon@^6.11.0, babylon@^6.13.0, babylon@^6.8.4: 290 | version "6.14.1" 291 | resolved "https://registry.yarnpkg.com/babylon/-/babylon-6.14.1.tgz#956275fab72753ad9b3435d7afe58f8bf0a29815" 292 | integrity sha1-lWJ1+rcnU62bNDXXr+WPi/CimBU= 293 | 294 | balanced-match@^0.4.1: 295 | version "0.4.2" 296 | resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-0.4.2.tgz#cb3f3e3c732dc0f01ee70b403f302e61d7709838" 297 | integrity sha1-yz8+PHMtwPAe5wtAPzAuYddwmDg= 298 | 299 | base64-js@^1.0.2: 300 | version "1.2.0" 301 | resolved "https://registry.yarnpkg.com/base64-js/-/base64-js-1.2.0.tgz#a39992d723584811982be5e290bb6a53d86700f1" 302 | integrity sha1-o5mS1yNYSBGYK+XikLtqU9hnAPE= 303 | 304 | bcrypt-pbkdf@^1.0.0: 305 | version "1.0.0" 306 | resolved "https://registry.yarnpkg.com/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.0.tgz#3ca76b85241c7170bf7d9703e7b9aa74630040d4" 307 | integrity sha1-PKdrhSQccXC/fZcD57mqdGMAQNQ= 308 | dependencies: 309 | tweetnacl "^0.14.3" 310 | 311 | binary-extensions@^1.0.0: 312 | version "1.7.0" 313 | resolved "https://registry.yarnpkg.com/binary-extensions/-/binary-extensions-1.7.0.tgz#6c1610db163abfb34edfe42fa423343a1e01185d" 314 | integrity sha1-bBYQ2xY6v7NO3+QvpCM0Oh4BGF0= 315 | 316 | block-stream@*: 317 | version "0.0.9" 318 | resolved "https://registry.yarnpkg.com/block-stream/-/block-stream-0.0.9.tgz#13ebfe778a03205cfe03751481ebb4b3300c126a" 319 | integrity sha1-E+v+d4oDIFz+A3UUgeu0szAMEmo= 320 | dependencies: 321 | inherits "~2.0.0" 322 | 323 | bn.js@^4.0.0, bn.js@^4.1.0, bn.js@^4.1.1, bn.js@^4.4.0: 324 | version "4.11.6" 325 | resolved "https://registry.yarnpkg.com/bn.js/-/bn.js-4.11.6.tgz#53344adb14617a13f6e8dd2ce28905d1c0ba3215" 326 | integrity sha1-UzRK2xRhehP26N0s4okF0cC6MhU= 327 | 328 | boom@2.x.x: 329 | version "2.10.1" 330 | resolved "https://registry.yarnpkg.com/boom/-/boom-2.10.1.tgz#39c8918ceff5799f83f9492a848f625add0c766f" 331 | integrity sha1-OciRjO/1eZ+D+UkqhI9iWt0Mdm8= 332 | dependencies: 333 | hoek "2.x.x" 334 | 335 | boxen@^0.6.0: 336 | version "0.6.0" 337 | resolved "https://registry.yarnpkg.com/boxen/-/boxen-0.6.0.tgz#8364d4248ac34ff0ef1b2f2bf49a6c60ce0d81b6" 338 | integrity sha1-g2TUJIrDT/DvGy8r9JpsYM4NgbY= 339 | dependencies: 340 | ansi-align "^1.1.0" 341 | camelcase "^2.1.0" 342 | chalk "^1.1.1" 343 | cli-boxes "^1.0.0" 344 | filled-array "^1.0.0" 345 | object-assign "^4.0.1" 346 | repeating "^2.0.0" 347 | string-width "^1.0.1" 348 | widest-line "^1.0.0" 349 | 350 | brace-expansion@^1.0.0: 351 | version "1.1.6" 352 | resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.6.tgz#7197d7eaa9b87e648390ea61fc66c84427420df9" 353 | integrity sha1-cZfX6qm4fmSDkOph/GbIRCdCDfk= 354 | dependencies: 355 | balanced-match "^0.4.1" 356 | concat-map "0.0.1" 357 | 358 | braces@^1.8.2: 359 | version "1.8.5" 360 | resolved "https://registry.yarnpkg.com/braces/-/braces-1.8.5.tgz#ba77962e12dff969d6b76711e914b737857bf6a7" 361 | integrity sha1-uneWLhLf+WnWt2cR6RS3N4V79qc= 362 | dependencies: 363 | expand-range "^1.8.1" 364 | preserve "^0.2.0" 365 | repeat-element "^1.1.2" 366 | 367 | brorand@^1.0.1: 368 | version "1.0.6" 369 | resolved "https://registry.yarnpkg.com/brorand/-/brorand-1.0.6.tgz#4028706b915f91f7b349a2e0bf3c376039d216e5" 370 | integrity sha1-QChwa5FfkfezSaLgvzw3YDnSFuU= 371 | 372 | browser-stdout@1.3.0: 373 | version "1.3.0" 374 | resolved "https://registry.yarnpkg.com/browser-stdout/-/browser-stdout-1.3.0.tgz#f351d32969d32fa5d7a5567154263d928ae3bd1f" 375 | integrity sha1-81HTKWnTL6XXpVZxVCY9korjvR8= 376 | 377 | browserify-aes@^1.0.0, browserify-aes@^1.0.4: 378 | version "1.0.6" 379 | resolved "https://registry.yarnpkg.com/browserify-aes/-/browserify-aes-1.0.6.tgz#5e7725dbdef1fd5930d4ebab48567ce451c48a0a" 380 | integrity sha1-Xncl297x/Vkw1OurSFZ85FHEigo= 381 | dependencies: 382 | buffer-xor "^1.0.2" 383 | cipher-base "^1.0.0" 384 | create-hash "^1.1.0" 385 | evp_bytestokey "^1.0.0" 386 | inherits "^2.0.1" 387 | 388 | browserify-cipher@^1.0.0: 389 | version "1.0.0" 390 | resolved "https://registry.yarnpkg.com/browserify-cipher/-/browserify-cipher-1.0.0.tgz#9988244874bf5ed4e28da95666dcd66ac8fc363a" 391 | integrity sha1-mYgkSHS/XtTijalWZtzWasj8Njo= 392 | dependencies: 393 | browserify-aes "^1.0.4" 394 | browserify-des "^1.0.0" 395 | evp_bytestokey "^1.0.0" 396 | 397 | browserify-des@^1.0.0: 398 | version "1.0.0" 399 | resolved "https://registry.yarnpkg.com/browserify-des/-/browserify-des-1.0.0.tgz#daa277717470922ed2fe18594118a175439721dd" 400 | integrity sha1-2qJ3cXRwki7S/hhZQRihdUOXId0= 401 | dependencies: 402 | cipher-base "^1.0.1" 403 | des.js "^1.0.0" 404 | inherits "^2.0.1" 405 | 406 | browserify-rsa@^4.0.0: 407 | version "4.0.1" 408 | resolved "https://registry.yarnpkg.com/browserify-rsa/-/browserify-rsa-4.0.1.tgz#21e0abfaf6f2029cf2fafb133567a701d4135524" 409 | integrity sha1-IeCr+vbyApzy+vsTNWenAdQTVSQ= 410 | dependencies: 411 | bn.js "^4.1.0" 412 | randombytes "^2.0.1" 413 | 414 | browserify-sign@^4.0.0: 415 | version "4.0.0" 416 | resolved "https://registry.yarnpkg.com/browserify-sign/-/browserify-sign-4.0.0.tgz#10773910c3c206d5420a46aad8694f820b85968f" 417 | integrity sha1-EHc5EMPCBtVCCkaq2GlPgguFlo8= 418 | dependencies: 419 | bn.js "^4.1.1" 420 | browserify-rsa "^4.0.0" 421 | create-hash "^1.1.0" 422 | create-hmac "^1.1.2" 423 | elliptic "^6.0.0" 424 | inherits "^2.0.1" 425 | parse-asn1 "^5.0.0" 426 | 427 | browserify-zlib@^0.1.4: 428 | version "0.1.4" 429 | resolved "https://registry.yarnpkg.com/browserify-zlib/-/browserify-zlib-0.1.4.tgz#bb35f8a519f600e0fa6b8485241c979d0141fb2d" 430 | integrity sha1-uzX4pRn2AOD6a4SFJByXnQFB+y0= 431 | dependencies: 432 | pako "~0.2.0" 433 | 434 | buffer-shims@^1.0.0: 435 | version "1.0.0" 436 | resolved "https://registry.yarnpkg.com/buffer-shims/-/buffer-shims-1.0.0.tgz#9978ce317388c649ad8793028c3477ef044a8b51" 437 | integrity sha1-mXjOMXOIxkmth5MCjDR37wRKi1E= 438 | 439 | buffer-xor@^1.0.2: 440 | version "1.0.3" 441 | resolved "https://registry.yarnpkg.com/buffer-xor/-/buffer-xor-1.0.3.tgz#26e61ed1422fb70dd42e6e36729ed51d855fe8d9" 442 | integrity sha1-JuYe0UIvtw3ULm42cp7VHYVf6Nk= 443 | 444 | buffer@^4.5.1: 445 | version "4.9.1" 446 | resolved "https://registry.yarnpkg.com/buffer/-/buffer-4.9.1.tgz#6d1bb601b07a4efced97094132093027c95bc298" 447 | integrity sha1-bRu2AbB6TvztlwlBMgkwJ8lbwpg= 448 | dependencies: 449 | base64-js "^1.0.2" 450 | ieee754 "^1.1.4" 451 | isarray "^1.0.0" 452 | 453 | builtin-modules@^1.0.0: 454 | version "1.1.1" 455 | resolved "https://registry.yarnpkg.com/builtin-modules/-/builtin-modules-1.1.1.tgz#270f076c5a72c02f5b65a47df94c5fe3a278892f" 456 | integrity sha1-Jw8HbFpywC9bZaR9+Uxf46J4iS8= 457 | 458 | builtin-modules@^2.0.0: 459 | version "2.0.0" 460 | resolved "https://registry.yarnpkg.com/builtin-modules/-/builtin-modules-2.0.0.tgz#60b7ef5ae6546bd7deefa74b08b62a43a232648e" 461 | integrity sha512-3U5kUA5VPsRUA3nofm/BXX7GVHKfxz0hOBAPxXrIvHzlDRkQVqEn6yi8QJegxl4LzOHLdvb7XF5dVawa/VVYBg== 462 | 463 | builtin-status-codes@^2.0.0: 464 | version "2.0.0" 465 | resolved "https://registry.yarnpkg.com/builtin-status-codes/-/builtin-status-codes-2.0.0.tgz#6f22003baacf003ccd287afe6872151fddc58579" 466 | integrity sha1-byIAO6rPADzNKHr+aHIVH93FhXk= 467 | 468 | caching-transform@^1.0.0: 469 | version "1.0.1" 470 | resolved "https://registry.yarnpkg.com/caching-transform/-/caching-transform-1.0.1.tgz#6dbdb2f20f8d8fbce79f3e94e9d1742dcdf5c0a1" 471 | integrity sha1-bb2y8g+Nj7znnz6U6dF0Lc31wKE= 472 | dependencies: 473 | md5-hex "^1.2.0" 474 | mkdirp "^0.5.1" 475 | write-file-atomic "^1.1.4" 476 | 477 | camelcase@^1.0.2: 478 | version "1.2.1" 479 | resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-1.2.1.tgz#9bb5304d2e0b56698b2c758b08a3eaa9daa58a39" 480 | integrity sha1-m7UwTS4LVmmLLHWLCKPqqdqlijk= 481 | 482 | camelcase@^2.1.0: 483 | version "2.1.1" 484 | resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-2.1.1.tgz#7c1d16d679a1bbe59ca02cacecfb011e201f5a1f" 485 | integrity sha1-fB0W1nmhu+WcoCys7PsBHiAfWh8= 486 | 487 | camelcase@^3.0.0: 488 | version "3.0.0" 489 | resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-3.0.0.tgz#32fc4b9fcdaf845fcdf7e73bb97cac2261f0ab0a" 490 | integrity sha1-MvxLn82vhF/N9+c7uXysImHwqwo= 491 | 492 | capture-stack-trace@^1.0.0: 493 | version "1.0.0" 494 | resolved "https://registry.yarnpkg.com/capture-stack-trace/-/capture-stack-trace-1.0.0.tgz#4a6fa07399c26bba47f0b2496b4d0fb408c5550d" 495 | integrity sha1-Sm+gc5nCa7pH8LJJa00PtAjFVQ0= 496 | 497 | caseless@~0.11.0: 498 | version "0.11.0" 499 | resolved "https://registry.yarnpkg.com/caseless/-/caseless-0.11.0.tgz#715b96ea9841593cc33067923f5ec60ebda4f7d7" 500 | integrity sha1-cVuW6phBWTzDMGeSP17GDr2k99c= 501 | 502 | center-align@^0.1.1: 503 | version "0.1.3" 504 | resolved "https://registry.yarnpkg.com/center-align/-/center-align-0.1.3.tgz#aa0d32629b6ee972200411cbd4461c907bc2b7ad" 505 | integrity sha1-qg0yYptu6XIgBBHL1EYckHvCt60= 506 | dependencies: 507 | align-text "^0.1.3" 508 | lazy-cache "^1.0.3" 509 | 510 | chai@3.5.0: 511 | version "3.5.0" 512 | resolved "https://registry.yarnpkg.com/chai/-/chai-3.5.0.tgz#4d02637b067fe958bdbfdd3a40ec56fef7373247" 513 | integrity sha1-TQJjewZ/6Vi9v906QOxW/vc3Mkc= 514 | dependencies: 515 | assertion-error "^1.0.1" 516 | deep-eql "^0.1.3" 517 | type-detect "^1.0.0" 518 | 519 | chalk@^1.0.0, chalk@^1.1.0, chalk@^1.1.1: 520 | version "1.1.3" 521 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-1.1.3.tgz#a8115c55e4a702fe4d150abd3872822a7e09fc98" 522 | integrity sha1-qBFcVeSnAv5NFQq9OHKCKn4J/Jg= 523 | dependencies: 524 | ansi-styles "^2.2.1" 525 | escape-string-regexp "^1.0.2" 526 | has-ansi "^2.0.0" 527 | strip-ansi "^3.0.0" 528 | supports-color "^2.0.0" 529 | 530 | charenc@~0.0.1: 531 | version "0.0.2" 532 | resolved "https://registry.yarnpkg.com/charenc/-/charenc-0.0.2.tgz#c0a1d2f3a7092e03774bfa83f14c0fc5790a8667" 533 | integrity sha1-wKHS86cJLgN3S/qD8UwPxXkKhmc= 534 | 535 | chokidar@^1.6.0: 536 | version "1.6.1" 537 | resolved "https://registry.yarnpkg.com/chokidar/-/chokidar-1.6.1.tgz#2f4447ab5e96e50fb3d789fd90d4c72e0e4c70c2" 538 | integrity sha1-L0RHq16W5Q+z14n9kNTHLg5McMI= 539 | dependencies: 540 | anymatch "^1.3.0" 541 | async-each "^1.0.0" 542 | glob-parent "^2.0.0" 543 | inherits "^2.0.1" 544 | is-binary-path "^1.0.0" 545 | is-glob "^2.0.0" 546 | path-is-absolute "^1.0.0" 547 | readdirp "^2.0.0" 548 | optionalDependencies: 549 | fsevents "^1.0.0" 550 | 551 | cipher-base@^1.0.0, cipher-base@^1.0.1: 552 | version "1.0.3" 553 | resolved "https://registry.yarnpkg.com/cipher-base/-/cipher-base-1.0.3.tgz#eeabf194419ce900da3018c207d212f2a6df0a07" 554 | integrity sha1-7qvxlEGc6QDaMBjCB9IS8qbfCgc= 555 | dependencies: 556 | inherits "^2.0.1" 557 | 558 | cli-boxes@^1.0.0: 559 | version "1.0.0" 560 | resolved "https://registry.yarnpkg.com/cli-boxes/-/cli-boxes-1.0.0.tgz#4fa917c3e59c94a004cd61f8ee509da651687143" 561 | integrity sha1-T6kXw+WclKAEzWH47lCdplFocUM= 562 | 563 | cliui@^2.1.0: 564 | version "2.1.0" 565 | resolved "https://registry.yarnpkg.com/cliui/-/cliui-2.1.0.tgz#4b475760ff80264c762c3a1719032e91c7fea0d1" 566 | integrity sha1-S0dXYP+AJkx2LDoXGQMukcf+oNE= 567 | dependencies: 568 | center-align "^0.1.1" 569 | right-align "^0.1.1" 570 | wordwrap "0.0.2" 571 | 572 | cliui@^3.2.0: 573 | version "3.2.0" 574 | resolved "https://registry.yarnpkg.com/cliui/-/cliui-3.2.0.tgz#120601537a916d29940f934da3b48d585a39213d" 575 | integrity sha1-EgYBU3qRbSmUD5NNo7SNWFo5IT0= 576 | dependencies: 577 | string-width "^1.0.1" 578 | strip-ansi "^3.0.1" 579 | wrap-ansi "^2.0.0" 580 | 581 | code-point-at@^1.0.0: 582 | version "1.1.0" 583 | resolved "https://registry.yarnpkg.com/code-point-at/-/code-point-at-1.1.0.tgz#0d070b4d043a5bea33a2f1a40e2edb3d9a4ccf77" 584 | integrity sha1-DQcLTQQ6W+ozovGkDi7bPZpMz3c= 585 | 586 | codecov@^1.0.1: 587 | version "1.0.1" 588 | resolved "https://registry.yarnpkg.com/codecov/-/codecov-1.0.1.tgz#97260ceac0e96b8eda8d562006558a53a139dffd" 589 | integrity sha1-lyYM6sDpa47ajVYgBlWKU6E53/0= 590 | dependencies: 591 | argv ">=0.0.2" 592 | execSync "1.0.2" 593 | request ">=2.42.0" 594 | urlgrey ">=0.4.0" 595 | 596 | colors@^1.1.2: 597 | version "1.1.2" 598 | resolved "https://registry.yarnpkg.com/colors/-/colors-1.1.2.tgz#168a4701756b6a7f51a12ce0c97bfa28c084ed63" 599 | integrity sha1-FopHAXVran9RoSzgyXv6KMCE7WM= 600 | 601 | combined-stream@^1.0.5, combined-stream@~1.0.5: 602 | version "1.0.5" 603 | resolved "https://registry.yarnpkg.com/combined-stream/-/combined-stream-1.0.5.tgz#938370a57b4a51dea2c77c15d5c5fdf895164009" 604 | integrity sha1-k4NwpXtKUd6ix3wV1cX9+JUWQAk= 605 | dependencies: 606 | delayed-stream "~1.0.0" 607 | 608 | commander@2.9.0, commander@^2.9.0: 609 | version "2.9.0" 610 | resolved "https://registry.yarnpkg.com/commander/-/commander-2.9.0.tgz#9c99094176e12240cb22d6c5146098400fe0f7d4" 611 | integrity sha1-nJkJQXbhIkDLItbFFGCYQA/g99Q= 612 | dependencies: 613 | graceful-readlink ">= 1.0.0" 614 | 615 | commondir@^1.0.1: 616 | version "1.0.1" 617 | resolved "https://registry.yarnpkg.com/commondir/-/commondir-1.0.1.tgz#ddd800da0c66127393cca5950ea968a3aaf1253b" 618 | integrity sha1-3dgA2gxmEnOTzKWVDqloo6rxJTs= 619 | 620 | concat-map@0.0.1: 621 | version "0.0.1" 622 | resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b" 623 | integrity sha1-2Klr13/Wjfd5OnMDajug1UBdR3s= 624 | 625 | concat-stream@^1.4.7: 626 | version "1.5.2" 627 | resolved "https://registry.yarnpkg.com/concat-stream/-/concat-stream-1.5.2.tgz#708978624d856af41a5a741defdd261da752c266" 628 | integrity sha1-cIl4Yk2FavQaWnQd790mHadSwmY= 629 | dependencies: 630 | inherits "~2.0.1" 631 | readable-stream "~2.0.0" 632 | typedarray "~0.0.5" 633 | 634 | configstore@^2.0.0: 635 | version "2.1.0" 636 | resolved "https://registry.yarnpkg.com/configstore/-/configstore-2.1.0.tgz#737a3a7036e9886102aa6099e47bb33ab1aba1a1" 637 | integrity sha1-c3o6cDbpiGECqmCZ5HuzOrGroaE= 638 | dependencies: 639 | dot-prop "^3.0.0" 640 | graceful-fs "^4.1.2" 641 | mkdirp "^0.5.0" 642 | object-assign "^4.0.1" 643 | os-tmpdir "^1.0.0" 644 | osenv "^0.1.0" 645 | uuid "^2.0.1" 646 | write-file-atomic "^1.1.2" 647 | xdg-basedir "^2.0.0" 648 | 649 | console-browserify@^1.1.0: 650 | version "1.1.0" 651 | resolved "https://registry.yarnpkg.com/console-browserify/-/console-browserify-1.1.0.tgz#f0241c45730a9fc6323b206dbf38edc741d0bb10" 652 | integrity sha1-8CQcRXMKn8YyOyBtvzjtx0HQuxA= 653 | dependencies: 654 | date-now "^0.1.4" 655 | 656 | console-control-strings@^1.0.0, console-control-strings@~1.1.0: 657 | version "1.1.0" 658 | resolved "https://registry.yarnpkg.com/console-control-strings/-/console-control-strings-1.1.0.tgz#3d7cf4464db6446ea644bf4b39507f9851008e8e" 659 | integrity sha1-PXz0Rk22RG6mRL9LOVB/mFEAjo4= 660 | 661 | constants-browserify@^1.0.0: 662 | version "1.0.0" 663 | resolved "https://registry.yarnpkg.com/constants-browserify/-/constants-browserify-1.0.0.tgz#c20b96d8c617748aaf1c16021760cd27fcb8cb75" 664 | integrity sha1-wguW2MYXdIqvHBYCF2DNJ/y4y3U= 665 | 666 | content-disposition@0.5.1: 667 | version "0.5.1" 668 | resolved "https://registry.yarnpkg.com/content-disposition/-/content-disposition-0.5.1.tgz#87476c6a67c8daa87e32e87616df883ba7fb071b" 669 | integrity sha1-h0dsamfI2qh+Muh2Ft+IO6f7Bxs= 670 | 671 | content-type@~1.0.2: 672 | version "1.0.2" 673 | resolved "https://registry.yarnpkg.com/content-type/-/content-type-1.0.2.tgz#b7d113aee7a8dd27bd21133c4dc2529df1721eed" 674 | integrity sha1-t9ETrueo3Se9IRM8TcJSnfFyHu0= 675 | 676 | convert-source-map@^1.3.0: 677 | version "1.3.0" 678 | resolved "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-1.3.0.tgz#e9f3e9c6e2728efc2676696a70eb382f73106a67" 679 | integrity sha1-6fPpxuJyjvwmdmlqcOs4L3MQamc= 680 | 681 | cookie-signature@1.0.6: 682 | version "1.0.6" 683 | resolved "https://registry.yarnpkg.com/cookie-signature/-/cookie-signature-1.0.6.tgz#e303a882b342cc3ee8ca513a79999734dab3ae2c" 684 | integrity sha1-4wOogrNCzD7oylE6eZmXNNqzriw= 685 | 686 | cookie@0.3.1: 687 | version "0.3.1" 688 | resolved "https://registry.yarnpkg.com/cookie/-/cookie-0.3.1.tgz#e7e0a1f9ef43b4c8ba925c5c5a96e806d16873bb" 689 | integrity sha1-5+Ch+e9DtMi6klxcWpboBtFoc7s= 690 | 691 | core-js@^2.4.0: 692 | version "2.4.1" 693 | resolved "https://registry.yarnpkg.com/core-js/-/core-js-2.4.1.tgz#4de911e667b0eae9124e34254b53aea6fc618d3e" 694 | integrity sha1-TekR5mew6ukSTjQlS1OupvxhjT4= 695 | 696 | core-util-is@~1.0.0: 697 | version "1.0.2" 698 | resolved "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.2.tgz#b5fd54220aa2bc5ab57aab7140c940754503c1a7" 699 | integrity sha1-tf1UIgqivFq1eqtxQMlAdUUDwac= 700 | 701 | create-ecdh@^4.0.0: 702 | version "4.0.0" 703 | resolved "https://registry.yarnpkg.com/create-ecdh/-/create-ecdh-4.0.0.tgz#888c723596cdf7612f6498233eebd7a35301737d" 704 | integrity sha1-iIxyNZbN92EvZJgjPuvXo1MBc30= 705 | dependencies: 706 | bn.js "^4.1.0" 707 | elliptic "^6.0.0" 708 | 709 | create-error-class@^3.0.1: 710 | version "3.0.2" 711 | resolved "https://registry.yarnpkg.com/create-error-class/-/create-error-class-3.0.2.tgz#06be7abef947a3f14a30fd610671d401bca8b7b6" 712 | integrity sha1-Br56vvlHo/FKMP1hBnHUAbyot7Y= 713 | dependencies: 714 | capture-stack-trace "^1.0.0" 715 | 716 | create-hash@^1.1.0, create-hash@^1.1.1: 717 | version "1.1.2" 718 | resolved "https://registry.yarnpkg.com/create-hash/-/create-hash-1.1.2.tgz#51210062d7bb7479f6c65bb41a92208b1d61abad" 719 | integrity sha1-USEAYte7dHn2xlu0GpIgix1hq60= 720 | dependencies: 721 | cipher-base "^1.0.1" 722 | inherits "^2.0.1" 723 | ripemd160 "^1.0.0" 724 | sha.js "^2.3.6" 725 | 726 | create-hmac@^1.1.0, create-hmac@^1.1.2: 727 | version "1.1.4" 728 | resolved "https://registry.yarnpkg.com/create-hmac/-/create-hmac-1.1.4.tgz#d3fb4ba253eb8b3f56e39ea2fbcb8af747bd3170" 729 | integrity sha1-0/tLolPriz9W456i+8uK90e9MXA= 730 | dependencies: 731 | create-hash "^1.1.0" 732 | inherits "^2.0.1" 733 | 734 | cross-spawn-async@^2.0.0: 735 | version "2.2.5" 736 | resolved "https://registry.yarnpkg.com/cross-spawn-async/-/cross-spawn-async-2.2.5.tgz#845ff0c0834a3ded9d160daca6d390906bb288cc" 737 | integrity sha1-hF/wwINKPe2dFg2sptOQkGuyiMw= 738 | dependencies: 739 | lru-cache "^4.0.0" 740 | which "^1.2.8" 741 | 742 | cross-spawn@2.0.x: 743 | version "2.0.1" 744 | resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-2.0.1.tgz#ab6fd893a099759d9b85220e3a64397de946b0f6" 745 | integrity sha1-q2/Yk6CZdZ2bhSIOOmQ5felGsPY= 746 | dependencies: 747 | cross-spawn-async "^2.0.0" 748 | spawn-sync "1.0.13" 749 | 750 | cross-spawn@^4: 751 | version "4.0.2" 752 | resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-4.0.2.tgz#7b9247621c23adfdd3856004a823cbe397424d41" 753 | integrity sha1-e5JHYhwjrf3ThWAEqCPL45dCTUE= 754 | dependencies: 755 | lru-cache "^4.0.1" 756 | which "^1.2.9" 757 | 758 | crypt@~0.0.1: 759 | version "0.0.2" 760 | resolved "https://registry.yarnpkg.com/crypt/-/crypt-0.0.2.tgz#88d7ff7ec0dfb86f713dc87bbb42d044d3e6c41b" 761 | integrity sha1-iNf/fsDfuG9xPch7u0LQRNPmxBs= 762 | 763 | cryptiles@2.x.x: 764 | version "2.0.5" 765 | resolved "https://registry.yarnpkg.com/cryptiles/-/cryptiles-2.0.5.tgz#3bdfecdc608147c1c67202fa291e7dca59eaa3b8" 766 | integrity sha1-O9/s3GCBR8HGcgL6KR59ylnqo7g= 767 | dependencies: 768 | boom "2.x.x" 769 | 770 | crypto-browserify@^3.11.0: 771 | version "3.11.0" 772 | resolved "https://registry.yarnpkg.com/crypto-browserify/-/crypto-browserify-3.11.0.tgz#3652a0906ab9b2a7e0c3ce66a408e957a2485522" 773 | integrity sha1-NlKgkGq5sqfgw85mpAjpV6JIVSI= 774 | dependencies: 775 | browserify-cipher "^1.0.0" 776 | browserify-sign "^4.0.0" 777 | create-ecdh "^4.0.0" 778 | create-hash "^1.1.0" 779 | create-hmac "^1.1.0" 780 | diffie-hellman "^5.0.0" 781 | inherits "^2.0.1" 782 | pbkdf2 "^3.0.3" 783 | public-encrypt "^4.0.0" 784 | randombytes "^2.0.0" 785 | 786 | dashdash@^1.12.0: 787 | version "1.14.1" 788 | resolved "https://registry.yarnpkg.com/dashdash/-/dashdash-1.14.1.tgz#853cfa0f7cbe2fed5de20326b8dd581035f6e2f0" 789 | integrity sha1-hTz6D3y+L+1d4gMmuN1YEDX24vA= 790 | dependencies: 791 | assert-plus "^1.0.0" 792 | 793 | date-now@^0.1.4: 794 | version "0.1.4" 795 | resolved "https://registry.yarnpkg.com/date-now/-/date-now-0.1.4.tgz#eaf439fd4d4848ad74e5cc7dbef200672b9e345b" 796 | integrity sha1-6vQ5/U1ISK105cx9vvIAZyueNFs= 797 | 798 | debug-log@^1.0.1: 799 | version "1.0.1" 800 | resolved "https://registry.yarnpkg.com/debug-log/-/debug-log-1.0.1.tgz#2307632d4c04382b8df8a32f70b895046d52745f" 801 | integrity sha1-IwdjLUwEOCuN+KMvcLiVBG1SdF8= 802 | 803 | debug@2.2.0, debug@^2.2.0, debug@~2.2.0: 804 | version "2.2.0" 805 | resolved "https://registry.yarnpkg.com/debug/-/debug-2.2.0.tgz#f87057e995b1a1f6ae6a4960664137bc56f039da" 806 | integrity sha1-+HBX6ZWxofauaklgZkE3vFbwOdo= 807 | dependencies: 808 | ms "0.7.1" 809 | 810 | decamelize@^1.0.0, decamelize@^1.1.1: 811 | version "1.2.0" 812 | resolved "https://registry.yarnpkg.com/decamelize/-/decamelize-1.2.0.tgz#f6534d15148269b20352e7bee26f501f9a191290" 813 | integrity sha1-9lNNFRSCabIDUue+4m9QH5oZEpA= 814 | 815 | deep-eql@^0.1.3: 816 | version "0.1.3" 817 | resolved "https://registry.yarnpkg.com/deep-eql/-/deep-eql-0.1.3.tgz#ef558acab8de25206cd713906d74e56930eb69f2" 818 | integrity sha1-71WKyrjeJSBs1xOQbXTlaTDrafI= 819 | dependencies: 820 | type-detect "0.1.1" 821 | 822 | deep-extend@~0.4.0: 823 | version "0.4.1" 824 | resolved "https://registry.yarnpkg.com/deep-extend/-/deep-extend-0.4.1.tgz#efe4113d08085f4e6f9687759810f807469e2253" 825 | integrity sha1-7+QRPQgIX05vlod1mBD4B0aeIlM= 826 | 827 | default-require-extensions@^1.0.0: 828 | version "1.0.0" 829 | resolved "https://registry.yarnpkg.com/default-require-extensions/-/default-require-extensions-1.0.0.tgz#f37ea15d3e13ffd9b437d33e1a75b5fb97874cb8" 830 | integrity sha1-836hXT4T/9m0N9M+GnW1+5eHTLg= 831 | dependencies: 832 | strip-bom "^2.0.0" 833 | 834 | delayed-stream@~1.0.0: 835 | version "1.0.0" 836 | resolved "https://registry.yarnpkg.com/delayed-stream/-/delayed-stream-1.0.0.tgz#df3ae199acadfb7d440aaae0b29e2272b24ec619" 837 | integrity sha1-3zrhmayt+31ECqrgsp4icrJOxhk= 838 | 839 | delegates@^1.0.0: 840 | version "1.0.0" 841 | resolved "https://registry.yarnpkg.com/delegates/-/delegates-1.0.0.tgz#84c6e159b81904fdca59a0ef44cd870d31250f9a" 842 | integrity sha1-hMbhWbgZBP3KWaDvRM2HDTElD5o= 843 | 844 | depd@~1.1.0: 845 | version "1.1.0" 846 | resolved "https://registry.yarnpkg.com/depd/-/depd-1.1.0.tgz#e1bd82c6aab6ced965b97b88b17ed3e528ca18c3" 847 | integrity sha1-4b2Cxqq2ztlluXuIsX7T5SjKGMM= 848 | 849 | des.js@^1.0.0: 850 | version "1.0.0" 851 | resolved "https://registry.yarnpkg.com/des.js/-/des.js-1.0.0.tgz#c074d2e2aa6a8a9a07dbd61f9a15c2cd83ec8ecc" 852 | integrity sha1-wHTS4qpqipoH29YfmhXCzYPsjsw= 853 | dependencies: 854 | inherits "^2.0.1" 855 | minimalistic-assert "^1.0.0" 856 | 857 | destroy@~1.0.4: 858 | version "1.0.4" 859 | resolved "https://registry.yarnpkg.com/destroy/-/destroy-1.0.4.tgz#978857442c44749e4206613e37946205826abd80" 860 | integrity sha1-l4hXRCxEdJ5CBmE+N5RiBYJqvYA= 861 | 862 | detect-indent@^4.0.0: 863 | version "4.0.0" 864 | resolved "https://registry.yarnpkg.com/detect-indent/-/detect-indent-4.0.0.tgz#f76d064352cdf43a1cb6ce619c4ee3a9475de208" 865 | integrity sha1-920GQ1LN9Docts5hnE7jqUdd4gg= 866 | dependencies: 867 | repeating "^2.0.0" 868 | 869 | diff@1.4.0: 870 | version "1.4.0" 871 | resolved "https://registry.yarnpkg.com/diff/-/diff-1.4.0.tgz#7f28d2eb9ee7b15a97efd89ce63dcfdaa3ccbabf" 872 | integrity sha1-fyjS657nsVqX79ic5j3P2qPMur8= 873 | 874 | diff@^3.0.1: 875 | version "3.1.0" 876 | resolved "https://registry.yarnpkg.com/diff/-/diff-3.1.0.tgz#9406c73a401e6c2b3ba901c5e2c44eb6a60c5385" 877 | integrity sha1-lAbHOkAebCs7qQHF4sROtqYMU4U= 878 | 879 | diffie-hellman@^5.0.0: 880 | version "5.0.2" 881 | resolved "https://registry.yarnpkg.com/diffie-hellman/-/diffie-hellman-5.0.2.tgz#b5835739270cfe26acf632099fded2a07f209e5e" 882 | integrity sha1-tYNXOScM/ias9jIJn97SoH8gnl4= 883 | dependencies: 884 | bn.js "^4.1.0" 885 | miller-rabin "^4.0.0" 886 | randombytes "^2.0.0" 887 | 888 | domain-browser@^1.1.7: 889 | version "1.1.7" 890 | resolved "https://registry.yarnpkg.com/domain-browser/-/domain-browser-1.1.7.tgz#867aa4b093faa05f1de08c06f4d7b21fdf8698bc" 891 | integrity sha1-hnqksJP6oF8d4IwG9NeyH9+GmLw= 892 | 893 | dot-prop@^3.0.0: 894 | version "3.0.0" 895 | resolved "https://registry.yarnpkg.com/dot-prop/-/dot-prop-3.0.0.tgz#1b708af094a49c9a0e7dbcad790aba539dac1177" 896 | integrity sha1-G3CK8JSknJoOfbyteQq6U52sEXc= 897 | dependencies: 898 | is-obj "^1.0.0" 899 | 900 | duplexer2@^0.1.4: 901 | version "0.1.4" 902 | resolved "https://registry.yarnpkg.com/duplexer2/-/duplexer2-0.1.4.tgz#8b12dab878c0d69e3e7891051662a32fc6bddcc1" 903 | integrity sha1-ixLauHjA1p4+eJEFFmKjL8a93ME= 904 | dependencies: 905 | readable-stream "^2.0.2" 906 | 907 | ecc-jsbn@~0.1.1: 908 | version "0.1.1" 909 | resolved "https://registry.yarnpkg.com/ecc-jsbn/-/ecc-jsbn-0.1.1.tgz#0fc73a9ed5f0d53c38193398523ef7e543777505" 910 | integrity sha1-D8c6ntXw1Tw4GTOYUj735UN3dQU= 911 | dependencies: 912 | jsbn "~0.1.0" 913 | 914 | ee-first@1.1.1: 915 | version "1.1.1" 916 | resolved "https://registry.yarnpkg.com/ee-first/-/ee-first-1.1.1.tgz#590c61156b0ae2f4f0255732a158b266bc56b21d" 917 | integrity sha1-WQxhFWsK4vTwJVcyoViyZrxWsh0= 918 | 919 | elliptic@^6.0.0: 920 | version "6.3.2" 921 | resolved "https://registry.yarnpkg.com/elliptic/-/elliptic-6.3.2.tgz#e4c81e0829cf0a65ab70e998b8232723b5c1bc48" 922 | integrity sha1-5MgeCCnPCmWrcOmYuCMnI7XBvEg= 923 | dependencies: 924 | bn.js "^4.4.0" 925 | brorand "^1.0.1" 926 | hash.js "^1.0.0" 927 | inherits "^2.0.1" 928 | 929 | encodeurl@~1.0.1: 930 | version "1.0.1" 931 | resolved "https://registry.yarnpkg.com/encodeurl/-/encodeurl-1.0.1.tgz#79e3d58655346909fe6f0f45a5de68103b294d20" 932 | integrity sha1-eePVhlU0aQn+bw9Fpd5oEDspTSA= 933 | 934 | error-ex@^1.2.0: 935 | version "1.3.0" 936 | resolved "https://registry.yarnpkg.com/error-ex/-/error-ex-1.3.0.tgz#e67b43f3e82c96ea3a584ffee0b9fc3325d802d9" 937 | integrity sha1-5ntD8+gsluo6WE/+4Ln8MyXYAtk= 938 | dependencies: 939 | is-arrayish "^0.2.1" 940 | 941 | escape-html@~1.0.3: 942 | version "1.0.3" 943 | resolved "https://registry.yarnpkg.com/escape-html/-/escape-html-1.0.3.tgz#0258eae4d3d0c0974de1c169188ef0051d1d1988" 944 | integrity sha1-Aljq5NPQwJdN4cFpGI7wBR0dGYg= 945 | 946 | escape-string-regexp@1.0.5, escape-string-regexp@^1.0.2: 947 | version "1.0.5" 948 | resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4" 949 | integrity sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ= 950 | 951 | estree-walker@^0.5.2: 952 | version "0.5.2" 953 | resolved "https://registry.yarnpkg.com/estree-walker/-/estree-walker-0.5.2.tgz#d3850be7529c9580d815600b53126515e146dd39" 954 | integrity sha512-XpCnW/AE10ws/kDAs37cngSkvgIR8aN3G0MS85m7dUpuK2EREo9VJ00uvw6Dg/hXEpfsE1I1TvJOJr+Z+TL+ig== 955 | 956 | esutils@^2.0.2: 957 | version "2.0.2" 958 | resolved "https://registry.yarnpkg.com/esutils/-/esutils-2.0.2.tgz#0abf4f1caa5bcb1f7a9d8acc6dea4faaa04bac9b" 959 | integrity sha1-Cr9PHKpbyx96nYrMbepPqqBLrJs= 960 | 961 | etag@~1.7.0: 962 | version "1.7.0" 963 | resolved "https://registry.yarnpkg.com/etag/-/etag-1.7.0.tgz#03d30b5f67dd6e632d2945d30d6652731a34d5d8" 964 | integrity sha1-A9MLX2fdbmMtKUXTDWZScxo01dg= 965 | 966 | events@^1.1.0: 967 | version "1.1.1" 968 | resolved "https://registry.yarnpkg.com/events/-/events-1.1.1.tgz#9ebdb7635ad099c70dcc4c2a1f5004288e8bd924" 969 | integrity sha1-nr23Y1rQmccNzEwqH1AEKI6L2SQ= 970 | 971 | evp_bytestokey@^1.0.0: 972 | version "1.0.0" 973 | resolved "https://registry.yarnpkg.com/evp_bytestokey/-/evp_bytestokey-1.0.0.tgz#497b66ad9fef65cd7c08a6180824ba1476b66e53" 974 | integrity sha1-SXtmrZ/vZc18CKYYCCS6FHa2blM= 975 | dependencies: 976 | create-hash "^1.1.1" 977 | 978 | execSync@1.0.2: 979 | version "1.0.2" 980 | resolved "https://registry.yarnpkg.com/execSync/-/execSync-1.0.2.tgz#1f42eda582225180053224ecdd3fd1960fdb3139" 981 | integrity sha1-H0LtpYIiUYAFMiTs3T/Rlg/bMTk= 982 | dependencies: 983 | temp "~0.5.1" 984 | 985 | expand-brackets@^0.1.4: 986 | version "0.1.5" 987 | resolved "https://registry.yarnpkg.com/expand-brackets/-/expand-brackets-0.1.5.tgz#df07284e342a807cd733ac5af72411e581d1177b" 988 | integrity sha1-3wcoTjQqgHzXM6xa9yQR5YHRF3s= 989 | dependencies: 990 | is-posix-bracket "^0.1.0" 991 | 992 | expand-range@^1.8.1: 993 | version "1.8.2" 994 | resolved "https://registry.yarnpkg.com/expand-range/-/expand-range-1.8.2.tgz#a299effd335fe2721ebae8e257ec79644fc85337" 995 | integrity sha1-opnv/TNf4nIeuujiV+x5ZE/IUzc= 996 | dependencies: 997 | fill-range "^2.1.0" 998 | 999 | express@^4.13.4: 1000 | version "4.14.0" 1001 | resolved "https://registry.yarnpkg.com/express/-/express-4.14.0.tgz#c1ee3f42cdc891fb3dc650a8922d51ec847d0d66" 1002 | integrity sha1-we4/Qs3Ikfs9xlCoki1R7IR9DWY= 1003 | dependencies: 1004 | accepts "~1.3.3" 1005 | array-flatten "1.1.1" 1006 | content-disposition "0.5.1" 1007 | content-type "~1.0.2" 1008 | cookie "0.3.1" 1009 | cookie-signature "1.0.6" 1010 | debug "~2.2.0" 1011 | depd "~1.1.0" 1012 | encodeurl "~1.0.1" 1013 | escape-html "~1.0.3" 1014 | etag "~1.7.0" 1015 | finalhandler "0.5.0" 1016 | fresh "0.3.0" 1017 | merge-descriptors "1.0.1" 1018 | methods "~1.1.2" 1019 | on-finished "~2.3.0" 1020 | parseurl "~1.3.1" 1021 | path-to-regexp "0.1.7" 1022 | proxy-addr "~1.1.2" 1023 | qs "6.2.0" 1024 | range-parser "~1.2.0" 1025 | send "0.14.1" 1026 | serve-static "~1.11.1" 1027 | type-is "~1.6.13" 1028 | utils-merge "1.0.0" 1029 | vary "~1.1.0" 1030 | 1031 | extend@~3.0.0: 1032 | version "3.0.0" 1033 | resolved "https://registry.yarnpkg.com/extend/-/extend-3.0.0.tgz#5a474353b9f3353ddd8176dfd37b91c83a46f1d4" 1034 | integrity sha1-WkdDU7nzNT3dgXbf03uRyDpG8dQ= 1035 | 1036 | extglob@^0.3.1: 1037 | version "0.3.2" 1038 | resolved "https://registry.yarnpkg.com/extglob/-/extglob-0.3.2.tgz#2e18ff3d2f49ab2765cec9023f011daa8d8349a1" 1039 | integrity sha1-Lhj/PS9JqydlzskCPwEdqo2DSaE= 1040 | dependencies: 1041 | is-extglob "^1.0.0" 1042 | 1043 | extsprintf@1.0.2: 1044 | version "1.0.2" 1045 | resolved "https://registry.yarnpkg.com/extsprintf/-/extsprintf-1.0.2.tgz#e1080e0658e300b06294990cc70e1502235fd550" 1046 | integrity sha1-4QgOBljjALBilJkMxw4VAiNf1VA= 1047 | 1048 | filename-regex@^2.0.0: 1049 | version "2.0.0" 1050 | resolved "https://registry.yarnpkg.com/filename-regex/-/filename-regex-2.0.0.tgz#996e3e80479b98b9897f15a8a58b3d084e926775" 1051 | integrity sha1-mW4+gEebmLmJfxWopYs9CE6SZ3U= 1052 | 1053 | fill-range@^2.1.0: 1054 | version "2.2.3" 1055 | resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-2.2.3.tgz#50b77dfd7e469bc7492470963699fe7a8485a723" 1056 | integrity sha1-ULd9/X5Gm8dJJHCWNpn+eoSFpyM= 1057 | dependencies: 1058 | is-number "^2.1.0" 1059 | isobject "^2.0.0" 1060 | randomatic "^1.1.3" 1061 | repeat-element "^1.1.2" 1062 | repeat-string "^1.5.2" 1063 | 1064 | filled-array@^1.0.0: 1065 | version "1.1.0" 1066 | resolved "https://registry.yarnpkg.com/filled-array/-/filled-array-1.1.0.tgz#c3c4f6c663b923459a9aa29912d2d031f1507f84" 1067 | integrity sha1-w8T2xmO5I0WamqKZEtLQMfFQf4Q= 1068 | 1069 | finalhandler@0.5.0: 1070 | version "0.5.0" 1071 | resolved "https://registry.yarnpkg.com/finalhandler/-/finalhandler-0.5.0.tgz#e9508abece9b6dba871a6942a1d7911b91911ac7" 1072 | integrity sha1-6VCKvs6bbbqHGmlCodeRG5GRGsc= 1073 | dependencies: 1074 | debug "~2.2.0" 1075 | escape-html "~1.0.3" 1076 | on-finished "~2.3.0" 1077 | statuses "~1.3.0" 1078 | unpipe "~1.0.0" 1079 | 1080 | find-cache-dir@^0.1.1: 1081 | version "0.1.1" 1082 | resolved "https://registry.yarnpkg.com/find-cache-dir/-/find-cache-dir-0.1.1.tgz#c8defae57c8a52a8a784f9e31c57c742e993a0b9" 1083 | integrity sha1-yN765XyKUqinhPnjHFfHQumToLk= 1084 | dependencies: 1085 | commondir "^1.0.1" 1086 | mkdirp "^0.5.1" 1087 | pkg-dir "^1.0.0" 1088 | 1089 | find-up@^1.0.0, find-up@^1.1.2: 1090 | version "1.1.2" 1091 | resolved "https://registry.yarnpkg.com/find-up/-/find-up-1.1.2.tgz#6b2e9822b1a2ce0a60ab64d610eccad53cb24d0f" 1092 | integrity sha1-ay6YIrGizgpgq2TWEOzK1TyyTQ8= 1093 | dependencies: 1094 | path-exists "^2.0.0" 1095 | pinkie-promise "^2.0.0" 1096 | 1097 | findup-sync@~0.3.0: 1098 | version "0.3.0" 1099 | resolved "https://registry.yarnpkg.com/findup-sync/-/findup-sync-0.3.0.tgz#37930aa5d816b777c03445e1966cc6790a4c0b16" 1100 | integrity sha1-N5MKpdgWt3fANEXhlmzGeQpMCxY= 1101 | dependencies: 1102 | glob "~5.0.0" 1103 | 1104 | for-in@^0.1.5: 1105 | version "0.1.6" 1106 | resolved "https://registry.yarnpkg.com/for-in/-/for-in-0.1.6.tgz#c9f96e89bfad18a545af5ec3ed352a1d9e5b4dc8" 1107 | integrity sha1-yfluib+tGKVFr17D7TUqHZ5bTcg= 1108 | 1109 | for-own@^0.1.4: 1110 | version "0.1.4" 1111 | resolved "https://registry.yarnpkg.com/for-own/-/for-own-0.1.4.tgz#0149b41a39088c7515f51ebe1c1386d45f935072" 1112 | integrity sha1-AUm0GjkIjHUV9R6+HBOG1F+TUHI= 1113 | dependencies: 1114 | for-in "^0.1.5" 1115 | 1116 | foreground-child@^1.3.3, foreground-child@^1.5.3: 1117 | version "1.5.3" 1118 | resolved "https://registry.yarnpkg.com/foreground-child/-/foreground-child-1.5.3.tgz#94dd6aba671389867de8e57e99f1c2ecfb15c01a" 1119 | integrity sha1-lN1qumcTiYZ96OV+mfHC7PsVwBo= 1120 | dependencies: 1121 | cross-spawn "^4" 1122 | signal-exit "^3.0.0" 1123 | 1124 | forever-agent@~0.6.1: 1125 | version "0.6.1" 1126 | resolved "https://registry.yarnpkg.com/forever-agent/-/forever-agent-0.6.1.tgz#fbc71f0c41adeb37f96c577ad1ed42d8fdacca91" 1127 | integrity sha1-+8cfDEGt6zf5bFd60e1C2P2sypE= 1128 | 1129 | form-data@~2.1.1: 1130 | version "2.1.2" 1131 | resolved "https://registry.yarnpkg.com/form-data/-/form-data-2.1.2.tgz#89c3534008b97eada4cbb157d58f6f5df025eae4" 1132 | integrity sha1-icNTQAi5fq2ky7FX1Y9vXfAl6uQ= 1133 | dependencies: 1134 | asynckit "^0.4.0" 1135 | combined-stream "^1.0.5" 1136 | mime-types "^2.1.12" 1137 | 1138 | formatio@1.1.1: 1139 | version "1.1.1" 1140 | resolved "https://registry.yarnpkg.com/formatio/-/formatio-1.1.1.tgz#5ed3ccd636551097383465d996199100e86161e9" 1141 | integrity sha1-XtPM1jZVEJc4NGXZlhmRAOhhYek= 1142 | dependencies: 1143 | samsam "~1.1" 1144 | 1145 | forwarded@~0.1.0: 1146 | version "0.1.0" 1147 | resolved "https://registry.yarnpkg.com/forwarded/-/forwarded-0.1.0.tgz#19ef9874c4ae1c297bcf078fde63a09b66a84363" 1148 | integrity sha1-Ge+YdMSuHCl7zweP3mOgm2aoQ2M= 1149 | 1150 | fresh@0.3.0: 1151 | version "0.3.0" 1152 | resolved "https://registry.yarnpkg.com/fresh/-/fresh-0.3.0.tgz#651f838e22424e7566de161d8358caa199f83d4f" 1153 | integrity sha1-ZR+DjiJCTnVm3hYdg1jKoZn4PU8= 1154 | 1155 | fs-extra@7.0.0: 1156 | version "7.0.0" 1157 | resolved "https://registry.yarnpkg.com/fs-extra/-/fs-extra-7.0.0.tgz#8cc3f47ce07ef7b3593a11b9fb245f7e34c041d6" 1158 | integrity sha512-EglNDLRpmaTWiD/qraZn6HREAEAHJcJOmxNEYwq6xeMKnVMAy3GUcFB+wXt2C6k4CNvB/mP1y/U3dzvKKj5OtQ== 1159 | dependencies: 1160 | graceful-fs "^4.1.2" 1161 | jsonfile "^4.0.0" 1162 | universalify "^0.1.0" 1163 | 1164 | fs.realpath@^1.0.0: 1165 | version "1.0.0" 1166 | resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f" 1167 | integrity sha1-FQStJSMVjKpA20onh8sBQRmU6k8= 1168 | 1169 | fsevents@^1.0.0: 1170 | version "1.0.15" 1171 | resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-1.0.15.tgz#fa63f590f3c2ad91275e4972a6cea545fb0aae44" 1172 | integrity sha1-+mP1kPPCrZEnXklyps6lRfsKrkQ= 1173 | dependencies: 1174 | nan "^2.3.0" 1175 | node-pre-gyp "^0.6.29" 1176 | 1177 | fstream-ignore@~1.0.5: 1178 | version "1.0.5" 1179 | resolved "https://registry.yarnpkg.com/fstream-ignore/-/fstream-ignore-1.0.5.tgz#9c31dae34767018fe1d249b24dada67d092da105" 1180 | integrity sha1-nDHa40dnAY/h0kmyTa2mfQktoQU= 1181 | dependencies: 1182 | fstream "^1.0.0" 1183 | inherits "2" 1184 | minimatch "^3.0.0" 1185 | 1186 | fstream@^1.0.0, fstream@^1.0.2, fstream@~1.0.10: 1187 | version "1.0.10" 1188 | resolved "https://registry.yarnpkg.com/fstream/-/fstream-1.0.10.tgz#604e8a92fe26ffd9f6fae30399d4984e1ab22822" 1189 | integrity sha1-YE6Kkv4m/9n2+uMDmdSYThqyKCI= 1190 | dependencies: 1191 | graceful-fs "^4.1.2" 1192 | inherits "~2.0.0" 1193 | mkdirp ">=0.5 0" 1194 | rimraf "2" 1195 | 1196 | gauge@~2.7.1: 1197 | version "2.7.1" 1198 | resolved "https://registry.yarnpkg.com/gauge/-/gauge-2.7.1.tgz#388473894fe8be5e13ffcdb8b93e4ed0616428c7" 1199 | integrity sha1-OIRziU/ovl4T/824uT5O0GFkKMc= 1200 | dependencies: 1201 | aproba "^1.0.3" 1202 | console-control-strings "^1.0.0" 1203 | has-color "^0.1.7" 1204 | has-unicode "^2.0.0" 1205 | object-assign "^4.1.0" 1206 | signal-exit "^3.0.0" 1207 | string-width "^1.0.1" 1208 | strip-ansi "^3.0.1" 1209 | wide-align "^1.1.0" 1210 | 1211 | generate-function@^2.0.0: 1212 | version "2.0.0" 1213 | resolved "https://registry.yarnpkg.com/generate-function/-/generate-function-2.0.0.tgz#6858fe7c0969b7d4e9093337647ac79f60dfbe74" 1214 | integrity sha1-aFj+fAlpt9TpCTM3ZHrHn2DfvnQ= 1215 | 1216 | generate-object-property@^1.1.0: 1217 | version "1.2.0" 1218 | resolved "https://registry.yarnpkg.com/generate-object-property/-/generate-object-property-1.2.0.tgz#9c0e1c40308ce804f4783618b937fa88f99d50d0" 1219 | integrity sha1-nA4cQDCM6AT0eDYYuTf6iPmdUNA= 1220 | dependencies: 1221 | is-property "^1.0.0" 1222 | 1223 | get-caller-file@^1.0.1: 1224 | version "1.0.2" 1225 | resolved "https://registry.yarnpkg.com/get-caller-file/-/get-caller-file-1.0.2.tgz#f702e63127e7e231c160a80c1554acb70d5047e5" 1226 | integrity sha1-9wLmMSfn4jHBYKgMFVSstw1QR+U= 1227 | 1228 | getpass@^0.1.1: 1229 | version "0.1.6" 1230 | resolved "https://registry.yarnpkg.com/getpass/-/getpass-0.1.6.tgz#283ffd9fc1256840875311c1b60e8c40187110e6" 1231 | integrity sha1-KD/9n8ElaECHUxHBtg6MQBhxEOY= 1232 | dependencies: 1233 | assert-plus "^1.0.0" 1234 | 1235 | glob-base@^0.3.0: 1236 | version "0.3.0" 1237 | resolved "https://registry.yarnpkg.com/glob-base/-/glob-base-0.3.0.tgz#dbb164f6221b1c0b1ccf82aea328b497df0ea3c4" 1238 | integrity sha1-27Fk9iIbHAscz4Kuoyi0l98Oo8Q= 1239 | dependencies: 1240 | glob-parent "^2.0.0" 1241 | is-glob "^2.0.0" 1242 | 1243 | glob-parent@^2.0.0: 1244 | version "2.0.0" 1245 | resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-2.0.0.tgz#81383d72db054fcccf5336daa902f182f6edbb28" 1246 | integrity sha1-gTg9ctsFT8zPUzbaqQLxgvbtuyg= 1247 | dependencies: 1248 | is-glob "^2.0.0" 1249 | 1250 | glob@7.0.5: 1251 | version "7.0.5" 1252 | resolved "https://registry.yarnpkg.com/glob/-/glob-7.0.5.tgz#b4202a69099bbb4d292a7c1b95b6682b67ebdc95" 1253 | integrity sha1-tCAqaQmbu00pKnwblbZoK2fr3JU= 1254 | dependencies: 1255 | fs.realpath "^1.0.0" 1256 | inflight "^1.0.4" 1257 | inherits "2" 1258 | minimatch "^3.0.2" 1259 | once "^1.3.0" 1260 | path-is-absolute "^1.0.0" 1261 | 1262 | glob@^7.0.5, glob@^7.0.6, glob@^7.1.1: 1263 | version "7.1.1" 1264 | resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.1.tgz#805211df04faaf1c63a3600306cdf5ade50b2ec8" 1265 | integrity sha1-gFIR3wT6rxxjo2ADBs31reULLsg= 1266 | dependencies: 1267 | fs.realpath "^1.0.0" 1268 | inflight "^1.0.4" 1269 | inherits "2" 1270 | minimatch "^3.0.2" 1271 | once "^1.3.0" 1272 | path-is-absolute "^1.0.0" 1273 | 1274 | glob@~5.0.0: 1275 | version "5.0.15" 1276 | resolved "https://registry.yarnpkg.com/glob/-/glob-5.0.15.tgz#1bc936b9e02f4a603fcc222ecf7633d30b8b93b1" 1277 | integrity sha1-G8k2ueAvSmA/zCIuz3Yz0wuLk7E= 1278 | dependencies: 1279 | inflight "^1.0.4" 1280 | inherits "2" 1281 | minimatch "2 || 3" 1282 | once "^1.3.0" 1283 | path-is-absolute "^1.0.0" 1284 | 1285 | globals@^9.0.0: 1286 | version "9.14.0" 1287 | resolved "https://registry.yarnpkg.com/globals/-/globals-9.14.0.tgz#8859936af0038741263053b39d0e76ca241e4034" 1288 | integrity sha1-iFmTavADh0EmMFOznQ52yiQeQDQ= 1289 | 1290 | got@^5.0.0: 1291 | version "5.7.1" 1292 | resolved "https://registry.yarnpkg.com/got/-/got-5.7.1.tgz#5f81635a61e4a6589f180569ea4e381680a51f35" 1293 | integrity sha1-X4FjWmHkplifGAVp6k44FoClHzU= 1294 | dependencies: 1295 | create-error-class "^3.0.1" 1296 | duplexer2 "^0.1.4" 1297 | is-redirect "^1.0.0" 1298 | is-retry-allowed "^1.0.0" 1299 | is-stream "^1.0.0" 1300 | lowercase-keys "^1.0.0" 1301 | node-status-codes "^1.0.0" 1302 | object-assign "^4.0.1" 1303 | parse-json "^2.1.0" 1304 | pinkie-promise "^2.0.0" 1305 | read-all-stream "^3.0.0" 1306 | readable-stream "^2.0.5" 1307 | timed-out "^3.0.0" 1308 | unzip-response "^1.0.2" 1309 | url-parse-lax "^1.0.0" 1310 | 1311 | graceful-fs@^4.1.2: 1312 | version "4.1.11" 1313 | resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.1.11.tgz#0e8bdfe4d1ddb8854d64e04ea7c00e2a026e5658" 1314 | integrity sha1-Dovf5NHduIVNZOBOp8AOKgJuVlg= 1315 | 1316 | graceful-fs@^4.1.6: 1317 | version "4.1.15" 1318 | resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.1.15.tgz#ffb703e1066e8a0eeaa4c8b80ba9253eeefbfb00" 1319 | integrity sha512-6uHUhOPEBgQ24HM+r6b/QwWfZq+yiFcipKFrOFiBEnWdy5sdzYoi+pJeQaPI5qOLRFqWmAXUPQNsielzdLoecA== 1320 | 1321 | graceful-fs@~1: 1322 | version "1.2.3" 1323 | resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-1.2.3.tgz#15a4806a57547cb2d2dbf27f42e89a8c3451b364" 1324 | integrity sha1-FaSAaldUfLLS2/J/QuiajDRRs2Q= 1325 | 1326 | "graceful-readlink@>= 1.0.0": 1327 | version "1.0.1" 1328 | resolved "https://registry.yarnpkg.com/graceful-readlink/-/graceful-readlink-1.0.1.tgz#4cafad76bc62f02fa039b2f94e9a3dd3a391a725" 1329 | integrity sha1-TK+tdrxi8C+gObL5Tpo906ORpyU= 1330 | 1331 | growl@1.9.2: 1332 | version "1.9.2" 1333 | resolved "https://registry.yarnpkg.com/growl/-/growl-1.9.2.tgz#0ea7743715db8d8de2c5ede1775e1b45ac85c02f" 1334 | integrity sha1-Dqd0NxXbjY3ixe3hd14bRayFwC8= 1335 | 1336 | handlebars@^4.0.3: 1337 | version "4.0.6" 1338 | resolved "https://registry.yarnpkg.com/handlebars/-/handlebars-4.0.6.tgz#2ce4484850537f9c97a8026d5399b935c4ed4ed7" 1339 | integrity sha1-LORISFBTf5yXqAJtU5m5NcTtTtc= 1340 | dependencies: 1341 | async "^1.4.0" 1342 | optimist "^0.6.1" 1343 | source-map "^0.4.4" 1344 | optionalDependencies: 1345 | uglify-js "^2.6" 1346 | 1347 | har-validator@~2.0.6: 1348 | version "2.0.6" 1349 | resolved "https://registry.yarnpkg.com/har-validator/-/har-validator-2.0.6.tgz#cdcbc08188265ad119b6a5a7c8ab70eecfb5d27d" 1350 | integrity sha1-zcvAgYgmWtEZtqWnyKtw7s+10n0= 1351 | dependencies: 1352 | chalk "^1.1.1" 1353 | commander "^2.9.0" 1354 | is-my-json-valid "^2.12.4" 1355 | pinkie-promise "^2.0.0" 1356 | 1357 | has-ansi@^2.0.0: 1358 | version "2.0.0" 1359 | resolved "https://registry.yarnpkg.com/has-ansi/-/has-ansi-2.0.0.tgz#34f5049ce1ecdf2b0649af3ef24e45ed35416d91" 1360 | integrity sha1-NPUEnOHs3ysGSa8+8k5F7TVBbZE= 1361 | dependencies: 1362 | ansi-regex "^2.0.0" 1363 | 1364 | has-color@^0.1.7: 1365 | version "0.1.7" 1366 | resolved "https://registry.yarnpkg.com/has-color/-/has-color-0.1.7.tgz#67144a5260c34fc3cca677d041daf52fe7b78b2f" 1367 | integrity sha1-ZxRKUmDDT8PMpnfQQdr1L+e3iy8= 1368 | 1369 | has-flag@^1.0.0: 1370 | version "1.0.0" 1371 | resolved "http://registry.npmjs.org/has-flag/-/has-flag-1.0.0.tgz#9d9e793165ce017a00f00418c43f942a7b1d11fa" 1372 | integrity sha1-nZ55MWXOAXoA8AQYxD+UKnsdEfo= 1373 | 1374 | has-unicode@^2.0.0: 1375 | version "2.0.1" 1376 | resolved "https://registry.yarnpkg.com/has-unicode/-/has-unicode-2.0.1.tgz#e0e6fe6a28cf51138855e086d1691e771de2a8b9" 1377 | integrity sha1-4Ob+aijPUROIVeCG0Wkedx3iqLk= 1378 | 1379 | hash.js@^1.0.0: 1380 | version "1.0.3" 1381 | resolved "https://registry.yarnpkg.com/hash.js/-/hash.js-1.0.3.tgz#1332ff00156c0a0ffdd8236013d07b77a0451573" 1382 | integrity sha1-EzL/ABVsCg/92CNgE9B7d6BFFXM= 1383 | dependencies: 1384 | inherits "^2.0.1" 1385 | 1386 | hawk@~3.1.3: 1387 | version "3.1.3" 1388 | resolved "https://registry.yarnpkg.com/hawk/-/hawk-3.1.3.tgz#078444bd7c1640b0fe540d2c9b73d59678e8e1c4" 1389 | integrity sha1-B4REvXwWQLD+VA0sm3PVlnjo4cQ= 1390 | dependencies: 1391 | boom "2.x.x" 1392 | cryptiles "2.x.x" 1393 | hoek "2.x.x" 1394 | sntp "1.x.x" 1395 | 1396 | hoek@2.x.x: 1397 | version "2.16.3" 1398 | resolved "https://registry.yarnpkg.com/hoek/-/hoek-2.16.3.tgz#20bb7403d3cea398e91dc4710a8ff1b8274a25ed" 1399 | integrity sha1-ILt0A9POo5jpHcRxCo/xuCdKJe0= 1400 | 1401 | hosted-git-info@^2.1.4: 1402 | version "2.1.5" 1403 | resolved "https://registry.yarnpkg.com/hosted-git-info/-/hosted-git-info-2.1.5.tgz#0ba81d90da2e25ab34a332e6ec77936e1598118b" 1404 | integrity sha1-C6gdkNouJas0ozLm7HeTbhWYEYs= 1405 | 1406 | http-errors@~1.5.0: 1407 | version "1.5.1" 1408 | resolved "https://registry.yarnpkg.com/http-errors/-/http-errors-1.5.1.tgz#788c0d2c1de2c81b9e6e8c01843b6b97eb920750" 1409 | integrity sha1-eIwNLB3iyBuebowBhDtrl+uSB1A= 1410 | dependencies: 1411 | inherits "2.0.3" 1412 | setprototypeof "1.0.2" 1413 | statuses ">= 1.3.1 < 2" 1414 | 1415 | http-signature@~1.1.0: 1416 | version "1.1.1" 1417 | resolved "https://registry.yarnpkg.com/http-signature/-/http-signature-1.1.1.tgz#df72e267066cd0ac67fb76adf8e134a8fbcf91bf" 1418 | integrity sha1-33LiZwZs0Kxn+3at+OE0qPvPkb8= 1419 | dependencies: 1420 | assert-plus "^0.2.0" 1421 | jsprim "^1.2.2" 1422 | sshpk "^1.7.0" 1423 | 1424 | https-browserify@0.0.1: 1425 | version "0.0.1" 1426 | resolved "https://registry.yarnpkg.com/https-browserify/-/https-browserify-0.0.1.tgz#3f91365cabe60b77ed0ebba24b454e3e09d95a82" 1427 | integrity sha1-P5E2XKvmC3ftDruiS0VOPgnZWoI= 1428 | 1429 | ieee754@^1.1.4: 1430 | version "1.1.8" 1431 | resolved "https://registry.yarnpkg.com/ieee754/-/ieee754-1.1.8.tgz#be33d40ac10ef1926701f6f08a2d86fbfd1ad3e4" 1432 | integrity sha1-vjPUCsEO8ZJnAfbwii2G+/0a0+Q= 1433 | 1434 | imurmurhash@^0.1.4: 1435 | version "0.1.4" 1436 | resolved "https://registry.yarnpkg.com/imurmurhash/-/imurmurhash-0.1.4.tgz#9218b9b2b928a238b13dc4fb6b6d576f231453ea" 1437 | integrity sha1-khi5srkoojixPcT7a21XbyMUU+o= 1438 | 1439 | indexof@0.0.1: 1440 | version "0.0.1" 1441 | resolved "https://registry.yarnpkg.com/indexof/-/indexof-0.0.1.tgz#82dc336d232b9062179d05ab3293a66059fd435d" 1442 | integrity sha1-gtwzbSMrkGIXnQWrMpOmYFn9Q10= 1443 | 1444 | inflight@^1.0.4: 1445 | version "1.0.6" 1446 | resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9" 1447 | integrity sha1-Sb1jMdfQLQwJvJEKEHW6gWW1bfk= 1448 | dependencies: 1449 | once "^1.3.0" 1450 | wrappy "1" 1451 | 1452 | inherits@2, inherits@2.0.3, inherits@^2.0.1, inherits@~2.0.0, inherits@~2.0.1: 1453 | version "2.0.3" 1454 | resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.3.tgz#633c2c83e3da42a502f52466022480f4208261de" 1455 | integrity sha1-Yzwsg+PaQqUC9SRmAiSA9CCCYd4= 1456 | 1457 | inherits@2.0.1: 1458 | version "2.0.1" 1459 | resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.1.tgz#b17d08d326b4423e568eff719f91b0b1cbdf69f1" 1460 | integrity sha1-sX0I0ya0Qj5Wjv9xn5GwscvfafE= 1461 | 1462 | ini@~1.3.0: 1463 | version "1.3.4" 1464 | resolved "https://registry.yarnpkg.com/ini/-/ini-1.3.4.tgz#0537cb79daf59b59a1a517dff706c86ec039162e" 1465 | integrity sha1-BTfLedr1m1mhpRff9wbIbsA5Fi4= 1466 | 1467 | invariant@^2.2.0: 1468 | version "2.2.2" 1469 | resolved "https://registry.yarnpkg.com/invariant/-/invariant-2.2.2.tgz#9e1f56ac0acdb6bf303306f338be3b204ae60360" 1470 | integrity sha1-nh9WrArNtr8wMwbzOL47IErmA2A= 1471 | dependencies: 1472 | loose-envify "^1.0.0" 1473 | 1474 | invert-kv@^1.0.0: 1475 | version "1.0.0" 1476 | resolved "https://registry.yarnpkg.com/invert-kv/-/invert-kv-1.0.0.tgz#104a8e4aaca6d3d8cd157a8ef8bfab2d7a3ffdb6" 1477 | integrity sha1-EEqOSqym09jNFXqO+L+rLXo//bY= 1478 | 1479 | ipaddr.js@1.1.1: 1480 | version "1.1.1" 1481 | resolved "https://registry.yarnpkg.com/ipaddr.js/-/ipaddr.js-1.1.1.tgz#c791d95f52b29c1247d5df80ada39b8a73647230" 1482 | integrity sha1-x5HZX1KynBJH1d+AraObinNkcjA= 1483 | 1484 | is-arrayish@^0.2.1: 1485 | version "0.2.1" 1486 | resolved "https://registry.yarnpkg.com/is-arrayish/-/is-arrayish-0.2.1.tgz#77c99840527aa8ecb1a8ba697b80645a7a926a9d" 1487 | integrity sha1-d8mYQFJ6qOyxqLppe4BkWnqSap0= 1488 | 1489 | is-binary-path@^1.0.0: 1490 | version "1.0.1" 1491 | resolved "https://registry.yarnpkg.com/is-binary-path/-/is-binary-path-1.0.1.tgz#75f16642b480f187a711c814161fd3a4a7655898" 1492 | integrity sha1-dfFmQrSA8YenEcgUFh/TpKdlWJg= 1493 | dependencies: 1494 | binary-extensions "^1.0.0" 1495 | 1496 | is-buffer@^1.0.2: 1497 | version "1.1.4" 1498 | resolved "https://registry.yarnpkg.com/is-buffer/-/is-buffer-1.1.4.tgz#cfc86ccd5dc5a52fa80489111c6920c457e2d98b" 1499 | integrity sha1-z8hszV3FpS+oBIkRHGkgxFfi2Ys= 1500 | 1501 | is-buffer@~1.1.1: 1502 | version "1.1.6" 1503 | resolved "https://registry.yarnpkg.com/is-buffer/-/is-buffer-1.1.6.tgz#efaa2ea9daa0d7ab2ea13a97b2b8ad51fefbe8be" 1504 | integrity sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w== 1505 | 1506 | is-builtin-module@^1.0.0: 1507 | version "1.0.0" 1508 | resolved "https://registry.yarnpkg.com/is-builtin-module/-/is-builtin-module-1.0.0.tgz#540572d34f7ac3119f8f76c30cbc1b1e037affbe" 1509 | integrity sha1-VAVy0096wxGfj3bDDLwbHgN6/74= 1510 | dependencies: 1511 | builtin-modules "^1.0.0" 1512 | 1513 | is-dotfile@^1.0.0: 1514 | version "1.0.2" 1515 | resolved "https://registry.yarnpkg.com/is-dotfile/-/is-dotfile-1.0.2.tgz#2c132383f39199f8edc268ca01b9b007d205cc4d" 1516 | integrity sha1-LBMjg/ORmfjtwmjKAbmwB9IFzE0= 1517 | 1518 | is-equal-shallow@^0.1.3: 1519 | version "0.1.3" 1520 | resolved "https://registry.yarnpkg.com/is-equal-shallow/-/is-equal-shallow-0.1.3.tgz#2238098fc221de0bcfa5d9eac4c45d638aa1c534" 1521 | integrity sha1-IjgJj8Ih3gvPpdnqxMRdY4qhxTQ= 1522 | dependencies: 1523 | is-primitive "^2.0.0" 1524 | 1525 | is-extendable@^0.1.1: 1526 | version "0.1.1" 1527 | resolved "https://registry.yarnpkg.com/is-extendable/-/is-extendable-0.1.1.tgz#62b110e289a471418e3ec36a617d472e301dfc89" 1528 | integrity sha1-YrEQ4omkcUGOPsNqYX1HLjAd/Ik= 1529 | 1530 | is-extglob@^1.0.0: 1531 | version "1.0.0" 1532 | resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-1.0.0.tgz#ac468177c4943405a092fc8f29760c6ffc6206c0" 1533 | integrity sha1-rEaBd8SUNAWgkvyPKXYMb/xiBsA= 1534 | 1535 | is-finite@^1.0.0: 1536 | version "1.0.2" 1537 | resolved "https://registry.yarnpkg.com/is-finite/-/is-finite-1.0.2.tgz#cc6677695602be550ef11e8b4aa6305342b6d0aa" 1538 | integrity sha1-zGZ3aVYCvlUO8R6LSqYwU0K20Ko= 1539 | dependencies: 1540 | number-is-nan "^1.0.0" 1541 | 1542 | is-fullwidth-code-point@^1.0.0: 1543 | version "1.0.0" 1544 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz#ef9e31386f031a7f0d643af82fde50c457ef00cb" 1545 | integrity sha1-754xOG8DGn8NZDr4L95QxFfvAMs= 1546 | dependencies: 1547 | number-is-nan "^1.0.0" 1548 | 1549 | is-glob@^2.0.0, is-glob@^2.0.1: 1550 | version "2.0.1" 1551 | resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-2.0.1.tgz#d096f926a3ded5600f3fdfd91198cb0888c2d863" 1552 | integrity sha1-0Jb5JqPe1WAPP9/ZEZjLCIjC2GM= 1553 | dependencies: 1554 | is-extglob "^1.0.0" 1555 | 1556 | is-module@^1.0.0: 1557 | version "1.0.0" 1558 | resolved "https://registry.yarnpkg.com/is-module/-/is-module-1.0.0.tgz#3258fb69f78c14d5b815d664336b4cffb6441591" 1559 | integrity sha1-Mlj7afeMFNW4FdZkM2tM/7ZEFZE= 1560 | 1561 | is-my-json-valid@^2.12.4: 1562 | version "2.15.0" 1563 | resolved "https://registry.yarnpkg.com/is-my-json-valid/-/is-my-json-valid-2.15.0.tgz#936edda3ca3c211fd98f3b2d3e08da43f7b2915b" 1564 | integrity sha1-k27do8o8IR/ZjzstPgjaQ/eykVs= 1565 | dependencies: 1566 | generate-function "^2.0.0" 1567 | generate-object-property "^1.1.0" 1568 | jsonpointer "^4.0.0" 1569 | xtend "^4.0.0" 1570 | 1571 | is-npm@^1.0.0: 1572 | version "1.0.0" 1573 | resolved "https://registry.yarnpkg.com/is-npm/-/is-npm-1.0.0.tgz#f2fb63a65e4905b406c86072765a1a4dc793b9f4" 1574 | integrity sha1-8vtjpl5JBbQGyGBydloaTceTufQ= 1575 | 1576 | is-number@^2.0.2, is-number@^2.1.0: 1577 | version "2.1.0" 1578 | resolved "https://registry.yarnpkg.com/is-number/-/is-number-2.1.0.tgz#01fcbbb393463a548f2f466cce16dece49db908f" 1579 | integrity sha1-Afy7s5NGOlSPL0ZszhbezknbkI8= 1580 | dependencies: 1581 | kind-of "^3.0.2" 1582 | 1583 | is-obj@^1.0.0: 1584 | version "1.0.1" 1585 | resolved "https://registry.yarnpkg.com/is-obj/-/is-obj-1.0.1.tgz#3e4729ac1f5fde025cd7d83a896dab9f4f67db0f" 1586 | integrity sha1-PkcprB9f3gJc19g6iW2rn09n2w8= 1587 | 1588 | is-posix-bracket@^0.1.0: 1589 | version "0.1.1" 1590 | resolved "http://registry.npmjs.org/is-posix-bracket/-/is-posix-bracket-0.1.1.tgz#3334dc79774368e92f016e6fbc0a88f5cd6e6bc4" 1591 | integrity sha1-MzTceXdDaOkvAW5vvAqI9c1ua8Q= 1592 | 1593 | is-primitive@^2.0.0: 1594 | version "2.0.0" 1595 | resolved "https://registry.yarnpkg.com/is-primitive/-/is-primitive-2.0.0.tgz#207bab91638499c07b2adf240a41a87210034575" 1596 | integrity sha1-IHurkWOEmcB7Kt8kCkGochADRXU= 1597 | 1598 | is-property@^1.0.0: 1599 | version "1.0.2" 1600 | resolved "https://registry.yarnpkg.com/is-property/-/is-property-1.0.2.tgz#57fe1c4e48474edd65b09911f26b1cd4095dda84" 1601 | integrity sha1-V/4cTkhHTt1lsJkR8msc1Ald2oQ= 1602 | 1603 | is-redirect@^1.0.0: 1604 | version "1.0.0" 1605 | resolved "https://registry.yarnpkg.com/is-redirect/-/is-redirect-1.0.0.tgz#1d03dded53bd8db0f30c26e4f95d36fc7c87dc24" 1606 | integrity sha1-HQPd7VO9jbDzDCbk+V02/HyH3CQ= 1607 | 1608 | is-retry-allowed@^1.0.0: 1609 | version "1.1.0" 1610 | resolved "https://registry.yarnpkg.com/is-retry-allowed/-/is-retry-allowed-1.1.0.tgz#11a060568b67339444033d0125a61a20d564fb34" 1611 | integrity sha1-EaBgVotnM5REAz0BJaYaINVk+zQ= 1612 | 1613 | is-stream@^1.0.0: 1614 | version "1.1.0" 1615 | resolved "https://registry.yarnpkg.com/is-stream/-/is-stream-1.1.0.tgz#12d4a3dd4e68e0b79ceb8dbc84173ae80d91ca44" 1616 | integrity sha1-EtSj3U5o4Lec6428hBc66A2RykQ= 1617 | 1618 | is-typedarray@~1.0.0: 1619 | version "1.0.0" 1620 | resolved "https://registry.yarnpkg.com/is-typedarray/-/is-typedarray-1.0.0.tgz#e479c80858df0c1b11ddda6940f96011fcda4a9a" 1621 | integrity sha1-5HnICFjfDBsR3dppQPlgEfzaSpo= 1622 | 1623 | is-utf8@^0.2.0: 1624 | version "0.2.1" 1625 | resolved "https://registry.yarnpkg.com/is-utf8/-/is-utf8-0.2.1.tgz#4b0da1442104d1b336340e80797e865cf39f7d72" 1626 | integrity sha1-Sw2hRCEE0bM2NA6AeX6GXPOffXI= 1627 | 1628 | isarray@1.0.0, isarray@^1.0.0, isarray@~1.0.0: 1629 | version "1.0.0" 1630 | resolved "https://registry.yarnpkg.com/isarray/-/isarray-1.0.0.tgz#bb935d48582cba168c06834957a54a3e07124f11" 1631 | integrity sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE= 1632 | 1633 | isexe@^1.1.1: 1634 | version "1.1.2" 1635 | resolved "https://registry.yarnpkg.com/isexe/-/isexe-1.1.2.tgz#36f3e22e60750920f5e7241a476a8c6a42275ad0" 1636 | integrity sha1-NvPiLmB1CSD15yQaR2qMakInWtA= 1637 | 1638 | isobject@^2.0.0: 1639 | version "2.1.0" 1640 | resolved "https://registry.yarnpkg.com/isobject/-/isobject-2.1.0.tgz#f065561096a3f1da2ef46272f815c840d87e0c89" 1641 | integrity sha1-8GVWEJaj8dou9GJy+BXIQNh+DIk= 1642 | dependencies: 1643 | isarray "1.0.0" 1644 | 1645 | isstream@~0.1.2: 1646 | version "0.1.2" 1647 | resolved "https://registry.yarnpkg.com/isstream/-/isstream-0.1.2.tgz#47e63f7af55afa6f92e1500e690eb8b8529c099a" 1648 | integrity sha1-R+Y/evVa+m+S4VAOaQ64uFKcCZo= 1649 | 1650 | istanbul-lib-coverage@^1.0.0, istanbul-lib-coverage@^1.0.0-alpha, istanbul-lib-coverage@^1.0.0-alpha.0: 1651 | version "1.0.0" 1652 | resolved "https://registry.yarnpkg.com/istanbul-lib-coverage/-/istanbul-lib-coverage-1.0.0.tgz#c3f9b6d226da12424064cce87fce0fb57fdfa7a2" 1653 | integrity sha1-w/m20ibaEkJAZMzof84PtX/fp6I= 1654 | 1655 | istanbul-lib-hook@^1.0.0-alpha.4: 1656 | version "1.0.0-alpha.4" 1657 | resolved "https://registry.yarnpkg.com/istanbul-lib-hook/-/istanbul-lib-hook-1.0.0-alpha.4.tgz#8c5bb9f6fbd8526e0ae6cf639af28266906b938f" 1658 | integrity sha1-jFu59vvYUm4K5s9jmvKCZpBrk48= 1659 | dependencies: 1660 | append-transform "^0.3.0" 1661 | 1662 | istanbul-lib-instrument@^1.3.0: 1663 | version "1.3.0" 1664 | resolved "https://registry.yarnpkg.com/istanbul-lib-instrument/-/istanbul-lib-instrument-1.3.0.tgz#19f0a973397454989b98330333063a5b56df0e58" 1665 | integrity sha1-GfCpczl0VJibmDMDMwY6W1bfDlg= 1666 | dependencies: 1667 | babel-generator "^6.18.0" 1668 | babel-template "^6.16.0" 1669 | babel-traverse "^6.18.0" 1670 | babel-types "^6.18.0" 1671 | babylon "^6.13.0" 1672 | istanbul-lib-coverage "^1.0.0" 1673 | semver "^5.3.0" 1674 | 1675 | istanbul-lib-report@^1.0.0-alpha.3: 1676 | version "1.0.0-alpha.3" 1677 | resolved "https://registry.yarnpkg.com/istanbul-lib-report/-/istanbul-lib-report-1.0.0-alpha.3.tgz#32d5f6ec7f33ca3a602209e278b2e6ff143498af" 1678 | integrity sha1-MtX27H8zyjpgIgnieLLm/xQ0mK8= 1679 | dependencies: 1680 | async "^1.4.2" 1681 | istanbul-lib-coverage "^1.0.0-alpha" 1682 | mkdirp "^0.5.1" 1683 | path-parse "^1.0.5" 1684 | rimraf "^2.4.3" 1685 | supports-color "^3.1.2" 1686 | 1687 | istanbul-lib-source-maps@^1.1.0: 1688 | version "1.1.0" 1689 | resolved "https://registry.yarnpkg.com/istanbul-lib-source-maps/-/istanbul-lib-source-maps-1.1.0.tgz#9d429218f35b823560ea300a96ff0c3bbdab785f" 1690 | integrity sha1-nUKSGPNbgjVg6jAKlv8MO72reF8= 1691 | dependencies: 1692 | istanbul-lib-coverage "^1.0.0-alpha.0" 1693 | mkdirp "^0.5.1" 1694 | rimraf "^2.4.4" 1695 | source-map "^0.5.3" 1696 | 1697 | istanbul-reports@^1.0.0: 1698 | version "1.0.0" 1699 | resolved "https://registry.yarnpkg.com/istanbul-reports/-/istanbul-reports-1.0.0.tgz#24b4eb2b1d29d50f103b369bd422f6e640aa0777" 1700 | integrity sha1-JLTrKx0p1Q8QOzab1CL25kCqB3c= 1701 | dependencies: 1702 | handlebars "^4.0.3" 1703 | 1704 | jodid25519@^1.0.0: 1705 | version "1.0.2" 1706 | resolved "https://registry.yarnpkg.com/jodid25519/-/jodid25519-1.0.2.tgz#06d4912255093419477d425633606e0e90782967" 1707 | integrity sha1-BtSRIlUJNBlHfUJWM2BuDpB4KWc= 1708 | dependencies: 1709 | jsbn "~0.1.0" 1710 | 1711 | js-tokens@^2.0.0: 1712 | version "2.0.0" 1713 | resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-2.0.0.tgz#79903f5563ee778cc1162e6dcf1a0027c97f9cb5" 1714 | integrity sha1-eZA/VWPud4zBFi5tzxoAJ8l/nLU= 1715 | 1716 | jsbn@~0.1.0: 1717 | version "0.1.0" 1718 | resolved "https://registry.yarnpkg.com/jsbn/-/jsbn-0.1.0.tgz#650987da0dd74f4ebf5a11377a2aa2d273e97dfd" 1719 | integrity sha1-ZQmH2g3XT06/WhE3eiqi0nPpff0= 1720 | 1721 | jsesc@^1.3.0: 1722 | version "1.3.0" 1723 | resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-1.3.0.tgz#46c3fec8c1892b12b0833db9bc7622176dbab34b" 1724 | integrity sha1-RsP+yMGJKxKwgz25vHYiF226s0s= 1725 | 1726 | json-schema@0.2.3: 1727 | version "0.2.3" 1728 | resolved "https://registry.yarnpkg.com/json-schema/-/json-schema-0.2.3.tgz#b480c892e59a2f05954ce727bd3f2a4e882f9e13" 1729 | integrity sha1-tIDIkuWaLwWVTOcnvT8qTogvnhM= 1730 | 1731 | json-stringify-safe@~5.0.1: 1732 | version "5.0.1" 1733 | resolved "https://registry.yarnpkg.com/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz#1296a2d58fd45f19a0f6ce01d65701e2c735b6eb" 1734 | integrity sha1-Epai1Y/UXxmg9s4B1lcB4sc1tus= 1735 | 1736 | json3@3.3.2: 1737 | version "3.3.2" 1738 | resolved "https://registry.yarnpkg.com/json3/-/json3-3.3.2.tgz#3c0434743df93e2f5c42aee7b19bcb483575f4e1" 1739 | integrity sha1-PAQ0dD35Pi9cQq7nsZvLSDV19OE= 1740 | 1741 | jsonfile@^4.0.0: 1742 | version "4.0.0" 1743 | resolved "https://registry.yarnpkg.com/jsonfile/-/jsonfile-4.0.0.tgz#8771aae0799b64076b76640fca058f9c10e33ecb" 1744 | integrity sha1-h3Gq4HmbZAdrdmQPygWPnBDjPss= 1745 | optionalDependencies: 1746 | graceful-fs "^4.1.6" 1747 | 1748 | jsonpointer@^4.0.0: 1749 | version "4.0.0" 1750 | resolved "https://registry.yarnpkg.com/jsonpointer/-/jsonpointer-4.0.0.tgz#6661e161d2fc445f19f98430231343722e1fcbd5" 1751 | integrity sha1-ZmHhYdL8RF8Z+YQwIxNDci4fy9U= 1752 | 1753 | jsprim@^1.2.2: 1754 | version "1.3.1" 1755 | resolved "https://registry.yarnpkg.com/jsprim/-/jsprim-1.3.1.tgz#2a7256f70412a29ee3670aaca625994c4dcff252" 1756 | integrity sha1-KnJW9wQSop7jZwqspiWZTE3P8lI= 1757 | dependencies: 1758 | extsprintf "1.0.2" 1759 | json-schema "0.2.3" 1760 | verror "1.3.6" 1761 | 1762 | kind-of@^3.0.2: 1763 | version "3.0.4" 1764 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-3.0.4.tgz#7b8ecf18a4e17f8269d73b501c9f232c96887a74" 1765 | integrity sha1-e47PGKThf4Jp1ztQHJ8jLJaIenQ= 1766 | dependencies: 1767 | is-buffer "^1.0.2" 1768 | 1769 | latest-version@^2.0.0: 1770 | version "2.0.0" 1771 | resolved "https://registry.yarnpkg.com/latest-version/-/latest-version-2.0.0.tgz#56f8d6139620847b8017f8f1f4d78e211324168b" 1772 | integrity sha1-VvjWE5YghHuAF/jx9NeOIRMkFos= 1773 | dependencies: 1774 | package-json "^2.0.0" 1775 | 1776 | lazy-cache@^1.0.3: 1777 | version "1.0.4" 1778 | resolved "https://registry.yarnpkg.com/lazy-cache/-/lazy-cache-1.0.4.tgz#a1d78fc3a50474cb80845d3b3b6e1da49a446e8e" 1779 | integrity sha1-odePw6UEdMuAhF07O24dpJpEbo4= 1780 | 1781 | lazy-req@^1.1.0: 1782 | version "1.1.0" 1783 | resolved "https://registry.yarnpkg.com/lazy-req/-/lazy-req-1.1.0.tgz#bdaebead30f8d824039ce0ce149d4daa07ba1fac" 1784 | integrity sha1-va6+rTD42CQDnODOFJ1Nqge6H6w= 1785 | 1786 | lcid@^1.0.0: 1787 | version "1.0.0" 1788 | resolved "https://registry.yarnpkg.com/lcid/-/lcid-1.0.0.tgz#308accafa0bc483a3867b4b6f2b9506251d1b835" 1789 | integrity sha1-MIrMr6C8SDo4Z7S28rlQYlHRuDU= 1790 | dependencies: 1791 | invert-kv "^1.0.0" 1792 | 1793 | load-json-file@^1.0.0: 1794 | version "1.1.0" 1795 | resolved "https://registry.yarnpkg.com/load-json-file/-/load-json-file-1.1.0.tgz#956905708d58b4bab4c2261b04f59f31c99374c0" 1796 | integrity sha1-lWkFcI1YtLq0wiYbBPWfMcmTdMA= 1797 | dependencies: 1798 | graceful-fs "^4.1.2" 1799 | parse-json "^2.2.0" 1800 | pify "^2.0.0" 1801 | pinkie-promise "^2.0.0" 1802 | strip-bom "^2.0.0" 1803 | 1804 | lodash._baseassign@^3.0.0: 1805 | version "3.2.0" 1806 | resolved "https://registry.yarnpkg.com/lodash._baseassign/-/lodash._baseassign-3.2.0.tgz#8c38a099500f215ad09e59f1722fd0c52bfe0a4e" 1807 | integrity sha1-jDigmVAPIVrQnlnxci/QxSv+Ck4= 1808 | dependencies: 1809 | lodash._basecopy "^3.0.0" 1810 | lodash.keys "^3.0.0" 1811 | 1812 | lodash._basecopy@^3.0.0: 1813 | version "3.0.1" 1814 | resolved "https://registry.yarnpkg.com/lodash._basecopy/-/lodash._basecopy-3.0.1.tgz#8da0e6a876cf344c0ad8a54882111dd3c5c7ca36" 1815 | integrity sha1-jaDmqHbPNEwK2KVIghEd08XHyjY= 1816 | 1817 | lodash._basecreate@^3.0.0: 1818 | version "3.0.3" 1819 | resolved "https://registry.yarnpkg.com/lodash._basecreate/-/lodash._basecreate-3.0.3.tgz#1bc661614daa7fc311b7d03bf16806a0213cf821" 1820 | integrity sha1-G8ZhYU2qf8MRt9A78WgGoCE8+CE= 1821 | 1822 | lodash._getnative@^3.0.0: 1823 | version "3.9.1" 1824 | resolved "https://registry.yarnpkg.com/lodash._getnative/-/lodash._getnative-3.9.1.tgz#570bc7dede46d61cdcde687d65d3eecbaa3aaff5" 1825 | integrity sha1-VwvH3t5G1hzc3mh9ZdPuy6o6r/U= 1826 | 1827 | lodash._isiterateecall@^3.0.0: 1828 | version "3.0.9" 1829 | resolved "https://registry.yarnpkg.com/lodash._isiterateecall/-/lodash._isiterateecall-3.0.9.tgz#5203ad7ba425fae842460e696db9cf3e6aac057c" 1830 | integrity sha1-UgOte6Ql+uhCRg5pbbnPPmqsBXw= 1831 | 1832 | lodash.create@3.1.1: 1833 | version "3.1.1" 1834 | resolved "https://registry.yarnpkg.com/lodash.create/-/lodash.create-3.1.1.tgz#d7f2849f0dbda7e04682bb8cd72ab022461debe7" 1835 | integrity sha1-1/KEnw29p+BGgruM1yqwIkYd6+c= 1836 | dependencies: 1837 | lodash._baseassign "^3.0.0" 1838 | lodash._basecreate "^3.0.0" 1839 | lodash._isiterateecall "^3.0.0" 1840 | 1841 | lodash.difference@^4.3.0: 1842 | version "4.5.0" 1843 | resolved "https://registry.yarnpkg.com/lodash.difference/-/lodash.difference-4.5.0.tgz#9ccb4e505d486b91651345772885a2df27fd017c" 1844 | integrity sha1-nMtOUF1Ia5FlE0V3KIWi3yf9AXw= 1845 | 1846 | lodash.invert@^4.1.1: 1847 | version "4.3.0" 1848 | resolved "https://registry.yarnpkg.com/lodash.invert/-/lodash.invert-4.3.0.tgz#8ffe20d4b616f56bea8f1aa0c6ebd80dcf742aee" 1849 | integrity sha1-j/4g1LYW9WvqjxqgxuvYDc90Ku4= 1850 | 1851 | lodash.isarguments@^3.0.0: 1852 | version "3.1.0" 1853 | resolved "https://registry.yarnpkg.com/lodash.isarguments/-/lodash.isarguments-3.1.0.tgz#2f573d85c6a24289ff00663b491c1d338ff3458a" 1854 | integrity sha1-L1c9hcaiQon/AGY7SRwdM4/zRYo= 1855 | 1856 | lodash.isarray@^3.0.0: 1857 | version "3.0.4" 1858 | resolved "https://registry.yarnpkg.com/lodash.isarray/-/lodash.isarray-3.0.4.tgz#79e4eb88c36a8122af86f844aa9bcd851b5fbb55" 1859 | integrity sha1-eeTriMNqgSKvhvhEqpvNhRtfu1U= 1860 | 1861 | lodash.isregexp@^3.0.5: 1862 | version "3.0.5" 1863 | resolved "https://registry.yarnpkg.com/lodash.isregexp/-/lodash.isregexp-3.0.5.tgz#e0f596242f2fa228a840086b6c8ad82e4b71fd2d" 1864 | integrity sha1-4PWWJC8voiioQAhrbIrYLktx/S0= 1865 | 1866 | lodash.keys@^3.0.0: 1867 | version "3.1.2" 1868 | resolved "https://registry.yarnpkg.com/lodash.keys/-/lodash.keys-3.1.2.tgz#4dbc0472b156be50a0b286855d1bd0b0c656098a" 1869 | integrity sha1-TbwEcrFWvlCgsoaFXRvQsMZWCYo= 1870 | dependencies: 1871 | lodash._getnative "^3.0.0" 1872 | lodash.isarguments "^3.0.0" 1873 | lodash.isarray "^3.0.0" 1874 | 1875 | lodash@^4.2.0: 1876 | version "4.17.2" 1877 | resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.2.tgz#34a3055babe04ce42467b607d700072c7ff6bf42" 1878 | integrity sha1-NKMFW6vgTOQkZ7YH1wAHLH/2v0I= 1879 | 1880 | lolex@^1.4.0: 1881 | version "1.5.2" 1882 | resolved "https://registry.yarnpkg.com/lolex/-/lolex-1.5.2.tgz#94a4ce41c61185a05e98b8660dc509423ac1c416" 1883 | integrity sha1-lKTOQcYRhaBemLhmDcUJQjrBxBY= 1884 | 1885 | longest@^1.0.1: 1886 | version "1.0.1" 1887 | resolved "https://registry.yarnpkg.com/longest/-/longest-1.0.1.tgz#30a0b2da38f73770e8294a0d22e6625ed77d0097" 1888 | integrity sha1-MKCy2jj3N3DoKUoNIuZiXtd9AJc= 1889 | 1890 | loose-envify@^1.0.0: 1891 | version "1.3.0" 1892 | resolved "https://registry.yarnpkg.com/loose-envify/-/loose-envify-1.3.0.tgz#6b26248c42f6d4fa4b0d8542f78edfcde35642a8" 1893 | integrity sha1-ayYkjEL21PpLDYVC947fzeNWQqg= 1894 | dependencies: 1895 | js-tokens "^2.0.0" 1896 | 1897 | lowercase-keys@^1.0.0: 1898 | version "1.0.0" 1899 | resolved "https://registry.yarnpkg.com/lowercase-keys/-/lowercase-keys-1.0.0.tgz#4e3366b39e7f5457e35f1324bdf6f88d0bfc7306" 1900 | integrity sha1-TjNms55/VFfjXxMkvfb4jQv8cwY= 1901 | 1902 | lru-cache@^4.0.0, lru-cache@^4.0.1: 1903 | version "4.0.2" 1904 | resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-4.0.2.tgz#1d17679c069cda5d040991a09dbc2c0db377e55e" 1905 | integrity sha1-HRdnnAac2l0ECZGgnbwsDbN35V4= 1906 | dependencies: 1907 | pseudomap "^1.0.1" 1908 | yallist "^2.0.0" 1909 | 1910 | md5-hex@^1.2.0: 1911 | version "1.3.0" 1912 | resolved "https://registry.yarnpkg.com/md5-hex/-/md5-hex-1.3.0.tgz#d2c4afe983c4370662179b8cad145219135046c4" 1913 | integrity sha1-0sSv6YPENwZiF5uMrRRSGRNQRsQ= 1914 | dependencies: 1915 | md5-o-matic "^0.1.1" 1916 | 1917 | md5-o-matic@^0.1.1: 1918 | version "0.1.1" 1919 | resolved "https://registry.yarnpkg.com/md5-o-matic/-/md5-o-matic-0.1.1.tgz#822bccd65e117c514fab176b25945d54100a03c3" 1920 | integrity sha1-givM1l4RfFFPqxdrJZRdVBAKA8M= 1921 | 1922 | md5@^2.1.0: 1923 | version "2.2.1" 1924 | resolved "https://registry.yarnpkg.com/md5/-/md5-2.2.1.tgz#53ab38d5fe3c8891ba465329ea23fac0540126f9" 1925 | integrity sha1-U6s41f48iJG6RlMp6iP6wFQBJvk= 1926 | dependencies: 1927 | charenc "~0.0.1" 1928 | crypt "~0.0.1" 1929 | is-buffer "~1.1.1" 1930 | 1931 | media-typer@0.3.0: 1932 | version "0.3.0" 1933 | resolved "https://registry.yarnpkg.com/media-typer/-/media-typer-0.3.0.tgz#8710d7af0aa626f8fffa1ce00168545263255748" 1934 | integrity sha1-hxDXrwqmJvj/+hzgAWhUUmMlV0g= 1935 | 1936 | merge-descriptors@1.0.1: 1937 | version "1.0.1" 1938 | resolved "https://registry.yarnpkg.com/merge-descriptors/-/merge-descriptors-1.0.1.tgz#b00aaa556dd8b44568150ec9d1b953f3f90cbb61" 1939 | integrity sha1-sAqqVW3YtEVoFQ7J0blT8/kMu2E= 1940 | 1941 | merge-source-map@^1.0.2: 1942 | version "1.0.3" 1943 | resolved "https://registry.yarnpkg.com/merge-source-map/-/merge-source-map-1.0.3.tgz#da1415f2722a5119db07b14c4f973410863a2abf" 1944 | integrity sha1-2hQV8nIqURnbB7FMT5c0EIY6Kr8= 1945 | dependencies: 1946 | source-map "^0.5.3" 1947 | 1948 | methods@~1.1.2: 1949 | version "1.1.2" 1950 | resolved "https://registry.yarnpkg.com/methods/-/methods-1.1.2.tgz#5529a4d67654134edcc5266656835b0f851afcee" 1951 | integrity sha1-VSmk1nZUE07cxSZmVoNbD4Ua/O4= 1952 | 1953 | micromatch@^2.1.5, micromatch@^2.3.11: 1954 | version "2.3.11" 1955 | resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-2.3.11.tgz#86677c97d1720b363431d04d0d15293bd38c1565" 1956 | integrity sha1-hmd8l9FyCzY0MdBNDRUpO9OMFWU= 1957 | dependencies: 1958 | arr-diff "^2.0.0" 1959 | array-unique "^0.2.1" 1960 | braces "^1.8.2" 1961 | expand-brackets "^0.1.4" 1962 | extglob "^0.3.1" 1963 | filename-regex "^2.0.0" 1964 | is-extglob "^1.0.0" 1965 | is-glob "^2.0.1" 1966 | kind-of "^3.0.2" 1967 | normalize-path "^2.0.1" 1968 | object.omit "^2.0.0" 1969 | parse-glob "^3.0.4" 1970 | regex-cache "^0.4.2" 1971 | 1972 | miller-rabin@^4.0.0: 1973 | version "4.0.0" 1974 | resolved "https://registry.yarnpkg.com/miller-rabin/-/miller-rabin-4.0.0.tgz#4a62fb1d42933c05583982f4c716f6fb9e6c6d3d" 1975 | integrity sha1-SmL7HUKTPAVYOYL0xxb2+55sbT0= 1976 | dependencies: 1977 | bn.js "^4.0.0" 1978 | brorand "^1.0.1" 1979 | 1980 | mime-db@~1.25.0: 1981 | version "1.25.0" 1982 | resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.25.0.tgz#c18dbd7c73a5dbf6f44a024dc0d165a1e7b1c392" 1983 | integrity sha1-wY29fHOl2/b0SgJNwNFloeexw5I= 1984 | 1985 | mime-types@^2.1.12, mime-types@~2.1.11, mime-types@~2.1.13, mime-types@~2.1.7: 1986 | version "2.1.13" 1987 | resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.13.tgz#e07aaa9c6c6b9a7ca3012c69003ad25a39e92a88" 1988 | integrity sha1-4HqqnGxrmnyjASxpADrSWjnpKog= 1989 | dependencies: 1990 | mime-db "~1.25.0" 1991 | 1992 | mime@1.3.4: 1993 | version "1.3.4" 1994 | resolved "https://registry.yarnpkg.com/mime/-/mime-1.3.4.tgz#115f9e3b6b3daf2959983cb38f149a2d40eb5d53" 1995 | integrity sha1-EV+eO2s9rylZmDyzjxSaLUDrXVM= 1996 | 1997 | minimalistic-assert@^1.0.0: 1998 | version "1.0.0" 1999 | resolved "https://registry.yarnpkg.com/minimalistic-assert/-/minimalistic-assert-1.0.0.tgz#702be2dda6b37f4836bcb3f5db56641b64a1d3d3" 2000 | integrity sha1-cCvi3aazf0g2vLP121ZkG2Sh09M= 2001 | 2002 | "minimatch@2 || 3", minimatch@^3.0.0, minimatch@^3.0.2: 2003 | version "3.0.3" 2004 | resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.0.3.tgz#2a4e4090b96b2db06a9d7df01055a62a77c9b774" 2005 | integrity sha1-Kk5AkLlrLbBqnX3wEFWmKnfJt3Q= 2006 | dependencies: 2007 | brace-expansion "^1.0.0" 2008 | 2009 | minimist@0.0.8, minimist@~0.0.1: 2010 | version "0.0.8" 2011 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-0.0.8.tgz#857fcabfc3397d2625b8228262e86aa7a011b05d" 2012 | integrity sha1-hX/Kv8M5fSYluCKCYuhqp6ARsF0= 2013 | 2014 | minimist@^1.2.0: 2015 | version "1.2.0" 2016 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.0.tgz#a35008b20f41383eec1fb914f4cd5df79a264284" 2017 | integrity sha1-o1AIsg9BOD7sH7kU9M1d95omQoQ= 2018 | 2019 | mkdirp@0.5.1, "mkdirp@>=0.5 0", mkdirp@^0.5.0, mkdirp@^0.5.1, mkdirp@~0.5.1: 2020 | version "0.5.1" 2021 | resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.5.1.tgz#30057438eac6cf7f8c4767f38648d6697d75c903" 2022 | integrity sha1-MAV0OOrGz3+MR2fzhkjWaX11yQM= 2023 | dependencies: 2024 | minimist "0.0.8" 2025 | 2026 | mocha-junit-reporter@^1.18.0: 2027 | version "1.18.0" 2028 | resolved "https://registry.yarnpkg.com/mocha-junit-reporter/-/mocha-junit-reporter-1.18.0.tgz#9209a3fba30025ae3ae5e6bfe7f9c5bc3c2e8ee2" 2029 | integrity sha512-y3XuqKa2+HRYtg0wYyhW/XsLm2Ps+pqf9HaTAt7+MVUAKFJaNAHOrNseTZo9KCxjfIbxUWwckP5qCDDPUmjSWA== 2030 | dependencies: 2031 | debug "^2.2.0" 2032 | md5 "^2.1.0" 2033 | mkdirp "~0.5.1" 2034 | strip-ansi "^4.0.0" 2035 | xml "^1.0.0" 2036 | 2037 | mocha-sugar-free@1.3.1: 2038 | version "1.3.1" 2039 | resolved "https://registry.yarnpkg.com/mocha-sugar-free/-/mocha-sugar-free-1.3.1.tgz#af7b6cacb77e02e26d4a80842c96252796d653c7" 2040 | integrity sha1-r3tsrLd+AuJtSoCELJYlJ5bWU8c= 2041 | dependencies: 2042 | xtend "^4.0.0" 2043 | 2044 | mocha@3.2.0: 2045 | version "3.2.0" 2046 | resolved "https://registry.yarnpkg.com/mocha/-/mocha-3.2.0.tgz#7dc4f45e5088075171a68896814e6ae9eb7a85e3" 2047 | integrity sha1-fcT0XlCIB1FxpoiWgU5q6et6heM= 2048 | dependencies: 2049 | browser-stdout "1.3.0" 2050 | commander "2.9.0" 2051 | debug "2.2.0" 2052 | diff "1.4.0" 2053 | escape-string-regexp "1.0.5" 2054 | glob "7.0.5" 2055 | growl "1.9.2" 2056 | json3 "3.3.2" 2057 | lodash.create "3.1.1" 2058 | mkdirp "0.5.1" 2059 | supports-color "3.1.2" 2060 | 2061 | ms@0.7.1: 2062 | version "0.7.1" 2063 | resolved "https://registry.yarnpkg.com/ms/-/ms-0.7.1.tgz#9cd13c03adbff25b65effde7ce864ee952017098" 2064 | integrity sha1-nNE8A62/8ltl7/3nzoZO6VIBcJg= 2065 | 2066 | nan@^2.3.0: 2067 | version "2.4.0" 2068 | resolved "https://registry.yarnpkg.com/nan/-/nan-2.4.0.tgz#fb3c59d45fe4effe215f0b890f8adf6eb32d2232" 2069 | integrity sha1-+zxZ1F/k7/4hXwuJD4rfbrMtIjI= 2070 | 2071 | negotiator@0.6.1: 2072 | version "0.6.1" 2073 | resolved "https://registry.yarnpkg.com/negotiator/-/negotiator-0.6.1.tgz#2b327184e8992101177b28563fb5e7102acd0ca9" 2074 | integrity sha1-KzJxhOiZIQEXeyhWP7XnECrNDKk= 2075 | 2076 | node-pre-gyp@^0.6.29: 2077 | version "0.6.32" 2078 | resolved "https://registry.yarnpkg.com/node-pre-gyp/-/node-pre-gyp-0.6.32.tgz#fc452b376e7319b3d255f5f34853ef6fd8fe1fd5" 2079 | integrity sha1-/EUrN25zGbPSVfXzSFPvb9j+H9U= 2080 | dependencies: 2081 | mkdirp "~0.5.1" 2082 | nopt "~3.0.6" 2083 | npmlog "^4.0.1" 2084 | rc "~1.1.6" 2085 | request "^2.79.0" 2086 | rimraf "~2.5.4" 2087 | semver "~5.3.0" 2088 | tar "~2.2.1" 2089 | tar-pack "~3.3.0" 2090 | 2091 | node-status-codes@^1.0.0: 2092 | version "1.0.0" 2093 | resolved "https://registry.yarnpkg.com/node-status-codes/-/node-status-codes-1.0.0.tgz#5ae5541d024645d32a58fcddc9ceecea7ae3ac2f" 2094 | integrity sha1-WuVUHQJGRdMqWPzdyc7s6nrjrC8= 2095 | 2096 | nopt@~3.0.6: 2097 | version "3.0.6" 2098 | resolved "https://registry.yarnpkg.com/nopt/-/nopt-3.0.6.tgz#c6465dbf08abcd4db359317f79ac68a646b28ff9" 2099 | integrity sha1-xkZdvwirzU2zWTF/eaxopkayj/k= 2100 | dependencies: 2101 | abbrev "1" 2102 | 2103 | normalize-package-data@^2.3.2: 2104 | version "2.3.5" 2105 | resolved "https://registry.yarnpkg.com/normalize-package-data/-/normalize-package-data-2.3.5.tgz#8d924f142960e1777e7ffe170543631cc7cb02df" 2106 | integrity sha1-jZJPFClg4Xd+f/4XBUNjHMfLAt8= 2107 | dependencies: 2108 | hosted-git-info "^2.1.4" 2109 | is-builtin-module "^1.0.0" 2110 | semver "2 || 3 || 4 || 5" 2111 | validate-npm-package-license "^3.0.1" 2112 | 2113 | normalize-path@^2.0.1: 2114 | version "2.0.1" 2115 | resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-2.0.1.tgz#47886ac1662760d4261b7d979d241709d3ce3f7a" 2116 | integrity sha1-R4hqwWYnYNQmG32XnSQXCdPOP3o= 2117 | 2118 | npmlog@^4.0.1: 2119 | version "4.0.1" 2120 | resolved "https://registry.yarnpkg.com/npmlog/-/npmlog-4.0.1.tgz#d14f503b4cd79710375553004ba96e6662fbc0b8" 2121 | integrity sha1-0U9QO0zXlxA3VVMAS6luZmL7wLg= 2122 | dependencies: 2123 | are-we-there-yet "~1.1.2" 2124 | console-control-strings "~1.1.0" 2125 | gauge "~2.7.1" 2126 | set-blocking "~2.0.0" 2127 | 2128 | number-is-nan@^1.0.0: 2129 | version "1.0.1" 2130 | resolved "https://registry.yarnpkg.com/number-is-nan/-/number-is-nan-1.0.1.tgz#097b602b53422a522c1afb8790318336941a011d" 2131 | integrity sha1-CXtgK1NCKlIsGvuHkDGDNpQaAR0= 2132 | 2133 | nyc@^10.0.0: 2134 | version "10.0.0" 2135 | resolved "https://registry.yarnpkg.com/nyc/-/nyc-10.0.0.tgz#95bd4a2c3487f33e1e78f213c6d5a53d88074ce6" 2136 | integrity sha1-lb1KLDSH8z4eePITxtWlPYgHTOY= 2137 | dependencies: 2138 | archy "^1.0.0" 2139 | arrify "^1.0.1" 2140 | caching-transform "^1.0.0" 2141 | convert-source-map "^1.3.0" 2142 | debug-log "^1.0.1" 2143 | default-require-extensions "^1.0.0" 2144 | find-cache-dir "^0.1.1" 2145 | find-up "^1.1.2" 2146 | foreground-child "^1.5.3" 2147 | glob "^7.0.6" 2148 | istanbul-lib-coverage "^1.0.0" 2149 | istanbul-lib-hook "^1.0.0-alpha.4" 2150 | istanbul-lib-instrument "^1.3.0" 2151 | istanbul-lib-report "^1.0.0-alpha.3" 2152 | istanbul-lib-source-maps "^1.1.0" 2153 | istanbul-reports "^1.0.0" 2154 | md5-hex "^1.2.0" 2155 | merge-source-map "^1.0.2" 2156 | micromatch "^2.3.11" 2157 | mkdirp "^0.5.0" 2158 | resolve-from "^2.0.0" 2159 | rimraf "^2.5.4" 2160 | signal-exit "^3.0.1" 2161 | spawn-wrap "^1.2.4" 2162 | test-exclude "^3.3.0" 2163 | yargs "^6.4.0" 2164 | yargs-parser "^4.0.2" 2165 | 2166 | oauth-sign@~0.8.1: 2167 | version "0.8.2" 2168 | resolved "https://registry.yarnpkg.com/oauth-sign/-/oauth-sign-0.8.2.tgz#46a6ab7f0aead8deae9ec0565780b7d4efeb9d43" 2169 | integrity sha1-Rqarfwrq2N6unsBWV4C31O/rnUM= 2170 | 2171 | object-assign@^4.0.1, object-assign@^4.1.0: 2172 | version "4.1.0" 2173 | resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.0.tgz#7a3b3d0e98063d43f4c03f2e8ae6cd51a86883a0" 2174 | integrity sha1-ejs9DpgGPUP0wD8uiubNUahog6A= 2175 | 2176 | object.omit@^2.0.0: 2177 | version "2.0.1" 2178 | resolved "https://registry.yarnpkg.com/object.omit/-/object.omit-2.0.1.tgz#1a9c744829f39dbb858c76ca3579ae2a54ebd1fa" 2179 | integrity sha1-Gpx0SCnznbuFjHbKNXmuKlTr0fo= 2180 | dependencies: 2181 | for-own "^0.1.4" 2182 | is-extendable "^0.1.1" 2183 | 2184 | on-finished@~2.3.0: 2185 | version "2.3.0" 2186 | resolved "https://registry.yarnpkg.com/on-finished/-/on-finished-2.3.0.tgz#20f1336481b083cd75337992a16971aa2d906947" 2187 | integrity sha1-IPEzZIGwg811M3mSoWlxqi2QaUc= 2188 | dependencies: 2189 | ee-first "1.1.1" 2190 | 2191 | once@^1.3.0, once@~1.3.3: 2192 | version "1.3.3" 2193 | resolved "https://registry.yarnpkg.com/once/-/once-1.3.3.tgz#b2e261557ce4c314ec8304f3fa82663e4297ca20" 2194 | integrity sha1-suJhVXzkwxTsgwTz+oJmPkKXyiA= 2195 | dependencies: 2196 | wrappy "1" 2197 | 2198 | optimist@^0.6.1, optimist@~0.6.0: 2199 | version "0.6.1" 2200 | resolved "https://registry.yarnpkg.com/optimist/-/optimist-0.6.1.tgz#da3ea74686fa21a19a111c326e90eb15a0196686" 2201 | integrity sha1-2j6nRob6IaGaERwybpDrFaAZZoY= 2202 | dependencies: 2203 | minimist "~0.0.1" 2204 | wordwrap "~0.0.2" 2205 | 2206 | options@>=0.0.5: 2207 | version "0.0.6" 2208 | resolved "https://registry.yarnpkg.com/options/-/options-0.0.6.tgz#ec22d312806bb53e731773e7cdaefcf1c643128f" 2209 | integrity sha1-7CLTEoBrtT5zF3Pnza788cZDEo8= 2210 | 2211 | os-browserify@^0.2.1: 2212 | version "0.2.1" 2213 | resolved "https://registry.yarnpkg.com/os-browserify/-/os-browserify-0.2.1.tgz#63fc4ccee5d2d7763d26bbf8601078e6c2e0044f" 2214 | integrity sha1-Y/xMzuXS13Y9Jrv4YBB45sLgBE8= 2215 | 2216 | os-homedir@^1.0.0, os-homedir@^1.0.1: 2217 | version "1.0.2" 2218 | resolved "https://registry.yarnpkg.com/os-homedir/-/os-homedir-1.0.2.tgz#ffbc4988336e0e833de0c168c7ef152121aa7fb3" 2219 | integrity sha1-/7xJiDNuDoM94MFox+8VISGqf7M= 2220 | 2221 | os-locale@^1.4.0: 2222 | version "1.4.0" 2223 | resolved "https://registry.yarnpkg.com/os-locale/-/os-locale-1.4.0.tgz#20f9f17ae29ed345e8bde583b13d2009803c14d9" 2224 | integrity sha1-IPnxeuKe00XoveWDsT0gCYA8FNk= 2225 | dependencies: 2226 | lcid "^1.0.0" 2227 | 2228 | os-shim@^0.1.2: 2229 | version "0.1.3" 2230 | resolved "https://registry.yarnpkg.com/os-shim/-/os-shim-0.1.3.tgz#6b62c3791cf7909ea35ed46e17658bb417cb3917" 2231 | integrity sha1-a2LDeRz3kJ6jXtRuF2WLtBfLORc= 2232 | 2233 | os-tmpdir@^1.0.0: 2234 | version "1.0.2" 2235 | resolved "https://registry.yarnpkg.com/os-tmpdir/-/os-tmpdir-1.0.2.tgz#bbe67406c79aa85c5cfec766fe5734555dfa1274" 2236 | integrity sha1-u+Z0BseaqFxc/sdm/lc0VV36EnQ= 2237 | 2238 | osenv@^0.1.0: 2239 | version "0.1.3" 2240 | resolved "https://registry.yarnpkg.com/osenv/-/osenv-0.1.3.tgz#83cf05c6d6458fc4d5ac6362ea325d92f2754217" 2241 | integrity sha1-g88FxtZFj8TVrGNi6jJdkvJ1Qhc= 2242 | dependencies: 2243 | os-homedir "^1.0.0" 2244 | os-tmpdir "^1.0.0" 2245 | 2246 | package-json@^2.0.0: 2247 | version "2.4.0" 2248 | resolved "https://registry.yarnpkg.com/package-json/-/package-json-2.4.0.tgz#0d15bd67d1cbbddbb2ca222ff2edb86bcb31a8bb" 2249 | integrity sha1-DRW9Z9HLvduyyiIv8u24a8sxqLs= 2250 | dependencies: 2251 | got "^5.0.0" 2252 | registry-auth-token "^3.0.1" 2253 | registry-url "^3.0.3" 2254 | semver "^5.1.0" 2255 | 2256 | pako@~0.2.0: 2257 | version "0.2.9" 2258 | resolved "https://registry.yarnpkg.com/pako/-/pako-0.2.9.tgz#f3f7522f4ef782348da8161bad9ecfd51bf83a75" 2259 | integrity sha1-8/dSL073gjSNqBYbrZ7P1Rv4OnU= 2260 | 2261 | parse-asn1@^5.0.0: 2262 | version "5.0.0" 2263 | resolved "https://registry.yarnpkg.com/parse-asn1/-/parse-asn1-5.0.0.tgz#35060f6d5015d37628c770f4e091a0b5a278bc23" 2264 | integrity sha1-NQYPbVAV03Yox3D04JGgtaJ4vCM= 2265 | dependencies: 2266 | asn1.js "^4.0.0" 2267 | browserify-aes "^1.0.0" 2268 | create-hash "^1.1.0" 2269 | evp_bytestokey "^1.0.0" 2270 | pbkdf2 "^3.0.3" 2271 | 2272 | parse-glob@^3.0.4: 2273 | version "3.0.4" 2274 | resolved "https://registry.yarnpkg.com/parse-glob/-/parse-glob-3.0.4.tgz#b2c376cfb11f35513badd173ef0bb6e3a388391c" 2275 | integrity sha1-ssN2z7EfNVE7rdFz7wu246OIORw= 2276 | dependencies: 2277 | glob-base "^0.3.0" 2278 | is-dotfile "^1.0.0" 2279 | is-extglob "^1.0.0" 2280 | is-glob "^2.0.0" 2281 | 2282 | parse-json@^2.1.0, parse-json@^2.2.0: 2283 | version "2.2.0" 2284 | resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-2.2.0.tgz#f480f40434ef80741f8469099f8dea18f55a4dc9" 2285 | integrity sha1-9ID0BDTvgHQfhGkJn43qGPVaTck= 2286 | dependencies: 2287 | error-ex "^1.2.0" 2288 | 2289 | parseurl@~1.3.1: 2290 | version "1.3.1" 2291 | resolved "https://registry.yarnpkg.com/parseurl/-/parseurl-1.3.1.tgz#c8ab8c9223ba34888aa64a297b28853bec18da56" 2292 | integrity sha1-yKuMkiO6NIiKpkopeyiFO+wY2lY= 2293 | 2294 | path-browserify@0.0.0: 2295 | version "0.0.0" 2296 | resolved "https://registry.yarnpkg.com/path-browserify/-/path-browserify-0.0.0.tgz#a0b870729aae214005b7d5032ec2cbbb0fb4451a" 2297 | integrity sha1-oLhwcpquIUAFt9UDLsLLuw+0RRo= 2298 | 2299 | path-exists@^2.0.0: 2300 | version "2.1.0" 2301 | resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-2.1.0.tgz#0feb6c64f0fc518d9a754dd5efb62c7022761f4b" 2302 | integrity sha1-D+tsZPD8UY2adU3V77YscCJ2H0s= 2303 | dependencies: 2304 | pinkie-promise "^2.0.0" 2305 | 2306 | path-is-absolute@^1.0.0: 2307 | version "1.0.1" 2308 | resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f" 2309 | integrity sha1-F0uSaHNVNP+8es5r9TpanhtcX18= 2310 | 2311 | path-parse@^1.0.5: 2312 | version "1.0.5" 2313 | resolved "https://registry.yarnpkg.com/path-parse/-/path-parse-1.0.5.tgz#3c1adf871ea9cd6c9431b6ea2bd74a0ff055c4c1" 2314 | integrity sha1-PBrfhx6pzWyUMbbqK9dKD/BVxME= 2315 | 2316 | path-to-regexp@0.1.7: 2317 | version "0.1.7" 2318 | resolved "https://registry.yarnpkg.com/path-to-regexp/-/path-to-regexp-0.1.7.tgz#df604178005f522f15eb4490e7247a1bfaa67f8c" 2319 | integrity sha1-32BBeABfUi8V60SQ5yR6G/qmf4w= 2320 | 2321 | path-type@^1.0.0: 2322 | version "1.1.0" 2323 | resolved "https://registry.yarnpkg.com/path-type/-/path-type-1.1.0.tgz#59c44f7ee491da704da415da5a4070ba4f8fe441" 2324 | integrity sha1-WcRPfuSR2nBNpBXaWkBwuk+P5EE= 2325 | dependencies: 2326 | graceful-fs "^4.1.2" 2327 | pify "^2.0.0" 2328 | pinkie-promise "^2.0.0" 2329 | 2330 | pbkdf2@^3.0.3: 2331 | version "3.0.9" 2332 | resolved "https://registry.yarnpkg.com/pbkdf2/-/pbkdf2-3.0.9.tgz#f2c4b25a600058b3c3773c086c37dbbee1ffe693" 2333 | integrity sha1-8sSyWmAAWLPDdzwIbDfbvuH/5pM= 2334 | dependencies: 2335 | create-hmac "^1.1.2" 2336 | 2337 | pify@^2.0.0: 2338 | version "2.3.0" 2339 | resolved "https://registry.yarnpkg.com/pify/-/pify-2.3.0.tgz#ed141a6ac043a849ea588498e7dca8b15330e90c" 2340 | integrity sha1-7RQaasBDqEnqWISY59yosVMw6Qw= 2341 | 2342 | pinkie-promise@^2.0.0: 2343 | version "2.0.1" 2344 | resolved "https://registry.yarnpkg.com/pinkie-promise/-/pinkie-promise-2.0.1.tgz#2135d6dfa7a358c069ac9b178776288228450ffa" 2345 | integrity sha1-ITXW36ejWMBprJsXh3YogihFD/o= 2346 | dependencies: 2347 | pinkie "^2.0.0" 2348 | 2349 | pinkie@^2.0.0: 2350 | version "2.0.4" 2351 | resolved "https://registry.yarnpkg.com/pinkie/-/pinkie-2.0.4.tgz#72556b80cfa0d48a974e80e77248e80ed4f7f870" 2352 | integrity sha1-clVrgM+g1IqXToDnckjoDtT3+HA= 2353 | 2354 | pkg-dir@^1.0.0: 2355 | version "1.0.0" 2356 | resolved "https://registry.yarnpkg.com/pkg-dir/-/pkg-dir-1.0.0.tgz#7a4b508a8d5bb2d629d447056ff4e9c9314cf3d4" 2357 | integrity sha1-ektQio1bstYp1EcFb/TpyTFM89Q= 2358 | dependencies: 2359 | find-up "^1.0.0" 2360 | 2361 | pre-commit@1.1.3: 2362 | version "1.1.3" 2363 | resolved "https://registry.yarnpkg.com/pre-commit/-/pre-commit-1.1.3.tgz#6d5ed90740472072958c711a15f676aa2c231377" 2364 | integrity sha1-bV7ZB0BHIHKVjHEaFfZ2qiwjE3c= 2365 | dependencies: 2366 | cross-spawn "2.0.x" 2367 | which "1.2.x" 2368 | 2369 | prepend-http@^1.0.1: 2370 | version "1.0.4" 2371 | resolved "https://registry.yarnpkg.com/prepend-http/-/prepend-http-1.0.4.tgz#d4f4562b0ce3696e41ac52d0e002e57a635dc6dc" 2372 | integrity sha1-1PRWKwzjaW5BrFLQ4ALlemNdxtw= 2373 | 2374 | preserve@^0.2.0: 2375 | version "0.2.0" 2376 | resolved "https://registry.yarnpkg.com/preserve/-/preserve-0.2.0.tgz#815ed1f6ebc65926f865b310c0713bcb3315ce4b" 2377 | integrity sha1-gV7R9uvGWSb4ZbMQwHE7yzMVzks= 2378 | 2379 | process-bootstrap@^1.0.0: 2380 | version "1.0.0" 2381 | resolved "https://registry.yarnpkg.com/process-bootstrap/-/process-bootstrap-1.0.0.tgz#24ca0f65b009eda98d37ef1816b478865e82ef2e" 2382 | integrity sha1-JMoPZbAJ7amNN+8YFrR4hl6C7y4= 2383 | 2384 | process-nextick-args@~1.0.6: 2385 | version "1.0.7" 2386 | resolved "https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-1.0.7.tgz#150e20b756590ad3f91093f25a4f2ad8bff30ba3" 2387 | integrity sha1-FQ4gt1ZZCtP5EJPyWk8q2L/zC6M= 2388 | 2389 | process@^0.11.2: 2390 | version "0.11.9" 2391 | resolved "https://registry.yarnpkg.com/process/-/process-0.11.9.tgz#7bd5ad21aa6253e7da8682264f1e11d11c0318c1" 2392 | integrity sha1-e9WtIapiU+fahoImTx4R0RwDGME= 2393 | 2394 | proxy-addr@~1.1.2: 2395 | version "1.1.2" 2396 | resolved "https://registry.yarnpkg.com/proxy-addr/-/proxy-addr-1.1.2.tgz#b4cc5f22610d9535824c123aef9d3cf73c40ba37" 2397 | integrity sha1-tMxfImENlTWCTBI675089zxAujc= 2398 | dependencies: 2399 | forwarded "~0.1.0" 2400 | ipaddr.js "1.1.1" 2401 | 2402 | pseudomap@^1.0.1: 2403 | version "1.0.2" 2404 | resolved "https://registry.yarnpkg.com/pseudomap/-/pseudomap-1.0.2.tgz#f052a28da70e618917ef0a8ac34c1ae5a68286b3" 2405 | integrity sha1-8FKijacOYYkX7wqKw0wa5aaChrM= 2406 | 2407 | public-encrypt@^4.0.0: 2408 | version "4.0.0" 2409 | resolved "https://registry.yarnpkg.com/public-encrypt/-/public-encrypt-4.0.0.tgz#39f699f3a46560dd5ebacbca693caf7c65c18cc6" 2410 | integrity sha1-OfaZ86RlYN1eusvKaTyvfGXBjMY= 2411 | dependencies: 2412 | bn.js "^4.1.0" 2413 | browserify-rsa "^4.0.0" 2414 | create-hash "^1.1.0" 2415 | parse-asn1 "^5.0.0" 2416 | randombytes "^2.0.1" 2417 | 2418 | pundle-browser@^1.1.3: 2419 | version "1.1.3" 2420 | resolved "https://registry.yarnpkg.com/pundle-browser/-/pundle-browser-1.1.3.tgz#196321a26895281adb0d064d9282900c6373570b" 2421 | integrity sha1-GWMhomiVKBrbDQZNkoKQDGNzVws= 2422 | dependencies: 2423 | assert "^1.3.0" 2424 | browserify-zlib "^0.1.4" 2425 | buffer "^4.5.1" 2426 | console-browserify "^1.1.0" 2427 | constants-browserify "^1.0.0" 2428 | crypto-browserify "^3.11.0" 2429 | domain-browser "^1.1.7" 2430 | events "^1.1.0" 2431 | https-browserify "0.0.1" 2432 | os-browserify "^0.2.1" 2433 | path-browserify "0.0.0" 2434 | process "^0.11.2" 2435 | punycode "^1.4.1" 2436 | querystring-es3 "^0.2.1" 2437 | readable-stream "^2.0.6" 2438 | stream-browserify "^2.0.1" 2439 | stream-http "^2.2.1" 2440 | string_decoder "^0.10.31" 2441 | timers-browserify "^2.0.0" 2442 | tty-browserify "0.0.0" 2443 | url "^0.11.0" 2444 | util "^0.10.3" 2445 | vm-browserify "0.0.4" 2446 | 2447 | pundle-dev@1.1.11: 2448 | version "1.1.11" 2449 | resolved "https://registry.yarnpkg.com/pundle-dev/-/pundle-dev-1.1.11.tgz#a8c61ab232b131e49eb3aaba81da4b3fd789f12f" 2450 | integrity sha1-qMYasjKxMeSes6q6gdpLP9eJ8S8= 2451 | dependencies: 2452 | commander "^2.9.0" 2453 | debug "^2.2.0" 2454 | express "^4.13.4" 2455 | process-bootstrap "^1.0.0" 2456 | pundle "^1.1.11" 2457 | sb-event-kit "^2.0.0" 2458 | source-map-to-comment "^1.1.0" 2459 | ws "^1.1.1" 2460 | 2461 | pundle-fs@^1.1.3: 2462 | version "1.1.3" 2463 | resolved "https://registry.yarnpkg.com/pundle-fs/-/pundle-fs-1.1.3.tgz#646c35ce1cae2828ce2413c566723f92d93da485" 2464 | integrity sha1-ZGw1zhyuKCjOJBPFZnI/ktk9pIU= 2465 | 2466 | pundle-generator@^1.1.11: 2467 | version "1.1.11" 2468 | resolved "https://registry.yarnpkg.com/pundle-generator/-/pundle-generator-1.1.11.tgz#bf7022c29df38c7c0711c2d529105c14db52d6ed" 2469 | integrity sha1-v3Aiwp3zjHwHEcLVKRBcFNtS1u0= 2470 | dependencies: 2471 | source-map "^0.5.6" 2472 | uglify-js "^2.7.0" 2473 | 2474 | pundle@^1.1.11: 2475 | version "1.1.11" 2476 | resolved "https://registry.yarnpkg.com/pundle/-/pundle-1.1.11.tgz#6c3943cf141949adceb7b9a7b1ef1c6497aec1f6" 2477 | integrity sha1-bDlDzxQZSa3Ot7mnse8cZJeuwfY= 2478 | dependencies: 2479 | babel-generator "^6.11.4" 2480 | babel-types "^6.11.1" 2481 | babylon "^6.8.4" 2482 | chokidar "^1.6.0" 2483 | commander "^2.9.0" 2484 | debug "^2.2.0" 2485 | lodash.difference "^4.3.0" 2486 | lodash.invert "^4.1.1" 2487 | lodash.isregexp "^3.0.5" 2488 | process-bootstrap "^1.0.0" 2489 | pundle-browser "^1.1.3" 2490 | pundle-fs "^1.1.3" 2491 | pundle-generator "^1.1.11" 2492 | sb-event-kit "^2.0.0" 2493 | sb-promisify "^1.3.0" 2494 | sb-resolve "^3.0.4" 2495 | source-map "^0.5.6" 2496 | source-map-to-comment "^1.1.0" 2497 | 2498 | punycode@1.3.2: 2499 | version "1.3.2" 2500 | resolved "https://registry.yarnpkg.com/punycode/-/punycode-1.3.2.tgz#9653a036fb7c1ee42342f2325cceefea3926c48d" 2501 | integrity sha1-llOgNvt8HuQjQvIyXM7v6jkmxI0= 2502 | 2503 | punycode@^1.4.1: 2504 | version "1.4.1" 2505 | resolved "https://registry.yarnpkg.com/punycode/-/punycode-1.4.1.tgz#c0d5a63b2718800ad8e1eb0fa5269c84dd41845e" 2506 | integrity sha1-wNWmOycYgArY4esPpSachN1BhF4= 2507 | 2508 | qs@6.2.0: 2509 | version "6.2.0" 2510 | resolved "https://registry.yarnpkg.com/qs/-/qs-6.2.0.tgz#3b7848c03c2dece69a9522b0fae8c4126d745f3b" 2511 | integrity sha1-O3hIwDwt7OaalSKw+ujEEm10Xzs= 2512 | 2513 | qs@~6.3.0: 2514 | version "6.3.0" 2515 | resolved "https://registry.yarnpkg.com/qs/-/qs-6.3.0.tgz#f403b264f23bc01228c74131b407f18d5ea5d442" 2516 | integrity sha1-9AOyZPI7wBIox0ExtAfxjV6l1EI= 2517 | 2518 | querystring-es3@^0.2.1: 2519 | version "0.2.1" 2520 | resolved "https://registry.yarnpkg.com/querystring-es3/-/querystring-es3-0.2.1.tgz#9ec61f79049875707d69414596fd907a4d711e73" 2521 | integrity sha1-nsYfeQSYdXB9aUFFlv2Qek1xHnM= 2522 | 2523 | querystring@0.2.0: 2524 | version "0.2.0" 2525 | resolved "https://registry.yarnpkg.com/querystring/-/querystring-0.2.0.tgz#b209849203bb25df820da756e747005878521620" 2526 | integrity sha1-sgmEkgO7Jd+CDadW50cAWHhSFiA= 2527 | 2528 | randomatic@^1.1.3: 2529 | version "1.1.6" 2530 | resolved "https://registry.yarnpkg.com/randomatic/-/randomatic-1.1.6.tgz#110dcabff397e9dcff7c0789ccc0a49adf1ec5bb" 2531 | integrity sha1-EQ3Kv/OX6dz/fAeJzMCkmt8exbs= 2532 | dependencies: 2533 | is-number "^2.0.2" 2534 | kind-of "^3.0.2" 2535 | 2536 | randombytes@^2.0.0, randombytes@^2.0.1: 2537 | version "2.0.3" 2538 | resolved "https://registry.yarnpkg.com/randombytes/-/randombytes-2.0.3.tgz#674c99760901c3c4112771a31e521dc349cc09ec" 2539 | integrity sha1-Z0yZdgkBw8QRJ3GjHlIdw0nMCew= 2540 | 2541 | range-parser@~1.2.0: 2542 | version "1.2.0" 2543 | resolved "https://registry.yarnpkg.com/range-parser/-/range-parser-1.2.0.tgz#f49be6b487894ddc40dcc94a322f611092e00d5e" 2544 | integrity sha1-9JvmtIeJTdxA3MlKMi9hEJLgDV4= 2545 | 2546 | rc@^1.0.1, rc@^1.1.6, rc@~1.1.6: 2547 | version "1.1.6" 2548 | resolved "https://registry.yarnpkg.com/rc/-/rc-1.1.6.tgz#43651b76b6ae53b5c802f1151fa3fc3b059969c9" 2549 | integrity sha1-Q2UbdrauU7XIAvEVH6P8OwWZack= 2550 | dependencies: 2551 | deep-extend "~0.4.0" 2552 | ini "~1.3.0" 2553 | minimist "^1.2.0" 2554 | strip-json-comments "~1.0.4" 2555 | 2556 | read-all-stream@^3.0.0: 2557 | version "3.1.0" 2558 | resolved "https://registry.yarnpkg.com/read-all-stream/-/read-all-stream-3.1.0.tgz#35c3e177f2078ef789ee4bfafa4373074eaef4fa" 2559 | integrity sha1-NcPhd/IHjveJ7kv6+kNzB06u9Po= 2560 | dependencies: 2561 | pinkie-promise "^2.0.0" 2562 | readable-stream "^2.0.0" 2563 | 2564 | read-pkg-up@^1.0.1: 2565 | version "1.0.1" 2566 | resolved "https://registry.yarnpkg.com/read-pkg-up/-/read-pkg-up-1.0.1.tgz#9d63c13276c065918d57f002a57f40a1b643fb02" 2567 | integrity sha1-nWPBMnbAZZGNV/ACpX9AobZD+wI= 2568 | dependencies: 2569 | find-up "^1.0.0" 2570 | read-pkg "^1.0.0" 2571 | 2572 | read-pkg@^1.0.0: 2573 | version "1.1.0" 2574 | resolved "https://registry.yarnpkg.com/read-pkg/-/read-pkg-1.1.0.tgz#f5ffaa5ecd29cb31c0474bca7d756b6bb29e3f28" 2575 | integrity sha1-9f+qXs0pyzHAR0vKfXVra7KePyg= 2576 | dependencies: 2577 | load-json-file "^1.0.0" 2578 | normalize-package-data "^2.3.2" 2579 | path-type "^1.0.0" 2580 | 2581 | readable-stream@^2.0.0, "readable-stream@^2.0.0 || ^1.1.13", readable-stream@^2.0.2, readable-stream@^2.0.5, readable-stream@^2.0.6, readable-stream@^2.1.0: 2582 | version "2.2.2" 2583 | resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.2.2.tgz#a9e6fec3c7dda85f8bb1b3ba7028604556fc825e" 2584 | integrity sha1-qeb+w8fdqF+LsbO6cChgRVb8gl4= 2585 | dependencies: 2586 | buffer-shims "^1.0.0" 2587 | core-util-is "~1.0.0" 2588 | inherits "~2.0.1" 2589 | isarray "~1.0.0" 2590 | process-nextick-args "~1.0.6" 2591 | string_decoder "~0.10.x" 2592 | util-deprecate "~1.0.1" 2593 | 2594 | readable-stream@~2.0.0: 2595 | version "2.0.6" 2596 | resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.0.6.tgz#8f90341e68a53ccc928788dacfcd11b36eb9b78e" 2597 | integrity sha1-j5A0HmilPMySh4jaz80Rs265t44= 2598 | dependencies: 2599 | core-util-is "~1.0.0" 2600 | inherits "~2.0.1" 2601 | isarray "~1.0.0" 2602 | process-nextick-args "~1.0.6" 2603 | string_decoder "~0.10.x" 2604 | util-deprecate "~1.0.1" 2605 | 2606 | readable-stream@~2.1.4: 2607 | version "2.1.5" 2608 | resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.1.5.tgz#66fa8b720e1438b364681f2ad1a63c618448c9d0" 2609 | integrity sha1-ZvqLcg4UOLNkaB8q0aY8YYRIydA= 2610 | dependencies: 2611 | buffer-shims "^1.0.0" 2612 | core-util-is "~1.0.0" 2613 | inherits "~2.0.1" 2614 | isarray "~1.0.0" 2615 | process-nextick-args "~1.0.6" 2616 | string_decoder "~0.10.x" 2617 | util-deprecate "~1.0.1" 2618 | 2619 | readdirp@^2.0.0: 2620 | version "2.1.0" 2621 | resolved "https://registry.yarnpkg.com/readdirp/-/readdirp-2.1.0.tgz#4ed0ad060df3073300c48440373f72d1cc642d78" 2622 | integrity sha1-TtCtBg3zBzMAxIRANz9y0cxkLXg= 2623 | dependencies: 2624 | graceful-fs "^4.1.2" 2625 | minimatch "^3.0.2" 2626 | readable-stream "^2.0.2" 2627 | set-immediate-shim "^1.0.1" 2628 | 2629 | regenerator-runtime@^0.10.0: 2630 | version "0.10.1" 2631 | resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.10.1.tgz#257f41961ce44558b18f7814af48c17559f9faeb" 2632 | integrity sha1-JX9BlhzkRVixj3gUr0jBdVn5+us= 2633 | 2634 | regenerator-runtime@^0.9.5: 2635 | version "0.9.6" 2636 | resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.9.6.tgz#d33eb95d0d2001a4be39659707c51b0cb71ce029" 2637 | integrity sha1-0z65XQ0gAaS+OWWXB8UbDLcc4Ck= 2638 | 2639 | regex-cache@^0.4.2: 2640 | version "0.4.3" 2641 | resolved "https://registry.yarnpkg.com/regex-cache/-/regex-cache-0.4.3.tgz#9b1a6c35d4d0dfcef5711ae651e8e9d3d7114145" 2642 | integrity sha1-mxpsNdTQ3871cRrmUejp09cRQUU= 2643 | dependencies: 2644 | is-equal-shallow "^0.1.3" 2645 | is-primitive "^2.0.0" 2646 | 2647 | registry-auth-token@^3.0.1: 2648 | version "3.1.0" 2649 | resolved "https://registry.yarnpkg.com/registry-auth-token/-/registry-auth-token-3.1.0.tgz#997c08256e0c7999837b90e944db39d8a790276b" 2650 | integrity sha1-mXwIJW4MeZmDe5DpRNs52KeQJ2s= 2651 | dependencies: 2652 | rc "^1.1.6" 2653 | 2654 | registry-url@^3.0.3: 2655 | version "3.1.0" 2656 | resolved "https://registry.yarnpkg.com/registry-url/-/registry-url-3.1.0.tgz#3d4ef870f73dde1d77f0cf9a381432444e174942" 2657 | integrity sha1-PU74cPc93h138M+aOBQyRE4XSUI= 2658 | dependencies: 2659 | rc "^1.0.1" 2660 | 2661 | repeat-element@^1.1.2: 2662 | version "1.1.2" 2663 | resolved "https://registry.yarnpkg.com/repeat-element/-/repeat-element-1.1.2.tgz#ef089a178d1483baae4d93eb98b4f9e4e11d990a" 2664 | integrity sha1-7wiaF40Ug7quTZPrmLT55OEdmQo= 2665 | 2666 | repeat-string@^1.5.2: 2667 | version "1.6.1" 2668 | resolved "https://registry.yarnpkg.com/repeat-string/-/repeat-string-1.6.1.tgz#8dcae470e1c88abc2d600fff4a776286da75e637" 2669 | integrity sha1-jcrkcOHIirwtYA//Sndihtp15jc= 2670 | 2671 | repeating@^2.0.0: 2672 | version "2.0.1" 2673 | resolved "https://registry.yarnpkg.com/repeating/-/repeating-2.0.1.tgz#5214c53a926d3552707527fbab415dbc08d06dda" 2674 | integrity sha1-UhTFOpJtNVJwdSf7q0FdvAjQbdo= 2675 | dependencies: 2676 | is-finite "^1.0.0" 2677 | 2678 | request@>=2.42.0, request@^2.79.0: 2679 | version "2.79.0" 2680 | resolved "https://registry.yarnpkg.com/request/-/request-2.79.0.tgz#4dfe5bf6be8b8cdc37fcf93e04b65577722710de" 2681 | integrity sha1-Tf5b9r6LjNw3/Pk+BLZVd3InEN4= 2682 | dependencies: 2683 | aws-sign2 "~0.6.0" 2684 | aws4 "^1.2.1" 2685 | caseless "~0.11.0" 2686 | combined-stream "~1.0.5" 2687 | extend "~3.0.0" 2688 | forever-agent "~0.6.1" 2689 | form-data "~2.1.1" 2690 | har-validator "~2.0.6" 2691 | hawk "~3.1.3" 2692 | http-signature "~1.1.0" 2693 | is-typedarray "~1.0.0" 2694 | isstream "~0.1.2" 2695 | json-stringify-safe "~5.0.1" 2696 | mime-types "~2.1.7" 2697 | oauth-sign "~0.8.1" 2698 | qs "~6.3.0" 2699 | stringstream "~0.0.4" 2700 | tough-cookie "~2.3.0" 2701 | tunnel-agent "~0.4.1" 2702 | uuid "^3.0.0" 2703 | 2704 | require-directory@^2.1.1: 2705 | version "2.1.1" 2706 | resolved "https://registry.yarnpkg.com/require-directory/-/require-directory-2.1.1.tgz#8c64ad5fd30dab1c976e2344ffe7f792a6a6df42" 2707 | integrity sha1-jGStX9MNqxyXbiNE/+f3kqam30I= 2708 | 2709 | require-main-filename@^1.0.1: 2710 | version "1.0.1" 2711 | resolved "https://registry.yarnpkg.com/require-main-filename/-/require-main-filename-1.0.1.tgz#97f717b69d48784f5f526a6c5aa8ffdda055a4d1" 2712 | integrity sha1-l/cXtp1IeE9fUmpsWqj/3aBVpNE= 2713 | 2714 | resolve-from@^2.0.0: 2715 | version "2.0.0" 2716 | resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-2.0.0.tgz#9480ab20e94ffa1d9e80a804c7ea147611966b57" 2717 | integrity sha1-lICrIOlP+h2egKgEx+oUdhGWa1c= 2718 | 2719 | resolve@1.8.1, resolve@^1.1.6: 2720 | version "1.8.1" 2721 | resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.8.1.tgz#82f1ec19a423ac1fbd080b0bab06ba36e84a7a26" 2722 | integrity sha512-AicPrAC7Qu1JxPCZ9ZgCZlY35QgFnNqc+0LtbRNxnVw4TXvjQ72wnuL9JQcEBgXkI9JM8MsT9kaQoHcpCRJOYA== 2723 | dependencies: 2724 | path-parse "^1.0.5" 2725 | 2726 | resolve@^1.1.7: 2727 | version "1.1.7" 2728 | resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.1.7.tgz#203114d82ad2c5ed9e8e0411b3932875e889e97b" 2729 | integrity sha1-IDEU2CrSxe2ejgQRs5ModeiJ6Xs= 2730 | 2731 | right-align@^0.1.1: 2732 | version "0.1.3" 2733 | resolved "https://registry.yarnpkg.com/right-align/-/right-align-0.1.3.tgz#61339b722fe6a3515689210d24e14c96148613ef" 2734 | integrity sha1-YTObci/mo1FWiSENJOFMlhSGE+8= 2735 | dependencies: 2736 | align-text "^0.1.1" 2737 | 2738 | rimraf@2, rimraf@^2.3.3, rimraf@^2.4.3, rimraf@^2.4.4, rimraf@^2.5.4, rimraf@~2.5.1, rimraf@~2.5.4: 2739 | version "2.5.4" 2740 | resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.5.4.tgz#96800093cbf1a0c86bd95b4625467535c29dfa04" 2741 | integrity sha1-loAAk8vxoMhr2VtGJUZ1NcKd+gQ= 2742 | dependencies: 2743 | glob "^7.0.5" 2744 | 2745 | rimraf@~2.1.4: 2746 | version "2.1.4" 2747 | resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.1.4.tgz#5a6eb62eeda068f51ede50f29b3e5cd22f3d9bb2" 2748 | integrity sha1-Wm62Lu2gaPUe3lDymz5c0i89m7I= 2749 | optionalDependencies: 2750 | graceful-fs "~1" 2751 | 2752 | ripemd160@^1.0.0: 2753 | version "1.0.1" 2754 | resolved "https://registry.yarnpkg.com/ripemd160/-/ripemd160-1.0.1.tgz#93a4bbd4942bc574b69a8fa57c71de10ecca7d6e" 2755 | integrity sha1-k6S71JQrxXS2mo+lfHHeEOzKfW4= 2756 | 2757 | rollup-plugin-node-resolve@^3.4.0: 2758 | version "3.4.0" 2759 | resolved "https://registry.yarnpkg.com/rollup-plugin-node-resolve/-/rollup-plugin-node-resolve-3.4.0.tgz#908585eda12e393caac7498715a01e08606abc89" 2760 | integrity sha512-PJcd85dxfSBWih84ozRtBkB731OjXk0KnzN0oGp7WOWcarAFkVa71cV5hTJg2qpVsV2U8EUwrzHP3tvy9vS3qg== 2761 | dependencies: 2762 | builtin-modules "^2.0.0" 2763 | is-module "^1.0.0" 2764 | resolve "^1.1.6" 2765 | 2766 | rollup-plugin-typescript2@^0.18.0: 2767 | version "0.18.0" 2768 | resolved "https://registry.yarnpkg.com/rollup-plugin-typescript2/-/rollup-plugin-typescript2-0.18.0.tgz#ab3f7003f47c3858810d516e4d3fada546bfb1df" 2769 | integrity sha512-AL7LJl31bYO/x8zO1fuE7ACn/2nDs9DVYL3qjiWSYg5LC4EV/iKuCL4Fm6pjzEqCB4fFIMXoUuGUf5R+BLNKSg== 2770 | dependencies: 2771 | fs-extra "7.0.0" 2772 | resolve "1.8.1" 2773 | rollup-pluginutils "2.3.3" 2774 | tslib "1.9.3" 2775 | 2776 | rollup-pluginutils@2.3.3: 2777 | version "2.3.3" 2778 | resolved "https://registry.yarnpkg.com/rollup-pluginutils/-/rollup-pluginutils-2.3.3.tgz#3aad9b1eb3e7fe8262820818840bf091e5ae6794" 2779 | integrity sha512-2XZwja7b6P5q4RZ5FhyX1+f46xi1Z3qBKigLRZ6VTZjwbN0K1IFGMlwm06Uu0Emcre2Z63l77nq/pzn+KxIEoA== 2780 | dependencies: 2781 | estree-walker "^0.5.2" 2782 | micromatch "^2.3.11" 2783 | 2784 | rollup@^0.67.4: 2785 | version "0.67.4" 2786 | resolved "https://registry.yarnpkg.com/rollup/-/rollup-0.67.4.tgz#8ed6b0993337f84ec8a0387f824fa6c197e833ec" 2787 | integrity sha512-AVuP73mkb4BBMUmksQ3Jw0jTrBTU1i7rLiUYjFxLZGb3xiFmtVEg40oByphkZAsiL0bJC3hRAJUQos/e5EBd+w== 2788 | dependencies: 2789 | "@types/estree" "0.0.39" 2790 | "@types/node" "*" 2791 | 2792 | samsam@^1.1.3: 2793 | version "1.2.1" 2794 | resolved "https://registry.yarnpkg.com/samsam/-/samsam-1.2.1.tgz#edd39093a3184370cb859243b2bdf255e7d8ea67" 2795 | integrity sha1-7dOQk6MYQ3DLhZJDsr3yVefY6mc= 2796 | 2797 | samsam@~1.1: 2798 | version "1.1.3" 2799 | resolved "https://registry.yarnpkg.com/samsam/-/samsam-1.1.3.tgz#9f5087419b4d091f232571e7fa52e90b0f552621" 2800 | integrity sha1-n1CHQZtNCR8jJXHn+lLpCw9VJiE= 2801 | 2802 | sb-event-kit@^2.0.0: 2803 | version "2.0.0" 2804 | resolved "https://registry.yarnpkg.com/sb-event-kit/-/sb-event-kit-2.0.0.tgz#10b736812f13a37a473aa6eaa3089b66ab725a7f" 2805 | integrity sha1-ELc2gS8To3pHOqbqowibZqtyWn8= 2806 | 2807 | sb-promisify@^1.3.0: 2808 | version "1.3.0" 2809 | resolved "https://registry.yarnpkg.com/sb-promisify/-/sb-promisify-1.3.0.tgz#3af6f1fa9ffc833f14de86916eefc1f559b1b051" 2810 | integrity sha1-Ovbx+p/8gz8U3oaRbu/B9VmxsFE= 2811 | 2812 | sb-resolve@^3.0.4: 2813 | version "3.0.4" 2814 | resolved "https://registry.yarnpkg.com/sb-resolve/-/sb-resolve-3.0.4.tgz#805a915e166c382181b78d1abbb55b5fc60a4da8" 2815 | integrity sha1-gFqRXhZsOCGBt40au7VbX8YKTag= 2816 | dependencies: 2817 | sb-promisify "^1.3.0" 2818 | 2819 | semver-diff@^2.0.0: 2820 | version "2.1.0" 2821 | resolved "https://registry.yarnpkg.com/semver-diff/-/semver-diff-2.1.0.tgz#4bbb8437c8d37e4b0cf1a68fd726ec6d645d6d36" 2822 | integrity sha1-S7uEN8jTfksM8aaP1ybsbWRdbTY= 2823 | dependencies: 2824 | semver "^5.0.3" 2825 | 2826 | "semver@2 || 3 || 4 || 5", semver@^5.0.3, semver@^5.1.0, semver@^5.3.0, semver@~5.3.0: 2827 | version "5.3.0" 2828 | resolved "https://registry.yarnpkg.com/semver/-/semver-5.3.0.tgz#9b2ce5d3de02d17c6012ad326aa6b4d0cf54f94f" 2829 | integrity sha1-myzl094C0XxgEq0yaqa00M9U+U8= 2830 | 2831 | send@0.14.1: 2832 | version "0.14.1" 2833 | resolved "https://registry.yarnpkg.com/send/-/send-0.14.1.tgz#a954984325392f51532a7760760e459598c89f7a" 2834 | integrity sha1-qVSYQyU5L1FTKndgdg5FlZjIn3o= 2835 | dependencies: 2836 | debug "~2.2.0" 2837 | depd "~1.1.0" 2838 | destroy "~1.0.4" 2839 | encodeurl "~1.0.1" 2840 | escape-html "~1.0.3" 2841 | etag "~1.7.0" 2842 | fresh "0.3.0" 2843 | http-errors "~1.5.0" 2844 | mime "1.3.4" 2845 | ms "0.7.1" 2846 | on-finished "~2.3.0" 2847 | range-parser "~1.2.0" 2848 | statuses "~1.3.0" 2849 | 2850 | serve-static@~1.11.1: 2851 | version "1.11.1" 2852 | resolved "https://registry.yarnpkg.com/serve-static/-/serve-static-1.11.1.tgz#d6cce7693505f733c759de57befc1af76c0f0805" 2853 | integrity sha1-1sznaTUF9zPHWd5Xvvwa92wPCAU= 2854 | dependencies: 2855 | encodeurl "~1.0.1" 2856 | escape-html "~1.0.3" 2857 | parseurl "~1.3.1" 2858 | send "0.14.1" 2859 | 2860 | set-blocking@^2.0.0, set-blocking@~2.0.0: 2861 | version "2.0.0" 2862 | resolved "https://registry.yarnpkg.com/set-blocking/-/set-blocking-2.0.0.tgz#045f9782d011ae9a6803ddd382b24392b3d890f7" 2863 | integrity sha1-BF+XgtARrppoA93TgrJDkrPYkPc= 2864 | 2865 | set-immediate-shim@^1.0.1: 2866 | version "1.0.1" 2867 | resolved "https://registry.yarnpkg.com/set-immediate-shim/-/set-immediate-shim-1.0.1.tgz#4b2b1b27eb808a9f8dcc481a58e5e56f599f3f61" 2868 | integrity sha1-SysbJ+uAip+NzEgaWOXlb1mfP2E= 2869 | 2870 | setimmediate@^1.0.4: 2871 | version "1.0.5" 2872 | resolved "https://registry.yarnpkg.com/setimmediate/-/setimmediate-1.0.5.tgz#290cbb232e306942d7d7ea9b83732ab7856f8285" 2873 | integrity sha1-KQy7Iy4waULX1+qbg3Mqt4VvgoU= 2874 | 2875 | setprototypeof@1.0.2: 2876 | version "1.0.2" 2877 | resolved "https://registry.yarnpkg.com/setprototypeof/-/setprototypeof-1.0.2.tgz#81a552141ec104b88e89ce383103ad5c66564d08" 2878 | integrity sha1-gaVSFB7BBLiOic44MQOtXGZWTQg= 2879 | 2880 | sha.js@^2.3.6: 2881 | version "2.4.8" 2882 | resolved "https://registry.yarnpkg.com/sha.js/-/sha.js-2.4.8.tgz#37068c2c476b6baf402d14a49c67f597921f634f" 2883 | integrity sha1-NwaMLEdra69ALRSknGf1l5IfY08= 2884 | dependencies: 2885 | inherits "^2.0.1" 2886 | 2887 | signal-exit@^2.0.0: 2888 | version "2.1.2" 2889 | resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-2.1.2.tgz#375879b1f92ebc3b334480d038dc546a6d558564" 2890 | integrity sha1-N1h5sfkuvDszRIDQONxUam1VhWQ= 2891 | 2892 | signal-exit@^3.0.0, signal-exit@^3.0.1: 2893 | version "3.0.1" 2894 | resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.1.tgz#5a4c884992b63a7acd9badb7894c3ee9cfccad81" 2895 | integrity sha1-WkyISZK2OnrNm623iUw+6c/MrYE= 2896 | 2897 | sinon-chai@2.8.0: 2898 | version "2.8.0" 2899 | resolved "https://registry.yarnpkg.com/sinon-chai/-/sinon-chai-2.8.0.tgz#432a9bbfd51a6fc00798f4d2526a829c060687ac" 2900 | integrity sha1-Qyqbv9Uab8AHmPTSUmqCnAYGh6w= 2901 | 2902 | sinon@2.0.0-pre.3: 2903 | version "2.0.0-pre.3" 2904 | resolved "https://registry.yarnpkg.com/sinon/-/sinon-2.0.0-pre.3.tgz#e4bc546cee938d8a6d98f904dc97526e2b42704e" 2905 | integrity sha1-5LxUbO6TjYptmPkE3JdSbitCcE4= 2906 | dependencies: 2907 | formatio "1.1.1" 2908 | lolex "^1.4.0" 2909 | samsam "^1.1.3" 2910 | text-encoding "0.5.2" 2911 | 2912 | slide@^1.1.5: 2913 | version "1.1.6" 2914 | resolved "https://registry.yarnpkg.com/slide/-/slide-1.1.6.tgz#56eb027d65b4d2dce6cb2e2d32c4d4afc9e1d707" 2915 | integrity sha1-VusCfWW00tzmyy4tMsTUr8nh1wc= 2916 | 2917 | sntp@1.x.x: 2918 | version "1.0.9" 2919 | resolved "https://registry.yarnpkg.com/sntp/-/sntp-1.0.9.tgz#6541184cc90aeea6c6e7b35e2659082443c66198" 2920 | integrity sha1-ZUEYTMkK7qbG57NeJlkIJEPGYZg= 2921 | dependencies: 2922 | hoek "2.x.x" 2923 | 2924 | source-map-support@^0.4.2: 2925 | version "0.4.6" 2926 | resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.4.6.tgz#32552aa64b458392a85eab3b0b5ee61527167aeb" 2927 | integrity sha1-MlUqpktFg5KoXqs7C17mFScWeus= 2928 | dependencies: 2929 | source-map "^0.5.3" 2930 | 2931 | source-map-to-comment@^1.1.0: 2932 | version "1.1.0" 2933 | resolved "https://registry.yarnpkg.com/source-map-to-comment/-/source-map-to-comment-1.1.0.tgz#e518c40bc7399b2e23c8e331a11635a97750e9c3" 2934 | integrity sha1-5RjEC8c5my4jyOMxoRY1qXdQ6cM= 2935 | 2936 | source-map@^0.4.4: 2937 | version "0.4.4" 2938 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.4.4.tgz#eba4f5da9c0dc999de68032d8b4f76173652036b" 2939 | integrity sha1-66T12pwNyZneaAMti092FzZSA2s= 2940 | dependencies: 2941 | amdefine ">=0.0.4" 2942 | 2943 | source-map@^0.5.0, source-map@^0.5.3, source-map@^0.5.6, source-map@~0.5.1: 2944 | version "0.5.6" 2945 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.5.6.tgz#75ce38f52bf0733c5a7f0c118d81334a2bb5f412" 2946 | integrity sha1-dc449SvwczxafwwRjYEzSiu19BI= 2947 | 2948 | spawn-sync@1.0.13: 2949 | version "1.0.13" 2950 | resolved "https://registry.yarnpkg.com/spawn-sync/-/spawn-sync-1.0.13.tgz#904091b9ad48a0f3afb0e84752154c01e82fd8d8" 2951 | integrity sha1-kECRua1IoPOvsOhHUhVMAegv2Ng= 2952 | dependencies: 2953 | concat-stream "^1.4.7" 2954 | os-shim "^0.1.2" 2955 | 2956 | spawn-wrap@^1.2.4: 2957 | version "1.2.4" 2958 | resolved "https://registry.yarnpkg.com/spawn-wrap/-/spawn-wrap-1.2.4.tgz#920eb211a769c093eebfbd5b0e7a5d2e68ab2e40" 2959 | integrity sha1-kg6yEadpwJPuv71bDnpdLmirLkA= 2960 | dependencies: 2961 | foreground-child "^1.3.3" 2962 | mkdirp "^0.5.0" 2963 | os-homedir "^1.0.1" 2964 | rimraf "^2.3.3" 2965 | signal-exit "^2.0.0" 2966 | which "^1.2.4" 2967 | 2968 | spdx-correct@~1.0.0: 2969 | version "1.0.2" 2970 | resolved "https://registry.yarnpkg.com/spdx-correct/-/spdx-correct-1.0.2.tgz#4b3073d933ff51f3912f03ac5519498a4150db40" 2971 | integrity sha1-SzBz2TP/UfORLwOsVRlJikFQ20A= 2972 | dependencies: 2973 | spdx-license-ids "^1.0.2" 2974 | 2975 | spdx-expression-parse@~1.0.0: 2976 | version "1.0.4" 2977 | resolved "https://registry.yarnpkg.com/spdx-expression-parse/-/spdx-expression-parse-1.0.4.tgz#9bdf2f20e1f40ed447fbe273266191fced51626c" 2978 | integrity sha1-m98vIOH0DtRH++JzJmGR/O1RYmw= 2979 | 2980 | spdx-license-ids@^1.0.2: 2981 | version "1.2.2" 2982 | resolved "https://registry.yarnpkg.com/spdx-license-ids/-/spdx-license-ids-1.2.2.tgz#c9df7a3424594ade6bd11900d596696dc06bac57" 2983 | integrity sha1-yd96NCRZSt5r0RkA1ZZpbcBrrFc= 2984 | 2985 | sprintf-js@^1.0.3: 2986 | version "1.0.3" 2987 | resolved "https://registry.yarnpkg.com/sprintf-js/-/sprintf-js-1.0.3.tgz#04e6926f662895354f3dd015203633b857297e2c" 2988 | integrity sha1-BOaSb2YolTVPPdAVIDYzuFcpfiw= 2989 | 2990 | sshpk@^1.7.0: 2991 | version "1.10.1" 2992 | resolved "https://registry.yarnpkg.com/sshpk/-/sshpk-1.10.1.tgz#30e1a5d329244974a1af61511339d595af6638b0" 2993 | integrity sha1-MOGl0ykkSXShr2FREznVla9mOLA= 2994 | dependencies: 2995 | asn1 "~0.2.3" 2996 | assert-plus "^1.0.0" 2997 | dashdash "^1.12.0" 2998 | getpass "^0.1.1" 2999 | optionalDependencies: 3000 | bcrypt-pbkdf "^1.0.0" 3001 | ecc-jsbn "~0.1.1" 3002 | jodid25519 "^1.0.0" 3003 | jsbn "~0.1.0" 3004 | tweetnacl "~0.14.0" 3005 | 3006 | "statuses@>= 1.3.1 < 2", statuses@~1.3.0: 3007 | version "1.3.1" 3008 | resolved "https://registry.yarnpkg.com/statuses/-/statuses-1.3.1.tgz#faf51b9eb74aaef3b3acf4ad5f61abf24cb7b93e" 3009 | integrity sha1-+vUbnrdKrvOzrPStX2Gr8ky3uT4= 3010 | 3011 | stream-browserify@^2.0.1: 3012 | version "2.0.1" 3013 | resolved "https://registry.yarnpkg.com/stream-browserify/-/stream-browserify-2.0.1.tgz#66266ee5f9bdb9940a4e4514cafb43bb71e5c9db" 3014 | integrity sha1-ZiZu5fm9uZQKTkUUyvtDu3Hlyds= 3015 | dependencies: 3016 | inherits "~2.0.1" 3017 | readable-stream "^2.0.2" 3018 | 3019 | stream-http@^2.2.1: 3020 | version "2.5.0" 3021 | resolved "https://registry.yarnpkg.com/stream-http/-/stream-http-2.5.0.tgz#585eee513217ed98fe199817e7313b6f772a6802" 3022 | integrity sha1-WF7uUTIX7Zj+GZgX5zE7b3cqaAI= 3023 | dependencies: 3024 | builtin-status-codes "^2.0.0" 3025 | inherits "^2.0.1" 3026 | readable-stream "^2.1.0" 3027 | to-arraybuffer "^1.0.0" 3028 | xtend "^4.0.0" 3029 | 3030 | string-width@^1.0.1, string-width@^1.0.2: 3031 | version "1.0.2" 3032 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-1.0.2.tgz#118bdf5b8cdc51a2a7e70d211e07e2b0b9b107d3" 3033 | integrity sha1-EYvfW4zcUaKn5w0hHgfisLmxB9M= 3034 | dependencies: 3035 | code-point-at "^1.0.0" 3036 | is-fullwidth-code-point "^1.0.0" 3037 | strip-ansi "^3.0.0" 3038 | 3039 | string_decoder@^0.10.31, string_decoder@~0.10.x: 3040 | version "0.10.31" 3041 | resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-0.10.31.tgz#62e203bc41766c6c28c9fc84301dab1c5310fa94" 3042 | integrity sha1-YuIDvEF2bGwoyfyEMB2rHFMQ+pQ= 3043 | 3044 | stringstream@~0.0.4: 3045 | version "0.0.5" 3046 | resolved "https://registry.yarnpkg.com/stringstream/-/stringstream-0.0.5.tgz#4e484cd4de5a0bbbee18e46307710a8a81621878" 3047 | integrity sha1-TkhM1N5aC7vuGORjB3EKioFiGHg= 3048 | 3049 | strip-ansi@^3.0.0, strip-ansi@^3.0.1: 3050 | version "3.0.1" 3051 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-3.0.1.tgz#6a385fb8853d952d5ff05d0e8aaf94278dc63dcf" 3052 | integrity sha1-ajhfuIU9lS1f8F0Oiq+UJ43GPc8= 3053 | dependencies: 3054 | ansi-regex "^2.0.0" 3055 | 3056 | strip-ansi@^4.0.0: 3057 | version "4.0.0" 3058 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-4.0.0.tgz#a8479022eb1ac368a871389b635262c505ee368f" 3059 | integrity sha1-qEeQIusaw2iocTibY1JixQXuNo8= 3060 | dependencies: 3061 | ansi-regex "^3.0.0" 3062 | 3063 | strip-bom@^2.0.0: 3064 | version "2.0.0" 3065 | resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-2.0.0.tgz#6219a85616520491f35788bdbf1447a99c7e6b0e" 3066 | integrity sha1-YhmoVhZSBJHzV4i9vxRHqZx+aw4= 3067 | dependencies: 3068 | is-utf8 "^0.2.0" 3069 | 3070 | strip-json-comments@~1.0.4: 3071 | version "1.0.4" 3072 | resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-1.0.4.tgz#1e15fbcac97d3ee99bf2d73b4c656b082bbafb91" 3073 | integrity sha1-HhX7ysl9Pumb8tc7TGVrCCu6+5E= 3074 | 3075 | supports-color@3.1.2, supports-color@^3.1.2: 3076 | version "3.1.2" 3077 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-3.1.2.tgz#72a262894d9d408b956ca05ff37b2ed8a6e2a2d5" 3078 | integrity sha1-cqJiiU2dQIuVbKBf83su2KbiotU= 3079 | dependencies: 3080 | has-flag "^1.0.0" 3081 | 3082 | supports-color@^2.0.0: 3083 | version "2.0.0" 3084 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-2.0.0.tgz#535d045ce6b6363fa40117084629995e9df324c7" 3085 | integrity sha1-U10EXOa2Nj+kARcIRimZXp3zJMc= 3086 | 3087 | symbol-observable@1.2.0: 3088 | version "1.2.0" 3089 | resolved "https://registry.yarnpkg.com/symbol-observable/-/symbol-observable-1.2.0.tgz#c22688aed4eab3cdc2dfeacbb561660560a00804" 3090 | integrity sha512-e900nM8RRtGhlV36KGEU9k65K3mPb1WV70OdjfxlG2EAuM1noi/E/BaW/uMhL7bPEssK8QV57vN3esixjUvcXQ== 3091 | 3092 | tar-pack@~3.3.0: 3093 | version "3.3.0" 3094 | resolved "https://registry.yarnpkg.com/tar-pack/-/tar-pack-3.3.0.tgz#30931816418f55afc4d21775afdd6720cee45dae" 3095 | integrity sha1-MJMYFkGPVa/E0hd1r91nIM7kXa4= 3096 | dependencies: 3097 | debug "~2.2.0" 3098 | fstream "~1.0.10" 3099 | fstream-ignore "~1.0.5" 3100 | once "~1.3.3" 3101 | readable-stream "~2.1.4" 3102 | rimraf "~2.5.1" 3103 | tar "~2.2.1" 3104 | uid-number "~0.0.6" 3105 | 3106 | tar@~2.2.1: 3107 | version "2.2.1" 3108 | resolved "https://registry.yarnpkg.com/tar/-/tar-2.2.1.tgz#8e4d2a256c0e2185c6b18ad694aec968b83cb1d1" 3109 | integrity sha1-jk0qJWwOIYXGsYrWlK7JaLg8sdE= 3110 | dependencies: 3111 | block-stream "*" 3112 | fstream "^1.0.2" 3113 | inherits "2" 3114 | 3115 | temp@~0.5.1: 3116 | version "0.5.1" 3117 | resolved "https://registry.yarnpkg.com/temp/-/temp-0.5.1.tgz#77ab19c79aa7b593cbe4fac2441768cad987b8df" 3118 | integrity sha1-d6sZx5qntZPL5PrCRBdoytmHuN8= 3119 | dependencies: 3120 | rimraf "~2.1.4" 3121 | 3122 | test-exclude@^3.3.0: 3123 | version "3.3.0" 3124 | resolved "https://registry.yarnpkg.com/test-exclude/-/test-exclude-3.3.0.tgz#7a17ca1239988c98367b0621456dbb7d4bc38977" 3125 | integrity sha1-ehfKEjmYjJg2ewYhRW27fUvDiXc= 3126 | dependencies: 3127 | arrify "^1.0.1" 3128 | micromatch "^2.3.11" 3129 | object-assign "^4.1.0" 3130 | read-pkg-up "^1.0.1" 3131 | require-main-filename "^1.0.1" 3132 | 3133 | text-encoding@0.5.2: 3134 | version "0.5.2" 3135 | resolved "https://registry.yarnpkg.com/text-encoding/-/text-encoding-0.5.2.tgz#85b4660819f088777609465551690fea137d824a" 3136 | integrity sha1-hbRmCBnwiHd2CUZVUWkP6hN9gko= 3137 | 3138 | timed-out@^3.0.0: 3139 | version "3.0.0" 3140 | resolved "https://registry.yarnpkg.com/timed-out/-/timed-out-3.0.0.tgz#ff88de96030ce960eabd42487db61d3add229273" 3141 | integrity sha1-/4jelgMM6WDqvUJIfbYdOt0iknM= 3142 | 3143 | timers-browserify@^2.0.0: 3144 | version "2.0.2" 3145 | resolved "https://registry.yarnpkg.com/timers-browserify/-/timers-browserify-2.0.2.tgz#ab4883cf597dcd50af211349a00fbca56ac86b86" 3146 | integrity sha1-q0iDz1l9zVCvIRNJoA+8pWrIa4Y= 3147 | dependencies: 3148 | setimmediate "^1.0.4" 3149 | 3150 | to-arraybuffer@^1.0.0: 3151 | version "1.0.1" 3152 | resolved "https://registry.yarnpkg.com/to-arraybuffer/-/to-arraybuffer-1.0.1.tgz#7d229b1fcc637e466ca081180836a7aabff83f43" 3153 | integrity sha1-fSKbH8xjfkZsoIEYCDanqr/4P0M= 3154 | 3155 | to-fast-properties@^1.0.1: 3156 | version "1.0.2" 3157 | resolved "https://registry.yarnpkg.com/to-fast-properties/-/to-fast-properties-1.0.2.tgz#f3f5c0c3ba7299a7ef99427e44633257ade43320" 3158 | integrity sha1-8/XAw7pymafvmUJ+RGMyV63kMyA= 3159 | 3160 | tough-cookie@~2.3.0: 3161 | version "2.3.2" 3162 | resolved "https://registry.yarnpkg.com/tough-cookie/-/tough-cookie-2.3.2.tgz#f081f76e4c85720e6c37a5faced737150d84072a" 3163 | integrity sha1-8IH3bkyFcg5sN6X6ztc3FQ2EByo= 3164 | dependencies: 3165 | punycode "^1.4.1" 3166 | 3167 | tsickle@0.2.0: 3168 | version "0.2.0" 3169 | resolved "https://registry.yarnpkg.com/tsickle/-/tsickle-0.2.0.tgz#93ed731c410a940ba902772e53309b329da29dc7" 3170 | integrity sha1-k+1zHEEKlAupAncuUzCbMp2incc= 3171 | dependencies: 3172 | minimist "^1.2.0" 3173 | mkdirp "^0.5.1" 3174 | source-map "^0.5.6" 3175 | source-map-support "^0.4.2" 3176 | 3177 | tslib@1.9.3: 3178 | version "1.9.3" 3179 | resolved "https://registry.yarnpkg.com/tslib/-/tslib-1.9.3.tgz#d7e4dd79245d85428c4d7e4822a79917954ca286" 3180 | integrity sha512-4krF8scpejhaOgqzBEcGM7yDIEfi0/8+8zDRZhNZZ2kjmHJ4hv3zCbQWxoJGz1iw5U0Jl0nma13xzHXcncMavQ== 3181 | 3182 | tslint-junit-formatter@^5.1.0: 3183 | version "5.1.0" 3184 | resolved "https://registry.yarnpkg.com/tslint-junit-formatter/-/tslint-junit-formatter-5.1.0.tgz#afd2071466227aad41c044191bbd1c6f9ba7541e" 3185 | integrity sha1-r9IHFGYieq1BwEQZG70cb5unVB4= 3186 | 3187 | tslint@4.0.2: 3188 | version "4.0.2" 3189 | resolved "https://registry.yarnpkg.com/tslint/-/tslint-4.0.2.tgz#d43f24c0c1f826de7f3a097bb7808a8b4325feac" 3190 | integrity sha1-1D8kwMH4Jt5/Ogl7t4CKi0Ml/qw= 3191 | dependencies: 3192 | colors "^1.1.2" 3193 | diff "^3.0.1" 3194 | findup-sync "~0.3.0" 3195 | glob "^7.1.1" 3196 | optimist "~0.6.0" 3197 | resolve "^1.1.7" 3198 | underscore.string "^3.3.4" 3199 | update-notifier "^1.0.2" 3200 | 3201 | tty-browserify@0.0.0: 3202 | version "0.0.0" 3203 | resolved "https://registry.yarnpkg.com/tty-browserify/-/tty-browserify-0.0.0.tgz#a157ba402da24e9bf957f9aa69d524eed42901a6" 3204 | integrity sha1-oVe6QC2iTpv5V/mqadUk7tQpAaY= 3205 | 3206 | tunnel-agent@~0.4.1: 3207 | version "0.4.3" 3208 | resolved "https://registry.yarnpkg.com/tunnel-agent/-/tunnel-agent-0.4.3.tgz#6373db76909fe570e08d73583365ed828a74eeeb" 3209 | integrity sha1-Y3PbdpCf5XDgjXNYM2Xtgop07us= 3210 | 3211 | tweetnacl@^0.14.3, tweetnacl@~0.14.0: 3212 | version "0.14.4" 3213 | resolved "https://registry.yarnpkg.com/tweetnacl/-/tweetnacl-0.14.4.tgz#8c9dbfb52795686f166cd2023794bcf103d13c2b" 3214 | integrity sha1-jJ2/tSeVaG8WbNICN5S88QPRPCs= 3215 | 3216 | type-detect@0.1.1: 3217 | version "0.1.1" 3218 | resolved "https://registry.yarnpkg.com/type-detect/-/type-detect-0.1.1.tgz#0ba5ec2a885640e470ea4e8505971900dac58822" 3219 | integrity sha1-C6XsKohWQORw6k6FBZcZANrFiCI= 3220 | 3221 | type-detect@^1.0.0: 3222 | version "1.0.0" 3223 | resolved "https://registry.yarnpkg.com/type-detect/-/type-detect-1.0.0.tgz#762217cc06db258ec48908a1298e8b95121e8ea2" 3224 | integrity sha1-diIXzAbbJY7EiQihKY6LlRIejqI= 3225 | 3226 | type-is@~1.6.13: 3227 | version "1.6.14" 3228 | resolved "https://registry.yarnpkg.com/type-is/-/type-is-1.6.14.tgz#e219639c17ded1ca0789092dd54a03826b817cb2" 3229 | integrity sha1-4hljnBfe0coHiQkt1UoDgmuBfLI= 3230 | dependencies: 3231 | media-typer "0.3.0" 3232 | mime-types "~2.1.13" 3233 | 3234 | typedarray@~0.0.5: 3235 | version "0.0.6" 3236 | resolved "https://registry.yarnpkg.com/typedarray/-/typedarray-0.0.6.tgz#867ac74e3864187b1d3d47d996a78ec5c8830777" 3237 | integrity sha1-hnrHTjhkGHsdPUfZlqeOxciDB3c= 3238 | 3239 | typescript-pundle@1.0.1: 3240 | version "1.0.1" 3241 | resolved "https://registry.yarnpkg.com/typescript-pundle/-/typescript-pundle-1.0.1.tgz#ff10d1e3a29a0d8bf9a17d7279cc43d29c184d95" 3242 | integrity sha1-/xDR46KaDYv5oX1yecxD0pwYTZU= 3243 | dependencies: 3244 | typescript "^2.0.7" 3245 | 3246 | typescript@3: 3247 | version "3.2.1" 3248 | resolved "https://registry.yarnpkg.com/typescript/-/typescript-3.2.1.tgz#0b7a04b8cf3868188de914d9568bd030f0c56192" 3249 | integrity sha512-jw7P2z/h6aPT4AENXDGjcfHTu5CSqzsbZc6YlUIebTyBAq8XaKp78x7VcSh30xwSCcsu5irZkYZUSFP1MrAMbg== 3250 | 3251 | typescript@^2.0.7: 3252 | version "2.1.4" 3253 | resolved "https://registry.yarnpkg.com/typescript/-/typescript-2.1.4.tgz#b53b69fb841126acb1dd4b397d21daba87572251" 3254 | integrity sha1-tTtp+4QRJqyx3Us5fSHauodXIlE= 3255 | 3256 | uglify-js@^2.6, uglify-js@^2.7.0: 3257 | version "2.7.5" 3258 | resolved "https://registry.yarnpkg.com/uglify-js/-/uglify-js-2.7.5.tgz#4612c0c7baaee2ba7c487de4904ae122079f2ca8" 3259 | integrity sha1-RhLAx7qu4rp8SH3kkErhIgefLKg= 3260 | dependencies: 3261 | async "~0.2.6" 3262 | source-map "~0.5.1" 3263 | uglify-to-browserify "~1.0.0" 3264 | yargs "~3.10.0" 3265 | 3266 | uglify-to-browserify@~1.0.0: 3267 | version "1.0.2" 3268 | resolved "https://registry.yarnpkg.com/uglify-to-browserify/-/uglify-to-browserify-1.0.2.tgz#6e0924d6bda6b5afe349e39a6d632850a0f882b7" 3269 | integrity sha1-bgkk1r2mta/jSeOabWMoUKD4grc= 3270 | 3271 | uid-number@~0.0.6: 3272 | version "0.0.6" 3273 | resolved "https://registry.yarnpkg.com/uid-number/-/uid-number-0.0.6.tgz#0ea10e8035e8eb5b8e4449f06da1c730663baa81" 3274 | integrity sha1-DqEOgDXo61uOREnwbaHHMGY7qoE= 3275 | 3276 | ultron@1.0.x: 3277 | version "1.0.2" 3278 | resolved "https://registry.yarnpkg.com/ultron/-/ultron-1.0.2.tgz#ace116ab557cd197386a4e88f4685378c8b2e4fa" 3279 | integrity sha1-rOEWq1V80Zc4ak6I9GhTeMiy5Po= 3280 | 3281 | underscore.string@^3.3.4: 3282 | version "3.3.4" 3283 | resolved "https://registry.yarnpkg.com/underscore.string/-/underscore.string-3.3.4.tgz#2c2a3f9f83e64762fdc45e6ceac65142864213db" 3284 | integrity sha1-LCo/n4PmR2L9xF5s6sZRQoZCE9s= 3285 | dependencies: 3286 | sprintf-js "^1.0.3" 3287 | util-deprecate "^1.0.2" 3288 | 3289 | universalify@^0.1.0: 3290 | version "0.1.2" 3291 | resolved "https://registry.yarnpkg.com/universalify/-/universalify-0.1.2.tgz#b646f69be3942dabcecc9d6639c80dc105efaa66" 3292 | integrity sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg== 3293 | 3294 | unpipe@~1.0.0: 3295 | version "1.0.0" 3296 | resolved "https://registry.yarnpkg.com/unpipe/-/unpipe-1.0.0.tgz#b2bf4ee8514aae6165b4817829d21b2ef49904ec" 3297 | integrity sha1-sr9O6FFKrmFltIF4KdIbLvSZBOw= 3298 | 3299 | unzip-response@^1.0.2: 3300 | version "1.0.2" 3301 | resolved "https://registry.yarnpkg.com/unzip-response/-/unzip-response-1.0.2.tgz#b984f0877fc0a89c2c773cc1ef7b5b232b5b06fe" 3302 | integrity sha1-uYTwh3/AqJwsdzzB73tbIytbBv4= 3303 | 3304 | update-notifier@^1.0.2: 3305 | version "1.0.3" 3306 | resolved "https://registry.yarnpkg.com/update-notifier/-/update-notifier-1.0.3.tgz#8f92c515482bd6831b7c93013e70f87552c7cf5a" 3307 | integrity sha1-j5LFFUgr1oMbfJMBPnD4dVLHz1o= 3308 | dependencies: 3309 | boxen "^0.6.0" 3310 | chalk "^1.0.0" 3311 | configstore "^2.0.0" 3312 | is-npm "^1.0.0" 3313 | latest-version "^2.0.0" 3314 | lazy-req "^1.1.0" 3315 | semver-diff "^2.0.0" 3316 | xdg-basedir "^2.0.0" 3317 | 3318 | url-parse-lax@^1.0.0: 3319 | version "1.0.0" 3320 | resolved "https://registry.yarnpkg.com/url-parse-lax/-/url-parse-lax-1.0.0.tgz#7af8f303645e9bd79a272e7a14ac68bc0609da73" 3321 | integrity sha1-evjzA2Rem9eaJy56FKxovAYJ2nM= 3322 | dependencies: 3323 | prepend-http "^1.0.1" 3324 | 3325 | url@^0.11.0: 3326 | version "0.11.0" 3327 | resolved "https://registry.yarnpkg.com/url/-/url-0.11.0.tgz#3838e97cfc60521eb73c525a8e55bfdd9e2e28f1" 3328 | integrity sha1-ODjpfPxgUh63PFJajlW/3Z4uKPE= 3329 | dependencies: 3330 | punycode "1.3.2" 3331 | querystring "0.2.0" 3332 | 3333 | urlgrey@>=0.4.0: 3334 | version "0.4.4" 3335 | resolved "https://registry.yarnpkg.com/urlgrey/-/urlgrey-0.4.4.tgz#892fe95960805e85519f1cd4389f2cb4cbb7652f" 3336 | integrity sha1-iS/pWWCAXoVRnxzUOJ8stMu3ZS8= 3337 | 3338 | util-deprecate@^1.0.2, util-deprecate@~1.0.1: 3339 | version "1.0.2" 3340 | resolved "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf" 3341 | integrity sha1-RQ1Nyfpw3nMnYvvS1KKJgUGaDM8= 3342 | 3343 | util@0.10.3, util@^0.10.3: 3344 | version "0.10.3" 3345 | resolved "https://registry.yarnpkg.com/util/-/util-0.10.3.tgz#7afb1afe50805246489e3db7fe0ed379336ac0f9" 3346 | integrity sha1-evsa/lCAUkZInj23/g7TeTNqwPk= 3347 | dependencies: 3348 | inherits "2.0.1" 3349 | 3350 | utils-merge@1.0.0: 3351 | version "1.0.0" 3352 | resolved "https://registry.yarnpkg.com/utils-merge/-/utils-merge-1.0.0.tgz#0294fb922bb9375153541c4f7096231f287c8af8" 3353 | integrity sha1-ApT7kiu5N1FTVBxPcJYjHyh8ivg= 3354 | 3355 | uuid@^2.0.1: 3356 | version "2.0.3" 3357 | resolved "https://registry.yarnpkg.com/uuid/-/uuid-2.0.3.tgz#67e2e863797215530dff318e5bf9dcebfd47b21a" 3358 | integrity sha1-Z+LoY3lyFVMN/zGOW/nc6/1Hsho= 3359 | 3360 | uuid@^3.0.0: 3361 | version "3.0.1" 3362 | resolved "https://registry.yarnpkg.com/uuid/-/uuid-3.0.1.tgz#6544bba2dfda8c1cf17e629a3a305e2bb1fee6c1" 3363 | integrity sha1-ZUS7ot/ajBzxfmKaOjBeK7H+5sE= 3364 | 3365 | validate-npm-package-license@^3.0.1: 3366 | version "3.0.1" 3367 | resolved "https://registry.yarnpkg.com/validate-npm-package-license/-/validate-npm-package-license-3.0.1.tgz#2804babe712ad3379459acfbe24746ab2c303fbc" 3368 | integrity sha1-KAS6vnEq0zeUWaz74kdGqywwP7w= 3369 | dependencies: 3370 | spdx-correct "~1.0.0" 3371 | spdx-expression-parse "~1.0.0" 3372 | 3373 | vary@~1.1.0: 3374 | version "1.1.0" 3375 | resolved "https://registry.yarnpkg.com/vary/-/vary-1.1.0.tgz#e1e5affbbd16ae768dd2674394b9ad3022653140" 3376 | integrity sha1-4eWv+70WrnaN0mdDlLmtMCJlMUA= 3377 | 3378 | verror@1.3.6: 3379 | version "1.3.6" 3380 | resolved "https://registry.yarnpkg.com/verror/-/verror-1.3.6.tgz#cff5df12946d297d2baaefaa2689e25be01c005c" 3381 | integrity sha1-z/XfEpRtKX0rqu+qJoniW+AcAFw= 3382 | dependencies: 3383 | extsprintf "1.0.2" 3384 | 3385 | vm-browserify@0.0.4: 3386 | version "0.0.4" 3387 | resolved "https://registry.yarnpkg.com/vm-browserify/-/vm-browserify-0.0.4.tgz#5d7ea45bbef9e4a6ff65f95438e0a87c357d5a73" 3388 | integrity sha1-XX6kW7755Kb/ZflUOOCofDV9WnM= 3389 | dependencies: 3390 | indexof "0.0.1" 3391 | 3392 | which-module@^1.0.0: 3393 | version "1.0.0" 3394 | resolved "https://registry.yarnpkg.com/which-module/-/which-module-1.0.0.tgz#bba63ca861948994ff307736089e3b96026c2a4f" 3395 | integrity sha1-u6Y8qGGUiZT/MHc2CJ47lgJsKk8= 3396 | 3397 | which@1.2.x, which@^1.2.4, which@^1.2.8, which@^1.2.9: 3398 | version "1.2.12" 3399 | resolved "https://registry.yarnpkg.com/which/-/which-1.2.12.tgz#de67b5e450269f194909ef23ece4ebe416fa1192" 3400 | integrity sha1-3me15FAmnxlJCe8j7OTr5Bb6EZI= 3401 | dependencies: 3402 | isexe "^1.1.1" 3403 | 3404 | wide-align@^1.1.0: 3405 | version "1.1.0" 3406 | resolved "https://registry.yarnpkg.com/wide-align/-/wide-align-1.1.0.tgz#40edde802a71fea1f070da3e62dcda2e7add96ad" 3407 | integrity sha1-QO3egCpx/qHwcNo+YtzaLnrdlq0= 3408 | dependencies: 3409 | string-width "^1.0.1" 3410 | 3411 | widest-line@^1.0.0: 3412 | version "1.0.0" 3413 | resolved "https://registry.yarnpkg.com/widest-line/-/widest-line-1.0.0.tgz#0c09c85c2a94683d0d7eaf8ee097d564bf0e105c" 3414 | integrity sha1-DAnIXCqUaD0Nfq+O4JfVZL8OEFw= 3415 | dependencies: 3416 | string-width "^1.0.1" 3417 | 3418 | window-size@0.1.0: 3419 | version "0.1.0" 3420 | resolved "https://registry.yarnpkg.com/window-size/-/window-size-0.1.0.tgz#5438cd2ea93b202efa3a19fe8887aee7c94f9c9d" 3421 | integrity sha1-VDjNLqk7IC76Ohn+iIeu58lPnJ0= 3422 | 3423 | window-size@^0.2.0: 3424 | version "0.2.0" 3425 | resolved "https://registry.yarnpkg.com/window-size/-/window-size-0.2.0.tgz#b4315bb4214a3d7058ebeee892e13fa24d98b075" 3426 | integrity sha1-tDFbtCFKPXBY6+7okuE/ok2YsHU= 3427 | 3428 | wordwrap@0.0.2, wordwrap@~0.0.2: 3429 | version "0.0.2" 3430 | resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-0.0.2.tgz#b79669bb42ecb409f83d583cad52ca17eaa1643f" 3431 | integrity sha1-t5Zpu0LstAn4PVg8rVLKF+qhZD8= 3432 | 3433 | wrap-ansi@^2.0.0: 3434 | version "2.1.0" 3435 | resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-2.1.0.tgz#d8fc3d284dd05794fe84973caecdd1cf824fdd85" 3436 | integrity sha1-2Pw9KE3QV5T+hJc8rs3Rz4JP3YU= 3437 | dependencies: 3438 | string-width "^1.0.1" 3439 | strip-ansi "^3.0.1" 3440 | 3441 | wrappy@1: 3442 | version "1.0.2" 3443 | resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f" 3444 | integrity sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8= 3445 | 3446 | write-file-atomic@^1.1.2, write-file-atomic@^1.1.4: 3447 | version "1.2.0" 3448 | resolved "https://registry.yarnpkg.com/write-file-atomic/-/write-file-atomic-1.2.0.tgz#14c66d4e4cb3ca0565c28cf3b7a6f3e4d5938fab" 3449 | integrity sha1-FMZtTkyzygVlwozzt6bz5NWTj6s= 3450 | dependencies: 3451 | graceful-fs "^4.1.2" 3452 | imurmurhash "^0.1.4" 3453 | slide "^1.1.5" 3454 | 3455 | ws@^1.1.1: 3456 | version "1.1.1" 3457 | resolved "https://registry.yarnpkg.com/ws/-/ws-1.1.1.tgz#082ddb6c641e85d4bb451f03d52f06eabdb1f018" 3458 | integrity sha1-CC3bbGQehdS7RR8D1S8G6r2x8Bg= 3459 | dependencies: 3460 | options ">=0.0.5" 3461 | ultron "1.0.x" 3462 | 3463 | xdg-basedir@^2.0.0: 3464 | version "2.0.0" 3465 | resolved "https://registry.yarnpkg.com/xdg-basedir/-/xdg-basedir-2.0.0.tgz#edbc903cc385fc04523d966a335504b5504d1bd2" 3466 | integrity sha1-7byQPMOF/ARSPZZqM1UEtVBNG9I= 3467 | dependencies: 3468 | os-homedir "^1.0.0" 3469 | 3470 | xml@^1.0.0: 3471 | version "1.0.1" 3472 | resolved "https://registry.yarnpkg.com/xml/-/xml-1.0.1.tgz#78ba72020029c5bc87b8a81a3cfcd74b4a2fc1e5" 3473 | integrity sha1-eLpyAgApxbyHuKgaPPzXS0ovweU= 3474 | 3475 | xtend@^4.0.0: 3476 | version "4.0.1" 3477 | resolved "https://registry.yarnpkg.com/xtend/-/xtend-4.0.1.tgz#a5c6d532be656e23db820efb943a1f04998d63af" 3478 | integrity sha1-pcbVMr5lbiPbgg77lDofBJmNY68= 3479 | 3480 | y18n@^3.2.1: 3481 | version "3.2.1" 3482 | resolved "https://registry.yarnpkg.com/y18n/-/y18n-3.2.1.tgz#6d15fba884c08679c0d77e88e7759e811e07fa41" 3483 | integrity sha1-bRX7qITAhnnA136I53WegR4H+kE= 3484 | 3485 | yallist@^2.0.0: 3486 | version "2.0.0" 3487 | resolved "https://registry.yarnpkg.com/yallist/-/yallist-2.0.0.tgz#306c543835f09ee1a4cb23b7bce9ab341c91cdd4" 3488 | integrity sha1-MGxUODXwnuGkyyO3vOmrNByRzdQ= 3489 | 3490 | yargs-parser@^4.0.2, yargs-parser@^4.2.0: 3491 | version "4.2.0" 3492 | resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-4.2.0.tgz#6ced869cd05a3dca6a1eaee38b68aeed4b0b4101" 3493 | integrity sha1-bO2GnNBaPcpqHq7ji2iu7UsLQQE= 3494 | dependencies: 3495 | camelcase "^3.0.0" 3496 | 3497 | yargs@^6.4.0: 3498 | version "6.5.0" 3499 | resolved "https://registry.yarnpkg.com/yargs/-/yargs-6.5.0.tgz#a902e23a1f0fe912b2a03f6131b7ed740c9718ff" 3500 | integrity sha1-qQLiOh8P6RKyoD9hMbftdAyXGP8= 3501 | dependencies: 3502 | camelcase "^3.0.0" 3503 | cliui "^3.2.0" 3504 | decamelize "^1.1.1" 3505 | get-caller-file "^1.0.1" 3506 | os-locale "^1.4.0" 3507 | read-pkg-up "^1.0.1" 3508 | require-directory "^2.1.1" 3509 | require-main-filename "^1.0.1" 3510 | set-blocking "^2.0.0" 3511 | string-width "^1.0.2" 3512 | which-module "^1.0.0" 3513 | window-size "^0.2.0" 3514 | y18n "^3.2.1" 3515 | yargs-parser "^4.2.0" 3516 | 3517 | yargs@~3.10.0: 3518 | version "3.10.0" 3519 | resolved "https://registry.yarnpkg.com/yargs/-/yargs-3.10.0.tgz#f7ee7bd857dd7c1d2d38c0e74efbd681d1431fd1" 3520 | integrity sha1-9+572FfdfB0tOMDnTvvWgdFDH9E= 3521 | dependencies: 3522 | camelcase "^1.0.2" 3523 | cliui "^2.1.0" 3524 | decamelize "^1.0.0" 3525 | window-size "0.1.0" 3526 | --------------------------------------------------------------------------------