├── .gitignore ├── .npmignore ├── LICENSE ├── Makefile ├── README.md ├── package.json ├── src ├── action.js ├── index.js └── store.js ├── test └── index.js └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | test 2 | Makefile 3 | src 4 | .jshintrc 5 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | The MIT License (MIT) 2 | 3 | Copyright (c) 2015 Neri Marschik 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | 23 | -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- 1 | test: 2 | ./node_modules/.bin/mocha --reporter spec 3 | 4 | .PHONY: test 5 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # reactive-flux 2 | 3 | > Fluxish model implemented with RxJS 4 | 5 | I was trying to use React + Flux to build a Dashboard but while reading Flux tutorials I already started to dislike the switch statements and constants that are all over the place. 6 | 7 | React and the Flux architecture seem to fit well with RxJS, so this is my take on it. 8 | 9 | This is my first JavaScript code so feel free to send pull requests and let me know of any bugs or improvements you can think of. It's inspired by several libraries that try to combine React with Rx but they didn't seem to do exactly what I had in mind. 10 | 11 | ## Installation 12 | ``` 13 | npm install reactive-flux 14 | ``` 15 | 16 | ## Description 17 | The dispatcher is completely gone. Instead we are using Rx.Subjects as Actions and Stores. 18 | 19 | * An Action can have many Stores subscribed to it 20 | * A Store can subscribe to many Actions, each with its own handler 21 | * Additionally it can request to be notified after other stores in case there are any dependencies (Dispatcher.waitFor()) 22 | * React components can subscribe to many Stores as they are subclasses of Rx.Subject 23 | 24 | ## Changelog 25 | 26 | * 0.1.2: Custom function argument for Action. Fixed problem that the library could not be required correctly. 27 | 28 | ## Example 29 | ```javascript 30 | let ReactiveFlux = require('reactive-flux'), 31 | request = require('superagent'), 32 | React = require('react'), 33 | Action = ReactiveFlux.Action, 34 | Store = ReactiveFlux.Store; 35 | 36 | let LoginSucceededAction = Action.make(); 37 | let LoginFailedAction = Action.make(); 38 | 39 | let LoginAction = Action.make((username, password) => { 40 | request 41 | .post('/login') 42 | .send({ username: username, password: password }) 43 | .end(function(err, res){ 44 | if (res.status == 200) { 45 | LoginSucceededAction(res.body.token); 46 | } else { 47 | LoginFailedAction(); 48 | } 49 | }); 50 | }); 51 | 52 | let LOGIN_TOKEN_KEY = 'token'; 53 | 54 | class LoginStore extends Store { 55 | constructor() { 56 | super(); 57 | 58 | // yes, I agree this is superfluous and needs to be changed :) 59 | this.init(); 60 | } 61 | 62 | init() { 63 | this.observe(LoginSucceededAction, this.onLoginSucceeded); 64 | this.observe(LoginFailedAction, this.onLoginFailed); 65 | } 66 | 67 | onLoginSucceeded(token) { 68 | window.localStorage.setItem(LOGIN_TOKEN_KEY, token); 69 | } 70 | 71 | onLoginFailed() { 72 | window.localStorage.removeItem(LOGIN_TOKEN_KEY); 73 | } 74 | 75 | getToken() { 76 | return window.localStorage.getItem(LOGIN_TOKEN_KEY); 77 | } 78 | 79 | isLoggedIn() { 80 | return !!this.getToken(); 81 | } 82 | } 83 | 84 | var LoginComponent = React.createClass({ 85 | getInitialState() { 86 | return { isLoggedIn: LoginStore.isLoggedIn() }; 87 | }, 88 | 89 | _subscription: {}, 90 | 91 | componentDidMount() { 92 | self = this; 93 | this._subscription = LoginStore.subscribe(function () { 94 | if (LoginStore.isLoggedIn()) { 95 | // do something useful 96 | } 97 | }); 98 | }, 99 | 100 | componentWillUnmount() { 101 | this._subscription.dispose(); 102 | }, 103 | 104 | render() { 105 | return ( 106 | // something 107 | ); 108 | }, 109 | 110 | handleSubmit(e) { 111 | e.preventDefault(); 112 | 113 | let username = this.refs.username.getValue().trim(); 114 | let password = this.refs.password.getValue().trim(); 115 | 116 | if (!username || !password) { 117 | return; 118 | } 119 | 120 | // call our action 121 | LoginAction(username, password); 122 | } 123 | }); 124 | 125 | // Actions are subjects so we can subscribe to an API or similar 126 | var source = Rx.Observable.fromEvent(document, 'mousemove'); 127 | source.subscribe(SomeAction); // All mousemove events will be send to subscribing stores of SomeAction 128 | ``` -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "reactive-flux", 3 | "version": "0.1.3", 4 | "description": "Fluxish model implemented with RxJS", 5 | "main": "lib/index.js", 6 | "scripts": { 7 | "prepublish": "babel -c -d ./lib ./src/", 8 | "postpublish": "rm -r ./lib", 9 | "test": "make test" 10 | }, 11 | "repository": { 12 | "type": "git", 13 | "url": "https://github.com/codesuki/reactive-flux.git" 14 | }, 15 | "keywords": [ 16 | "Flux", 17 | "React", 18 | "RxJS", 19 | "Rx", 20 | "Reactive" 21 | ], 22 | "author": "Neri Marschik (http://www.cyberagent.co.jp)", 23 | "license": "MIT", 24 | "bugs": { 25 | "url": "https://github.com/codesuki/reactive-flux/issues" 26 | }, 27 | "homepage": "https://github.com/codesuki/reactive-flux", 28 | "devDependencies": { 29 | "babel-cli": "^6.22.2", 30 | "babel-register": "^6.22.0", 31 | "chai": "^3.5.0", 32 | "mocha": "^3.2.0" 33 | }, 34 | "dependencies": { 35 | "rx": "^4.1.0" 36 | } 37 | } 38 | -------------------------------------------------------------------------------- /src/action.js: -------------------------------------------------------------------------------- 1 | var Rx = require('rx'); 2 | 3 | // mixin version: 4 | // we can call the action itself like actionName() 5 | var Action = function (fn) { 6 | var begin = new Rx.Subject(); 7 | var end = new Rx.Subject(); 8 | 9 | var action = function (data) { 10 | if (fn) { 11 | action.onNext(fn.apply(null, arguments)); 12 | } else { 13 | action.onNext(data); 14 | } 15 | }; 16 | 17 | for (var key in Rx.Subject.prototype) { 18 | action[key] = Rx.Subject.prototype[key]; 19 | } 20 | 21 | Rx.Subject.call(action); 22 | 23 | action._onNext = action.onNext; 24 | 25 | action.onNext = function(data) { 26 | begin.onNext(data); 27 | action._onNext(data); 28 | end.onNext(); 29 | }; 30 | 31 | action.waitFor = function (observers) { 32 | observers = Array.prototype.slice.call(arguments); 33 | 34 | return begin.flatMap(function (value) { 35 | return Rx.Observable.combineLatest( 36 | observers.map(function (observable) { 37 | observable = observable.takeUntil(end); 38 | return observable; 39 | }), 40 | function(values) { 41 | return value; 42 | } 43 | ); 44 | }); 45 | }; 46 | 47 | return action; 48 | }; 49 | 50 | module.exports = {make: Action}; 51 | 52 | /* 53 | // class version: 54 | // we need to call onNext() or a wrapper like doAction() to propagate the action 55 | class Action extends Rx.Subject { 56 | constructor() { 57 | super(); 58 | } 59 | 60 | doAction() { 61 | onNext(); 62 | } 63 | } 64 | */ 65 | -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- 1 | var Action = require('./action'); 2 | var Store = require('./store'); 3 | 4 | module.exports = {Action: Action, Store: Store}; 5 | -------------------------------------------------------------------------------- /src/store.js: -------------------------------------------------------------------------------- 1 | var Rx = require('rx'); 2 | 3 | class Store extends Rx.Subject { 4 | constructor() { 5 | super(); 6 | } 7 | 8 | observe(action, observer) { 9 | var self = this; 10 | 11 | return action.subscribe((data) => { 12 | observer.call(self, data); 13 | this.onNext(); 14 | }); 15 | } 16 | } 17 | 18 | module.exports = Store; 19 | -------------------------------------------------------------------------------- /test/index.js: -------------------------------------------------------------------------------- 1 | require("babel-register"); 2 | 3 | var expect = require('chai').expect, 4 | library = require('../src/index'), 5 | Action = library.Action, 6 | Store = library.Store; 7 | 8 | describe('#Action', function() { 9 | describe('#Action basic notification', function() { 10 | var TestAction = Action.make(); 11 | 12 | it("should notify listeners when called", function(done) { 13 | TestAction.subscribe(function (data) { 14 | expect(data).to.equal('Test'); 15 | done(); 16 | }); 17 | TestAction("Test"); 18 | }); 19 | }); 20 | 21 | describe('#Action waitFor ordering', function() { 22 | var TestAction = Action.make(); 23 | 24 | var calledA = false; 25 | var calledB = false; 26 | 27 | var storeA = new Store(); 28 | var storeB = new Store(); 29 | 30 | it("should notify listeners A,B before C", function(done) { 31 | storeA.observe(TestAction, function(data) { 32 | calledA = true; 33 | }); 34 | 35 | TestAction.waitFor(storeA, storeB).subscribe(function (data) { 36 | expect(data).to.equal('Test'); 37 | if (calledA && calledB) { 38 | done(); 39 | } 40 | }); 41 | 42 | storeB.observe(TestAction, function(data) { 43 | calledB = true; 44 | }); 45 | 46 | TestAction("Test"); 47 | }); 48 | }); 49 | }); 50 | 51 | describe('#Store', function() { 52 | var TestStore = new Store(); 53 | var TestActionA = Action.make(); 54 | var TestActionB = Action.make(); 55 | 56 | describe('#Store subscription', function() { 57 | var calledA = false; 58 | var calledB = false; 59 | 60 | var subA = TestStore.observe(TestActionA, function (data) { /* store callback */}); 61 | var subB = TestStore.observe(TestActionB, function (data) { /* store callback */}); 62 | 63 | it("should notify listeners when any subscribed action happens", function(done) { 64 | TestStore.subscribe(function (data) { 65 | calledB = true; 66 | 67 | }); 68 | TestStore.subscribe(function (data) { 69 | calledA = true; 70 | }); 71 | 72 | TestActionA("TestA"); 73 | TestActionB("TestB"); 74 | 75 | subA.dispose(); 76 | subB.dispose(); 77 | 78 | if (calledA && calledB) { 79 | done(); 80 | } 81 | }); 82 | }); 83 | 84 | describe('#Store unsubscription', function() { 85 | var calledA = false; 86 | var calledB = false; 87 | 88 | var subA = TestStore.observe(TestActionA, function (data) { /* store callback */}); 89 | var subB = TestStore.observe(TestActionB, function (data) { /* store callback */}); 90 | 91 | subB.dispose(); 92 | subA.dispose(); 93 | 94 | it("should not notify unsubscribed subscribers", function(done) { 95 | TestStore.subscribe(function (data) { 96 | console.log("A"); 97 | calledB = true; 98 | }); 99 | TestStore.subscribe(function (data) { 100 | console.log("B"); 101 | calledA = true; 102 | }); 103 | 104 | TestActionA("TestA"); 105 | TestActionB("TestB"); 106 | 107 | if (!calledA && !calledB) { 108 | done(); 109 | } 110 | }); 111 | }); 112 | }); 113 | -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- 1 | # THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY. 2 | # yarn lockfile v1 3 | 4 | 5 | abbrev@1: 6 | version "1.0.9" 7 | resolved "https://registry.yarnpkg.com/abbrev/-/abbrev-1.0.9.tgz#91b4792588a7738c25f35dd6f63752a2f8776135" 8 | 9 | ansi-regex@^2.0.0: 10 | version "2.1.1" 11 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-2.1.1.tgz#c3b33ab5ee360d86e0e628f0468ae7ef27d654df" 12 | 13 | ansi-styles@^2.2.1: 14 | version "2.2.1" 15 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-2.2.1.tgz#b432dd3358b634cf75e1e4664368240533c1ddbe" 16 | 17 | anymatch@^1.3.0: 18 | version "1.3.0" 19 | resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-1.3.0.tgz#a3e52fa39168c825ff57b0248126ce5a8ff95507" 20 | dependencies: 21 | arrify "^1.0.0" 22 | micromatch "^2.1.5" 23 | 24 | aproba@^1.0.3: 25 | version "1.0.4" 26 | resolved "https://registry.yarnpkg.com/aproba/-/aproba-1.0.4.tgz#2713680775e7614c8ba186c065d4e2e52d1072c0" 27 | 28 | are-we-there-yet@~1.1.2: 29 | version "1.1.2" 30 | resolved "https://registry.yarnpkg.com/are-we-there-yet/-/are-we-there-yet-1.1.2.tgz#80e470e95a084794fe1899262c5667c6e88de1b3" 31 | dependencies: 32 | delegates "^1.0.0" 33 | readable-stream "^2.0.0 || ^1.1.13" 34 | 35 | arr-diff@^2.0.0: 36 | version "2.0.0" 37 | resolved "https://registry.yarnpkg.com/arr-diff/-/arr-diff-2.0.0.tgz#8f3b827f955a8bd669697e4a4256ac3ceae356cf" 38 | dependencies: 39 | arr-flatten "^1.0.1" 40 | 41 | arr-flatten@^1.0.1: 42 | version "1.0.1" 43 | resolved "https://registry.yarnpkg.com/arr-flatten/-/arr-flatten-1.0.1.tgz#e5ffe54d45e19f32f216e91eb99c8ce892bb604b" 44 | 45 | array-unique@^0.2.1: 46 | version "0.2.1" 47 | resolved "https://registry.yarnpkg.com/array-unique/-/array-unique-0.2.1.tgz#a1d97ccafcbc2625cc70fadceb36a50c58b01a53" 48 | 49 | arrify@^1.0.0: 50 | version "1.0.1" 51 | resolved "https://registry.yarnpkg.com/arrify/-/arrify-1.0.1.tgz#898508da2226f380df904728456849c1501a4b0d" 52 | 53 | asn1@~0.2.3: 54 | version "0.2.3" 55 | resolved "https://registry.yarnpkg.com/asn1/-/asn1-0.2.3.tgz#dac8787713c9966849fc8180777ebe9c1ddf3b86" 56 | 57 | assert-plus@^0.2.0: 58 | version "0.2.0" 59 | resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-0.2.0.tgz#d74e1b87e7affc0db8aadb7021f3fe48101ab234" 60 | 61 | assert-plus@^1.0.0: 62 | version "1.0.0" 63 | resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-1.0.0.tgz#f12e0f3c5d77b0b1cdd9146942e4e96c1e4dd525" 64 | 65 | assertion-error@^1.0.1: 66 | version "1.0.2" 67 | resolved "https://registry.yarnpkg.com/assertion-error/-/assertion-error-1.0.2.tgz#13ca515d86206da0bac66e834dd397d87581094c" 68 | 69 | async-each@^1.0.0: 70 | version "1.0.1" 71 | resolved "https://registry.yarnpkg.com/async-each/-/async-each-1.0.1.tgz#19d386a1d9edc6e7c1c85d388aedbcc56d33602d" 72 | 73 | asynckit@^0.4.0: 74 | version "0.4.0" 75 | resolved "https://registry.yarnpkg.com/asynckit/-/asynckit-0.4.0.tgz#c79ed97f7f34cb8f2ba1bc9790bcc366474b4b79" 76 | 77 | aws-sign2@~0.6.0: 78 | version "0.6.0" 79 | resolved "https://registry.yarnpkg.com/aws-sign2/-/aws-sign2-0.6.0.tgz#14342dd38dbcc94d0e5b87d763cd63612c0e794f" 80 | 81 | aws4@^1.2.1: 82 | version "1.5.0" 83 | resolved "https://registry.yarnpkg.com/aws4/-/aws4-1.5.0.tgz#0a29ffb79c31c9e712eeb087e8e7a64b4a56d755" 84 | 85 | babel-cli@^6.22.2: 86 | version "6.22.2" 87 | resolved "https://registry.yarnpkg.com/babel-cli/-/babel-cli-6.22.2.tgz#3f814c8acf52759082b8fedd9627f938936ab559" 88 | dependencies: 89 | babel-core "^6.22.1" 90 | babel-polyfill "^6.22.0" 91 | babel-register "^6.22.0" 92 | babel-runtime "^6.22.0" 93 | commander "^2.8.1" 94 | convert-source-map "^1.1.0" 95 | fs-readdir-recursive "^1.0.0" 96 | glob "^7.0.0" 97 | lodash "^4.2.0" 98 | output-file-sync "^1.1.0" 99 | path-is-absolute "^1.0.0" 100 | slash "^1.0.0" 101 | source-map "^0.5.0" 102 | v8flags "^2.0.10" 103 | optionalDependencies: 104 | chokidar "^1.6.1" 105 | 106 | babel-code-frame@^6.22.0: 107 | version "6.22.0" 108 | resolved "https://registry.yarnpkg.com/babel-code-frame/-/babel-code-frame-6.22.0.tgz#027620bee567a88c32561574e7fd0801d33118e4" 109 | dependencies: 110 | chalk "^1.1.0" 111 | esutils "^2.0.2" 112 | js-tokens "^3.0.0" 113 | 114 | babel-core@^6.22.0, babel-core@^6.22.1: 115 | version "6.22.1" 116 | resolved "https://registry.yarnpkg.com/babel-core/-/babel-core-6.22.1.tgz#9c5fd658ba1772d28d721f6d25d968fc7ae21648" 117 | dependencies: 118 | babel-code-frame "^6.22.0" 119 | babel-generator "^6.22.0" 120 | babel-helpers "^6.22.0" 121 | babel-messages "^6.22.0" 122 | babel-register "^6.22.0" 123 | babel-runtime "^6.22.0" 124 | babel-template "^6.22.0" 125 | babel-traverse "^6.22.1" 126 | babel-types "^6.22.0" 127 | babylon "^6.11.0" 128 | convert-source-map "^1.1.0" 129 | debug "^2.1.1" 130 | json5 "^0.5.0" 131 | lodash "^4.2.0" 132 | minimatch "^3.0.2" 133 | path-is-absolute "^1.0.0" 134 | private "^0.1.6" 135 | slash "^1.0.0" 136 | source-map "^0.5.0" 137 | 138 | babel-generator@^6.22.0: 139 | version "6.22.0" 140 | resolved "https://registry.yarnpkg.com/babel-generator/-/babel-generator-6.22.0.tgz#d642bf4961911a8adc7c692b0c9297f325cda805" 141 | dependencies: 142 | babel-messages "^6.22.0" 143 | babel-runtime "^6.22.0" 144 | babel-types "^6.22.0" 145 | detect-indent "^4.0.0" 146 | jsesc "^1.3.0" 147 | lodash "^4.2.0" 148 | source-map "^0.5.0" 149 | 150 | babel-helpers@^6.22.0: 151 | version "6.22.0" 152 | resolved "https://registry.yarnpkg.com/babel-helpers/-/babel-helpers-6.22.0.tgz#d275f55f2252b8101bff07bc0c556deda657392c" 153 | dependencies: 154 | babel-runtime "^6.22.0" 155 | babel-template "^6.22.0" 156 | 157 | babel-messages@^6.22.0: 158 | version "6.22.0" 159 | resolved "https://registry.yarnpkg.com/babel-messages/-/babel-messages-6.22.0.tgz#36066a214f1217e4ed4164867669ecb39e3ea575" 160 | dependencies: 161 | babel-runtime "^6.22.0" 162 | 163 | babel-polyfill@^6.22.0: 164 | version "6.22.0" 165 | resolved "https://registry.yarnpkg.com/babel-polyfill/-/babel-polyfill-6.22.0.tgz#1ac99ebdcc6ba4db1e2618c387b2084a82154a3b" 166 | dependencies: 167 | babel-runtime "^6.22.0" 168 | core-js "^2.4.0" 169 | regenerator-runtime "^0.10.0" 170 | 171 | babel-register@^6.22.0: 172 | version "6.22.0" 173 | resolved "https://registry.yarnpkg.com/babel-register/-/babel-register-6.22.0.tgz#a61dd83975f9ca4a9e7d6eff3059494cd5ea4c63" 174 | dependencies: 175 | babel-core "^6.22.0" 176 | babel-runtime "^6.22.0" 177 | core-js "^2.4.0" 178 | home-or-tmp "^2.0.0" 179 | lodash "^4.2.0" 180 | mkdirp "^0.5.1" 181 | source-map-support "^0.4.2" 182 | 183 | babel-runtime@^6.22.0: 184 | version "6.22.0" 185 | resolved "https://registry.yarnpkg.com/babel-runtime/-/babel-runtime-6.22.0.tgz#1cf8b4ac67c77a4ddb0db2ae1f74de52ac4ca611" 186 | dependencies: 187 | core-js "^2.4.0" 188 | regenerator-runtime "^0.10.0" 189 | 190 | babel-template@^6.22.0: 191 | version "6.22.0" 192 | resolved "https://registry.yarnpkg.com/babel-template/-/babel-template-6.22.0.tgz#403d110905a4626b317a2a1fcb8f3b73204b2edb" 193 | dependencies: 194 | babel-runtime "^6.22.0" 195 | babel-traverse "^6.22.0" 196 | babel-types "^6.22.0" 197 | babylon "^6.11.0" 198 | lodash "^4.2.0" 199 | 200 | babel-traverse@^6.22.0, babel-traverse@^6.22.1: 201 | version "6.22.1" 202 | resolved "https://registry.yarnpkg.com/babel-traverse/-/babel-traverse-6.22.1.tgz#3b95cd6b7427d6f1f757704908f2fc9748a5f59f" 203 | dependencies: 204 | babel-code-frame "^6.22.0" 205 | babel-messages "^6.22.0" 206 | babel-runtime "^6.22.0" 207 | babel-types "^6.22.0" 208 | babylon "^6.15.0" 209 | debug "^2.2.0" 210 | globals "^9.0.0" 211 | invariant "^2.2.0" 212 | lodash "^4.2.0" 213 | 214 | babel-types@^6.22.0: 215 | version "6.22.0" 216 | resolved "https://registry.yarnpkg.com/babel-types/-/babel-types-6.22.0.tgz#2a447e8d0ea25d2512409e4175479fd78cc8b1db" 217 | dependencies: 218 | babel-runtime "^6.22.0" 219 | esutils "^2.0.2" 220 | lodash "^4.2.0" 221 | to-fast-properties "^1.0.1" 222 | 223 | babylon@^6.11.0, babylon@^6.15.0: 224 | version "6.15.0" 225 | resolved "https://registry.yarnpkg.com/babylon/-/babylon-6.15.0.tgz#ba65cfa1a80e1759b0e89fb562e27dccae70348e" 226 | 227 | balanced-match@^0.4.1: 228 | version "0.4.2" 229 | resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-0.4.2.tgz#cb3f3e3c732dc0f01ee70b403f302e61d7709838" 230 | 231 | bcrypt-pbkdf@^1.0.0: 232 | version "1.0.0" 233 | resolved "https://registry.yarnpkg.com/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.0.tgz#3ca76b85241c7170bf7d9703e7b9aa74630040d4" 234 | dependencies: 235 | tweetnacl "^0.14.3" 236 | 237 | binary-extensions@^1.0.0: 238 | version "1.8.0" 239 | resolved "https://registry.yarnpkg.com/binary-extensions/-/binary-extensions-1.8.0.tgz#48ec8d16df4377eae5fa5884682480af4d95c774" 240 | 241 | block-stream@*: 242 | version "0.0.9" 243 | resolved "https://registry.yarnpkg.com/block-stream/-/block-stream-0.0.9.tgz#13ebfe778a03205cfe03751481ebb4b3300c126a" 244 | dependencies: 245 | inherits "~2.0.0" 246 | 247 | boom@2.x.x: 248 | version "2.10.1" 249 | resolved "https://registry.yarnpkg.com/boom/-/boom-2.10.1.tgz#39c8918ceff5799f83f9492a848f625add0c766f" 250 | dependencies: 251 | hoek "2.x.x" 252 | 253 | brace-expansion@^1.0.0: 254 | version "1.1.6" 255 | resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.6.tgz#7197d7eaa9b87e648390ea61fc66c84427420df9" 256 | dependencies: 257 | balanced-match "^0.4.1" 258 | concat-map "0.0.1" 259 | 260 | braces@^1.8.2: 261 | version "1.8.5" 262 | resolved "https://registry.yarnpkg.com/braces/-/braces-1.8.5.tgz#ba77962e12dff969d6b76711e914b737857bf6a7" 263 | dependencies: 264 | expand-range "^1.8.1" 265 | preserve "^0.2.0" 266 | repeat-element "^1.1.2" 267 | 268 | browser-stdout@1.3.0: 269 | version "1.3.0" 270 | resolved "https://registry.yarnpkg.com/browser-stdout/-/browser-stdout-1.3.0.tgz#f351d32969d32fa5d7a5567154263d928ae3bd1f" 271 | 272 | buffer-shims@^1.0.0: 273 | version "1.0.0" 274 | resolved "https://registry.yarnpkg.com/buffer-shims/-/buffer-shims-1.0.0.tgz#9978ce317388c649ad8793028c3477ef044a8b51" 275 | 276 | caseless@~0.11.0: 277 | version "0.11.0" 278 | resolved "https://registry.yarnpkg.com/caseless/-/caseless-0.11.0.tgz#715b96ea9841593cc33067923f5ec60ebda4f7d7" 279 | 280 | chai@^3.5.0: 281 | version "3.5.0" 282 | resolved "https://registry.yarnpkg.com/chai/-/chai-3.5.0.tgz#4d02637b067fe958bdbfdd3a40ec56fef7373247" 283 | dependencies: 284 | assertion-error "^1.0.1" 285 | deep-eql "^0.1.3" 286 | type-detect "^1.0.0" 287 | 288 | chalk@^1.1.0, chalk@^1.1.1: 289 | version "1.1.3" 290 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-1.1.3.tgz#a8115c55e4a702fe4d150abd3872822a7e09fc98" 291 | dependencies: 292 | ansi-styles "^2.2.1" 293 | escape-string-regexp "^1.0.2" 294 | has-ansi "^2.0.0" 295 | strip-ansi "^3.0.0" 296 | supports-color "^2.0.0" 297 | 298 | chokidar@^1.6.1: 299 | version "1.6.1" 300 | resolved "https://registry.yarnpkg.com/chokidar/-/chokidar-1.6.1.tgz#2f4447ab5e96e50fb3d789fd90d4c72e0e4c70c2" 301 | dependencies: 302 | anymatch "^1.3.0" 303 | async-each "^1.0.0" 304 | glob-parent "^2.0.0" 305 | inherits "^2.0.1" 306 | is-binary-path "^1.0.0" 307 | is-glob "^2.0.0" 308 | path-is-absolute "^1.0.0" 309 | readdirp "^2.0.0" 310 | optionalDependencies: 311 | fsevents "^1.0.0" 312 | 313 | code-point-at@^1.0.0: 314 | version "1.1.0" 315 | resolved "https://registry.yarnpkg.com/code-point-at/-/code-point-at-1.1.0.tgz#0d070b4d043a5bea33a2f1a40e2edb3d9a4ccf77" 316 | 317 | combined-stream@^1.0.5, combined-stream@~1.0.5: 318 | version "1.0.5" 319 | resolved "https://registry.yarnpkg.com/combined-stream/-/combined-stream-1.0.5.tgz#938370a57b4a51dea2c77c15d5c5fdf895164009" 320 | dependencies: 321 | delayed-stream "~1.0.0" 322 | 323 | commander@2.9.0, commander@^2.8.1, commander@^2.9.0: 324 | version "2.9.0" 325 | resolved "https://registry.yarnpkg.com/commander/-/commander-2.9.0.tgz#9c99094176e12240cb22d6c5146098400fe0f7d4" 326 | dependencies: 327 | graceful-readlink ">= 1.0.0" 328 | 329 | concat-map@0.0.1: 330 | version "0.0.1" 331 | resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b" 332 | 333 | console-control-strings@^1.0.0, console-control-strings@~1.1.0: 334 | version "1.1.0" 335 | resolved "https://registry.yarnpkg.com/console-control-strings/-/console-control-strings-1.1.0.tgz#3d7cf4464db6446ea644bf4b39507f9851008e8e" 336 | 337 | convert-source-map@^1.1.0: 338 | version "1.3.0" 339 | resolved "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-1.3.0.tgz#e9f3e9c6e2728efc2676696a70eb382f73106a67" 340 | 341 | core-js@^2.4.0: 342 | version "2.4.1" 343 | resolved "https://registry.yarnpkg.com/core-js/-/core-js-2.4.1.tgz#4de911e667b0eae9124e34254b53aea6fc618d3e" 344 | 345 | core-util-is@~1.0.0: 346 | version "1.0.2" 347 | resolved "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.2.tgz#b5fd54220aa2bc5ab57aab7140c940754503c1a7" 348 | 349 | cryptiles@2.x.x: 350 | version "2.0.5" 351 | resolved "https://registry.yarnpkg.com/cryptiles/-/cryptiles-2.0.5.tgz#3bdfecdc608147c1c67202fa291e7dca59eaa3b8" 352 | dependencies: 353 | boom "2.x.x" 354 | 355 | dashdash@^1.12.0: 356 | version "1.14.1" 357 | resolved "https://registry.yarnpkg.com/dashdash/-/dashdash-1.14.1.tgz#853cfa0f7cbe2fed5de20326b8dd581035f6e2f0" 358 | dependencies: 359 | assert-plus "^1.0.0" 360 | 361 | debug@2.2.0, debug@^2.1.1, debug@^2.2.0, debug@~2.2.0: 362 | version "2.2.0" 363 | resolved "https://registry.yarnpkg.com/debug/-/debug-2.2.0.tgz#f87057e995b1a1f6ae6a4960664137bc56f039da" 364 | dependencies: 365 | ms "0.7.1" 366 | 367 | deep-eql@^0.1.3: 368 | version "0.1.3" 369 | resolved "https://registry.yarnpkg.com/deep-eql/-/deep-eql-0.1.3.tgz#ef558acab8de25206cd713906d74e56930eb69f2" 370 | dependencies: 371 | type-detect "0.1.1" 372 | 373 | deep-extend@~0.4.0: 374 | version "0.4.1" 375 | resolved "https://registry.yarnpkg.com/deep-extend/-/deep-extend-0.4.1.tgz#efe4113d08085f4e6f9687759810f807469e2253" 376 | 377 | delayed-stream@~1.0.0: 378 | version "1.0.0" 379 | resolved "https://registry.yarnpkg.com/delayed-stream/-/delayed-stream-1.0.0.tgz#df3ae199acadfb7d440aaae0b29e2272b24ec619" 380 | 381 | delegates@^1.0.0: 382 | version "1.0.0" 383 | resolved "https://registry.yarnpkg.com/delegates/-/delegates-1.0.0.tgz#84c6e159b81904fdca59a0ef44cd870d31250f9a" 384 | 385 | detect-indent@^4.0.0: 386 | version "4.0.0" 387 | resolved "https://registry.yarnpkg.com/detect-indent/-/detect-indent-4.0.0.tgz#f76d064352cdf43a1cb6ce619c4ee3a9475de208" 388 | dependencies: 389 | repeating "^2.0.0" 390 | 391 | diff@1.4.0: 392 | version "1.4.0" 393 | resolved "https://registry.yarnpkg.com/diff/-/diff-1.4.0.tgz#7f28d2eb9ee7b15a97efd89ce63dcfdaa3ccbabf" 394 | 395 | ecc-jsbn@~0.1.1: 396 | version "0.1.1" 397 | resolved "https://registry.yarnpkg.com/ecc-jsbn/-/ecc-jsbn-0.1.1.tgz#0fc73a9ed5f0d53c38193398523ef7e543777505" 398 | dependencies: 399 | jsbn "~0.1.0" 400 | 401 | escape-string-regexp@1.0.5, escape-string-regexp@^1.0.2: 402 | version "1.0.5" 403 | resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4" 404 | 405 | esutils@^2.0.2: 406 | version "2.0.2" 407 | resolved "https://registry.yarnpkg.com/esutils/-/esutils-2.0.2.tgz#0abf4f1caa5bcb1f7a9d8acc6dea4faaa04bac9b" 408 | 409 | expand-brackets@^0.1.4: 410 | version "0.1.5" 411 | resolved "https://registry.yarnpkg.com/expand-brackets/-/expand-brackets-0.1.5.tgz#df07284e342a807cd733ac5af72411e581d1177b" 412 | dependencies: 413 | is-posix-bracket "^0.1.0" 414 | 415 | expand-range@^1.8.1: 416 | version "1.8.2" 417 | resolved "https://registry.yarnpkg.com/expand-range/-/expand-range-1.8.2.tgz#a299effd335fe2721ebae8e257ec79644fc85337" 418 | dependencies: 419 | fill-range "^2.1.0" 420 | 421 | extend@~3.0.0: 422 | version "3.0.0" 423 | resolved "https://registry.yarnpkg.com/extend/-/extend-3.0.0.tgz#5a474353b9f3353ddd8176dfd37b91c83a46f1d4" 424 | 425 | extglob@^0.3.1: 426 | version "0.3.2" 427 | resolved "https://registry.yarnpkg.com/extglob/-/extglob-0.3.2.tgz#2e18ff3d2f49ab2765cec9023f011daa8d8349a1" 428 | dependencies: 429 | is-extglob "^1.0.0" 430 | 431 | extsprintf@1.0.2: 432 | version "1.0.2" 433 | resolved "https://registry.yarnpkg.com/extsprintf/-/extsprintf-1.0.2.tgz#e1080e0658e300b06294990cc70e1502235fd550" 434 | 435 | filename-regex@^2.0.0: 436 | version "2.0.0" 437 | resolved "https://registry.yarnpkg.com/filename-regex/-/filename-regex-2.0.0.tgz#996e3e80479b98b9897f15a8a58b3d084e926775" 438 | 439 | fill-range@^2.1.0: 440 | version "2.2.3" 441 | resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-2.2.3.tgz#50b77dfd7e469bc7492470963699fe7a8485a723" 442 | dependencies: 443 | is-number "^2.1.0" 444 | isobject "^2.0.0" 445 | randomatic "^1.1.3" 446 | repeat-element "^1.1.2" 447 | repeat-string "^1.5.2" 448 | 449 | for-in@^0.1.5: 450 | version "0.1.6" 451 | resolved "https://registry.yarnpkg.com/for-in/-/for-in-0.1.6.tgz#c9f96e89bfad18a545af5ec3ed352a1d9e5b4dc8" 452 | 453 | for-own@^0.1.4: 454 | version "0.1.4" 455 | resolved "https://registry.yarnpkg.com/for-own/-/for-own-0.1.4.tgz#0149b41a39088c7515f51ebe1c1386d45f935072" 456 | dependencies: 457 | for-in "^0.1.5" 458 | 459 | forever-agent@~0.6.1: 460 | version "0.6.1" 461 | resolved "https://registry.yarnpkg.com/forever-agent/-/forever-agent-0.6.1.tgz#fbc71f0c41adeb37f96c577ad1ed42d8fdacca91" 462 | 463 | form-data@~2.1.1: 464 | version "2.1.2" 465 | resolved "https://registry.yarnpkg.com/form-data/-/form-data-2.1.2.tgz#89c3534008b97eada4cbb157d58f6f5df025eae4" 466 | dependencies: 467 | asynckit "^0.4.0" 468 | combined-stream "^1.0.5" 469 | mime-types "^2.1.12" 470 | 471 | fs-readdir-recursive@^1.0.0: 472 | version "1.0.0" 473 | resolved "https://registry.yarnpkg.com/fs-readdir-recursive/-/fs-readdir-recursive-1.0.0.tgz#8cd1745c8b4f8a29c8caec392476921ba195f560" 474 | 475 | fs.realpath@^1.0.0: 476 | version "1.0.0" 477 | resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f" 478 | 479 | fsevents@^1.0.0: 480 | version "1.0.17" 481 | resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-1.0.17.tgz#8537f3f12272678765b4fd6528c0f1f66f8f4558" 482 | dependencies: 483 | nan "^2.3.0" 484 | node-pre-gyp "^0.6.29" 485 | 486 | fstream-ignore@~1.0.5: 487 | version "1.0.5" 488 | resolved "https://registry.yarnpkg.com/fstream-ignore/-/fstream-ignore-1.0.5.tgz#9c31dae34767018fe1d249b24dada67d092da105" 489 | dependencies: 490 | fstream "^1.0.0" 491 | inherits "2" 492 | minimatch "^3.0.0" 493 | 494 | fstream@^1.0.0, fstream@^1.0.2, fstream@~1.0.10: 495 | version "1.0.10" 496 | resolved "https://registry.yarnpkg.com/fstream/-/fstream-1.0.10.tgz#604e8a92fe26ffd9f6fae30399d4984e1ab22822" 497 | dependencies: 498 | graceful-fs "^4.1.2" 499 | inherits "~2.0.0" 500 | mkdirp ">=0.5 0" 501 | rimraf "2" 502 | 503 | gauge@~2.7.1: 504 | version "2.7.2" 505 | resolved "https://registry.yarnpkg.com/gauge/-/gauge-2.7.2.tgz#15cecc31b02d05345a5d6b0e171cdb3ad2307774" 506 | dependencies: 507 | aproba "^1.0.3" 508 | console-control-strings "^1.0.0" 509 | has-unicode "^2.0.0" 510 | object-assign "^4.1.0" 511 | signal-exit "^3.0.0" 512 | string-width "^1.0.1" 513 | strip-ansi "^3.0.1" 514 | supports-color "^0.2.0" 515 | wide-align "^1.1.0" 516 | 517 | generate-function@^2.0.0: 518 | version "2.0.0" 519 | resolved "https://registry.yarnpkg.com/generate-function/-/generate-function-2.0.0.tgz#6858fe7c0969b7d4e9093337647ac79f60dfbe74" 520 | 521 | generate-object-property@^1.1.0: 522 | version "1.2.0" 523 | resolved "https://registry.yarnpkg.com/generate-object-property/-/generate-object-property-1.2.0.tgz#9c0e1c40308ce804f4783618b937fa88f99d50d0" 524 | dependencies: 525 | is-property "^1.0.0" 526 | 527 | getpass@^0.1.1: 528 | version "0.1.6" 529 | resolved "https://registry.yarnpkg.com/getpass/-/getpass-0.1.6.tgz#283ffd9fc1256840875311c1b60e8c40187110e6" 530 | dependencies: 531 | assert-plus "^1.0.0" 532 | 533 | glob-base@^0.3.0: 534 | version "0.3.0" 535 | resolved "https://registry.yarnpkg.com/glob-base/-/glob-base-0.3.0.tgz#dbb164f6221b1c0b1ccf82aea328b497df0ea3c4" 536 | dependencies: 537 | glob-parent "^2.0.0" 538 | is-glob "^2.0.0" 539 | 540 | glob-parent@^2.0.0: 541 | version "2.0.0" 542 | resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-2.0.0.tgz#81383d72db054fcccf5336daa902f182f6edbb28" 543 | dependencies: 544 | is-glob "^2.0.0" 545 | 546 | glob@7.0.5, glob@^7.0.0, glob@^7.0.5: 547 | version "7.0.5" 548 | resolved "https://registry.yarnpkg.com/glob/-/glob-7.0.5.tgz#b4202a69099bbb4d292a7c1b95b6682b67ebdc95" 549 | dependencies: 550 | fs.realpath "^1.0.0" 551 | inflight "^1.0.4" 552 | inherits "2" 553 | minimatch "^3.0.2" 554 | once "^1.3.0" 555 | path-is-absolute "^1.0.0" 556 | 557 | globals@^9.0.0: 558 | version "9.14.0" 559 | resolved "https://registry.yarnpkg.com/globals/-/globals-9.14.0.tgz#8859936af0038741263053b39d0e76ca241e4034" 560 | 561 | graceful-fs@^4.1.2, graceful-fs@^4.1.4: 562 | version "4.1.11" 563 | resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.1.11.tgz#0e8bdfe4d1ddb8854d64e04ea7c00e2a026e5658" 564 | 565 | "graceful-readlink@>= 1.0.0": 566 | version "1.0.1" 567 | resolved "https://registry.yarnpkg.com/graceful-readlink/-/graceful-readlink-1.0.1.tgz#4cafad76bc62f02fa039b2f94e9a3dd3a391a725" 568 | 569 | growl@1.9.2: 570 | version "1.9.2" 571 | resolved "https://registry.yarnpkg.com/growl/-/growl-1.9.2.tgz#0ea7743715db8d8de2c5ede1775e1b45ac85c02f" 572 | 573 | har-validator@~2.0.6: 574 | version "2.0.6" 575 | resolved "https://registry.yarnpkg.com/har-validator/-/har-validator-2.0.6.tgz#cdcbc08188265ad119b6a5a7c8ab70eecfb5d27d" 576 | dependencies: 577 | chalk "^1.1.1" 578 | commander "^2.9.0" 579 | is-my-json-valid "^2.12.4" 580 | pinkie-promise "^2.0.0" 581 | 582 | has-ansi@^2.0.0: 583 | version "2.0.0" 584 | resolved "https://registry.yarnpkg.com/has-ansi/-/has-ansi-2.0.0.tgz#34f5049ce1ecdf2b0649af3ef24e45ed35416d91" 585 | dependencies: 586 | ansi-regex "^2.0.0" 587 | 588 | has-flag@^1.0.0: 589 | version "1.0.0" 590 | resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-1.0.0.tgz#9d9e793165ce017a00f00418c43f942a7b1d11fa" 591 | 592 | has-unicode@^2.0.0: 593 | version "2.0.1" 594 | resolved "https://registry.yarnpkg.com/has-unicode/-/has-unicode-2.0.1.tgz#e0e6fe6a28cf51138855e086d1691e771de2a8b9" 595 | 596 | hawk@~3.1.3: 597 | version "3.1.3" 598 | resolved "https://registry.yarnpkg.com/hawk/-/hawk-3.1.3.tgz#078444bd7c1640b0fe540d2c9b73d59678e8e1c4" 599 | dependencies: 600 | boom "2.x.x" 601 | cryptiles "2.x.x" 602 | hoek "2.x.x" 603 | sntp "1.x.x" 604 | 605 | hoek@2.x.x: 606 | version "2.16.3" 607 | resolved "https://registry.yarnpkg.com/hoek/-/hoek-2.16.3.tgz#20bb7403d3cea398e91dc4710a8ff1b8274a25ed" 608 | 609 | home-or-tmp@^2.0.0: 610 | version "2.0.0" 611 | resolved "https://registry.yarnpkg.com/home-or-tmp/-/home-or-tmp-2.0.0.tgz#e36c3f2d2cae7d746a857e38d18d5f32a7882db8" 612 | dependencies: 613 | os-homedir "^1.0.0" 614 | os-tmpdir "^1.0.1" 615 | 616 | http-signature@~1.1.0: 617 | version "1.1.1" 618 | resolved "https://registry.yarnpkg.com/http-signature/-/http-signature-1.1.1.tgz#df72e267066cd0ac67fb76adf8e134a8fbcf91bf" 619 | dependencies: 620 | assert-plus "^0.2.0" 621 | jsprim "^1.2.2" 622 | sshpk "^1.7.0" 623 | 624 | inflight@^1.0.4: 625 | version "1.0.6" 626 | resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9" 627 | dependencies: 628 | once "^1.3.0" 629 | wrappy "1" 630 | 631 | inherits@2, inherits@^2.0.1, inherits@~2.0.0, inherits@~2.0.1: 632 | version "2.0.3" 633 | resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.3.tgz#633c2c83e3da42a502f52466022480f4208261de" 634 | 635 | ini@~1.3.0: 636 | version "1.3.4" 637 | resolved "https://registry.yarnpkg.com/ini/-/ini-1.3.4.tgz#0537cb79daf59b59a1a517dff706c86ec039162e" 638 | 639 | invariant@^2.2.0: 640 | version "2.2.2" 641 | resolved "https://registry.yarnpkg.com/invariant/-/invariant-2.2.2.tgz#9e1f56ac0acdb6bf303306f338be3b204ae60360" 642 | dependencies: 643 | loose-envify "^1.0.0" 644 | 645 | is-binary-path@^1.0.0: 646 | version "1.0.1" 647 | resolved "https://registry.yarnpkg.com/is-binary-path/-/is-binary-path-1.0.1.tgz#75f16642b480f187a711c814161fd3a4a7655898" 648 | dependencies: 649 | binary-extensions "^1.0.0" 650 | 651 | is-buffer@^1.0.2: 652 | version "1.1.4" 653 | resolved "https://registry.yarnpkg.com/is-buffer/-/is-buffer-1.1.4.tgz#cfc86ccd5dc5a52fa80489111c6920c457e2d98b" 654 | 655 | is-dotfile@^1.0.0: 656 | version "1.0.2" 657 | resolved "https://registry.yarnpkg.com/is-dotfile/-/is-dotfile-1.0.2.tgz#2c132383f39199f8edc268ca01b9b007d205cc4d" 658 | 659 | is-equal-shallow@^0.1.3: 660 | version "0.1.3" 661 | resolved "https://registry.yarnpkg.com/is-equal-shallow/-/is-equal-shallow-0.1.3.tgz#2238098fc221de0bcfa5d9eac4c45d638aa1c534" 662 | dependencies: 663 | is-primitive "^2.0.0" 664 | 665 | is-extendable@^0.1.1: 666 | version "0.1.1" 667 | resolved "https://registry.yarnpkg.com/is-extendable/-/is-extendable-0.1.1.tgz#62b110e289a471418e3ec36a617d472e301dfc89" 668 | 669 | is-extglob@^1.0.0: 670 | version "1.0.0" 671 | resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-1.0.0.tgz#ac468177c4943405a092fc8f29760c6ffc6206c0" 672 | 673 | is-finite@^1.0.0: 674 | version "1.0.2" 675 | resolved "https://registry.yarnpkg.com/is-finite/-/is-finite-1.0.2.tgz#cc6677695602be550ef11e8b4aa6305342b6d0aa" 676 | dependencies: 677 | number-is-nan "^1.0.0" 678 | 679 | is-fullwidth-code-point@^1.0.0: 680 | version "1.0.0" 681 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz#ef9e31386f031a7f0d643af82fde50c457ef00cb" 682 | dependencies: 683 | number-is-nan "^1.0.0" 684 | 685 | is-glob@^2.0.0, is-glob@^2.0.1: 686 | version "2.0.1" 687 | resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-2.0.1.tgz#d096f926a3ded5600f3fdfd91198cb0888c2d863" 688 | dependencies: 689 | is-extglob "^1.0.0" 690 | 691 | is-my-json-valid@^2.12.4: 692 | version "2.15.0" 693 | resolved "https://registry.yarnpkg.com/is-my-json-valid/-/is-my-json-valid-2.15.0.tgz#936edda3ca3c211fd98f3b2d3e08da43f7b2915b" 694 | dependencies: 695 | generate-function "^2.0.0" 696 | generate-object-property "^1.1.0" 697 | jsonpointer "^4.0.0" 698 | xtend "^4.0.0" 699 | 700 | is-number@^2.0.2, is-number@^2.1.0: 701 | version "2.1.0" 702 | resolved "https://registry.yarnpkg.com/is-number/-/is-number-2.1.0.tgz#01fcbbb393463a548f2f466cce16dece49db908f" 703 | dependencies: 704 | kind-of "^3.0.2" 705 | 706 | is-posix-bracket@^0.1.0: 707 | version "0.1.1" 708 | resolved "http://registry.npmjs.org/is-posix-bracket/-/is-posix-bracket-0.1.1.tgz#3334dc79774368e92f016e6fbc0a88f5cd6e6bc4" 709 | 710 | is-primitive@^2.0.0: 711 | version "2.0.0" 712 | resolved "https://registry.yarnpkg.com/is-primitive/-/is-primitive-2.0.0.tgz#207bab91638499c07b2adf240a41a87210034575" 713 | 714 | is-property@^1.0.0: 715 | version "1.0.2" 716 | resolved "https://registry.yarnpkg.com/is-property/-/is-property-1.0.2.tgz#57fe1c4e48474edd65b09911f26b1cd4095dda84" 717 | 718 | is-typedarray@~1.0.0: 719 | version "1.0.0" 720 | resolved "https://registry.yarnpkg.com/is-typedarray/-/is-typedarray-1.0.0.tgz#e479c80858df0c1b11ddda6940f96011fcda4a9a" 721 | 722 | isarray@1.0.0, isarray@~1.0.0: 723 | version "1.0.0" 724 | resolved "https://registry.yarnpkg.com/isarray/-/isarray-1.0.0.tgz#bb935d48582cba168c06834957a54a3e07124f11" 725 | 726 | isobject@^2.0.0: 727 | version "2.1.0" 728 | resolved "https://registry.yarnpkg.com/isobject/-/isobject-2.1.0.tgz#f065561096a3f1da2ef46272f815c840d87e0c89" 729 | dependencies: 730 | isarray "1.0.0" 731 | 732 | isstream@~0.1.2: 733 | version "0.1.2" 734 | resolved "https://registry.yarnpkg.com/isstream/-/isstream-0.1.2.tgz#47e63f7af55afa6f92e1500e690eb8b8529c099a" 735 | 736 | jodid25519@^1.0.0: 737 | version "1.0.2" 738 | resolved "https://registry.yarnpkg.com/jodid25519/-/jodid25519-1.0.2.tgz#06d4912255093419477d425633606e0e90782967" 739 | dependencies: 740 | jsbn "~0.1.0" 741 | 742 | js-tokens@^3.0.0: 743 | version "3.0.0" 744 | resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-3.0.0.tgz#a2f2a969caae142fb3cd56228358c89366957bd1" 745 | 746 | jsbn@~0.1.0: 747 | version "0.1.0" 748 | resolved "https://registry.yarnpkg.com/jsbn/-/jsbn-0.1.0.tgz#650987da0dd74f4ebf5a11377a2aa2d273e97dfd" 749 | 750 | jsesc@^1.3.0: 751 | version "1.3.0" 752 | resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-1.3.0.tgz#46c3fec8c1892b12b0833db9bc7622176dbab34b" 753 | 754 | json-schema@0.2.3: 755 | version "0.2.3" 756 | resolved "https://registry.yarnpkg.com/json-schema/-/json-schema-0.2.3.tgz#b480c892e59a2f05954ce727bd3f2a4e882f9e13" 757 | 758 | json-stringify-safe@~5.0.1: 759 | version "5.0.1" 760 | resolved "https://registry.yarnpkg.com/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz#1296a2d58fd45f19a0f6ce01d65701e2c735b6eb" 761 | 762 | json3@3.3.2: 763 | version "3.3.2" 764 | resolved "https://registry.yarnpkg.com/json3/-/json3-3.3.2.tgz#3c0434743df93e2f5c42aee7b19bcb483575f4e1" 765 | 766 | json5@^0.5.0: 767 | version "0.5.1" 768 | resolved "https://registry.yarnpkg.com/json5/-/json5-0.5.1.tgz#1eade7acc012034ad84e2396767ead9fa5495821" 769 | 770 | jsonpointer@^4.0.0: 771 | version "4.0.1" 772 | resolved "https://registry.yarnpkg.com/jsonpointer/-/jsonpointer-4.0.1.tgz#4fd92cb34e0e9db3c89c8622ecf51f9b978c6cb9" 773 | 774 | jsprim@^1.2.2: 775 | version "1.3.1" 776 | resolved "https://registry.yarnpkg.com/jsprim/-/jsprim-1.3.1.tgz#2a7256f70412a29ee3670aaca625994c4dcff252" 777 | dependencies: 778 | extsprintf "1.0.2" 779 | json-schema "0.2.3" 780 | verror "1.3.6" 781 | 782 | kind-of@^3.0.2: 783 | version "3.1.0" 784 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-3.1.0.tgz#475d698a5e49ff5e53d14e3e732429dc8bf4cf47" 785 | dependencies: 786 | is-buffer "^1.0.2" 787 | 788 | lodash._baseassign@^3.0.0: 789 | version "3.2.0" 790 | resolved "https://registry.yarnpkg.com/lodash._baseassign/-/lodash._baseassign-3.2.0.tgz#8c38a099500f215ad09e59f1722fd0c52bfe0a4e" 791 | dependencies: 792 | lodash._basecopy "^3.0.0" 793 | lodash.keys "^3.0.0" 794 | 795 | lodash._basecopy@^3.0.0: 796 | version "3.0.1" 797 | resolved "https://registry.yarnpkg.com/lodash._basecopy/-/lodash._basecopy-3.0.1.tgz#8da0e6a876cf344c0ad8a54882111dd3c5c7ca36" 798 | 799 | lodash._basecreate@^3.0.0: 800 | version "3.0.3" 801 | resolved "https://registry.yarnpkg.com/lodash._basecreate/-/lodash._basecreate-3.0.3.tgz#1bc661614daa7fc311b7d03bf16806a0213cf821" 802 | 803 | lodash._getnative@^3.0.0: 804 | version "3.9.1" 805 | resolved "https://registry.yarnpkg.com/lodash._getnative/-/lodash._getnative-3.9.1.tgz#570bc7dede46d61cdcde687d65d3eecbaa3aaff5" 806 | 807 | lodash._isiterateecall@^3.0.0: 808 | version "3.0.9" 809 | resolved "https://registry.yarnpkg.com/lodash._isiterateecall/-/lodash._isiterateecall-3.0.9.tgz#5203ad7ba425fae842460e696db9cf3e6aac057c" 810 | 811 | lodash.create@3.1.1: 812 | version "3.1.1" 813 | resolved "https://registry.yarnpkg.com/lodash.create/-/lodash.create-3.1.1.tgz#d7f2849f0dbda7e04682bb8cd72ab022461debe7" 814 | dependencies: 815 | lodash._baseassign "^3.0.0" 816 | lodash._basecreate "^3.0.0" 817 | lodash._isiterateecall "^3.0.0" 818 | 819 | lodash.isarguments@^3.0.0: 820 | version "3.1.0" 821 | resolved "https://registry.yarnpkg.com/lodash.isarguments/-/lodash.isarguments-3.1.0.tgz#2f573d85c6a24289ff00663b491c1d338ff3458a" 822 | 823 | lodash.isarray@^3.0.0: 824 | version "3.0.4" 825 | resolved "https://registry.yarnpkg.com/lodash.isarray/-/lodash.isarray-3.0.4.tgz#79e4eb88c36a8122af86f844aa9bcd851b5fbb55" 826 | 827 | lodash.keys@^3.0.0: 828 | version "3.1.2" 829 | resolved "https://registry.yarnpkg.com/lodash.keys/-/lodash.keys-3.1.2.tgz#4dbc0472b156be50a0b286855d1bd0b0c656098a" 830 | dependencies: 831 | lodash._getnative "^3.0.0" 832 | lodash.isarguments "^3.0.0" 833 | lodash.isarray "^3.0.0" 834 | 835 | lodash@^4.2.0: 836 | version "4.17.4" 837 | resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.4.tgz#78203a4d1c328ae1d86dca6460e369b57f4055ae" 838 | 839 | loose-envify@^1.0.0: 840 | version "1.3.1" 841 | resolved "https://registry.yarnpkg.com/loose-envify/-/loose-envify-1.3.1.tgz#d1a8ad33fa9ce0e713d65fdd0ac8b748d478c848" 842 | dependencies: 843 | js-tokens "^3.0.0" 844 | 845 | micromatch@^2.1.5: 846 | version "2.3.11" 847 | resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-2.3.11.tgz#86677c97d1720b363431d04d0d15293bd38c1565" 848 | dependencies: 849 | arr-diff "^2.0.0" 850 | array-unique "^0.2.1" 851 | braces "^1.8.2" 852 | expand-brackets "^0.1.4" 853 | extglob "^0.3.1" 854 | filename-regex "^2.0.0" 855 | is-extglob "^1.0.0" 856 | is-glob "^2.0.1" 857 | kind-of "^3.0.2" 858 | normalize-path "^2.0.1" 859 | object.omit "^2.0.0" 860 | parse-glob "^3.0.4" 861 | regex-cache "^0.4.2" 862 | 863 | mime-db@~1.26.0: 864 | version "1.26.0" 865 | resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.26.0.tgz#eaffcd0e4fc6935cf8134da246e2e6c35305adff" 866 | 867 | mime-types@^2.1.12, mime-types@~2.1.7: 868 | version "2.1.14" 869 | resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.14.tgz#f7ef7d97583fcaf3b7d282b6f8b5679dab1e94ee" 870 | dependencies: 871 | mime-db "~1.26.0" 872 | 873 | minimatch@^3.0.0, minimatch@^3.0.2: 874 | version "3.0.3" 875 | resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.0.3.tgz#2a4e4090b96b2db06a9d7df01055a62a77c9b774" 876 | dependencies: 877 | brace-expansion "^1.0.0" 878 | 879 | minimist@0.0.8: 880 | version "0.0.8" 881 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-0.0.8.tgz#857fcabfc3397d2625b8228262e86aa7a011b05d" 882 | 883 | minimist@^1.2.0: 884 | version "1.2.0" 885 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.0.tgz#a35008b20f41383eec1fb914f4cd5df79a264284" 886 | 887 | mkdirp@0.5.1, "mkdirp@>=0.5 0", mkdirp@^0.5.1, mkdirp@~0.5.1: 888 | version "0.5.1" 889 | resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.5.1.tgz#30057438eac6cf7f8c4767f38648d6697d75c903" 890 | dependencies: 891 | minimist "0.0.8" 892 | 893 | mocha@^3.2.0: 894 | version "3.2.0" 895 | resolved "https://registry.yarnpkg.com/mocha/-/mocha-3.2.0.tgz#7dc4f45e5088075171a68896814e6ae9eb7a85e3" 896 | dependencies: 897 | browser-stdout "1.3.0" 898 | commander "2.9.0" 899 | debug "2.2.0" 900 | diff "1.4.0" 901 | escape-string-regexp "1.0.5" 902 | glob "7.0.5" 903 | growl "1.9.2" 904 | json3 "3.3.2" 905 | lodash.create "3.1.1" 906 | mkdirp "0.5.1" 907 | supports-color "3.1.2" 908 | 909 | ms@0.7.1: 910 | version "0.7.1" 911 | resolved "https://registry.yarnpkg.com/ms/-/ms-0.7.1.tgz#9cd13c03adbff25b65effde7ce864ee952017098" 912 | 913 | nan@^2.3.0: 914 | version "2.5.1" 915 | resolved "https://registry.yarnpkg.com/nan/-/nan-2.5.1.tgz#d5b01691253326a97a2bbee9e61c55d8d60351e2" 916 | 917 | node-pre-gyp@^0.6.29: 918 | version "0.6.32" 919 | resolved "https://registry.yarnpkg.com/node-pre-gyp/-/node-pre-gyp-0.6.32.tgz#fc452b376e7319b3d255f5f34853ef6fd8fe1fd5" 920 | dependencies: 921 | mkdirp "~0.5.1" 922 | nopt "~3.0.6" 923 | npmlog "^4.0.1" 924 | rc "~1.1.6" 925 | request "^2.79.0" 926 | rimraf "~2.5.4" 927 | semver "~5.3.0" 928 | tar "~2.2.1" 929 | tar-pack "~3.3.0" 930 | 931 | nopt@~3.0.6: 932 | version "3.0.6" 933 | resolved "https://registry.yarnpkg.com/nopt/-/nopt-3.0.6.tgz#c6465dbf08abcd4db359317f79ac68a646b28ff9" 934 | dependencies: 935 | abbrev "1" 936 | 937 | normalize-path@^2.0.1: 938 | version "2.0.1" 939 | resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-2.0.1.tgz#47886ac1662760d4261b7d979d241709d3ce3f7a" 940 | 941 | npmlog@^4.0.1: 942 | version "4.0.2" 943 | resolved "https://registry.yarnpkg.com/npmlog/-/npmlog-4.0.2.tgz#d03950e0e78ce1527ba26d2a7592e9348ac3e75f" 944 | dependencies: 945 | are-we-there-yet "~1.1.2" 946 | console-control-strings "~1.1.0" 947 | gauge "~2.7.1" 948 | set-blocking "~2.0.0" 949 | 950 | number-is-nan@^1.0.0: 951 | version "1.0.1" 952 | resolved "https://registry.yarnpkg.com/number-is-nan/-/number-is-nan-1.0.1.tgz#097b602b53422a522c1afb8790318336941a011d" 953 | 954 | oauth-sign@~0.8.1: 955 | version "0.8.2" 956 | resolved "https://registry.yarnpkg.com/oauth-sign/-/oauth-sign-0.8.2.tgz#46a6ab7f0aead8deae9ec0565780b7d4efeb9d43" 957 | 958 | object-assign@^4.1.0: 959 | version "4.1.1" 960 | resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863" 961 | 962 | object.omit@^2.0.0: 963 | version "2.0.1" 964 | resolved "https://registry.yarnpkg.com/object.omit/-/object.omit-2.0.1.tgz#1a9c744829f39dbb858c76ca3579ae2a54ebd1fa" 965 | dependencies: 966 | for-own "^0.1.4" 967 | is-extendable "^0.1.1" 968 | 969 | once@^1.3.0: 970 | version "1.4.0" 971 | resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1" 972 | dependencies: 973 | wrappy "1" 974 | 975 | once@~1.3.3: 976 | version "1.3.3" 977 | resolved "https://registry.yarnpkg.com/once/-/once-1.3.3.tgz#b2e261557ce4c314ec8304f3fa82663e4297ca20" 978 | dependencies: 979 | wrappy "1" 980 | 981 | os-homedir@^1.0.0: 982 | version "1.0.2" 983 | resolved "https://registry.yarnpkg.com/os-homedir/-/os-homedir-1.0.2.tgz#ffbc4988336e0e833de0c168c7ef152121aa7fb3" 984 | 985 | os-tmpdir@^1.0.1: 986 | version "1.0.2" 987 | resolved "https://registry.yarnpkg.com/os-tmpdir/-/os-tmpdir-1.0.2.tgz#bbe67406c79aa85c5cfec766fe5734555dfa1274" 988 | 989 | output-file-sync@^1.1.0: 990 | version "1.1.2" 991 | resolved "https://registry.yarnpkg.com/output-file-sync/-/output-file-sync-1.1.2.tgz#d0a33eefe61a205facb90092e826598d5245ce76" 992 | dependencies: 993 | graceful-fs "^4.1.4" 994 | mkdirp "^0.5.1" 995 | object-assign "^4.1.0" 996 | 997 | parse-glob@^3.0.4: 998 | version "3.0.4" 999 | resolved "https://registry.yarnpkg.com/parse-glob/-/parse-glob-3.0.4.tgz#b2c376cfb11f35513badd173ef0bb6e3a388391c" 1000 | dependencies: 1001 | glob-base "^0.3.0" 1002 | is-dotfile "^1.0.0" 1003 | is-extglob "^1.0.0" 1004 | is-glob "^2.0.0" 1005 | 1006 | path-is-absolute@^1.0.0: 1007 | version "1.0.1" 1008 | resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f" 1009 | 1010 | pinkie-promise@^2.0.0: 1011 | version "2.0.1" 1012 | resolved "https://registry.yarnpkg.com/pinkie-promise/-/pinkie-promise-2.0.1.tgz#2135d6dfa7a358c069ac9b178776288228450ffa" 1013 | dependencies: 1014 | pinkie "^2.0.0" 1015 | 1016 | pinkie@^2.0.0: 1017 | version "2.0.4" 1018 | resolved "https://registry.yarnpkg.com/pinkie/-/pinkie-2.0.4.tgz#72556b80cfa0d48a974e80e77248e80ed4f7f870" 1019 | 1020 | preserve@^0.2.0: 1021 | version "0.2.0" 1022 | resolved "https://registry.yarnpkg.com/preserve/-/preserve-0.2.0.tgz#815ed1f6ebc65926f865b310c0713bcb3315ce4b" 1023 | 1024 | private@^0.1.6: 1025 | version "0.1.6" 1026 | resolved "https://registry.yarnpkg.com/private/-/private-0.1.6.tgz#55c6a976d0f9bafb9924851350fe47b9b5fbb7c1" 1027 | 1028 | process-nextick-args@~1.0.6: 1029 | version "1.0.7" 1030 | resolved "https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-1.0.7.tgz#150e20b756590ad3f91093f25a4f2ad8bff30ba3" 1031 | 1032 | punycode@^1.4.1: 1033 | version "1.4.1" 1034 | resolved "https://registry.yarnpkg.com/punycode/-/punycode-1.4.1.tgz#c0d5a63b2718800ad8e1eb0fa5269c84dd41845e" 1035 | 1036 | qs@~6.3.0: 1037 | version "6.3.0" 1038 | resolved "https://registry.yarnpkg.com/qs/-/qs-6.3.0.tgz#f403b264f23bc01228c74131b407f18d5ea5d442" 1039 | 1040 | randomatic@^1.1.3: 1041 | version "1.1.6" 1042 | resolved "https://registry.yarnpkg.com/randomatic/-/randomatic-1.1.6.tgz#110dcabff397e9dcff7c0789ccc0a49adf1ec5bb" 1043 | dependencies: 1044 | is-number "^2.0.2" 1045 | kind-of "^3.0.2" 1046 | 1047 | rc@~1.1.6: 1048 | version "1.1.6" 1049 | resolved "https://registry.yarnpkg.com/rc/-/rc-1.1.6.tgz#43651b76b6ae53b5c802f1151fa3fc3b059969c9" 1050 | dependencies: 1051 | deep-extend "~0.4.0" 1052 | ini "~1.3.0" 1053 | minimist "^1.2.0" 1054 | strip-json-comments "~1.0.4" 1055 | 1056 | "readable-stream@^2.0.0 || ^1.1.13", readable-stream@^2.0.2: 1057 | version "2.2.2" 1058 | resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.2.2.tgz#a9e6fec3c7dda85f8bb1b3ba7028604556fc825e" 1059 | dependencies: 1060 | buffer-shims "^1.0.0" 1061 | core-util-is "~1.0.0" 1062 | inherits "~2.0.1" 1063 | isarray "~1.0.0" 1064 | process-nextick-args "~1.0.6" 1065 | string_decoder "~0.10.x" 1066 | util-deprecate "~1.0.1" 1067 | 1068 | readable-stream@~2.1.4: 1069 | version "2.1.5" 1070 | resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.1.5.tgz#66fa8b720e1438b364681f2ad1a63c618448c9d0" 1071 | dependencies: 1072 | buffer-shims "^1.0.0" 1073 | core-util-is "~1.0.0" 1074 | inherits "~2.0.1" 1075 | isarray "~1.0.0" 1076 | process-nextick-args "~1.0.6" 1077 | string_decoder "~0.10.x" 1078 | util-deprecate "~1.0.1" 1079 | 1080 | readdirp@^2.0.0: 1081 | version "2.1.0" 1082 | resolved "https://registry.yarnpkg.com/readdirp/-/readdirp-2.1.0.tgz#4ed0ad060df3073300c48440373f72d1cc642d78" 1083 | dependencies: 1084 | graceful-fs "^4.1.2" 1085 | minimatch "^3.0.2" 1086 | readable-stream "^2.0.2" 1087 | set-immediate-shim "^1.0.1" 1088 | 1089 | regenerator-runtime@^0.10.0: 1090 | version "0.10.1" 1091 | resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.10.1.tgz#257f41961ce44558b18f7814af48c17559f9faeb" 1092 | 1093 | regex-cache@^0.4.2: 1094 | version "0.4.3" 1095 | resolved "http://registry.npmjs.org/regex-cache/-/regex-cache-0.4.3.tgz#9b1a6c35d4d0dfcef5711ae651e8e9d3d7114145" 1096 | dependencies: 1097 | is-equal-shallow "^0.1.3" 1098 | is-primitive "^2.0.0" 1099 | 1100 | repeat-element@^1.1.2: 1101 | version "1.1.2" 1102 | resolved "https://registry.yarnpkg.com/repeat-element/-/repeat-element-1.1.2.tgz#ef089a178d1483baae4d93eb98b4f9e4e11d990a" 1103 | 1104 | repeat-string@^1.5.2: 1105 | version "1.6.1" 1106 | resolved "https://registry.yarnpkg.com/repeat-string/-/repeat-string-1.6.1.tgz#8dcae470e1c88abc2d600fff4a776286da75e637" 1107 | 1108 | repeating@^2.0.0: 1109 | version "2.0.1" 1110 | resolved "https://registry.yarnpkg.com/repeating/-/repeating-2.0.1.tgz#5214c53a926d3552707527fbab415dbc08d06dda" 1111 | dependencies: 1112 | is-finite "^1.0.0" 1113 | 1114 | request@^2.79.0: 1115 | version "2.79.0" 1116 | resolved "https://registry.yarnpkg.com/request/-/request-2.79.0.tgz#4dfe5bf6be8b8cdc37fcf93e04b65577722710de" 1117 | dependencies: 1118 | aws-sign2 "~0.6.0" 1119 | aws4 "^1.2.1" 1120 | caseless "~0.11.0" 1121 | combined-stream "~1.0.5" 1122 | extend "~3.0.0" 1123 | forever-agent "~0.6.1" 1124 | form-data "~2.1.1" 1125 | har-validator "~2.0.6" 1126 | hawk "~3.1.3" 1127 | http-signature "~1.1.0" 1128 | is-typedarray "~1.0.0" 1129 | isstream "~0.1.2" 1130 | json-stringify-safe "~5.0.1" 1131 | mime-types "~2.1.7" 1132 | oauth-sign "~0.8.1" 1133 | qs "~6.3.0" 1134 | stringstream "~0.0.4" 1135 | tough-cookie "~2.3.0" 1136 | tunnel-agent "~0.4.1" 1137 | uuid "^3.0.0" 1138 | 1139 | rimraf@2, rimraf@~2.5.1, rimraf@~2.5.4: 1140 | version "2.5.4" 1141 | resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.5.4.tgz#96800093cbf1a0c86bd95b4625467535c29dfa04" 1142 | dependencies: 1143 | glob "^7.0.5" 1144 | 1145 | rx@^4.1.0: 1146 | version "4.1.0" 1147 | resolved "https://registry.yarnpkg.com/rx/-/rx-4.1.0.tgz#a5f13ff79ef3b740fe30aa803fb09f98805d4782" 1148 | 1149 | semver@~5.3.0: 1150 | version "5.3.0" 1151 | resolved "https://registry.yarnpkg.com/semver/-/semver-5.3.0.tgz#9b2ce5d3de02d17c6012ad326aa6b4d0cf54f94f" 1152 | 1153 | set-blocking@~2.0.0: 1154 | version "2.0.0" 1155 | resolved "https://registry.yarnpkg.com/set-blocking/-/set-blocking-2.0.0.tgz#045f9782d011ae9a6803ddd382b24392b3d890f7" 1156 | 1157 | set-immediate-shim@^1.0.1: 1158 | version "1.0.1" 1159 | resolved "https://registry.yarnpkg.com/set-immediate-shim/-/set-immediate-shim-1.0.1.tgz#4b2b1b27eb808a9f8dcc481a58e5e56f599f3f61" 1160 | 1161 | signal-exit@^3.0.0: 1162 | version "3.0.2" 1163 | resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.2.tgz#b5fdc08f1287ea1178628e415e25132b73646c6d" 1164 | 1165 | slash@^1.0.0: 1166 | version "1.0.0" 1167 | resolved "https://registry.yarnpkg.com/slash/-/slash-1.0.0.tgz#c41f2f6c39fc16d1cd17ad4b5d896114ae470d55" 1168 | 1169 | sntp@1.x.x: 1170 | version "1.0.9" 1171 | resolved "https://registry.yarnpkg.com/sntp/-/sntp-1.0.9.tgz#6541184cc90aeea6c6e7b35e2659082443c66198" 1172 | dependencies: 1173 | hoek "2.x.x" 1174 | 1175 | source-map-support@^0.4.2: 1176 | version "0.4.10" 1177 | resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.4.10.tgz#d7b19038040a14c0837a18e630a196453952b378" 1178 | dependencies: 1179 | source-map "^0.5.3" 1180 | 1181 | source-map@^0.5.0, source-map@^0.5.3: 1182 | version "0.5.6" 1183 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.5.6.tgz#75ce38f52bf0733c5a7f0c118d81334a2bb5f412" 1184 | 1185 | sshpk@^1.7.0: 1186 | version "1.10.2" 1187 | resolved "https://registry.yarnpkg.com/sshpk/-/sshpk-1.10.2.tgz#d5a804ce22695515638e798dbe23273de070a5fa" 1188 | dependencies: 1189 | asn1 "~0.2.3" 1190 | assert-plus "^1.0.0" 1191 | dashdash "^1.12.0" 1192 | getpass "^0.1.1" 1193 | optionalDependencies: 1194 | bcrypt-pbkdf "^1.0.0" 1195 | ecc-jsbn "~0.1.1" 1196 | jodid25519 "^1.0.0" 1197 | jsbn "~0.1.0" 1198 | tweetnacl "~0.14.0" 1199 | 1200 | string-width@^1.0.1: 1201 | version "1.0.2" 1202 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-1.0.2.tgz#118bdf5b8cdc51a2a7e70d211e07e2b0b9b107d3" 1203 | dependencies: 1204 | code-point-at "^1.0.0" 1205 | is-fullwidth-code-point "^1.0.0" 1206 | strip-ansi "^3.0.0" 1207 | 1208 | string_decoder@~0.10.x: 1209 | version "0.10.31" 1210 | resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-0.10.31.tgz#62e203bc41766c6c28c9fc84301dab1c5310fa94" 1211 | 1212 | stringstream@~0.0.4: 1213 | version "0.0.5" 1214 | resolved "https://registry.yarnpkg.com/stringstream/-/stringstream-0.0.5.tgz#4e484cd4de5a0bbbee18e46307710a8a81621878" 1215 | 1216 | strip-ansi@^3.0.0, strip-ansi@^3.0.1: 1217 | version "3.0.1" 1218 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-3.0.1.tgz#6a385fb8853d952d5ff05d0e8aaf94278dc63dcf" 1219 | dependencies: 1220 | ansi-regex "^2.0.0" 1221 | 1222 | strip-json-comments@~1.0.4: 1223 | version "1.0.4" 1224 | resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-1.0.4.tgz#1e15fbcac97d3ee99bf2d73b4c656b082bbafb91" 1225 | 1226 | supports-color@3.1.2: 1227 | version "3.1.2" 1228 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-3.1.2.tgz#72a262894d9d408b956ca05ff37b2ed8a6e2a2d5" 1229 | dependencies: 1230 | has-flag "^1.0.0" 1231 | 1232 | supports-color@^0.2.0: 1233 | version "0.2.0" 1234 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-0.2.0.tgz#d92de2694eb3f67323973d7ae3d8b55b4c22190a" 1235 | 1236 | supports-color@^2.0.0: 1237 | version "2.0.0" 1238 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-2.0.0.tgz#535d045ce6b6363fa40117084629995e9df324c7" 1239 | 1240 | tar-pack@~3.3.0: 1241 | version "3.3.0" 1242 | resolved "https://registry.yarnpkg.com/tar-pack/-/tar-pack-3.3.0.tgz#30931816418f55afc4d21775afdd6720cee45dae" 1243 | dependencies: 1244 | debug "~2.2.0" 1245 | fstream "~1.0.10" 1246 | fstream-ignore "~1.0.5" 1247 | once "~1.3.3" 1248 | readable-stream "~2.1.4" 1249 | rimraf "~2.5.1" 1250 | tar "~2.2.1" 1251 | uid-number "~0.0.6" 1252 | 1253 | tar@~2.2.1: 1254 | version "2.2.1" 1255 | resolved "https://registry.yarnpkg.com/tar/-/tar-2.2.1.tgz#8e4d2a256c0e2185c6b18ad694aec968b83cb1d1" 1256 | dependencies: 1257 | block-stream "*" 1258 | fstream "^1.0.2" 1259 | inherits "2" 1260 | 1261 | to-fast-properties@^1.0.1: 1262 | version "1.0.2" 1263 | resolved "https://registry.yarnpkg.com/to-fast-properties/-/to-fast-properties-1.0.2.tgz#f3f5c0c3ba7299a7ef99427e44633257ade43320" 1264 | 1265 | tough-cookie@~2.3.0: 1266 | version "2.3.2" 1267 | resolved "https://registry.yarnpkg.com/tough-cookie/-/tough-cookie-2.3.2.tgz#f081f76e4c85720e6c37a5faced737150d84072a" 1268 | dependencies: 1269 | punycode "^1.4.1" 1270 | 1271 | tunnel-agent@~0.4.1: 1272 | version "0.4.3" 1273 | resolved "https://registry.yarnpkg.com/tunnel-agent/-/tunnel-agent-0.4.3.tgz#6373db76909fe570e08d73583365ed828a74eeeb" 1274 | 1275 | tweetnacl@^0.14.3, tweetnacl@~0.14.0: 1276 | version "0.14.5" 1277 | resolved "https://registry.yarnpkg.com/tweetnacl/-/tweetnacl-0.14.5.tgz#5ae68177f192d4456269d108afa93ff8743f4f64" 1278 | 1279 | type-detect@0.1.1: 1280 | version "0.1.1" 1281 | resolved "https://registry.yarnpkg.com/type-detect/-/type-detect-0.1.1.tgz#0ba5ec2a885640e470ea4e8505971900dac58822" 1282 | 1283 | type-detect@^1.0.0: 1284 | version "1.0.0" 1285 | resolved "https://registry.yarnpkg.com/type-detect/-/type-detect-1.0.0.tgz#762217cc06db258ec48908a1298e8b95121e8ea2" 1286 | 1287 | uid-number@~0.0.6: 1288 | version "0.0.6" 1289 | resolved "https://registry.yarnpkg.com/uid-number/-/uid-number-0.0.6.tgz#0ea10e8035e8eb5b8e4449f06da1c730663baa81" 1290 | 1291 | user-home@^1.1.1: 1292 | version "1.1.1" 1293 | resolved "https://registry.yarnpkg.com/user-home/-/user-home-1.1.1.tgz#2b5be23a32b63a7c9deb8d0f28d485724a3df190" 1294 | 1295 | util-deprecate@~1.0.1: 1296 | version "1.0.2" 1297 | resolved "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf" 1298 | 1299 | uuid@^3.0.0: 1300 | version "3.0.1" 1301 | resolved "https://registry.yarnpkg.com/uuid/-/uuid-3.0.1.tgz#6544bba2dfda8c1cf17e629a3a305e2bb1fee6c1" 1302 | 1303 | v8flags@^2.0.10: 1304 | version "2.0.11" 1305 | resolved "https://registry.yarnpkg.com/v8flags/-/v8flags-2.0.11.tgz#bca8f30f0d6d60612cc2c00641e6962d42ae6881" 1306 | dependencies: 1307 | user-home "^1.1.1" 1308 | 1309 | verror@1.3.6: 1310 | version "1.3.6" 1311 | resolved "https://registry.yarnpkg.com/verror/-/verror-1.3.6.tgz#cff5df12946d297d2baaefaa2689e25be01c005c" 1312 | dependencies: 1313 | extsprintf "1.0.2" 1314 | 1315 | wide-align@^1.1.0: 1316 | version "1.1.0" 1317 | resolved "https://registry.yarnpkg.com/wide-align/-/wide-align-1.1.0.tgz#40edde802a71fea1f070da3e62dcda2e7add96ad" 1318 | dependencies: 1319 | string-width "^1.0.1" 1320 | 1321 | wrappy@1: 1322 | version "1.0.2" 1323 | resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f" 1324 | 1325 | xtend@^4.0.0: 1326 | version "4.0.1" 1327 | resolved "https://registry.yarnpkg.com/xtend/-/xtend-4.0.1.tgz#a5c6d532be656e23db820efb943a1f04998d63af" 1328 | --------------------------------------------------------------------------------