├── .babelrc ├── .eslintrc.yml ├── .gitignore ├── .npmignore ├── CHANGELOG.md ├── CONTRIBUTING.md ├── LICENSE.md ├── README.md ├── examples └── demo-app.js ├── package.json ├── src ├── __tests__ │ ├── index-test.js │ ├── sideEffectMiddleware-test.js │ ├── streamSubscriber-test.js │ └── streamWriter-test.js ├── index.js ├── sideEffectMiddleware.js ├── streamSubscriber.js ├── streamWriter.js └── util.js └── yarn.lock /.babelrc: -------------------------------------------------------------------------------- 1 | { 2 | "presets": ["es2015", "es2016", "es2017"], 3 | "plugins": ["transform-object-rest-spread", "transform-es2015-destructuring"] 4 | } 5 | -------------------------------------------------------------------------------- /.eslintrc.yml: -------------------------------------------------------------------------------- 1 | extends: airbnb-base 2 | env: 3 | jest: true 4 | rules: 5 | global-require: warn #See https://github.com/camjackson/redux-eventstore/issues/20 6 | no-constant-condition: off 7 | no-plusplus: off 8 | import/prefer-default-export: off 9 | arrow-parens: 10 | - error 11 | - as-needed 12 | import/no-extraneous-dependencies: 13 | - error 14 | - devDependencies: ['**/*-test.js', 'examples/*'] 15 | valid-typeof: 16 | - error 17 | - requireStringLiterals: false 18 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | dist 3 | npm-debug.log 4 | -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | /src 2 | .babelrc 3 | .gitignore 4 | .npmignore 5 | CONTRIBUTING.md 6 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- 1 | # Change Log 2 | All notable changes to this project will be documented in this file. 3 | 4 | The format is based on [Keep a Changelog](http://keepachangelog.com/) 5 | and this project adheres to [Semantic Versioning](http://semver.org/). 6 | 7 | ## [Unreleased] 8 | ### Added 9 | - sideEffectsMiddleware (See issue #18) 10 | 11 | ## v0.1.0 12 | ### Changed 13 | - Minor code and doc changes 14 | - Moving to minor versions to reflect some level of stability in the API 15 | 16 | ## v0.0.2 17 | ### Changed 18 | - Restructure API around the concept of a stream object 19 | 20 | ## v0.0.1 21 | ### Added 22 | - Project setup, build process, docs, etc 23 | - `subscribeToStream` 24 | - `streamWriter` 25 | -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- 1 | # Contributing 2 | Feature requests and bug reports are appreciated. 3 | 4 | Pull requests are also welcome. Just make sure the linter and tests pass, and that you add tests for any new code. 5 | 6 | This project uses [`yarn`](https://yarnpkg.com/) rather than the regular npm cli. You should use it too when working on 7 | this project, especially when installing or adding dependencies. Just do `npm install -g yarn` to get it. 8 | 9 | ## Install 10 | Install node v6, then install yarn, then clone and install package dependencies: 11 | ```sh 12 | git clone ssh://git@github.com:camjackson/redux-eventstore 13 | yarn 14 | ``` 15 | 16 | ## Tests (in watch mode) 17 | ```sh 18 | yarn test 19 | ``` 20 | 21 | ## Linting 22 | ```sh 23 | yarn lint 24 | ``` 25 | 26 | ## Demo 27 | ```sh 28 | yarn demo 29 | ``` 30 | 31 | You'll need a local Event Store running on port 2113 for the demo to work. 32 | You can [install it natively](http://docs.geteventstore.com/introduction/3.9.0/), or you can use Docker: 33 | 34 | ```sh 35 | sudo docker pull eventstore/eventstore 36 | sudo docker run --name eventstore-node -it -p 2113:2113 -p 1113:1113 eventstore/eventstore 37 | ``` 38 | 39 | You can then inspect the event streams [in your browser](http://0.0.0.0:2113/web/index.html#/streams/demo-stream). 40 | -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- 1 | Apache License 2 | Version 2.0, January 2004 3 | http://www.apache.org/licenses/ 4 | 5 | TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION 6 | 7 | 1. Definitions. 8 | 9 | "License" shall mean the terms and conditions for use, reproduction, 10 | and distribution as defined by Sections 1 through 9 of this document. 11 | 12 | "Licensor" shall mean the copyright owner or entity authorized by 13 | the copyright owner that is granting the License. 14 | 15 | "Legal Entity" shall mean the union of the acting entity and all 16 | other entities that control, are controlled by, or are under common 17 | control with that entity. For the purposes of this definition, 18 | "control" means (i) the power, direct or indirect, to cause the 19 | direction or management of such entity, whether by contract or 20 | otherwise, or (ii) ownership of fifty percent (50%) or more of the 21 | outstanding shares, or (iii) beneficial ownership of such entity. 22 | 23 | "You" (or "Your") shall mean an individual or Legal Entity 24 | exercising permissions granted by this License. 25 | 26 | "Source" form shall mean the preferred form for making modifications, 27 | including but not limited to software source code, documentation 28 | source, and configuration files. 29 | 30 | "Object" form shall mean any form resulting from mechanical 31 | transformation or translation of a Source form, including but 32 | not limited to compiled object code, generated documentation, 33 | and conversions to other media types. 34 | 35 | "Work" shall mean the work of authorship, whether in Source or 36 | Object form, made available under the License, as indicated by a 37 | copyright notice that is included in or attached to the work 38 | (an example is provided in the Appendix below). 39 | 40 | "Derivative Works" shall mean any work, whether in Source or Object 41 | form, that is based on (or derived from) the Work and for which the 42 | editorial revisions, annotations, elaborations, or other modifications 43 | represent, as a whole, an original work of authorship. For the purposes 44 | of this License, Derivative Works shall not include works that remain 45 | separable from, or merely link (or bind by name) to the interfaces of, 46 | the Work and Derivative Works thereof. 47 | 48 | "Contribution" shall mean any work of authorship, including 49 | the original version of the Work and any modifications or additions 50 | to that Work or Derivative Works thereof, that is intentionally 51 | submitted to Licensor for inclusion in the Work by the copyright owner 52 | or by an individual or Legal Entity authorized to submit on behalf of 53 | the copyright owner. For the purposes of this definition, "submitted" 54 | means any form of electronic, verbal, or written communication sent 55 | to the Licensor or its representatives, including but not limited to 56 | communication on electronic mailing lists, source code control systems, 57 | and issue tracking systems that are managed by, or on behalf of, the 58 | Licensor for the purpose of discussing and improving the Work, but 59 | excluding communication that is conspicuously marked or otherwise 60 | designated in writing by the copyright owner as "Not a Contribution." 61 | 62 | "Contributor" shall mean Licensor and any individual or Legal Entity 63 | on behalf of whom a Contribution has been received by Licensor and 64 | subsequently incorporated within the Work. 65 | 66 | 2. Grant of Copyright License. Subject to the terms and conditions of 67 | this License, each Contributor hereby grants to You a perpetual, 68 | worldwide, non-exclusive, no-charge, royalty-free, irrevocable 69 | copyright license to reproduce, prepare Derivative Works of, 70 | publicly display, publicly perform, sublicense, and distribute the 71 | Work and such Derivative Works in Source or Object form. 72 | 73 | 3. Grant of Patent License. Subject to the terms and conditions of 74 | this License, each Contributor hereby grants to You a perpetual, 75 | worldwide, non-exclusive, no-charge, royalty-free, irrevocable 76 | (except as stated in this section) patent license to make, have made, 77 | use, offer to sell, sell, import, and otherwise transfer the Work, 78 | where such license applies only to those patent claims licensable 79 | by such Contributor that are necessarily infringed by their 80 | Contribution(s) alone or by combination of their Contribution(s) 81 | with the Work to which such Contribution(s) was submitted. If You 82 | institute patent litigation against any entity (including a 83 | cross-claim or counterclaim in a lawsuit) alleging that the Work 84 | or a Contribution incorporated within the Work constitutes direct 85 | or contributory patent infringement, then any patent licenses 86 | granted to You under this License for that Work shall terminate 87 | as of the date such litigation is filed. 88 | 89 | 4. Redistribution. You may reproduce and distribute copies of the 90 | Work or Derivative Works thereof in any medium, with or without 91 | modifications, and in Source or Object form, provided that You 92 | meet the following conditions: 93 | 94 | (a) You must give any other recipients of the Work or 95 | Derivative Works a copy of this License; and 96 | 97 | (b) You must cause any modified files to carry prominent notices 98 | stating that You changed the files; and 99 | 100 | (c) You must retain, in the Source form of any Derivative Works 101 | that You distribute, all copyright, patent, trademark, and 102 | attribution notices from the Source form of the Work, 103 | excluding those notices that do not pertain to any part of 104 | the Derivative Works; and 105 | 106 | (d) If the Work includes a "NOTICE" text file as part of its 107 | distribution, then any Derivative Works that You distribute must 108 | include a readable copy of the attribution notices contained 109 | within such NOTICE file, excluding those notices that do not 110 | pertain to any part of the Derivative Works, in at least one 111 | of the following places: within a NOTICE text file distributed 112 | as part of the Derivative Works; within the Source form or 113 | documentation, if provided along with the Derivative Works; or, 114 | within a display generated by the Derivative Works, if and 115 | wherever such third-party notices normally appear. The contents 116 | of the NOTICE file are for informational purposes only and 117 | do not modify the License. You may add Your own attribution 118 | notices within Derivative Works that You distribute, alongside 119 | or as an addendum to the NOTICE text from the Work, provided 120 | that such additional attribution notices cannot be construed 121 | as modifying the License. 122 | 123 | You may add Your own copyright statement to Your modifications and 124 | may provide additional or different license terms and conditions 125 | for use, reproduction, or distribution of Your modifications, or 126 | for any such Derivative Works as a whole, provided Your use, 127 | reproduction, and distribution of the Work otherwise complies with 128 | the conditions stated in this License. 129 | 130 | 5. Submission of Contributions. Unless You explicitly state otherwise, 131 | any Contribution intentionally submitted for inclusion in the Work 132 | by You to the Licensor shall be under the terms and conditions of 133 | this License, without any additional terms or conditions. 134 | Notwithstanding the above, nothing herein shall supersede or modify 135 | the terms of any separate license agreement you may have executed 136 | with Licensor regarding such Contributions. 137 | 138 | 6. Trademarks. This License does not grant permission to use the trade 139 | names, trademarks, service marks, or product names of the Licensor, 140 | except as required for reasonable and customary use in describing the 141 | origin of the Work and reproducing the content of the NOTICE file. 142 | 143 | 7. Disclaimer of Warranty. Unless required by applicable law or 144 | agreed to in writing, Licensor provides the Work (and each 145 | Contributor provides its Contributions) on an "AS IS" BASIS, 146 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or 147 | implied, including, without limitation, any warranties or conditions 148 | of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A 149 | PARTICULAR PURPOSE. You are solely responsible for determining the 150 | appropriateness of using or redistributing the Work and assume any 151 | risks associated with Your exercise of permissions under this License. 152 | 153 | 8. Limitation of Liability. In no event and under no legal theory, 154 | whether in tort (including negligence), contract, or otherwise, 155 | unless required by applicable law (such as deliberate and grossly 156 | negligent acts) or agreed to in writing, shall any Contributor be 157 | liable to You for damages, including any direct, indirect, special, 158 | incidental, or consequential damages of any character arising as a 159 | result of this License or out of the use or inability to use the 160 | Work (including but not limited to damages for loss of goodwill, 161 | work stoppage, computer failure or malfunction, or any and all 162 | other commercial damages or losses), even if such Contributor 163 | has been advised of the possibility of such damages. 164 | 165 | 9. Accepting Warranty or Additional Liability. While redistributing 166 | the Work or Derivative Works thereof, You may choose to offer, 167 | and charge a fee for, acceptance of support, warranty, indemnity, 168 | or other liability obligations and/or rights consistent with this 169 | License. However, in accepting such obligations, You may act only 170 | on Your own behalf and on Your sole responsibility, not on behalf 171 | of any other Contributor, and only if You agree to indemnify, 172 | defend, and hold each Contributor harmless for any liability 173 | incurred by, or claims asserted against, such Contributor by reason 174 | of your accepting any such warranty or additional liability. 175 | 176 | END OF TERMS AND CONDITIONS 177 | 178 | APPENDIX: How to apply the Apache License to your work. 179 | 180 | To apply the Apache License to your work, attach the following 181 | boilerplate notice, with the fields enclosed by brackets "{}" 182 | replaced with your own identifying information. (Don't include 183 | the brackets!) The text should be enclosed in the appropriate 184 | comment syntax for the file format. We also recommend that a 185 | file or class name and description of purpose be included on the 186 | same "printed page" as the copyright notice for easier 187 | identification within third-party archives. 188 | 189 | Copyright {yyyy} {name of copyright owner} 190 | 191 | Licensed under the Apache License, Version 2.0 (the "License"); 192 | you may not use this file except in compliance with the License. 193 | You may obtain a copy of the License at 194 | 195 | http://www.apache.org/licenses/LICENSE-2.0 196 | 197 | Unless required by applicable law or agreed to in writing, software 198 | distributed under the License is distributed on an "AS IS" BASIS, 199 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 200 | See the License for the specific language governing permissions and 201 | limitations under the License. 202 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | [![No Maintenance Intended](http://unmaintained.tech/badge.svg)](http://unmaintained.tech/) 2 | 3 | # redux-eventstore 4 | [![Build Status](https://snap-ci.com/camjackson/redux-eventstore/branch/master/build_image)](https://snap-ci.com/camjackson/redux-eventstore/branch/master) 5 | 6 | *CQRS, event sourcing, and event collaboration made easy with Node.js, Redux, and Event Store!* 7 | 8 | Use this library on your Node.js backend to easily write Redux-style events ([usually known as actions](#events-vs-actions)) 9 | to an [Event Store](https://geteventstore.com/) stream. You can also subscribe a Redux store (still on the backend) to 10 | the stream, allowing you to page through all the events and reduce it to the current, in-memory state. You can then 11 | query that state in response to API requests, to provide data to a client (for example). 12 | 13 | *(These docs assume some familiarity with Redux. If concepts like actions and reducers are new to you, you may first 14 | want to go check out the official [Redux docs](http://redux.js.org).)* 15 | 16 | 17 | ```js 18 | import { createStream } from 'redux-eventstore'; 19 | import { createStore } from 'redux'; 20 | import rootReducer from './reducers'; 21 | 22 | // Initalise a stream object, which we'll use to write or subscribe to an Event Store stream. You would 23 | // typically do this once, when your application starts up. Think of it like a database connection. 24 | const stream = createStream('http://localhost:2113', 'my-stream'); 25 | 26 | 27 | // Write an event to the stream. This might be triggered by an POST request from your frontend, a 28 | // nightly batch job, in response to another event that was read off the stream, etc. The event object 29 | // is given inline here, but it's a good idea to write redux action creators, so that the type and 30 | // structure of your events is abstracted away. 31 | stream.write({ type: 'USER_CREATED', name: "Jane Smith" }); 32 | 33 | 34 | // Create a Redux store that will receive all events read from the stream. This too, would be done once, 35 | // at app start up. The given reducer function will process the events, calculating the reduced state. 36 | const store = createStore(rootReducer); 37 | 38 | 39 | // Subscribe the Redux store to the event stream. It will quickly iterate through all existing events, 40 | // and then poll forever. Each event is dispatched, synchronously, in order. The store's reducers will 41 | // calculate state based on the events. 42 | stream.subscribe(store.dispatch); 43 | 44 | 45 | // Get the current state of the in-memory store. We might do this to respond to a GET request. 46 | const currentState = store.getState(); 47 | ``` 48 | 49 | For a full example, see [`demo-app.js`](https://github.com/camjackson/redux-eventstore/blob/master/examples/demo-app.js). 50 | It shows two Express.js apps communicating asynchronously via Event Store: 51 | - one receives events via POST request and writes to a stream 52 | - the other subscribes to the stream, aggregates the state, and exposes it via GET request. 53 | 54 | ## API 55 | 56 | ### `createStream(host, stream)` 57 | 58 | Initialises a stream object, for subscribing or writing to the Event Store. 59 | 60 | **Parameters:** 61 | 62 | - `host` *(String)*: The host where your Event Store is located. Include the scheme (protocol), FQDN, and port 63 | - `stream` *(String)*: The name of the stream to subscribe to 64 | - [`opts`] *(Object)*: Other, optional configuration: 65 | - [`logger`] *(Function(`msg`)*: A function that will be invoked with log messages 66 | - [`auth`] *(Object)*: Basic auth credentials 67 | - `user` *(String)*: The EventStore username 68 | - `pass` *(String)*: The user's password 69 | 70 | **Returns:** 71 | 72 | A stream object with the two methods documented below. 73 | 74 | ### `stream.write(event)` 75 | 76 | Writes an event to the stream. If you write an event using this method, don't also dispatch it to your store manually. 77 | Instead, use the subscribe method below to have your store read the event back off the stream. This will help ensure 78 | consistency across subscribers, especially in cases where events fail to write to the stream, or when multiple writes 79 | happen in quick succession, from different sources. 80 | 81 | **Parameters:** 82 | 83 | - `event` *(Object)*: The event to write to the store. Must have a `type` property, as a non-empty string. 84 | 85 | **Returns:** 86 | 87 | *(Promise)* Resolves or rejects based on the server response. 88 | 89 | ### `stream.subscribe(dispatch, [pollPeriod=1000])` 90 | 91 | Subscribes to an Event Store stream, dispatching all events from that stream to your redux store. Initially, all previous 92 | events will be played through as fast as possible, after which the stream will be polled for new events periodically. 93 | Events are dispatched synchronously, in the order in which they appear in the stream. 94 | 95 | Note: If an error occurs when dispatching an event, the subscription loop will ignore it, and move on to the next event 96 | in the stream. 97 | 98 | **Parameters:** 99 | 100 | - `dispatch` *(Function(`event`))*: The callback function that will receive each event read off the stream 101 | - [`pollPeriod`] *(Number)*: How many milliseconds to wait between polls of the stream (*default: 1000*) 102 | 103 | ## Events vs. actions 104 | Typically with redux, you dispatch **actions**, which are imperatively named. For example: `CREATE_USER`. This makes 105 | sense when you are *asking* for something to happen, and some other part of the application (e.g. a reducer) is going to 106 | handle the request. 107 | 108 | However, with Event Store (or event sourcing in general), it makes more sense to talk about **events** in the past tense, 109 | representing something that has already happened. For example: `USER_CREATED`. 110 | [More explanation here](http://docs.geteventstore.com/introduction/3.9.0/event-sourcing-basics/). 111 | 112 | This is why the `redux-eventstore` docs, examples, and source code all refer to events, rather than actions. You should 113 | keep this in mind when using it. 114 | -------------------------------------------------------------------------------- /examples/demo-app.js: -------------------------------------------------------------------------------- 1 | import express from 'express'; 2 | import bodyParser from 'body-parser'; 3 | 4 | import { createStore } from 'redux'; 5 | import { createStream } from '../src/index'; 6 | 7 | const logGreen = msg => console.log(`\x1b[32m${msg}\x1b[39m`); 8 | const logBlue = msg => console.log(`\x1b[34m${msg}\x1b[39m`); 9 | 10 | // ////////////////////////////////////////////////////////////////////////////////////// // 11 | // A server that subscribes to a stream, reducing its events to GET-able, in-memory state // 12 | // ////////////////////////////////////////////////////////////////////////////////////// // 13 | (() => { 14 | const stream = createStream('http://localhost:2113', 'demo-stream'); 15 | 16 | const rootReducer = (state = 0, event) => { 17 | switch (event.type) { 18 | case 'ADD': 19 | return state + event.amount; 20 | case 'MULTIPLY': 21 | return state * event.amount; 22 | default: 23 | return state; 24 | } 25 | }; 26 | const store = createStore(rootReducer); 27 | stream.subscribe(store.dispatch); 28 | 29 | const app = express(); 30 | 31 | app.get('/amount', (req, res) => { 32 | res.send({ amount: store.getState() }); 33 | }); 34 | 35 | app.listen(8080); 36 | })(); 37 | 38 | // ////////////////////////////////////////////////////////////////////////// // 39 | // A server that receives events as POST requests and writes them to a stream // 40 | // ////////////////////////////////////////////////////////////////////////// // 41 | (() => { 42 | const stream = createStream('http://localhost:2113', 'demo-stream'); 43 | 44 | // These are event creators, just like regular action creators: 45 | // http://redux.js.org/docs/basics/Actions.html#action-creators 46 | const add = amount => ({ type: 'ADD', amount }); 47 | const multiply = amount => ({ type: 'MULTIPLY', amount }); 48 | 49 | const app = express(); 50 | app.use(bodyParser.json({ type: '*/*' })); 51 | 52 | app.post('/addEvent', (req, res) => { 53 | stream.write(add(req.body.amount)); 54 | res.status(201).send('Created'); 55 | }); 56 | 57 | app.post('/multiplyEvent', (req, res) => { 58 | stream.write(multiply(req.body.amount)); 59 | res.status(201).send('Created'); 60 | }); 61 | 62 | app.listen(8081); 63 | })(); 64 | 65 | logBlue('\n------------'); 66 | logBlue('GET the reduced state from :8080! For example:'); 67 | logBlue('curl http://localhost:8080/amount'); 68 | logBlue("Modify demo-app.js if you'd like to see more detailed logging"); 69 | 70 | logGreen('\n------------'); 71 | logGreen('POST your events to :8081! For example:'); 72 | logGreen('curl http://localhost:8081/addEvent -d \'{"amount": 7 }\''); 73 | logGreen('curl http://localhost:8081/multiplyEvent -d \'{"amount": 3 }\''); 74 | logGreen("Modify demo-app.js if you'd like to see more detailed logging"); 75 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "redux-eventstore", 3 | "version": "0.1.0", 4 | "description": "CQRS, event sourcing, and event collaboration made easy with Node.js, Redux, and Event Store!", 5 | "main": "dist/index.js", 6 | "scripts": { 7 | "prepublish": "yarn build", 8 | "build": "babel src -d dist --ignore '**/*-test.js'", 9 | "demo": "babel-node examples/demo-app.js", 10 | "lint": "eslint src", 11 | "test": "jest --watch", 12 | "test-once": "yarn lint && jest" 13 | }, 14 | "repository": { 15 | "type": "git", 16 | "url": "git+https://github.com/camjackson/redux-eventstore.git" 17 | }, 18 | "keywords": [ 19 | "redux", 20 | "event store", 21 | "event sourcing", 22 | "cqrs" 23 | ], 24 | "author": "Cam Jackson", 25 | "license": "Apache-2.0", 26 | "bugs": { 27 | "url": "https://github.com/camjackson/redux-eventstore/issues" 28 | }, 29 | "homepage": "https://github.com/camjackson/redux-eventstore#readme", 30 | "engines": { 31 | "node": ">=4.0.0" 32 | }, 33 | "devDependencies": { 34 | "babel-cli": "^6.14.0", 35 | "babel-jest": "^15.0.0", 36 | "babel-plugin-transform-es2015-destructuring": "^6.9.0", 37 | "babel-plugin-transform-object-rest-spread": "^6.8.0", 38 | "babel-preset-es2015": "^6.14.0", 39 | "babel-preset-es2016": "^6.11.3", 40 | "babel-preset-es2017": "^6.14.0", 41 | "body-parser": "^1.15.2", 42 | "eslint": "^3.9.1", 43 | "eslint-config-airbnb-base": "^9.0.0", 44 | "eslint-plugin-import": "^2.1.0", 45 | "express": "^4.14.0", 46 | "jest": "^15.1.1", 47 | "nock": "^8.0.0", 48 | "redux": "^3.6.0" 49 | }, 50 | "dependencies": { 51 | "babel-polyfill": "^6.13.0", 52 | "uuid": "^2.0.3" 53 | } 54 | } 55 | -------------------------------------------------------------------------------- /src/__tests__/index-test.js: -------------------------------------------------------------------------------- 1 | import { createStream } from '../index'; 2 | import * as streamWriter from '../streamWriter'; 3 | import * as streamSubscriber from '../streamSubscriber'; 4 | 5 | describe('createStream', () => { 6 | it('it throws an error when host is not valid', () => { 7 | expect(() => createStream(null, 'test-stream')).toThrowError(/Invalid host/); 8 | expect(() => createStream({}, 'test-stream')).toThrowError(/Invalid host/); 9 | expect(() => createStream('', 'test-stream')).toThrowError(/Invalid host/); 10 | }); 11 | 12 | it('it throws an error when stream name is invalid', () => { 13 | expect(() => createStream('localhost', {})).toThrowError(/Invalid stream/); 14 | expect(() => createStream('localhost', null)).toThrowError(/Invalid stream/); 15 | expect(() => createStream('localhost', '')).toThrowError(/Invalid stream/); 16 | }); 17 | 18 | it('it throws an error when auth is invalid', () => { 19 | expect(() => createStream('localhost', 'test-stream', { auth: 'one' })).toThrowError(/Invalid auth/); 20 | expect(() => createStream('localhost', 'test-stream', { auth: {} })).toThrowError(/Invalid auth/); 21 | expect(() => createStream('localhost', 'test-stream', { auth: { user: 5, pass: 'p4ss' } })).toThrowError(/Invalid auth.user/); 22 | expect(() => createStream('localhost', 'test-stream', { auth: { user: 'user', pass: {} } })).toThrowError(/Invalid auth.pass/); 23 | }); 24 | 25 | it('it throws an error when logger is invalid', () => { 26 | expect(() => createStream('localhost', 'test-stream', { logger: null })).toThrowError(/Invalid logger/); 27 | expect(() => createStream('localhost', 'test-stream', { logger: {} })).toThrowError(/Invalid logger/); 28 | expect(() => createStream('localhost', 'test-stream', { logger: 'one' })).toThrowError(/Invalid logger/); 29 | }); 30 | 31 | it('passes undefined auth when no auth is given', () => { 32 | streamWriter.default = jest.fn(); 33 | streamSubscriber.default = jest.fn(); 34 | 35 | const logger = () => {}; 36 | createStream('localhost', 'test-stream', { logger }); 37 | 38 | expect(streamWriter.default).toBeCalledWith('localhost', 'test-stream', undefined, logger); 39 | expect(streamSubscriber.default).toBeCalledWith('localhost', 'test-stream', undefined, logger); 40 | }); 41 | 42 | it('encodes the auth when auth is given', () => { 43 | streamWriter.default = jest.fn(); 44 | streamSubscriber.default = jest.fn(); 45 | 46 | const logger = () => {}; 47 | const auth = { user: 'some_user', pass: 'some_password' }; 48 | createStream('localhost', 'test-stream', { auth, logger }); 49 | 50 | expect(streamWriter.default).toBeCalledWith('localhost', 'test-stream', 'Basic c29tZV91c2VyOnNvbWVfcGFzc3dvcmQ=', logger); 51 | expect(streamSubscriber.default).toBeCalledWith('localhost', 'test-stream', 'Basic c29tZV91c2VyOnNvbWVfcGFzc3dvcmQ=', logger); 52 | }); 53 | }); 54 | -------------------------------------------------------------------------------- /src/__tests__/sideEffectMiddleware-test.js: -------------------------------------------------------------------------------- 1 | import { createStore, applyMiddleware } from 'redux'; 2 | import sideEffectMiddleware from '../sideEffectMiddleware'; 3 | 4 | describe('sideEffectMiddleware', () => { 5 | it('throws an error when sideEffects is invalid', () => { 6 | expect(() => sideEffectMiddleware(null)).toThrowError(/Invalid sideEffects/); 7 | expect(() => sideEffectMiddleware('hello')).toThrowError(/Invalid sideEffects/); 8 | expect(() => sideEffectMiddleware(() => {})).toThrowError(/Invalid sideEffects/); 9 | }); 10 | 11 | it('throws an error when one of the side effect functions is invalid', () => { 12 | expect(() => sideEffectMiddleware({ FOO: null })).toThrowError(/Invalid side effect FOO/); 13 | expect(() => sideEffectMiddleware({ FOO: 'bar' })).toThrowError(/Invalid side effect FOO/); 14 | expect(() => sideEffectMiddleware({ FOO: {} })).toThrowError(/Invalid side effect FOO/); 15 | }); 16 | 17 | it('calls the side effect when the matching action is dispatched', () => { 18 | const foo = jest.fn(); 19 | const bar = jest.fn(); 20 | 21 | const sideEffects = { 22 | FOO: foo, 23 | BAR: bar, 24 | }; 25 | 26 | const store = createStore(() => {}, applyMiddleware(sideEffectMiddleware(sideEffects))); 27 | 28 | store.dispatch({ type: 'FOO', payload: 'batman' }); 29 | expect(foo).toBeCalledWith({ type: 'FOO', payload: 'batman' }, store.getState); 30 | store.dispatch({ type: 'BAR', payload: 'robin' }); 31 | expect(bar).toBeCalledWith({ type: 'BAR', payload: 'robin' }, store.getState); 32 | }); 33 | }); 34 | -------------------------------------------------------------------------------- /src/__tests__/streamSubscriber-test.js: -------------------------------------------------------------------------------- 1 | import { createStore } from 'redux'; 2 | import nock from 'nock'; 3 | import streamSubscriber from '../streamSubscriber'; 4 | 5 | describe('streamSubscriber', () => { 6 | const auth = null; 7 | const logger = () => {}; 8 | const testReducer = (state = 0, event) => { 9 | switch (event.type) { 10 | case 'ADD': 11 | return state + event.amount; 12 | case 'MULTIPLY': 13 | return state * event.amount; 14 | default: 15 | return state; 16 | } 17 | }; 18 | 19 | it('it throws an error when dispatch is invalid', () => { 20 | const subscribe = streamSubscriber('localhost', 'test-stream', auth, logger); 21 | 22 | expect(() => subscribe({})).toThrowError(/Invalid dispatch/); 23 | expect(() => subscribe(null)).toThrowError(/Invalid dispatch/); 24 | expect(() => subscribe('function')).toThrowError(/Invalid dispatch/); 25 | }); 26 | 27 | it('it throws an error when pollPeriod is invalid', () => { 28 | const subscribe = streamSubscriber('localhost', 'test-stream', auth, logger); 29 | 30 | expect(() => subscribe(() => {}, null)).toThrowError(/Invalid pollPeriod/); 31 | expect(() => subscribe(() => {}, {})).toThrowError(/Invalid pollPeriod/); 32 | expect(() => subscribe(() => {}, 'one')).toThrowError(/Invalid pollPeriod/); 33 | }); 34 | 35 | it('it reads the events off the stream and dispatches them, in order', () => { 36 | const store = createStore(testReducer); 37 | 38 | nock('http://0.0.0.0:2113', { reqheaders: { Accept: 'application/vnd.eventstore.atom+json' } }) 39 | .persist() 40 | .get('/streams/test-stream/0') 41 | .reply(200, { content: { eventType: 'ADD', data: { amount: 3 } } }) 42 | .get('/streams/test-stream/1') 43 | .reply(200, { content: { eventType: 'MULTIPLY', data: { amount: 5 } } }) 44 | .get('/streams/test-stream/2') 45 | .reply(404); 46 | 47 | const subscribe = streamSubscriber('http://0.0.0.0:2113', 'test-stream', auth, logger); 48 | subscribe(store.dispatch, 50); 49 | 50 | return new Promise(resolve => { 51 | setInterval(() => { 52 | expect(store.getState()).toBe(15); 53 | resolve(); 54 | }, 10); 55 | }); 56 | }); 57 | 58 | it('can send basic auth when retrieving the stream', () => { 59 | const server = nock('http://0.0.0.0:2113', { reqheaders: { Authorization: 'Basic Y2FtOnMzY3IzdA==' } }) 60 | .persist() 61 | .get('/streams/auth-stream/0') 62 | .reply(200, { content: { eventType: 'ADD', data: { amount: 3 } } }); 63 | 64 | const subscribe = streamSubscriber('http://0.0.0.0:2113', 'auth-stream', 'Basic Y2FtOnMzY3IzdA==', logger); 65 | subscribe(() => {}, 50); 66 | 67 | return new Promise(resolve => { 68 | setInterval(() => { 69 | expect(server.isDone()).toBe(true); 70 | resolve(); 71 | }, 100); 72 | }); 73 | }); 74 | 75 | it('it skips events that have no content or eventType', () => { 76 | const store = createStore(testReducer); 77 | 78 | nock('http://0.0.0.0:2113', { reqheaders: { Accept: 'application/vnd.eventstore.atom+json' } }) 79 | .persist() 80 | .get('/streams/validation-stream/0') 81 | .reply(200, { }) 82 | .get('/streams/validation-stream/1') 83 | .reply(200, { content: { data: { amount: 5 } } }) 84 | .get('/streams/validation-stream/2') 85 | .reply(200, { content: { eventType: 'ADD', data: { amount: 2 } } }) 86 | .get('/streams/validation-stream/3') 87 | .reply(404); 88 | 89 | const subscribe = streamSubscriber('http://0.0.0.0:2113', 'validation-stream', auth, logger); 90 | subscribe(store.dispatch, 50); 91 | 92 | return new Promise(resolve => { 93 | setInterval(() => { 94 | expect(store.getState()).toBe(2); 95 | resolve(); 96 | }, 10); 97 | }); 98 | }); 99 | 100 | it('it continues on when the dispatch throws an error', () => { 101 | const dispatch = () => { 102 | throw new Error(':('); 103 | }; 104 | 105 | const server = nock('http://0.0.0.0:2113', { reqheaders: { Accept: 'application/vnd.eventstore.atom+json' } }) 106 | .persist() 107 | .get('/streams/error-stream/0') 108 | .reply(200, { content: { eventType: 'ADD' } }) 109 | .get('/streams/error-stream/1') 110 | .reply(404); 111 | 112 | const subscribe = streamSubscriber('http://0.0.0.0:2113', 'error-stream', auth, logger); 113 | subscribe(dispatch, 50); 114 | 115 | return new Promise(resolve => { 116 | setInterval(() => { 117 | expect(server.isDone()).toBe(true); 118 | resolve(); 119 | }, 10); 120 | }); 121 | }); 122 | 123 | it('it continues on when the dispatch returns a rejected promise', () => { 124 | const dispatch = () => Promise.reject(); 125 | 126 | const server = nock('http://0.0.0.0:2113', { reqheaders: { Accept: 'application/vnd.eventstore.atom+json' } }) 127 | .persist() 128 | .get('/streams/reject-stream/0') 129 | .reply(200, { content: { eventType: 'ADD' } }) 130 | .get('/streams/reject-stream/1') 131 | .reply(404); 132 | 133 | const subscribe = streamSubscriber('http://0.0.0.0:2113', 'reject-stream', auth, logger); 134 | subscribe(dispatch, 50); 135 | 136 | return new Promise(resolve => { 137 | setInterval(() => { 138 | expect(server.isDone()).toBe(true); 139 | resolve(); 140 | }, 10); 141 | }); 142 | }); 143 | }); 144 | -------------------------------------------------------------------------------- /src/__tests__/streamWriter-test.js: -------------------------------------------------------------------------------- 1 | import nock from 'nock'; 2 | import streamWriter from '../streamWriter'; 3 | 4 | describe('streamWriter', () => { 5 | const auth = null; 6 | const logger = () => {}; 7 | 8 | it('it throws an error when the event is invalid', () => { 9 | const writeToStream = streamWriter('localhost', 'test-stream', auth, logger); 10 | 11 | expect(() => writeToStream('')).toThrowError(/Invalid event/); 12 | expect(() => writeToStream(null)).toThrowError(/Invalid event/); 13 | expect(() => writeToStream('hello')).toThrowError(/Invalid event/); 14 | }); 15 | 16 | it('it throws an error when the event type is invalid', () => { 17 | const writeToStream = streamWriter('localhost', 'test-stream', auth, logger); 18 | 19 | expect(() => writeToStream({ type: '' })).toThrowError(/Invalid event type/); 20 | expect(() => writeToStream({ type: null })).toThrowError(/Invalid event type/); 21 | expect(() => writeToStream({ type: {} })).toThrowError(/Invalid event type/); 22 | }); 23 | 24 | it('it rejects when the server returns an error', () => { 25 | const writeToStream = streamWriter('localhost', 'error-stream', auth, logger); 26 | 27 | return new Promise((resolve, reject) => ( 28 | writeToStream({ type: 'SOME_EVENT' }) 29 | .then(reject) 30 | .catch(resolve) 31 | )); 32 | }); 33 | 34 | it('it POSTs the event to the event store', () => { 35 | const writeToStream = streamWriter('http://0.0.0.0:2113', 'test-stream', auth, logger); 36 | 37 | const reqheaders = { 38 | Accept: 'application/vnd.eventstore.atom+json', 39 | 'Content-Type': 'application/vnd.eventstore.events+json', 40 | 'Content-Length': '97', 41 | }; 42 | const eventStream = nock('http://0.0.0.0:2113', { reqheaders }) 43 | .post('/streams/test-stream', body => ( 44 | (body[0].eventId.match(/[0-9a-f-]{36}/) !== null) && 45 | (body[0].eventType === 'SOME_EVENT') && 46 | (body[0].data.amount === 7) 47 | )) 48 | .reply(201); 49 | 50 | return writeToStream({ type: 'SOME_EVENT', amount: 7 }) 51 | .then(() => { 52 | expect(eventStream.isDone()).toBe(true); 53 | }); 54 | }); 55 | 56 | it('can send basic auth with the event', () => { 57 | const actualAuth = 'Basic c29tZV91c2VyOnNvbWVfcGFzc3dvcmQ='; 58 | const writeToStream = streamWriter('http://0.0.0.0:2113', 'auth-stream', actualAuth, logger); 59 | 60 | const reqheaders = { Authorization: 'Basic c29tZV91c2VyOnNvbWVfcGFzc3dvcmQ=' }; 61 | const eventStream = nock('http://0.0.0.0:2113', { reqheaders }) 62 | .post('/streams/auth-stream', () => true) 63 | .reply(201); 64 | 65 | return writeToStream({ type: 'SOME_EVENT' }) 66 | .then(() => { 67 | expect(eventStream.isDone()).toBe(true); 68 | }); 69 | }); 70 | }); 71 | -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- 1 | import 'babel-polyfill'; 2 | 3 | import { validate, encodeAuth } from './util'; 4 | import streamWriter from './streamWriter'; 5 | import streamSubscriber from './streamSubscriber'; 6 | 7 | const defaultLogger = () => {}; 8 | 9 | export const createStream = (host, stream, { auth = null, logger = defaultLogger } = {}) => { 10 | validate(host, 'host', 'string', true); 11 | validate(stream, 'stream', 'string', true); 12 | validate(logger, 'logger', 'function', true); 13 | validate(auth, 'auth', 'object'); 14 | let encodedAuth; 15 | if (auth) { 16 | validate(auth.user, 'auth.user', 'string', true); 17 | validate(auth.pass, 'auth.pass', 'string', true); 18 | encodedAuth = encodeAuth(auth); 19 | } 20 | 21 | logger(`Creating stream object for host: ${host}, stream: ${stream}`); 22 | 23 | return { 24 | write: streamWriter(host, stream, encodedAuth, logger), 25 | subscribe: streamSubscriber(host, stream, encodedAuth, logger), 26 | }; 27 | }; 28 | -------------------------------------------------------------------------------- /src/sideEffectMiddleware.js: -------------------------------------------------------------------------------- 1 | import { validate } from './util'; 2 | 3 | export default sideEffects => { 4 | validate(sideEffects, 'sideEffects', 'object', true); 5 | Object.keys(sideEffects).forEach(sideEffect => { 6 | validate(sideEffects[sideEffect], `side effect ${sideEffect}`, 'function', true); 7 | }); 8 | 9 | return store => next => action => { 10 | if (sideEffects[action.type]) { 11 | sideEffects[action.type](action, store.getState); 12 | } 13 | return next(action); 14 | }; 15 | }; 16 | -------------------------------------------------------------------------------- /src/streamSubscriber.js: -------------------------------------------------------------------------------- 1 | import { get, validate, sleep } from './util'; 2 | 3 | async function pollStream(host, stream, auth, logger, dispatch, pollPeriod) { 4 | let index = 0; 5 | logger(`Beginning subscription to host: ${host}, stream: ${stream}`); 6 | while (true) { 7 | try { 8 | const event = await get(`${host}/streams/${stream}/${index}`, auth, logger); 9 | logger(`Retrieved event from stream: ${JSON.stringify(event)}`); 10 | index++; 11 | if (event.content && event.content.eventType) { 12 | const reduxEvent = { type: event.content.eventType, ...event.content.data }; 13 | logger(`Dispatching event: ${JSON.stringify(reduxEvent)}`); 14 | await dispatch(reduxEvent); 15 | } 16 | } catch (e) { 17 | logger(`Failed to retrieve event due to error: ${e}`); 18 | await sleep(pollPeriod); 19 | } 20 | } 21 | } 22 | 23 | const streamSubscriber = (host, stream, auth, logger) => ( 24 | (dispatch, pollPeriod = 1000) => { 25 | validate(dispatch, 'dispatch', 'function', true); 26 | validate(pollPeriod, 'pollPeriod', 'number'); 27 | 28 | pollStream(host, stream, auth, logger, dispatch, pollPeriod); 29 | } 30 | ); 31 | 32 | export default streamSubscriber; 33 | -------------------------------------------------------------------------------- /src/streamWriter.js: -------------------------------------------------------------------------------- 1 | import uuid from 'uuid'; 2 | import { post, validate } from './util'; 3 | 4 | const streamWriter = (host, stream, auth, logger) => ( 5 | event => { 6 | validate(event, 'event', 'object', true); 7 | validate(event.type, 'event type', 'string', true); 8 | 9 | const { type, ...data } = event; 10 | const eventForStream = [{ eventId: uuid.v4(), eventType: type, data }]; 11 | logger(`Writing event: ${JSON.stringify(eventForStream)}`); 12 | return post(`${host}/streams/${stream}`, auth, logger, eventForStream); 13 | } 14 | ); 15 | 16 | export default streamWriter; 17 | -------------------------------------------------------------------------------- /src/util.js: -------------------------------------------------------------------------------- 1 | import http from 'http'; 2 | import url from 'url'; 3 | 4 | const eventsJson = 'application/vnd.eventstore.events+json'; 5 | const atomJson = 'application/vnd.eventstore.atom+json'; 6 | 7 | const handleResult = (resolve, reject, logger) => res => { 8 | logger(`Response status: ${res.statusCode} - ${res.statusMessage}`); 9 | const done = res.statusCode >= 200 && res.statusCode < 300 ? resolve : reject; 10 | let body = ''; 11 | res.on('data', data => { body += data; }); 12 | res.on('end', () => done(body && JSON.parse(body))); 13 | }; 14 | 15 | export const get = (uri, auth, logger) => ( 16 | new Promise((resolve, reject) => { 17 | logger(`HTTP GET ${uri}`); 18 | const headers = { Accept: atomJson }; 19 | if (auth) { 20 | headers.Authorization = auth; 21 | } 22 | 23 | const req = http.get({ ...url.parse(uri), headers }, handleResult(resolve, reject, logger)); 24 | 25 | req.on('error', reject); 26 | }) 27 | ); 28 | 29 | export const post = (uri, auth, logger, body) => ( 30 | new Promise((resolve, reject) => { 31 | const data = JSON.stringify(body); 32 | const headers = { Accept: atomJson, 'Content-Type': eventsJson, 'Content-Length': Buffer.byteLength(data) }; 33 | if (auth) { 34 | headers.Authorization = auth; 35 | } 36 | 37 | logger(`HTTP POST: ${uri}, ${data}`); 38 | const req = http.request({ ...url.parse(uri), method: 'POST', headers }, handleResult(resolve, reject, logger)); 39 | 40 | req.on('error', reject); 41 | 42 | req.write(data); 43 | req.end(); 44 | }) 45 | ); 46 | 47 | export const encodeAuth = auth => `Basic ${new Buffer(`${auth.user}:${auth.pass}`).toString('base64')}`; 48 | 49 | export const validate = (value, name, type, required = false) => { 50 | if (typeof value !== type || (required && !value)) { 51 | throw new Error(`Invalid ${name}: ${value}`); 52 | } 53 | }; 54 | 55 | export const sleep = duration => ( 56 | new Promise(resolve => setTimeout(resolve, duration)) 57 | ); 58 | -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- 1 | # THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY. 2 | # yarn lockfile v1 3 | abab@^1.0.0: 4 | version "1.0.3" 5 | resolved "https://registry.yarnpkg.com/abab/-/abab-1.0.3.tgz#b81de5f7274ec4e756d797cd834f303642724e5d" 6 | 7 | abbrev@1, abbrev@1.0.x: 8 | version "1.0.9" 9 | resolved "https://registry.yarnpkg.com/abbrev/-/abbrev-1.0.9.tgz#91b4792588a7738c25f35dd6f63752a2f8776135" 10 | 11 | accepts@~1.3.3: 12 | version "1.3.3" 13 | resolved "https://registry.yarnpkg.com/accepts/-/accepts-1.3.3.tgz#c3ca7434938648c3e0d9c1e328dd68b622c284ca" 14 | dependencies: 15 | mime-types "~2.1.11" 16 | negotiator "0.6.1" 17 | 18 | acorn-globals@^1.0.4: 19 | version "1.0.9" 20 | resolved "https://registry.yarnpkg.com/acorn-globals/-/acorn-globals-1.0.9.tgz#55bb5e98691507b74579d0513413217c380c54cf" 21 | dependencies: 22 | acorn "^2.1.0" 23 | 24 | acorn-jsx@^3.0.0: 25 | version "3.0.1" 26 | resolved "https://registry.yarnpkg.com/acorn-jsx/-/acorn-jsx-3.0.1.tgz#afdf9488fb1ecefc8348f6fb22f464e32a58b36b" 27 | dependencies: 28 | acorn "^3.0.4" 29 | 30 | acorn@^2.1.0, acorn@^2.4.0: 31 | version "2.7.0" 32 | resolved "https://registry.yarnpkg.com/acorn/-/acorn-2.7.0.tgz#ab6e7d9d886aaca8b085bc3312b79a198433f0e7" 33 | 34 | acorn@^3.0.4: 35 | version "3.3.0" 36 | resolved "https://registry.yarnpkg.com/acorn/-/acorn-3.3.0.tgz#45e37fb39e8da3f25baee3ff5369e2bb5f22017a" 37 | 38 | acorn@^4.0.1: 39 | version "4.0.3" 40 | resolved "https://registry.yarnpkg.com/acorn/-/acorn-4.0.3.tgz#1a3e850b428e73ba6b09d1cc527f5aaad4d03ef1" 41 | 42 | ajv-keywords@^1.0.0: 43 | version "1.1.1" 44 | resolved "https://registry.yarnpkg.com/ajv-keywords/-/ajv-keywords-1.1.1.tgz#02550bc605a3e576041565628af972e06c549d50" 45 | 46 | ajv@^4.7.0: 47 | version "4.8.2" 48 | resolved "https://registry.yarnpkg.com/ajv/-/ajv-4.8.2.tgz#65486936ca36fea39a1504332a78bebd5d447bdc" 49 | dependencies: 50 | co "^4.6.0" 51 | json-stable-stringify "^1.0.1" 52 | 53 | align-text@^0.1.1, align-text@^0.1.3: 54 | version "0.1.4" 55 | resolved "https://registry.yarnpkg.com/align-text/-/align-text-0.1.4.tgz#0cd90a561093f35d0a99256c22b7069433fad117" 56 | dependencies: 57 | kind-of "^3.0.2" 58 | longest "^1.0.1" 59 | repeat-string "^1.5.2" 60 | 61 | amdefine@>=0.0.4: 62 | version "1.0.1" 63 | resolved "https://registry.yarnpkg.com/amdefine/-/amdefine-1.0.1.tgz#4a5282ac164729e93619bcfd3ad151f817ce91f5" 64 | 65 | ansi-escapes@^1.1.0, ansi-escapes@^1.4.0: 66 | version "1.4.0" 67 | resolved "https://registry.yarnpkg.com/ansi-escapes/-/ansi-escapes-1.4.0.tgz#d3a8a83b319aa67793662b13e761c7911422306e" 68 | 69 | ansi-regex@^2.0.0: 70 | version "2.0.0" 71 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-2.0.0.tgz#c5061b6e0ef8a81775e50f5d66151bf6bf371107" 72 | 73 | ansi-styles@^2.2.1: 74 | version "2.2.1" 75 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-2.2.1.tgz#b432dd3358b634cf75e1e4664368240533c1ddbe" 76 | 77 | ansicolors@~0.2.1: 78 | version "0.2.1" 79 | resolved "https://registry.yarnpkg.com/ansicolors/-/ansicolors-0.2.1.tgz#be089599097b74a5c9c4a84a0cdbcdb62bd87aef" 80 | 81 | anymatch@^1.3.0: 82 | version "1.3.0" 83 | resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-1.3.0.tgz#a3e52fa39168c825ff57b0248126ce5a8ff95507" 84 | dependencies: 85 | arrify "^1.0.0" 86 | micromatch "^2.1.5" 87 | 88 | append-transform@^0.3.0: 89 | version "0.3.0" 90 | resolved "https://registry.yarnpkg.com/append-transform/-/append-transform-0.3.0.tgz#d6933ce4a85f09445d9ccc4cc119051b7381a813" 91 | 92 | aproba@^1.0.3: 93 | version "1.0.4" 94 | resolved "https://registry.yarnpkg.com/aproba/-/aproba-1.0.4.tgz#2713680775e7614c8ba186c065d4e2e52d1072c0" 95 | 96 | are-we-there-yet@~1.1.2: 97 | version "1.1.2" 98 | resolved "https://registry.yarnpkg.com/are-we-there-yet/-/are-we-there-yet-1.1.2.tgz#80e470e95a084794fe1899262c5667c6e88de1b3" 99 | dependencies: 100 | delegates "^1.0.0" 101 | readable-stream "^2.0.0 || ^1.1.13" 102 | 103 | argparse@^1.0.7: 104 | version "1.0.9" 105 | resolved "https://registry.yarnpkg.com/argparse/-/argparse-1.0.9.tgz#73d83bc263f86e97f8cc4f6bae1b0e90a7d22c86" 106 | dependencies: 107 | sprintf-js "~1.0.2" 108 | 109 | arr-diff@^2.0.0: 110 | version "2.0.0" 111 | resolved "https://registry.yarnpkg.com/arr-diff/-/arr-diff-2.0.0.tgz#8f3b827f955a8bd669697e4a4256ac3ceae356cf" 112 | dependencies: 113 | arr-flatten "^1.0.1" 114 | 115 | arr-flatten@^1.0.1: 116 | version "1.0.1" 117 | resolved "https://registry.yarnpkg.com/arr-flatten/-/arr-flatten-1.0.1.tgz#e5ffe54d45e19f32f216e91eb99c8ce892bb604b" 118 | 119 | array-differ@^1.0.0: 120 | version "1.0.0" 121 | resolved "https://registry.yarnpkg.com/array-differ/-/array-differ-1.0.0.tgz#eff52e3758249d33be402b8bb8e564bb2b5d4031" 122 | 123 | array-equal@^1.0.0: 124 | version "1.0.0" 125 | resolved "https://registry.yarnpkg.com/array-equal/-/array-equal-1.0.0.tgz#8c2a5ef2472fd9ea742b04c77a75093ba2757c93" 126 | 127 | array-flatten@1.1.1: 128 | version "1.1.1" 129 | resolved "https://registry.yarnpkg.com/array-flatten/-/array-flatten-1.1.1.tgz#9a5f699051b1e7073328f2a008968b64ea2955d2" 130 | 131 | array-union@^1.0.1: 132 | version "1.0.2" 133 | resolved "https://registry.yarnpkg.com/array-union/-/array-union-1.0.2.tgz#9a34410e4f4e3da23dea375be5be70f24778ec39" 134 | dependencies: 135 | array-uniq "^1.0.1" 136 | 137 | array-uniq@^1.0.1: 138 | version "1.0.3" 139 | resolved "https://registry.yarnpkg.com/array-uniq/-/array-uniq-1.0.3.tgz#af6ac877a25cc7f74e058894753858dfdb24fdb6" 140 | 141 | array-unique@^0.2.1: 142 | version "0.2.1" 143 | resolved "https://registry.yarnpkg.com/array-unique/-/array-unique-0.2.1.tgz#a1d97ccafcbc2625cc70fadceb36a50c58b01a53" 144 | 145 | arrify@^1.0.0, arrify@^1.0.1: 146 | version "1.0.1" 147 | resolved "https://registry.yarnpkg.com/arrify/-/arrify-1.0.1.tgz#898508da2226f380df904728456849c1501a4b0d" 148 | 149 | asn1@~0.2.3: 150 | version "0.2.3" 151 | resolved "https://registry.yarnpkg.com/asn1/-/asn1-0.2.3.tgz#dac8787713c9966849fc8180777ebe9c1ddf3b86" 152 | 153 | assert-plus@^0.2.0: 154 | version "0.2.0" 155 | resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-0.2.0.tgz#d74e1b87e7affc0db8aadb7021f3fe48101ab234" 156 | 157 | assert-plus@^1.0.0: 158 | version "1.0.0" 159 | resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-1.0.0.tgz#f12e0f3c5d77b0b1cdd9146942e4e96c1e4dd525" 160 | 161 | assertion-error@^1.0.1: 162 | version "1.0.2" 163 | resolved "https://registry.yarnpkg.com/assertion-error/-/assertion-error-1.0.2.tgz#13ca515d86206da0bac66e834dd397d87581094c" 164 | 165 | async-each@^1.0.0: 166 | version "1.0.1" 167 | resolved "https://registry.yarnpkg.com/async-each/-/async-each-1.0.1.tgz#19d386a1d9edc6e7c1c85d388aedbcc56d33602d" 168 | 169 | async@^1.4.0, async@^1.4.2, async@1.x: 170 | version "1.5.2" 171 | resolved "https://registry.yarnpkg.com/async/-/async-1.5.2.tgz#ec6a61ae56480c0c3cb241c95618e20892f9672a" 172 | 173 | async@~0.2.6: 174 | version "0.2.10" 175 | resolved "https://registry.yarnpkg.com/async/-/async-0.2.10.tgz#b6bbe0b0674b9d719708ca38de8c237cb526c3d1" 176 | 177 | asynckit@^0.4.0: 178 | version "0.4.0" 179 | resolved "https://registry.yarnpkg.com/asynckit/-/asynckit-0.4.0.tgz#c79ed97f7f34cb8f2ba1bc9790bcc366474b4b79" 180 | 181 | aws-sign2@~0.6.0: 182 | version "0.6.0" 183 | resolved "https://registry.yarnpkg.com/aws-sign2/-/aws-sign2-0.6.0.tgz#14342dd38dbcc94d0e5b87d763cd63612c0e794f" 184 | 185 | aws4@^1.2.1: 186 | version "1.5.0" 187 | resolved "https://registry.yarnpkg.com/aws4/-/aws4-1.5.0.tgz#0a29ffb79c31c9e712eeb087e8e7a64b4a56d755" 188 | 189 | babel-cli@^6.14.0: 190 | version "6.18.0" 191 | resolved "https://registry.yarnpkg.com/babel-cli/-/babel-cli-6.18.0.tgz#92117f341add9dead90f6fa7d0a97c0cc08ec186" 192 | dependencies: 193 | babel-core "^6.18.0" 194 | babel-polyfill "^6.16.0" 195 | babel-register "^6.18.0" 196 | babel-runtime "^6.9.0" 197 | commander "^2.8.1" 198 | convert-source-map "^1.1.0" 199 | fs-readdir-recursive "^1.0.0" 200 | glob "^5.0.5" 201 | lodash "^4.2.0" 202 | output-file-sync "^1.1.0" 203 | path-is-absolute "^1.0.0" 204 | slash "^1.0.0" 205 | source-map "^0.5.0" 206 | v8flags "^2.0.10" 207 | optionalDependencies: 208 | chokidar "^1.0.0" 209 | 210 | babel-code-frame@^6.16.0: 211 | version "6.16.0" 212 | resolved "https://registry.yarnpkg.com/babel-code-frame/-/babel-code-frame-6.16.0.tgz#f90e60da0862909d3ce098733b5d3987c97cb8de" 213 | dependencies: 214 | chalk "^1.1.0" 215 | esutils "^2.0.2" 216 | js-tokens "^2.0.0" 217 | 218 | babel-core@^6.0.0, babel-core@^6.11.4, babel-core@^6.18.0: 219 | version "6.18.2" 220 | resolved "https://registry.yarnpkg.com/babel-core/-/babel-core-6.18.2.tgz#d8bb14dd6986fa4f3566a26ceda3964fa0e04e5b" 221 | dependencies: 222 | babel-code-frame "^6.16.0" 223 | babel-generator "^6.18.0" 224 | babel-helpers "^6.16.0" 225 | babel-messages "^6.8.0" 226 | babel-register "^6.18.0" 227 | babel-runtime "^6.9.1" 228 | babel-template "^6.16.0" 229 | babel-traverse "^6.18.0" 230 | babel-types "^6.18.0" 231 | babylon "^6.11.0" 232 | convert-source-map "^1.1.0" 233 | debug "^2.1.1" 234 | json5 "^0.5.0" 235 | lodash "^4.2.0" 236 | minimatch "^3.0.2" 237 | path-is-absolute "^1.0.0" 238 | private "^0.1.6" 239 | slash "^1.0.0" 240 | source-map "^0.5.0" 241 | 242 | babel-generator@^6.18.0: 243 | version "6.18.0" 244 | resolved "https://registry.yarnpkg.com/babel-generator/-/babel-generator-6.18.0.tgz#e4f104cb3063996d9850556a45aae4a022060a07" 245 | dependencies: 246 | babel-messages "^6.8.0" 247 | babel-runtime "^6.9.0" 248 | babel-types "^6.18.0" 249 | detect-indent "^4.0.0" 250 | jsesc "^1.3.0" 251 | lodash "^4.2.0" 252 | source-map "^0.5.0" 253 | 254 | babel-helper-builder-binary-assignment-operator-visitor@^6.8.0: 255 | version "6.18.0" 256 | resolved "https://registry.yarnpkg.com/babel-helper-builder-binary-assignment-operator-visitor/-/babel-helper-builder-binary-assignment-operator-visitor-6.18.0.tgz#8ae814989f7a53682152e3401a04fabd0bb333a6" 257 | dependencies: 258 | babel-helper-explode-assignable-expression "^6.18.0" 259 | babel-runtime "^6.0.0" 260 | babel-types "^6.18.0" 261 | 262 | babel-helper-call-delegate@^6.18.0: 263 | version "6.18.0" 264 | resolved "https://registry.yarnpkg.com/babel-helper-call-delegate/-/babel-helper-call-delegate-6.18.0.tgz#05b14aafa430884b034097ef29e9f067ea4133bd" 265 | dependencies: 266 | babel-helper-hoist-variables "^6.18.0" 267 | babel-runtime "^6.0.0" 268 | babel-traverse "^6.18.0" 269 | babel-types "^6.18.0" 270 | 271 | babel-helper-define-map@^6.18.0, babel-helper-define-map@^6.8.0: 272 | version "6.18.0" 273 | resolved "https://registry.yarnpkg.com/babel-helper-define-map/-/babel-helper-define-map-6.18.0.tgz#8d6c85dc7fbb4c19be3de40474d18e97c3676ec2" 274 | dependencies: 275 | babel-helper-function-name "^6.18.0" 276 | babel-runtime "^6.9.0" 277 | babel-types "^6.18.0" 278 | lodash "^4.2.0" 279 | 280 | babel-helper-explode-assignable-expression@^6.18.0: 281 | version "6.18.0" 282 | resolved "https://registry.yarnpkg.com/babel-helper-explode-assignable-expression/-/babel-helper-explode-assignable-expression-6.18.0.tgz#14b8e8c2d03ad735d4b20f1840b24cd1f65239fe" 283 | dependencies: 284 | babel-runtime "^6.0.0" 285 | babel-traverse "^6.18.0" 286 | babel-types "^6.18.0" 287 | 288 | babel-helper-function-name@^6.18.0, babel-helper-function-name@^6.8.0: 289 | version "6.18.0" 290 | resolved "https://registry.yarnpkg.com/babel-helper-function-name/-/babel-helper-function-name-6.18.0.tgz#68ec71aeba1f3e28b2a6f0730190b754a9bf30e6" 291 | dependencies: 292 | babel-helper-get-function-arity "^6.18.0" 293 | babel-runtime "^6.0.0" 294 | babel-template "^6.8.0" 295 | babel-traverse "^6.18.0" 296 | babel-types "^6.18.0" 297 | 298 | babel-helper-get-function-arity@^6.18.0: 299 | version "6.18.0" 300 | resolved "https://registry.yarnpkg.com/babel-helper-get-function-arity/-/babel-helper-get-function-arity-6.18.0.tgz#a5b19695fd3f9cdfc328398b47dafcd7094f9f24" 301 | dependencies: 302 | babel-runtime "^6.0.0" 303 | babel-types "^6.18.0" 304 | 305 | babel-helper-hoist-variables@^6.18.0: 306 | version "6.18.0" 307 | resolved "https://registry.yarnpkg.com/babel-helper-hoist-variables/-/babel-helper-hoist-variables-6.18.0.tgz#a835b5ab8b46d6de9babefae4d98ea41e866b82a" 308 | dependencies: 309 | babel-runtime "^6.0.0" 310 | babel-types "^6.18.0" 311 | 312 | babel-helper-optimise-call-expression@^6.18.0: 313 | version "6.18.0" 314 | resolved "https://registry.yarnpkg.com/babel-helper-optimise-call-expression/-/babel-helper-optimise-call-expression-6.18.0.tgz#9261d0299ee1a4f08a6dd28b7b7c777348fd8f0f" 315 | dependencies: 316 | babel-runtime "^6.0.0" 317 | babel-types "^6.18.0" 318 | 319 | babel-helper-regex@^6.8.0: 320 | version "6.18.0" 321 | resolved "https://registry.yarnpkg.com/babel-helper-regex/-/babel-helper-regex-6.18.0.tgz#ae0ebfd77de86cb2f1af258e2cc20b5fe893ecc6" 322 | dependencies: 323 | babel-runtime "^6.9.0" 324 | babel-types "^6.18.0" 325 | lodash "^4.2.0" 326 | 327 | babel-helper-remap-async-to-generator@^6.16.0: 328 | version "6.18.0" 329 | resolved "https://registry.yarnpkg.com/babel-helper-remap-async-to-generator/-/babel-helper-remap-async-to-generator-6.18.0.tgz#336cdf3cab650bb191b02fc16a3708e7be7f9ce5" 330 | dependencies: 331 | babel-helper-function-name "^6.18.0" 332 | babel-runtime "^6.0.0" 333 | babel-template "^6.16.0" 334 | babel-traverse "^6.18.0" 335 | babel-types "^6.18.0" 336 | 337 | babel-helper-replace-supers@^6.18.0, babel-helper-replace-supers@^6.8.0: 338 | version "6.18.0" 339 | resolved "https://registry.yarnpkg.com/babel-helper-replace-supers/-/babel-helper-replace-supers-6.18.0.tgz#28ec69877be4144dbd64f4cc3a337e89f29a924e" 340 | dependencies: 341 | babel-helper-optimise-call-expression "^6.18.0" 342 | babel-messages "^6.8.0" 343 | babel-runtime "^6.0.0" 344 | babel-template "^6.16.0" 345 | babel-traverse "^6.18.0" 346 | babel-types "^6.18.0" 347 | 348 | babel-helpers@^6.16.0: 349 | version "6.16.0" 350 | resolved "https://registry.yarnpkg.com/babel-helpers/-/babel-helpers-6.16.0.tgz#1095ec10d99279460553e67eb3eee9973d3867e3" 351 | dependencies: 352 | babel-runtime "^6.0.0" 353 | babel-template "^6.16.0" 354 | 355 | babel-jest@^15.0.0: 356 | version "15.0.0" 357 | resolved "https://registry.yarnpkg.com/babel-jest/-/babel-jest-15.0.0.tgz#6a9e2e3999f241383db9ab1e2ef6704401d74242" 358 | dependencies: 359 | babel-core "^6.0.0" 360 | babel-plugin-istanbul "^2.0.0" 361 | babel-preset-jest "^15.0.0" 362 | 363 | babel-messages@^6.8.0: 364 | version "6.8.0" 365 | resolved "https://registry.yarnpkg.com/babel-messages/-/babel-messages-6.8.0.tgz#bf504736ca967e6d65ef0adb5a2a5f947c8e0eb9" 366 | dependencies: 367 | babel-runtime "^6.0.0" 368 | 369 | babel-plugin-check-es2015-constants@^6.3.13: 370 | version "6.8.0" 371 | resolved "https://registry.yarnpkg.com/babel-plugin-check-es2015-constants/-/babel-plugin-check-es2015-constants-6.8.0.tgz#dbf024c32ed37bfda8dee1e76da02386a8d26fe7" 372 | dependencies: 373 | babel-runtime "^6.0.0" 374 | 375 | babel-plugin-istanbul@^2.0.0: 376 | version "2.0.3" 377 | resolved "https://registry.yarnpkg.com/babel-plugin-istanbul/-/babel-plugin-istanbul-2.0.3.tgz#266b304b9109607d60748474394676982f660df4" 378 | dependencies: 379 | find-up "^1.1.2" 380 | istanbul-lib-instrument "^1.1.4" 381 | object-assign "^4.1.0" 382 | test-exclude "^2.1.1" 383 | 384 | babel-plugin-jest-hoist@^15.0.0: 385 | version "15.0.0" 386 | resolved "https://registry.yarnpkg.com/babel-plugin-jest-hoist/-/babel-plugin-jest-hoist-15.0.0.tgz#7b2fdbd0cd12fc36a84d3f5ff001ec504262bb59" 387 | 388 | babel-plugin-syntax-async-functions@^6.8.0: 389 | version "6.13.0" 390 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-async-functions/-/babel-plugin-syntax-async-functions-6.13.0.tgz#cad9cad1191b5ad634bf30ae0872391e0647be95" 391 | 392 | babel-plugin-syntax-exponentiation-operator@^6.8.0: 393 | version "6.13.0" 394 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-exponentiation-operator/-/babel-plugin-syntax-exponentiation-operator-6.13.0.tgz#9ee7e8337290da95288201a6a57f4170317830de" 395 | 396 | babel-plugin-syntax-object-rest-spread@^6.8.0: 397 | version "6.13.0" 398 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-object-rest-spread/-/babel-plugin-syntax-object-rest-spread-6.13.0.tgz#fd6536f2bce13836ffa3a5458c4903a597bb3bf5" 399 | 400 | babel-plugin-syntax-trailing-function-commas@^6.8.0: 401 | version "6.13.0" 402 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-trailing-function-commas/-/babel-plugin-syntax-trailing-function-commas-6.13.0.tgz#2b84b7d53dd744f94ff1fad7669406274b23f541" 403 | 404 | babel-plugin-transform-async-to-generator@^6.16.0: 405 | version "6.16.0" 406 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-async-to-generator/-/babel-plugin-transform-async-to-generator-6.16.0.tgz#19ec36cb1486b59f9f468adfa42ce13908ca2999" 407 | dependencies: 408 | babel-helper-remap-async-to-generator "^6.16.0" 409 | babel-plugin-syntax-async-functions "^6.8.0" 410 | babel-runtime "^6.0.0" 411 | 412 | babel-plugin-transform-es2015-arrow-functions@^6.3.13: 413 | version "6.8.0" 414 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-arrow-functions/-/babel-plugin-transform-es2015-arrow-functions-6.8.0.tgz#5b63afc3181bdc9a8c4d481b5a4f3f7d7fef3d9d" 415 | dependencies: 416 | babel-runtime "^6.0.0" 417 | 418 | babel-plugin-transform-es2015-block-scoped-functions@^6.3.13: 419 | version "6.8.0" 420 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-block-scoped-functions/-/babel-plugin-transform-es2015-block-scoped-functions-6.8.0.tgz#ed95d629c4b5a71ae29682b998f70d9833eb366d" 421 | dependencies: 422 | babel-runtime "^6.0.0" 423 | 424 | babel-plugin-transform-es2015-block-scoping@^6.18.0: 425 | version "6.18.0" 426 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-block-scoping/-/babel-plugin-transform-es2015-block-scoping-6.18.0.tgz#3bfdcfec318d46df22525cdea88f1978813653af" 427 | dependencies: 428 | babel-runtime "^6.9.0" 429 | babel-template "^6.15.0" 430 | babel-traverse "^6.18.0" 431 | babel-types "^6.18.0" 432 | lodash "^4.2.0" 433 | 434 | babel-plugin-transform-es2015-classes@^6.18.0: 435 | version "6.18.0" 436 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-classes/-/babel-plugin-transform-es2015-classes-6.18.0.tgz#ffe7a17321bf83e494dcda0ae3fc72df48ffd1d9" 437 | dependencies: 438 | babel-helper-define-map "^6.18.0" 439 | babel-helper-function-name "^6.18.0" 440 | babel-helper-optimise-call-expression "^6.18.0" 441 | babel-helper-replace-supers "^6.18.0" 442 | babel-messages "^6.8.0" 443 | babel-runtime "^6.9.0" 444 | babel-template "^6.14.0" 445 | babel-traverse "^6.18.0" 446 | babel-types "^6.18.0" 447 | 448 | babel-plugin-transform-es2015-computed-properties@^6.3.13: 449 | version "6.8.0" 450 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-computed-properties/-/babel-plugin-transform-es2015-computed-properties-6.8.0.tgz#f51010fd61b3bd7b6b60a5fdfd307bb7a5279870" 451 | dependencies: 452 | babel-helper-define-map "^6.8.0" 453 | babel-runtime "^6.0.0" 454 | babel-template "^6.8.0" 455 | 456 | babel-plugin-transform-es2015-destructuring@^6.18.0, babel-plugin-transform-es2015-destructuring@^6.9.0: 457 | version "6.18.0" 458 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-destructuring/-/babel-plugin-transform-es2015-destructuring-6.18.0.tgz#a08fb89415ab82058649558bedb7bf8dafa76ba5" 459 | dependencies: 460 | babel-runtime "^6.9.0" 461 | 462 | babel-plugin-transform-es2015-duplicate-keys@^6.6.0: 463 | version "6.8.0" 464 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-duplicate-keys/-/babel-plugin-transform-es2015-duplicate-keys-6.8.0.tgz#fd8f7f7171fc108cc1c70c3164b9f15a81c25f7d" 465 | dependencies: 466 | babel-runtime "^6.0.0" 467 | babel-types "^6.8.0" 468 | 469 | babel-plugin-transform-es2015-for-of@^6.18.0: 470 | version "6.18.0" 471 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-for-of/-/babel-plugin-transform-es2015-for-of-6.18.0.tgz#4c517504db64bf8cfc119a6b8f177211f2028a70" 472 | dependencies: 473 | babel-runtime "^6.0.0" 474 | 475 | babel-plugin-transform-es2015-function-name@^6.9.0: 476 | version "6.9.0" 477 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-function-name/-/babel-plugin-transform-es2015-function-name-6.9.0.tgz#8c135b17dbd064e5bba56ec511baaee2fca82719" 478 | dependencies: 479 | babel-helper-function-name "^6.8.0" 480 | babel-runtime "^6.9.0" 481 | babel-types "^6.9.0" 482 | 483 | babel-plugin-transform-es2015-literals@^6.3.13: 484 | version "6.8.0" 485 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-literals/-/babel-plugin-transform-es2015-literals-6.8.0.tgz#50aa2e5c7958fc2ab25d74ec117e0cc98f046468" 486 | dependencies: 487 | babel-runtime "^6.0.0" 488 | 489 | babel-plugin-transform-es2015-modules-amd@^6.18.0: 490 | version "6.18.0" 491 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-amd/-/babel-plugin-transform-es2015-modules-amd-6.18.0.tgz#49a054cbb762bdf9ae2d8a807076cfade6141e40" 492 | dependencies: 493 | babel-plugin-transform-es2015-modules-commonjs "^6.18.0" 494 | babel-runtime "^6.0.0" 495 | babel-template "^6.8.0" 496 | 497 | babel-plugin-transform-es2015-modules-commonjs@^6.18.0: 498 | version "6.18.0" 499 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-commonjs/-/babel-plugin-transform-es2015-modules-commonjs-6.18.0.tgz#c15ae5bb11b32a0abdcc98a5837baa4ee8d67bcc" 500 | dependencies: 501 | babel-plugin-transform-strict-mode "^6.18.0" 502 | babel-runtime "^6.0.0" 503 | babel-template "^6.16.0" 504 | babel-types "^6.18.0" 505 | 506 | babel-plugin-transform-es2015-modules-systemjs@^6.18.0: 507 | version "6.18.0" 508 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-systemjs/-/babel-plugin-transform-es2015-modules-systemjs-6.18.0.tgz#f09294707163edae4d3b3e8bfacecd01d920b7ad" 509 | dependencies: 510 | babel-helper-hoist-variables "^6.18.0" 511 | babel-runtime "^6.11.6" 512 | babel-template "^6.14.0" 513 | 514 | babel-plugin-transform-es2015-modules-umd@^6.18.0: 515 | version "6.18.0" 516 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-umd/-/babel-plugin-transform-es2015-modules-umd-6.18.0.tgz#23351770ece5c1f8e83ed67cb1d7992884491e50" 517 | dependencies: 518 | babel-plugin-transform-es2015-modules-amd "^6.18.0" 519 | babel-runtime "^6.0.0" 520 | babel-template "^6.8.0" 521 | 522 | babel-plugin-transform-es2015-object-super@^6.3.13: 523 | version "6.8.0" 524 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-object-super/-/babel-plugin-transform-es2015-object-super-6.8.0.tgz#1b858740a5a4400887c23dcff6f4d56eea4a24c5" 525 | dependencies: 526 | babel-helper-replace-supers "^6.8.0" 527 | babel-runtime "^6.0.0" 528 | 529 | babel-plugin-transform-es2015-parameters@^6.18.0: 530 | version "6.18.0" 531 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-parameters/-/babel-plugin-transform-es2015-parameters-6.18.0.tgz#9b2cfe238c549f1635ba27fc1daa858be70608b1" 532 | dependencies: 533 | babel-helper-call-delegate "^6.18.0" 534 | babel-helper-get-function-arity "^6.18.0" 535 | babel-runtime "^6.9.0" 536 | babel-template "^6.16.0" 537 | babel-traverse "^6.18.0" 538 | babel-types "^6.18.0" 539 | 540 | babel-plugin-transform-es2015-shorthand-properties@^6.18.0: 541 | version "6.18.0" 542 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-shorthand-properties/-/babel-plugin-transform-es2015-shorthand-properties-6.18.0.tgz#e2ede3b7df47bf980151926534d1dd0cbea58f43" 543 | dependencies: 544 | babel-runtime "^6.0.0" 545 | babel-types "^6.18.0" 546 | 547 | babel-plugin-transform-es2015-spread@^6.3.13: 548 | version "6.8.0" 549 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-spread/-/babel-plugin-transform-es2015-spread-6.8.0.tgz#0217f737e3b821fa5a669f187c6ed59205f05e9c" 550 | dependencies: 551 | babel-runtime "^6.0.0" 552 | 553 | babel-plugin-transform-es2015-sticky-regex@^6.3.13: 554 | version "6.8.0" 555 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-sticky-regex/-/babel-plugin-transform-es2015-sticky-regex-6.8.0.tgz#e73d300a440a35d5c64f5c2a344dc236e3df47be" 556 | dependencies: 557 | babel-helper-regex "^6.8.0" 558 | babel-runtime "^6.0.0" 559 | babel-types "^6.8.0" 560 | 561 | babel-plugin-transform-es2015-template-literals@^6.6.0: 562 | version "6.8.0" 563 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-template-literals/-/babel-plugin-transform-es2015-template-literals-6.8.0.tgz#86eb876d0a2c635da4ec048b4f7de9dfc897e66b" 564 | dependencies: 565 | babel-runtime "^6.0.0" 566 | 567 | babel-plugin-transform-es2015-typeof-symbol@^6.18.0: 568 | version "6.18.0" 569 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-typeof-symbol/-/babel-plugin-transform-es2015-typeof-symbol-6.18.0.tgz#0b14c48629c90ff47a0650077f6aa699bee35798" 570 | dependencies: 571 | babel-runtime "^6.0.0" 572 | 573 | babel-plugin-transform-es2015-unicode-regex@^6.3.13: 574 | version "6.11.0" 575 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-unicode-regex/-/babel-plugin-transform-es2015-unicode-regex-6.11.0.tgz#6298ceabaad88d50a3f4f392d8de997260f6ef2c" 576 | dependencies: 577 | babel-helper-regex "^6.8.0" 578 | babel-runtime "^6.0.0" 579 | regexpu-core "^2.0.0" 580 | 581 | babel-plugin-transform-exponentiation-operator@^6.3.13: 582 | version "6.8.0" 583 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-exponentiation-operator/-/babel-plugin-transform-exponentiation-operator-6.8.0.tgz#db25742e9339eade676ca9acec46f955599a68a4" 584 | dependencies: 585 | babel-helper-builder-binary-assignment-operator-visitor "^6.8.0" 586 | babel-plugin-syntax-exponentiation-operator "^6.8.0" 587 | babel-runtime "^6.0.0" 588 | 589 | babel-plugin-transform-object-rest-spread@^6.8.0: 590 | version "6.16.0" 591 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-object-rest-spread/-/babel-plugin-transform-object-rest-spread-6.16.0.tgz#db441d56fffc1999052fdebe2e2f25ebd28e36a9" 592 | dependencies: 593 | babel-plugin-syntax-object-rest-spread "^6.8.0" 594 | babel-runtime "^6.0.0" 595 | 596 | babel-plugin-transform-regenerator@^6.16.0: 597 | version "6.16.1" 598 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-regenerator/-/babel-plugin-transform-regenerator-6.16.1.tgz#a75de6b048a14154aae14b0122756c5bed392f59" 599 | dependencies: 600 | babel-runtime "^6.9.0" 601 | babel-types "^6.16.0" 602 | private "~0.1.5" 603 | 604 | babel-plugin-transform-strict-mode@^6.18.0: 605 | version "6.18.0" 606 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-strict-mode/-/babel-plugin-transform-strict-mode-6.18.0.tgz#df7cf2991fe046f44163dcd110d5ca43bc652b9d" 607 | dependencies: 608 | babel-runtime "^6.0.0" 609 | babel-types "^6.18.0" 610 | 611 | babel-polyfill@^6.13.0, babel-polyfill@^6.16.0: 612 | version "6.16.0" 613 | resolved "https://registry.yarnpkg.com/babel-polyfill/-/babel-polyfill-6.16.0.tgz#2d45021df87e26a374b6d4d1a9c65964d17f2422" 614 | dependencies: 615 | babel-runtime "^6.9.1" 616 | core-js "^2.4.0" 617 | regenerator-runtime "^0.9.5" 618 | 619 | babel-preset-es2015@^6.14.0: 620 | version "6.18.0" 621 | resolved "https://registry.yarnpkg.com/babel-preset-es2015/-/babel-preset-es2015-6.18.0.tgz#b8c70df84ec948c43dcf2bf770e988eb7da88312" 622 | dependencies: 623 | babel-plugin-check-es2015-constants "^6.3.13" 624 | babel-plugin-transform-es2015-arrow-functions "^6.3.13" 625 | babel-plugin-transform-es2015-block-scoped-functions "^6.3.13" 626 | babel-plugin-transform-es2015-block-scoping "^6.18.0" 627 | babel-plugin-transform-es2015-classes "^6.18.0" 628 | babel-plugin-transform-es2015-computed-properties "^6.3.13" 629 | babel-plugin-transform-es2015-destructuring "^6.18.0" 630 | babel-plugin-transform-es2015-duplicate-keys "^6.6.0" 631 | babel-plugin-transform-es2015-for-of "^6.18.0" 632 | babel-plugin-transform-es2015-function-name "^6.9.0" 633 | babel-plugin-transform-es2015-literals "^6.3.13" 634 | babel-plugin-transform-es2015-modules-amd "^6.18.0" 635 | babel-plugin-transform-es2015-modules-commonjs "^6.18.0" 636 | babel-plugin-transform-es2015-modules-systemjs "^6.18.0" 637 | babel-plugin-transform-es2015-modules-umd "^6.18.0" 638 | babel-plugin-transform-es2015-object-super "^6.3.13" 639 | babel-plugin-transform-es2015-parameters "^6.18.0" 640 | babel-plugin-transform-es2015-shorthand-properties "^6.18.0" 641 | babel-plugin-transform-es2015-spread "^6.3.13" 642 | babel-plugin-transform-es2015-sticky-regex "^6.3.13" 643 | babel-plugin-transform-es2015-template-literals "^6.6.0" 644 | babel-plugin-transform-es2015-typeof-symbol "^6.18.0" 645 | babel-plugin-transform-es2015-unicode-regex "^6.3.13" 646 | babel-plugin-transform-regenerator "^6.16.0" 647 | 648 | babel-preset-es2016@^6.11.3: 649 | version "6.16.0" 650 | resolved "https://registry.yarnpkg.com/babel-preset-es2016/-/babel-preset-es2016-6.16.0.tgz#c7daf5feedeee99c867813bdf0d573d94ca12812" 651 | dependencies: 652 | babel-plugin-transform-exponentiation-operator "^6.3.13" 653 | 654 | babel-preset-es2017@^6.14.0: 655 | version "6.16.0" 656 | resolved "https://registry.yarnpkg.com/babel-preset-es2017/-/babel-preset-es2017-6.16.0.tgz#536c6287778a758948ddd092b466b6ef50b786fa" 657 | dependencies: 658 | babel-plugin-syntax-trailing-function-commas "^6.8.0" 659 | babel-plugin-transform-async-to-generator "^6.16.0" 660 | 661 | babel-preset-jest@^15.0.0: 662 | version "15.0.0" 663 | resolved "https://registry.yarnpkg.com/babel-preset-jest/-/babel-preset-jest-15.0.0.tgz#f23988f1f918673ff9b470fdfd60fcc19bc618f5" 664 | dependencies: 665 | babel-plugin-jest-hoist "^15.0.0" 666 | 667 | babel-register@^6.18.0: 668 | version "6.18.0" 669 | resolved "https://registry.yarnpkg.com/babel-register/-/babel-register-6.18.0.tgz#892e2e03865078dd90ad2c715111ec4449b32a68" 670 | dependencies: 671 | babel-core "^6.18.0" 672 | babel-runtime "^6.11.6" 673 | core-js "^2.4.0" 674 | home-or-tmp "^2.0.0" 675 | lodash "^4.2.0" 676 | mkdirp "^0.5.1" 677 | source-map-support "^0.4.2" 678 | 679 | babel-runtime@^6.0.0, babel-runtime@^6.11.6, babel-runtime@^6.9.0, babel-runtime@^6.9.1: 680 | version "6.18.0" 681 | resolved "https://registry.yarnpkg.com/babel-runtime/-/babel-runtime-6.18.0.tgz#0f4177ffd98492ef13b9f823e9994a02584c9078" 682 | dependencies: 683 | core-js "^2.4.0" 684 | regenerator-runtime "^0.9.5" 685 | 686 | babel-template@^6.14.0, babel-template@^6.15.0, babel-template@^6.16.0, babel-template@^6.8.0: 687 | version "6.16.0" 688 | resolved "https://registry.yarnpkg.com/babel-template/-/babel-template-6.16.0.tgz#e149dd1a9f03a35f817ddbc4d0481988e7ebc8ca" 689 | dependencies: 690 | babel-runtime "^6.9.0" 691 | babel-traverse "^6.16.0" 692 | babel-types "^6.16.0" 693 | babylon "^6.11.0" 694 | lodash "^4.2.0" 695 | 696 | babel-traverse@^6.16.0, babel-traverse@^6.18.0: 697 | version "6.18.0" 698 | resolved "https://registry.yarnpkg.com/babel-traverse/-/babel-traverse-6.18.0.tgz#5aeaa980baed2a07c8c47329cd90c3b90c80f05e" 699 | dependencies: 700 | babel-code-frame "^6.16.0" 701 | babel-messages "^6.8.0" 702 | babel-runtime "^6.9.0" 703 | babel-types "^6.18.0" 704 | babylon "^6.11.0" 705 | debug "^2.2.0" 706 | globals "^9.0.0" 707 | invariant "^2.2.0" 708 | lodash "^4.2.0" 709 | 710 | babel-types@^6.16.0, babel-types@^6.18.0, babel-types@^6.8.0, babel-types@^6.9.0: 711 | version "6.18.0" 712 | resolved "https://registry.yarnpkg.com/babel-types/-/babel-types-6.18.0.tgz#1f7d5a73474c59eb9151b2417bbff4e4fce7c3f8" 713 | dependencies: 714 | babel-runtime "^6.9.1" 715 | esutils "^2.0.2" 716 | lodash "^4.2.0" 717 | to-fast-properties "^1.0.1" 718 | 719 | babylon@^6.11.0, babylon@^6.13.0: 720 | version "6.13.1" 721 | resolved "https://registry.yarnpkg.com/babylon/-/babylon-6.13.1.tgz#adca350e088f0467647157652bafead6ddb8dfdb" 722 | 723 | balanced-match@^0.4.1: 724 | version "0.4.2" 725 | resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-0.4.2.tgz#cb3f3e3c732dc0f01ee70b403f302e61d7709838" 726 | 727 | bcrypt-pbkdf@^1.0.0: 728 | version "1.0.0" 729 | resolved "https://registry.yarnpkg.com/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.0.tgz#3ca76b85241c7170bf7d9703e7b9aa74630040d4" 730 | dependencies: 731 | tweetnacl "^0.14.3" 732 | 733 | binary-extensions@^1.0.0: 734 | version "1.7.0" 735 | resolved "https://registry.yarnpkg.com/binary-extensions/-/binary-extensions-1.7.0.tgz#6c1610db163abfb34edfe42fa423343a1e01185d" 736 | 737 | block-stream@*: 738 | version "0.0.9" 739 | resolved "https://registry.yarnpkg.com/block-stream/-/block-stream-0.0.9.tgz#13ebfe778a03205cfe03751481ebb4b3300c126a" 740 | dependencies: 741 | inherits "~2.0.0" 742 | 743 | body-parser@^1.15.2: 744 | version "1.15.2" 745 | resolved "https://registry.yarnpkg.com/body-parser/-/body-parser-1.15.2.tgz#d7578cf4f1d11d5f6ea804cef35dc7a7ff6dae67" 746 | dependencies: 747 | bytes "2.4.0" 748 | content-type "~1.0.2" 749 | debug "~2.2.0" 750 | depd "~1.1.0" 751 | http-errors "~1.5.0" 752 | iconv-lite "0.4.13" 753 | on-finished "~2.3.0" 754 | qs "6.2.0" 755 | raw-body "~2.1.7" 756 | type-is "~1.6.13" 757 | 758 | boom@2.x.x: 759 | version "2.10.1" 760 | resolved "https://registry.yarnpkg.com/boom/-/boom-2.10.1.tgz#39c8918ceff5799f83f9492a848f625add0c766f" 761 | dependencies: 762 | hoek "2.x.x" 763 | 764 | brace-expansion@^1.0.0: 765 | version "1.1.6" 766 | resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.6.tgz#7197d7eaa9b87e648390ea61fc66c84427420df9" 767 | dependencies: 768 | balanced-match "^0.4.1" 769 | concat-map "0.0.1" 770 | 771 | braces@^1.8.2: 772 | version "1.8.5" 773 | resolved "https://registry.yarnpkg.com/braces/-/braces-1.8.5.tgz#ba77962e12dff969d6b76711e914b737857bf6a7" 774 | dependencies: 775 | expand-range "^1.8.1" 776 | preserve "^0.2.0" 777 | repeat-element "^1.1.2" 778 | 779 | browser-resolve@^1.11.2: 780 | version "1.11.2" 781 | resolved "https://registry.yarnpkg.com/browser-resolve/-/browser-resolve-1.11.2.tgz#8ff09b0a2c421718a1051c260b32e48f442938ce" 782 | dependencies: 783 | resolve "1.1.7" 784 | 785 | bser@^1.0.2: 786 | version "1.0.2" 787 | resolved "https://registry.yarnpkg.com/bser/-/bser-1.0.2.tgz#381116970b2a6deea5646dd15dd7278444b56169" 788 | dependencies: 789 | node-int64 "^0.4.0" 790 | 791 | buffer-shims@^1.0.0: 792 | version "1.0.0" 793 | resolved "https://registry.yarnpkg.com/buffer-shims/-/buffer-shims-1.0.0.tgz#9978ce317388c649ad8793028c3477ef044a8b51" 794 | 795 | builtin-modules@^1.0.0, builtin-modules@^1.1.1: 796 | version "1.1.1" 797 | resolved "https://registry.yarnpkg.com/builtin-modules/-/builtin-modules-1.1.1.tgz#270f076c5a72c02f5b65a47df94c5fe3a278892f" 798 | 799 | bytes@2.4.0: 800 | version "2.4.0" 801 | resolved "https://registry.yarnpkg.com/bytes/-/bytes-2.4.0.tgz#7d97196f9d5baf7f6935e25985549edd2a6c2339" 802 | 803 | caller-path@^0.1.0: 804 | version "0.1.0" 805 | resolved "https://registry.yarnpkg.com/caller-path/-/caller-path-0.1.0.tgz#94085ef63581ecd3daa92444a8fe94e82577751f" 806 | dependencies: 807 | callsites "^0.2.0" 808 | 809 | callsites@^0.2.0: 810 | version "0.2.0" 811 | resolved "https://registry.yarnpkg.com/callsites/-/callsites-0.2.0.tgz#afab96262910a7f33c19a5775825c69f34e350ca" 812 | 813 | callsites@^2.0.0: 814 | version "2.0.0" 815 | resolved "https://registry.yarnpkg.com/callsites/-/callsites-2.0.0.tgz#06eb84f00eea413da86affefacbffb36093b3c50" 816 | 817 | camelcase@^1.0.2: 818 | version "1.2.1" 819 | resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-1.2.1.tgz#9bb5304d2e0b56698b2c758b08a3eaa9daa58a39" 820 | 821 | camelcase@^3.0.0: 822 | version "3.0.0" 823 | resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-3.0.0.tgz#32fc4b9fcdaf845fcdf7e73bb97cac2261f0ab0a" 824 | 825 | cardinal@^1.0.0: 826 | version "1.0.0" 827 | resolved "https://registry.yarnpkg.com/cardinal/-/cardinal-1.0.0.tgz#50e21c1b0aa37729f9377def196b5a9cec932ee9" 828 | dependencies: 829 | ansicolors "~0.2.1" 830 | redeyed "~1.0.0" 831 | 832 | caseless@~0.11.0: 833 | version "0.11.0" 834 | resolved "https://registry.yarnpkg.com/caseless/-/caseless-0.11.0.tgz#715b96ea9841593cc33067923f5ec60ebda4f7d7" 835 | 836 | center-align@^0.1.1: 837 | version "0.1.3" 838 | resolved "https://registry.yarnpkg.com/center-align/-/center-align-0.1.3.tgz#aa0d32629b6ee972200411cbd4461c907bc2b7ad" 839 | dependencies: 840 | align-text "^0.1.3" 841 | lazy-cache "^1.0.3" 842 | 843 | "chai@>=1.9.2 <4.0.0": 844 | version "3.5.0" 845 | resolved "https://registry.yarnpkg.com/chai/-/chai-3.5.0.tgz#4d02637b067fe958bdbfdd3a40ec56fef7373247" 846 | dependencies: 847 | assertion-error "^1.0.1" 848 | deep-eql "^0.1.3" 849 | type-detect "^1.0.0" 850 | 851 | chalk@^1.0.0, chalk@^1.1.0, chalk@^1.1.1, chalk@^1.1.3: 852 | version "1.1.3" 853 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-1.1.3.tgz#a8115c55e4a702fe4d150abd3872822a7e09fc98" 854 | dependencies: 855 | ansi-styles "^2.2.1" 856 | escape-string-regexp "^1.0.2" 857 | has-ansi "^2.0.0" 858 | strip-ansi "^3.0.0" 859 | supports-color "^2.0.0" 860 | 861 | chokidar@^1.0.0: 862 | version "1.6.1" 863 | resolved "https://registry.yarnpkg.com/chokidar/-/chokidar-1.6.1.tgz#2f4447ab5e96e50fb3d789fd90d4c72e0e4c70c2" 864 | dependencies: 865 | anymatch "^1.3.0" 866 | async-each "^1.0.0" 867 | glob-parent "^2.0.0" 868 | inherits "^2.0.1" 869 | is-binary-path "^1.0.0" 870 | is-glob "^2.0.0" 871 | path-is-absolute "^1.0.0" 872 | readdirp "^2.0.0" 873 | optionalDependencies: 874 | fsevents "^1.0.0" 875 | 876 | circular-json@^0.3.0: 877 | version "0.3.1" 878 | resolved "https://registry.yarnpkg.com/circular-json/-/circular-json-0.3.1.tgz#be8b36aefccde8b3ca7aa2d6afc07a37242c0d2d" 879 | 880 | cli-cursor@^1.0.1: 881 | version "1.0.2" 882 | resolved "https://registry.yarnpkg.com/cli-cursor/-/cli-cursor-1.0.2.tgz#64da3f7d56a54412e59794bd62dc35295e8f2987" 883 | dependencies: 884 | restore-cursor "^1.0.1" 885 | 886 | cli-table@^0.3.1: 887 | version "0.3.1" 888 | resolved "https://registry.yarnpkg.com/cli-table/-/cli-table-0.3.1.tgz#f53b05266a8b1a0b934b3d0821e6e2dc5914ae23" 889 | dependencies: 890 | colors "1.0.3" 891 | 892 | cli-usage@^0.1.1: 893 | version "0.1.4" 894 | resolved "https://registry.yarnpkg.com/cli-usage/-/cli-usage-0.1.4.tgz#7c01e0dc706c234b39c933838c8e20b2175776e2" 895 | dependencies: 896 | marked "^0.3.6" 897 | marked-terminal "^1.6.2" 898 | 899 | cli-width@^2.0.0: 900 | version "2.1.0" 901 | resolved "https://registry.yarnpkg.com/cli-width/-/cli-width-2.1.0.tgz#b234ca209b29ef66fc518d9b98d5847b00edf00a" 902 | 903 | cliui@^2.1.0: 904 | version "2.1.0" 905 | resolved "https://registry.yarnpkg.com/cliui/-/cliui-2.1.0.tgz#4b475760ff80264c762c3a1719032e91c7fea0d1" 906 | dependencies: 907 | center-align "^0.1.1" 908 | right-align "^0.1.1" 909 | wordwrap "0.0.2" 910 | 911 | cliui@^3.2.0: 912 | version "3.2.0" 913 | resolved "https://registry.yarnpkg.com/cliui/-/cliui-3.2.0.tgz#120601537a916d29940f934da3b48d585a39213d" 914 | dependencies: 915 | string-width "^1.0.1" 916 | strip-ansi "^3.0.1" 917 | wrap-ansi "^2.0.0" 918 | 919 | clone@^1.0.2: 920 | version "1.0.2" 921 | resolved "https://registry.yarnpkg.com/clone/-/clone-1.0.2.tgz#260b7a99ebb1edfe247538175f783243cb19d149" 922 | 923 | co@^4.6.0: 924 | version "4.6.0" 925 | resolved "https://registry.yarnpkg.com/co/-/co-4.6.0.tgz#6ea6bdf3d853ae54ccb8e47bfa0bf3f9031fb184" 926 | 927 | code-point-at@^1.0.0: 928 | version "1.1.0" 929 | resolved "https://registry.yarnpkg.com/code-point-at/-/code-point-at-1.1.0.tgz#0d070b4d043a5bea33a2f1a40e2edb3d9a4ccf77" 930 | 931 | colors@1.0.3: 932 | version "1.0.3" 933 | resolved "https://registry.yarnpkg.com/colors/-/colors-1.0.3.tgz#0433f44d809680fdeb60ed260f1b0c262e82a40b" 934 | 935 | combined-stream@^1.0.5, combined-stream@~1.0.5: 936 | version "1.0.5" 937 | resolved "https://registry.yarnpkg.com/combined-stream/-/combined-stream-1.0.5.tgz#938370a57b4a51dea2c77c15d5c5fdf895164009" 938 | dependencies: 939 | delayed-stream "~1.0.0" 940 | 941 | commander@^2.8.1, commander@^2.9.0: 942 | version "2.9.0" 943 | resolved "https://registry.yarnpkg.com/commander/-/commander-2.9.0.tgz#9c99094176e12240cb22d6c5146098400fe0f7d4" 944 | dependencies: 945 | graceful-readlink ">= 1.0.0" 946 | 947 | concat-map@0.0.1: 948 | version "0.0.1" 949 | resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b" 950 | 951 | concat-stream@^1.4.6: 952 | version "1.5.2" 953 | resolved "https://registry.yarnpkg.com/concat-stream/-/concat-stream-1.5.2.tgz#708978624d856af41a5a741defdd261da752c266" 954 | dependencies: 955 | inherits "~2.0.1" 956 | readable-stream "~2.0.0" 957 | typedarray "~0.0.5" 958 | 959 | console-control-strings@^1.0.0, console-control-strings@~1.1.0: 960 | version "1.1.0" 961 | resolved "https://registry.yarnpkg.com/console-control-strings/-/console-control-strings-1.1.0.tgz#3d7cf4464db6446ea644bf4b39507f9851008e8e" 962 | 963 | contains-path@^0.1.0: 964 | version "0.1.0" 965 | resolved "https://registry.yarnpkg.com/contains-path/-/contains-path-0.1.0.tgz#fe8cf184ff6670b6baef01a9d4861a5cbec4120a" 966 | 967 | content-disposition@0.5.1: 968 | version "0.5.1" 969 | resolved "https://registry.yarnpkg.com/content-disposition/-/content-disposition-0.5.1.tgz#87476c6a67c8daa87e32e87616df883ba7fb071b" 970 | 971 | content-type-parser@^1.0.1: 972 | version "1.0.1" 973 | resolved "https://registry.yarnpkg.com/content-type-parser/-/content-type-parser-1.0.1.tgz#c3e56988c53c65127fb46d4032a3a900246fdc94" 974 | 975 | content-type@~1.0.2: 976 | version "1.0.2" 977 | resolved "https://registry.yarnpkg.com/content-type/-/content-type-1.0.2.tgz#b7d113aee7a8dd27bd21133c4dc2529df1721eed" 978 | 979 | convert-source-map@^1.1.0: 980 | version "1.3.0" 981 | resolved "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-1.3.0.tgz#e9f3e9c6e2728efc2676696a70eb382f73106a67" 982 | 983 | cookie-signature@1.0.6: 984 | version "1.0.6" 985 | resolved "https://registry.yarnpkg.com/cookie-signature/-/cookie-signature-1.0.6.tgz#e303a882b342cc3ee8ca513a79999734dab3ae2c" 986 | 987 | cookie@0.3.1: 988 | version "0.3.1" 989 | resolved "https://registry.yarnpkg.com/cookie/-/cookie-0.3.1.tgz#e7e0a1f9ef43b4c8ba925c5c5a96e806d16873bb" 990 | 991 | core-js@^2.4.0: 992 | version "2.4.1" 993 | resolved "https://registry.yarnpkg.com/core-js/-/core-js-2.4.1.tgz#4de911e667b0eae9124e34254b53aea6fc618d3e" 994 | 995 | core-util-is@~1.0.0: 996 | version "1.0.2" 997 | resolved "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.2.tgz#b5fd54220aa2bc5ab57aab7140c940754503c1a7" 998 | 999 | cryptiles@2.x.x: 1000 | version "2.0.5" 1001 | resolved "https://registry.yarnpkg.com/cryptiles/-/cryptiles-2.0.5.tgz#3bdfecdc608147c1c67202fa291e7dca59eaa3b8" 1002 | dependencies: 1003 | boom "2.x.x" 1004 | 1005 | "cssom@>= 0.3.0 < 0.4.0", cssom@0.3.x: 1006 | version "0.3.1" 1007 | resolved "https://registry.yarnpkg.com/cssom/-/cssom-0.3.1.tgz#c9e37ef2490e64f6d1baa10fda852257082c25d3" 1008 | 1009 | "cssstyle@>= 0.2.36 < 0.3.0": 1010 | version "0.2.37" 1011 | resolved "https://registry.yarnpkg.com/cssstyle/-/cssstyle-0.2.37.tgz#541097234cb2513c83ceed3acddc27ff27987d54" 1012 | dependencies: 1013 | cssom "0.3.x" 1014 | 1015 | d@^0.1.1, d@~0.1.1: 1016 | version "0.1.1" 1017 | resolved "https://registry.yarnpkg.com/d/-/d-0.1.1.tgz#da184c535d18d8ee7ba2aa229b914009fae11309" 1018 | dependencies: 1019 | es5-ext "~0.10.2" 1020 | 1021 | dashdash@^1.12.0: 1022 | version "1.14.0" 1023 | resolved "https://registry.yarnpkg.com/dashdash/-/dashdash-1.14.0.tgz#29e486c5418bf0f356034a993d51686a33e84141" 1024 | dependencies: 1025 | assert-plus "^1.0.0" 1026 | 1027 | debug@^2.1.1, debug@^2.2.0, debug@~2.2.0, debug@2.2.0: 1028 | version "2.2.0" 1029 | resolved "https://registry.yarnpkg.com/debug/-/debug-2.2.0.tgz#f87057e995b1a1f6ae6a4960664137bc56f039da" 1030 | dependencies: 1031 | ms "0.7.1" 1032 | 1033 | decamelize@^1.0.0, decamelize@^1.1.1: 1034 | version "1.2.0" 1035 | resolved "https://registry.yarnpkg.com/decamelize/-/decamelize-1.2.0.tgz#f6534d15148269b20352e7bee26f501f9a191290" 1036 | 1037 | deep-eql@^0.1.3: 1038 | version "0.1.3" 1039 | resolved "https://registry.yarnpkg.com/deep-eql/-/deep-eql-0.1.3.tgz#ef558acab8de25206cd713906d74e56930eb69f2" 1040 | dependencies: 1041 | type-detect "0.1.1" 1042 | 1043 | deep-equal@^1.0.0: 1044 | version "1.0.1" 1045 | resolved "https://registry.yarnpkg.com/deep-equal/-/deep-equal-1.0.1.tgz#f5d260292b660e084eff4cdbc9f08ad3247448b5" 1046 | 1047 | deep-extend@~0.4.0: 1048 | version "0.4.1" 1049 | resolved "https://registry.yarnpkg.com/deep-extend/-/deep-extend-0.4.1.tgz#efe4113d08085f4e6f9687759810f807469e2253" 1050 | 1051 | deep-is@~0.1.3: 1052 | version "0.1.3" 1053 | resolved "https://registry.yarnpkg.com/deep-is/-/deep-is-0.1.3.tgz#b369d6fb5dbc13eecf524f91b070feedc357cf34" 1054 | 1055 | del@^2.0.2: 1056 | version "2.2.2" 1057 | resolved "https://registry.yarnpkg.com/del/-/del-2.2.2.tgz#c12c981d067846c84bcaf862cff930d907ffd1a8" 1058 | dependencies: 1059 | globby "^5.0.0" 1060 | is-path-cwd "^1.0.0" 1061 | is-path-in-cwd "^1.0.0" 1062 | object-assign "^4.0.1" 1063 | pify "^2.0.0" 1064 | pinkie-promise "^2.0.0" 1065 | rimraf "^2.2.8" 1066 | 1067 | delayed-stream@~1.0.0: 1068 | version "1.0.0" 1069 | resolved "https://registry.yarnpkg.com/delayed-stream/-/delayed-stream-1.0.0.tgz#df3ae199acadfb7d440aaae0b29e2272b24ec619" 1070 | 1071 | delegates@^1.0.0: 1072 | version "1.0.0" 1073 | resolved "https://registry.yarnpkg.com/delegates/-/delegates-1.0.0.tgz#84c6e159b81904fdca59a0ef44cd870d31250f9a" 1074 | 1075 | depd@~1.1.0: 1076 | version "1.1.0" 1077 | resolved "https://registry.yarnpkg.com/depd/-/depd-1.1.0.tgz#e1bd82c6aab6ced965b97b88b17ed3e528ca18c3" 1078 | 1079 | destroy@~1.0.4: 1080 | version "1.0.4" 1081 | resolved "https://registry.yarnpkg.com/destroy/-/destroy-1.0.4.tgz#978857442c44749e4206613e37946205826abd80" 1082 | 1083 | detect-indent@^4.0.0: 1084 | version "4.0.0" 1085 | resolved "https://registry.yarnpkg.com/detect-indent/-/detect-indent-4.0.0.tgz#f76d064352cdf43a1cb6ce619c4ee3a9475de208" 1086 | dependencies: 1087 | repeating "^2.0.0" 1088 | 1089 | diff@^3.0.0: 1090 | version "3.0.1" 1091 | resolved "https://registry.yarnpkg.com/diff/-/diff-3.0.1.tgz#a52d90cc08956994be00877bff97110062582c35" 1092 | 1093 | doctrine@^1.2.2, doctrine@1.5.0: 1094 | version "1.5.0" 1095 | resolved "https://registry.yarnpkg.com/doctrine/-/doctrine-1.5.0.tgz#379dce730f6166f76cefa4e6707a159b02c5a6fa" 1096 | dependencies: 1097 | esutils "^2.0.2" 1098 | isarray "^1.0.0" 1099 | 1100 | ecc-jsbn@~0.1.1: 1101 | version "0.1.1" 1102 | resolved "https://registry.yarnpkg.com/ecc-jsbn/-/ecc-jsbn-0.1.1.tgz#0fc73a9ed5f0d53c38193398523ef7e543777505" 1103 | dependencies: 1104 | jsbn "~0.1.0" 1105 | 1106 | ee-first@1.1.1: 1107 | version "1.1.1" 1108 | resolved "https://registry.yarnpkg.com/ee-first/-/ee-first-1.1.1.tgz#590c61156b0ae2f4f0255732a158b266bc56b21d" 1109 | 1110 | encodeurl@~1.0.1: 1111 | version "1.0.1" 1112 | resolved "https://registry.yarnpkg.com/encodeurl/-/encodeurl-1.0.1.tgz#79e3d58655346909fe6f0f45a5de68103b294d20" 1113 | 1114 | "errno@>=0.1.1 <0.2.0-0": 1115 | version "0.1.4" 1116 | resolved "https://registry.yarnpkg.com/errno/-/errno-0.1.4.tgz#b896e23a9e5e8ba33871fc996abd3635fc9a1c7d" 1117 | dependencies: 1118 | prr "~0.0.0" 1119 | 1120 | error-ex@^1.2.0: 1121 | version "1.3.0" 1122 | resolved "https://registry.yarnpkg.com/error-ex/-/error-ex-1.3.0.tgz#e67b43f3e82c96ea3a584ffee0b9fc3325d802d9" 1123 | dependencies: 1124 | is-arrayish "^0.2.1" 1125 | 1126 | es5-ext@^0.10.7, es5-ext@^0.10.8, es5-ext@~0.10.11, es5-ext@~0.10.2, es5-ext@~0.10.7: 1127 | version "0.10.12" 1128 | resolved "https://registry.yarnpkg.com/es5-ext/-/es5-ext-0.10.12.tgz#aa84641d4db76b62abba5e45fd805ecbab140047" 1129 | dependencies: 1130 | es6-iterator "2" 1131 | es6-symbol "~3.1" 1132 | 1133 | es6-iterator@2: 1134 | version "2.0.0" 1135 | resolved "https://registry.yarnpkg.com/es6-iterator/-/es6-iterator-2.0.0.tgz#bd968567d61635e33c0b80727613c9cb4b096bac" 1136 | dependencies: 1137 | d "^0.1.1" 1138 | es5-ext "^0.10.7" 1139 | es6-symbol "3" 1140 | 1141 | es6-map@^0.1.3: 1142 | version "0.1.4" 1143 | resolved "https://registry.yarnpkg.com/es6-map/-/es6-map-0.1.4.tgz#a34b147be224773a4d7da8072794cefa3632b897" 1144 | dependencies: 1145 | d "~0.1.1" 1146 | es5-ext "~0.10.11" 1147 | es6-iterator "2" 1148 | es6-set "~0.1.3" 1149 | es6-symbol "~3.1.0" 1150 | event-emitter "~0.3.4" 1151 | 1152 | es6-set@~0.1.3: 1153 | version "0.1.4" 1154 | resolved "https://registry.yarnpkg.com/es6-set/-/es6-set-0.1.4.tgz#9516b6761c2964b92ff479456233a247dc707ce8" 1155 | dependencies: 1156 | d "~0.1.1" 1157 | es5-ext "~0.10.11" 1158 | es6-iterator "2" 1159 | es6-symbol "3" 1160 | event-emitter "~0.3.4" 1161 | 1162 | es6-symbol@~3.1, es6-symbol@~3.1.0, es6-symbol@3: 1163 | version "3.1.0" 1164 | resolved "https://registry.yarnpkg.com/es6-symbol/-/es6-symbol-3.1.0.tgz#94481c655e7a7cad82eba832d97d5433496d7ffa" 1165 | dependencies: 1166 | d "~0.1.1" 1167 | es5-ext "~0.10.11" 1168 | 1169 | es6-weak-map@^2.0.1: 1170 | version "2.0.1" 1171 | resolved "https://registry.yarnpkg.com/es6-weak-map/-/es6-weak-map-2.0.1.tgz#0d2bbd8827eb5fb4ba8f97fbfea50d43db21ea81" 1172 | dependencies: 1173 | d "^0.1.1" 1174 | es5-ext "^0.10.8" 1175 | es6-iterator "2" 1176 | es6-symbol "3" 1177 | 1178 | escape-html@~1.0.3: 1179 | version "1.0.3" 1180 | resolved "https://registry.yarnpkg.com/escape-html/-/escape-html-1.0.3.tgz#0258eae4d3d0c0974de1c169188ef0051d1d1988" 1181 | 1182 | escape-string-regexp@^1.0.2, escape-string-regexp@^1.0.5: 1183 | version "1.0.5" 1184 | resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4" 1185 | 1186 | escodegen@^1.6.1, escodegen@1.8.x: 1187 | version "1.8.1" 1188 | resolved "https://registry.yarnpkg.com/escodegen/-/escodegen-1.8.1.tgz#5a5b53af4693110bebb0867aa3430dd3b70a1018" 1189 | dependencies: 1190 | esprima "^2.7.1" 1191 | estraverse "^1.9.1" 1192 | esutils "^2.0.2" 1193 | optionator "^0.8.1" 1194 | optionalDependencies: 1195 | source-map "~0.2.0" 1196 | 1197 | escope@^3.6.0: 1198 | version "3.6.0" 1199 | resolved "https://registry.yarnpkg.com/escope/-/escope-3.6.0.tgz#e01975e812781a163a6dadfdd80398dc64c889c3" 1200 | dependencies: 1201 | es6-map "^0.1.3" 1202 | es6-weak-map "^2.0.1" 1203 | esrecurse "^4.1.0" 1204 | estraverse "^4.1.1" 1205 | 1206 | eslint: 1207 | version "3.9.1" 1208 | resolved "https://registry.yarnpkg.com/eslint/-/eslint-3.9.1.tgz#5a8597706fc6048bc6061ac754d4a211d28f4f5b" 1209 | dependencies: 1210 | babel-code-frame "^6.16.0" 1211 | chalk "^1.1.3" 1212 | concat-stream "^1.4.6" 1213 | debug "^2.1.1" 1214 | doctrine "^1.2.2" 1215 | escope "^3.6.0" 1216 | espree "^3.3.1" 1217 | estraverse "^4.2.0" 1218 | esutils "^2.0.2" 1219 | file-entry-cache "^2.0.0" 1220 | glob "^7.0.3" 1221 | globals "^9.2.0" 1222 | ignore "^3.1.5" 1223 | imurmurhash "^0.1.4" 1224 | inquirer "^0.12.0" 1225 | is-my-json-valid "^2.10.0" 1226 | is-resolvable "^1.0.0" 1227 | js-yaml "^3.5.1" 1228 | json-stable-stringify "^1.0.0" 1229 | levn "^0.3.0" 1230 | lodash "^4.0.0" 1231 | mkdirp "^0.5.0" 1232 | natural-compare "^1.4.0" 1233 | optionator "^0.8.2" 1234 | path-is-inside "^1.0.1" 1235 | pluralize "^1.2.1" 1236 | progress "^1.1.8" 1237 | require-uncached "^1.0.2" 1238 | shelljs "^0.7.5" 1239 | strip-bom "^3.0.0" 1240 | strip-json-comments "~1.0.1" 1241 | table "^3.7.8" 1242 | text-table "~0.2.0" 1243 | user-home "^2.0.0" 1244 | 1245 | eslint-config-airbnb-base: 1246 | version "9.0.0" 1247 | resolved "https://registry.yarnpkg.com/eslint-config-airbnb-base/-/eslint-config-airbnb-base-9.0.0.tgz#03e135562aa6c4d0d9f1bbda96d901326bf58ad2" 1248 | 1249 | eslint-import-resolver-node@^0.2.0: 1250 | version "0.2.3" 1251 | resolved "https://registry.yarnpkg.com/eslint-import-resolver-node/-/eslint-import-resolver-node-0.2.3.tgz#5add8106e8c928db2cba232bcd9efa846e3da16c" 1252 | dependencies: 1253 | debug "^2.2.0" 1254 | object-assign "^4.0.1" 1255 | resolve "^1.1.6" 1256 | 1257 | eslint-module-utils@^1.0.0: 1258 | version "1.0.0" 1259 | resolved "https://registry.yarnpkg.com/eslint-module-utils/-/eslint-module-utils-1.0.0.tgz#c4a57fd3a53efd8426cc2d5550aadab9bbd05fd0" 1260 | dependencies: 1261 | debug "2.2.0" 1262 | pkg-dir "^1.0.0" 1263 | 1264 | eslint-plugin-import: 1265 | version "2.1.0" 1266 | resolved "https://registry.yarnpkg.com/eslint-plugin-import/-/eslint-plugin-import-2.1.0.tgz#20fe254aa7dac0d9fe617979f14b59f0f762e1b4" 1267 | dependencies: 1268 | builtin-modules "^1.1.1" 1269 | contains-path "^0.1.0" 1270 | debug "^2.2.0" 1271 | doctrine "1.5.0" 1272 | eslint-import-resolver-node "^0.2.0" 1273 | eslint-module-utils "^1.0.0" 1274 | has "^1.0.1" 1275 | lodash.cond "^4.3.0" 1276 | minimatch "^3.0.3" 1277 | pkg-up "^1.0.0" 1278 | 1279 | espree@^3.3.1: 1280 | version "3.3.2" 1281 | resolved "https://registry.yarnpkg.com/espree/-/espree-3.3.2.tgz#dbf3fadeb4ecb4d4778303e50103b3d36c88b89c" 1282 | dependencies: 1283 | acorn "^4.0.1" 1284 | acorn-jsx "^3.0.0" 1285 | 1286 | esprima@^2.6.0, esprima@^2.7.1, esprima@2.7.x: 1287 | version "2.7.3" 1288 | resolved "https://registry.yarnpkg.com/esprima/-/esprima-2.7.3.tgz#96e3b70d5779f6ad49cd032673d1c312767ba581" 1289 | 1290 | esprima@~3.0.0: 1291 | version "3.0.0" 1292 | resolved "https://registry.yarnpkg.com/esprima/-/esprima-3.0.0.tgz#53cf247acda77313e551c3aa2e73342d3fb4f7d9" 1293 | 1294 | esrecurse@^4.1.0: 1295 | version "4.1.0" 1296 | resolved "https://registry.yarnpkg.com/esrecurse/-/esrecurse-4.1.0.tgz#4713b6536adf7f2ac4f327d559e7756bff648220" 1297 | dependencies: 1298 | estraverse "~4.1.0" 1299 | object-assign "^4.0.1" 1300 | 1301 | estraverse@^1.9.1: 1302 | version "1.9.3" 1303 | resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-1.9.3.tgz#af67f2dc922582415950926091a4005d29c9bb44" 1304 | 1305 | estraverse@^4.1.1, estraverse@^4.2.0: 1306 | version "4.2.0" 1307 | resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-4.2.0.tgz#0dee3fed31fcd469618ce7342099fc1afa0bdb13" 1308 | 1309 | estraverse@~4.1.0: 1310 | version "4.1.1" 1311 | resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-4.1.1.tgz#f6caca728933a850ef90661d0e17982ba47111a2" 1312 | 1313 | esutils@^2.0.2: 1314 | version "2.0.2" 1315 | resolved "https://registry.yarnpkg.com/esutils/-/esutils-2.0.2.tgz#0abf4f1caa5bcb1f7a9d8acc6dea4faaa04bac9b" 1316 | 1317 | etag@~1.7.0: 1318 | version "1.7.0" 1319 | resolved "https://registry.yarnpkg.com/etag/-/etag-1.7.0.tgz#03d30b5f67dd6e632d2945d30d6652731a34d5d8" 1320 | 1321 | event-emitter@~0.3.4: 1322 | version "0.3.4" 1323 | resolved "https://registry.yarnpkg.com/event-emitter/-/event-emitter-0.3.4.tgz#8d63ddfb4cfe1fae3b32ca265c4c720222080bb5" 1324 | dependencies: 1325 | d "~0.1.1" 1326 | es5-ext "~0.10.7" 1327 | 1328 | exec-sh@^0.2.0: 1329 | version "0.2.0" 1330 | resolved "https://registry.yarnpkg.com/exec-sh/-/exec-sh-0.2.0.tgz#14f75de3f20d286ef933099b2ce50a90359cef10" 1331 | dependencies: 1332 | merge "^1.1.3" 1333 | 1334 | exit-hook@^1.0.0: 1335 | version "1.1.1" 1336 | resolved "https://registry.yarnpkg.com/exit-hook/-/exit-hook-1.1.1.tgz#f05ca233b48c05d54fff07765df8507e95c02ff8" 1337 | 1338 | expand-brackets@^0.1.4: 1339 | version "0.1.5" 1340 | resolved "https://registry.yarnpkg.com/expand-brackets/-/expand-brackets-0.1.5.tgz#df07284e342a807cd733ac5af72411e581d1177b" 1341 | dependencies: 1342 | is-posix-bracket "^0.1.0" 1343 | 1344 | expand-range@^1.8.1: 1345 | version "1.8.2" 1346 | resolved "https://registry.yarnpkg.com/expand-range/-/expand-range-1.8.2.tgz#a299effd335fe2721ebae8e257ec79644fc85337" 1347 | dependencies: 1348 | fill-range "^2.1.0" 1349 | 1350 | express@^4.14.0: 1351 | version "4.14.0" 1352 | resolved "https://registry.yarnpkg.com/express/-/express-4.14.0.tgz#c1ee3f42cdc891fb3dc650a8922d51ec847d0d66" 1353 | dependencies: 1354 | accepts "~1.3.3" 1355 | array-flatten "1.1.1" 1356 | content-disposition "0.5.1" 1357 | content-type "~1.0.2" 1358 | cookie "0.3.1" 1359 | cookie-signature "1.0.6" 1360 | debug "~2.2.0" 1361 | depd "~1.1.0" 1362 | encodeurl "~1.0.1" 1363 | escape-html "~1.0.3" 1364 | etag "~1.7.0" 1365 | finalhandler "0.5.0" 1366 | fresh "0.3.0" 1367 | merge-descriptors "1.0.1" 1368 | methods "~1.1.2" 1369 | on-finished "~2.3.0" 1370 | parseurl "~1.3.1" 1371 | path-to-regexp "0.1.7" 1372 | proxy-addr "~1.1.2" 1373 | qs "6.2.0" 1374 | range-parser "~1.2.0" 1375 | send "0.14.1" 1376 | serve-static "~1.11.1" 1377 | type-is "~1.6.13" 1378 | utils-merge "1.0.0" 1379 | vary "~1.1.0" 1380 | 1381 | extend@~3.0.0: 1382 | version "3.0.0" 1383 | resolved "https://registry.yarnpkg.com/extend/-/extend-3.0.0.tgz#5a474353b9f3353ddd8176dfd37b91c83a46f1d4" 1384 | 1385 | extglob@^0.3.1: 1386 | version "0.3.2" 1387 | resolved "https://registry.yarnpkg.com/extglob/-/extglob-0.3.2.tgz#2e18ff3d2f49ab2765cec9023f011daa8d8349a1" 1388 | dependencies: 1389 | is-extglob "^1.0.0" 1390 | 1391 | extsprintf@1.0.2: 1392 | version "1.0.2" 1393 | resolved "https://registry.yarnpkg.com/extsprintf/-/extsprintf-1.0.2.tgz#e1080e0658e300b06294990cc70e1502235fd550" 1394 | 1395 | fast-levenshtein@~2.0.4: 1396 | version "2.0.5" 1397 | resolved "https://registry.yarnpkg.com/fast-levenshtein/-/fast-levenshtein-2.0.5.tgz#bd33145744519ab1c36c3ee9f31f08e9079b67f2" 1398 | 1399 | fb-watchman@^1.8.0, fb-watchman@^1.9.0: 1400 | version "1.9.0" 1401 | resolved "https://registry.yarnpkg.com/fb-watchman/-/fb-watchman-1.9.0.tgz#6f268f1f347a6b3c875d1e89da7e1ed79adfc0ec" 1402 | dependencies: 1403 | bser "^1.0.2" 1404 | 1405 | figures@^1.3.5: 1406 | version "1.7.0" 1407 | resolved "https://registry.yarnpkg.com/figures/-/figures-1.7.0.tgz#cbe1e3affcf1cd44b80cadfed28dc793a9701d2e" 1408 | dependencies: 1409 | escape-string-regexp "^1.0.5" 1410 | object-assign "^4.1.0" 1411 | 1412 | file-entry-cache@^2.0.0: 1413 | version "2.0.0" 1414 | resolved "https://registry.yarnpkg.com/file-entry-cache/-/file-entry-cache-2.0.0.tgz#c392990c3e684783d838b8c84a45d8a048458361" 1415 | dependencies: 1416 | flat-cache "^1.2.1" 1417 | object-assign "^4.0.1" 1418 | 1419 | filename-regex@^2.0.0: 1420 | version "2.0.0" 1421 | resolved "https://registry.yarnpkg.com/filename-regex/-/filename-regex-2.0.0.tgz#996e3e80479b98b9897f15a8a58b3d084e926775" 1422 | 1423 | fileset@0.2.x: 1424 | version "0.2.1" 1425 | resolved "https://registry.yarnpkg.com/fileset/-/fileset-0.2.1.tgz#588ef8973c6623b2a76df465105696b96aac8067" 1426 | dependencies: 1427 | glob "5.x" 1428 | minimatch "2.x" 1429 | 1430 | fill-range@^2.1.0: 1431 | version "2.2.3" 1432 | resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-2.2.3.tgz#50b77dfd7e469bc7492470963699fe7a8485a723" 1433 | dependencies: 1434 | is-number "^2.1.0" 1435 | isobject "^2.0.0" 1436 | randomatic "^1.1.3" 1437 | repeat-element "^1.1.2" 1438 | repeat-string "^1.5.2" 1439 | 1440 | finalhandler@0.5.0: 1441 | version "0.5.0" 1442 | resolved "https://registry.yarnpkg.com/finalhandler/-/finalhandler-0.5.0.tgz#e9508abece9b6dba871a6942a1d7911b91911ac7" 1443 | dependencies: 1444 | debug "~2.2.0" 1445 | escape-html "~1.0.3" 1446 | on-finished "~2.3.0" 1447 | statuses "~1.3.0" 1448 | unpipe "~1.0.0" 1449 | 1450 | find-up@^1.0.0, find-up@^1.1.2: 1451 | version "1.1.2" 1452 | resolved "https://registry.yarnpkg.com/find-up/-/find-up-1.1.2.tgz#6b2e9822b1a2ce0a60ab64d610eccad53cb24d0f" 1453 | dependencies: 1454 | path-exists "^2.0.0" 1455 | pinkie-promise "^2.0.0" 1456 | 1457 | flat-cache@^1.2.1: 1458 | version "1.2.1" 1459 | resolved "https://registry.yarnpkg.com/flat-cache/-/flat-cache-1.2.1.tgz#6c837d6225a7de5659323740b36d5361f71691ff" 1460 | dependencies: 1461 | circular-json "^0.3.0" 1462 | del "^2.0.2" 1463 | graceful-fs "^4.1.2" 1464 | write "^0.2.1" 1465 | 1466 | for-in@^0.1.5: 1467 | version "0.1.6" 1468 | resolved "https://registry.yarnpkg.com/for-in/-/for-in-0.1.6.tgz#c9f96e89bfad18a545af5ec3ed352a1d9e5b4dc8" 1469 | 1470 | for-own@^0.1.4: 1471 | version "0.1.4" 1472 | resolved "https://registry.yarnpkg.com/for-own/-/for-own-0.1.4.tgz#0149b41a39088c7515f51ebe1c1386d45f935072" 1473 | dependencies: 1474 | for-in "^0.1.5" 1475 | 1476 | forever-agent@~0.6.1: 1477 | version "0.6.1" 1478 | resolved "https://registry.yarnpkg.com/forever-agent/-/forever-agent-0.6.1.tgz#fbc71f0c41adeb37f96c577ad1ed42d8fdacca91" 1479 | 1480 | form-data@~2.1.1: 1481 | version "2.1.1" 1482 | resolved "https://registry.yarnpkg.com/form-data/-/form-data-2.1.1.tgz#4adf0342e1a79afa1e84c8c320a9ffc82392a1f3" 1483 | dependencies: 1484 | asynckit "^0.4.0" 1485 | combined-stream "^1.0.5" 1486 | mime-types "^2.1.12" 1487 | 1488 | forwarded@~0.1.0: 1489 | version "0.1.0" 1490 | resolved "https://registry.yarnpkg.com/forwarded/-/forwarded-0.1.0.tgz#19ef9874c4ae1c297bcf078fde63a09b66a84363" 1491 | 1492 | fresh@0.3.0: 1493 | version "0.3.0" 1494 | resolved "https://registry.yarnpkg.com/fresh/-/fresh-0.3.0.tgz#651f838e22424e7566de161d8358caa199f83d4f" 1495 | 1496 | fs-readdir-recursive@^1.0.0: 1497 | version "1.0.0" 1498 | resolved "https://registry.yarnpkg.com/fs-readdir-recursive/-/fs-readdir-recursive-1.0.0.tgz#8cd1745c8b4f8a29c8caec392476921ba195f560" 1499 | 1500 | fs.realpath@^1.0.0: 1501 | version "1.0.0" 1502 | resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f" 1503 | 1504 | fsevents@^1.0.0: 1505 | version "1.0.15" 1506 | resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-1.0.15.tgz#fa63f590f3c2ad91275e4972a6cea545fb0aae44" 1507 | dependencies: 1508 | nan "^2.3.0" 1509 | node-pre-gyp "^0.6.29" 1510 | 1511 | fstream-ignore@~1.0.5: 1512 | version "1.0.5" 1513 | resolved "https://registry.yarnpkg.com/fstream-ignore/-/fstream-ignore-1.0.5.tgz#9c31dae34767018fe1d249b24dada67d092da105" 1514 | dependencies: 1515 | fstream "^1.0.0" 1516 | inherits "2" 1517 | minimatch "^3.0.0" 1518 | 1519 | fstream@^1.0.0, fstream@^1.0.2, fstream@~1.0.10: 1520 | version "1.0.10" 1521 | resolved "https://registry.yarnpkg.com/fstream/-/fstream-1.0.10.tgz#604e8a92fe26ffd9f6fae30399d4984e1ab22822" 1522 | dependencies: 1523 | graceful-fs "^4.1.2" 1524 | inherits "~2.0.0" 1525 | mkdirp ">=0.5 0" 1526 | rimraf "2" 1527 | 1528 | function-bind@^1.0.2: 1529 | version "1.1.0" 1530 | resolved "https://registry.yarnpkg.com/function-bind/-/function-bind-1.1.0.tgz#16176714c801798e4e8f2cf7f7529467bb4a5771" 1531 | 1532 | gauge@~2.6.0: 1533 | version "2.6.0" 1534 | resolved "https://registry.yarnpkg.com/gauge/-/gauge-2.6.0.tgz#d35301ad18e96902b4751dcbbe40f4218b942a46" 1535 | dependencies: 1536 | aproba "^1.0.3" 1537 | console-control-strings "^1.0.0" 1538 | has-color "^0.1.7" 1539 | has-unicode "^2.0.0" 1540 | object-assign "^4.1.0" 1541 | signal-exit "^3.0.0" 1542 | string-width "^1.0.1" 1543 | strip-ansi "^3.0.1" 1544 | wide-align "^1.1.0" 1545 | 1546 | generate-function@^2.0.0: 1547 | version "2.0.0" 1548 | resolved "https://registry.yarnpkg.com/generate-function/-/generate-function-2.0.0.tgz#6858fe7c0969b7d4e9093337647ac79f60dfbe74" 1549 | 1550 | generate-object-property@^1.1.0: 1551 | version "1.2.0" 1552 | resolved "https://registry.yarnpkg.com/generate-object-property/-/generate-object-property-1.2.0.tgz#9c0e1c40308ce804f4783618b937fa88f99d50d0" 1553 | dependencies: 1554 | is-property "^1.0.0" 1555 | 1556 | get-caller-file@^1.0.1: 1557 | version "1.0.2" 1558 | resolved "https://registry.yarnpkg.com/get-caller-file/-/get-caller-file-1.0.2.tgz#f702e63127e7e231c160a80c1554acb70d5047e5" 1559 | 1560 | getpass@^0.1.1: 1561 | version "0.1.6" 1562 | resolved "https://registry.yarnpkg.com/getpass/-/getpass-0.1.6.tgz#283ffd9fc1256840875311c1b60e8c40187110e6" 1563 | dependencies: 1564 | assert-plus "^1.0.0" 1565 | 1566 | glob-base@^0.3.0: 1567 | version "0.3.0" 1568 | resolved "https://registry.yarnpkg.com/glob-base/-/glob-base-0.3.0.tgz#dbb164f6221b1c0b1ccf82aea328b497df0ea3c4" 1569 | dependencies: 1570 | glob-parent "^2.0.0" 1571 | is-glob "^2.0.0" 1572 | 1573 | glob-parent@^2.0.0: 1574 | version "2.0.0" 1575 | resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-2.0.0.tgz#81383d72db054fcccf5336daa902f182f6edbb28" 1576 | dependencies: 1577 | is-glob "^2.0.0" 1578 | 1579 | glob@^5.0.15, glob@^5.0.5, glob@5.x: 1580 | version "5.0.15" 1581 | resolved "https://registry.yarnpkg.com/glob/-/glob-5.0.15.tgz#1bc936b9e02f4a603fcc222ecf7633d30b8b93b1" 1582 | dependencies: 1583 | inflight "^1.0.4" 1584 | inherits "2" 1585 | minimatch "2 || 3" 1586 | once "^1.3.0" 1587 | path-is-absolute "^1.0.0" 1588 | 1589 | glob@^7.0.0, glob@^7.0.3, glob@^7.0.5: 1590 | version "7.1.1" 1591 | resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.1.tgz#805211df04faaf1c63a3600306cdf5ade50b2ec8" 1592 | dependencies: 1593 | fs.realpath "^1.0.0" 1594 | inflight "^1.0.4" 1595 | inherits "2" 1596 | minimatch "^3.0.2" 1597 | once "^1.3.0" 1598 | path-is-absolute "^1.0.0" 1599 | 1600 | globals@^9.0.0, globals@^9.2.0: 1601 | version "9.12.0" 1602 | resolved "https://registry.yarnpkg.com/globals/-/globals-9.12.0.tgz#992ce90828c3a55fa8f16fada177adb64664cf9d" 1603 | 1604 | globby@^5.0.0: 1605 | version "5.0.0" 1606 | resolved "https://registry.yarnpkg.com/globby/-/globby-5.0.0.tgz#ebd84667ca0dbb330b99bcfc68eac2bc54370e0d" 1607 | dependencies: 1608 | array-union "^1.0.1" 1609 | arrify "^1.0.0" 1610 | glob "^7.0.3" 1611 | object-assign "^4.0.1" 1612 | pify "^2.0.0" 1613 | pinkie-promise "^2.0.0" 1614 | 1615 | graceful-fs@^4.1.2, graceful-fs@^4.1.4, graceful-fs@^4.1.6: 1616 | version "4.1.10" 1617 | resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.1.10.tgz#f2d720c22092f743228775c75e3612632501f131" 1618 | 1619 | "graceful-readlink@>= 1.0.0": 1620 | version "1.0.1" 1621 | resolved "https://registry.yarnpkg.com/graceful-readlink/-/graceful-readlink-1.0.1.tgz#4cafad76bc62f02fa039b2f94e9a3dd3a391a725" 1622 | 1623 | growly@^1.2.0: 1624 | version "1.3.0" 1625 | resolved "https://registry.yarnpkg.com/growly/-/growly-1.3.0.tgz#f10748cbe76af964b7c96c93c6bcc28af120c081" 1626 | 1627 | handlebars@^4.0.1, handlebars@^4.0.3: 1628 | version "4.0.5" 1629 | resolved "https://registry.yarnpkg.com/handlebars/-/handlebars-4.0.5.tgz#92c6ed6bb164110c50d4d8d0fbddc70806c6f8e7" 1630 | dependencies: 1631 | async "^1.4.0" 1632 | optimist "^0.6.1" 1633 | source-map "^0.4.4" 1634 | optionalDependencies: 1635 | uglify-js "^2.6" 1636 | 1637 | har-validator@~2.0.6: 1638 | version "2.0.6" 1639 | resolved "https://registry.yarnpkg.com/har-validator/-/har-validator-2.0.6.tgz#cdcbc08188265ad119b6a5a7c8ab70eecfb5d27d" 1640 | dependencies: 1641 | chalk "^1.1.1" 1642 | commander "^2.9.0" 1643 | is-my-json-valid "^2.12.4" 1644 | pinkie-promise "^2.0.0" 1645 | 1646 | has-ansi@^2.0.0: 1647 | version "2.0.0" 1648 | resolved "https://registry.yarnpkg.com/has-ansi/-/has-ansi-2.0.0.tgz#34f5049ce1ecdf2b0649af3ef24e45ed35416d91" 1649 | dependencies: 1650 | ansi-regex "^2.0.0" 1651 | 1652 | has-color@^0.1.7: 1653 | version "0.1.7" 1654 | resolved "https://registry.yarnpkg.com/has-color/-/has-color-0.1.7.tgz#67144a5260c34fc3cca677d041daf52fe7b78b2f" 1655 | 1656 | has-flag@^1.0.0: 1657 | version "1.0.0" 1658 | resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-1.0.0.tgz#9d9e793165ce017a00f00418c43f942a7b1d11fa" 1659 | 1660 | has-unicode@^2.0.0: 1661 | version "2.0.1" 1662 | resolved "https://registry.yarnpkg.com/has-unicode/-/has-unicode-2.0.1.tgz#e0e6fe6a28cf51138855e086d1691e771de2a8b9" 1663 | 1664 | has@^1.0.1: 1665 | version "1.0.1" 1666 | resolved "https://registry.yarnpkg.com/has/-/has-1.0.1.tgz#8461733f538b0837c9361e39a9ab9e9704dc2f28" 1667 | dependencies: 1668 | function-bind "^1.0.2" 1669 | 1670 | hawk@~3.1.3: 1671 | version "3.1.3" 1672 | resolved "https://registry.yarnpkg.com/hawk/-/hawk-3.1.3.tgz#078444bd7c1640b0fe540d2c9b73d59678e8e1c4" 1673 | dependencies: 1674 | boom "2.x.x" 1675 | cryptiles "2.x.x" 1676 | hoek "2.x.x" 1677 | sntp "1.x.x" 1678 | 1679 | hoek@2.x.x: 1680 | version "2.16.3" 1681 | resolved "https://registry.yarnpkg.com/hoek/-/hoek-2.16.3.tgz#20bb7403d3cea398e91dc4710a8ff1b8274a25ed" 1682 | 1683 | home-or-tmp@^2.0.0: 1684 | version "2.0.0" 1685 | resolved "https://registry.yarnpkg.com/home-or-tmp/-/home-or-tmp-2.0.0.tgz#e36c3f2d2cae7d746a857e38d18d5f32a7882db8" 1686 | dependencies: 1687 | os-homedir "^1.0.0" 1688 | os-tmpdir "^1.0.1" 1689 | 1690 | hosted-git-info@^2.1.4: 1691 | version "2.1.5" 1692 | resolved "https://registry.yarnpkg.com/hosted-git-info/-/hosted-git-info-2.1.5.tgz#0ba81d90da2e25ab34a332e6ec77936e1598118b" 1693 | 1694 | html-encoding-sniffer@^1.0.1: 1695 | version "1.0.1" 1696 | resolved "https://registry.yarnpkg.com/html-encoding-sniffer/-/html-encoding-sniffer-1.0.1.tgz#79bf7a785ea495fe66165e734153f363ff5437da" 1697 | dependencies: 1698 | whatwg-encoding "^1.0.1" 1699 | 1700 | http-errors@~1.5.0: 1701 | version "1.5.0" 1702 | resolved "https://registry.yarnpkg.com/http-errors/-/http-errors-1.5.0.tgz#b1cb3d8260fd8e2386cad3189045943372d48211" 1703 | dependencies: 1704 | inherits "2.0.1" 1705 | setprototypeof "1.0.1" 1706 | statuses ">= 1.3.0 < 2" 1707 | 1708 | http-signature@~1.1.0: 1709 | version "1.1.1" 1710 | resolved "https://registry.yarnpkg.com/http-signature/-/http-signature-1.1.1.tgz#df72e267066cd0ac67fb76adf8e134a8fbcf91bf" 1711 | dependencies: 1712 | assert-plus "^0.2.0" 1713 | jsprim "^1.2.2" 1714 | sshpk "^1.7.0" 1715 | 1716 | iconv-lite@^0.4.13, iconv-lite@0.4.13: 1717 | version "0.4.13" 1718 | resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.4.13.tgz#1f88aba4ab0b1508e8312acc39345f36e992e2f2" 1719 | 1720 | ignore@^3.1.5: 1721 | version "3.2.0" 1722 | resolved "https://registry.yarnpkg.com/ignore/-/ignore-3.2.0.tgz#8d88f03c3002a0ac52114db25d2c673b0bf1e435" 1723 | 1724 | imurmurhash@^0.1.4: 1725 | version "0.1.4" 1726 | resolved "https://registry.yarnpkg.com/imurmurhash/-/imurmurhash-0.1.4.tgz#9218b9b2b928a238b13dc4fb6b6d576f231453ea" 1727 | 1728 | inflight@^1.0.4: 1729 | version "1.0.6" 1730 | resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9" 1731 | dependencies: 1732 | once "^1.3.0" 1733 | wrappy "1" 1734 | 1735 | inherits@^2.0.1, inherits@~2.0.0, inherits@~2.0.1, inherits@2: 1736 | version "2.0.3" 1737 | resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.3.tgz#633c2c83e3da42a502f52466022480f4208261de" 1738 | 1739 | inherits@2.0.1: 1740 | version "2.0.1" 1741 | resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.1.tgz#b17d08d326b4423e568eff719f91b0b1cbdf69f1" 1742 | 1743 | ini@~1.3.0: 1744 | version "1.3.4" 1745 | resolved "https://registry.yarnpkg.com/ini/-/ini-1.3.4.tgz#0537cb79daf59b59a1a517dff706c86ec039162e" 1746 | 1747 | inquirer@^0.12.0: 1748 | version "0.12.0" 1749 | resolved "https://registry.yarnpkg.com/inquirer/-/inquirer-0.12.0.tgz#1ef2bfd63504df0bc75785fff8c2c41df12f077e" 1750 | dependencies: 1751 | ansi-escapes "^1.1.0" 1752 | ansi-regex "^2.0.0" 1753 | chalk "^1.0.0" 1754 | cli-cursor "^1.0.1" 1755 | cli-width "^2.0.0" 1756 | figures "^1.3.5" 1757 | lodash "^4.3.0" 1758 | readline2 "^1.0.1" 1759 | run-async "^0.1.0" 1760 | rx-lite "^3.1.2" 1761 | string-width "^1.0.1" 1762 | strip-ansi "^3.0.0" 1763 | through "^2.3.6" 1764 | 1765 | interpret@^1.0.0: 1766 | version "1.0.1" 1767 | resolved "https://registry.yarnpkg.com/interpret/-/interpret-1.0.1.tgz#d579fb7f693b858004947af39fa0db49f795602c" 1768 | 1769 | invariant@^2.2.0: 1770 | version "2.2.1" 1771 | resolved "https://registry.yarnpkg.com/invariant/-/invariant-2.2.1.tgz#b097010547668c7e337028ebe816ebe36c8a8d54" 1772 | dependencies: 1773 | loose-envify "^1.0.0" 1774 | 1775 | invert-kv@^1.0.0: 1776 | version "1.0.0" 1777 | resolved "https://registry.yarnpkg.com/invert-kv/-/invert-kv-1.0.0.tgz#104a8e4aaca6d3d8cd157a8ef8bfab2d7a3ffdb6" 1778 | 1779 | ipaddr.js@1.1.1: 1780 | version "1.1.1" 1781 | resolved "https://registry.yarnpkg.com/ipaddr.js/-/ipaddr.js-1.1.1.tgz#c791d95f52b29c1247d5df80ada39b8a73647230" 1782 | 1783 | is-arrayish@^0.2.1: 1784 | version "0.2.1" 1785 | resolved "https://registry.yarnpkg.com/is-arrayish/-/is-arrayish-0.2.1.tgz#77c99840527aa8ecb1a8ba697b80645a7a926a9d" 1786 | 1787 | is-binary-path@^1.0.0: 1788 | version "1.0.1" 1789 | resolved "https://registry.yarnpkg.com/is-binary-path/-/is-binary-path-1.0.1.tgz#75f16642b480f187a711c814161fd3a4a7655898" 1790 | dependencies: 1791 | binary-extensions "^1.0.0" 1792 | 1793 | is-buffer@^1.0.2: 1794 | version "1.1.4" 1795 | resolved "https://registry.yarnpkg.com/is-buffer/-/is-buffer-1.1.4.tgz#cfc86ccd5dc5a52fa80489111c6920c457e2d98b" 1796 | 1797 | is-builtin-module@^1.0.0: 1798 | version "1.0.0" 1799 | resolved "https://registry.yarnpkg.com/is-builtin-module/-/is-builtin-module-1.0.0.tgz#540572d34f7ac3119f8f76c30cbc1b1e037affbe" 1800 | dependencies: 1801 | builtin-modules "^1.0.0" 1802 | 1803 | is-dotfile@^1.0.0: 1804 | version "1.0.2" 1805 | resolved "https://registry.yarnpkg.com/is-dotfile/-/is-dotfile-1.0.2.tgz#2c132383f39199f8edc268ca01b9b007d205cc4d" 1806 | 1807 | is-equal-shallow@^0.1.3: 1808 | version "0.1.3" 1809 | resolved "https://registry.yarnpkg.com/is-equal-shallow/-/is-equal-shallow-0.1.3.tgz#2238098fc221de0bcfa5d9eac4c45d638aa1c534" 1810 | dependencies: 1811 | is-primitive "^2.0.0" 1812 | 1813 | is-extendable@^0.1.1: 1814 | version "0.1.1" 1815 | resolved "https://registry.yarnpkg.com/is-extendable/-/is-extendable-0.1.1.tgz#62b110e289a471418e3ec36a617d472e301dfc89" 1816 | 1817 | is-extglob@^1.0.0: 1818 | version "1.0.0" 1819 | resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-1.0.0.tgz#ac468177c4943405a092fc8f29760c6ffc6206c0" 1820 | 1821 | is-finite@^1.0.0: 1822 | version "1.0.2" 1823 | resolved "https://registry.yarnpkg.com/is-finite/-/is-finite-1.0.2.tgz#cc6677695602be550ef11e8b4aa6305342b6d0aa" 1824 | dependencies: 1825 | number-is-nan "^1.0.0" 1826 | 1827 | is-fullwidth-code-point@^1.0.0: 1828 | version "1.0.0" 1829 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz#ef9e31386f031a7f0d643af82fde50c457ef00cb" 1830 | dependencies: 1831 | number-is-nan "^1.0.0" 1832 | 1833 | is-fullwidth-code-point@^2.0.0: 1834 | version "2.0.0" 1835 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz#a3b30a5c4f199183167aaab93beefae3ddfb654f" 1836 | 1837 | is-glob@^2.0.0, is-glob@^2.0.1: 1838 | version "2.0.1" 1839 | resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-2.0.1.tgz#d096f926a3ded5600f3fdfd91198cb0888c2d863" 1840 | dependencies: 1841 | is-extglob "^1.0.0" 1842 | 1843 | is-my-json-valid@^2.10.0, is-my-json-valid@^2.12.4: 1844 | version "2.15.0" 1845 | resolved "https://registry.yarnpkg.com/is-my-json-valid/-/is-my-json-valid-2.15.0.tgz#936edda3ca3c211fd98f3b2d3e08da43f7b2915b" 1846 | dependencies: 1847 | generate-function "^2.0.0" 1848 | generate-object-property "^1.1.0" 1849 | jsonpointer "^4.0.0" 1850 | xtend "^4.0.0" 1851 | 1852 | is-number@^2.0.2, is-number@^2.1.0: 1853 | version "2.1.0" 1854 | resolved "https://registry.yarnpkg.com/is-number/-/is-number-2.1.0.tgz#01fcbbb393463a548f2f466cce16dece49db908f" 1855 | dependencies: 1856 | kind-of "^3.0.2" 1857 | 1858 | is-path-cwd@^1.0.0: 1859 | version "1.0.0" 1860 | resolved "https://registry.yarnpkg.com/is-path-cwd/-/is-path-cwd-1.0.0.tgz#d225ec23132e89edd38fda767472e62e65f1106d" 1861 | 1862 | is-path-in-cwd@^1.0.0: 1863 | version "1.0.0" 1864 | resolved "https://registry.yarnpkg.com/is-path-in-cwd/-/is-path-in-cwd-1.0.0.tgz#6477582b8214d602346094567003be8a9eac04dc" 1865 | dependencies: 1866 | is-path-inside "^1.0.0" 1867 | 1868 | is-path-inside@^1.0.0: 1869 | version "1.0.0" 1870 | resolved "https://registry.yarnpkg.com/is-path-inside/-/is-path-inside-1.0.0.tgz#fc06e5a1683fbda13de667aff717bbc10a48f37f" 1871 | dependencies: 1872 | path-is-inside "^1.0.1" 1873 | 1874 | is-posix-bracket@^0.1.0: 1875 | version "0.1.1" 1876 | resolved "https://registry.yarnpkg.com/is-posix-bracket/-/is-posix-bracket-0.1.1.tgz#3334dc79774368e92f016e6fbc0a88f5cd6e6bc4" 1877 | 1878 | is-primitive@^2.0.0: 1879 | version "2.0.0" 1880 | resolved "https://registry.yarnpkg.com/is-primitive/-/is-primitive-2.0.0.tgz#207bab91638499c07b2adf240a41a87210034575" 1881 | 1882 | is-property@^1.0.0: 1883 | version "1.0.2" 1884 | resolved "https://registry.yarnpkg.com/is-property/-/is-property-1.0.2.tgz#57fe1c4e48474edd65b09911f26b1cd4095dda84" 1885 | 1886 | is-resolvable@^1.0.0: 1887 | version "1.0.0" 1888 | resolved "https://registry.yarnpkg.com/is-resolvable/-/is-resolvable-1.0.0.tgz#8df57c61ea2e3c501408d100fb013cf8d6e0cc62" 1889 | dependencies: 1890 | tryit "^1.0.1" 1891 | 1892 | is-typedarray@~1.0.0: 1893 | version "1.0.0" 1894 | resolved "https://registry.yarnpkg.com/is-typedarray/-/is-typedarray-1.0.0.tgz#e479c80858df0c1b11ddda6940f96011fcda4a9a" 1895 | 1896 | is-utf8@^0.2.0: 1897 | version "0.2.1" 1898 | resolved "https://registry.yarnpkg.com/is-utf8/-/is-utf8-0.2.1.tgz#4b0da1442104d1b336340e80797e865cf39f7d72" 1899 | 1900 | isarray@^1.0.0, isarray@~1.0.0, isarray@1.0.0: 1901 | version "1.0.0" 1902 | resolved "https://registry.yarnpkg.com/isarray/-/isarray-1.0.0.tgz#bb935d48582cba168c06834957a54a3e07124f11" 1903 | 1904 | isexe@^1.1.1: 1905 | version "1.1.2" 1906 | resolved "https://registry.yarnpkg.com/isexe/-/isexe-1.1.2.tgz#36f3e22e60750920f5e7241a476a8c6a42275ad0" 1907 | 1908 | isobject@^2.0.0: 1909 | version "2.1.0" 1910 | resolved "https://registry.yarnpkg.com/isobject/-/isobject-2.1.0.tgz#f065561096a3f1da2ef46272f815c840d87e0c89" 1911 | dependencies: 1912 | isarray "1.0.0" 1913 | 1914 | isstream@~0.1.2: 1915 | version "0.1.2" 1916 | resolved "https://registry.yarnpkg.com/isstream/-/isstream-0.1.2.tgz#47e63f7af55afa6f92e1500e690eb8b8529c099a" 1917 | 1918 | istanbul-api@^1.0.0-aplha.10: 1919 | version "1.0.0-aplha.10" 1920 | resolved "https://registry.yarnpkg.com/istanbul-api/-/istanbul-api-1.0.0-aplha.10.tgz#902edf5cf5404e0eba7e00ef46408488a0d3e337" 1921 | dependencies: 1922 | async "1.x" 1923 | clone "^1.0.2" 1924 | fileset "0.2.x" 1925 | istanbul-lib-coverage "^1.0.0-alpha" 1926 | istanbul-lib-hook "^1.0.0-alpha" 1927 | istanbul-lib-instrument "^1.0.0-alpha" 1928 | istanbul-lib-report "^1.0.0-alpha" 1929 | istanbul-lib-source-maps "^1.0.0-alpha" 1930 | istanbul-reports "^1.0.0-alpha" 1931 | js-yaml "3.x" 1932 | mkdirp "0.5.x" 1933 | once "1.x" 1934 | 1935 | istanbul-lib-coverage@^1.0.0, istanbul-lib-coverage@^1.0.0-alpha, istanbul-lib-coverage@^1.0.0-alpha.0: 1936 | version "1.0.0" 1937 | resolved "https://registry.yarnpkg.com/istanbul-lib-coverage/-/istanbul-lib-coverage-1.0.0.tgz#c3f9b6d226da12424064cce87fce0fb57fdfa7a2" 1938 | 1939 | istanbul-lib-hook@^1.0.0-alpha: 1940 | version "1.0.0-alpha.4" 1941 | resolved "https://registry.yarnpkg.com/istanbul-lib-hook/-/istanbul-lib-hook-1.0.0-alpha.4.tgz#8c5bb9f6fbd8526e0ae6cf639af28266906b938f" 1942 | dependencies: 1943 | append-transform "^0.3.0" 1944 | 1945 | istanbul-lib-instrument@^1.0.0-alpha, istanbul-lib-instrument@^1.1.1, istanbul-lib-instrument@^1.1.4: 1946 | version "1.2.0" 1947 | resolved "https://registry.yarnpkg.com/istanbul-lib-instrument/-/istanbul-lib-instrument-1.2.0.tgz#73d5d108ab7568c373fdcb7d01c1d42d565bc8c4" 1948 | dependencies: 1949 | babel-generator "^6.18.0" 1950 | babel-template "^6.16.0" 1951 | babel-traverse "^6.18.0" 1952 | babel-types "^6.18.0" 1953 | babylon "^6.13.0" 1954 | istanbul-lib-coverage "^1.0.0" 1955 | semver "^5.3.0" 1956 | 1957 | istanbul-lib-report@^1.0.0-alpha: 1958 | version "1.0.0-alpha.3" 1959 | resolved "https://registry.yarnpkg.com/istanbul-lib-report/-/istanbul-lib-report-1.0.0-alpha.3.tgz#32d5f6ec7f33ca3a602209e278b2e6ff143498af" 1960 | dependencies: 1961 | async "^1.4.2" 1962 | istanbul-lib-coverage "^1.0.0-alpha" 1963 | mkdirp "^0.5.1" 1964 | path-parse "^1.0.5" 1965 | rimraf "^2.4.3" 1966 | supports-color "^3.1.2" 1967 | 1968 | istanbul-lib-source-maps@^1.0.0-alpha: 1969 | version "1.0.2" 1970 | resolved "https://registry.yarnpkg.com/istanbul-lib-source-maps/-/istanbul-lib-source-maps-1.0.2.tgz#9e91b0e5ae6ed203f67c69a34e6e98b10bb69a49" 1971 | dependencies: 1972 | istanbul-lib-coverage "^1.0.0-alpha.0" 1973 | mkdirp "^0.5.1" 1974 | rimraf "^2.4.4" 1975 | source-map "^0.5.3" 1976 | 1977 | istanbul-reports@^1.0.0-alpha: 1978 | version "1.0.0" 1979 | resolved "https://registry.yarnpkg.com/istanbul-reports/-/istanbul-reports-1.0.0.tgz#24b4eb2b1d29d50f103b369bd422f6e640aa0777" 1980 | dependencies: 1981 | handlebars "^4.0.3" 1982 | 1983 | istanbul@^0.4.5: 1984 | version "0.4.5" 1985 | resolved "https://registry.yarnpkg.com/istanbul/-/istanbul-0.4.5.tgz#65c7d73d4c4da84d4f3ac310b918fb0b8033733b" 1986 | dependencies: 1987 | abbrev "1.0.x" 1988 | async "1.x" 1989 | escodegen "1.8.x" 1990 | esprima "2.7.x" 1991 | glob "^5.0.15" 1992 | handlebars "^4.0.1" 1993 | js-yaml "3.x" 1994 | mkdirp "0.5.x" 1995 | nopt "3.x" 1996 | once "1.x" 1997 | resolve "1.1.x" 1998 | supports-color "^3.1.0" 1999 | which "^1.1.1" 2000 | wordwrap "^1.0.0" 2001 | 2002 | jasmine-check@^0.1.4: 2003 | version "0.1.5" 2004 | resolved "https://registry.yarnpkg.com/jasmine-check/-/jasmine-check-0.1.5.tgz#dbad7eec56261c4b3d175ada55fe59b09ac9e415" 2005 | dependencies: 2006 | testcheck "^0.1.0" 2007 | 2008 | jest-changed-files@^15.0.0: 2009 | version "15.0.0" 2010 | resolved "https://registry.yarnpkg.com/jest-changed-files/-/jest-changed-files-15.0.0.tgz#3ac99d97dc4ac045ad4adae8d967cc1317382571" 2011 | 2012 | jest-cli@^15.1.1: 2013 | version "15.1.1" 2014 | resolved "https://registry.yarnpkg.com/jest-cli/-/jest-cli-15.1.1.tgz#53f271281f90d3b4043eca9ce9af69dd04bbda3e" 2015 | dependencies: 2016 | ansi-escapes "^1.4.0" 2017 | callsites "^2.0.0" 2018 | chalk "^1.1.1" 2019 | graceful-fs "^4.1.6" 2020 | istanbul-api "^1.0.0-aplha.10" 2021 | istanbul-lib-coverage "^1.0.0" 2022 | istanbul-lib-instrument "^1.1.1" 2023 | jest-changed-files "^15.0.0" 2024 | jest-config "^15.1.1" 2025 | jest-environment-jsdom "^15.1.1" 2026 | jest-file-exists "^15.0.0" 2027 | jest-haste-map "^15.0.1" 2028 | jest-jasmine2 "^15.1.1" 2029 | jest-mock "^15.0.0" 2030 | jest-resolve "^15.0.1" 2031 | jest-resolve-dependencies "^15.0.1" 2032 | jest-runtime "^15.1.1" 2033 | jest-snapshot "^15.1.1" 2034 | jest-util "^15.1.1" 2035 | json-stable-stringify "^1.0.0" 2036 | node-notifier "^4.6.1" 2037 | sane "~1.4.1" 2038 | which "^1.1.1" 2039 | worker-farm "^1.3.1" 2040 | yargs "^5.0.0" 2041 | 2042 | jest-config@^15.1.1: 2043 | version "15.1.1" 2044 | resolved "https://registry.yarnpkg.com/jest-config/-/jest-config-15.1.1.tgz#abdbe5b4a49a404d04754d42d7d88b94e58009f7" 2045 | dependencies: 2046 | chalk "^1.1.1" 2047 | istanbul "^0.4.5" 2048 | jest-environment-jsdom "^15.1.1" 2049 | jest-environment-node "^15.1.1" 2050 | jest-jasmine2 "^15.1.1" 2051 | jest-mock "^15.0.0" 2052 | jest-resolve "^15.0.1" 2053 | jest-util "^15.1.1" 2054 | json-stable-stringify "^1.0.0" 2055 | 2056 | jest-diff@^15.1.0: 2057 | version "15.1.0" 2058 | resolved "https://registry.yarnpkg.com/jest-diff/-/jest-diff-15.1.0.tgz#bda40ad77c6beec1e6b8b5e46e3bbaed6e81c9f4" 2059 | dependencies: 2060 | chalk "^1.1.3" 2061 | diff "^3.0.0" 2062 | jest-matcher-utils "^15.1.0" 2063 | pretty-format "^3.7.0" 2064 | 2065 | jest-environment-jsdom@^15.1.1: 2066 | version "15.1.1" 2067 | resolved "https://registry.yarnpkg.com/jest-environment-jsdom/-/jest-environment-jsdom-15.1.1.tgz#f0368c13e8e0b81adad123a051b94294338b97e0" 2068 | dependencies: 2069 | jest-util "^15.1.1" 2070 | jsdom "^9.4.0" 2071 | 2072 | jest-environment-node@^15.1.1: 2073 | version "15.1.1" 2074 | resolved "https://registry.yarnpkg.com/jest-environment-node/-/jest-environment-node-15.1.1.tgz#7a8d4868e027e5d16026468e248dd5946fe43c04" 2075 | dependencies: 2076 | jest-util "^15.1.1" 2077 | 2078 | jest-file-exists@^15.0.0: 2079 | version "15.0.0" 2080 | resolved "https://registry.yarnpkg.com/jest-file-exists/-/jest-file-exists-15.0.0.tgz#b7fefdd3f4b227cb686bb156ecc7661ee6935a88" 2081 | 2082 | jest-haste-map@^15.0.1: 2083 | version "15.0.1" 2084 | resolved "https://registry.yarnpkg.com/jest-haste-map/-/jest-haste-map-15.0.1.tgz#1d1c342fa6f6d62d9bc2af76428d2e20f74a44d3" 2085 | dependencies: 2086 | fb-watchman "^1.9.0" 2087 | graceful-fs "^4.1.6" 2088 | multimatch "^2.1.0" 2089 | worker-farm "^1.3.1" 2090 | 2091 | jest-jasmine2@^15.1.1: 2092 | version "15.1.1" 2093 | resolved "https://registry.yarnpkg.com/jest-jasmine2/-/jest-jasmine2-15.1.1.tgz#cac8b016ab6ce16d95b291875773c2494a1b4672" 2094 | dependencies: 2095 | graceful-fs "^4.1.6" 2096 | jasmine-check "^0.1.4" 2097 | jest-matchers "^15.1.1" 2098 | jest-snapshot "^15.1.1" 2099 | jest-util "^15.1.1" 2100 | 2101 | jest-matcher-utils@^15.1.0: 2102 | version "15.1.0" 2103 | resolved "https://registry.yarnpkg.com/jest-matcher-utils/-/jest-matcher-utils-15.1.0.tgz#2c506ab9f396d286afa74872f2a3afe3ff454986" 2104 | dependencies: 2105 | chalk "^1.1.3" 2106 | 2107 | jest-matchers@^15.1.1: 2108 | version "15.1.1" 2109 | resolved "https://registry.yarnpkg.com/jest-matchers/-/jest-matchers-15.1.1.tgz#faff50acbbf9743323ec2270a24743cb59d638f0" 2110 | dependencies: 2111 | jest-diff "^15.1.0" 2112 | jest-matcher-utils "^15.1.0" 2113 | jest-util "^15.1.1" 2114 | 2115 | jest-mock@^15.0.0: 2116 | version "15.0.0" 2117 | resolved "https://registry.yarnpkg.com/jest-mock/-/jest-mock-15.0.0.tgz#b6639699eb0f021aa3648803432ebd950f75dc02" 2118 | 2119 | jest-resolve-dependencies@^15.0.1: 2120 | version "15.0.1" 2121 | resolved "https://registry.yarnpkg.com/jest-resolve-dependencies/-/jest-resolve-dependencies-15.0.1.tgz#43ebc69b7d81d2cdc70474d4bf634304b06ea411" 2122 | dependencies: 2123 | jest-file-exists "^15.0.0" 2124 | jest-resolve "^15.0.1" 2125 | 2126 | jest-resolve@^15.0.1: 2127 | version "15.0.1" 2128 | resolved "https://registry.yarnpkg.com/jest-resolve/-/jest-resolve-15.0.1.tgz#18a32d5ebfb7883c2eac16830917a37c5102ffa1" 2129 | dependencies: 2130 | browser-resolve "^1.11.2" 2131 | jest-file-exists "^15.0.0" 2132 | jest-haste-map "^15.0.1" 2133 | resolve "^1.1.6" 2134 | 2135 | jest-runtime@^15.1.1: 2136 | version "15.1.1" 2137 | resolved "https://registry.yarnpkg.com/jest-runtime/-/jest-runtime-15.1.1.tgz#3907b8d46e5fe21b4395f3f884031fae22267191" 2138 | dependencies: 2139 | babel-core "^6.11.4" 2140 | babel-jest "^15.0.0" 2141 | babel-plugin-istanbul "^2.0.0" 2142 | chalk "^1.1.3" 2143 | graceful-fs "^4.1.6" 2144 | jest-config "^15.1.1" 2145 | jest-file-exists "^15.0.0" 2146 | jest-haste-map "^15.0.1" 2147 | jest-mock "^15.0.0" 2148 | jest-resolve "^15.0.1" 2149 | jest-snapshot "^15.1.1" 2150 | jest-util "^15.1.1" 2151 | json-stable-stringify "^1.0.0" 2152 | multimatch "^2.1.0" 2153 | yargs "^5.0.0" 2154 | 2155 | jest-snapshot@^15.1.1: 2156 | version "15.1.1" 2157 | resolved "https://registry.yarnpkg.com/jest-snapshot/-/jest-snapshot-15.1.1.tgz#95d0d2729512d64d1a1a42724ca551c1d2079a71" 2158 | dependencies: 2159 | jest-diff "^15.1.0" 2160 | jest-file-exists "^15.0.0" 2161 | jest-util "^15.1.1" 2162 | pretty-format "^3.7.0" 2163 | 2164 | jest-util@^15.1.1: 2165 | version "15.1.1" 2166 | resolved "https://registry.yarnpkg.com/jest-util/-/jest-util-15.1.1.tgz#5e19edab2c573f992c9d45ba118fa8d90f9d220e" 2167 | dependencies: 2168 | chalk "^1.1.1" 2169 | diff "^3.0.0" 2170 | graceful-fs "^4.1.6" 2171 | jest-file-exists "^15.0.0" 2172 | jest-mock "^15.0.0" 2173 | mkdirp "^0.5.1" 2174 | 2175 | jest@^15.1.1: 2176 | version "15.1.1" 2177 | resolved "https://registry.yarnpkg.com/jest/-/jest-15.1.1.tgz#d02972b3ba27067b7713e44219b4731aa48540a6" 2178 | dependencies: 2179 | jest-cli "^15.1.1" 2180 | 2181 | jodid25519@^1.0.0: 2182 | version "1.0.2" 2183 | resolved "https://registry.yarnpkg.com/jodid25519/-/jodid25519-1.0.2.tgz#06d4912255093419477d425633606e0e90782967" 2184 | dependencies: 2185 | jsbn "~0.1.0" 2186 | 2187 | js-tokens@^2.0.0: 2188 | version "2.0.0" 2189 | resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-2.0.0.tgz#79903f5563ee778cc1162e6dcf1a0027c97f9cb5" 2190 | 2191 | js-yaml@^3.5.1, js-yaml@3.x: 2192 | version "3.6.1" 2193 | resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-3.6.1.tgz#6e5fe67d8b205ce4d22fad05b7781e8dadcc4b30" 2194 | dependencies: 2195 | argparse "^1.0.7" 2196 | esprima "^2.6.0" 2197 | 2198 | jsbn@~0.1.0: 2199 | version "0.1.0" 2200 | resolved "https://registry.yarnpkg.com/jsbn/-/jsbn-0.1.0.tgz#650987da0dd74f4ebf5a11377a2aa2d273e97dfd" 2201 | 2202 | jsdom@^9.4.0: 2203 | version "9.8.3" 2204 | resolved "https://registry.yarnpkg.com/jsdom/-/jsdom-9.8.3.tgz#fde29c109c32a1131e0b6c65914e64198f97c370" 2205 | dependencies: 2206 | abab "^1.0.0" 2207 | acorn "^2.4.0" 2208 | acorn-globals "^1.0.4" 2209 | array-equal "^1.0.0" 2210 | content-type-parser "^1.0.1" 2211 | cssom ">= 0.3.0 < 0.4.0" 2212 | cssstyle ">= 0.2.36 < 0.3.0" 2213 | escodegen "^1.6.1" 2214 | html-encoding-sniffer "^1.0.1" 2215 | iconv-lite "^0.4.13" 2216 | nwmatcher ">= 1.3.7 < 2.0.0" 2217 | parse5 "^1.5.1" 2218 | request "^2.55.0" 2219 | sax "^1.1.4" 2220 | symbol-tree ">= 3.1.0 < 4.0.0" 2221 | tough-cookie "^2.3.1" 2222 | webidl-conversions "^3.0.1" 2223 | whatwg-encoding "^1.0.1" 2224 | whatwg-url "^3.0.0" 2225 | xml-name-validator ">= 2.0.1 < 3.0.0" 2226 | 2227 | jsesc@^1.3.0: 2228 | version "1.3.0" 2229 | resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-1.3.0.tgz#46c3fec8c1892b12b0833db9bc7622176dbab34b" 2230 | 2231 | jsesc@~0.5.0: 2232 | version "0.5.0" 2233 | resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-0.5.0.tgz#e7dee66e35d6fc16f710fe91d5cf69f70f08911d" 2234 | 2235 | json-schema@0.2.3: 2236 | version "0.2.3" 2237 | resolved "https://registry.yarnpkg.com/json-schema/-/json-schema-0.2.3.tgz#b480c892e59a2f05954ce727bd3f2a4e882f9e13" 2238 | 2239 | json-stable-stringify@^1.0.0, json-stable-stringify@^1.0.1: 2240 | version "1.0.1" 2241 | resolved "https://registry.yarnpkg.com/json-stable-stringify/-/json-stable-stringify-1.0.1.tgz#9a759d39c5f2ff503fd5300646ed445f88c4f9af" 2242 | dependencies: 2243 | jsonify "~0.0.0" 2244 | 2245 | json-stringify-safe@^5.0.1, json-stringify-safe@~5.0.1: 2246 | version "5.0.1" 2247 | resolved "https://registry.yarnpkg.com/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz#1296a2d58fd45f19a0f6ce01d65701e2c735b6eb" 2248 | 2249 | json5@^0.5.0: 2250 | version "0.5.0" 2251 | resolved "https://registry.yarnpkg.com/json5/-/json5-0.5.0.tgz#9b20715b026cbe3778fd769edccd822d8332a5b2" 2252 | 2253 | jsonify@~0.0.0: 2254 | version "0.0.0" 2255 | resolved "https://registry.yarnpkg.com/jsonify/-/jsonify-0.0.0.tgz#2c74b6ee41d93ca51b7b5aaee8f503631d252a73" 2256 | 2257 | jsonpointer@^4.0.0: 2258 | version "4.0.0" 2259 | resolved "https://registry.yarnpkg.com/jsonpointer/-/jsonpointer-4.0.0.tgz#6661e161d2fc445f19f98430231343722e1fcbd5" 2260 | 2261 | jsprim@^1.2.2: 2262 | version "1.3.1" 2263 | resolved "https://registry.yarnpkg.com/jsprim/-/jsprim-1.3.1.tgz#2a7256f70412a29ee3670aaca625994c4dcff252" 2264 | dependencies: 2265 | extsprintf "1.0.2" 2266 | json-schema "0.2.3" 2267 | verror "1.3.6" 2268 | 2269 | kind-of@^3.0.2: 2270 | version "3.0.4" 2271 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-3.0.4.tgz#7b8ecf18a4e17f8269d73b501c9f232c96887a74" 2272 | dependencies: 2273 | is-buffer "^1.0.2" 2274 | 2275 | lazy-cache@^1.0.3: 2276 | version "1.0.4" 2277 | resolved "https://registry.yarnpkg.com/lazy-cache/-/lazy-cache-1.0.4.tgz#a1d78fc3a50474cb80845d3b3b6e1da49a446e8e" 2278 | 2279 | lcid@^1.0.0: 2280 | version "1.0.0" 2281 | resolved "https://registry.yarnpkg.com/lcid/-/lcid-1.0.0.tgz#308accafa0bc483a3867b4b6f2b9506251d1b835" 2282 | dependencies: 2283 | invert-kv "^1.0.0" 2284 | 2285 | levn@^0.3.0, levn@~0.3.0: 2286 | version "0.3.0" 2287 | resolved "https://registry.yarnpkg.com/levn/-/levn-0.3.0.tgz#3b09924edf9f083c0490fdd4c0bc4421e04764ee" 2288 | dependencies: 2289 | prelude-ls "~1.1.2" 2290 | type-check "~0.3.2" 2291 | 2292 | load-json-file@^1.0.0: 2293 | version "1.1.0" 2294 | resolved "https://registry.yarnpkg.com/load-json-file/-/load-json-file-1.1.0.tgz#956905708d58b4bab4c2261b04f59f31c99374c0" 2295 | dependencies: 2296 | graceful-fs "^4.1.2" 2297 | parse-json "^2.2.0" 2298 | pify "^2.0.0" 2299 | pinkie-promise "^2.0.0" 2300 | strip-bom "^2.0.0" 2301 | 2302 | lodash-es@^4.2.1: 2303 | version "4.16.6" 2304 | resolved "https://registry.yarnpkg.com/lodash-es/-/lodash-es-4.16.6.tgz#c8552faedaa4d1d591de8da9b3980ef1c52efa08" 2305 | 2306 | lodash._arraycopy@^3.0.0: 2307 | version "3.0.0" 2308 | resolved "https://registry.yarnpkg.com/lodash._arraycopy/-/lodash._arraycopy-3.0.0.tgz#76e7b7c1f1fb92547374878a562ed06a3e50f6e1" 2309 | 2310 | lodash._arrayeach@^3.0.0: 2311 | version "3.0.0" 2312 | resolved "https://registry.yarnpkg.com/lodash._arrayeach/-/lodash._arrayeach-3.0.0.tgz#bab156b2a90d3f1bbd5c653403349e5e5933ef9e" 2313 | 2314 | lodash._baseassign@^3.0.0: 2315 | version "3.2.0" 2316 | resolved "https://registry.yarnpkg.com/lodash._baseassign/-/lodash._baseassign-3.2.0.tgz#8c38a099500f215ad09e59f1722fd0c52bfe0a4e" 2317 | dependencies: 2318 | lodash._basecopy "^3.0.0" 2319 | lodash.keys "^3.0.0" 2320 | 2321 | lodash._baseclone@^3.0.0: 2322 | version "3.3.0" 2323 | resolved "https://registry.yarnpkg.com/lodash._baseclone/-/lodash._baseclone-3.3.0.tgz#303519bf6393fe7e42f34d8b630ef7794e3542b7" 2324 | dependencies: 2325 | lodash._arraycopy "^3.0.0" 2326 | lodash._arrayeach "^3.0.0" 2327 | lodash._baseassign "^3.0.0" 2328 | lodash._basefor "^3.0.0" 2329 | lodash.isarray "^3.0.0" 2330 | lodash.keys "^3.0.0" 2331 | 2332 | lodash._basecopy@^3.0.0: 2333 | version "3.0.1" 2334 | resolved "https://registry.yarnpkg.com/lodash._basecopy/-/lodash._basecopy-3.0.1.tgz#8da0e6a876cf344c0ad8a54882111dd3c5c7ca36" 2335 | 2336 | lodash._basefor@^3.0.0: 2337 | version "3.0.3" 2338 | resolved "https://registry.yarnpkg.com/lodash._basefor/-/lodash._basefor-3.0.3.tgz#7550b4e9218ef09fad24343b612021c79b4c20c2" 2339 | 2340 | lodash._bindcallback@^3.0.0: 2341 | version "3.0.1" 2342 | resolved "https://registry.yarnpkg.com/lodash._bindcallback/-/lodash._bindcallback-3.0.1.tgz#e531c27644cf8b57a99e17ed95b35c748789392e" 2343 | 2344 | lodash._getnative@^3.0.0: 2345 | version "3.9.1" 2346 | resolved "https://registry.yarnpkg.com/lodash._getnative/-/lodash._getnative-3.9.1.tgz#570bc7dede46d61cdcde687d65d3eecbaa3aaff5" 2347 | 2348 | lodash.assign@^4.1.0, lodash.assign@^4.2.0: 2349 | version "4.2.0" 2350 | resolved "https://registry.yarnpkg.com/lodash.assign/-/lodash.assign-4.2.0.tgz#0d99f3ccd7a6d261d19bdaeb9245005d285808e7" 2351 | 2352 | lodash.clonedeep@^3.0.0: 2353 | version "3.0.2" 2354 | resolved "https://registry.yarnpkg.com/lodash.clonedeep/-/lodash.clonedeep-3.0.2.tgz#a0a1e40d82a5ea89ff5b147b8444ed63d92827db" 2355 | dependencies: 2356 | lodash._baseclone "^3.0.0" 2357 | lodash._bindcallback "^3.0.0" 2358 | 2359 | lodash.cond@^4.3.0: 2360 | version "4.5.2" 2361 | resolved "https://registry.yarnpkg.com/lodash.cond/-/lodash.cond-4.5.2.tgz#f471a1da486be60f6ab955d17115523dd1d255d5" 2362 | 2363 | lodash.isarguments@^3.0.0: 2364 | version "3.1.0" 2365 | resolved "https://registry.yarnpkg.com/lodash.isarguments/-/lodash.isarguments-3.1.0.tgz#2f573d85c6a24289ff00663b491c1d338ff3458a" 2366 | 2367 | lodash.isarray@^3.0.0: 2368 | version "3.0.4" 2369 | resolved "https://registry.yarnpkg.com/lodash.isarray/-/lodash.isarray-3.0.4.tgz#79e4eb88c36a8122af86f844aa9bcd851b5fbb55" 2370 | 2371 | lodash.keys@^3.0.0: 2372 | version "3.1.2" 2373 | resolved "https://registry.yarnpkg.com/lodash.keys/-/lodash.keys-3.1.2.tgz#4dbc0472b156be50a0b286855d1bd0b0c656098a" 2374 | dependencies: 2375 | lodash._getnative "^3.0.0" 2376 | lodash.isarguments "^3.0.0" 2377 | lodash.isarray "^3.0.0" 2378 | 2379 | lodash@^4.0.0, lodash@^4.2.0, lodash@^4.2.1, lodash@^4.3.0: 2380 | version "4.16.6" 2381 | resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.16.6.tgz#d22c9ac660288f3843e16ba7d2b5d06cca27d777" 2382 | 2383 | lodash@~4.9.0: 2384 | version "4.9.0" 2385 | resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.9.0.tgz#4c20d742f03ce85dc700e0dd7ab9bcab85e6fc14" 2386 | 2387 | longest@^1.0.1: 2388 | version "1.0.1" 2389 | resolved "https://registry.yarnpkg.com/longest/-/longest-1.0.1.tgz#30a0b2da38f73770e8294a0d22e6625ed77d0097" 2390 | 2391 | loose-envify@^1.0.0, loose-envify@^1.1.0: 2392 | version "1.3.0" 2393 | resolved "https://registry.yarnpkg.com/loose-envify/-/loose-envify-1.3.0.tgz#6b26248c42f6d4fa4b0d8542f78edfcde35642a8" 2394 | dependencies: 2395 | js-tokens "^2.0.0" 2396 | 2397 | makeerror@1.0.x: 2398 | version "1.0.11" 2399 | resolved "https://registry.yarnpkg.com/makeerror/-/makeerror-1.0.11.tgz#e01a5c9109f2af79660e4e8b9587790184f5a96c" 2400 | dependencies: 2401 | tmpl "1.0.x" 2402 | 2403 | marked-terminal@^1.6.2: 2404 | version "1.7.0" 2405 | resolved "https://registry.yarnpkg.com/marked-terminal/-/marked-terminal-1.7.0.tgz#c8c460881c772c7604b64367007ee5f77f125904" 2406 | dependencies: 2407 | cardinal "^1.0.0" 2408 | chalk "^1.1.3" 2409 | cli-table "^0.3.1" 2410 | lodash.assign "^4.2.0" 2411 | node-emoji "^1.4.1" 2412 | 2413 | marked@^0.3.6: 2414 | version "0.3.6" 2415 | resolved "https://registry.yarnpkg.com/marked/-/marked-0.3.6.tgz#b2c6c618fccece4ef86c4fc6cb8a7cbf5aeda8d7" 2416 | 2417 | media-typer@0.3.0: 2418 | version "0.3.0" 2419 | resolved "https://registry.yarnpkg.com/media-typer/-/media-typer-0.3.0.tgz#8710d7af0aa626f8fffa1ce00168545263255748" 2420 | 2421 | merge-descriptors@1.0.1: 2422 | version "1.0.1" 2423 | resolved "https://registry.yarnpkg.com/merge-descriptors/-/merge-descriptors-1.0.1.tgz#b00aaa556dd8b44568150ec9d1b953f3f90cbb61" 2424 | 2425 | merge@^1.1.3: 2426 | version "1.2.0" 2427 | resolved "https://registry.yarnpkg.com/merge/-/merge-1.2.0.tgz#7531e39d4949c281a66b8c5a6e0265e8b05894da" 2428 | 2429 | methods@~1.1.2: 2430 | version "1.1.2" 2431 | resolved "https://registry.yarnpkg.com/methods/-/methods-1.1.2.tgz#5529a4d67654134edcc5266656835b0f851afcee" 2432 | 2433 | micromatch@^2.1.5, micromatch@^2.3.11: 2434 | version "2.3.11" 2435 | resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-2.3.11.tgz#86677c97d1720b363431d04d0d15293bd38c1565" 2436 | dependencies: 2437 | arr-diff "^2.0.0" 2438 | array-unique "^0.2.1" 2439 | braces "^1.8.2" 2440 | expand-brackets "^0.1.4" 2441 | extglob "^0.3.1" 2442 | filename-regex "^2.0.0" 2443 | is-extglob "^1.0.0" 2444 | is-glob "^2.0.1" 2445 | kind-of "^3.0.2" 2446 | normalize-path "^2.0.1" 2447 | object.omit "^2.0.0" 2448 | parse-glob "^3.0.4" 2449 | regex-cache "^0.4.2" 2450 | 2451 | mime-db@~1.24.0: 2452 | version "1.24.0" 2453 | resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.24.0.tgz#e2d13f939f0016c6e4e9ad25a8652f126c467f0c" 2454 | 2455 | mime-types@^2.1.12, mime-types@~2.1.11, mime-types@~2.1.7: 2456 | version "2.1.12" 2457 | resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.12.tgz#152ba256777020dd4663f54c2e7bc26381e71729" 2458 | dependencies: 2459 | mime-db "~1.24.0" 2460 | 2461 | mime@1.3.4: 2462 | version "1.3.4" 2463 | resolved "https://registry.yarnpkg.com/mime/-/mime-1.3.4.tgz#115f9e3b6b3daf2959983cb38f149a2d40eb5d53" 2464 | 2465 | minimatch@^3.0.0, minimatch@^3.0.2, minimatch@^3.0.3, "minimatch@2 || 3": 2466 | version "3.0.3" 2467 | resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.0.3.tgz#2a4e4090b96b2db06a9d7df01055a62a77c9b774" 2468 | dependencies: 2469 | brace-expansion "^1.0.0" 2470 | 2471 | minimatch@2.x: 2472 | version "2.0.10" 2473 | resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-2.0.10.tgz#8d087c39c6b38c001b97fca7ce6d0e1e80afbac7" 2474 | dependencies: 2475 | brace-expansion "^1.0.0" 2476 | 2477 | minimist@^1.1.1, minimist@^1.2.0: 2478 | version "1.2.0" 2479 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.0.tgz#a35008b20f41383eec1fb914f4cd5df79a264284" 2480 | 2481 | minimist@~0.0.1: 2482 | version "0.0.10" 2483 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-0.0.10.tgz#de3f98543dbf96082be48ad1a0c7cda836301dcf" 2484 | 2485 | minimist@0.0.8: 2486 | version "0.0.8" 2487 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-0.0.8.tgz#857fcabfc3397d2625b8228262e86aa7a011b05d" 2488 | 2489 | mkdirp@^0.5.0, mkdirp@^0.5.1, "mkdirp@>=0.5 0", mkdirp@~0.5.1, mkdirp@0.5.x: 2490 | version "0.5.1" 2491 | resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.5.1.tgz#30057438eac6cf7f8c4767f38648d6697d75c903" 2492 | dependencies: 2493 | minimist "0.0.8" 2494 | 2495 | ms@0.7.1: 2496 | version "0.7.1" 2497 | resolved "https://registry.yarnpkg.com/ms/-/ms-0.7.1.tgz#9cd13c03adbff25b65effde7ce864ee952017098" 2498 | 2499 | multimatch@^2.1.0: 2500 | version "2.1.0" 2501 | resolved "https://registry.yarnpkg.com/multimatch/-/multimatch-2.1.0.tgz#9c7906a22fb4c02919e2f5f75161b4cdbd4b2a2b" 2502 | dependencies: 2503 | array-differ "^1.0.0" 2504 | array-union "^1.0.1" 2505 | arrify "^1.0.0" 2506 | minimatch "^3.0.0" 2507 | 2508 | mute-stream@0.0.5: 2509 | version "0.0.5" 2510 | resolved "https://registry.yarnpkg.com/mute-stream/-/mute-stream-0.0.5.tgz#8fbfabb0a98a253d3184331f9e8deb7372fac6c0" 2511 | 2512 | nan@^2.3.0: 2513 | version "2.4.0" 2514 | resolved "https://registry.yarnpkg.com/nan/-/nan-2.4.0.tgz#fb3c59d45fe4effe215f0b890f8adf6eb32d2232" 2515 | 2516 | natural-compare@^1.4.0: 2517 | version "1.4.0" 2518 | resolved "https://registry.yarnpkg.com/natural-compare/-/natural-compare-1.4.0.tgz#4abebfeed7541f2c27acfb29bdbbd15c8d5ba4f7" 2519 | 2520 | negotiator@0.6.1: 2521 | version "0.6.1" 2522 | resolved "https://registry.yarnpkg.com/negotiator/-/negotiator-0.6.1.tgz#2b327184e8992101177b28563fb5e7102acd0ca9" 2523 | 2524 | nock@^8.0.0: 2525 | version "8.2.1" 2526 | resolved "https://registry.yarnpkg.com/nock/-/nock-8.2.1.tgz#64cc65e1bdd3893f58cba7e1abfdc38f40f0364a" 2527 | dependencies: 2528 | chai ">=1.9.2 <4.0.0" 2529 | debug "^2.2.0" 2530 | deep-equal "^1.0.0" 2531 | json-stringify-safe "^5.0.1" 2532 | lodash "~4.9.0" 2533 | mkdirp "^0.5.0" 2534 | propagate "0.4.0" 2535 | qs "^6.0.2" 2536 | 2537 | node-emoji@^1.4.1: 2538 | version "1.4.1" 2539 | resolved "https://registry.yarnpkg.com/node-emoji/-/node-emoji-1.4.1.tgz#c9fa0cf91094335bcb967a6f42b2305c15af2ebc" 2540 | dependencies: 2541 | string.prototype.codepointat "^0.2.0" 2542 | 2543 | node-int64@^0.4.0: 2544 | version "0.4.0" 2545 | resolved "https://registry.yarnpkg.com/node-int64/-/node-int64-0.4.0.tgz#87a9065cdb355d3182d8f94ce11188b825c68a3b" 2546 | 2547 | node-notifier@^4.6.1: 2548 | version "4.6.1" 2549 | resolved "https://registry.yarnpkg.com/node-notifier/-/node-notifier-4.6.1.tgz#056d14244f3dcc1ceadfe68af9cff0c5473a33f3" 2550 | dependencies: 2551 | cli-usage "^0.1.1" 2552 | growly "^1.2.0" 2553 | lodash.clonedeep "^3.0.0" 2554 | minimist "^1.1.1" 2555 | semver "^5.1.0" 2556 | shellwords "^0.1.0" 2557 | which "^1.0.5" 2558 | 2559 | node-pre-gyp@^0.6.29: 2560 | version "0.6.31" 2561 | resolved "https://registry.yarnpkg.com/node-pre-gyp/-/node-pre-gyp-0.6.31.tgz#d8a00ddaa301a940615dbcc8caad4024d58f6017" 2562 | dependencies: 2563 | mkdirp "~0.5.1" 2564 | nopt "~3.0.6" 2565 | npmlog "^4.0.0" 2566 | rc "~1.1.6" 2567 | request "^2.75.0" 2568 | rimraf "~2.5.4" 2569 | semver "~5.3.0" 2570 | tar "~2.2.1" 2571 | tar-pack "~3.3.0" 2572 | 2573 | node-uuid@~1.4.7: 2574 | version "1.4.7" 2575 | resolved "https://registry.yarnpkg.com/node-uuid/-/node-uuid-1.4.7.tgz#6da5a17668c4b3dd59623bda11cf7fa4c1f60a6f" 2576 | 2577 | nopt@~3.0.6, nopt@3.x: 2578 | version "3.0.6" 2579 | resolved "https://registry.yarnpkg.com/nopt/-/nopt-3.0.6.tgz#c6465dbf08abcd4db359317f79ac68a646b28ff9" 2580 | dependencies: 2581 | abbrev "1" 2582 | 2583 | normalize-package-data@^2.3.2: 2584 | version "2.3.5" 2585 | resolved "https://registry.yarnpkg.com/normalize-package-data/-/normalize-package-data-2.3.5.tgz#8d924f142960e1777e7ffe170543631cc7cb02df" 2586 | dependencies: 2587 | hosted-git-info "^2.1.4" 2588 | is-builtin-module "^1.0.0" 2589 | semver "2 || 3 || 4 || 5" 2590 | validate-npm-package-license "^3.0.1" 2591 | 2592 | normalize-path@^2.0.1: 2593 | version "2.0.1" 2594 | resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-2.0.1.tgz#47886ac1662760d4261b7d979d241709d3ce3f7a" 2595 | 2596 | npmlog@^4.0.0: 2597 | version "4.0.0" 2598 | resolved "https://registry.yarnpkg.com/npmlog/-/npmlog-4.0.0.tgz#e094503961c70c1774eb76692080e8d578a9f88f" 2599 | dependencies: 2600 | are-we-there-yet "~1.1.2" 2601 | console-control-strings "~1.1.0" 2602 | gauge "~2.6.0" 2603 | set-blocking "~2.0.0" 2604 | 2605 | number-is-nan@^1.0.0: 2606 | version "1.0.1" 2607 | resolved "https://registry.yarnpkg.com/number-is-nan/-/number-is-nan-1.0.1.tgz#097b602b53422a522c1afb8790318336941a011d" 2608 | 2609 | "nwmatcher@>= 1.3.7 < 2.0.0": 2610 | version "1.3.9" 2611 | resolved "https://registry.yarnpkg.com/nwmatcher/-/nwmatcher-1.3.9.tgz#8bab486ff7fa3dfd086656bbe8b17116d3692d2a" 2612 | 2613 | oauth-sign@~0.8.1: 2614 | version "0.8.2" 2615 | resolved "https://registry.yarnpkg.com/oauth-sign/-/oauth-sign-0.8.2.tgz#46a6ab7f0aead8deae9ec0565780b7d4efeb9d43" 2616 | 2617 | object-assign@^4.0.1, object-assign@^4.1.0: 2618 | version "4.1.0" 2619 | resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.0.tgz#7a3b3d0e98063d43f4c03f2e8ae6cd51a86883a0" 2620 | 2621 | object.omit@^2.0.0: 2622 | version "2.0.1" 2623 | resolved "https://registry.yarnpkg.com/object.omit/-/object.omit-2.0.1.tgz#1a9c744829f39dbb858c76ca3579ae2a54ebd1fa" 2624 | dependencies: 2625 | for-own "^0.1.4" 2626 | is-extendable "^0.1.1" 2627 | 2628 | on-finished@~2.3.0: 2629 | version "2.3.0" 2630 | resolved "https://registry.yarnpkg.com/on-finished/-/on-finished-2.3.0.tgz#20f1336481b083cd75337992a16971aa2d906947" 2631 | dependencies: 2632 | ee-first "1.1.1" 2633 | 2634 | once@^1.3.0, once@1.x: 2635 | version "1.4.0" 2636 | resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1" 2637 | dependencies: 2638 | wrappy "1" 2639 | 2640 | once@~1.3.3: 2641 | version "1.3.3" 2642 | resolved "https://registry.yarnpkg.com/once/-/once-1.3.3.tgz#b2e261557ce4c314ec8304f3fa82663e4297ca20" 2643 | dependencies: 2644 | wrappy "1" 2645 | 2646 | onetime@^1.0.0: 2647 | version "1.1.0" 2648 | resolved "https://registry.yarnpkg.com/onetime/-/onetime-1.1.0.tgz#a1f7838f8314c516f05ecefcbc4ccfe04b4ed789" 2649 | 2650 | optimist@^0.6.1: 2651 | version "0.6.1" 2652 | resolved "https://registry.yarnpkg.com/optimist/-/optimist-0.6.1.tgz#da3ea74686fa21a19a111c326e90eb15a0196686" 2653 | dependencies: 2654 | minimist "~0.0.1" 2655 | wordwrap "~0.0.2" 2656 | 2657 | optionator@^0.8.1, optionator@^0.8.2: 2658 | version "0.8.2" 2659 | resolved "https://registry.yarnpkg.com/optionator/-/optionator-0.8.2.tgz#364c5e409d3f4d6301d6c0b4c05bba50180aeb64" 2660 | dependencies: 2661 | deep-is "~0.1.3" 2662 | fast-levenshtein "~2.0.4" 2663 | levn "~0.3.0" 2664 | prelude-ls "~1.1.2" 2665 | type-check "~0.3.2" 2666 | wordwrap "~1.0.0" 2667 | 2668 | os-homedir@^1.0.0: 2669 | version "1.0.2" 2670 | resolved "https://registry.yarnpkg.com/os-homedir/-/os-homedir-1.0.2.tgz#ffbc4988336e0e833de0c168c7ef152121aa7fb3" 2671 | 2672 | os-locale@^1.4.0: 2673 | version "1.4.0" 2674 | resolved "https://registry.yarnpkg.com/os-locale/-/os-locale-1.4.0.tgz#20f9f17ae29ed345e8bde583b13d2009803c14d9" 2675 | dependencies: 2676 | lcid "^1.0.0" 2677 | 2678 | os-tmpdir@^1.0.1: 2679 | version "1.0.2" 2680 | resolved "https://registry.yarnpkg.com/os-tmpdir/-/os-tmpdir-1.0.2.tgz#bbe67406c79aa85c5cfec766fe5734555dfa1274" 2681 | 2682 | output-file-sync@^1.1.0: 2683 | version "1.1.2" 2684 | resolved "https://registry.yarnpkg.com/output-file-sync/-/output-file-sync-1.1.2.tgz#d0a33eefe61a205facb90092e826598d5245ce76" 2685 | dependencies: 2686 | graceful-fs "^4.1.4" 2687 | mkdirp "^0.5.1" 2688 | object-assign "^4.1.0" 2689 | 2690 | parse-glob@^3.0.4: 2691 | version "3.0.4" 2692 | resolved "https://registry.yarnpkg.com/parse-glob/-/parse-glob-3.0.4.tgz#b2c376cfb11f35513badd173ef0bb6e3a388391c" 2693 | dependencies: 2694 | glob-base "^0.3.0" 2695 | is-dotfile "^1.0.0" 2696 | is-extglob "^1.0.0" 2697 | is-glob "^2.0.0" 2698 | 2699 | parse-json@^2.2.0: 2700 | version "2.2.0" 2701 | resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-2.2.0.tgz#f480f40434ef80741f8469099f8dea18f55a4dc9" 2702 | dependencies: 2703 | error-ex "^1.2.0" 2704 | 2705 | parse5@^1.5.1: 2706 | version "1.5.1" 2707 | resolved "https://registry.yarnpkg.com/parse5/-/parse5-1.5.1.tgz#9b7f3b0de32be78dc2401b17573ccaf0f6f59d94" 2708 | 2709 | parseurl@~1.3.1: 2710 | version "1.3.1" 2711 | resolved "https://registry.yarnpkg.com/parseurl/-/parseurl-1.3.1.tgz#c8ab8c9223ba34888aa64a297b28853bec18da56" 2712 | 2713 | path-exists@^2.0.0: 2714 | version "2.1.0" 2715 | resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-2.1.0.tgz#0feb6c64f0fc518d9a754dd5efb62c7022761f4b" 2716 | dependencies: 2717 | pinkie-promise "^2.0.0" 2718 | 2719 | path-is-absolute@^1.0.0: 2720 | version "1.0.1" 2721 | resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f" 2722 | 2723 | path-is-inside@^1.0.1: 2724 | version "1.0.2" 2725 | resolved "https://registry.yarnpkg.com/path-is-inside/-/path-is-inside-1.0.2.tgz#365417dede44430d1c11af61027facf074bdfc53" 2726 | 2727 | path-parse@^1.0.5: 2728 | version "1.0.5" 2729 | resolved "https://registry.yarnpkg.com/path-parse/-/path-parse-1.0.5.tgz#3c1adf871ea9cd6c9431b6ea2bd74a0ff055c4c1" 2730 | 2731 | path-to-regexp@0.1.7: 2732 | version "0.1.7" 2733 | resolved "https://registry.yarnpkg.com/path-to-regexp/-/path-to-regexp-0.1.7.tgz#df604178005f522f15eb4490e7247a1bfaa67f8c" 2734 | 2735 | path-type@^1.0.0: 2736 | version "1.1.0" 2737 | resolved "https://registry.yarnpkg.com/path-type/-/path-type-1.1.0.tgz#59c44f7ee491da704da415da5a4070ba4f8fe441" 2738 | dependencies: 2739 | graceful-fs "^4.1.2" 2740 | pify "^2.0.0" 2741 | pinkie-promise "^2.0.0" 2742 | 2743 | pify@^2.0.0: 2744 | version "2.3.0" 2745 | resolved "https://registry.yarnpkg.com/pify/-/pify-2.3.0.tgz#ed141a6ac043a849ea588498e7dca8b15330e90c" 2746 | 2747 | pinkie-promise@^2.0.0: 2748 | version "2.0.1" 2749 | resolved "https://registry.yarnpkg.com/pinkie-promise/-/pinkie-promise-2.0.1.tgz#2135d6dfa7a358c069ac9b178776288228450ffa" 2750 | dependencies: 2751 | pinkie "^2.0.0" 2752 | 2753 | pinkie@^2.0.0: 2754 | version "2.0.4" 2755 | resolved "https://registry.yarnpkg.com/pinkie/-/pinkie-2.0.4.tgz#72556b80cfa0d48a974e80e77248e80ed4f7f870" 2756 | 2757 | pkg-dir@^1.0.0: 2758 | version "1.0.0" 2759 | resolved "https://registry.yarnpkg.com/pkg-dir/-/pkg-dir-1.0.0.tgz#7a4b508a8d5bb2d629d447056ff4e9c9314cf3d4" 2760 | dependencies: 2761 | find-up "^1.0.0" 2762 | 2763 | pkg-up@^1.0.0: 2764 | version "1.0.0" 2765 | resolved "https://registry.yarnpkg.com/pkg-up/-/pkg-up-1.0.0.tgz#3e08fb461525c4421624a33b9f7e6d0af5b05a26" 2766 | dependencies: 2767 | find-up "^1.0.0" 2768 | 2769 | pluralize@^1.2.1: 2770 | version "1.2.1" 2771 | resolved "https://registry.yarnpkg.com/pluralize/-/pluralize-1.2.1.tgz#d1a21483fd22bb41e58a12fa3421823140897c45" 2772 | 2773 | prelude-ls@~1.1.2: 2774 | version "1.1.2" 2775 | resolved "https://registry.yarnpkg.com/prelude-ls/-/prelude-ls-1.1.2.tgz#21932a549f5e52ffd9a827f570e04be62a97da54" 2776 | 2777 | preserve@^0.2.0: 2778 | version "0.2.0" 2779 | resolved "https://registry.yarnpkg.com/preserve/-/preserve-0.2.0.tgz#815ed1f6ebc65926f865b310c0713bcb3315ce4b" 2780 | 2781 | pretty-format@^3.7.0: 2782 | version "3.8.0" 2783 | resolved "https://registry.yarnpkg.com/pretty-format/-/pretty-format-3.8.0.tgz#bfbed56d5e9a776645f4b1ff7aa1a3ac4fa3c385" 2784 | 2785 | private@^0.1.6, private@~0.1.5: 2786 | version "0.1.6" 2787 | resolved "https://registry.yarnpkg.com/private/-/private-0.1.6.tgz#55c6a976d0f9bafb9924851350fe47b9b5fbb7c1" 2788 | 2789 | process-nextick-args@~1.0.6: 2790 | version "1.0.7" 2791 | resolved "https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-1.0.7.tgz#150e20b756590ad3f91093f25a4f2ad8bff30ba3" 2792 | 2793 | progress@^1.1.8: 2794 | version "1.1.8" 2795 | resolved "https://registry.yarnpkg.com/progress/-/progress-1.1.8.tgz#e260c78f6161cdd9b0e56cc3e0a85de17c7a57be" 2796 | 2797 | propagate@0.4.0: 2798 | version "0.4.0" 2799 | resolved "https://registry.yarnpkg.com/propagate/-/propagate-0.4.0.tgz#f3fcca0a6fe06736a7ba572966069617c130b481" 2800 | 2801 | proxy-addr@~1.1.2: 2802 | version "1.1.2" 2803 | resolved "https://registry.yarnpkg.com/proxy-addr/-/proxy-addr-1.1.2.tgz#b4cc5f22610d9535824c123aef9d3cf73c40ba37" 2804 | dependencies: 2805 | forwarded "~0.1.0" 2806 | ipaddr.js "1.1.1" 2807 | 2808 | prr@~0.0.0: 2809 | version "0.0.0" 2810 | resolved "https://registry.yarnpkg.com/prr/-/prr-0.0.0.tgz#1a84b85908325501411853d0081ee3fa86e2926a" 2811 | 2812 | punycode@^1.4.1: 2813 | version "1.4.1" 2814 | resolved "https://registry.yarnpkg.com/punycode/-/punycode-1.4.1.tgz#c0d5a63b2718800ad8e1eb0fa5269c84dd41845e" 2815 | 2816 | qs@^6.0.2, qs@~6.3.0: 2817 | version "6.3.0" 2818 | resolved "https://registry.yarnpkg.com/qs/-/qs-6.3.0.tgz#f403b264f23bc01228c74131b407f18d5ea5d442" 2819 | 2820 | qs@6.2.0: 2821 | version "6.2.0" 2822 | resolved "https://registry.yarnpkg.com/qs/-/qs-6.2.0.tgz#3b7848c03c2dece69a9522b0fae8c4126d745f3b" 2823 | 2824 | randomatic@^1.1.3: 2825 | version "1.1.5" 2826 | resolved "https://registry.yarnpkg.com/randomatic/-/randomatic-1.1.5.tgz#5e9ef5f2d573c67bd2b8124ae90b5156e457840b" 2827 | dependencies: 2828 | is-number "^2.0.2" 2829 | kind-of "^3.0.2" 2830 | 2831 | range-parser@~1.2.0: 2832 | version "1.2.0" 2833 | resolved "https://registry.yarnpkg.com/range-parser/-/range-parser-1.2.0.tgz#f49be6b487894ddc40dcc94a322f611092e00d5e" 2834 | 2835 | raw-body@~2.1.7: 2836 | version "2.1.7" 2837 | resolved "https://registry.yarnpkg.com/raw-body/-/raw-body-2.1.7.tgz#adfeace2e4fb3098058014d08c072dcc59758774" 2838 | dependencies: 2839 | bytes "2.4.0" 2840 | iconv-lite "0.4.13" 2841 | unpipe "1.0.0" 2842 | 2843 | rc@~1.1.6: 2844 | version "1.1.6" 2845 | resolved "https://registry.yarnpkg.com/rc/-/rc-1.1.6.tgz#43651b76b6ae53b5c802f1151fa3fc3b059969c9" 2846 | dependencies: 2847 | deep-extend "~0.4.0" 2848 | ini "~1.3.0" 2849 | minimist "^1.2.0" 2850 | strip-json-comments "~1.0.4" 2851 | 2852 | read-pkg-up@^1.0.1: 2853 | version "1.0.1" 2854 | resolved "https://registry.yarnpkg.com/read-pkg-up/-/read-pkg-up-1.0.1.tgz#9d63c13276c065918d57f002a57f40a1b643fb02" 2855 | dependencies: 2856 | find-up "^1.0.0" 2857 | read-pkg "^1.0.0" 2858 | 2859 | read-pkg@^1.0.0: 2860 | version "1.1.0" 2861 | resolved "https://registry.yarnpkg.com/read-pkg/-/read-pkg-1.1.0.tgz#f5ffaa5ecd29cb31c0474bca7d756b6bb29e3f28" 2862 | dependencies: 2863 | load-json-file "^1.0.0" 2864 | normalize-package-data "^2.3.2" 2865 | path-type "^1.0.0" 2866 | 2867 | "readable-stream@^2.0.0 || ^1.1.13", readable-stream@^2.0.2, readable-stream@~2.1.4: 2868 | version "2.1.5" 2869 | resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.1.5.tgz#66fa8b720e1438b364681f2ad1a63c618448c9d0" 2870 | dependencies: 2871 | buffer-shims "^1.0.0" 2872 | core-util-is "~1.0.0" 2873 | inherits "~2.0.1" 2874 | isarray "~1.0.0" 2875 | process-nextick-args "~1.0.6" 2876 | string_decoder "~0.10.x" 2877 | util-deprecate "~1.0.1" 2878 | 2879 | readable-stream@~2.0.0: 2880 | version "2.0.6" 2881 | resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.0.6.tgz#8f90341e68a53ccc928788dacfcd11b36eb9b78e" 2882 | dependencies: 2883 | core-util-is "~1.0.0" 2884 | inherits "~2.0.1" 2885 | isarray "~1.0.0" 2886 | process-nextick-args "~1.0.6" 2887 | string_decoder "~0.10.x" 2888 | util-deprecate "~1.0.1" 2889 | 2890 | readdirp@^2.0.0: 2891 | version "2.1.0" 2892 | resolved "https://registry.yarnpkg.com/readdirp/-/readdirp-2.1.0.tgz#4ed0ad060df3073300c48440373f72d1cc642d78" 2893 | dependencies: 2894 | graceful-fs "^4.1.2" 2895 | minimatch "^3.0.2" 2896 | readable-stream "^2.0.2" 2897 | set-immediate-shim "^1.0.1" 2898 | 2899 | readline2@^1.0.1: 2900 | version "1.0.1" 2901 | resolved "https://registry.yarnpkg.com/readline2/-/readline2-1.0.1.tgz#41059608ffc154757b715d9989d199ffbf372e35" 2902 | dependencies: 2903 | code-point-at "^1.0.0" 2904 | is-fullwidth-code-point "^1.0.0" 2905 | mute-stream "0.0.5" 2906 | 2907 | rechoir@^0.6.2: 2908 | version "0.6.2" 2909 | resolved "https://registry.yarnpkg.com/rechoir/-/rechoir-0.6.2.tgz#85204b54dba82d5742e28c96756ef43af50e3384" 2910 | dependencies: 2911 | resolve "^1.1.6" 2912 | 2913 | redeyed@~1.0.0: 2914 | version "1.0.1" 2915 | resolved "https://registry.yarnpkg.com/redeyed/-/redeyed-1.0.1.tgz#e96c193b40c0816b00aec842698e61185e55498a" 2916 | dependencies: 2917 | esprima "~3.0.0" 2918 | 2919 | redux@^3.6.0: 2920 | version "3.6.0" 2921 | resolved "https://registry.yarnpkg.com/redux/-/redux-3.6.0.tgz#887c2b3d0b9bd86eca2be70571c27654c19e188d" 2922 | dependencies: 2923 | lodash "^4.2.1" 2924 | lodash-es "^4.2.1" 2925 | loose-envify "^1.1.0" 2926 | symbol-observable "^1.0.2" 2927 | 2928 | regenerate@^1.2.1: 2929 | version "1.3.1" 2930 | resolved "https://registry.yarnpkg.com/regenerate/-/regenerate-1.3.1.tgz#0300203a5d2fdcf89116dce84275d011f5903f33" 2931 | 2932 | regenerator-runtime@^0.9.5: 2933 | version "0.9.5" 2934 | resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.9.5.tgz#403d6d40a4bdff9c330dd9392dcbb2d9a8bba1fc" 2935 | 2936 | regex-cache@^0.4.2: 2937 | version "0.4.3" 2938 | resolved "https://registry.yarnpkg.com/regex-cache/-/regex-cache-0.4.3.tgz#9b1a6c35d4d0dfcef5711ae651e8e9d3d7114145" 2939 | dependencies: 2940 | is-equal-shallow "^0.1.3" 2941 | is-primitive "^2.0.0" 2942 | 2943 | regexpu-core@^2.0.0: 2944 | version "2.0.0" 2945 | resolved "https://registry.yarnpkg.com/regexpu-core/-/regexpu-core-2.0.0.tgz#49d038837b8dcf8bfa5b9a42139938e6ea2ae240" 2946 | dependencies: 2947 | regenerate "^1.2.1" 2948 | regjsgen "^0.2.0" 2949 | regjsparser "^0.1.4" 2950 | 2951 | regjsgen@^0.2.0: 2952 | version "0.2.0" 2953 | resolved "https://registry.yarnpkg.com/regjsgen/-/regjsgen-0.2.0.tgz#6c016adeac554f75823fe37ac05b92d5a4edb1f7" 2954 | 2955 | regjsparser@^0.1.4: 2956 | version "0.1.5" 2957 | resolved "https://registry.yarnpkg.com/regjsparser/-/regjsparser-0.1.5.tgz#7ee8f84dc6fa792d3fd0ae228d24bd949ead205c" 2958 | dependencies: 2959 | jsesc "~0.5.0" 2960 | 2961 | repeat-element@^1.1.2: 2962 | version "1.1.2" 2963 | resolved "https://registry.yarnpkg.com/repeat-element/-/repeat-element-1.1.2.tgz#ef089a178d1483baae4d93eb98b4f9e4e11d990a" 2964 | 2965 | repeat-string@^1.5.2: 2966 | version "1.6.1" 2967 | resolved "https://registry.yarnpkg.com/repeat-string/-/repeat-string-1.6.1.tgz#8dcae470e1c88abc2d600fff4a776286da75e637" 2968 | 2969 | repeating@^2.0.0: 2970 | version "2.0.1" 2971 | resolved "https://registry.yarnpkg.com/repeating/-/repeating-2.0.1.tgz#5214c53a926d3552707527fbab415dbc08d06dda" 2972 | dependencies: 2973 | is-finite "^1.0.0" 2974 | 2975 | request@^2.55.0, request@^2.75.0: 2976 | version "2.78.0" 2977 | resolved "https://registry.yarnpkg.com/request/-/request-2.78.0.tgz#e1c8dec346e1c81923b24acdb337f11decabe9cc" 2978 | dependencies: 2979 | aws-sign2 "~0.6.0" 2980 | aws4 "^1.2.1" 2981 | caseless "~0.11.0" 2982 | combined-stream "~1.0.5" 2983 | extend "~3.0.0" 2984 | forever-agent "~0.6.1" 2985 | form-data "~2.1.1" 2986 | har-validator "~2.0.6" 2987 | hawk "~3.1.3" 2988 | http-signature "~1.1.0" 2989 | is-typedarray "~1.0.0" 2990 | isstream "~0.1.2" 2991 | json-stringify-safe "~5.0.1" 2992 | mime-types "~2.1.7" 2993 | node-uuid "~1.4.7" 2994 | oauth-sign "~0.8.1" 2995 | qs "~6.3.0" 2996 | stringstream "~0.0.4" 2997 | tough-cookie "~2.3.0" 2998 | tunnel-agent "~0.4.1" 2999 | 3000 | require-directory@^2.1.1: 3001 | version "2.1.1" 3002 | resolved "https://registry.yarnpkg.com/require-directory/-/require-directory-2.1.1.tgz#8c64ad5fd30dab1c976e2344ffe7f792a6a6df42" 3003 | 3004 | require-main-filename@^1.0.1: 3005 | version "1.0.1" 3006 | resolved "https://registry.yarnpkg.com/require-main-filename/-/require-main-filename-1.0.1.tgz#97f717b69d48784f5f526a6c5aa8ffdda055a4d1" 3007 | 3008 | require-uncached@^1.0.2: 3009 | version "1.0.2" 3010 | resolved "https://registry.yarnpkg.com/require-uncached/-/require-uncached-1.0.2.tgz#67dad3b733089e77030124678a459589faf6a7ec" 3011 | dependencies: 3012 | caller-path "^0.1.0" 3013 | resolve-from "^1.0.0" 3014 | 3015 | resolve-from@^1.0.0: 3016 | version "1.0.1" 3017 | resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-1.0.1.tgz#26cbfe935d1aeeeabb29bc3fe5aeb01e93d44226" 3018 | 3019 | resolve@^1.1.6, resolve@1.1.7, resolve@1.1.x: 3020 | version "1.1.7" 3021 | resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.1.7.tgz#203114d82ad2c5ed9e8e0411b3932875e889e97b" 3022 | 3023 | restore-cursor@^1.0.1: 3024 | version "1.0.1" 3025 | resolved "https://registry.yarnpkg.com/restore-cursor/-/restore-cursor-1.0.1.tgz#34661f46886327fed2991479152252df92daa541" 3026 | dependencies: 3027 | exit-hook "^1.0.0" 3028 | onetime "^1.0.0" 3029 | 3030 | right-align@^0.1.1: 3031 | version "0.1.3" 3032 | resolved "https://registry.yarnpkg.com/right-align/-/right-align-0.1.3.tgz#61339b722fe6a3515689210d24e14c96148613ef" 3033 | dependencies: 3034 | align-text "^0.1.1" 3035 | 3036 | rimraf@^2.2.8, rimraf@^2.4.3, rimraf@^2.4.4, rimraf@~2.5.1, rimraf@~2.5.4, rimraf@2: 3037 | version "2.5.4" 3038 | resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.5.4.tgz#96800093cbf1a0c86bd95b4625467535c29dfa04" 3039 | dependencies: 3040 | glob "^7.0.5" 3041 | 3042 | run-async@^0.1.0: 3043 | version "0.1.0" 3044 | resolved "https://registry.yarnpkg.com/run-async/-/run-async-0.1.0.tgz#c8ad4a5e110661e402a7d21b530e009f25f8e389" 3045 | dependencies: 3046 | once "^1.3.0" 3047 | 3048 | rx-lite@^3.1.2: 3049 | version "3.1.2" 3050 | resolved "https://registry.yarnpkg.com/rx-lite/-/rx-lite-3.1.2.tgz#19ce502ca572665f3b647b10939f97fd1615f102" 3051 | 3052 | sane@~1.4.1: 3053 | version "1.4.1" 3054 | resolved "https://registry.yarnpkg.com/sane/-/sane-1.4.1.tgz#88f763d74040f5f0c256b6163db399bf110ac715" 3055 | dependencies: 3056 | exec-sh "^0.2.0" 3057 | fb-watchman "^1.8.0" 3058 | minimatch "^3.0.2" 3059 | minimist "^1.1.1" 3060 | walker "~1.0.5" 3061 | watch "~0.10.0" 3062 | 3063 | sax@^1.1.4: 3064 | version "1.2.1" 3065 | resolved "https://registry.yarnpkg.com/sax/-/sax-1.2.1.tgz#7b8e656190b228e81a66aea748480d828cd2d37a" 3066 | 3067 | semver@^5.1.0, semver@^5.3.0, semver@~5.3.0, "semver@2 || 3 || 4 || 5": 3068 | version "5.3.0" 3069 | resolved "https://registry.yarnpkg.com/semver/-/semver-5.3.0.tgz#9b2ce5d3de02d17c6012ad326aa6b4d0cf54f94f" 3070 | 3071 | send@0.14.1: 3072 | version "0.14.1" 3073 | resolved "https://registry.yarnpkg.com/send/-/send-0.14.1.tgz#a954984325392f51532a7760760e459598c89f7a" 3074 | dependencies: 3075 | debug "~2.2.0" 3076 | depd "~1.1.0" 3077 | destroy "~1.0.4" 3078 | encodeurl "~1.0.1" 3079 | escape-html "~1.0.3" 3080 | etag "~1.7.0" 3081 | fresh "0.3.0" 3082 | http-errors "~1.5.0" 3083 | mime "1.3.4" 3084 | ms "0.7.1" 3085 | on-finished "~2.3.0" 3086 | range-parser "~1.2.0" 3087 | statuses "~1.3.0" 3088 | 3089 | serve-static@~1.11.1: 3090 | version "1.11.1" 3091 | resolved "https://registry.yarnpkg.com/serve-static/-/serve-static-1.11.1.tgz#d6cce7693505f733c759de57befc1af76c0f0805" 3092 | dependencies: 3093 | encodeurl "~1.0.1" 3094 | escape-html "~1.0.3" 3095 | parseurl "~1.3.1" 3096 | send "0.14.1" 3097 | 3098 | set-blocking@^2.0.0, set-blocking@~2.0.0: 3099 | version "2.0.0" 3100 | resolved "https://registry.yarnpkg.com/set-blocking/-/set-blocking-2.0.0.tgz#045f9782d011ae9a6803ddd382b24392b3d890f7" 3101 | 3102 | set-immediate-shim@^1.0.1: 3103 | version "1.0.1" 3104 | resolved "https://registry.yarnpkg.com/set-immediate-shim/-/set-immediate-shim-1.0.1.tgz#4b2b1b27eb808a9f8dcc481a58e5e56f599f3f61" 3105 | 3106 | setprototypeof@1.0.1: 3107 | version "1.0.1" 3108 | resolved "https://registry.yarnpkg.com/setprototypeof/-/setprototypeof-1.0.1.tgz#52009b27888c4dc48f591949c0a8275834c1ca7e" 3109 | 3110 | shelljs@^0.7.5: 3111 | version "0.7.5" 3112 | resolved "https://registry.yarnpkg.com/shelljs/-/shelljs-0.7.5.tgz#2eef7a50a21e1ccf37da00df767ec69e30ad0675" 3113 | dependencies: 3114 | glob "^7.0.0" 3115 | interpret "^1.0.0" 3116 | rechoir "^0.6.2" 3117 | 3118 | shellwords@^0.1.0: 3119 | version "0.1.0" 3120 | resolved "https://registry.yarnpkg.com/shellwords/-/shellwords-0.1.0.tgz#66afd47b6a12932d9071cbfd98a52e785cd0ba14" 3121 | 3122 | signal-exit@^3.0.0: 3123 | version "3.0.1" 3124 | resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.1.tgz#5a4c884992b63a7acd9badb7894c3ee9cfccad81" 3125 | 3126 | slash@^1.0.0: 3127 | version "1.0.0" 3128 | resolved "https://registry.yarnpkg.com/slash/-/slash-1.0.0.tgz#c41f2f6c39fc16d1cd17ad4b5d896114ae470d55" 3129 | 3130 | slice-ansi@0.0.4: 3131 | version "0.0.4" 3132 | resolved "https://registry.yarnpkg.com/slice-ansi/-/slice-ansi-0.0.4.tgz#edbf8903f66f7ce2f8eafd6ceed65e264c831b35" 3133 | 3134 | sntp@1.x.x: 3135 | version "1.0.9" 3136 | resolved "https://registry.yarnpkg.com/sntp/-/sntp-1.0.9.tgz#6541184cc90aeea6c6e7b35e2659082443c66198" 3137 | dependencies: 3138 | hoek "2.x.x" 3139 | 3140 | source-map-support@^0.4.2: 3141 | version "0.4.6" 3142 | resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.4.6.tgz#32552aa64b458392a85eab3b0b5ee61527167aeb" 3143 | dependencies: 3144 | source-map "^0.5.3" 3145 | 3146 | source-map@^0.4.4: 3147 | version "0.4.4" 3148 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.4.4.tgz#eba4f5da9c0dc999de68032d8b4f76173652036b" 3149 | dependencies: 3150 | amdefine ">=0.0.4" 3151 | 3152 | source-map@^0.5.0, source-map@^0.5.3, source-map@~0.5.1: 3153 | version "0.5.6" 3154 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.5.6.tgz#75ce38f52bf0733c5a7f0c118d81334a2bb5f412" 3155 | 3156 | source-map@~0.2.0: 3157 | version "0.2.0" 3158 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.2.0.tgz#dab73fbcfc2ba819b4de03bd6f6eaa48164b3f9d" 3159 | dependencies: 3160 | amdefine ">=0.0.4" 3161 | 3162 | spdx-correct@~1.0.0: 3163 | version "1.0.2" 3164 | resolved "https://registry.yarnpkg.com/spdx-correct/-/spdx-correct-1.0.2.tgz#4b3073d933ff51f3912f03ac5519498a4150db40" 3165 | dependencies: 3166 | spdx-license-ids "^1.0.2" 3167 | 3168 | spdx-expression-parse@~1.0.0: 3169 | version "1.0.4" 3170 | resolved "https://registry.yarnpkg.com/spdx-expression-parse/-/spdx-expression-parse-1.0.4.tgz#9bdf2f20e1f40ed447fbe273266191fced51626c" 3171 | 3172 | spdx-license-ids@^1.0.2: 3173 | version "1.2.2" 3174 | resolved "https://registry.yarnpkg.com/spdx-license-ids/-/spdx-license-ids-1.2.2.tgz#c9df7a3424594ade6bd11900d596696dc06bac57" 3175 | 3176 | sprintf-js@~1.0.2: 3177 | version "1.0.3" 3178 | resolved "https://registry.yarnpkg.com/sprintf-js/-/sprintf-js-1.0.3.tgz#04e6926f662895354f3dd015203633b857297e2c" 3179 | 3180 | sshpk@^1.7.0: 3181 | version "1.10.1" 3182 | resolved "https://registry.yarnpkg.com/sshpk/-/sshpk-1.10.1.tgz#30e1a5d329244974a1af61511339d595af6638b0" 3183 | dependencies: 3184 | asn1 "~0.2.3" 3185 | assert-plus "^1.0.0" 3186 | dashdash "^1.12.0" 3187 | getpass "^0.1.1" 3188 | optionalDependencies: 3189 | bcrypt-pbkdf "^1.0.0" 3190 | ecc-jsbn "~0.1.1" 3191 | jodid25519 "^1.0.0" 3192 | jsbn "~0.1.0" 3193 | tweetnacl "~0.14.0" 3194 | 3195 | "statuses@>= 1.3.0 < 2", statuses@~1.3.0: 3196 | version "1.3.0" 3197 | resolved "https://registry.yarnpkg.com/statuses/-/statuses-1.3.0.tgz#8e55758cb20e7682c1f4fce8dcab30bf01d1e07a" 3198 | 3199 | string_decoder@~0.10.x: 3200 | version "0.10.31" 3201 | resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-0.10.31.tgz#62e203bc41766c6c28c9fc84301dab1c5310fa94" 3202 | 3203 | string-width@^1.0.1, string-width@^1.0.2: 3204 | version "1.0.2" 3205 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-1.0.2.tgz#118bdf5b8cdc51a2a7e70d211e07e2b0b9b107d3" 3206 | dependencies: 3207 | code-point-at "^1.0.0" 3208 | is-fullwidth-code-point "^1.0.0" 3209 | strip-ansi "^3.0.0" 3210 | 3211 | string-width@^2.0.0: 3212 | version "2.0.0" 3213 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-2.0.0.tgz#635c5436cc72a6e0c387ceca278d4e2eec52687e" 3214 | dependencies: 3215 | is-fullwidth-code-point "^2.0.0" 3216 | strip-ansi "^3.0.0" 3217 | 3218 | string.prototype.codepointat@^0.2.0: 3219 | version "0.2.0" 3220 | resolved "https://registry.yarnpkg.com/string.prototype.codepointat/-/string.prototype.codepointat-0.2.0.tgz#6b26e9bd3afcaa7be3b4269b526de1b82000ac78" 3221 | 3222 | stringstream@~0.0.4: 3223 | version "0.0.5" 3224 | resolved "https://registry.yarnpkg.com/stringstream/-/stringstream-0.0.5.tgz#4e484cd4de5a0bbbee18e46307710a8a81621878" 3225 | 3226 | strip-ansi@^3.0.0, strip-ansi@^3.0.1: 3227 | version "3.0.1" 3228 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-3.0.1.tgz#6a385fb8853d952d5ff05d0e8aaf94278dc63dcf" 3229 | dependencies: 3230 | ansi-regex "^2.0.0" 3231 | 3232 | strip-bom@^2.0.0: 3233 | version "2.0.0" 3234 | resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-2.0.0.tgz#6219a85616520491f35788bdbf1447a99c7e6b0e" 3235 | dependencies: 3236 | is-utf8 "^0.2.0" 3237 | 3238 | strip-bom@^3.0.0: 3239 | version "3.0.0" 3240 | resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-3.0.0.tgz#2334c18e9c759f7bdd56fdef7e9ae3d588e68ed3" 3241 | 3242 | strip-json-comments@~1.0.1, strip-json-comments@~1.0.4: 3243 | version "1.0.4" 3244 | resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-1.0.4.tgz#1e15fbcac97d3ee99bf2d73b4c656b082bbafb91" 3245 | 3246 | supports-color@^2.0.0: 3247 | version "2.0.0" 3248 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-2.0.0.tgz#535d045ce6b6363fa40117084629995e9df324c7" 3249 | 3250 | supports-color@^3.1.0, supports-color@^3.1.2: 3251 | version "3.1.2" 3252 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-3.1.2.tgz#72a262894d9d408b956ca05ff37b2ed8a6e2a2d5" 3253 | dependencies: 3254 | has-flag "^1.0.0" 3255 | 3256 | symbol-observable@^1.0.2: 3257 | version "1.0.4" 3258 | resolved "https://registry.yarnpkg.com/symbol-observable/-/symbol-observable-1.0.4.tgz#29bf615d4aa7121bdd898b22d4b3f9bc4e2aa03d" 3259 | 3260 | "symbol-tree@>= 3.1.0 < 4.0.0": 3261 | version "3.1.4" 3262 | resolved "https://registry.yarnpkg.com/symbol-tree/-/symbol-tree-3.1.4.tgz#02b279348d337debc39694c5c95f882d448a312a" 3263 | 3264 | table@^3.7.8: 3265 | version "3.8.3" 3266 | resolved "https://registry.yarnpkg.com/table/-/table-3.8.3.tgz#2bbc542f0fda9861a755d3947fefd8b3f513855f" 3267 | dependencies: 3268 | ajv "^4.7.0" 3269 | ajv-keywords "^1.0.0" 3270 | chalk "^1.1.1" 3271 | lodash "^4.0.0" 3272 | slice-ansi "0.0.4" 3273 | string-width "^2.0.0" 3274 | 3275 | tar-pack@~3.3.0: 3276 | version "3.3.0" 3277 | resolved "https://registry.yarnpkg.com/tar-pack/-/tar-pack-3.3.0.tgz#30931816418f55afc4d21775afdd6720cee45dae" 3278 | dependencies: 3279 | debug "~2.2.0" 3280 | fstream "~1.0.10" 3281 | fstream-ignore "~1.0.5" 3282 | once "~1.3.3" 3283 | readable-stream "~2.1.4" 3284 | rimraf "~2.5.1" 3285 | tar "~2.2.1" 3286 | uid-number "~0.0.6" 3287 | 3288 | tar@~2.2.1: 3289 | version "2.2.1" 3290 | resolved "https://registry.yarnpkg.com/tar/-/tar-2.2.1.tgz#8e4d2a256c0e2185c6b18ad694aec968b83cb1d1" 3291 | dependencies: 3292 | block-stream "*" 3293 | fstream "^1.0.2" 3294 | inherits "2" 3295 | 3296 | test-exclude@^2.1.1: 3297 | version "2.1.3" 3298 | resolved "https://registry.yarnpkg.com/test-exclude/-/test-exclude-2.1.3.tgz#a8d8968e1da83266f9864f2852c55e220f06434a" 3299 | dependencies: 3300 | arrify "^1.0.1" 3301 | micromatch "^2.3.11" 3302 | object-assign "^4.1.0" 3303 | read-pkg-up "^1.0.1" 3304 | require-main-filename "^1.0.1" 3305 | 3306 | testcheck@^0.1.0: 3307 | version "0.1.4" 3308 | resolved "https://registry.yarnpkg.com/testcheck/-/testcheck-0.1.4.tgz#90056edd48d11997702616ce6716f197d8190164" 3309 | 3310 | text-table@~0.2.0: 3311 | version "0.2.0" 3312 | resolved "https://registry.yarnpkg.com/text-table/-/text-table-0.2.0.tgz#7f5ee823ae805207c00af2df4a84ec3fcfa570b4" 3313 | 3314 | through@^2.3.6: 3315 | version "2.3.8" 3316 | resolved "https://registry.yarnpkg.com/through/-/through-2.3.8.tgz#0dd4c9ffaabc357960b1b724115d7e0e86a2e1f5" 3317 | 3318 | tmpl@1.0.x: 3319 | version "1.0.4" 3320 | resolved "https://registry.yarnpkg.com/tmpl/-/tmpl-1.0.4.tgz#23640dd7b42d00433911140820e5cf440e521dd1" 3321 | 3322 | to-fast-properties@^1.0.1: 3323 | version "1.0.2" 3324 | resolved "https://registry.yarnpkg.com/to-fast-properties/-/to-fast-properties-1.0.2.tgz#f3f5c0c3ba7299a7ef99427e44633257ade43320" 3325 | 3326 | tough-cookie@^2.3.1, tough-cookie@~2.3.0: 3327 | version "2.3.2" 3328 | resolved "https://registry.yarnpkg.com/tough-cookie/-/tough-cookie-2.3.2.tgz#f081f76e4c85720e6c37a5faced737150d84072a" 3329 | dependencies: 3330 | punycode "^1.4.1" 3331 | 3332 | tr46@~0.0.3: 3333 | version "0.0.3" 3334 | resolved "https://registry.yarnpkg.com/tr46/-/tr46-0.0.3.tgz#8184fd347dac9cdc185992f3a6622e14b9d9ab6a" 3335 | 3336 | tryit@^1.0.1: 3337 | version "1.0.3" 3338 | resolved "https://registry.yarnpkg.com/tryit/-/tryit-1.0.3.tgz#393be730a9446fd1ead6da59a014308f36c289cb" 3339 | 3340 | tunnel-agent@~0.4.1: 3341 | version "0.4.3" 3342 | resolved "https://registry.yarnpkg.com/tunnel-agent/-/tunnel-agent-0.4.3.tgz#6373db76909fe570e08d73583365ed828a74eeeb" 3343 | 3344 | tweetnacl@^0.14.3, tweetnacl@~0.14.0: 3345 | version "0.14.3" 3346 | resolved "https://registry.yarnpkg.com/tweetnacl/-/tweetnacl-0.14.3.tgz#3da382f670f25ded78d7b3d1792119bca0b7132d" 3347 | 3348 | type-check@~0.3.2: 3349 | version "0.3.2" 3350 | resolved "https://registry.yarnpkg.com/type-check/-/type-check-0.3.2.tgz#5884cab512cf1d355e3fb784f30804b2b520db72" 3351 | dependencies: 3352 | prelude-ls "~1.1.2" 3353 | 3354 | type-detect@^1.0.0: 3355 | version "1.0.0" 3356 | resolved "https://registry.yarnpkg.com/type-detect/-/type-detect-1.0.0.tgz#762217cc06db258ec48908a1298e8b95121e8ea2" 3357 | 3358 | type-detect@0.1.1: 3359 | version "0.1.1" 3360 | resolved "https://registry.yarnpkg.com/type-detect/-/type-detect-0.1.1.tgz#0ba5ec2a885640e470ea4e8505971900dac58822" 3361 | 3362 | type-is@~1.6.13: 3363 | version "1.6.13" 3364 | resolved "https://registry.yarnpkg.com/type-is/-/type-is-1.6.13.tgz#6e83ba7bc30cd33a7bb0b7fb00737a2085bf9d08" 3365 | dependencies: 3366 | media-typer "0.3.0" 3367 | mime-types "~2.1.11" 3368 | 3369 | typedarray@~0.0.5: 3370 | version "0.0.6" 3371 | resolved "https://registry.yarnpkg.com/typedarray/-/typedarray-0.0.6.tgz#867ac74e3864187b1d3d47d996a78ec5c8830777" 3372 | 3373 | uglify-js@^2.6: 3374 | version "2.7.4" 3375 | resolved "https://registry.yarnpkg.com/uglify-js/-/uglify-js-2.7.4.tgz#a295a0de12b6a650c031c40deb0dc40b14568bd2" 3376 | dependencies: 3377 | async "~0.2.6" 3378 | source-map "~0.5.1" 3379 | uglify-to-browserify "~1.0.0" 3380 | yargs "~3.10.0" 3381 | 3382 | uglify-to-browserify@~1.0.0: 3383 | version "1.0.2" 3384 | resolved "https://registry.yarnpkg.com/uglify-to-browserify/-/uglify-to-browserify-1.0.2.tgz#6e0924d6bda6b5afe349e39a6d632850a0f882b7" 3385 | 3386 | uid-number@~0.0.6: 3387 | version "0.0.6" 3388 | resolved "https://registry.yarnpkg.com/uid-number/-/uid-number-0.0.6.tgz#0ea10e8035e8eb5b8e4449f06da1c730663baa81" 3389 | 3390 | unpipe@~1.0.0, unpipe@1.0.0: 3391 | version "1.0.0" 3392 | resolved "https://registry.yarnpkg.com/unpipe/-/unpipe-1.0.0.tgz#b2bf4ee8514aae6165b4817829d21b2ef49904ec" 3393 | 3394 | user-home@^1.1.1: 3395 | version "1.1.1" 3396 | resolved "https://registry.yarnpkg.com/user-home/-/user-home-1.1.1.tgz#2b5be23a32b63a7c9deb8d0f28d485724a3df190" 3397 | 3398 | user-home@^2.0.0: 3399 | version "2.0.0" 3400 | resolved "https://registry.yarnpkg.com/user-home/-/user-home-2.0.0.tgz#9c70bfd8169bc1dcbf48604e0f04b8b49cde9e9f" 3401 | dependencies: 3402 | os-homedir "^1.0.0" 3403 | 3404 | util-deprecate@~1.0.1: 3405 | version "1.0.2" 3406 | resolved "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf" 3407 | 3408 | utils-merge@1.0.0: 3409 | version "1.0.0" 3410 | resolved "https://registry.yarnpkg.com/utils-merge/-/utils-merge-1.0.0.tgz#0294fb922bb9375153541c4f7096231f287c8af8" 3411 | 3412 | uuid@^2.0.3: 3413 | version "2.0.3" 3414 | resolved "https://registry.yarnpkg.com/uuid/-/uuid-2.0.3.tgz#67e2e863797215530dff318e5bf9dcebfd47b21a" 3415 | 3416 | v8flags@^2.0.10: 3417 | version "2.0.11" 3418 | resolved "https://registry.yarnpkg.com/v8flags/-/v8flags-2.0.11.tgz#bca8f30f0d6d60612cc2c00641e6962d42ae6881" 3419 | dependencies: 3420 | user-home "^1.1.1" 3421 | 3422 | validate-npm-package-license@^3.0.1: 3423 | version "3.0.1" 3424 | resolved "https://registry.yarnpkg.com/validate-npm-package-license/-/validate-npm-package-license-3.0.1.tgz#2804babe712ad3379459acfbe24746ab2c303fbc" 3425 | dependencies: 3426 | spdx-correct "~1.0.0" 3427 | spdx-expression-parse "~1.0.0" 3428 | 3429 | vary@~1.1.0: 3430 | version "1.1.0" 3431 | resolved "https://registry.yarnpkg.com/vary/-/vary-1.1.0.tgz#e1e5affbbd16ae768dd2674394b9ad3022653140" 3432 | 3433 | verror@1.3.6: 3434 | version "1.3.6" 3435 | resolved "https://registry.yarnpkg.com/verror/-/verror-1.3.6.tgz#cff5df12946d297d2baaefaa2689e25be01c005c" 3436 | dependencies: 3437 | extsprintf "1.0.2" 3438 | 3439 | walker@~1.0.5: 3440 | version "1.0.7" 3441 | resolved "https://registry.yarnpkg.com/walker/-/walker-1.0.7.tgz#2f7f9b8fd10d677262b18a884e28d19618e028fb" 3442 | dependencies: 3443 | makeerror "1.0.x" 3444 | 3445 | watch@~0.10.0: 3446 | version "0.10.0" 3447 | resolved "https://registry.yarnpkg.com/watch/-/watch-0.10.0.tgz#77798b2da0f9910d595f1ace5b0c2258521f21dc" 3448 | 3449 | webidl-conversions@^3.0.0, webidl-conversions@^3.0.1: 3450 | version "3.0.1" 3451 | resolved "https://registry.yarnpkg.com/webidl-conversions/-/webidl-conversions-3.0.1.tgz#24534275e2a7bc6be7bc86611cc16ae0a5654871" 3452 | 3453 | whatwg-encoding@^1.0.1: 3454 | version "1.0.1" 3455 | resolved "https://registry.yarnpkg.com/whatwg-encoding/-/whatwg-encoding-1.0.1.tgz#3c6c451a198ee7aec55b1ec61d0920c67801a5f4" 3456 | dependencies: 3457 | iconv-lite "0.4.13" 3458 | 3459 | whatwg-url@^3.0.0: 3460 | version "3.0.0" 3461 | resolved "https://registry.yarnpkg.com/whatwg-url/-/whatwg-url-3.0.0.tgz#b9033c50c7ce763e91d78777ce825a6d7f56dac5" 3462 | dependencies: 3463 | tr46 "~0.0.3" 3464 | webidl-conversions "^3.0.0" 3465 | 3466 | which-module@^1.0.0: 3467 | version "1.0.0" 3468 | resolved "https://registry.yarnpkg.com/which-module/-/which-module-1.0.0.tgz#bba63ca861948994ff307736089e3b96026c2a4f" 3469 | 3470 | which@^1.0.5, which@^1.1.1: 3471 | version "1.2.11" 3472 | resolved "https://registry.yarnpkg.com/which/-/which-1.2.11.tgz#c8b2eeea6b8c1659fa7c1dd4fdaabe9533dc5e8b" 3473 | dependencies: 3474 | isexe "^1.1.1" 3475 | 3476 | wide-align@^1.1.0: 3477 | version "1.1.0" 3478 | resolved "https://registry.yarnpkg.com/wide-align/-/wide-align-1.1.0.tgz#40edde802a71fea1f070da3e62dcda2e7add96ad" 3479 | dependencies: 3480 | string-width "^1.0.1" 3481 | 3482 | window-size@^0.2.0: 3483 | version "0.2.0" 3484 | resolved "https://registry.yarnpkg.com/window-size/-/window-size-0.2.0.tgz#b4315bb4214a3d7058ebeee892e13fa24d98b075" 3485 | 3486 | window-size@0.1.0: 3487 | version "0.1.0" 3488 | resolved "https://registry.yarnpkg.com/window-size/-/window-size-0.1.0.tgz#5438cd2ea93b202efa3a19fe8887aee7c94f9c9d" 3489 | 3490 | wordwrap@^1.0.0, wordwrap@~1.0.0: 3491 | version "1.0.0" 3492 | resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-1.0.0.tgz#27584810891456a4171c8d0226441ade90cbcaeb" 3493 | 3494 | wordwrap@~0.0.2: 3495 | version "0.0.3" 3496 | resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-0.0.3.tgz#a3d5da6cd5c0bc0008d37234bbaf1bed63059107" 3497 | 3498 | wordwrap@0.0.2: 3499 | version "0.0.2" 3500 | resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-0.0.2.tgz#b79669bb42ecb409f83d583cad52ca17eaa1643f" 3501 | 3502 | worker-farm@^1.3.1: 3503 | version "1.3.1" 3504 | resolved "https://registry.yarnpkg.com/worker-farm/-/worker-farm-1.3.1.tgz#4333112bb49b17aa050b87895ca6b2cacf40e5ff" 3505 | dependencies: 3506 | errno ">=0.1.1 <0.2.0-0" 3507 | xtend ">=4.0.0 <4.1.0-0" 3508 | 3509 | wrap-ansi@^2.0.0: 3510 | version "2.0.0" 3511 | resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-2.0.0.tgz#7d30f8f873f9a5bbc3a64dabc8d177e071ae426f" 3512 | dependencies: 3513 | string-width "^1.0.1" 3514 | 3515 | wrappy@1: 3516 | version "1.0.2" 3517 | resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f" 3518 | 3519 | write@^0.2.1: 3520 | version "0.2.1" 3521 | resolved "https://registry.yarnpkg.com/write/-/write-0.2.1.tgz#5fc03828e264cea3fe91455476f7a3c566cb0757" 3522 | dependencies: 3523 | mkdirp "^0.5.1" 3524 | 3525 | "xml-name-validator@>= 2.0.1 < 3.0.0": 3526 | version "2.0.1" 3527 | resolved "https://registry.yarnpkg.com/xml-name-validator/-/xml-name-validator-2.0.1.tgz#4d8b8f1eccd3419aa362061becef515e1e559635" 3528 | 3529 | xtend@^4.0.0, "xtend@>=4.0.0 <4.1.0-0": 3530 | version "4.0.1" 3531 | resolved "https://registry.yarnpkg.com/xtend/-/xtend-4.0.1.tgz#a5c6d532be656e23db820efb943a1f04998d63af" 3532 | 3533 | y18n@^3.2.1: 3534 | version "3.2.1" 3535 | resolved "https://registry.yarnpkg.com/y18n/-/y18n-3.2.1.tgz#6d15fba884c08679c0d77e88e7759e811e07fa41" 3536 | 3537 | yargs-parser@^3.2.0: 3538 | version "3.2.0" 3539 | resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-3.2.0.tgz#5081355d19d9d0c8c5d81ada908cb4e6d186664f" 3540 | dependencies: 3541 | camelcase "^3.0.0" 3542 | lodash.assign "^4.1.0" 3543 | 3544 | yargs@^5.0.0: 3545 | version "5.0.0" 3546 | resolved "https://registry.yarnpkg.com/yargs/-/yargs-5.0.0.tgz#3355144977d05757dbb86d6e38ec056123b3a66e" 3547 | dependencies: 3548 | cliui "^3.2.0" 3549 | decamelize "^1.1.1" 3550 | get-caller-file "^1.0.1" 3551 | lodash.assign "^4.2.0" 3552 | os-locale "^1.4.0" 3553 | read-pkg-up "^1.0.1" 3554 | require-directory "^2.1.1" 3555 | require-main-filename "^1.0.1" 3556 | set-blocking "^2.0.0" 3557 | string-width "^1.0.2" 3558 | which-module "^1.0.0" 3559 | window-size "^0.2.0" 3560 | y18n "^3.2.1" 3561 | yargs-parser "^3.2.0" 3562 | 3563 | yargs@~3.10.0: 3564 | version "3.10.0" 3565 | resolved "https://registry.yarnpkg.com/yargs/-/yargs-3.10.0.tgz#f7ee7bd857dd7c1d2d38c0e74efbd681d1431fd1" 3566 | dependencies: 3567 | camelcase "^1.0.2" 3568 | cliui "^2.1.0" 3569 | decamelize "^1.0.0" 3570 | window-size "0.1.0" 3571 | 3572 | --------------------------------------------------------------------------------