├── .gitignore ├── .npmignore ├── .travis.yml ├── CHANGELOG.md ├── LICENSE ├── README.md ├── bsconfig.json ├── lib └── js │ └── src │ └── Async.js ├── package-lock.json ├── package.json ├── src └── Async.re ├── tasks.json ├── tests ├── .gitignore ├── bsconfig.json ├── lib │ └── node_modules │ │ └── errorFunctions.js ├── package-lock.json ├── package.json ├── tests │ ├── Async_all_test.ml │ ├── Async_test.re │ └── Matchers.re └── yarn.lock └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | .merlin 3 | npm-debug.log 4 | /lib/ocaml/ 5 | /lib/bs/ 6 | /node_modules/ 7 | !/lib/node_modules/ 8 | .bsb.lock 9 | *.log 10 | -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | .merlin 3 | npm-debug.log 4 | /lib/bs/ 5 | /node_modules/ 6 | !/lib/node_modules/ 7 | .bsb.lock 8 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - "8" 4 | 5 | install: 6 | - npm install 7 | - cd $TRAVIS_BUILD_DIR/tests && npm install 8 | - cd $TRAVIS_BUILD_DIR 9 | 10 | script: 11 | - cd $TRAVIS_BUILD_DIR/tests && npm test 12 | - cd $TRAVIS_BUILD_DIR 13 | 14 | deploy: 15 | provider: npm 16 | email: peter@stroiman.com 17 | api_key: 18 | secure: RbtH5fnAHCUf+sth5DUt0TgXsjMRhDD/QvvMq/kzXZpjTxAMMC26Mr4uE7GGhKo9WFvNATRfkUIMGewd6DG/+bWVyY4CPhoGv9+/r6k9igXF8uZ8NUyY4iaKmWxQtkPk1ls8FI9FGFlALOz0l60WmdiVqGgso//nd0IBWoNMbXAhY4CudQaENd2t19ilygyrJwP6Mqtbzsc5T0PzWMuy8eQguC4EGKM1IW7929eNecTrjcqCoGJxc+/djAQN7gxRLRNZUPLYi2bM6TWTow2SkpoOPY6diokdOYXyfVSYJZgIZR5LE3dlY/xyqDK7lpV+GzvCAilSuGpAwffZzmJeU+F+HYg0mjVYvnz+1pbsFWJ7mTqDNSCanWmUqYoYZIsuQB+wfO4LxhbG1AoJwYKWTzOSMwIyfaChgBpTkRBKZo+cYnO0vgogmJpgiGRqlhPNrmwvsI6NavjMR7jj/Z+LxW431hbzdt+rGp4ShMaRpBbswkiEZBbof6ZX/TB+UP7W04FyhutLysqp3xT0x69eHdaeW2e3bPs9z+CUSuug9P2p/2cesEQVBOS6VcqDvvhSuBsEqg82XbyK0vAXefMc02qWjlP92Q64dMR2OpT/Q9nITixq2WfnOopduhjaXhA5r4gm1Xy/zshpFR3k9QCwMG7D45vWHbNzf8lYGgTOfYk= 19 | on: 20 | tags: true 21 | repo: stroiman/resync 22 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- 1 | # Changelog 2 | 3 | ## 0.7.0 4 | 5 | * Update bs-platform dependency 6 | * Change use of `Js.Null.to_opt` to use `toOption`. This change is incompatible 7 | with bs-platform versions prior to 2.2 8 | 9 | ## 0.6.0 10 | 11 | * Support parallel execution through `Async.all` 12 | 13 | ## 0.5.1 14 | 15 | * Fixed package name in bsconfig.json 16 | 17 | ## 0.5.0 18 | 19 | Broken version, don't use. `bsconfig.json` had a wrong package name, resulting 20 | in invalid installations 21 | 22 | * Moved package to @stroiman/async npm repo 23 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2017 Peter Strøiman 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 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Reason module for Async 2 | 3 | Helper for async Reason/Bucklescript code without Promises. 4 | 5 | __Attention__ - _The NPM package has moved to `@stroiman/async`. Remember to 6 | update both _package.json_ AND `bsconfig.json`._ 7 | 8 | [![Build Status](https://travis-ci.org/stroiman/resync.svg?branch=master)](https://travis-ci.org/stroiman/resync) 9 | 10 | I wrote this library because I needed to deal with async code, but I wanted to 11 | avoid using promises in order to keep the core of my application javascript 12 | agnostic. 13 | 14 | ## Installation 15 | 16 | Run `npm install --save @stroiman/async` and add `@stroiman/async` to the `bs-dependencies` in `bsconfig.json`. 17 | 18 | ## Documentation 19 | 20 | The heart of this module is the type: 21 | 22 | Reason syntax: 23 | ```Reason 24 | module Async = { 25 | type t('a) = (('a => unit, exn => unit)) => unit; 26 | } 27 | ``` 28 | 29 | OCaml syntax: 30 | ```ocaml 31 | type 'a t = (('a -> unit) * (exn -> unit)) -> unit 32 | ``` 33 | 34 | So, it's a function that takes two callbacks, one that will be executed if an 35 | operation succeeds, and one that will be executed if an exception is thrown. 36 | 37 | So if you have such a function, you can use this library to glue functions 38 | together that operate asynchronously. 39 | 40 | If the last argument of your async function conforms to this signature, then you 41 | can use currying to compose functions together with this library. 42 | 43 | Useful funcitons. 44 | 45 | * `bind` Takes a function that returns an async result and use it in an existing 46 | async context. 47 | * `map` Takes a function that returns a sync result, and use it in an async 48 | context. 49 | * `return` Takes a value, and returns an async context resolving that value. In 50 | a promise context, this would correspond to `Promise.resolve` 51 | * `tryCatch` Takes a function that might handle an exception. Return `Some` if the 52 | exception was handled, and `None` if it wasn't. 53 | * `timeout` Helps handling handling functions that take too long to execute 54 | * `run(~fe=?,f)` Takes a callback to be called with the final value, and an 55 | optional callback to be called with any exceptions caught during execution. 56 | * `from_js` Helps creating an `Async.t` from an async javascript function. See 57 | exmaple later 58 | * `once` Takes something that resolves asynchronously, and allow it to be 59 | called multiple times, each time yielding the same result. A database 60 | connection pool factory is a good candidate. 61 | 62 | Be aware that this library does not evaluate any values in advance. Nothing is 63 | evaluated until you call the `run` function. 64 | 65 | Look at the example tests for a hint as to their usage. 66 | 67 | ## Only use the exception path for truly exceptional cases. 68 | 69 | It is a common pattern to use a result type, like this (defined in Js.Result). 70 | 71 | ```reason 72 | type result('a,'b) = 73 | | Ok('a) 74 | | Error('b) 75 | ``` 76 | 77 | This library does not attempt to replace this pattern, 78 | This type can still be used with the async module: 79 | 80 | ```reason 81 | type asyncResult('a,'b) = Async.t(result('a,'b)); 82 | ``` 83 | 84 | This is used a lot in my own code, and exceptions are only used to handle truly 85 | exceptional cases, that will result in HTTP 500 errors - e.g. broken database 86 | connections, etc. Any error that can be handled in the application layer is 87 | represented with the `Error()` constructor. 88 | 89 | ## Using with async JavaScript modules 90 | 91 | A common pattern in JavaScript is to have a function accept a callback that 92 | accepts two arguments, an error and a result. The error argument will receive 93 | `null` if the operation succeeded. 94 | 95 | This library supports handling this case easily. This small adaption of the 96 | `bcryptjs` module shows how: 97 | 98 | ``` 99 | module Bcrypt = { 100 | type error = Js.Exn.t; 101 | [@bs.module "bcryptjs"] 102 | external hash : (string, int, (Js.null(error), string) => unit) => unit = ""; 103 | [@bs.module "bcryptjs"] 104 | external compare : (string, string, (Js.null(error), Js.boolean) => unit) => unit = ""; 105 | 106 | let hash = (password, gen) => hash(password,gen) 107 | |> Async.from_js; 108 | let compare = (password, hash) => compare(password, hash) 109 | |> Async.from_js |> Async.map(Js.to_bool); 110 | } 111 | ``` 112 | 113 | 114 | -------------------------------------------------------------------------------- /bsconfig.json: -------------------------------------------------------------------------------- 1 | // This is the configuration file used by BuckleScript's build system bsb. Its documentation lives here: http://bucklescript.github.io/bucklescript/docson/#build-schema.json 2 | // BuckleScript comes with its own parser for bsconfig.json, which is normal JSON, with the extra support of comments and trailing commas. 3 | { 4 | "name": "@stroiman/async", 5 | "version": "0.1.0", 6 | "refmt": 3, 7 | "sources": [ 8 | { "dir": "src" }, 9 | ], 10 | "bs-dependencies" : [ 11 | // add your dependencies here. You'd usually install them normally through `npm install my-dependency`. If my-dependency has a bsconfig.json too, then everything will work seamlessly. 12 | ], 13 | "bs-dev-dependencies" : [ 14 | ] 15 | } 16 | -------------------------------------------------------------------------------- /lib/js/src/Async.js: -------------------------------------------------------------------------------- 1 | // Generated by BUCKLESCRIPT VERSION 2.2.3, PLEASE EDIT WITH CARE 2 | 'use strict'; 3 | 4 | var $$Map = require("bs-platform/lib/js/map.js"); 5 | var List = require("bs-platform/lib/js/list.js"); 6 | var Block = require("bs-platform/lib/js/block.js"); 7 | var Curry = require("bs-platform/lib/js/curry.js"); 8 | var Js_exn = require("bs-platform/lib/js/js_exn.js"); 9 | var Js_option = require("bs-platform/lib/js/js_option.js"); 10 | var Caml_int32 = require("bs-platform/lib/js/caml_int32.js"); 11 | var Caml_primitive = require("bs-platform/lib/js/caml_primitive.js"); 12 | var Caml_exceptions = require("bs-platform/lib/js/caml_exceptions.js"); 13 | 14 | function $$return(x, param) { 15 | return Curry._1(param[0], x); 16 | } 17 | 18 | function toMilliseconds(param) { 19 | if (param.tag) { 20 | return Caml_int32.imul(param[0], 1000); 21 | } else { 22 | return param[0]; 23 | } 24 | } 25 | 26 | var JsError = Caml_exceptions.create("Async.JsError"); 27 | 28 | var Timeout = Caml_exceptions.create("Async.Timeout"); 29 | 30 | function bind(f, x, param) { 31 | var errorCB = param[1]; 32 | var successCb = param[0]; 33 | return Curry._1(x, /* tuple */[ 34 | (function (a) { 35 | try { 36 | return Curry._2(f, a, /* tuple */[ 37 | successCb, 38 | errorCB 39 | ]); 40 | } 41 | catch (raw_x){ 42 | return Curry._1(errorCB, Js_exn.internalToOCamlException(raw_x)); 43 | } 44 | }), 45 | errorCB 46 | ]); 47 | } 48 | 49 | function map(f, x, param) { 50 | var errorCb = param[1]; 51 | var successCb = param[0]; 52 | return Curry._1(x, /* tuple */[ 53 | (function (a) { 54 | var exit = 0; 55 | var x; 56 | try { 57 | x = Curry._1(f, a); 58 | exit = 1; 59 | } 60 | catch (raw_x){ 61 | return Curry._1(errorCb, Js_exn.internalToOCamlException(raw_x)); 62 | } 63 | if (exit === 1) { 64 | return Curry._1(successCb, x); 65 | } 66 | 67 | }), 68 | errorCb 69 | ]); 70 | } 71 | 72 | function tryCatch(f, x, param) { 73 | var errorCb = param[1]; 74 | var successCb = param[0]; 75 | return Curry._1(x, /* tuple */[ 76 | successCb, 77 | (function (x) { 78 | var match = Curry._1(f, x); 79 | if (match) { 80 | return Curry._1(successCb, match[0]); 81 | } else { 82 | return Curry._1(errorCb, x); 83 | } 84 | }) 85 | ]); 86 | } 87 | 88 | function iter(f) { 89 | return (function (param, param$1) { 90 | return map((function (x) { 91 | Curry._1(f, x); 92 | return x; 93 | }), param, param$1); 94 | }); 95 | } 96 | 97 | function from_js(jsAsync, param) { 98 | var errorCb = param[1]; 99 | var successCb = param[0]; 100 | return Curry._1(jsAsync, (function (err, s) { 101 | if (err !== null) { 102 | return Curry._1(errorCb, [ 103 | JsError, 104 | err 105 | ]); 106 | } else { 107 | return Curry._1(successCb, s); 108 | } 109 | })); 110 | } 111 | 112 | function once(x) { 113 | var resolution = [/* None */0]; 114 | var waiting = [/* [] */0]; 115 | var dispatch = function (result, param) { 116 | if (result.tag) { 117 | return Curry._1(param[1], result[0]); 118 | } else { 119 | return Curry._1(param[0], result[0]); 120 | } 121 | }; 122 | var tryDispatch = function () { 123 | var match = resolution[0]; 124 | if (match) { 125 | var x = match[0]; 126 | var targets = waiting[0]; 127 | waiting[0] = /* [] */0; 128 | return List.iter((function (callbacks) { 129 | return dispatch(x, callbacks); 130 | }), targets); 131 | } else { 132 | return /* () */0; 133 | } 134 | }; 135 | Curry._1(x, /* tuple */[ 136 | (function (s) { 137 | resolution[0] = /* Some */[/* Ok */Block.__(0, [s])]; 138 | setTimeout(tryDispatch, 0); 139 | return /* () */0; 140 | }), 141 | (function (e) { 142 | resolution[0] = /* Some */[/* Error */Block.__(1, [e])]; 143 | setTimeout(tryDispatch, 0); 144 | return /* () */0; 145 | }) 146 | ]); 147 | return (function (callbacks) { 148 | var match = resolution[0]; 149 | if (match) { 150 | return dispatch(match[0], callbacks); 151 | } else { 152 | waiting[0] = /* :: */[ 153 | callbacks, 154 | waiting[0] 155 | ]; 156 | return /* () */0; 157 | } 158 | }); 159 | } 160 | 161 | function timeout(duration, x) { 162 | var resolved = [/* false */0]; 163 | return (function (param) { 164 | var errorCb = param[1]; 165 | var successCb = param[0]; 166 | Curry._1(x, /* tuple */[ 167 | (function (x) { 168 | if (resolved[0]) { 169 | return 0; 170 | } else { 171 | resolved[0] = /* true */1; 172 | return Curry._1(successCb, x); 173 | } 174 | }), 175 | (function (e) { 176 | if (resolved[0]) { 177 | return 0; 178 | } else { 179 | resolved[0] = /* true */1; 180 | return Curry._1(errorCb, e); 181 | } 182 | }) 183 | ]); 184 | setTimeout((function () { 185 | if (resolved[0]) { 186 | return 0; 187 | } else { 188 | resolved[0] = /* true */1; 189 | return Curry._1(errorCb, Timeout); 190 | } 191 | }), toMilliseconds(duration)); 192 | return /* () */0; 193 | }); 194 | } 195 | 196 | function from_callback(fn, param) { 197 | return Curry._1(fn, param[0]); 198 | } 199 | 200 | function run(fe, f, x) { 201 | var fe$1 = Js_option.getWithDefault((function () { 202 | return /* () */0; 203 | }), fe); 204 | return Curry._1(x, /* tuple */[ 205 | f, 206 | fe$1 207 | ]); 208 | } 209 | 210 | function runExn(fs, fe, x) { 211 | console.log("OBSOLETE FUNCTION CALL, use Async.run insteadn of Async.runExn"); 212 | return Curry._1(x, /* tuple */[ 213 | fs, 214 | fe 215 | ]); 216 | } 217 | 218 | var compare = Caml_primitive.caml_int_compare; 219 | 220 | var I = /* module */[/* compare */compare]; 221 | 222 | var IntMap = $$Map.Make(I); 223 | 224 | function both(a, b, param) { 225 | var fe = param[1]; 226 | var fs = param[0]; 227 | var theA = [/* None */0]; 228 | var theB = [/* None */0]; 229 | var theErr = [/* None */0]; 230 | var fe$1 = function (err) { 231 | if (Js_option.isNone(theErr[0])) { 232 | theErr[0] = /* Some */[err]; 233 | return Curry._1(fe, err); 234 | } else { 235 | return 0; 236 | } 237 | }; 238 | var checkComplete = function () { 239 | var match = theA[0]; 240 | var match$1 = theB[0]; 241 | if (match && match$1) { 242 | return Curry._1(fs, /* tuple */[ 243 | match[0], 244 | match$1[0] 245 | ]); 246 | } else { 247 | return /* () */0; 248 | } 249 | }; 250 | run(/* Some */[fe$1], (function (x) { 251 | theA[0] = /* Some */[x]; 252 | return checkComplete(/* () */0); 253 | }), once(a)); 254 | return run(/* Some */[fe$1], (function (x) { 255 | theB[0] = /* Some */[x]; 256 | return checkComplete(/* () */0); 257 | }), once(b)); 258 | } 259 | 260 | function all(xs) { 261 | if (xs) { 262 | var x = xs[0]; 263 | var xs2 = all(xs[1]); 264 | return (function (param) { 265 | return map((function (param) { 266 | return /* :: */[ 267 | param[0], 268 | param[1] 269 | ]; 270 | }), (function (param) { 271 | return both(x, xs2, param); 272 | }), param); 273 | }); 274 | } else { 275 | return (function (param) { 276 | return $$return(/* [] */0, param); 277 | }); 278 | } 279 | } 280 | 281 | exports.$$return = $$return; 282 | exports.toMilliseconds = toMilliseconds; 283 | exports.JsError = JsError; 284 | exports.Timeout = Timeout; 285 | exports.bind = bind; 286 | exports.map = map; 287 | exports.tryCatch = tryCatch; 288 | exports.iter = iter; 289 | exports.from_js = from_js; 290 | exports.once = once; 291 | exports.timeout = timeout; 292 | exports.from_callback = from_callback; 293 | exports.run = run; 294 | exports.runExn = runExn; 295 | exports.I = I; 296 | exports.IntMap = IntMap; 297 | exports.both = both; 298 | exports.all = all; 299 | /* IntMap Not a pure module */ 300 | -------------------------------------------------------------------------------- /package-lock.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@stroiman/async", 3 | "version": "0.5.2", 4 | "lockfileVersion": 1, 5 | "requires": true, 6 | "dependencies": { 7 | "bs-platform": { 8 | "version": "2.2.1", 9 | "resolved": "https://registry.npmjs.org/bs-platform/-/bs-platform-2.2.1.tgz", 10 | "integrity": "sha1-4iuCFDpDoQYw17IECquHZIsSGQw=", 11 | "dev": true 12 | } 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@stroiman/async", 3 | "description": "Async support library for Reason/Bucklescript ", 4 | "version": "0.7.0", 5 | "scripts": { 6 | "build": "bsb -make-world -verbose", 7 | "watch": "bsb -make-world -w", 8 | "clean": "bsb -clean-world -verbose" 9 | }, 10 | "repository": { 11 | "type": "git", 12 | "url": "git+https://github.com/stroiman/resync.git" 13 | }, 14 | "keywords": [ 15 | "reason", 16 | "bucklescript", 17 | "async" 18 | ], 19 | "bugs": { 20 | "url": "https://github.com/stroiman/resync/issues" 21 | }, 22 | "homepage": "https://github.com/stroiman/resync#readme", 23 | "license": "MIT", 24 | "devDependencies": { 25 | "bs-platform": "5" 26 | }, 27 | "publishConfig": { 28 | "access": "public" 29 | } 30 | } 31 | -------------------------------------------------------------------------------- /src/Async.re: -------------------------------------------------------------------------------- 1 | type t('a) = (('a => unit, exn => unit)) => unit; 2 | 3 | let return = (x: 'a) : t('a) => ((cb, _)) => cb(x); 4 | 5 | type duration = | MilliSeconds(int) | Seconds(int); 6 | let toMilliseconds = fun | MilliSeconds(x) => x | Seconds(x) => x*1000; 7 | 8 | exception JsError(Js.Exn.t); 9 | exception Timeout; 10 | 11 | let bind = (f: 'a => t('b), x: t('a)) : t('b) => 12 | ((successCb, errorCB)) => 13 | x(( 14 | (a) => 15 | try (f(a, (successCb, errorCB))) { 16 | | x => errorCB(x) 17 | }, 18 | errorCB 19 | )); 20 | 21 | let map = (f: 'a => 'b, x: t('a)) : t('b) => 22 | ((successCb, errorCb)) => 23 | x(( 24 | (a) => 25 | switch (f(a)) { 26 | | x => successCb(x) 27 | | exception x => errorCb(x) 28 | }, 29 | errorCb 30 | )); 31 | 32 | let tryCatch = (f: exn=>option('a), x:t('a)) : t('a) => { 33 | ((successCb, errorCb)) => x((successCb, 34 | x => switch(f(x)) { 35 | | Some(x) => successCb(x) 36 | | None => errorCb(x) 37 | })); 38 | }; 39 | 40 | let iter = f => map(x => {f(x); x}); 41 | 42 | let from_js = (jsAsync: ((Js.Null.t(Js.Exn.t), 'a) => unit) => unit) : t('a) => 43 | ((successCb, errorCb)) => 44 | jsAsync( 45 | (err, s) => 46 | switch (Js.Null.toOption(err)) { 47 | | None => successCb(s) 48 | | Some(x) => errorCb(JsError(x)) 49 | } 50 | ); 51 | 52 | let once = (x:t('a)) : t('a) => { 53 | let resolution = ref(None); 54 | let waiting = ref([]); 55 | 56 | let dispatch = (result, (cb, ecb)) => { 57 | switch(result) { 58 | | Js.Result.Ok(x) => cb(x); 59 | | Js.Result.Error(x) => ecb(x); 60 | } 61 | }; 62 | 63 | let tryDispatch = () => 64 | switch (resolution^) { 65 | | None => () 66 | | Some(x) => { 67 | let targets = waiting^; 68 | waiting := []; 69 | targets |> List.iter((callbacks) => dispatch(x,callbacks)); 70 | }; 71 | }; 72 | 73 | let tryDispatch = () => Js.Global.setTimeout(tryDispatch, 0) |> ignore; 74 | x((s => { resolution:=Some(Js.Result.Ok(s)); tryDispatch() }, 75 | e => { resolution:=Some(Js.Result.Error(e)); tryDispatch() })); 76 | 77 | (callbacks) => { 78 | switch(resolution^) { 79 | | None => waiting := [callbacks, ...(waiting^)] 80 | | Some(x) => dispatch(x,callbacks) 81 | } 82 | }; 83 | }; 84 | 85 | let timeout = (duration:duration, x:t('a)) : t('a) => { 86 | let resolved = ref (false); 87 | ((successCb, errorCb)) => { 88 | x((x => { 89 | if (!resolved^) { 90 | resolved := true; 91 | successCb(x); 92 | } 93 | }, e => { 94 | if (!resolved^) { 95 | resolved := true; 96 | errorCb(e); 97 | } 98 | })); 99 | Js.Global.setTimeout(() => { 100 | if (!resolved^) { 101 | resolved := true; 102 | errorCb(Timeout); 103 | } 104 | }, toMilliseconds(duration)) |> ignore; 105 | } 106 | }; 107 | 108 | let from_callback = (fn: ('a => unit) => unit) : t('a) => 109 | ((successCb, _)) => fn(successCb); 110 | 111 | let run = (~fe=?, f : 'a => unit, x : t('a)) => { 112 | let fe : (exn => unit) =fe |> Js.Option.getWithDefault(ignore); 113 | x((f, fe)); 114 | }; 115 | 116 | let runExn = (~fs, ~fe, x) => { 117 | Js.log("OBSOLETE FUNCTION CALL, use Async.run insteadn of Async.runExn"); 118 | x((fs, fe)); 119 | }; 120 | 121 | module I = { 122 | type t = int; 123 | let compare = (a:int,b:int) => Pervasives.compare(a,b); 124 | }; 125 | 126 | module IntMap = Map.Make(I); 127 | 128 | let both = (a : t('a), b: t('b)) : t(('a,'b)) => ((fs,fe)) => { 129 | let theA = ref(None); 130 | let theB = ref(None); 131 | let theErr = ref(None); 132 | let fe = err => 133 | if (Js.Option.isNone(theErr^)) { 134 | theErr := Some(err); 135 | fe(err); 136 | }; 137 | let checkComplete = () => {( 138 | switch((theA^, theB^)) { 139 | | (Some(a), Some(b)) => fs((a,b)) 140 | | _ => () 141 | } 142 | )}; 143 | a |> once |> run(~fe,x => { theA := Some(x); checkComplete() }); 144 | b |> once |> run(~fe,x => { theB := Some(x); checkComplete() }); 145 | }; 146 | 147 | let rec all = (xs : list(t('a))) : t(list('a)) => { 148 | switch(xs) { 149 | | [] => return([]); 150 | | [x, ...xs] => { 151 | let xs2:t(list('a)) = all(xs); 152 | both(x, xs2) |> map(((x,xs)) => [x, ...xs]); 153 | } 154 | }; 155 | }; 156 | -------------------------------------------------------------------------------- /tasks.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": "0.1.0", 3 | "command": "npm", 4 | "options": { 5 | "cwd": "${workspaceRoot}" 6 | }, 7 | "isShellCommand": true, 8 | "args": [ 9 | "run", 10 | "watch" 11 | ], 12 | "showOutput": "always", 13 | "isBackground": true, 14 | "problemMatcher": { 15 | "fileLocation": "absolute", 16 | "owner": "ocaml", 17 | "watching": { 18 | "activeOnStart": false, 19 | "beginsPattern": ">>>> Start compiling", 20 | "endsPattern": ">>>> Finish compiling" 21 | }, 22 | "pattern": [ 23 | { 24 | "regexp": "^File \"(.*)\", line (\\d+)(?:, characters (\\d+)-(\\d+))?:$", 25 | "file": 1, 26 | "line": 2, 27 | "column": 3, 28 | "endColumn": 4 29 | }, 30 | { 31 | "regexp": "^(?:(?:Parse\\s+)?(Warning|[Ee]rror)(?:\\s+\\d+)?:)?\\s+(.*)$", 32 | "severity": 1, 33 | "message": 2, 34 | "loop": true 35 | } 36 | ] 37 | } 38 | } -------------------------------------------------------------------------------- /tests/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | .merlin 3 | npm-debug.log 4 | /lib/bs/ 5 | /node_modules/ 6 | /lib/js/ 7 | !/lib/node_modules/ 8 | .bsb.lock 9 | yarn-error.log 10 | -------------------------------------------------------------------------------- /tests/bsconfig.json: -------------------------------------------------------------------------------- 1 | // This is the configuration file used by BuckleScript's build system bsb. Its documentation lives here: http://bucklescript.github.io/bucklescript/docson/#build-schema.json 2 | // BuckleScript comes with its own parser for bsconfig.json, which is normal JSON, with the extra support of comments and trailing commas. 3 | { 4 | "name": "resync-tests", 5 | "version": "0.1.0", 6 | "refmt": 3, 7 | "sources": [ 8 | { "dir": "tests", 9 | "type": "dev" } 10 | ], 11 | "bs-dependencies" : [ 12 | // add your dependencies here. You'd usually install them normally through `npm install my-dependency`. If my-dependency has a bsconfig.json too, then everything will work seamlessly. 13 | "@stroiman/async" 14 | ], 15 | "bs-dev-dependencies" : [ 16 | "@stroiman/respect" 17 | ] 18 | } 19 | -------------------------------------------------------------------------------- /tests/lib/node_modules/errorFunctions.js: -------------------------------------------------------------------------------- 1 | // These functions exists as raw js functions in order to test the wrapping 2 | // of javascript async functions that can result in errors 3 | 4 | module.exports = { 5 | asyncSucceedingFunction: function(i, cb) { 6 | setTimeout(() => cb(null, i)); 7 | }, 8 | asyncThrowingFunction: function(i, cb) { 9 | setTimeout(() => cb(new Error("dummy"), null)); 10 | } 11 | }; 12 | -------------------------------------------------------------------------------- /tests/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "scripts": { 3 | "build": "bsb -make-world -verbose", 4 | "watch": "bsb -make-world -w", 5 | "clean": "bsb -clean-world -verbose", 6 | "test:run": "respect", 7 | "test": "run-s clean build test:run", 8 | "test:watch": "nodemon node_modules/.bin/respect", 9 | "dev": "run-p watch test:watch" 10 | }, 11 | "devDependencies": { 12 | "@stroiman/respect": "0.7.0-rc.1", 13 | "bs-platform": "^2.2.1", 14 | "nodemon": "^1.12.1", 15 | "npm-run-all": "^4.1.2" 16 | }, 17 | "dependencies": { 18 | "@stroiman/async": "file:.." 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /tests/tests/Async_all_test.ml: -------------------------------------------------------------------------------- 1 | open Respect.Dsl.Async;; 2 | open Respect.Matcher;; 3 | open Matchers;; 4 | 5 | (*exception E;*) 6 | 7 | describe "Async.all" [ 8 | it "resolves when all items resolve" (fun _ -> 9 | let a = (fun (cb,_) -> Js.Global.setTimeout(fun _ -> cb 1) 1 |> ignore) in 10 | let b = (fun (cb,_) -> Js.Global.setTimeout(fun _ -> cb 2) 3 |> ignore) in 11 | let c = (fun (cb,_) -> Js.Global.setTimeout(fun _ -> cb 3) 2 |> ignore) in 12 | [a; b; c] 13 | |> Async.all 14 | |> shoulda (asyncResolve >=> equal [1; 2; 3]) 15 | ); 16 | 17 | it "fails when one fails" (fun _ -> 18 | let a = Async.return(1) in 19 | let b = Async.return(2) in 20 | let c = Async.return(3) |> Async.bind(fun _ -> raise (Failure "Dummy")) in 21 | [a; b; c] 22 | |> Async.all 23 | |> shoulda (asyncThrow) 24 | ) 25 | ] |> register; 26 | -------------------------------------------------------------------------------- /tests/tests/Async_test.re: -------------------------------------------------------------------------------- 1 | open Respect.Dsl.Async; 2 | open Respect.Matcher; 3 | open Matchers; 4 | 5 | exception Dummy; 6 | exception Dummy2; 7 | 8 | [@bs.module "errorFunctions"] 9 | external asyncThrowingFunction : (int, (Js.null(Js.Exn.t), int) => unit) => unit = ""; 10 | [@bs.module "errorFunctions"] 11 | external asyncSucceedingFunction : (int, (Js.null(Js.Exn.t), int) => unit) => unit = ""; 12 | 13 | describe("Async module", [ 14 | describe("return", [ 15 | it("eventually returns the value", (_) => { 16 | Async.return(42) 17 | |> shoulda(asyncResolve >=> equal(42)) 18 | }) 19 | ]), 20 | 21 | describe("map", [ 22 | it("eventually returns the modified value", (_) => { 23 | Async.return(42) 24 | |> Async.map(x => x+1) 25 | |> shoulda(asyncResolve >=> equal(43)) 26 | }), 27 | 28 | it("eventually returns error if mapping function throws", (_) => { 29 | Async.return(44) 30 | |> Async.map((_) => {raise(Dummy);}) 31 | |> shoulda(asyncThrow >=> equal(Dummy)) 32 | }) 33 | ]), 34 | 35 | describe("bind", [ 36 | it("eventually returns the bound value", (_) => { 37 | Async.return(42) 38 | |> Async.bind(x => Async.return(x+1)) 39 | |> shoulda(asyncResolve >=> equal(43)) 40 | }), 41 | 42 | it("eventually returns error if bound function throws", (_) => { 43 | Async.return(42) 44 | |> Async.bind((_) => { raise(Dummy) }) 45 | |> shoulda(asyncThrow >=> equal(Dummy)); 46 | }) 47 | ]), 48 | 49 | describe("from_callback", [ 50 | it("creates an async that succeeds", (_) => { 51 | let asyncFuncWithoutExn = (input, cb) => cb(input); 52 | asyncFuncWithoutExn(42) 53 | |> Async.from_callback 54 | |> shoulda(asyncResolve >=> equal(42)) 55 | }) 56 | ]), 57 | 58 | describe("Timeout", [ 59 | it("fails when timeout exceeded", (_) => { 60 | let after = ((cb,_)) => Js.Global.setTimeout(() => cb(42), 5) |> ignore; 61 | after 62 | |> Async.timeout(MilliSeconds(1)) 63 | |> shoulda(asyncThrow >=> equal(Async.Timeout)); 64 | }), 65 | 66 | it("Succeeds when timeout not exceeded", (_) => { 67 | let after = ((cb,_)) => Js.Global.setTimeout(() => cb(42), 1) |> ignore; 68 | after 69 | |> Async.timeout(MilliSeconds(5)) 70 | |> shoulda(asyncResolve >=> equal(42)); 71 | }) 72 | ]), 73 | 74 | describe("tryCatch", [ 75 | it("async resolve Some value", (_) => { 76 | Async.return(43) 77 | |> Async.map((_) => { raise(Dummy2) }) 78 | |> Async.tryCatch(fun | Dummy => Some(42) | _ => None) 79 | |> shoulda(asyncThrow >=> equal(Dummy2)) 80 | }), 81 | 82 | it("async throws None value", (_) => { 83 | Async.return(43) 84 | |> Async.map((_) => { raise(Dummy) }) 85 | |> Async.tryCatch(fun | Dummy => Some(42) | _ => None) 86 | |> shoulda(asyncResolve >=> equal(42)) 87 | }), 88 | ]), 89 | 90 | describe("mapping from async js functions", [ 91 | /* It is a common JS pattern to let functions take a callback 92 | that should accept two arguments, the first being an error, 93 | which could be null, and the second being the result if no 94 | error occurred */ 95 | it("handles JS errors nicely", (_) => { 96 | asyncThrowingFunction(42) 97 | |> Async.from_js 98 | |> shoulda(asyncThrow >=> haveMessage(Some("dummy"))); 99 | }), 100 | 101 | it("also handles when no error occues", (_) => { 102 | asyncSucceedingFunction(42) 103 | |> Async.from_js 104 | |> shoulda(asyncResolve >=> equal(42)) 105 | }) 106 | ]), 107 | 108 | describe("once", [ 109 | it("only calls the underlying function once, we hook up functions before resolution", (_) => { 110 | let start = ref(0); 111 | let f = ((cb,_errCb)) => { 112 | start := start^ + 1; 113 | Js.Global.setTimeout(() => cb(start^), 10) |> ignore; 114 | }; 115 | let f = f |> Async.once; 116 | 117 | f |> Async.bind((_) => f) 118 | |> shoulda(asyncResolve >=> equal(1)); 119 | }), 120 | 121 | it("Only calls the underlying function onde, we hook up functions after resolution", (_) => { 122 | let start = ref(0); 123 | let f = ((cb,_errCb)) => { 124 | start := start^ + 1; 125 | Js.Global.setTimeout(() => cb(start^), 0) |> ignore; 126 | }; 127 | let f = f |> Async.once; 128 | 129 | let after = delay => ((cb,_)) => Js.Global.setTimeout(cb, delay) |> ignore; 130 | after(10) 131 | |> Async.bind(() => f) 132 | |> Async.bind((_) => f) 133 | |> shoulda(asyncResolve >=> equal(1)); 134 | }) 135 | ]), 136 | 137 | describe("iter", [ 138 | it("calls the inline function", (_,don) => { 139 | let x = ref(42); 140 | Async.return(1) 141 | |> Async.iter(y => x := x^ + y) 142 | |> Async.run((_) => (x^ |> shoulda(equal(43)))(don)) 143 | }), 144 | 145 | it("Returns the original value", (_) => { 146 | let x = ref(42); 147 | Async.return(1) 148 | |> Async.iter(y => x := x^ + y) 149 | |> shoulda(asyncResolve >=> equal(1)) 150 | }) 151 | 152 | ]) 153 | ]) |> register 154 | -------------------------------------------------------------------------------- /tests/tests/Matchers.re: -------------------------------------------------------------------------------- 1 | open Respect.Matcher; 2 | 3 | let haveMessage = expected : matcher(exn, option(string)) => actual => 4 | switch(actual) { 5 | | Async.JsError(err) => equal(expected, Js.Exn.message(err)) 6 | | _ => matchFailure(actual,expected) 7 | }; 8 | 9 | let asyncResolve : matcher(Async.t('a),'b) = (actual:Async.t('a)) => (cb : matchResult('b) => unit) => { 10 | let successCb = x => cb(MatchSuccess(x)); 11 | let exnCb = x => cb(MatchFailure(x |> Obj.repr, x |> Obj.repr)); 12 | actual |> Async.run(~fe=exnCb, successCb) 13 | }; 14 | 15 | let asyncThrow : matcher(Async.t('a), exn) = (actual:Async.t('a)) => { 16 | let result = cb => { 17 | let successCb = x => cb(MatchFailure(x |> Obj.repr, x |> Obj.repr)); 18 | let exnCb = x => cb(MatchSuccess(x)); 19 | actual |> Async.run(successCb,~fe=exnCb) 20 | }; 21 | result 22 | }; 23 | 24 | 25 | -------------------------------------------------------------------------------- /tests/yarn.lock: -------------------------------------------------------------------------------- 1 | # THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY. 2 | # yarn lockfile v1 3 | 4 | 5 | "@stroiman/async@^0.5.2-rc.2", "@stroiman/async@file:..": 6 | version "0.5.2-rc.2" 7 | 8 | "@stroiman/respect@0.7.0-rc.1": 9 | version "0.7.0-rc.1" 10 | resolved "https://registry.yarnpkg.com/@stroiman/respect/-/respect-0.7.0-rc.1.tgz#3761919a78ce78a1487d720964adbafde2423852" 11 | dependencies: 12 | "@stroiman/async" "^0.5.2-rc.2" 13 | cli "^1.0.1" 14 | glob "^7.1.2" 15 | 16 | abbrev@1: 17 | version "1.1.1" 18 | resolved "https://registry.yarnpkg.com/abbrev/-/abbrev-1.1.1.tgz#f8f2c887ad10bf67f634f005b6987fed3179aac8" 19 | 20 | ajv@^4.9.1: 21 | version "4.11.8" 22 | resolved "https://registry.yarnpkg.com/ajv/-/ajv-4.11.8.tgz#82ffb02b29e662ae53bdc20af15947706739c536" 23 | dependencies: 24 | co "^4.6.0" 25 | json-stable-stringify "^1.0.1" 26 | 27 | ansi-align@^2.0.0: 28 | version "2.0.0" 29 | resolved "https://registry.yarnpkg.com/ansi-align/-/ansi-align-2.0.0.tgz#c36aeccba563b89ceb556f3690f0b1d9e3547f7f" 30 | dependencies: 31 | string-width "^2.0.0" 32 | 33 | ansi-regex@^2.0.0: 34 | version "2.1.1" 35 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-2.1.1.tgz#c3b33ab5ee360d86e0e628f0468ae7ef27d654df" 36 | 37 | ansi-regex@^3.0.0: 38 | version "3.0.0" 39 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-3.0.0.tgz#ed0317c322064f79466c02966bddb605ab37d998" 40 | 41 | ansi-styles@^3.1.0, ansi-styles@^3.2.0: 42 | version "3.2.0" 43 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-3.2.0.tgz#c159b8d5be0f9e5a6f346dab94f16ce022161b88" 44 | dependencies: 45 | color-convert "^1.9.0" 46 | 47 | anymatch@^2.0.0: 48 | version "2.0.0" 49 | resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-2.0.0.tgz#bcb24b4f37934d9aa7ac17b4adaf89e7c76ef2eb" 50 | dependencies: 51 | micromatch "^3.1.4" 52 | normalize-path "^2.1.1" 53 | 54 | aproba@^1.0.3: 55 | version "1.2.0" 56 | resolved "https://registry.yarnpkg.com/aproba/-/aproba-1.2.0.tgz#6802e6264efd18c790a1b0d517f0f2627bf2c94a" 57 | 58 | are-we-there-yet@~1.1.2: 59 | version "1.1.4" 60 | resolved "https://registry.yarnpkg.com/are-we-there-yet/-/are-we-there-yet-1.1.4.tgz#bb5dca382bb94f05e15194373d16fd3ba1ca110d" 61 | dependencies: 62 | delegates "^1.0.0" 63 | readable-stream "^2.0.6" 64 | 65 | arr-diff@^4.0.0: 66 | version "4.0.0" 67 | resolved "https://registry.yarnpkg.com/arr-diff/-/arr-diff-4.0.0.tgz#d6461074febfec71e7e15235761a329a5dc7c520" 68 | 69 | arr-flatten@^1.1.0: 70 | version "1.1.0" 71 | resolved "https://registry.yarnpkg.com/arr-flatten/-/arr-flatten-1.1.0.tgz#36048bbff4e7b47e136644316c99669ea5ae91f1" 72 | 73 | arr-union@^3.1.0: 74 | version "3.1.0" 75 | resolved "https://registry.yarnpkg.com/arr-union/-/arr-union-3.1.0.tgz#e39b09aea9def866a8f206e288af63919bae39c4" 76 | 77 | array-filter@~0.0.0: 78 | version "0.0.1" 79 | resolved "https://registry.yarnpkg.com/array-filter/-/array-filter-0.0.1.tgz#7da8cf2e26628ed732803581fd21f67cacd2eeec" 80 | 81 | array-map@~0.0.0: 82 | version "0.0.0" 83 | resolved "https://registry.yarnpkg.com/array-map/-/array-map-0.0.0.tgz#88a2bab73d1cf7bcd5c1b118a003f66f665fa662" 84 | 85 | array-reduce@~0.0.0: 86 | version "0.0.0" 87 | resolved "https://registry.yarnpkg.com/array-reduce/-/array-reduce-0.0.0.tgz#173899d3ffd1c7d9383e4479525dbe278cab5f2b" 88 | 89 | array-unique@^0.3.2: 90 | version "0.3.2" 91 | resolved "https://registry.yarnpkg.com/array-unique/-/array-unique-0.3.2.tgz#a894b75d4bc4f6cd679ef3244a9fd8f46ae2d428" 92 | 93 | asn1@~0.2.3: 94 | version "0.2.3" 95 | resolved "https://registry.yarnpkg.com/asn1/-/asn1-0.2.3.tgz#dac8787713c9966849fc8180777ebe9c1ddf3b86" 96 | 97 | assert-plus@1.0.0, assert-plus@^1.0.0: 98 | version "1.0.0" 99 | resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-1.0.0.tgz#f12e0f3c5d77b0b1cdd9146942e4e96c1e4dd525" 100 | 101 | assert-plus@^0.2.0: 102 | version "0.2.0" 103 | resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-0.2.0.tgz#d74e1b87e7affc0db8aadb7021f3fe48101ab234" 104 | 105 | assign-symbols@^1.0.0: 106 | version "1.0.0" 107 | resolved "https://registry.yarnpkg.com/assign-symbols/-/assign-symbols-1.0.0.tgz#59667f41fadd4f20ccbc2bb96b8d4f7f78ec0367" 108 | 109 | async-each@^1.0.0: 110 | version "1.0.1" 111 | resolved "https://registry.yarnpkg.com/async-each/-/async-each-1.0.1.tgz#19d386a1d9edc6e7c1c85d388aedbcc56d33602d" 112 | 113 | asynckit@^0.4.0: 114 | version "0.4.0" 115 | resolved "https://registry.yarnpkg.com/asynckit/-/asynckit-0.4.0.tgz#c79ed97f7f34cb8f2ba1bc9790bcc366474b4b79" 116 | 117 | atob@^2.0.0: 118 | version "2.0.3" 119 | resolved "https://registry.yarnpkg.com/atob/-/atob-2.0.3.tgz#19c7a760473774468f20b2d2d03372ad7d4cbf5d" 120 | 121 | aws-sign2@~0.6.0: 122 | version "0.6.0" 123 | resolved "https://registry.yarnpkg.com/aws-sign2/-/aws-sign2-0.6.0.tgz#14342dd38dbcc94d0e5b87d763cd63612c0e794f" 124 | 125 | aws4@^1.2.1: 126 | version "1.6.0" 127 | resolved "https://registry.yarnpkg.com/aws4/-/aws4-1.6.0.tgz#83ef5ca860b2b32e4a0deedee8c771b9db57471e" 128 | 129 | balanced-match@^1.0.0: 130 | version "1.0.0" 131 | resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.0.tgz#89b4d199ab2bee49de164ea02b89ce462d71b767" 132 | 133 | base@^0.11.1: 134 | version "0.11.2" 135 | resolved "https://registry.yarnpkg.com/base/-/base-0.11.2.tgz#7bde5ced145b6d551a90db87f83c558b4eb48a8f" 136 | dependencies: 137 | cache-base "^1.0.1" 138 | class-utils "^0.3.5" 139 | component-emitter "^1.2.1" 140 | define-property "^1.0.0" 141 | isobject "^3.0.1" 142 | mixin-deep "^1.2.0" 143 | pascalcase "^0.1.1" 144 | 145 | bcrypt-pbkdf@^1.0.0: 146 | version "1.0.1" 147 | resolved "https://registry.yarnpkg.com/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.1.tgz#63bc5dcb61331b92bc05fd528953c33462a06f8d" 148 | dependencies: 149 | tweetnacl "^0.14.3" 150 | 151 | binary-extensions@^1.0.0: 152 | version "1.11.0" 153 | resolved "https://registry.yarnpkg.com/binary-extensions/-/binary-extensions-1.11.0.tgz#46aa1751fb6a2f93ee5e689bb1087d4b14c6c205" 154 | 155 | block-stream@*: 156 | version "0.0.9" 157 | resolved "https://registry.yarnpkg.com/block-stream/-/block-stream-0.0.9.tgz#13ebfe778a03205cfe03751481ebb4b3300c126a" 158 | dependencies: 159 | inherits "~2.0.0" 160 | 161 | boom@2.x.x: 162 | version "2.10.1" 163 | resolved "https://registry.yarnpkg.com/boom/-/boom-2.10.1.tgz#39c8918ceff5799f83f9492a848f625add0c766f" 164 | dependencies: 165 | hoek "2.x.x" 166 | 167 | boxen@^1.2.1: 168 | version "1.3.0" 169 | resolved "https://registry.yarnpkg.com/boxen/-/boxen-1.3.0.tgz#55c6c39a8ba58d9c61ad22cd877532deb665a20b" 170 | dependencies: 171 | ansi-align "^2.0.0" 172 | camelcase "^4.0.0" 173 | chalk "^2.0.1" 174 | cli-boxes "^1.0.0" 175 | string-width "^2.0.0" 176 | term-size "^1.2.0" 177 | widest-line "^2.0.0" 178 | 179 | brace-expansion@^1.1.7: 180 | version "1.1.8" 181 | resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.8.tgz#c07b211c7c952ec1f8efd51a77ef0d1d3990a292" 182 | dependencies: 183 | balanced-match "^1.0.0" 184 | concat-map "0.0.1" 185 | 186 | braces@^2.3.0: 187 | version "2.3.0" 188 | resolved "https://registry.yarnpkg.com/braces/-/braces-2.3.0.tgz#a46941cb5fb492156b3d6a656e06c35364e3e66e" 189 | dependencies: 190 | arr-flatten "^1.1.0" 191 | array-unique "^0.3.2" 192 | define-property "^1.0.0" 193 | extend-shallow "^2.0.1" 194 | fill-range "^4.0.0" 195 | isobject "^3.0.1" 196 | repeat-element "^1.1.2" 197 | snapdragon "^0.8.1" 198 | snapdragon-node "^2.0.1" 199 | split-string "^3.0.2" 200 | to-regex "^3.0.1" 201 | 202 | bs-platform@2.0.0: 203 | version "2.0.0" 204 | resolved "https://registry.yarnpkg.com/bs-platform/-/bs-platform-2.0.0.tgz#17ee607fa829f67b8b920438ebca5ec1deab3276" 205 | 206 | builtin-modules@^1.0.0: 207 | version "1.1.1" 208 | resolved "https://registry.yarnpkg.com/builtin-modules/-/builtin-modules-1.1.1.tgz#270f076c5a72c02f5b65a47df94c5fe3a278892f" 209 | 210 | cache-base@^1.0.1: 211 | version "1.0.1" 212 | resolved "https://registry.yarnpkg.com/cache-base/-/cache-base-1.0.1.tgz#0a7f46416831c8b662ee36fe4e7c59d76f666ab2" 213 | dependencies: 214 | collection-visit "^1.0.0" 215 | component-emitter "^1.2.1" 216 | get-value "^2.0.6" 217 | has-value "^1.0.0" 218 | isobject "^3.0.1" 219 | set-value "^2.0.0" 220 | to-object-path "^0.3.0" 221 | union-value "^1.0.0" 222 | unset-value "^1.0.0" 223 | 224 | camelcase@^4.0.0: 225 | version "4.1.0" 226 | resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-4.1.0.tgz#d545635be1e33c542649c69173e5de6acfae34dd" 227 | 228 | capture-stack-trace@^1.0.0: 229 | version "1.0.0" 230 | resolved "https://registry.yarnpkg.com/capture-stack-trace/-/capture-stack-trace-1.0.0.tgz#4a6fa07399c26bba47f0b2496b4d0fb408c5550d" 231 | 232 | caseless@~0.12.0: 233 | version "0.12.0" 234 | resolved "https://registry.yarnpkg.com/caseless/-/caseless-0.12.0.tgz#1b681c21ff84033c826543090689420d187151dc" 235 | 236 | chalk@^2.0.1, chalk@^2.1.0: 237 | version "2.3.0" 238 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-2.3.0.tgz#b5ea48efc9c1793dccc9b4767c93914d3f2d52ba" 239 | dependencies: 240 | ansi-styles "^3.1.0" 241 | escape-string-regexp "^1.0.5" 242 | supports-color "^4.0.0" 243 | 244 | chokidar@^2.0.0: 245 | version "2.0.0" 246 | resolved "https://registry.yarnpkg.com/chokidar/-/chokidar-2.0.0.tgz#6686313c541d3274b2a5c01233342037948c911b" 247 | dependencies: 248 | anymatch "^2.0.0" 249 | async-each "^1.0.0" 250 | braces "^2.3.0" 251 | glob-parent "^3.1.0" 252 | inherits "^2.0.1" 253 | is-binary-path "^1.0.0" 254 | is-glob "^4.0.0" 255 | normalize-path "^2.1.1" 256 | path-is-absolute "^1.0.0" 257 | readdirp "^2.0.0" 258 | optionalDependencies: 259 | fsevents "^1.0.0" 260 | 261 | class-utils@^0.3.5: 262 | version "0.3.6" 263 | resolved "https://registry.yarnpkg.com/class-utils/-/class-utils-0.3.6.tgz#f93369ae8b9a7ce02fd41faad0ca83033190c463" 264 | dependencies: 265 | arr-union "^3.1.0" 266 | define-property "^0.2.5" 267 | isobject "^3.0.0" 268 | static-extend "^0.1.1" 269 | 270 | cli-boxes@^1.0.0: 271 | version "1.0.0" 272 | resolved "https://registry.yarnpkg.com/cli-boxes/-/cli-boxes-1.0.0.tgz#4fa917c3e59c94a004cd61f8ee509da651687143" 273 | 274 | cli@^1.0.1: 275 | version "1.0.1" 276 | resolved "https://registry.yarnpkg.com/cli/-/cli-1.0.1.tgz#22817534f24bfa4950c34d532d48ecbc621b8c14" 277 | dependencies: 278 | exit "0.1.2" 279 | glob "^7.1.1" 280 | 281 | co@^4.6.0: 282 | version "4.6.0" 283 | resolved "https://registry.yarnpkg.com/co/-/co-4.6.0.tgz#6ea6bdf3d853ae54ccb8e47bfa0bf3f9031fb184" 284 | 285 | code-point-at@^1.0.0: 286 | version "1.1.0" 287 | resolved "https://registry.yarnpkg.com/code-point-at/-/code-point-at-1.1.0.tgz#0d070b4d043a5bea33a2f1a40e2edb3d9a4ccf77" 288 | 289 | collection-visit@^1.0.0: 290 | version "1.0.0" 291 | resolved "https://registry.yarnpkg.com/collection-visit/-/collection-visit-1.0.0.tgz#4bc0373c164bc3291b4d368c829cf1a80a59dca0" 292 | dependencies: 293 | map-visit "^1.0.0" 294 | object-visit "^1.0.0" 295 | 296 | color-convert@^1.9.0: 297 | version "1.9.1" 298 | resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-1.9.1.tgz#c1261107aeb2f294ebffec9ed9ecad529a6097ed" 299 | dependencies: 300 | color-name "^1.1.1" 301 | 302 | color-name@^1.1.1: 303 | version "1.1.3" 304 | resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.3.tgz#a7d0558bd89c42f795dd42328f740831ca53bc25" 305 | 306 | combined-stream@^1.0.5, combined-stream@~1.0.5: 307 | version "1.0.5" 308 | resolved "https://registry.yarnpkg.com/combined-stream/-/combined-stream-1.0.5.tgz#938370a57b4a51dea2c77c15d5c5fdf895164009" 309 | dependencies: 310 | delayed-stream "~1.0.0" 311 | 312 | component-emitter@^1.2.1: 313 | version "1.2.1" 314 | resolved "https://registry.yarnpkg.com/component-emitter/-/component-emitter-1.2.1.tgz#137918d6d78283f7df7a6b7c5a63e140e69425e6" 315 | 316 | concat-map@0.0.1: 317 | version "0.0.1" 318 | resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b" 319 | 320 | configstore@^3.0.0: 321 | version "3.1.1" 322 | resolved "https://registry.yarnpkg.com/configstore/-/configstore-3.1.1.tgz#094ee662ab83fad9917678de114faaea8fcdca90" 323 | dependencies: 324 | dot-prop "^4.1.0" 325 | graceful-fs "^4.1.2" 326 | make-dir "^1.0.0" 327 | unique-string "^1.0.0" 328 | write-file-atomic "^2.0.0" 329 | xdg-basedir "^3.0.0" 330 | 331 | console-control-strings@^1.0.0, console-control-strings@~1.1.0: 332 | version "1.1.0" 333 | resolved "https://registry.yarnpkg.com/console-control-strings/-/console-control-strings-1.1.0.tgz#3d7cf4464db6446ea644bf4b39507f9851008e8e" 334 | 335 | copy-descriptor@^0.1.0: 336 | version "0.1.1" 337 | resolved "https://registry.yarnpkg.com/copy-descriptor/-/copy-descriptor-0.1.1.tgz#676f6eb3c39997c2ee1ac3a924fd6124748f578d" 338 | 339 | core-util-is@1.0.2, core-util-is@~1.0.0: 340 | version "1.0.2" 341 | resolved "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.2.tgz#b5fd54220aa2bc5ab57aab7140c940754503c1a7" 342 | 343 | create-error-class@^3.0.0: 344 | version "3.0.2" 345 | resolved "https://registry.yarnpkg.com/create-error-class/-/create-error-class-3.0.2.tgz#06be7abef947a3f14a30fd610671d401bca8b7b6" 346 | dependencies: 347 | capture-stack-trace "^1.0.0" 348 | 349 | cross-spawn@^5.0.1, cross-spawn@^5.1.0: 350 | version "5.1.0" 351 | resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-5.1.0.tgz#e8bd0efee58fcff6f8f94510a0a554bbfa235449" 352 | dependencies: 353 | lru-cache "^4.0.1" 354 | shebang-command "^1.2.0" 355 | which "^1.2.9" 356 | 357 | cryptiles@2.x.x: 358 | version "2.0.5" 359 | resolved "https://registry.yarnpkg.com/cryptiles/-/cryptiles-2.0.5.tgz#3bdfecdc608147c1c67202fa291e7dca59eaa3b8" 360 | dependencies: 361 | boom "2.x.x" 362 | 363 | crypto-random-string@^1.0.0: 364 | version "1.0.0" 365 | resolved "https://registry.yarnpkg.com/crypto-random-string/-/crypto-random-string-1.0.0.tgz#a230f64f568310e1498009940790ec99545bca7e" 366 | 367 | dashdash@^1.12.0: 368 | version "1.14.1" 369 | resolved "https://registry.yarnpkg.com/dashdash/-/dashdash-1.14.1.tgz#853cfa0f7cbe2fed5de20326b8dd581035f6e2f0" 370 | dependencies: 371 | assert-plus "^1.0.0" 372 | 373 | debug@^2.2.0, debug@^2.3.3: 374 | version "2.6.9" 375 | resolved "https://registry.yarnpkg.com/debug/-/debug-2.6.9.tgz#5d128515df134ff327e90a4c93f4e077a536341f" 376 | dependencies: 377 | ms "2.0.0" 378 | 379 | debug@^3.1.0: 380 | version "3.1.0" 381 | resolved "https://registry.yarnpkg.com/debug/-/debug-3.1.0.tgz#5bb5a0672628b64149566ba16819e61518c67261" 382 | dependencies: 383 | ms "2.0.0" 384 | 385 | decode-uri-component@^0.2.0: 386 | version "0.2.0" 387 | resolved "https://registry.yarnpkg.com/decode-uri-component/-/decode-uri-component-0.2.0.tgz#eb3913333458775cb84cd1a1fae062106bb87545" 388 | 389 | deep-extend@~0.4.0: 390 | version "0.4.2" 391 | resolved "https://registry.yarnpkg.com/deep-extend/-/deep-extend-0.4.2.tgz#48b699c27e334bf89f10892be432f6e4c7d34a7f" 392 | 393 | define-properties@^1.1.2: 394 | version "1.1.2" 395 | resolved "https://registry.yarnpkg.com/define-properties/-/define-properties-1.1.2.tgz#83a73f2fea569898fb737193c8f873caf6d45c94" 396 | dependencies: 397 | foreach "^2.0.5" 398 | object-keys "^1.0.8" 399 | 400 | define-property@^0.2.5: 401 | version "0.2.5" 402 | resolved "https://registry.yarnpkg.com/define-property/-/define-property-0.2.5.tgz#c35b1ef918ec3c990f9a5bc57be04aacec5c8116" 403 | dependencies: 404 | is-descriptor "^0.1.0" 405 | 406 | define-property@^1.0.0: 407 | version "1.0.0" 408 | resolved "https://registry.yarnpkg.com/define-property/-/define-property-1.0.0.tgz#769ebaaf3f4a63aad3af9e8d304c9bbe79bfb0e6" 409 | dependencies: 410 | is-descriptor "^1.0.0" 411 | 412 | delayed-stream@~1.0.0: 413 | version "1.0.0" 414 | resolved "https://registry.yarnpkg.com/delayed-stream/-/delayed-stream-1.0.0.tgz#df3ae199acadfb7d440aaae0b29e2272b24ec619" 415 | 416 | delegates@^1.0.0: 417 | version "1.0.0" 418 | resolved "https://registry.yarnpkg.com/delegates/-/delegates-1.0.0.tgz#84c6e159b81904fdca59a0ef44cd870d31250f9a" 419 | 420 | detect-libc@^1.0.2: 421 | version "1.0.3" 422 | resolved "https://registry.yarnpkg.com/detect-libc/-/detect-libc-1.0.3.tgz#fa137c4bd698edf55cd5cd02ac559f91a4c4ba9b" 423 | 424 | dot-prop@^4.1.0: 425 | version "4.2.0" 426 | resolved "https://registry.yarnpkg.com/dot-prop/-/dot-prop-4.2.0.tgz#1f19e0c2e1aa0e32797c49799f2837ac6af69c57" 427 | dependencies: 428 | is-obj "^1.0.0" 429 | 430 | duplexer3@^0.1.4: 431 | version "0.1.4" 432 | resolved "https://registry.yarnpkg.com/duplexer3/-/duplexer3-0.1.4.tgz#ee01dd1cac0ed3cbc7fdbea37dc0a8f1ce002ce2" 433 | 434 | duplexer@~0.1.1: 435 | version "0.1.1" 436 | resolved "https://registry.yarnpkg.com/duplexer/-/duplexer-0.1.1.tgz#ace6ff808c1ce66b57d1ebf97977acb02334cfc1" 437 | 438 | ecc-jsbn@~0.1.1: 439 | version "0.1.1" 440 | resolved "https://registry.yarnpkg.com/ecc-jsbn/-/ecc-jsbn-0.1.1.tgz#0fc73a9ed5f0d53c38193398523ef7e543777505" 441 | dependencies: 442 | jsbn "~0.1.0" 443 | 444 | error-ex@^1.3.1: 445 | version "1.3.1" 446 | resolved "https://registry.yarnpkg.com/error-ex/-/error-ex-1.3.1.tgz#f855a86ce61adc4e8621c3cda21e7a7612c3a8dc" 447 | dependencies: 448 | is-arrayish "^0.2.1" 449 | 450 | es-abstract@^1.4.3: 451 | version "1.10.0" 452 | resolved "https://registry.yarnpkg.com/es-abstract/-/es-abstract-1.10.0.tgz#1ecb36c197842a00d8ee4c2dfd8646bb97d60864" 453 | dependencies: 454 | es-to-primitive "^1.1.1" 455 | function-bind "^1.1.1" 456 | has "^1.0.1" 457 | is-callable "^1.1.3" 458 | is-regex "^1.0.4" 459 | 460 | es-to-primitive@^1.1.1: 461 | version "1.1.1" 462 | resolved "https://registry.yarnpkg.com/es-to-primitive/-/es-to-primitive-1.1.1.tgz#45355248a88979034b6792e19bb81f2b7975dd0d" 463 | dependencies: 464 | is-callable "^1.1.1" 465 | is-date-object "^1.0.1" 466 | is-symbol "^1.0.1" 467 | 468 | escape-string-regexp@^1.0.5: 469 | version "1.0.5" 470 | resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4" 471 | 472 | event-stream@~3.3.0: 473 | version "3.3.4" 474 | resolved "https://registry.yarnpkg.com/event-stream/-/event-stream-3.3.4.tgz#4ab4c9a0f5a54db9338b4c34d86bfce8f4b35571" 475 | dependencies: 476 | duplexer "~0.1.1" 477 | from "~0" 478 | map-stream "~0.1.0" 479 | pause-stream "0.0.11" 480 | split "0.3" 481 | stream-combiner "~0.0.4" 482 | through "~2.3.1" 483 | 484 | execa@^0.7.0: 485 | version "0.7.0" 486 | resolved "https://registry.yarnpkg.com/execa/-/execa-0.7.0.tgz#944becd34cc41ee32a63a9faf27ad5a65fc59777" 487 | dependencies: 488 | cross-spawn "^5.0.1" 489 | get-stream "^3.0.0" 490 | is-stream "^1.1.0" 491 | npm-run-path "^2.0.0" 492 | p-finally "^1.0.0" 493 | signal-exit "^3.0.0" 494 | strip-eof "^1.0.0" 495 | 496 | exit@0.1.2: 497 | version "0.1.2" 498 | resolved "https://registry.yarnpkg.com/exit/-/exit-0.1.2.tgz#0632638f8d877cc82107d30a0fff1a17cba1cd0c" 499 | 500 | expand-brackets@^2.1.4: 501 | version "2.1.4" 502 | resolved "https://registry.yarnpkg.com/expand-brackets/-/expand-brackets-2.1.4.tgz#b77735e315ce30f6b6eff0f83b04151a22449622" 503 | dependencies: 504 | debug "^2.3.3" 505 | define-property "^0.2.5" 506 | extend-shallow "^2.0.1" 507 | posix-character-classes "^0.1.0" 508 | regex-not "^1.0.0" 509 | snapdragon "^0.8.1" 510 | to-regex "^3.0.1" 511 | 512 | extend-shallow@^2.0.1: 513 | version "2.0.1" 514 | resolved "https://registry.yarnpkg.com/extend-shallow/-/extend-shallow-2.0.1.tgz#51af7d614ad9a9f610ea1bafbb989d6b1c56890f" 515 | dependencies: 516 | is-extendable "^0.1.0" 517 | 518 | extend-shallow@^3.0.0: 519 | version "3.0.2" 520 | resolved "https://registry.yarnpkg.com/extend-shallow/-/extend-shallow-3.0.2.tgz#26a71aaf073b39fb2127172746131c2704028db8" 521 | dependencies: 522 | assign-symbols "^1.0.0" 523 | is-extendable "^1.0.1" 524 | 525 | extend@~3.0.0: 526 | version "3.0.1" 527 | resolved "https://registry.yarnpkg.com/extend/-/extend-3.0.1.tgz#a755ea7bc1adfcc5a31ce7e762dbaadc5e636444" 528 | 529 | extglob@^2.0.2: 530 | version "2.0.4" 531 | resolved "https://registry.yarnpkg.com/extglob/-/extglob-2.0.4.tgz#ad00fe4dc612a9232e8718711dc5cb5ab0285543" 532 | dependencies: 533 | array-unique "^0.3.2" 534 | define-property "^1.0.0" 535 | expand-brackets "^2.1.4" 536 | extend-shallow "^2.0.1" 537 | fragment-cache "^0.2.1" 538 | regex-not "^1.0.0" 539 | snapdragon "^0.8.1" 540 | to-regex "^3.0.1" 541 | 542 | extsprintf@1.3.0: 543 | version "1.3.0" 544 | resolved "https://registry.yarnpkg.com/extsprintf/-/extsprintf-1.3.0.tgz#96918440e3041a7a414f8c52e3c574eb3c3e1e05" 545 | 546 | extsprintf@^1.2.0: 547 | version "1.4.0" 548 | resolved "https://registry.yarnpkg.com/extsprintf/-/extsprintf-1.4.0.tgz#e2689f8f356fad62cca65a3a91c5df5f9551692f" 549 | 550 | fill-range@^4.0.0: 551 | version "4.0.0" 552 | resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-4.0.0.tgz#d544811d428f98eb06a63dc402d2403c328c38f7" 553 | dependencies: 554 | extend-shallow "^2.0.1" 555 | is-number "^3.0.0" 556 | repeat-string "^1.6.1" 557 | to-regex-range "^2.1.0" 558 | 559 | for-in@^1.0.2: 560 | version "1.0.2" 561 | resolved "https://registry.yarnpkg.com/for-in/-/for-in-1.0.2.tgz#81068d295a8142ec0ac726c6e2200c30fb6d5e80" 562 | 563 | foreach@^2.0.5: 564 | version "2.0.5" 565 | resolved "https://registry.yarnpkg.com/foreach/-/foreach-2.0.5.tgz#0bee005018aeb260d0a3af3ae658dd0136ec1b99" 566 | 567 | forever-agent@~0.6.1: 568 | version "0.6.1" 569 | resolved "https://registry.yarnpkg.com/forever-agent/-/forever-agent-0.6.1.tgz#fbc71f0c41adeb37f96c577ad1ed42d8fdacca91" 570 | 571 | form-data@~2.1.1: 572 | version "2.1.4" 573 | resolved "https://registry.yarnpkg.com/form-data/-/form-data-2.1.4.tgz#33c183acf193276ecaa98143a69e94bfee1750d1" 574 | dependencies: 575 | asynckit "^0.4.0" 576 | combined-stream "^1.0.5" 577 | mime-types "^2.1.12" 578 | 579 | fragment-cache@^0.2.1: 580 | version "0.2.1" 581 | resolved "https://registry.yarnpkg.com/fragment-cache/-/fragment-cache-0.2.1.tgz#4290fad27f13e89be7f33799c6bc5a0abfff0d19" 582 | dependencies: 583 | map-cache "^0.2.2" 584 | 585 | from@~0: 586 | version "0.1.7" 587 | resolved "https://registry.yarnpkg.com/from/-/from-0.1.7.tgz#83c60afc58b9c56997007ed1a768b3ab303a44fe" 588 | 589 | fs.realpath@^1.0.0: 590 | version "1.0.0" 591 | resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f" 592 | 593 | fsevents@^1.0.0: 594 | version "1.1.3" 595 | resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-1.1.3.tgz#11f82318f5fe7bb2cd22965a108e9306208216d8" 596 | dependencies: 597 | nan "^2.3.0" 598 | node-pre-gyp "^0.6.39" 599 | 600 | fstream-ignore@^1.0.5: 601 | version "1.0.5" 602 | resolved "https://registry.yarnpkg.com/fstream-ignore/-/fstream-ignore-1.0.5.tgz#9c31dae34767018fe1d249b24dada67d092da105" 603 | dependencies: 604 | fstream "^1.0.0" 605 | inherits "2" 606 | minimatch "^3.0.0" 607 | 608 | fstream@^1.0.0, fstream@^1.0.10, fstream@^1.0.2: 609 | version "1.0.11" 610 | resolved "https://registry.yarnpkg.com/fstream/-/fstream-1.0.11.tgz#5c1fb1f117477114f0632a0eb4b71b3cb0fd3171" 611 | dependencies: 612 | graceful-fs "^4.1.2" 613 | inherits "~2.0.0" 614 | mkdirp ">=0.5 0" 615 | rimraf "2" 616 | 617 | function-bind@^1.0.2, function-bind@^1.1.1: 618 | version "1.1.1" 619 | resolved "https://registry.yarnpkg.com/function-bind/-/function-bind-1.1.1.tgz#a56899d3ea3c9bab874bb9773b7c5ede92f4895d" 620 | 621 | gauge@~2.7.3: 622 | version "2.7.4" 623 | resolved "https://registry.yarnpkg.com/gauge/-/gauge-2.7.4.tgz#2c03405c7538c39d7eb37b317022e325fb018bf7" 624 | dependencies: 625 | aproba "^1.0.3" 626 | console-control-strings "^1.0.0" 627 | has-unicode "^2.0.0" 628 | object-assign "^4.1.0" 629 | signal-exit "^3.0.0" 630 | string-width "^1.0.1" 631 | strip-ansi "^3.0.1" 632 | wide-align "^1.1.0" 633 | 634 | get-stream@^3.0.0: 635 | version "3.0.0" 636 | resolved "https://registry.yarnpkg.com/get-stream/-/get-stream-3.0.0.tgz#8e943d1358dc37555054ecbe2edb05aa174ede14" 637 | 638 | get-value@^2.0.3, get-value@^2.0.6: 639 | version "2.0.6" 640 | resolved "https://registry.yarnpkg.com/get-value/-/get-value-2.0.6.tgz#dc15ca1c672387ca76bd37ac0a395ba2042a2c28" 641 | 642 | getpass@^0.1.1: 643 | version "0.1.7" 644 | resolved "https://registry.yarnpkg.com/getpass/-/getpass-0.1.7.tgz#5eff8e3e684d569ae4cb2b1282604e8ba62149fa" 645 | dependencies: 646 | assert-plus "^1.0.0" 647 | 648 | glob-parent@^3.1.0: 649 | version "3.1.0" 650 | resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-3.1.0.tgz#9e6af6299d8d3bd2bd40430832bd113df906c5ae" 651 | dependencies: 652 | is-glob "^3.1.0" 653 | path-dirname "^1.0.0" 654 | 655 | glob@^7.0.5, glob@^7.1.1, glob@^7.1.2: 656 | version "7.1.2" 657 | resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.2.tgz#c19c9df9a028702d678612384a6552404c636d15" 658 | dependencies: 659 | fs.realpath "^1.0.0" 660 | inflight "^1.0.4" 661 | inherits "2" 662 | minimatch "^3.0.4" 663 | once "^1.3.0" 664 | path-is-absolute "^1.0.0" 665 | 666 | global-dirs@^0.1.0: 667 | version "0.1.1" 668 | resolved "https://registry.yarnpkg.com/global-dirs/-/global-dirs-0.1.1.tgz#b319c0dd4607f353f3be9cca4c72fc148c49f445" 669 | dependencies: 670 | ini "^1.3.4" 671 | 672 | got@^6.7.1: 673 | version "6.7.1" 674 | resolved "https://registry.yarnpkg.com/got/-/got-6.7.1.tgz#240cd05785a9a18e561dc1b44b41c763ef1e8db0" 675 | dependencies: 676 | create-error-class "^3.0.0" 677 | duplexer3 "^0.1.4" 678 | get-stream "^3.0.0" 679 | is-redirect "^1.0.0" 680 | is-retry-allowed "^1.0.0" 681 | is-stream "^1.0.0" 682 | lowercase-keys "^1.0.0" 683 | safe-buffer "^5.0.1" 684 | timed-out "^4.0.0" 685 | unzip-response "^2.0.1" 686 | url-parse-lax "^1.0.0" 687 | 688 | graceful-fs@^4.1.11, graceful-fs@^4.1.2: 689 | version "4.1.11" 690 | resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.1.11.tgz#0e8bdfe4d1ddb8854d64e04ea7c00e2a026e5658" 691 | 692 | har-schema@^1.0.5: 693 | version "1.0.5" 694 | resolved "https://registry.yarnpkg.com/har-schema/-/har-schema-1.0.5.tgz#d263135f43307c02c602afc8fe95970c0151369e" 695 | 696 | har-validator@~4.2.1: 697 | version "4.2.1" 698 | resolved "https://registry.yarnpkg.com/har-validator/-/har-validator-4.2.1.tgz#33481d0f1bbff600dd203d75812a6a5fba002e2a" 699 | dependencies: 700 | ajv "^4.9.1" 701 | har-schema "^1.0.5" 702 | 703 | has-flag@^2.0.0: 704 | version "2.0.0" 705 | resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-2.0.0.tgz#e8207af1cc7b30d446cc70b734b5e8be18f88d51" 706 | 707 | has-unicode@^2.0.0: 708 | version "2.0.1" 709 | resolved "https://registry.yarnpkg.com/has-unicode/-/has-unicode-2.0.1.tgz#e0e6fe6a28cf51138855e086d1691e771de2a8b9" 710 | 711 | has-value@^0.3.1: 712 | version "0.3.1" 713 | resolved "https://registry.yarnpkg.com/has-value/-/has-value-0.3.1.tgz#7b1f58bada62ca827ec0a2078025654845995e1f" 714 | dependencies: 715 | get-value "^2.0.3" 716 | has-values "^0.1.4" 717 | isobject "^2.0.0" 718 | 719 | has-value@^1.0.0: 720 | version "1.0.0" 721 | resolved "https://registry.yarnpkg.com/has-value/-/has-value-1.0.0.tgz#18b281da585b1c5c51def24c930ed29a0be6b177" 722 | dependencies: 723 | get-value "^2.0.6" 724 | has-values "^1.0.0" 725 | isobject "^3.0.0" 726 | 727 | has-values@^0.1.4: 728 | version "0.1.4" 729 | resolved "https://registry.yarnpkg.com/has-values/-/has-values-0.1.4.tgz#6d61de95d91dfca9b9a02089ad384bff8f62b771" 730 | 731 | has-values@^1.0.0: 732 | version "1.0.0" 733 | resolved "https://registry.yarnpkg.com/has-values/-/has-values-1.0.0.tgz#95b0b63fec2146619a6fe57fe75628d5a39efe4f" 734 | dependencies: 735 | is-number "^3.0.0" 736 | kind-of "^4.0.0" 737 | 738 | has@^1.0.1: 739 | version "1.0.1" 740 | resolved "https://registry.yarnpkg.com/has/-/has-1.0.1.tgz#8461733f538b0837c9361e39a9ab9e9704dc2f28" 741 | dependencies: 742 | function-bind "^1.0.2" 743 | 744 | hawk@3.1.3, hawk@~3.1.3: 745 | version "3.1.3" 746 | resolved "https://registry.yarnpkg.com/hawk/-/hawk-3.1.3.tgz#078444bd7c1640b0fe540d2c9b73d59678e8e1c4" 747 | dependencies: 748 | boom "2.x.x" 749 | cryptiles "2.x.x" 750 | hoek "2.x.x" 751 | sntp "1.x.x" 752 | 753 | hoek@2.x.x: 754 | version "2.16.3" 755 | resolved "https://registry.yarnpkg.com/hoek/-/hoek-2.16.3.tgz#20bb7403d3cea398e91dc4710a8ff1b8274a25ed" 756 | 757 | hosted-git-info@^2.1.4: 758 | version "2.5.0" 759 | resolved "https://registry.yarnpkg.com/hosted-git-info/-/hosted-git-info-2.5.0.tgz#6d60e34b3abbc8313062c3b798ef8d901a07af3c" 760 | 761 | http-signature@~1.1.0: 762 | version "1.1.1" 763 | resolved "https://registry.yarnpkg.com/http-signature/-/http-signature-1.1.1.tgz#df72e267066cd0ac67fb76adf8e134a8fbcf91bf" 764 | dependencies: 765 | assert-plus "^0.2.0" 766 | jsprim "^1.2.2" 767 | sshpk "^1.7.0" 768 | 769 | ignore-by-default@^1.0.1: 770 | version "1.0.1" 771 | resolved "https://registry.yarnpkg.com/ignore-by-default/-/ignore-by-default-1.0.1.tgz#48ca6d72f6c6a3af00a9ad4ae6876be3889e2b09" 772 | 773 | import-lazy@^2.1.0: 774 | version "2.1.0" 775 | resolved "https://registry.yarnpkg.com/import-lazy/-/import-lazy-2.1.0.tgz#05698e3d45c88e8d7e9d92cb0584e77f096f3e43" 776 | 777 | imurmurhash@^0.1.4: 778 | version "0.1.4" 779 | resolved "https://registry.yarnpkg.com/imurmurhash/-/imurmurhash-0.1.4.tgz#9218b9b2b928a238b13dc4fb6b6d576f231453ea" 780 | 781 | inflight@^1.0.4: 782 | version "1.0.6" 783 | resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9" 784 | dependencies: 785 | once "^1.3.0" 786 | wrappy "1" 787 | 788 | inherits@2, inherits@^2.0.1, inherits@~2.0.0, inherits@~2.0.3: 789 | version "2.0.3" 790 | resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.3.tgz#633c2c83e3da42a502f52466022480f4208261de" 791 | 792 | ini@^1.3.4, ini@~1.3.0: 793 | version "1.3.5" 794 | resolved "https://registry.yarnpkg.com/ini/-/ini-1.3.5.tgz#eee25f56db1c9ec6085e0c22778083f596abf927" 795 | 796 | is-accessor-descriptor@^0.1.6: 797 | version "0.1.6" 798 | resolved "https://registry.yarnpkg.com/is-accessor-descriptor/-/is-accessor-descriptor-0.1.6.tgz#a9e12cb3ae8d876727eeef3843f8a0897b5c98d6" 799 | dependencies: 800 | kind-of "^3.0.2" 801 | 802 | is-accessor-descriptor@^1.0.0: 803 | version "1.0.0" 804 | resolved "https://registry.yarnpkg.com/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz#169c2f6d3df1f992618072365c9b0ea1f6878656" 805 | dependencies: 806 | kind-of "^6.0.0" 807 | 808 | is-arrayish@^0.2.1: 809 | version "0.2.1" 810 | resolved "https://registry.yarnpkg.com/is-arrayish/-/is-arrayish-0.2.1.tgz#77c99840527aa8ecb1a8ba697b80645a7a926a9d" 811 | 812 | is-binary-path@^1.0.0: 813 | version "1.0.1" 814 | resolved "https://registry.yarnpkg.com/is-binary-path/-/is-binary-path-1.0.1.tgz#75f16642b480f187a711c814161fd3a4a7655898" 815 | dependencies: 816 | binary-extensions "^1.0.0" 817 | 818 | is-buffer@^1.1.5: 819 | version "1.1.6" 820 | resolved "https://registry.yarnpkg.com/is-buffer/-/is-buffer-1.1.6.tgz#efaa2ea9daa0d7ab2ea13a97b2b8ad51fefbe8be" 821 | 822 | is-builtin-module@^1.0.0: 823 | version "1.0.0" 824 | resolved "https://registry.yarnpkg.com/is-builtin-module/-/is-builtin-module-1.0.0.tgz#540572d34f7ac3119f8f76c30cbc1b1e037affbe" 825 | dependencies: 826 | builtin-modules "^1.0.0" 827 | 828 | is-callable@^1.1.1, is-callable@^1.1.3: 829 | version "1.1.3" 830 | resolved "https://registry.yarnpkg.com/is-callable/-/is-callable-1.1.3.tgz#86eb75392805ddc33af71c92a0eedf74ee7604b2" 831 | 832 | is-data-descriptor@^0.1.4: 833 | version "0.1.4" 834 | resolved "https://registry.yarnpkg.com/is-data-descriptor/-/is-data-descriptor-0.1.4.tgz#0b5ee648388e2c860282e793f1856fec3f301b56" 835 | dependencies: 836 | kind-of "^3.0.2" 837 | 838 | is-data-descriptor@^1.0.0: 839 | version "1.0.0" 840 | resolved "https://registry.yarnpkg.com/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz#d84876321d0e7add03990406abbbbd36ba9268c7" 841 | dependencies: 842 | kind-of "^6.0.0" 843 | 844 | is-date-object@^1.0.1: 845 | version "1.0.1" 846 | resolved "https://registry.yarnpkg.com/is-date-object/-/is-date-object-1.0.1.tgz#9aa20eb6aeebbff77fbd33e74ca01b33581d3a16" 847 | 848 | is-descriptor@^0.1.0: 849 | version "0.1.6" 850 | resolved "https://registry.yarnpkg.com/is-descriptor/-/is-descriptor-0.1.6.tgz#366d8240dde487ca51823b1ab9f07a10a78251ca" 851 | dependencies: 852 | is-accessor-descriptor "^0.1.6" 853 | is-data-descriptor "^0.1.4" 854 | kind-of "^5.0.0" 855 | 856 | is-descriptor@^1.0.0: 857 | version "1.0.2" 858 | resolved "https://registry.yarnpkg.com/is-descriptor/-/is-descriptor-1.0.2.tgz#3b159746a66604b04f8c81524ba365c5f14d86ec" 859 | dependencies: 860 | is-accessor-descriptor "^1.0.0" 861 | is-data-descriptor "^1.0.0" 862 | kind-of "^6.0.2" 863 | 864 | is-extendable@^0.1.0, is-extendable@^0.1.1: 865 | version "0.1.1" 866 | resolved "https://registry.yarnpkg.com/is-extendable/-/is-extendable-0.1.1.tgz#62b110e289a471418e3ec36a617d472e301dfc89" 867 | 868 | is-extendable@^1.0.1: 869 | version "1.0.1" 870 | resolved "https://registry.yarnpkg.com/is-extendable/-/is-extendable-1.0.1.tgz#a7470f9e426733d81bd81e1155264e3a3507cab4" 871 | dependencies: 872 | is-plain-object "^2.0.4" 873 | 874 | is-extglob@^2.1.0, is-extglob@^2.1.1: 875 | version "2.1.1" 876 | resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-2.1.1.tgz#a88c02535791f02ed37c76a1b9ea9773c833f8c2" 877 | 878 | is-fullwidth-code-point@^1.0.0: 879 | version "1.0.0" 880 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz#ef9e31386f031a7f0d643af82fde50c457ef00cb" 881 | dependencies: 882 | number-is-nan "^1.0.0" 883 | 884 | is-fullwidth-code-point@^2.0.0: 885 | version "2.0.0" 886 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz#a3b30a5c4f199183167aaab93beefae3ddfb654f" 887 | 888 | is-glob@^3.1.0: 889 | version "3.1.0" 890 | resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-3.1.0.tgz#7ba5ae24217804ac70707b96922567486cc3e84a" 891 | dependencies: 892 | is-extglob "^2.1.0" 893 | 894 | is-glob@^4.0.0: 895 | version "4.0.0" 896 | resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-4.0.0.tgz#9521c76845cc2610a85203ddf080a958c2ffabc0" 897 | dependencies: 898 | is-extglob "^2.1.1" 899 | 900 | is-installed-globally@^0.1.0: 901 | version "0.1.0" 902 | resolved "https://registry.yarnpkg.com/is-installed-globally/-/is-installed-globally-0.1.0.tgz#0dfd98f5a9111716dd535dda6492f67bf3d25a80" 903 | dependencies: 904 | global-dirs "^0.1.0" 905 | is-path-inside "^1.0.0" 906 | 907 | is-npm@^1.0.0: 908 | version "1.0.0" 909 | resolved "https://registry.yarnpkg.com/is-npm/-/is-npm-1.0.0.tgz#f2fb63a65e4905b406c86072765a1a4dc793b9f4" 910 | 911 | is-number@^3.0.0: 912 | version "3.0.0" 913 | resolved "https://registry.yarnpkg.com/is-number/-/is-number-3.0.0.tgz#24fd6201a4782cf50561c810276afc7d12d71195" 914 | dependencies: 915 | kind-of "^3.0.2" 916 | 917 | is-obj@^1.0.0: 918 | version "1.0.1" 919 | resolved "https://registry.yarnpkg.com/is-obj/-/is-obj-1.0.1.tgz#3e4729ac1f5fde025cd7d83a896dab9f4f67db0f" 920 | 921 | is-odd@^1.0.0: 922 | version "1.0.0" 923 | resolved "https://registry.yarnpkg.com/is-odd/-/is-odd-1.0.0.tgz#3b8a932eb028b3775c39bb09e91767accdb69088" 924 | dependencies: 925 | is-number "^3.0.0" 926 | 927 | is-path-inside@^1.0.0: 928 | version "1.0.1" 929 | resolved "https://registry.yarnpkg.com/is-path-inside/-/is-path-inside-1.0.1.tgz#8ef5b7de50437a3fdca6b4e865ef7aa55cb48036" 930 | dependencies: 931 | path-is-inside "^1.0.1" 932 | 933 | is-plain-object@^2.0.1, is-plain-object@^2.0.3, is-plain-object@^2.0.4: 934 | version "2.0.4" 935 | resolved "https://registry.yarnpkg.com/is-plain-object/-/is-plain-object-2.0.4.tgz#2c163b3fafb1b606d9d17928f05c2a1c38e07677" 936 | dependencies: 937 | isobject "^3.0.1" 938 | 939 | is-redirect@^1.0.0: 940 | version "1.0.0" 941 | resolved "https://registry.yarnpkg.com/is-redirect/-/is-redirect-1.0.0.tgz#1d03dded53bd8db0f30c26e4f95d36fc7c87dc24" 942 | 943 | is-regex@^1.0.4: 944 | version "1.0.4" 945 | resolved "https://registry.yarnpkg.com/is-regex/-/is-regex-1.0.4.tgz#5517489b547091b0930e095654ced25ee97e9491" 946 | dependencies: 947 | has "^1.0.1" 948 | 949 | is-retry-allowed@^1.0.0: 950 | version "1.1.0" 951 | resolved "https://registry.yarnpkg.com/is-retry-allowed/-/is-retry-allowed-1.1.0.tgz#11a060568b67339444033d0125a61a20d564fb34" 952 | 953 | is-stream@^1.0.0, is-stream@^1.1.0: 954 | version "1.1.0" 955 | resolved "https://registry.yarnpkg.com/is-stream/-/is-stream-1.1.0.tgz#12d4a3dd4e68e0b79ceb8dbc84173ae80d91ca44" 956 | 957 | is-symbol@^1.0.1: 958 | version "1.0.1" 959 | resolved "https://registry.yarnpkg.com/is-symbol/-/is-symbol-1.0.1.tgz#3cc59f00025194b6ab2e38dbae6689256b660572" 960 | 961 | is-typedarray@~1.0.0: 962 | version "1.0.0" 963 | resolved "https://registry.yarnpkg.com/is-typedarray/-/is-typedarray-1.0.0.tgz#e479c80858df0c1b11ddda6940f96011fcda4a9a" 964 | 965 | isarray@1.0.0, isarray@~1.0.0: 966 | version "1.0.0" 967 | resolved "https://registry.yarnpkg.com/isarray/-/isarray-1.0.0.tgz#bb935d48582cba168c06834957a54a3e07124f11" 968 | 969 | isexe@^2.0.0: 970 | version "2.0.0" 971 | resolved "https://registry.yarnpkg.com/isexe/-/isexe-2.0.0.tgz#e8fbf374dc556ff8947a10dcb0572d633f2cfa10" 972 | 973 | isobject@^2.0.0: 974 | version "2.1.0" 975 | resolved "https://registry.yarnpkg.com/isobject/-/isobject-2.1.0.tgz#f065561096a3f1da2ef46272f815c840d87e0c89" 976 | dependencies: 977 | isarray "1.0.0" 978 | 979 | isobject@^3.0.0, isobject@^3.0.1: 980 | version "3.0.1" 981 | resolved "https://registry.yarnpkg.com/isobject/-/isobject-3.0.1.tgz#4e431e92b11a9731636aa1f9c8d1ccbcfdab78df" 982 | 983 | isstream@~0.1.2: 984 | version "0.1.2" 985 | resolved "https://registry.yarnpkg.com/isstream/-/isstream-0.1.2.tgz#47e63f7af55afa6f92e1500e690eb8b8529c099a" 986 | 987 | jsbn@~0.1.0: 988 | version "0.1.1" 989 | resolved "https://registry.yarnpkg.com/jsbn/-/jsbn-0.1.1.tgz#a5e654c2e5a2deb5f201d96cefbca80c0ef2f513" 990 | 991 | json-parse-better-errors@^1.0.1: 992 | version "1.0.1" 993 | resolved "https://registry.yarnpkg.com/json-parse-better-errors/-/json-parse-better-errors-1.0.1.tgz#50183cd1b2d25275de069e9e71b467ac9eab973a" 994 | 995 | json-schema@0.2.3: 996 | version "0.2.3" 997 | resolved "https://registry.yarnpkg.com/json-schema/-/json-schema-0.2.3.tgz#b480c892e59a2f05954ce727bd3f2a4e882f9e13" 998 | 999 | json-stable-stringify@^1.0.1: 1000 | version "1.0.1" 1001 | resolved "https://registry.yarnpkg.com/json-stable-stringify/-/json-stable-stringify-1.0.1.tgz#9a759d39c5f2ff503fd5300646ed445f88c4f9af" 1002 | dependencies: 1003 | jsonify "~0.0.0" 1004 | 1005 | json-stringify-safe@~5.0.1: 1006 | version "5.0.1" 1007 | resolved "https://registry.yarnpkg.com/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz#1296a2d58fd45f19a0f6ce01d65701e2c735b6eb" 1008 | 1009 | jsonify@~0.0.0: 1010 | version "0.0.0" 1011 | resolved "https://registry.yarnpkg.com/jsonify/-/jsonify-0.0.0.tgz#2c74b6ee41d93ca51b7b5aaee8f503631d252a73" 1012 | 1013 | jsprim@^1.2.2: 1014 | version "1.4.1" 1015 | resolved "https://registry.yarnpkg.com/jsprim/-/jsprim-1.4.1.tgz#313e66bc1e5cc06e438bc1b7499c2e5c56acb6a2" 1016 | dependencies: 1017 | assert-plus "1.0.0" 1018 | extsprintf "1.3.0" 1019 | json-schema "0.2.3" 1020 | verror "1.10.0" 1021 | 1022 | kind-of@^3.0.2, kind-of@^3.0.3, kind-of@^3.2.0: 1023 | version "3.2.2" 1024 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-3.2.2.tgz#31ea21a734bab9bbb0f32466d893aea51e4a3c64" 1025 | dependencies: 1026 | is-buffer "^1.1.5" 1027 | 1028 | kind-of@^4.0.0: 1029 | version "4.0.0" 1030 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-4.0.0.tgz#20813df3d712928b207378691a45066fae72dd57" 1031 | dependencies: 1032 | is-buffer "^1.1.5" 1033 | 1034 | kind-of@^5.0.0, kind-of@^5.0.2: 1035 | version "5.1.0" 1036 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-5.1.0.tgz#729c91e2d857b7a419a1f9aa65685c4c33f5845d" 1037 | 1038 | kind-of@^6.0.0, kind-of@^6.0.2: 1039 | version "6.0.2" 1040 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-6.0.2.tgz#01146b36a6218e64e58f3a8d66de5d7fc6f6d051" 1041 | 1042 | latest-version@^3.0.0: 1043 | version "3.1.0" 1044 | resolved "https://registry.yarnpkg.com/latest-version/-/latest-version-3.1.0.tgz#a205383fea322b33b5ae3b18abee0dc2f356ee15" 1045 | dependencies: 1046 | package-json "^4.0.0" 1047 | 1048 | lazy-cache@^2.0.2: 1049 | version "2.0.2" 1050 | resolved "https://registry.yarnpkg.com/lazy-cache/-/lazy-cache-2.0.2.tgz#b9190a4f913354694840859f8a8f7084d8822264" 1051 | dependencies: 1052 | set-getter "^0.1.0" 1053 | 1054 | load-json-file@^4.0.0: 1055 | version "4.0.0" 1056 | resolved "https://registry.yarnpkg.com/load-json-file/-/load-json-file-4.0.0.tgz#2f5f45ab91e33216234fd53adab668eb4ec0993b" 1057 | dependencies: 1058 | graceful-fs "^4.1.2" 1059 | parse-json "^4.0.0" 1060 | pify "^3.0.0" 1061 | strip-bom "^3.0.0" 1062 | 1063 | lowercase-keys@^1.0.0: 1064 | version "1.0.0" 1065 | resolved "https://registry.yarnpkg.com/lowercase-keys/-/lowercase-keys-1.0.0.tgz#4e3366b39e7f5457e35f1324bdf6f88d0bfc7306" 1066 | 1067 | lru-cache@^4.0.1: 1068 | version "4.1.1" 1069 | resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-4.1.1.tgz#622e32e82488b49279114a4f9ecf45e7cd6bba55" 1070 | dependencies: 1071 | pseudomap "^1.0.2" 1072 | yallist "^2.1.2" 1073 | 1074 | make-dir@^1.0.0: 1075 | version "1.1.0" 1076 | resolved "https://registry.yarnpkg.com/make-dir/-/make-dir-1.1.0.tgz#19b4369fe48c116f53c2af95ad102c0e39e85d51" 1077 | dependencies: 1078 | pify "^3.0.0" 1079 | 1080 | map-cache@^0.2.2: 1081 | version "0.2.2" 1082 | resolved "https://registry.yarnpkg.com/map-cache/-/map-cache-0.2.2.tgz#c32abd0bd6525d9b051645bb4f26ac5dc98a0dbf" 1083 | 1084 | map-stream@~0.1.0: 1085 | version "0.1.0" 1086 | resolved "https://registry.yarnpkg.com/map-stream/-/map-stream-0.1.0.tgz#e56aa94c4c8055a16404a0674b78f215f7c8e194" 1087 | 1088 | map-visit@^1.0.0: 1089 | version "1.0.0" 1090 | resolved "https://registry.yarnpkg.com/map-visit/-/map-visit-1.0.0.tgz#ecdca8f13144e660f1b5bd41f12f3479d98dfb8f" 1091 | dependencies: 1092 | object-visit "^1.0.0" 1093 | 1094 | memorystream@^0.3.1: 1095 | version "0.3.1" 1096 | resolved "https://registry.yarnpkg.com/memorystream/-/memorystream-0.3.1.tgz#86d7090b30ce455d63fbae12dda51a47ddcaf9b2" 1097 | 1098 | micromatch@^3.1.4: 1099 | version "3.1.5" 1100 | resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-3.1.5.tgz#d05e168c206472dfbca985bfef4f57797b4cd4ba" 1101 | dependencies: 1102 | arr-diff "^4.0.0" 1103 | array-unique "^0.3.2" 1104 | braces "^2.3.0" 1105 | define-property "^1.0.0" 1106 | extend-shallow "^2.0.1" 1107 | extglob "^2.0.2" 1108 | fragment-cache "^0.2.1" 1109 | kind-of "^6.0.0" 1110 | nanomatch "^1.2.5" 1111 | object.pick "^1.3.0" 1112 | regex-not "^1.0.0" 1113 | snapdragon "^0.8.1" 1114 | to-regex "^3.0.1" 1115 | 1116 | mime-db@~1.30.0: 1117 | version "1.30.0" 1118 | resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.30.0.tgz#74c643da2dd9d6a45399963465b26d5ca7d71f01" 1119 | 1120 | mime-types@^2.1.12, mime-types@~2.1.7: 1121 | version "2.1.17" 1122 | resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.17.tgz#09d7a393f03e995a79f8af857b70a9e0ab16557a" 1123 | dependencies: 1124 | mime-db "~1.30.0" 1125 | 1126 | minimatch@^3.0.0, minimatch@^3.0.2, minimatch@^3.0.4: 1127 | version "3.0.4" 1128 | resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.0.4.tgz#5166e286457f03306064be5497e8dbb0c3d32083" 1129 | dependencies: 1130 | brace-expansion "^1.1.7" 1131 | 1132 | minimist@0.0.8: 1133 | version "0.0.8" 1134 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-0.0.8.tgz#857fcabfc3397d2625b8228262e86aa7a011b05d" 1135 | 1136 | minimist@^1.2.0: 1137 | version "1.2.0" 1138 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.0.tgz#a35008b20f41383eec1fb914f4cd5df79a264284" 1139 | 1140 | mixin-deep@^1.2.0: 1141 | version "1.3.0" 1142 | resolved "https://registry.yarnpkg.com/mixin-deep/-/mixin-deep-1.3.0.tgz#47a8732ba97799457c8c1eca28f95132d7e8150a" 1143 | dependencies: 1144 | for-in "^1.0.2" 1145 | is-extendable "^1.0.1" 1146 | 1147 | "mkdirp@>=0.5 0", mkdirp@^0.5.1: 1148 | version "0.5.1" 1149 | resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.5.1.tgz#30057438eac6cf7f8c4767f38648d6697d75c903" 1150 | dependencies: 1151 | minimist "0.0.8" 1152 | 1153 | ms@2.0.0: 1154 | version "2.0.0" 1155 | resolved "https://registry.yarnpkg.com/ms/-/ms-2.0.0.tgz#5608aeadfc00be6c2901df5f9861788de0d597c8" 1156 | 1157 | nan@^2.3.0: 1158 | version "2.8.0" 1159 | resolved "https://registry.yarnpkg.com/nan/-/nan-2.8.0.tgz#ed715f3fe9de02b57a5e6252d90a96675e1f085a" 1160 | 1161 | nanomatch@^1.2.5: 1162 | version "1.2.7" 1163 | resolved "https://registry.yarnpkg.com/nanomatch/-/nanomatch-1.2.7.tgz#53cd4aa109ff68b7f869591fdc9d10daeeea3e79" 1164 | dependencies: 1165 | arr-diff "^4.0.0" 1166 | array-unique "^0.3.2" 1167 | define-property "^1.0.0" 1168 | extend-shallow "^2.0.1" 1169 | fragment-cache "^0.2.1" 1170 | is-odd "^1.0.0" 1171 | kind-of "^5.0.2" 1172 | object.pick "^1.3.0" 1173 | regex-not "^1.0.0" 1174 | snapdragon "^0.8.1" 1175 | to-regex "^3.0.1" 1176 | 1177 | node-pre-gyp@^0.6.39: 1178 | version "0.6.39" 1179 | resolved "https://registry.yarnpkg.com/node-pre-gyp/-/node-pre-gyp-0.6.39.tgz#c00e96860b23c0e1420ac7befc5044e1d78d8649" 1180 | dependencies: 1181 | detect-libc "^1.0.2" 1182 | hawk "3.1.3" 1183 | mkdirp "^0.5.1" 1184 | nopt "^4.0.1" 1185 | npmlog "^4.0.2" 1186 | rc "^1.1.7" 1187 | request "2.81.0" 1188 | rimraf "^2.6.1" 1189 | semver "^5.3.0" 1190 | tar "^2.2.1" 1191 | tar-pack "^3.4.0" 1192 | 1193 | nodemon@^1.12.1: 1194 | version "1.14.12" 1195 | resolved "https://registry.yarnpkg.com/nodemon/-/nodemon-1.14.12.tgz#fe059424b15ebdb107696287a558d9cf53a63999" 1196 | dependencies: 1197 | chokidar "^2.0.0" 1198 | debug "^3.1.0" 1199 | ignore-by-default "^1.0.1" 1200 | minimatch "^3.0.4" 1201 | pstree.remy "^1.1.0" 1202 | semver "^5.4.1" 1203 | touch "^3.1.0" 1204 | undefsafe "^2.0.1" 1205 | update-notifier "^2.3.0" 1206 | 1207 | nopt@^4.0.1: 1208 | version "4.0.1" 1209 | resolved "https://registry.yarnpkg.com/nopt/-/nopt-4.0.1.tgz#d0d4685afd5415193c8c7505602d0d17cd64474d" 1210 | dependencies: 1211 | abbrev "1" 1212 | osenv "^0.1.4" 1213 | 1214 | nopt@~1.0.10: 1215 | version "1.0.10" 1216 | resolved "https://registry.yarnpkg.com/nopt/-/nopt-1.0.10.tgz#6ddd21bd2a31417b92727dd585f8a6f37608ebee" 1217 | dependencies: 1218 | abbrev "1" 1219 | 1220 | normalize-package-data@^2.3.2: 1221 | version "2.4.0" 1222 | resolved "https://registry.yarnpkg.com/normalize-package-data/-/normalize-package-data-2.4.0.tgz#12f95a307d58352075a04907b84ac8be98ac012f" 1223 | dependencies: 1224 | hosted-git-info "^2.1.4" 1225 | is-builtin-module "^1.0.0" 1226 | semver "2 || 3 || 4 || 5" 1227 | validate-npm-package-license "^3.0.1" 1228 | 1229 | normalize-path@^2.1.1: 1230 | version "2.1.1" 1231 | resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-2.1.1.tgz#1ab28b556e198363a8c1a6f7e6fa20137fe6aed9" 1232 | dependencies: 1233 | remove-trailing-separator "^1.0.1" 1234 | 1235 | npm-run-all@^4.1.2: 1236 | version "4.1.2" 1237 | resolved "https://registry.yarnpkg.com/npm-run-all/-/npm-run-all-4.1.2.tgz#90d62d078792d20669139e718621186656cea056" 1238 | dependencies: 1239 | ansi-styles "^3.2.0" 1240 | chalk "^2.1.0" 1241 | cross-spawn "^5.1.0" 1242 | memorystream "^0.3.1" 1243 | minimatch "^3.0.4" 1244 | ps-tree "^1.1.0" 1245 | read-pkg "^3.0.0" 1246 | shell-quote "^1.6.1" 1247 | string.prototype.padend "^3.0.0" 1248 | 1249 | npm-run-path@^2.0.0: 1250 | version "2.0.2" 1251 | resolved "https://registry.yarnpkg.com/npm-run-path/-/npm-run-path-2.0.2.tgz#35a9232dfa35d7067b4cb2ddf2357b1871536c5f" 1252 | dependencies: 1253 | path-key "^2.0.0" 1254 | 1255 | npmlog@^4.0.2: 1256 | version "4.1.2" 1257 | resolved "https://registry.yarnpkg.com/npmlog/-/npmlog-4.1.2.tgz#08a7f2a8bf734604779a9efa4ad5cc717abb954b" 1258 | dependencies: 1259 | are-we-there-yet "~1.1.2" 1260 | console-control-strings "~1.1.0" 1261 | gauge "~2.7.3" 1262 | set-blocking "~2.0.0" 1263 | 1264 | number-is-nan@^1.0.0: 1265 | version "1.0.1" 1266 | resolved "https://registry.yarnpkg.com/number-is-nan/-/number-is-nan-1.0.1.tgz#097b602b53422a522c1afb8790318336941a011d" 1267 | 1268 | oauth-sign@~0.8.1: 1269 | version "0.8.2" 1270 | resolved "https://registry.yarnpkg.com/oauth-sign/-/oauth-sign-0.8.2.tgz#46a6ab7f0aead8deae9ec0565780b7d4efeb9d43" 1271 | 1272 | object-assign@^4.1.0: 1273 | version "4.1.1" 1274 | resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863" 1275 | 1276 | object-copy@^0.1.0: 1277 | version "0.1.0" 1278 | resolved "https://registry.yarnpkg.com/object-copy/-/object-copy-0.1.0.tgz#7e7d858b781bd7c991a41ba975ed3812754e998c" 1279 | dependencies: 1280 | copy-descriptor "^0.1.0" 1281 | define-property "^0.2.5" 1282 | kind-of "^3.0.3" 1283 | 1284 | object-keys@^1.0.8: 1285 | version "1.0.11" 1286 | resolved "https://registry.yarnpkg.com/object-keys/-/object-keys-1.0.11.tgz#c54601778ad560f1142ce0e01bcca8b56d13426d" 1287 | 1288 | object-visit@^1.0.0: 1289 | version "1.0.1" 1290 | resolved "https://registry.yarnpkg.com/object-visit/-/object-visit-1.0.1.tgz#f79c4493af0c5377b59fe39d395e41042dd045bb" 1291 | dependencies: 1292 | isobject "^3.0.0" 1293 | 1294 | object.pick@^1.3.0: 1295 | version "1.3.0" 1296 | resolved "https://registry.yarnpkg.com/object.pick/-/object.pick-1.3.0.tgz#87a10ac4c1694bd2e1cbf53591a66141fb5dd747" 1297 | dependencies: 1298 | isobject "^3.0.1" 1299 | 1300 | once@^1.3.0, once@^1.3.3: 1301 | version "1.4.0" 1302 | resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1" 1303 | dependencies: 1304 | wrappy "1" 1305 | 1306 | os-homedir@^1.0.0: 1307 | version "1.0.2" 1308 | resolved "https://registry.yarnpkg.com/os-homedir/-/os-homedir-1.0.2.tgz#ffbc4988336e0e833de0c168c7ef152121aa7fb3" 1309 | 1310 | os-tmpdir@^1.0.0: 1311 | version "1.0.2" 1312 | resolved "https://registry.yarnpkg.com/os-tmpdir/-/os-tmpdir-1.0.2.tgz#bbe67406c79aa85c5cfec766fe5734555dfa1274" 1313 | 1314 | osenv@^0.1.4: 1315 | version "0.1.4" 1316 | resolved "https://registry.yarnpkg.com/osenv/-/osenv-0.1.4.tgz#42fe6d5953df06c8064be6f176c3d05aaaa34644" 1317 | dependencies: 1318 | os-homedir "^1.0.0" 1319 | os-tmpdir "^1.0.0" 1320 | 1321 | p-finally@^1.0.0: 1322 | version "1.0.0" 1323 | resolved "https://registry.yarnpkg.com/p-finally/-/p-finally-1.0.0.tgz#3fbcfb15b899a44123b34b6dcc18b724336a2cae" 1324 | 1325 | package-json@^4.0.0: 1326 | version "4.0.1" 1327 | resolved "https://registry.yarnpkg.com/package-json/-/package-json-4.0.1.tgz#8869a0401253661c4c4ca3da6c2121ed555f5eed" 1328 | dependencies: 1329 | got "^6.7.1" 1330 | registry-auth-token "^3.0.1" 1331 | registry-url "^3.0.3" 1332 | semver "^5.1.0" 1333 | 1334 | parse-json@^4.0.0: 1335 | version "4.0.0" 1336 | resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-4.0.0.tgz#be35f5425be1f7f6c747184f98a788cb99477ee0" 1337 | dependencies: 1338 | error-ex "^1.3.1" 1339 | json-parse-better-errors "^1.0.1" 1340 | 1341 | pascalcase@^0.1.1: 1342 | version "0.1.1" 1343 | resolved "https://registry.yarnpkg.com/pascalcase/-/pascalcase-0.1.1.tgz#b363e55e8006ca6fe21784d2db22bd15d7917f14" 1344 | 1345 | path-dirname@^1.0.0: 1346 | version "1.0.2" 1347 | resolved "https://registry.yarnpkg.com/path-dirname/-/path-dirname-1.0.2.tgz#cc33d24d525e099a5388c0336c6e32b9160609e0" 1348 | 1349 | path-is-absolute@^1.0.0: 1350 | version "1.0.1" 1351 | resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f" 1352 | 1353 | path-is-inside@^1.0.1: 1354 | version "1.0.2" 1355 | resolved "https://registry.yarnpkg.com/path-is-inside/-/path-is-inside-1.0.2.tgz#365417dede44430d1c11af61027facf074bdfc53" 1356 | 1357 | path-key@^2.0.0: 1358 | version "2.0.1" 1359 | resolved "https://registry.yarnpkg.com/path-key/-/path-key-2.0.1.tgz#411cadb574c5a140d3a4b1910d40d80cc9f40b40" 1360 | 1361 | path-type@^3.0.0: 1362 | version "3.0.0" 1363 | resolved "https://registry.yarnpkg.com/path-type/-/path-type-3.0.0.tgz#cef31dc8e0a1a3bb0d105c0cd97cf3bf47f4e36f" 1364 | dependencies: 1365 | pify "^3.0.0" 1366 | 1367 | pause-stream@0.0.11: 1368 | version "0.0.11" 1369 | resolved "https://registry.yarnpkg.com/pause-stream/-/pause-stream-0.0.11.tgz#fe5a34b0cbce12b5aa6a2b403ee2e73b602f1445" 1370 | dependencies: 1371 | through "~2.3" 1372 | 1373 | performance-now@^0.2.0: 1374 | version "0.2.0" 1375 | resolved "https://registry.yarnpkg.com/performance-now/-/performance-now-0.2.0.tgz#33ef30c5c77d4ea21c5a53869d91b56d8f2555e5" 1376 | 1377 | pify@^3.0.0: 1378 | version "3.0.0" 1379 | resolved "https://registry.yarnpkg.com/pify/-/pify-3.0.0.tgz#e5a4acd2c101fdf3d9a4d07f0dbc4db49dd28176" 1380 | 1381 | posix-character-classes@^0.1.0: 1382 | version "0.1.1" 1383 | resolved "https://registry.yarnpkg.com/posix-character-classes/-/posix-character-classes-0.1.1.tgz#01eac0fe3b5af71a2a6c02feabb8c1fef7e00eab" 1384 | 1385 | prepend-http@^1.0.1: 1386 | version "1.0.4" 1387 | resolved "https://registry.yarnpkg.com/prepend-http/-/prepend-http-1.0.4.tgz#d4f4562b0ce3696e41ac52d0e002e57a635dc6dc" 1388 | 1389 | process-nextick-args@~1.0.6: 1390 | version "1.0.7" 1391 | resolved "https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-1.0.7.tgz#150e20b756590ad3f91093f25a4f2ad8bff30ba3" 1392 | 1393 | ps-tree@^1.1.0: 1394 | version "1.1.0" 1395 | resolved "https://registry.yarnpkg.com/ps-tree/-/ps-tree-1.1.0.tgz#b421b24140d6203f1ed3c76996b4427b08e8c014" 1396 | dependencies: 1397 | event-stream "~3.3.0" 1398 | 1399 | pseudomap@^1.0.2: 1400 | version "1.0.2" 1401 | resolved "https://registry.yarnpkg.com/pseudomap/-/pseudomap-1.0.2.tgz#f052a28da70e618917ef0a8ac34c1ae5a68286b3" 1402 | 1403 | pstree.remy@^1.1.0: 1404 | version "1.1.0" 1405 | resolved "https://registry.yarnpkg.com/pstree.remy/-/pstree.remy-1.1.0.tgz#f2af27265bd3e5b32bbfcc10e80bac55ba78688b" 1406 | dependencies: 1407 | ps-tree "^1.1.0" 1408 | 1409 | punycode@^1.4.1: 1410 | version "1.4.1" 1411 | resolved "https://registry.yarnpkg.com/punycode/-/punycode-1.4.1.tgz#c0d5a63b2718800ad8e1eb0fa5269c84dd41845e" 1412 | 1413 | qs@~6.4.0: 1414 | version "6.4.0" 1415 | resolved "https://registry.yarnpkg.com/qs/-/qs-6.4.0.tgz#13e26d28ad6b0ffaa91312cd3bf708ed351e7233" 1416 | 1417 | rc@^1.0.1, rc@^1.1.6, rc@^1.1.7: 1418 | version "1.2.5" 1419 | resolved "https://registry.yarnpkg.com/rc/-/rc-1.2.5.tgz#275cd687f6e3b36cc756baa26dfee80a790301fd" 1420 | dependencies: 1421 | deep-extend "~0.4.0" 1422 | ini "~1.3.0" 1423 | minimist "^1.2.0" 1424 | strip-json-comments "~2.0.1" 1425 | 1426 | read-pkg@^3.0.0: 1427 | version "3.0.0" 1428 | resolved "https://registry.yarnpkg.com/read-pkg/-/read-pkg-3.0.0.tgz#9cbc686978fee65d16c00e2b19c237fcf6e38389" 1429 | dependencies: 1430 | load-json-file "^4.0.0" 1431 | normalize-package-data "^2.3.2" 1432 | path-type "^3.0.0" 1433 | 1434 | readable-stream@^2.0.2, readable-stream@^2.0.6, readable-stream@^2.1.4: 1435 | version "2.3.3" 1436 | resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.3.3.tgz#368f2512d79f9d46fdfc71349ae7878bbc1eb95c" 1437 | dependencies: 1438 | core-util-is "~1.0.0" 1439 | inherits "~2.0.3" 1440 | isarray "~1.0.0" 1441 | process-nextick-args "~1.0.6" 1442 | safe-buffer "~5.1.1" 1443 | string_decoder "~1.0.3" 1444 | util-deprecate "~1.0.1" 1445 | 1446 | readdirp@^2.0.0: 1447 | version "2.1.0" 1448 | resolved "https://registry.yarnpkg.com/readdirp/-/readdirp-2.1.0.tgz#4ed0ad060df3073300c48440373f72d1cc642d78" 1449 | dependencies: 1450 | graceful-fs "^4.1.2" 1451 | minimatch "^3.0.2" 1452 | readable-stream "^2.0.2" 1453 | set-immediate-shim "^1.0.1" 1454 | 1455 | regex-not@^1.0.0: 1456 | version "1.0.0" 1457 | resolved "https://registry.yarnpkg.com/regex-not/-/regex-not-1.0.0.tgz#42f83e39771622df826b02af176525d6a5f157f9" 1458 | dependencies: 1459 | extend-shallow "^2.0.1" 1460 | 1461 | registry-auth-token@^3.0.1: 1462 | version "3.3.2" 1463 | resolved "https://registry.yarnpkg.com/registry-auth-token/-/registry-auth-token-3.3.2.tgz#851fd49038eecb586911115af845260eec983f20" 1464 | dependencies: 1465 | rc "^1.1.6" 1466 | safe-buffer "^5.0.1" 1467 | 1468 | registry-url@^3.0.3: 1469 | version "3.1.0" 1470 | resolved "https://registry.yarnpkg.com/registry-url/-/registry-url-3.1.0.tgz#3d4ef870f73dde1d77f0cf9a381432444e174942" 1471 | dependencies: 1472 | rc "^1.0.1" 1473 | 1474 | remove-trailing-separator@^1.0.1: 1475 | version "1.1.0" 1476 | resolved "https://registry.yarnpkg.com/remove-trailing-separator/-/remove-trailing-separator-1.1.0.tgz#c24bce2a283adad5bc3f58e0d48249b92379d8ef" 1477 | 1478 | repeat-element@^1.1.2: 1479 | version "1.1.2" 1480 | resolved "https://registry.yarnpkg.com/repeat-element/-/repeat-element-1.1.2.tgz#ef089a178d1483baae4d93eb98b4f9e4e11d990a" 1481 | 1482 | repeat-string@^1.6.1: 1483 | version "1.6.1" 1484 | resolved "https://registry.yarnpkg.com/repeat-string/-/repeat-string-1.6.1.tgz#8dcae470e1c88abc2d600fff4a776286da75e637" 1485 | 1486 | request@2.81.0: 1487 | version "2.81.0" 1488 | resolved "https://registry.yarnpkg.com/request/-/request-2.81.0.tgz#c6928946a0e06c5f8d6f8a9333469ffda46298a0" 1489 | dependencies: 1490 | aws-sign2 "~0.6.0" 1491 | aws4 "^1.2.1" 1492 | caseless "~0.12.0" 1493 | combined-stream "~1.0.5" 1494 | extend "~3.0.0" 1495 | forever-agent "~0.6.1" 1496 | form-data "~2.1.1" 1497 | har-validator "~4.2.1" 1498 | hawk "~3.1.3" 1499 | http-signature "~1.1.0" 1500 | is-typedarray "~1.0.0" 1501 | isstream "~0.1.2" 1502 | json-stringify-safe "~5.0.1" 1503 | mime-types "~2.1.7" 1504 | oauth-sign "~0.8.1" 1505 | performance-now "^0.2.0" 1506 | qs "~6.4.0" 1507 | safe-buffer "^5.0.1" 1508 | stringstream "~0.0.4" 1509 | tough-cookie "~2.3.0" 1510 | tunnel-agent "^0.6.0" 1511 | uuid "^3.0.0" 1512 | 1513 | resolve-url@^0.2.1: 1514 | version "0.2.1" 1515 | resolved "https://registry.yarnpkg.com/resolve-url/-/resolve-url-0.2.1.tgz#2c637fe77c893afd2a663fe21aa9080068e2052a" 1516 | 1517 | rimraf@2, rimraf@^2.5.1, rimraf@^2.6.1: 1518 | version "2.6.2" 1519 | resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.6.2.tgz#2ed8150d24a16ea8651e6d6ef0f47c4158ce7a36" 1520 | dependencies: 1521 | glob "^7.0.5" 1522 | 1523 | safe-buffer@^5.0.1, safe-buffer@~5.1.0, safe-buffer@~5.1.1: 1524 | version "5.1.1" 1525 | resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.1.1.tgz#893312af69b2123def71f57889001671eeb2c853" 1526 | 1527 | semver-diff@^2.0.0: 1528 | version "2.1.0" 1529 | resolved "https://registry.yarnpkg.com/semver-diff/-/semver-diff-2.1.0.tgz#4bbb8437c8d37e4b0cf1a68fd726ec6d645d6d36" 1530 | dependencies: 1531 | semver "^5.0.3" 1532 | 1533 | "semver@2 || 3 || 4 || 5", semver@^5.0.3, semver@^5.1.0, semver@^5.3.0, semver@^5.4.1: 1534 | version "5.5.0" 1535 | resolved "https://registry.yarnpkg.com/semver/-/semver-5.5.0.tgz#dc4bbc7a6ca9d916dee5d43516f0092b58f7b8ab" 1536 | 1537 | set-blocking@~2.0.0: 1538 | version "2.0.0" 1539 | resolved "https://registry.yarnpkg.com/set-blocking/-/set-blocking-2.0.0.tgz#045f9782d011ae9a6803ddd382b24392b3d890f7" 1540 | 1541 | set-getter@^0.1.0: 1542 | version "0.1.0" 1543 | resolved "https://registry.yarnpkg.com/set-getter/-/set-getter-0.1.0.tgz#d769c182c9d5a51f409145f2fba82e5e86e80376" 1544 | dependencies: 1545 | to-object-path "^0.3.0" 1546 | 1547 | set-immediate-shim@^1.0.1: 1548 | version "1.0.1" 1549 | resolved "https://registry.yarnpkg.com/set-immediate-shim/-/set-immediate-shim-1.0.1.tgz#4b2b1b27eb808a9f8dcc481a58e5e56f599f3f61" 1550 | 1551 | set-value@^0.4.3: 1552 | version "0.4.3" 1553 | resolved "https://registry.yarnpkg.com/set-value/-/set-value-0.4.3.tgz#7db08f9d3d22dc7f78e53af3c3bf4666ecdfccf1" 1554 | dependencies: 1555 | extend-shallow "^2.0.1" 1556 | is-extendable "^0.1.1" 1557 | is-plain-object "^2.0.1" 1558 | to-object-path "^0.3.0" 1559 | 1560 | set-value@^2.0.0: 1561 | version "2.0.0" 1562 | resolved "https://registry.yarnpkg.com/set-value/-/set-value-2.0.0.tgz#71ae4a88f0feefbbf52d1ea604f3fb315ebb6274" 1563 | dependencies: 1564 | extend-shallow "^2.0.1" 1565 | is-extendable "^0.1.1" 1566 | is-plain-object "^2.0.3" 1567 | split-string "^3.0.1" 1568 | 1569 | shebang-command@^1.2.0: 1570 | version "1.2.0" 1571 | resolved "https://registry.yarnpkg.com/shebang-command/-/shebang-command-1.2.0.tgz#44aac65b695b03398968c39f363fee5deafdf1ea" 1572 | dependencies: 1573 | shebang-regex "^1.0.0" 1574 | 1575 | shebang-regex@^1.0.0: 1576 | version "1.0.0" 1577 | resolved "https://registry.yarnpkg.com/shebang-regex/-/shebang-regex-1.0.0.tgz#da42f49740c0b42db2ca9728571cb190c98efea3" 1578 | 1579 | shell-quote@^1.6.1: 1580 | version "1.6.1" 1581 | resolved "https://registry.yarnpkg.com/shell-quote/-/shell-quote-1.6.1.tgz#f4781949cce402697127430ea3b3c5476f481767" 1582 | dependencies: 1583 | array-filter "~0.0.0" 1584 | array-map "~0.0.0" 1585 | array-reduce "~0.0.0" 1586 | jsonify "~0.0.0" 1587 | 1588 | signal-exit@^3.0.0, signal-exit@^3.0.2: 1589 | version "3.0.2" 1590 | resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.2.tgz#b5fdc08f1287ea1178628e415e25132b73646c6d" 1591 | 1592 | snapdragon-node@^2.0.1: 1593 | version "2.1.1" 1594 | resolved "https://registry.yarnpkg.com/snapdragon-node/-/snapdragon-node-2.1.1.tgz#6c175f86ff14bdb0724563e8f3c1b021a286853b" 1595 | dependencies: 1596 | define-property "^1.0.0" 1597 | isobject "^3.0.0" 1598 | snapdragon-util "^3.0.1" 1599 | 1600 | snapdragon-util@^3.0.1: 1601 | version "3.0.1" 1602 | resolved "https://registry.yarnpkg.com/snapdragon-util/-/snapdragon-util-3.0.1.tgz#f956479486f2acd79700693f6f7b805e45ab56e2" 1603 | dependencies: 1604 | kind-of "^3.2.0" 1605 | 1606 | snapdragon@^0.8.1: 1607 | version "0.8.1" 1608 | resolved "https://registry.yarnpkg.com/snapdragon/-/snapdragon-0.8.1.tgz#e12b5487faded3e3dea0ac91e9400bf75b401370" 1609 | dependencies: 1610 | base "^0.11.1" 1611 | debug "^2.2.0" 1612 | define-property "^0.2.5" 1613 | extend-shallow "^2.0.1" 1614 | map-cache "^0.2.2" 1615 | source-map "^0.5.6" 1616 | source-map-resolve "^0.5.0" 1617 | use "^2.0.0" 1618 | 1619 | sntp@1.x.x: 1620 | version "1.0.9" 1621 | resolved "https://registry.yarnpkg.com/sntp/-/sntp-1.0.9.tgz#6541184cc90aeea6c6e7b35e2659082443c66198" 1622 | dependencies: 1623 | hoek "2.x.x" 1624 | 1625 | source-map-resolve@^0.5.0: 1626 | version "0.5.1" 1627 | resolved "https://registry.yarnpkg.com/source-map-resolve/-/source-map-resolve-0.5.1.tgz#7ad0f593f2281598e854df80f19aae4b92d7a11a" 1628 | dependencies: 1629 | atob "^2.0.0" 1630 | decode-uri-component "^0.2.0" 1631 | resolve-url "^0.2.1" 1632 | source-map-url "^0.4.0" 1633 | urix "^0.1.0" 1634 | 1635 | source-map-url@^0.4.0: 1636 | version "0.4.0" 1637 | resolved "https://registry.yarnpkg.com/source-map-url/-/source-map-url-0.4.0.tgz#3e935d7ddd73631b97659956d55128e87b5084a3" 1638 | 1639 | source-map@^0.5.6: 1640 | version "0.5.7" 1641 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.5.7.tgz#8a039d2d1021d22d1ea14c80d8ea468ba2ef3fcc" 1642 | 1643 | spdx-correct@~1.0.0: 1644 | version "1.0.2" 1645 | resolved "https://registry.yarnpkg.com/spdx-correct/-/spdx-correct-1.0.2.tgz#4b3073d933ff51f3912f03ac5519498a4150db40" 1646 | dependencies: 1647 | spdx-license-ids "^1.0.2" 1648 | 1649 | spdx-expression-parse@~1.0.0: 1650 | version "1.0.4" 1651 | resolved "https://registry.yarnpkg.com/spdx-expression-parse/-/spdx-expression-parse-1.0.4.tgz#9bdf2f20e1f40ed447fbe273266191fced51626c" 1652 | 1653 | spdx-license-ids@^1.0.2: 1654 | version "1.2.2" 1655 | resolved "https://registry.yarnpkg.com/spdx-license-ids/-/spdx-license-ids-1.2.2.tgz#c9df7a3424594ade6bd11900d596696dc06bac57" 1656 | 1657 | split-string@^3.0.1, split-string@^3.0.2: 1658 | version "3.1.0" 1659 | resolved "https://registry.yarnpkg.com/split-string/-/split-string-3.1.0.tgz#7cb09dda3a86585705c64b39a6466038682e8fe2" 1660 | dependencies: 1661 | extend-shallow "^3.0.0" 1662 | 1663 | split@0.3: 1664 | version "0.3.3" 1665 | resolved "https://registry.yarnpkg.com/split/-/split-0.3.3.tgz#cd0eea5e63a211dfff7eb0f091c4133e2d0dd28f" 1666 | dependencies: 1667 | through "2" 1668 | 1669 | sshpk@^1.7.0: 1670 | version "1.13.1" 1671 | resolved "https://registry.yarnpkg.com/sshpk/-/sshpk-1.13.1.tgz#512df6da6287144316dc4c18fe1cf1d940739be3" 1672 | dependencies: 1673 | asn1 "~0.2.3" 1674 | assert-plus "^1.0.0" 1675 | dashdash "^1.12.0" 1676 | getpass "^0.1.1" 1677 | optionalDependencies: 1678 | bcrypt-pbkdf "^1.0.0" 1679 | ecc-jsbn "~0.1.1" 1680 | jsbn "~0.1.0" 1681 | tweetnacl "~0.14.0" 1682 | 1683 | static-extend@^0.1.1: 1684 | version "0.1.2" 1685 | resolved "https://registry.yarnpkg.com/static-extend/-/static-extend-0.1.2.tgz#60809c39cbff55337226fd5e0b520f341f1fb5c6" 1686 | dependencies: 1687 | define-property "^0.2.5" 1688 | object-copy "^0.1.0" 1689 | 1690 | stream-combiner@~0.0.4: 1691 | version "0.0.4" 1692 | resolved "https://registry.yarnpkg.com/stream-combiner/-/stream-combiner-0.0.4.tgz#4d5e433c185261dde623ca3f44c586bcf5c4ad14" 1693 | dependencies: 1694 | duplexer "~0.1.1" 1695 | 1696 | string-width@^1.0.1, string-width@^1.0.2: 1697 | version "1.0.2" 1698 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-1.0.2.tgz#118bdf5b8cdc51a2a7e70d211e07e2b0b9b107d3" 1699 | dependencies: 1700 | code-point-at "^1.0.0" 1701 | is-fullwidth-code-point "^1.0.0" 1702 | strip-ansi "^3.0.0" 1703 | 1704 | string-width@^2.0.0, string-width@^2.1.1: 1705 | version "2.1.1" 1706 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-2.1.1.tgz#ab93f27a8dc13d28cac815c462143a6d9012ae9e" 1707 | dependencies: 1708 | is-fullwidth-code-point "^2.0.0" 1709 | strip-ansi "^4.0.0" 1710 | 1711 | string.prototype.padend@^3.0.0: 1712 | version "3.0.0" 1713 | resolved "https://registry.yarnpkg.com/string.prototype.padend/-/string.prototype.padend-3.0.0.tgz#f3aaef7c1719f170c5eab1c32bf780d96e21f2f0" 1714 | dependencies: 1715 | define-properties "^1.1.2" 1716 | es-abstract "^1.4.3" 1717 | function-bind "^1.0.2" 1718 | 1719 | string_decoder@~1.0.3: 1720 | version "1.0.3" 1721 | resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.0.3.tgz#0fc67d7c141825de94282dd536bec6b9bce860ab" 1722 | dependencies: 1723 | safe-buffer "~5.1.0" 1724 | 1725 | stringstream@~0.0.4: 1726 | version "0.0.5" 1727 | resolved "https://registry.yarnpkg.com/stringstream/-/stringstream-0.0.5.tgz#4e484cd4de5a0bbbee18e46307710a8a81621878" 1728 | 1729 | strip-ansi@^3.0.0, strip-ansi@^3.0.1: 1730 | version "3.0.1" 1731 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-3.0.1.tgz#6a385fb8853d952d5ff05d0e8aaf94278dc63dcf" 1732 | dependencies: 1733 | ansi-regex "^2.0.0" 1734 | 1735 | strip-ansi@^4.0.0: 1736 | version "4.0.0" 1737 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-4.0.0.tgz#a8479022eb1ac368a871389b635262c505ee368f" 1738 | dependencies: 1739 | ansi-regex "^3.0.0" 1740 | 1741 | strip-bom@^3.0.0: 1742 | version "3.0.0" 1743 | resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-3.0.0.tgz#2334c18e9c759f7bdd56fdef7e9ae3d588e68ed3" 1744 | 1745 | strip-eof@^1.0.0: 1746 | version "1.0.0" 1747 | resolved "https://registry.yarnpkg.com/strip-eof/-/strip-eof-1.0.0.tgz#bb43ff5598a6eb05d89b59fcd129c983313606bf" 1748 | 1749 | strip-json-comments@~2.0.1: 1750 | version "2.0.1" 1751 | resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-2.0.1.tgz#3c531942e908c2697c0ec344858c286c7ca0a60a" 1752 | 1753 | supports-color@^4.0.0: 1754 | version "4.5.0" 1755 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-4.5.0.tgz#be7a0de484dec5c5cddf8b3d59125044912f635b" 1756 | dependencies: 1757 | has-flag "^2.0.0" 1758 | 1759 | tar-pack@^3.4.0: 1760 | version "3.4.1" 1761 | resolved "https://registry.yarnpkg.com/tar-pack/-/tar-pack-3.4.1.tgz#e1dbc03a9b9d3ba07e896ad027317eb679a10a1f" 1762 | dependencies: 1763 | debug "^2.2.0" 1764 | fstream "^1.0.10" 1765 | fstream-ignore "^1.0.5" 1766 | once "^1.3.3" 1767 | readable-stream "^2.1.4" 1768 | rimraf "^2.5.1" 1769 | tar "^2.2.1" 1770 | uid-number "^0.0.6" 1771 | 1772 | tar@^2.2.1: 1773 | version "2.2.1" 1774 | resolved "https://registry.yarnpkg.com/tar/-/tar-2.2.1.tgz#8e4d2a256c0e2185c6b18ad694aec968b83cb1d1" 1775 | dependencies: 1776 | block-stream "*" 1777 | fstream "^1.0.2" 1778 | inherits "2" 1779 | 1780 | term-size@^1.2.0: 1781 | version "1.2.0" 1782 | resolved "https://registry.yarnpkg.com/term-size/-/term-size-1.2.0.tgz#458b83887f288fc56d6fffbfad262e26638efa69" 1783 | dependencies: 1784 | execa "^0.7.0" 1785 | 1786 | through@2, through@~2.3, through@~2.3.1: 1787 | version "2.3.8" 1788 | resolved "https://registry.yarnpkg.com/through/-/through-2.3.8.tgz#0dd4c9ffaabc357960b1b724115d7e0e86a2e1f5" 1789 | 1790 | timed-out@^4.0.0: 1791 | version "4.0.1" 1792 | resolved "https://registry.yarnpkg.com/timed-out/-/timed-out-4.0.1.tgz#f32eacac5a175bea25d7fab565ab3ed8741ef56f" 1793 | 1794 | to-object-path@^0.3.0: 1795 | version "0.3.0" 1796 | resolved "https://registry.yarnpkg.com/to-object-path/-/to-object-path-0.3.0.tgz#297588b7b0e7e0ac08e04e672f85c1f4999e17af" 1797 | dependencies: 1798 | kind-of "^3.0.2" 1799 | 1800 | to-regex-range@^2.1.0: 1801 | version "2.1.1" 1802 | resolved "https://registry.yarnpkg.com/to-regex-range/-/to-regex-range-2.1.1.tgz#7c80c17b9dfebe599e27367e0d4dd5590141db38" 1803 | dependencies: 1804 | is-number "^3.0.0" 1805 | repeat-string "^1.6.1" 1806 | 1807 | to-regex@^3.0.1: 1808 | version "3.0.1" 1809 | resolved "https://registry.yarnpkg.com/to-regex/-/to-regex-3.0.1.tgz#15358bee4a2c83bd76377ba1dc049d0f18837aae" 1810 | dependencies: 1811 | define-property "^0.2.5" 1812 | extend-shallow "^2.0.1" 1813 | regex-not "^1.0.0" 1814 | 1815 | touch@^3.1.0: 1816 | version "3.1.0" 1817 | resolved "https://registry.yarnpkg.com/touch/-/touch-3.1.0.tgz#fe365f5f75ec9ed4e56825e0bb76d24ab74af83b" 1818 | dependencies: 1819 | nopt "~1.0.10" 1820 | 1821 | tough-cookie@~2.3.0: 1822 | version "2.3.3" 1823 | resolved "https://registry.yarnpkg.com/tough-cookie/-/tough-cookie-2.3.3.tgz#0b618a5565b6dea90bf3425d04d55edc475a7561" 1824 | dependencies: 1825 | punycode "^1.4.1" 1826 | 1827 | tunnel-agent@^0.6.0: 1828 | version "0.6.0" 1829 | resolved "https://registry.yarnpkg.com/tunnel-agent/-/tunnel-agent-0.6.0.tgz#27a5dea06b36b04a0a9966774b290868f0fc40fd" 1830 | dependencies: 1831 | safe-buffer "^5.0.1" 1832 | 1833 | tweetnacl@^0.14.3, tweetnacl@~0.14.0: 1834 | version "0.14.5" 1835 | resolved "https://registry.yarnpkg.com/tweetnacl/-/tweetnacl-0.14.5.tgz#5ae68177f192d4456269d108afa93ff8743f4f64" 1836 | 1837 | uid-number@^0.0.6: 1838 | version "0.0.6" 1839 | resolved "https://registry.yarnpkg.com/uid-number/-/uid-number-0.0.6.tgz#0ea10e8035e8eb5b8e4449f06da1c730663baa81" 1840 | 1841 | undefsafe@^2.0.1: 1842 | version "2.0.1" 1843 | resolved "https://registry.yarnpkg.com/undefsafe/-/undefsafe-2.0.1.tgz#03b2f2a16c94556e14b2edef326cd66aaf82707a" 1844 | dependencies: 1845 | debug "^2.2.0" 1846 | 1847 | union-value@^1.0.0: 1848 | version "1.0.0" 1849 | resolved "https://registry.yarnpkg.com/union-value/-/union-value-1.0.0.tgz#5c71c34cb5bad5dcebe3ea0cd08207ba5aa1aea4" 1850 | dependencies: 1851 | arr-union "^3.1.0" 1852 | get-value "^2.0.6" 1853 | is-extendable "^0.1.1" 1854 | set-value "^0.4.3" 1855 | 1856 | unique-string@^1.0.0: 1857 | version "1.0.0" 1858 | resolved "https://registry.yarnpkg.com/unique-string/-/unique-string-1.0.0.tgz#9e1057cca851abb93398f8b33ae187b99caec11a" 1859 | dependencies: 1860 | crypto-random-string "^1.0.0" 1861 | 1862 | unset-value@^1.0.0: 1863 | version "1.0.0" 1864 | resolved "https://registry.yarnpkg.com/unset-value/-/unset-value-1.0.0.tgz#8376873f7d2335179ffb1e6fc3a8ed0dfc8ab559" 1865 | dependencies: 1866 | has-value "^0.3.1" 1867 | isobject "^3.0.0" 1868 | 1869 | unzip-response@^2.0.1: 1870 | version "2.0.1" 1871 | resolved "https://registry.yarnpkg.com/unzip-response/-/unzip-response-2.0.1.tgz#d2f0f737d16b0615e72a6935ed04214572d56f97" 1872 | 1873 | update-notifier@^2.3.0: 1874 | version "2.3.0" 1875 | resolved "https://registry.yarnpkg.com/update-notifier/-/update-notifier-2.3.0.tgz#4e8827a6bb915140ab093559d7014e3ebb837451" 1876 | dependencies: 1877 | boxen "^1.2.1" 1878 | chalk "^2.0.1" 1879 | configstore "^3.0.0" 1880 | import-lazy "^2.1.0" 1881 | is-installed-globally "^0.1.0" 1882 | is-npm "^1.0.0" 1883 | latest-version "^3.0.0" 1884 | semver-diff "^2.0.0" 1885 | xdg-basedir "^3.0.0" 1886 | 1887 | urix@^0.1.0: 1888 | version "0.1.0" 1889 | resolved "https://registry.yarnpkg.com/urix/-/urix-0.1.0.tgz#da937f7a62e21fec1fd18d49b35c2935067a6c72" 1890 | 1891 | url-parse-lax@^1.0.0: 1892 | version "1.0.0" 1893 | resolved "https://registry.yarnpkg.com/url-parse-lax/-/url-parse-lax-1.0.0.tgz#7af8f303645e9bd79a272e7a14ac68bc0609da73" 1894 | dependencies: 1895 | prepend-http "^1.0.1" 1896 | 1897 | use@^2.0.0: 1898 | version "2.0.2" 1899 | resolved "https://registry.yarnpkg.com/use/-/use-2.0.2.tgz#ae28a0d72f93bf22422a18a2e379993112dec8e8" 1900 | dependencies: 1901 | define-property "^0.2.5" 1902 | isobject "^3.0.0" 1903 | lazy-cache "^2.0.2" 1904 | 1905 | util-deprecate@~1.0.1: 1906 | version "1.0.2" 1907 | resolved "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf" 1908 | 1909 | uuid@^3.0.0: 1910 | version "3.2.1" 1911 | resolved "https://registry.yarnpkg.com/uuid/-/uuid-3.2.1.tgz#12c528bb9d58d0b9265d9a2f6f0fe8be17ff1f14" 1912 | 1913 | validate-npm-package-license@^3.0.1: 1914 | version "3.0.1" 1915 | resolved "https://registry.yarnpkg.com/validate-npm-package-license/-/validate-npm-package-license-3.0.1.tgz#2804babe712ad3379459acfbe24746ab2c303fbc" 1916 | dependencies: 1917 | spdx-correct "~1.0.0" 1918 | spdx-expression-parse "~1.0.0" 1919 | 1920 | verror@1.10.0: 1921 | version "1.10.0" 1922 | resolved "https://registry.yarnpkg.com/verror/-/verror-1.10.0.tgz#3a105ca17053af55d6e270c1f8288682e18da400" 1923 | dependencies: 1924 | assert-plus "^1.0.0" 1925 | core-util-is "1.0.2" 1926 | extsprintf "^1.2.0" 1927 | 1928 | which@^1.2.9: 1929 | version "1.3.0" 1930 | resolved "https://registry.yarnpkg.com/which/-/which-1.3.0.tgz#ff04bdfc010ee547d780bec38e1ac1c2777d253a" 1931 | dependencies: 1932 | isexe "^2.0.0" 1933 | 1934 | wide-align@^1.1.0: 1935 | version "1.1.2" 1936 | resolved "https://registry.yarnpkg.com/wide-align/-/wide-align-1.1.2.tgz#571e0f1b0604636ebc0dfc21b0339bbe31341710" 1937 | dependencies: 1938 | string-width "^1.0.2" 1939 | 1940 | widest-line@^2.0.0: 1941 | version "2.0.0" 1942 | resolved "https://registry.yarnpkg.com/widest-line/-/widest-line-2.0.0.tgz#0142a4e8a243f8882c0233aa0e0281aa76152273" 1943 | dependencies: 1944 | string-width "^2.1.1" 1945 | 1946 | wrappy@1: 1947 | version "1.0.2" 1948 | resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f" 1949 | 1950 | write-file-atomic@^2.0.0: 1951 | version "2.3.0" 1952 | resolved "https://registry.yarnpkg.com/write-file-atomic/-/write-file-atomic-2.3.0.tgz#1ff61575c2e2a4e8e510d6fa4e243cce183999ab" 1953 | dependencies: 1954 | graceful-fs "^4.1.11" 1955 | imurmurhash "^0.1.4" 1956 | signal-exit "^3.0.2" 1957 | 1958 | xdg-basedir@^3.0.0: 1959 | version "3.0.0" 1960 | resolved "https://registry.yarnpkg.com/xdg-basedir/-/xdg-basedir-3.0.0.tgz#496b2cc109eca8dbacfe2dc72b603c17c5870ad4" 1961 | 1962 | yallist@^2.1.2: 1963 | version "2.1.2" 1964 | resolved "https://registry.yarnpkg.com/yallist/-/yallist-2.1.2.tgz#1c11f9218f076089a47dd512f93c6699a6a81d52" 1965 | -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- 1 | # THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY. 2 | # yarn lockfile v1 3 | 4 | 5 | bs-platform@5: 6 | version "5.0.0" 7 | resolved "https://registry.yarnpkg.com/bs-platform/-/bs-platform-5.0.0.tgz#f9fded818bafc3891aeb85eb4e0d95b8d8f8b4d7" 8 | integrity sha512-zxLobdIaf/r7go47hOgxcd6C0ANh7MYMEtZNb9Al7JdoekzFZI50F4GpZpP8kMh9Z+M5PoPE1WuryT4S8mT8Kg== 9 | --------------------------------------------------------------------------------