├── .gitignore ├── .travis.yml ├── LICENSE ├── NEWS ├── README.md ├── package.json ├── src ├── lua-cli.js └── luac-cli.js ├── test ├── lua-cli.test.js └── luac-cli.test.js └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- 1 | sudo: false 2 | dist: trusty 3 | language: node_js 4 | 5 | cache: yarn 6 | 7 | matrix: 8 | include: 9 | - node_js: 8 10 | - node_js: 10 11 | - node_js: 11 12 | - node_js: node 13 | 14 | before_install: 15 | - 'if [[ `npm -v` != 5* ]]; then npm i -g npm@^5.0.0; fi' 16 | - nvm --version 17 | - node --version 18 | - npm --version 19 | 20 | script: 21 | - yarn lint 22 | - yarn test 23 | 24 | notifications: 25 | email: false 26 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright © 2017 Benoit Giannangeli 4 | Copyright © 2018-2019 Daurnimator 5 | Copyright © 1994–2017 Lua.org, PUC-Rio. 6 | 7 | Permission is hereby granted, free of charge, to any person obtaining a copy 8 | of this software and associated documentation files (the "Software"), to deal 9 | in the Software without restriction, including without limitation the rights 10 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 11 | copies of the Software, and to permit persons to whom the Software is 12 | furnished to do so, subject to the following conditions: 13 | 14 | The above copyright notice and this permission notice shall be included in all 15 | copies or substantial portions of the Software. 16 | 17 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 18 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 19 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 20 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 21 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 22 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 23 | SOFTWARE. 24 | -------------------------------------------------------------------------------- /NEWS: -------------------------------------------------------------------------------- 1 | 0.1.0 - 2018-03-31 2 | 3 | - Node.js based versions of `lua` and `luac` command line tools 4 | - Implements all options of the Lua 5.3 executables 5 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | [![Build Status](https://travis-ci.org/fengari-lua/fengari-node-cli.svg?branch=master)](https://travis-ci.org/fengari-lua/fengari-node-cli) 2 | [![npm](https://img.shields.io/npm/v/fengari-node-cli.svg)](https://npmjs.com/package/fengari-node-cli) 3 | [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT) 4 | [![#fengari on libera.chat](https://img.shields.io/badge/chat-%23fengari-brightgreen)](https://web.libera.chat/?channels=#fengari) 5 | 6 | 7 | # fengari-node-cli 8 | 9 | The Lua command line application, but using [fengari](https://fengari.io/) under [node.js](https://nodejs.org/) 10 | 11 | This project consists of `fengari` and `fengaric` command line applications that provide functionality equivalent to the [`lua`](http://www.lua.org/manual/5.3/manual.html#7) and [`luac`](https://www.lua.org/manual/5.3/luac.html) programs. 12 | 13 | ## Installation 14 | 15 | Use `npm` or [`yarn`](http://yarnpkg.com/): 16 | 17 | ```bash 18 | npm install -g fengari-node-cli 19 | ``` 20 | 21 | 22 | ## Usage 23 | 24 | ``` 25 | usage: fengari [options] [script [args]] 26 | Available options are: 27 | -e stat execute string 'stat' 28 | -i enter interactive mode after executing 'script' 29 | -l name require library 'name' 30 | -v show version information 31 | -E ignore environment variables 32 | -- stop handling options 33 | - stop handling options and execute stdin 34 | ``` 35 | 36 | ``` 37 | usage: fengaric [options] [filename] 38 | Available options are: 39 | -l list (use -l -l for full listing) 40 | -o name output to file 'name' (default is "fengaric.out") 41 | -p parse only 42 | -s strip debug information 43 | -v show version information 44 | -- stop handling options 45 | - stop handling options and process stdin 46 | ``` 47 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "fengari-node-cli", 3 | "version": "0.1.0", 4 | "description": " The Lua command line application, but using fengari under node", 5 | "bin": { 6 | "fengari": "./src/lua-cli.js", 7 | "fengaric": "./src/luac-cli.js" 8 | }, 9 | "directories": { 10 | "lib": "src", 11 | "test": "test" 12 | }, 13 | "scripts": { 14 | "lint": "eslint src/ test/", 15 | "prepublishOnly": "git diff-index --quiet --cached HEAD -- && npm run lint && npm run test", 16 | "test": "jest" 17 | }, 18 | "repository": { 19 | "type": "git", 20 | "url": "git+https://github.com/fengari-lua/fengari-node-cli.git" 21 | }, 22 | "keywords": [ 23 | "lua", 24 | "fengari", 25 | "repl", 26 | "cli" 27 | ], 28 | "contributors": [ 29 | "Benoit Giannangeli ", 30 | "Daurnimator " 31 | ], 32 | "license": "MIT", 33 | "bugs": { 34 | "url": "https://github.com/fengari-lua/fengari-node-cli/issues" 35 | }, 36 | "homepage": "https://github.com/fengari-lua/fengari-node-cli#readme", 37 | "dependencies": { 38 | "fengari": "^0.1.0", 39 | "readline-sync": "^1.4.7", 40 | "sprintf-js": "^1.1.1" 41 | }, 42 | "devDependencies": { 43 | "eslint": "^4.17.0", 44 | "jest": "^22.4.3" 45 | }, 46 | "eslintConfig": { 47 | "env": { 48 | "es6": true, 49 | "node": true 50 | }, 51 | "extends": "eslint:recommended", 52 | "rules": { 53 | "indent": [ 54 | "error", 55 | 4, 56 | { 57 | "SwitchCase": 1 58 | } 59 | ], 60 | "linebreak-style": [ 61 | "error", 62 | "unix" 63 | ], 64 | "no-console": 0, 65 | "semi": [ 66 | "error", 67 | "always" 68 | ] 69 | }, 70 | "overrides": [ 71 | { 72 | "files": [ 73 | "test/*.js" 74 | ], 75 | "env": { 76 | "jest": true 77 | }, 78 | "parserOptions": { 79 | "sourceType": "module" 80 | } 81 | } 82 | ] 83 | } 84 | } 85 | -------------------------------------------------------------------------------- /src/lua-cli.js: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env node 2 | "use strict"; 3 | 4 | const { 5 | FENGARI_COPYRIGHT, 6 | to_jsstring, 7 | to_luastring, 8 | lua: { 9 | LUA_ERRSYNTAX, 10 | LUA_MULTRET, 11 | LUA_OK, 12 | LUA_REGISTRYINDEX, 13 | LUA_TSTRING, 14 | LUA_TTABLE, 15 | lua_createtable, 16 | lua_getglobal, 17 | lua_gettop, 18 | lua_insert, 19 | lua_pcall, 20 | lua_pop, 21 | lua_pushboolean, 22 | lua_pushcfunction, 23 | lua_pushliteral, 24 | lua_pushstring, 25 | lua_rawgeti, 26 | lua_remove, 27 | lua_setfield, 28 | lua_setglobal, 29 | lua_seti, 30 | lua_settop, 31 | lua_tojsstring, 32 | lua_tostring, 33 | lua_type 34 | }, 35 | lauxlib: { 36 | luaL_callmeta, 37 | luaL_checkstack, 38 | luaL_error, 39 | luaL_len, 40 | luaL_loadbuffer, 41 | luaL_loadfile, 42 | luaL_newstate, 43 | luaL_traceback, 44 | luaL_typename, 45 | lua_writestringerror 46 | }, 47 | lualib: { 48 | LUA_VERSUFFIX, 49 | luaL_openlibs 50 | } 51 | } = require('fengari'); 52 | 53 | const readlineSync = require('readline-sync'); 54 | 55 | const stdin = to_luastring("=stdin"); 56 | const _PROMPT = to_luastring("_PROMPT"); 57 | const _PROMPT2 = to_luastring("_PROMPT2"); 58 | 59 | const LUA_INIT_VAR = "LUA_INIT"; 60 | const LUA_INITVARVERSION = LUA_INIT_VAR + LUA_VERSUFFIX; 61 | 62 | const report = function(L, status) { 63 | if (status !== LUA_OK) { 64 | lua_writestringerror(`${lua_tojsstring(L, -1)}\n`); 65 | lua_pop(L, 1); 66 | } 67 | return status; 68 | }; 69 | 70 | const msghandler = function(L) { 71 | let msg = lua_tostring(L, 1); 72 | if (msg === null) { /* is error object not a string? */ 73 | if (luaL_callmeta(L, 1, to_luastring("__tostring")) && /* does it have a metamethod */ 74 | lua_type(L, -1) == LUA_TSTRING) /* that produces a string? */ 75 | return 1; /* that is the message */ 76 | else 77 | msg = lua_pushstring(L, to_luastring(`(error object is a ${to_jsstring(luaL_typename(L, 1))} value)`)); 78 | } 79 | luaL_traceback(L, L, msg, 1); /* append a standard traceback */ 80 | return 1; /* return the traceback */ 81 | }; 82 | 83 | const docall = function(L, narg, nres) { 84 | let base = lua_gettop(L) - narg; 85 | lua_pushcfunction(L, msghandler); 86 | lua_insert(L, base); 87 | let status = lua_pcall(L, narg, nres, base); 88 | lua_remove(L, base); 89 | return status; 90 | }; 91 | 92 | const dochunk = function(L, status) { 93 | if (status === LUA_OK) { 94 | status = docall(L, 0, 0); 95 | } 96 | return report(L, status); 97 | }; 98 | 99 | const dofile = function(L, name) { 100 | return dochunk(L, luaL_loadfile(L, name?to_luastring(name):null)); 101 | }; 102 | 103 | const dostring = function(L, s, name) { 104 | let buffer = to_luastring(s); 105 | return dochunk(L, luaL_loadbuffer(L, buffer, buffer.length, to_luastring(name))); 106 | }; 107 | 108 | const dolibrary = function(L, name) { 109 | lua_getglobal(L, to_luastring("require")); 110 | lua_pushliteral(L, name); 111 | let status = docall(L, 1, 1); /* call 'require(name)' */ 112 | if (status === LUA_OK) 113 | lua_setglobal(L, to_luastring(name)); /* global[name] = require return */ 114 | return report(L, status); 115 | }; 116 | 117 | let progname = process.argv[1]; 118 | 119 | const print_usage = function(badoption) { 120 | lua_writestringerror(`${progname}: `); 121 | if (badoption[1] === "e" || badoption[1] === "l") 122 | lua_writestringerror(`'${badoption}' needs argument\n`); 123 | else 124 | lua_writestringerror(`'unrecognized option '${badoption}'\n`); 125 | lua_writestringerror( 126 | `usage: ${progname} [options] [script [args]]\n` + 127 | "Available options are:\n" + 128 | " -e stat execute string 'stat'\n" + 129 | " -i enter interactive mode after executing 'script'\n" + 130 | " -l name require library 'name'\n" + 131 | " -v show version information\n" + 132 | " -E ignore environment variables\n" + 133 | " -- stop handling options\n" + 134 | " - stop handling options and execute stdin\n" 135 | ); 136 | }; 137 | 138 | const L = luaL_newstate(); 139 | 140 | let script = 2; // Where to start args from 141 | let has_E = false; 142 | let has_i = false; 143 | let has_v = false; 144 | let has_e = false; 145 | 146 | (function() { 147 | let i; 148 | for (i = 2; i 2) { 172 | /* invalid option */ 173 | print_usage(process.argv[script]); 174 | return process.exit(1); 175 | } 176 | has_v = true; 177 | break; 178 | case 'e': 179 | has_e = true; 180 | /* falls through */ 181 | case 'l': /* both options need an argument */ 182 | if (process.argv[i].length < 3) { /* no concatenated argument? */ 183 | i++; /* try next 'process.argv' */ 184 | if (process.argv.length <= i || process.argv[i][0] === '-') { 185 | /* no next argument or it is another option */ 186 | print_usage(process.argv[script]); 187 | return process.exit(1); 188 | } 189 | } 190 | break; 191 | default: /* invalid option */ 192 | print_usage(process.argv[script]); 193 | return process.exit(1); 194 | } 195 | } 196 | script = i; 197 | })(); 198 | 199 | if (has_v) 200 | console.log(FENGARI_COPYRIGHT); 201 | 202 | if (has_E) { 203 | /* signal for libraries to ignore env. vars. */ 204 | lua_pushboolean(L, 1); 205 | lua_setfield(L, LUA_REGISTRYINDEX, to_luastring("LUA_NOENV")); 206 | } 207 | 208 | /* open standard libraries */ 209 | luaL_openlibs(L); 210 | 211 | /* create table 'arg' */ 212 | lua_createtable(L, process.argv.length - (script + 1), script + 1); 213 | for (let i = 0; i < process.argv.length; i++) { 214 | lua_pushliteral(L, process.argv[i]); 215 | lua_seti(L, -2, i - script); /* TODO: rawseti */ 216 | } 217 | lua_setglobal(L, to_luastring("arg")); 218 | 219 | if (!has_E) { 220 | /* run LUA_INIT */ 221 | let name = LUA_INITVARVERSION; 222 | let init = process.env[name]; 223 | if (!init) { 224 | name = LUA_INIT_VAR; 225 | init = process.env[name]; 226 | } 227 | if (init) { 228 | let status; 229 | if (init[0] === '@') { 230 | status = dofile(L, init.substring(1)); 231 | } else { 232 | status = dostring(L, init, name); 233 | } 234 | if (status !== LUA_OK) { 235 | return process.exit(1); 236 | } 237 | } 238 | } 239 | 240 | /* execute arguments -e and -l */ 241 | for (let i = 1; i < script; i++) { 242 | let option = process.argv[i][1]; 243 | if (option == 'e' || option == 'l') { 244 | let extra = process.argv[i].substring(2); /* both options need an argument */ 245 | if (extra.length === 0) 246 | extra = process.argv[++i]; 247 | let status; 248 | if (option == 'e') { 249 | status = dostring(L, extra, "=(command line)"); 250 | } else { 251 | status = dolibrary(L, extra); 252 | } 253 | if (status !== LUA_OK) { 254 | return process.exit(1); 255 | } 256 | } 257 | } 258 | 259 | const pushargs = function(L) { 260 | if (lua_getglobal(L, to_luastring("arg")) !== LUA_TTABLE) 261 | luaL_error(L, to_luastring("'arg' is not a table")); 262 | let n = luaL_len(L, -1); 263 | luaL_checkstack(L, n+3, to_luastring("too many arguments to script")); 264 | let i; 265 | for (i=1; i<=n; i++) 266 | lua_rawgeti(L, -i, i); 267 | lua_remove(L, -i); 268 | return n; 269 | }; 270 | 271 | const handle_script = function(L, argv) { 272 | let fname = argv[0]; 273 | let status; 274 | if (fname === "-" && argv[-1] !== "--") 275 | fname = null; /* stdin */ 276 | else 277 | fname = to_luastring(fname); 278 | status = luaL_loadfile(L, fname); 279 | if (status === LUA_OK) { 280 | let n = pushargs(L); /* push arguments to script */ 281 | status = docall(L, n, LUA_MULTRET); 282 | } 283 | return report(L, status); 284 | }; 285 | 286 | const doREPL = function(L) { 287 | for (;;) { 288 | lua_getglobal(L, _PROMPT); 289 | let input = readlineSync.prompt({ 290 | prompt: lua_tojsstring(L, -1) || '> ' 291 | }); 292 | lua_pop(L, 1); 293 | 294 | if (input.length === 0) 295 | continue; 296 | 297 | let status; 298 | { 299 | let buffer = to_luastring("return " + input); 300 | status = luaL_loadbuffer(L, buffer, buffer.length, stdin); 301 | } 302 | if (status !== LUA_OK) { 303 | lua_pop(L, 1); 304 | let buffer = to_luastring(input); 305 | if (luaL_loadbuffer(L, buffer, buffer.length, stdin) === LUA_OK) { 306 | status = LUA_OK; 307 | } 308 | } 309 | while (status === LUA_ERRSYNTAX && lua_tojsstring(L, -1).endsWith("")) { 310 | /* continuation */ 311 | lua_pop(L, 1); 312 | lua_getglobal(L, _PROMPT2); 313 | input += "\n" + readlineSync.prompt({ 314 | prompt: lua_tojsstring(L, -1) || '>> ' 315 | }); 316 | lua_pop(L, 1); 317 | let buffer = to_luastring(input); 318 | status = luaL_loadbuffer(L, buffer, buffer.length, stdin); 319 | } 320 | if (status === LUA_OK) { 321 | status = docall(L, 0, LUA_MULTRET); 322 | } 323 | if (status === LUA_OK) { 324 | let n = lua_gettop(L); 325 | if (n > 0) { /* any result to be printed? */ 326 | lua_getglobal(L, to_luastring("print")); 327 | lua_insert(L, 1); 328 | if (lua_pcall(L, n, 0, 0) != LUA_OK) { 329 | lua_writestringerror(`error calling 'print' (${lua_tojsstring(L, -1)})\n`); 330 | } 331 | } 332 | } else { 333 | report(L, status); 334 | } 335 | lua_settop(L, 0); /* remove eventual returns */ 336 | } 337 | }; 338 | 339 | if (script < process.argv.length && /* execute main script (if there is one) */ 340 | handle_script(L, process.argv.slice(script)) !== LUA_OK) { 341 | /* success */ 342 | } else if (has_i) { 343 | doREPL(L); 344 | } else if (script == process.argv.length && !has_e && !has_v) { /* no arguments? */ 345 | if (process.stdin.isTTY) { /* running in interactive mode? */ 346 | console.log(FENGARI_COPYRIGHT); 347 | doREPL(L); /* do read-eval-print loop */ 348 | } else { 349 | dofile(L, null); 350 | } 351 | } 352 | -------------------------------------------------------------------------------- /src/luac-cli.js: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env node 2 | "use strict"; 3 | 4 | const { 5 | FENGARI_COPYRIGHT, 6 | to_jsstring, 7 | to_luastring, 8 | lua: { 9 | LUA_OK, 10 | LUA_SIGNATURE, 11 | lua_checkstack, 12 | lua_close, 13 | lua_dump, 14 | lua_load, 15 | lua_pcall, 16 | lua_pushcfunction, 17 | lua_pushinteger, 18 | lua_pushlightuserdata, 19 | lua_tointeger, 20 | lua_tojsstring, 21 | lua_topointer, 22 | lua_touserdata 23 | }, 24 | lauxlib: { 25 | luaL_loadfile, 26 | luaL_newstate 27 | } 28 | } = require('fengari'); 29 | 30 | /* We need some fengari internals */ 31 | const path = require('path'); 32 | const fengariPath = path.dirname(require.resolve('fengari')); 33 | const { 34 | constant_types: { 35 | LUA_TBOOLEAN, 36 | LUA_TLNGSTR, 37 | LUA_TNIL, 38 | LUA_TNUMFLT, 39 | LUA_TNUMINT, 40 | LUA_TSHRSTR 41 | } 42 | } = require(path.resolve(fengariPath, 'defs.js')); 43 | const { 44 | INDEXK, 45 | ISK, 46 | OpArgK, 47 | OpArgN, 48 | OpArgU, 49 | OpCodes, 50 | OpCodesI: { 51 | OP_ADD, 52 | OP_BAND, 53 | OP_BOR, 54 | OP_BXOR, 55 | OP_CLOSURE, 56 | OP_DIV, 57 | OP_EQ, 58 | OP_EXTRAARG, 59 | OP_FORLOOP, 60 | OP_FORPREP, 61 | OP_GETTABLE, 62 | OP_GETTABUP, 63 | OP_GETUPVAL, 64 | OP_IDIV, 65 | OP_JMP, 66 | OP_LE, 67 | OP_LOADK, 68 | OP_LT, 69 | OP_MUL, 70 | OP_POW, 71 | OP_SELF, 72 | OP_SETLIST, 73 | OP_SETTABLE, 74 | OP_SETTABUP, 75 | OP_SETUPVAL, 76 | OP_SHL, 77 | OP_SHR, 78 | OP_SUB, 79 | OP_TFORLOOP 80 | }, 81 | getBMode, 82 | getCMode, 83 | getOpMode, 84 | iABC, 85 | iABx, 86 | iAsBx, 87 | iAx 88 | } = require(path.resolve(fengariPath, 'lopcodes.js')); 89 | const { 90 | LUA_INTEGER_FMT, 91 | LUA_NUMBER_FMT 92 | } = require(path.resolve(fengariPath, 'luaconf.js')); 93 | 94 | const fs = require("fs"); 95 | const sprintf = require("sprintf-js").sprintf; 96 | 97 | const PROGNAME = "fengaric"; /* default program name */ 98 | const OUTPUT = PROGNAME + ".out"; /* default output file */ 99 | 100 | let listing = false; /* list bytecodes? */ 101 | let dumping = true; /* dump bytecodes? */ 102 | let stripping = false; /* strip debug information? */ 103 | let output = OUTPUT; /* actual output file name */ 104 | let progname = PROGNAME; /* actual program name */ 105 | 106 | const print = function(message) { 107 | process.stdout.write(Array.isArray(message) ? Buffer.from(message) : message); 108 | }; 109 | 110 | const fatal = function(message) { 111 | process.stderr.write(Buffer.from((`${progname}: ${message}\n`))); 112 | process.exit(1); 113 | }; 114 | 115 | const usage = function(message) { 116 | if (message[0] === "-") 117 | process.stderr.write(Buffer.from((`${progname}: unrecognized option '${message}'\n`))); 118 | else 119 | process.stderr.write(Buffer.from((`${progname}: ${message}\n`))); 120 | 121 | process.stderr.write(Buffer.from(( 122 | `usage: ${progname} [options] [filename]\n` 123 | + `Available options are:\n` 124 | + ` -l list (use -l -l for full listing)\n` 125 | + ` -o name output to file 'name' (default is "${OUTPUT}")\n` 126 | + ` -p parse only\n` 127 | + ` -s strip debug information\n` 128 | + ` -v show version information\n` 129 | + ` -- stop handling options\n` 130 | + ` - stop handling options and process stdin\n` 131 | ))); 132 | 133 | process.exit(1); 134 | }; 135 | 136 | const doargs = function() { 137 | let version = 0; 138 | let i; 139 | for (i = 2; i < process.argv.length; i++) { 140 | let arg = process.argv[i]; 141 | 142 | if (arg[0] !== "-") /* end of options; keep it */ 143 | break; 144 | else if (arg === "--") { /* end of options; skip it */ 145 | ++i; 146 | if (version) ++version; 147 | break; 148 | } else if (arg === "-") /* end of options; use stdin */ 149 | break; 150 | else if (arg === "-l") /* list */ 151 | ++listing; 152 | else if (arg === "-o") { /* output file */ 153 | output = process.argv[++i]; 154 | if (!output || (output[0] == "-" && output.length > 1)) 155 | usage("'-o' needs argument"); 156 | if (arg === "-") output = null; 157 | } else if (arg === "-p") /* parse only */ 158 | dumping = false; 159 | else if (arg === "-s") /* strip debug information */ 160 | stripping = true; 161 | else if (arg === "-v") /* show version */ 162 | ++version; 163 | else /* unknown option */ 164 | usage(arg); 165 | } 166 | 167 | if (i === process.argv.length && (listing || !dumping)) { 168 | dumping = false; 169 | process.argv[--i] = OUTPUT; 170 | } 171 | 172 | if (version) { 173 | print(FENGARI_COPYRIGHT + "\n"); 174 | if (version === process.argv.length - 2) process.exit(0); 175 | } 176 | return i; 177 | }; 178 | 179 | const FUNCTION = to_luastring("(function()end)();"); 180 | 181 | const reader = function(L, ud) { 182 | if (ud--) 183 | return FUNCTION; 184 | else 185 | return null; 186 | }; 187 | 188 | const toproto = function(L, i) { 189 | return lua_topointer(L, i).p; 190 | }; 191 | 192 | const combine = function(L, n) { 193 | if (n === 1) 194 | return toproto(L, -1); 195 | else { 196 | let i = n; 197 | if (lua_load(L, reader, i, to_luastring(`=(${PROGNAME})`), null) !== LUA_OK) 198 | fatal(lua_tojsstring(L, -1)); 199 | 200 | let f = toproto(L, -1); 201 | for (i = 0; i < n; i++) { 202 | f.p[i] = lua_topointer(L, i - n - 1).p; 203 | if (f.p[i].upvalues.length > 0) 204 | f.p[i].upvalues[0].instack = false; 205 | } 206 | f.lineinfo.length = 0; 207 | return f; 208 | } 209 | }; 210 | 211 | const writer = function(L, p, size, u) { 212 | return fs.writeSync(u, Buffer.from(p), 0, size) > 0 ? 0 : 1; 213 | }; 214 | 215 | const pmain = function(L) { 216 | let argc = lua_tointeger(L,1); 217 | let argv = lua_touserdata(L,2); 218 | 219 | let i; 220 | if (!lua_checkstack(L,argc)) 221 | fatal("too many input files"); 222 | 223 | for (i = 0; i < argc; i++) { 224 | let filename = argv[i] === "-" ? null : to_luastring(argv[i]); 225 | if (luaL_loadfile(L, filename) !== LUA_OK) 226 | fatal(lua_tojsstring(L,-1)); 227 | } 228 | 229 | let f = combine(L, argc); 230 | if (listing) 231 | PrintFunction(f, listing > 1); 232 | 233 | if (dumping) { 234 | try { 235 | let D = (output === null) ? process.stdout.fd : fs.openSync(output, 'w'); 236 | 237 | lua_dump(L, writer, D, stripping); 238 | } catch (e) { 239 | fatal(e.message); 240 | } 241 | } 242 | return 0; 243 | }; 244 | 245 | const main = function() { 246 | let i = doargs(); 247 | 248 | if (process.argv.length - i <= 0) 249 | usage("no input files given"); 250 | 251 | let L = luaL_newstate(); 252 | 253 | lua_pushcfunction(L, pmain); 254 | lua_pushinteger(L, process.argv.length - i); 255 | lua_pushlightuserdata(L, process.argv.slice(i)); 256 | 257 | if (lua_pcall(L,2,0,0) !== LUA_OK) 258 | fatal(lua_tojsstring(L,-1)); 259 | 260 | lua_close(L); 261 | process.exit(0); 262 | }; 263 | 264 | const isprint = function(c) { 265 | return /^[\x20-\x7E]$/.test(String.fromCharCode(c)); 266 | }; 267 | 268 | const PrintString = function(ts) { 269 | print("\""); 270 | 271 | let str = ts.value.getstr(); 272 | for (let i = 0; i < ts.value.tsslen(); i++) { 273 | let c = str[i]; 274 | switch (String.fromCharCode(c)) { 275 | case '"': print("\\\""); break; 276 | case '\\': print("\\\\"); break; 277 | case '\b': print("\\b"); break; 278 | case '\f': print("\\f"); break; 279 | case '\n': print("\\n"); break; 280 | case '\r': print("\\r"); break; 281 | case '\t': print("\\t"); break; 282 | case '\v': print("\\v"); break; 283 | default: 284 | if (isprint(c)) 285 | print(String.fromCharCode(c)); 286 | else 287 | print(`\\${sprintf("%03d", c)}`); 288 | } 289 | } 290 | 291 | print("\""); 292 | }; 293 | 294 | const PrintConstant = function(f, i) { 295 | let o = f.k[i]; 296 | switch (o.ttype()) { 297 | case LUA_TNIL: 298 | print("nil"); 299 | break; 300 | case LUA_TBOOLEAN: 301 | print(o.value ? "true" : "false"); 302 | break; 303 | case LUA_TNUMFLT: { 304 | let fltstr = sprintf(LUA_NUMBER_FMT, o.value); 305 | if (/^\d*$/.test(fltstr)) // Add .0 if no decimal part in string 306 | fltstr = `${fltstr}.0`; 307 | print(fltstr); 308 | break; 309 | } 310 | case LUA_TNUMINT: 311 | print(sprintf(LUA_INTEGER_FMT, o.value)); 312 | break; 313 | case LUA_TSHRSTR: case LUA_TLNGSTR: 314 | PrintString(o); 315 | break; 316 | default: 317 | print(`? type=${o.ttype()}`); 318 | break; 319 | } 320 | }; 321 | 322 | const UPVALNAME = function(f, x) { 323 | return f.upvalues[x].name ? to_jsstring(f.upvalues[x].name.getstr()) : "-"; 324 | }; 325 | 326 | const MYK = function(x) { 327 | return -1-x; 328 | }; 329 | 330 | const PrintCode = function(f) { 331 | let code = f.code; 332 | for (let pc = 0; pc < code.length; pc++) { 333 | let i = code[pc]; 334 | let o = i.opcode; 335 | let a = i.A; 336 | let b = i.B; 337 | let c = i.C; 338 | let ax = i.Ax; 339 | let bx = i.Bx; 340 | let sbx = i.sBx; 341 | 342 | let line = f.lineinfo[pc] ? f.lineinfo[pc] : -1; 343 | print(`\t${pc + 1}\t`); 344 | if (line > 0) print(`[${line}]\t`); 345 | else print("[-]\t"); 346 | 347 | let opcode = OpCodes[o].substr(0,9); 348 | let tabfill = 9 - opcode.length; 349 | 350 | print(`${opcode}${" ".repeat(tabfill)}\t`); 351 | 352 | switch(getOpMode(o)) { 353 | case iABC: { 354 | print(`${a}`); 355 | if (getBMode(o) != OpArgN) 356 | print(` ${ISK(b) ? MYK(INDEXK(b)) : b}`); 357 | if (getCMode(o) != OpArgN) 358 | print(` ${ISK(c) ? MYK(INDEXK(c)) : c}`); 359 | break; 360 | } 361 | case iABx: { 362 | print(`${a}`); 363 | if (getBMode(o) == OpArgK) print(` ${MYK(bx)}`); 364 | if (getBMode(o) == OpArgU) print(` ${bx}`); 365 | break; 366 | } 367 | case iAsBx: { 368 | print(`${a} ${sbx}`); 369 | break; 370 | } 371 | case iAx: { 372 | print(`${MYK(ax)}`); 373 | break; 374 | } 375 | } 376 | 377 | switch(o) { 378 | case OP_LOADK: { 379 | print("\t; "); 380 | PrintConstant(f, bx); 381 | break; 382 | } 383 | case OP_GETUPVAL: 384 | case OP_SETUPVAL: { 385 | print(`\t; ${UPVALNAME(f, b)}`); 386 | break; 387 | } 388 | case OP_GETTABUP: { 389 | print(`\t; ${UPVALNAME(f, b)}`); 390 | if (ISK(c)) { 391 | print(" "); 392 | PrintConstant(f, INDEXK(c)); 393 | } 394 | break; 395 | } 396 | case OP_SETTABUP: { 397 | print(`\t; ${UPVALNAME(f, a)}`); 398 | if (ISK(b)) { 399 | print(" "); 400 | PrintConstant(f, INDEXK(b)); 401 | } 402 | if (ISK(c)) { 403 | print(" "); 404 | PrintConstant(f, INDEXK(c)); 405 | } 406 | break; 407 | } 408 | case OP_GETTABLE: 409 | case OP_SELF: { 410 | if (ISK(c)) { 411 | print("\t; "); 412 | PrintConstant(f, INDEXK(c)); 413 | } 414 | break; 415 | } 416 | case OP_SETTABLE: 417 | case OP_ADD: 418 | case OP_SUB: 419 | case OP_MUL: 420 | case OP_POW: 421 | case OP_DIV: 422 | case OP_IDIV: 423 | case OP_BAND: 424 | case OP_BOR: 425 | case OP_BXOR: 426 | case OP_SHL: 427 | case OP_SHR: 428 | case OP_EQ: 429 | case OP_LT: 430 | case OP_LE: { 431 | if (ISK(b) || ISK(c)) { 432 | print("\t; "); 433 | if (ISK(b)) PrintConstant(f, INDEXK(b)); 434 | else print("-"); 435 | print(" "); 436 | if (ISK(c)) PrintConstant(f, INDEXK(c)); 437 | else print("-"); 438 | } 439 | break; 440 | } 441 | case OP_JMP: 442 | case OP_FORLOOP: 443 | case OP_FORPREP: 444 | case OP_TFORLOOP: { 445 | print(`\t; to ${sbx + pc + 2}`); 446 | break; 447 | } 448 | case OP_CLOSURE: { 449 | print(`\t; 0x${f.p[bx].id.toString(16)}`); // TODO: %p 450 | break; 451 | } 452 | case OP_SETLIST: { 453 | if (c === 0) print(`\t; ${code[++pc]}`); 454 | else print(`\t; ${c}`); 455 | break; 456 | } 457 | case OP_EXTRAARG: { 458 | print("\t; "); 459 | PrintConstant(f, ax); 460 | break; 461 | } 462 | default: 463 | break; 464 | } 465 | 466 | print("\n"); 467 | } 468 | }; 469 | 470 | const SS = function(n) { 471 | return n === 1 ? "" : "s"; 472 | }; 473 | 474 | const PrintHeader = function(f) { 475 | let s = f.source ? f.source.getstr() : to_luastring("=?"); 476 | if (s[0] === "@".charCodeAt(0) || s[0] === "=".charCodeAt(0)) 477 | s = s.slice(1); 478 | else if (s[0] === LUA_SIGNATURE.charCodeAt(0)) 479 | s = to_luastring("(bstring)"); 480 | else 481 | s = to_luastring("(string)"); 482 | 483 | print(`\n${f.linedefined === 0 ? "main" : "function"} <${to_jsstring(s)}:${f.linedefined},${f.lastlinedefined}> (${f.code.length} instruction${SS(f.code.length)} at 0x${f.id.toString(16)})\n`); 484 | print(`${f.numparams}${f.is_vararg ? "+" : ""} param${SS(f.numparams)}, ${f.maxstacksize} slot${SS(f.maxstacksize)}, ${f.upvalues.length} upvalue${SS(f.upvalues.length)}, `); 485 | print(`${f.locvars.length} local${SS(f.locvars.length)}, ${f.k.length} constant${SS(f.k.length)}, ${f.p.length} function${SS(f.p.length)}\n`); 486 | }; 487 | 488 | const PrintDebug = function(f) { 489 | let n = f.k.length; 490 | print(`constants (${n}) for 0x${f.id.toString(16)}:\n`); 491 | for (let i = 0; i < n; i++) { 492 | print(`\t${i + 1}\t`); 493 | PrintConstant(f, i); 494 | print("\n"); 495 | } 496 | 497 | n = f.locvars.length; 498 | print(`locals (${n}) for 0x${f.id.toString(16)}:\n`); 499 | for (let i = 0; i < n; i++) { 500 | let locvar = f.locvars[i]; 501 | print(`\t${i}\t${to_jsstring(locvar.varname.getstr())}\t${locvar.startpc + 1}\t${locvar.endpc + 1}\n`); 502 | } 503 | 504 | n = f.upvalues.length; 505 | print(`upvalues (${n}) for 0x${f.id.toString(16)}:\n`); 506 | for (let i = 0; i < n; i++) { 507 | print(`\t${i}\t${UPVALNAME(f, i)}\t${f.upvalues[i].instack ? 1 : 0}\t${f.upvalues[i].idx}\n`); 508 | } 509 | }; 510 | 511 | const PrintFunction = function(f, full) { 512 | let n = f.p.length; 513 | PrintHeader(f); 514 | PrintCode(f); 515 | if (full) PrintDebug(f); 516 | for (let i = 0; i < n; i++) 517 | PrintFunction(f.p[i], full); 518 | }; 519 | 520 | main(); 521 | -------------------------------------------------------------------------------- /test/lua-cli.test.js: -------------------------------------------------------------------------------- 1 | const fengari = require("fengari"); 2 | const child_process = require("child_process"); 3 | 4 | const lua_path = require.resolve("../src/lua-cli.js"); 5 | 6 | test('Ignores env var when using -E', () => new Promise((resolve) => { 7 | const child = child_process.fork(lua_path, ["-E"], { 8 | env: { LUA_INIT: 'print("failed")' }, 9 | silent: true 10 | }); 11 | let output = ''; 12 | child.stdout.on('data', (data) => { 13 | output += data; 14 | }); 15 | child.on('close', (code) => { 16 | expect(code).toBe(0); 17 | expect(output).toBe(''); 18 | resolve(); 19 | }); 20 | })); 21 | 22 | test('Has correct -v output', () => new Promise((resolve) => { 23 | const child = child_process.fork(lua_path, ["-E", "-v"], { 24 | silent: true 25 | }); 26 | let output = ''; 27 | child.stdout.on('data', (data) => { 28 | output += data; 29 | }); 30 | child.on('close', (code) => { 31 | expect(code).toBe(0); 32 | expect(output).toBe(fengari.FENGARI_COPYRIGHT + "\n"); 33 | resolve(); 34 | }); 35 | })); 36 | 37 | test('Runs empty script', () => new Promise((resolve) => { 38 | const child = child_process.fork(lua_path, ["-E", "-e", ""], { 39 | silent: true 40 | }); 41 | let output = ''; 42 | child.stdout.on('data', (data) => { 43 | output += data; 44 | }); 45 | child.on('close', (code) => { 46 | expect(code).toBe(0); 47 | expect(output).toBe(''); 48 | resolve(); 49 | }); 50 | })); 51 | 52 | test('Runs LUA_INIT when -E is not present', () => new Promise((resolve) => { 53 | const child = child_process.fork(lua_path, ["-e", ""], { 54 | env: { LUA_INIT: 'print("success")' }, 55 | silent: true 56 | }); 57 | let output = ''; 58 | child.stdout.on('data', (data) => { 59 | output += data; 60 | }); 61 | child.on('close', (code) => { 62 | expect(code).toBe(0); 63 | expect(output).toBe('success\n'); 64 | resolve(); 65 | }); 66 | })); 67 | -------------------------------------------------------------------------------- /test/luac-cli.test.js: -------------------------------------------------------------------------------- 1 | const fengari = require("fengari"); 2 | const child_process = require("child_process"); 3 | 4 | const luac_path = require.resolve("../src/luac-cli.js"); 5 | 6 | 7 | test('Has correct -v output', () => new Promise((resolve) => { 8 | const child = child_process.fork(luac_path, ["-v"], { 9 | silent: true 10 | }); 11 | let output = ''; 12 | child.stdout.on('data', (data) => { 13 | output += data; 14 | }); 15 | child.on('close', (code) => { 16 | expect(code).toBe(0); 17 | expect(output).toBe(fengari.FENGARI_COPYRIGHT + "\n"); 18 | resolve(); 19 | }); 20 | })); 21 | -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- 1 | # THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY. 2 | # yarn lockfile v1 3 | 4 | 5 | "@babel/code-frame@^7.0.0-beta.35": 6 | version "7.0.0-beta.42" 7 | resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.0.0-beta.42.tgz#a9c83233fa7cd06b39dc77adbb908616ff4f1962" 8 | dependencies: 9 | "@babel/highlight" "7.0.0-beta.42" 10 | 11 | "@babel/highlight@7.0.0-beta.42": 12 | version "7.0.0-beta.42" 13 | resolved "https://registry.yarnpkg.com/@babel/highlight/-/highlight-7.0.0-beta.42.tgz#a502a1c0d6f99b2b0e81d468a1b0c0e81e3f3623" 14 | dependencies: 15 | chalk "^2.0.0" 16 | esutils "^2.0.2" 17 | js-tokens "^3.0.0" 18 | 19 | abab@^1.0.4: 20 | version "1.0.4" 21 | resolved "https://registry.yarnpkg.com/abab/-/abab-1.0.4.tgz#5faad9c2c07f60dd76770f71cf025b62a63cfd4e" 22 | 23 | abbrev@1: 24 | version "1.1.1" 25 | resolved "https://registry.yarnpkg.com/abbrev/-/abbrev-1.1.1.tgz#f8f2c887ad10bf67f634f005b6987fed3179aac8" 26 | 27 | acorn-globals@^4.1.0: 28 | version "4.1.0" 29 | resolved "https://registry.yarnpkg.com/acorn-globals/-/acorn-globals-4.1.0.tgz#ab716025dbe17c54d3ef81d32ece2b2d99fe2538" 30 | dependencies: 31 | acorn "^5.0.0" 32 | 33 | acorn-jsx@^3.0.0: 34 | version "3.0.1" 35 | resolved "https://registry.yarnpkg.com/acorn-jsx/-/acorn-jsx-3.0.1.tgz#afdf9488fb1ecefc8348f6fb22f464e32a58b36b" 36 | dependencies: 37 | acorn "^3.0.4" 38 | 39 | acorn@^3.0.4: 40 | version "3.3.0" 41 | resolved "https://registry.yarnpkg.com/acorn/-/acorn-3.3.0.tgz#45e37fb39e8da3f25baee3ff5369e2bb5f22017a" 42 | 43 | acorn@^5.0.0, acorn@^5.3.0, acorn@^5.5.0: 44 | version "5.5.3" 45 | resolved "https://registry.yarnpkg.com/acorn/-/acorn-5.5.3.tgz#f473dd47e0277a08e28e9bec5aeeb04751f0b8c9" 46 | 47 | ajv-keywords@^2.1.0: 48 | version "2.1.1" 49 | resolved "https://registry.yarnpkg.com/ajv-keywords/-/ajv-keywords-2.1.1.tgz#617997fc5f60576894c435f940d819e135b80762" 50 | 51 | ajv@^4.9.1: 52 | version "4.11.8" 53 | resolved "https://registry.yarnpkg.com/ajv/-/ajv-4.11.8.tgz#82ffb02b29e662ae53bdc20af15947706739c536" 54 | dependencies: 55 | co "^4.6.0" 56 | json-stable-stringify "^1.0.1" 57 | 58 | ajv@^5.1.0, ajv@^5.2.3, ajv@^5.3.0: 59 | version "5.5.2" 60 | resolved "https://registry.yarnpkg.com/ajv/-/ajv-5.5.2.tgz#73b5eeca3fab653e3d3f9422b341ad42205dc965" 61 | dependencies: 62 | co "^4.6.0" 63 | fast-deep-equal "^1.0.0" 64 | fast-json-stable-stringify "^2.0.0" 65 | json-schema-traverse "^0.3.0" 66 | 67 | align-text@^0.1.1, align-text@^0.1.3: 68 | version "0.1.4" 69 | resolved "https://registry.yarnpkg.com/align-text/-/align-text-0.1.4.tgz#0cd90a561093f35d0a99256c22b7069433fad117" 70 | dependencies: 71 | kind-of "^3.0.2" 72 | longest "^1.0.1" 73 | repeat-string "^1.5.2" 74 | 75 | amdefine@>=0.0.4: 76 | version "1.0.1" 77 | resolved "https://registry.yarnpkg.com/amdefine/-/amdefine-1.0.1.tgz#4a5282ac164729e93619bcfd3ad151f817ce91f5" 78 | 79 | ansi-escapes@^3.0.0: 80 | version "3.1.0" 81 | resolved "https://registry.yarnpkg.com/ansi-escapes/-/ansi-escapes-3.1.0.tgz#f73207bb81207d75fd6c83f125af26eea378ca30" 82 | 83 | ansi-regex@^2.0.0: 84 | version "2.1.1" 85 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-2.1.1.tgz#c3b33ab5ee360d86e0e628f0468ae7ef27d654df" 86 | 87 | ansi-regex@^3.0.0: 88 | version "3.0.0" 89 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-3.0.0.tgz#ed0317c322064f79466c02966bddb605ab37d998" 90 | 91 | ansi-styles@^2.2.1: 92 | version "2.2.1" 93 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-2.2.1.tgz#b432dd3358b634cf75e1e4664368240533c1ddbe" 94 | 95 | ansi-styles@^3.2.0, ansi-styles@^3.2.1: 96 | version "3.2.1" 97 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-3.2.1.tgz#41fbb20243e50b12be0f04b8dedbf07520ce841d" 98 | dependencies: 99 | color-convert "^1.9.0" 100 | 101 | anymatch@^2.0.0: 102 | version "2.0.0" 103 | resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-2.0.0.tgz#bcb24b4f37934d9aa7ac17b4adaf89e7c76ef2eb" 104 | dependencies: 105 | micromatch "^3.1.4" 106 | normalize-path "^2.1.1" 107 | 108 | append-transform@^0.4.0: 109 | version "0.4.0" 110 | resolved "https://registry.yarnpkg.com/append-transform/-/append-transform-0.4.0.tgz#d76ebf8ca94d276e247a36bad44a4b74ab611991" 111 | dependencies: 112 | default-require-extensions "^1.0.0" 113 | 114 | aproba@^1.0.3: 115 | version "1.2.0" 116 | resolved "https://registry.yarnpkg.com/aproba/-/aproba-1.2.0.tgz#6802e6264efd18c790a1b0d517f0f2627bf2c94a" 117 | 118 | are-we-there-yet@~1.1.2: 119 | version "1.1.4" 120 | resolved "https://registry.yarnpkg.com/are-we-there-yet/-/are-we-there-yet-1.1.4.tgz#bb5dca382bb94f05e15194373d16fd3ba1ca110d" 121 | dependencies: 122 | delegates "^1.0.0" 123 | readable-stream "^2.0.6" 124 | 125 | argparse@^1.0.7: 126 | version "1.0.10" 127 | resolved "https://registry.yarnpkg.com/argparse/-/argparse-1.0.10.tgz#bcd6791ea5ae09725e17e5ad988134cd40b3d911" 128 | dependencies: 129 | sprintf-js "~1.0.2" 130 | 131 | arr-diff@^2.0.0: 132 | version "2.0.0" 133 | resolved "https://registry.yarnpkg.com/arr-diff/-/arr-diff-2.0.0.tgz#8f3b827f955a8bd669697e4a4256ac3ceae356cf" 134 | dependencies: 135 | arr-flatten "^1.0.1" 136 | 137 | arr-diff@^4.0.0: 138 | version "4.0.0" 139 | resolved "https://registry.yarnpkg.com/arr-diff/-/arr-diff-4.0.0.tgz#d6461074febfec71e7e15235761a329a5dc7c520" 140 | 141 | arr-flatten@^1.0.1, arr-flatten@^1.1.0: 142 | version "1.1.0" 143 | resolved "https://registry.yarnpkg.com/arr-flatten/-/arr-flatten-1.1.0.tgz#36048bbff4e7b47e136644316c99669ea5ae91f1" 144 | 145 | arr-union@^3.1.0: 146 | version "3.1.0" 147 | resolved "https://registry.yarnpkg.com/arr-union/-/arr-union-3.1.0.tgz#e39b09aea9def866a8f206e288af63919bae39c4" 148 | 149 | array-equal@^1.0.0: 150 | version "1.0.0" 151 | resolved "https://registry.yarnpkg.com/array-equal/-/array-equal-1.0.0.tgz#8c2a5ef2472fd9ea742b04c77a75093ba2757c93" 152 | 153 | array-union@^1.0.1: 154 | version "1.0.2" 155 | resolved "https://registry.yarnpkg.com/array-union/-/array-union-1.0.2.tgz#9a34410e4f4e3da23dea375be5be70f24778ec39" 156 | dependencies: 157 | array-uniq "^1.0.1" 158 | 159 | array-uniq@^1.0.1: 160 | version "1.0.3" 161 | resolved "https://registry.yarnpkg.com/array-uniq/-/array-uniq-1.0.3.tgz#af6ac877a25cc7f74e058894753858dfdb24fdb6" 162 | 163 | array-unique@^0.2.1: 164 | version "0.2.1" 165 | resolved "https://registry.yarnpkg.com/array-unique/-/array-unique-0.2.1.tgz#a1d97ccafcbc2625cc70fadceb36a50c58b01a53" 166 | 167 | array-unique@^0.3.2: 168 | version "0.3.2" 169 | resolved "https://registry.yarnpkg.com/array-unique/-/array-unique-0.3.2.tgz#a894b75d4bc4f6cd679ef3244a9fd8f46ae2d428" 170 | 171 | arrify@^1.0.0, arrify@^1.0.1: 172 | version "1.0.1" 173 | resolved "https://registry.yarnpkg.com/arrify/-/arrify-1.0.1.tgz#898508da2226f380df904728456849c1501a4b0d" 174 | 175 | asn1@~0.2.3: 176 | version "0.2.3" 177 | resolved "https://registry.yarnpkg.com/asn1/-/asn1-0.2.3.tgz#dac8787713c9966849fc8180777ebe9c1ddf3b86" 178 | 179 | assert-plus@1.0.0, assert-plus@^1.0.0: 180 | version "1.0.0" 181 | resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-1.0.0.tgz#f12e0f3c5d77b0b1cdd9146942e4e96c1e4dd525" 182 | 183 | assert-plus@^0.2.0: 184 | version "0.2.0" 185 | resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-0.2.0.tgz#d74e1b87e7affc0db8aadb7021f3fe48101ab234" 186 | 187 | assign-symbols@^1.0.0: 188 | version "1.0.0" 189 | resolved "https://registry.yarnpkg.com/assign-symbols/-/assign-symbols-1.0.0.tgz#59667f41fadd4f20ccbc2bb96b8d4f7f78ec0367" 190 | 191 | astral-regex@^1.0.0: 192 | version "1.0.0" 193 | resolved "https://registry.yarnpkg.com/astral-regex/-/astral-regex-1.0.0.tgz#6c8c3fb827dd43ee3918f27b82782ab7658a6fd9" 194 | 195 | async-limiter@~1.0.0: 196 | version "1.0.0" 197 | resolved "https://registry.yarnpkg.com/async-limiter/-/async-limiter-1.0.0.tgz#78faed8c3d074ab81f22b4e985d79e8738f720f8" 198 | 199 | async@^1.4.0: 200 | version "1.5.2" 201 | resolved "https://registry.yarnpkg.com/async/-/async-1.5.2.tgz#ec6a61ae56480c0c3cb241c95618e20892f9672a" 202 | 203 | async@^2.1.4: 204 | version "2.6.0" 205 | resolved "https://registry.yarnpkg.com/async/-/async-2.6.0.tgz#61a29abb6fcc026fea77e56d1c6ec53a795951f4" 206 | dependencies: 207 | lodash "^4.14.0" 208 | 209 | asynckit@^0.4.0: 210 | version "0.4.0" 211 | resolved "https://registry.yarnpkg.com/asynckit/-/asynckit-0.4.0.tgz#c79ed97f7f34cb8f2ba1bc9790bcc366474b4b79" 212 | 213 | atob@^2.0.0: 214 | version "2.1.0" 215 | resolved "https://registry.yarnpkg.com/atob/-/atob-2.1.0.tgz#ab2b150e51d7b122b9efc8d7340c06b6c41076bc" 216 | 217 | aws-sign2@~0.6.0: 218 | version "0.6.0" 219 | resolved "https://registry.yarnpkg.com/aws-sign2/-/aws-sign2-0.6.0.tgz#14342dd38dbcc94d0e5b87d763cd63612c0e794f" 220 | 221 | aws-sign2@~0.7.0: 222 | version "0.7.0" 223 | resolved "https://registry.yarnpkg.com/aws-sign2/-/aws-sign2-0.7.0.tgz#b46e890934a9591f2d2f6f86d7e6a9f1b3fe76a8" 224 | 225 | aws4@^1.2.1, aws4@^1.6.0: 226 | version "1.6.0" 227 | resolved "https://registry.yarnpkg.com/aws4/-/aws4-1.6.0.tgz#83ef5ca860b2b32e4a0deedee8c771b9db57471e" 228 | 229 | babel-code-frame@^6.22.0, babel-code-frame@^6.26.0: 230 | version "6.26.0" 231 | resolved "https://registry.yarnpkg.com/babel-code-frame/-/babel-code-frame-6.26.0.tgz#63fd43f7dc1e3bb7ce35947db8fe369a3f58c74b" 232 | dependencies: 233 | chalk "^1.1.3" 234 | esutils "^2.0.2" 235 | js-tokens "^3.0.2" 236 | 237 | babel-core@^6.0.0, babel-core@^6.26.0: 238 | version "6.26.0" 239 | resolved "https://registry.yarnpkg.com/babel-core/-/babel-core-6.26.0.tgz#af32f78b31a6fcef119c87b0fd8d9753f03a0bb8" 240 | dependencies: 241 | babel-code-frame "^6.26.0" 242 | babel-generator "^6.26.0" 243 | babel-helpers "^6.24.1" 244 | babel-messages "^6.23.0" 245 | babel-register "^6.26.0" 246 | babel-runtime "^6.26.0" 247 | babel-template "^6.26.0" 248 | babel-traverse "^6.26.0" 249 | babel-types "^6.26.0" 250 | babylon "^6.18.0" 251 | convert-source-map "^1.5.0" 252 | debug "^2.6.8" 253 | json5 "^0.5.1" 254 | lodash "^4.17.4" 255 | minimatch "^3.0.4" 256 | path-is-absolute "^1.0.1" 257 | private "^0.1.7" 258 | slash "^1.0.0" 259 | source-map "^0.5.6" 260 | 261 | babel-generator@^6.18.0, babel-generator@^6.26.0: 262 | version "6.26.1" 263 | resolved "https://registry.yarnpkg.com/babel-generator/-/babel-generator-6.26.1.tgz#1844408d3b8f0d35a404ea7ac180f087a601bd90" 264 | dependencies: 265 | babel-messages "^6.23.0" 266 | babel-runtime "^6.26.0" 267 | babel-types "^6.26.0" 268 | detect-indent "^4.0.0" 269 | jsesc "^1.3.0" 270 | lodash "^4.17.4" 271 | source-map "^0.5.7" 272 | trim-right "^1.0.1" 273 | 274 | babel-helpers@^6.24.1: 275 | version "6.24.1" 276 | resolved "https://registry.yarnpkg.com/babel-helpers/-/babel-helpers-6.24.1.tgz#3471de9caec388e5c850e597e58a26ddf37602b2" 277 | dependencies: 278 | babel-runtime "^6.22.0" 279 | babel-template "^6.24.1" 280 | 281 | babel-jest@^22.4.3: 282 | version "22.4.3" 283 | resolved "https://registry.yarnpkg.com/babel-jest/-/babel-jest-22.4.3.tgz#4b7a0b6041691bbd422ab49b3b73654a49a6627a" 284 | dependencies: 285 | babel-plugin-istanbul "^4.1.5" 286 | babel-preset-jest "^22.4.3" 287 | 288 | babel-messages@^6.23.0: 289 | version "6.23.0" 290 | resolved "https://registry.yarnpkg.com/babel-messages/-/babel-messages-6.23.0.tgz#f3cdf4703858035b2a2951c6ec5edf6c62f2630e" 291 | dependencies: 292 | babel-runtime "^6.22.0" 293 | 294 | babel-plugin-istanbul@^4.1.5: 295 | version "4.1.5" 296 | resolved "https://registry.yarnpkg.com/babel-plugin-istanbul/-/babel-plugin-istanbul-4.1.5.tgz#6760cdd977f411d3e175bb064f2bc327d99b2b6e" 297 | dependencies: 298 | find-up "^2.1.0" 299 | istanbul-lib-instrument "^1.7.5" 300 | test-exclude "^4.1.1" 301 | 302 | babel-plugin-jest-hoist@^22.4.3: 303 | version "22.4.3" 304 | resolved "https://registry.yarnpkg.com/babel-plugin-jest-hoist/-/babel-plugin-jest-hoist-22.4.3.tgz#7d8bcccadc2667f96a0dcc6afe1891875ee6c14a" 305 | 306 | babel-plugin-syntax-object-rest-spread@^6.13.0: 307 | version "6.13.0" 308 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-object-rest-spread/-/babel-plugin-syntax-object-rest-spread-6.13.0.tgz#fd6536f2bce13836ffa3a5458c4903a597bb3bf5" 309 | 310 | babel-preset-jest@^22.4.3: 311 | version "22.4.3" 312 | resolved "https://registry.yarnpkg.com/babel-preset-jest/-/babel-preset-jest-22.4.3.tgz#e92eef9813b7026ab4ca675799f37419b5a44156" 313 | dependencies: 314 | babel-plugin-jest-hoist "^22.4.3" 315 | babel-plugin-syntax-object-rest-spread "^6.13.0" 316 | 317 | babel-register@^6.26.0: 318 | version "6.26.0" 319 | resolved "https://registry.yarnpkg.com/babel-register/-/babel-register-6.26.0.tgz#6ed021173e2fcb486d7acb45c6009a856f647071" 320 | dependencies: 321 | babel-core "^6.26.0" 322 | babel-runtime "^6.26.0" 323 | core-js "^2.5.0" 324 | home-or-tmp "^2.0.0" 325 | lodash "^4.17.4" 326 | mkdirp "^0.5.1" 327 | source-map-support "^0.4.15" 328 | 329 | babel-runtime@^6.22.0, babel-runtime@^6.26.0: 330 | version "6.26.0" 331 | resolved "https://registry.yarnpkg.com/babel-runtime/-/babel-runtime-6.26.0.tgz#965c7058668e82b55d7bfe04ff2337bc8b5647fe" 332 | dependencies: 333 | core-js "^2.4.0" 334 | regenerator-runtime "^0.11.0" 335 | 336 | babel-template@^6.16.0, babel-template@^6.24.1, babel-template@^6.26.0: 337 | version "6.26.0" 338 | resolved "https://registry.yarnpkg.com/babel-template/-/babel-template-6.26.0.tgz#de03e2d16396b069f46dd9fff8521fb1a0e35e02" 339 | dependencies: 340 | babel-runtime "^6.26.0" 341 | babel-traverse "^6.26.0" 342 | babel-types "^6.26.0" 343 | babylon "^6.18.0" 344 | lodash "^4.17.4" 345 | 346 | babel-traverse@^6.18.0, babel-traverse@^6.26.0: 347 | version "6.26.0" 348 | resolved "https://registry.yarnpkg.com/babel-traverse/-/babel-traverse-6.26.0.tgz#46a9cbd7edcc62c8e5c064e2d2d8d0f4035766ee" 349 | dependencies: 350 | babel-code-frame "^6.26.0" 351 | babel-messages "^6.23.0" 352 | babel-runtime "^6.26.0" 353 | babel-types "^6.26.0" 354 | babylon "^6.18.0" 355 | debug "^2.6.8" 356 | globals "^9.18.0" 357 | invariant "^2.2.2" 358 | lodash "^4.17.4" 359 | 360 | babel-types@^6.18.0, babel-types@^6.26.0: 361 | version "6.26.0" 362 | resolved "https://registry.yarnpkg.com/babel-types/-/babel-types-6.26.0.tgz#a3b073f94ab49eb6fa55cd65227a334380632497" 363 | dependencies: 364 | babel-runtime "^6.26.0" 365 | esutils "^2.0.2" 366 | lodash "^4.17.4" 367 | to-fast-properties "^1.0.3" 368 | 369 | babylon@^6.18.0: 370 | version "6.18.0" 371 | resolved "https://registry.yarnpkg.com/babylon/-/babylon-6.18.0.tgz#af2f3b88fa6f5c1e4c634d1a0f8eac4f55b395e3" 372 | 373 | balanced-match@^1.0.0: 374 | version "1.0.0" 375 | resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.0.tgz#89b4d199ab2bee49de164ea02b89ce462d71b767" 376 | 377 | base@^0.11.1: 378 | version "0.11.2" 379 | resolved "https://registry.yarnpkg.com/base/-/base-0.11.2.tgz#7bde5ced145b6d551a90db87f83c558b4eb48a8f" 380 | dependencies: 381 | cache-base "^1.0.1" 382 | class-utils "^0.3.5" 383 | component-emitter "^1.2.1" 384 | define-property "^1.0.0" 385 | isobject "^3.0.1" 386 | mixin-deep "^1.2.0" 387 | pascalcase "^0.1.1" 388 | 389 | bcrypt-pbkdf@^1.0.0: 390 | version "1.0.1" 391 | resolved "https://registry.yarnpkg.com/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.1.tgz#63bc5dcb61331b92bc05fd528953c33462a06f8d" 392 | dependencies: 393 | tweetnacl "^0.14.3" 394 | 395 | block-stream@*: 396 | version "0.0.9" 397 | resolved "https://registry.yarnpkg.com/block-stream/-/block-stream-0.0.9.tgz#13ebfe778a03205cfe03751481ebb4b3300c126a" 398 | dependencies: 399 | inherits "~2.0.0" 400 | 401 | boom@2.x.x: 402 | version "2.10.1" 403 | resolved "https://registry.yarnpkg.com/boom/-/boom-2.10.1.tgz#39c8918ceff5799f83f9492a848f625add0c766f" 404 | dependencies: 405 | hoek "2.x.x" 406 | 407 | boom@4.x.x: 408 | version "4.3.1" 409 | resolved "https://registry.yarnpkg.com/boom/-/boom-4.3.1.tgz#4f8a3005cb4a7e3889f749030fd25b96e01d2e31" 410 | dependencies: 411 | hoek "4.x.x" 412 | 413 | boom@5.x.x: 414 | version "5.2.0" 415 | resolved "https://registry.yarnpkg.com/boom/-/boom-5.2.0.tgz#5dd9da6ee3a5f302077436290cb717d3f4a54e02" 416 | dependencies: 417 | hoek "4.x.x" 418 | 419 | brace-expansion@^1.1.7: 420 | version "1.1.11" 421 | resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.11.tgz#3c7fcbf529d87226f3d2f52b966ff5271eb441dd" 422 | dependencies: 423 | balanced-match "^1.0.0" 424 | concat-map "0.0.1" 425 | 426 | braces@^1.8.2: 427 | version "1.8.5" 428 | resolved "https://registry.yarnpkg.com/braces/-/braces-1.8.5.tgz#ba77962e12dff969d6b76711e914b737857bf6a7" 429 | dependencies: 430 | expand-range "^1.8.1" 431 | preserve "^0.2.0" 432 | repeat-element "^1.1.2" 433 | 434 | braces@^2.3.1: 435 | version "2.3.1" 436 | resolved "https://registry.yarnpkg.com/braces/-/braces-2.3.1.tgz#7086c913b4e5a08dbe37ac0ee6a2500c4ba691bb" 437 | dependencies: 438 | arr-flatten "^1.1.0" 439 | array-unique "^0.3.2" 440 | define-property "^1.0.0" 441 | extend-shallow "^2.0.1" 442 | fill-range "^4.0.0" 443 | isobject "^3.0.1" 444 | kind-of "^6.0.2" 445 | repeat-element "^1.1.2" 446 | snapdragon "^0.8.1" 447 | snapdragon-node "^2.0.1" 448 | split-string "^3.0.2" 449 | to-regex "^3.0.1" 450 | 451 | browser-process-hrtime@^0.1.2: 452 | version "0.1.2" 453 | resolved "https://registry.yarnpkg.com/browser-process-hrtime/-/browser-process-hrtime-0.1.2.tgz#425d68a58d3447f02a04aa894187fce8af8b7b8e" 454 | 455 | browser-resolve@^1.11.2: 456 | version "1.11.2" 457 | resolved "https://registry.yarnpkg.com/browser-resolve/-/browser-resolve-1.11.2.tgz#8ff09b0a2c421718a1051c260b32e48f442938ce" 458 | dependencies: 459 | resolve "1.1.7" 460 | 461 | bser@^2.0.0: 462 | version "2.0.0" 463 | resolved "https://registry.yarnpkg.com/bser/-/bser-2.0.0.tgz#9ac78d3ed5d915804fd87acb158bc797147a1719" 464 | dependencies: 465 | node-int64 "^0.4.0" 466 | 467 | buffer-from@^1.0.0: 468 | version "1.0.0" 469 | resolved "https://registry.yarnpkg.com/buffer-from/-/buffer-from-1.0.0.tgz#4cb8832d23612589b0406e9e2956c17f06fdf531" 470 | 471 | builtin-modules@^1.0.0: 472 | version "1.1.1" 473 | resolved "https://registry.yarnpkg.com/builtin-modules/-/builtin-modules-1.1.1.tgz#270f076c5a72c02f5b65a47df94c5fe3a278892f" 474 | 475 | cache-base@^1.0.1: 476 | version "1.0.1" 477 | resolved "https://registry.yarnpkg.com/cache-base/-/cache-base-1.0.1.tgz#0a7f46416831c8b662ee36fe4e7c59d76f666ab2" 478 | dependencies: 479 | collection-visit "^1.0.0" 480 | component-emitter "^1.2.1" 481 | get-value "^2.0.6" 482 | has-value "^1.0.0" 483 | isobject "^3.0.1" 484 | set-value "^2.0.0" 485 | to-object-path "^0.3.0" 486 | union-value "^1.0.0" 487 | unset-value "^1.0.0" 488 | 489 | caller-path@^0.1.0: 490 | version "0.1.0" 491 | resolved "https://registry.yarnpkg.com/caller-path/-/caller-path-0.1.0.tgz#94085ef63581ecd3daa92444a8fe94e82577751f" 492 | dependencies: 493 | callsites "^0.2.0" 494 | 495 | callsites@^0.2.0: 496 | version "0.2.0" 497 | resolved "https://registry.yarnpkg.com/callsites/-/callsites-0.2.0.tgz#afab96262910a7f33c19a5775825c69f34e350ca" 498 | 499 | callsites@^2.0.0: 500 | version "2.0.0" 501 | resolved "https://registry.yarnpkg.com/callsites/-/callsites-2.0.0.tgz#06eb84f00eea413da86affefacbffb36093b3c50" 502 | 503 | camelcase@^1.0.2: 504 | version "1.2.1" 505 | resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-1.2.1.tgz#9bb5304d2e0b56698b2c758b08a3eaa9daa58a39" 506 | 507 | camelcase@^4.1.0: 508 | version "4.1.0" 509 | resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-4.1.0.tgz#d545635be1e33c542649c69173e5de6acfae34dd" 510 | 511 | caseless@~0.12.0: 512 | version "0.12.0" 513 | resolved "https://registry.yarnpkg.com/caseless/-/caseless-0.12.0.tgz#1b681c21ff84033c826543090689420d187151dc" 514 | 515 | center-align@^0.1.1: 516 | version "0.1.3" 517 | resolved "https://registry.yarnpkg.com/center-align/-/center-align-0.1.3.tgz#aa0d32629b6ee972200411cbd4461c907bc2b7ad" 518 | dependencies: 519 | align-text "^0.1.3" 520 | lazy-cache "^1.0.3" 521 | 522 | chalk@^1.1.3: 523 | version "1.1.3" 524 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-1.1.3.tgz#a8115c55e4a702fe4d150abd3872822a7e09fc98" 525 | dependencies: 526 | ansi-styles "^2.2.1" 527 | escape-string-regexp "^1.0.2" 528 | has-ansi "^2.0.0" 529 | strip-ansi "^3.0.0" 530 | supports-color "^2.0.0" 531 | 532 | chalk@^2.0.0, chalk@^2.0.1, chalk@^2.1.0: 533 | version "2.3.2" 534 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-2.3.2.tgz#250dc96b07491bfd601e648d66ddf5f60c7a5c65" 535 | dependencies: 536 | ansi-styles "^3.2.1" 537 | escape-string-regexp "^1.0.5" 538 | supports-color "^5.3.0" 539 | 540 | chardet@^0.4.0: 541 | version "0.4.2" 542 | resolved "https://registry.yarnpkg.com/chardet/-/chardet-0.4.2.tgz#b5473b33dc97c424e5d98dc87d55d4d8a29c8bf2" 543 | 544 | ci-info@^1.0.0: 545 | version "1.1.3" 546 | resolved "https://registry.yarnpkg.com/ci-info/-/ci-info-1.1.3.tgz#710193264bb05c77b8c90d02f5aaf22216a667b2" 547 | 548 | circular-json@^0.3.1: 549 | version "0.3.3" 550 | resolved "https://registry.yarnpkg.com/circular-json/-/circular-json-0.3.3.tgz#815c99ea84f6809529d2f45791bdf82711352d66" 551 | 552 | class-utils@^0.3.5: 553 | version "0.3.6" 554 | resolved "https://registry.yarnpkg.com/class-utils/-/class-utils-0.3.6.tgz#f93369ae8b9a7ce02fd41faad0ca83033190c463" 555 | dependencies: 556 | arr-union "^3.1.0" 557 | define-property "^0.2.5" 558 | isobject "^3.0.0" 559 | static-extend "^0.1.1" 560 | 561 | cli-cursor@^2.1.0: 562 | version "2.1.0" 563 | resolved "https://registry.yarnpkg.com/cli-cursor/-/cli-cursor-2.1.0.tgz#b35dac376479facc3e94747d41d0d0f5238ffcb5" 564 | dependencies: 565 | restore-cursor "^2.0.0" 566 | 567 | cli-width@^2.0.0: 568 | version "2.2.0" 569 | resolved "https://registry.yarnpkg.com/cli-width/-/cli-width-2.2.0.tgz#ff19ede8a9a5e579324147b0c11f0fbcbabed639" 570 | 571 | cliui@^2.1.0: 572 | version "2.1.0" 573 | resolved "https://registry.yarnpkg.com/cliui/-/cliui-2.1.0.tgz#4b475760ff80264c762c3a1719032e91c7fea0d1" 574 | dependencies: 575 | center-align "^0.1.1" 576 | right-align "^0.1.1" 577 | wordwrap "0.0.2" 578 | 579 | cliui@^4.0.0: 580 | version "4.0.0" 581 | resolved "https://registry.yarnpkg.com/cliui/-/cliui-4.0.0.tgz#743d4650e05f36d1ed2575b59638d87322bfbbcc" 582 | dependencies: 583 | string-width "^2.1.1" 584 | strip-ansi "^4.0.0" 585 | wrap-ansi "^2.0.0" 586 | 587 | co@^4.6.0: 588 | version "4.6.0" 589 | resolved "https://registry.yarnpkg.com/co/-/co-4.6.0.tgz#6ea6bdf3d853ae54ccb8e47bfa0bf3f9031fb184" 590 | 591 | code-point-at@^1.0.0: 592 | version "1.1.0" 593 | resolved "https://registry.yarnpkg.com/code-point-at/-/code-point-at-1.1.0.tgz#0d070b4d043a5bea33a2f1a40e2edb3d9a4ccf77" 594 | 595 | collection-visit@^1.0.0: 596 | version "1.0.0" 597 | resolved "https://registry.yarnpkg.com/collection-visit/-/collection-visit-1.0.0.tgz#4bc0373c164bc3291b4d368c829cf1a80a59dca0" 598 | dependencies: 599 | map-visit "^1.0.0" 600 | object-visit "^1.0.0" 601 | 602 | color-convert@^1.9.0: 603 | version "1.9.1" 604 | resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-1.9.1.tgz#c1261107aeb2f294ebffec9ed9ecad529a6097ed" 605 | dependencies: 606 | color-name "^1.1.1" 607 | 608 | color-name@^1.1.1: 609 | version "1.1.3" 610 | resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.3.tgz#a7d0558bd89c42f795dd42328f740831ca53bc25" 611 | 612 | combined-stream@1.0.6, combined-stream@^1.0.5, combined-stream@~1.0.5: 613 | version "1.0.6" 614 | resolved "https://registry.yarnpkg.com/combined-stream/-/combined-stream-1.0.6.tgz#723e7df6e801ac5613113a7e445a9b69cb632818" 615 | dependencies: 616 | delayed-stream "~1.0.0" 617 | 618 | compare-versions@^3.1.0: 619 | version "3.1.0" 620 | resolved "https://registry.yarnpkg.com/compare-versions/-/compare-versions-3.1.0.tgz#43310256a5c555aaed4193c04d8f154cf9c6efd5" 621 | 622 | component-emitter@^1.2.1: 623 | version "1.2.1" 624 | resolved "https://registry.yarnpkg.com/component-emitter/-/component-emitter-1.2.1.tgz#137918d6d78283f7df7a6b7c5a63e140e69425e6" 625 | 626 | concat-map@0.0.1: 627 | version "0.0.1" 628 | resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b" 629 | 630 | concat-stream@^1.6.0: 631 | version "1.6.2" 632 | resolved "https://registry.yarnpkg.com/concat-stream/-/concat-stream-1.6.2.tgz#904bdf194cd3122fc675c77fc4ac3d4ff0fd1a34" 633 | dependencies: 634 | buffer-from "^1.0.0" 635 | inherits "^2.0.3" 636 | readable-stream "^2.2.2" 637 | typedarray "^0.0.6" 638 | 639 | console-control-strings@^1.0.0, console-control-strings@~1.1.0: 640 | version "1.1.0" 641 | resolved "https://registry.yarnpkg.com/console-control-strings/-/console-control-strings-1.1.0.tgz#3d7cf4464db6446ea644bf4b39507f9851008e8e" 642 | 643 | content-type-parser@^1.0.2: 644 | version "1.0.2" 645 | resolved "https://registry.yarnpkg.com/content-type-parser/-/content-type-parser-1.0.2.tgz#caabe80623e63638b2502fd4c7f12ff4ce2352e7" 646 | 647 | convert-source-map@^1.4.0, convert-source-map@^1.5.0: 648 | version "1.5.1" 649 | resolved "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-1.5.1.tgz#b8278097b9bc229365de5c62cf5fcaed8b5599e5" 650 | 651 | copy-descriptor@^0.1.0: 652 | version "0.1.1" 653 | resolved "https://registry.yarnpkg.com/copy-descriptor/-/copy-descriptor-0.1.1.tgz#676f6eb3c39997c2ee1ac3a924fd6124748f578d" 654 | 655 | core-js@^2.4.0, core-js@^2.5.0: 656 | version "2.5.4" 657 | resolved "https://registry.yarnpkg.com/core-js/-/core-js-2.5.4.tgz#f2c8bf181f2a80b92f360121429ce63a2f0aeae0" 658 | 659 | core-util-is@1.0.2, core-util-is@~1.0.0: 660 | version "1.0.2" 661 | resolved "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.2.tgz#b5fd54220aa2bc5ab57aab7140c940754503c1a7" 662 | 663 | cross-spawn@^5.0.1, cross-spawn@^5.1.0: 664 | version "5.1.0" 665 | resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-5.1.0.tgz#e8bd0efee58fcff6f8f94510a0a554bbfa235449" 666 | dependencies: 667 | lru-cache "^4.0.1" 668 | shebang-command "^1.2.0" 669 | which "^1.2.9" 670 | 671 | cryptiles@2.x.x: 672 | version "2.0.5" 673 | resolved "https://registry.yarnpkg.com/cryptiles/-/cryptiles-2.0.5.tgz#3bdfecdc608147c1c67202fa291e7dca59eaa3b8" 674 | dependencies: 675 | boom "2.x.x" 676 | 677 | cryptiles@3.x.x: 678 | version "3.1.2" 679 | resolved "https://registry.yarnpkg.com/cryptiles/-/cryptiles-3.1.2.tgz#a89fbb220f5ce25ec56e8c4aa8a4fd7b5b0d29fe" 680 | dependencies: 681 | boom "5.x.x" 682 | 683 | cssom@0.3.x, "cssom@>= 0.3.2 < 0.4.0": 684 | version "0.3.2" 685 | resolved "https://registry.yarnpkg.com/cssom/-/cssom-0.3.2.tgz#b8036170c79f07a90ff2f16e22284027a243848b" 686 | 687 | "cssstyle@>= 0.2.37 < 0.3.0": 688 | version "0.2.37" 689 | resolved "https://registry.yarnpkg.com/cssstyle/-/cssstyle-0.2.37.tgz#541097234cb2513c83ceed3acddc27ff27987d54" 690 | dependencies: 691 | cssom "0.3.x" 692 | 693 | dashdash@^1.12.0: 694 | version "1.14.1" 695 | resolved "https://registry.yarnpkg.com/dashdash/-/dashdash-1.14.1.tgz#853cfa0f7cbe2fed5de20326b8dd581035f6e2f0" 696 | dependencies: 697 | assert-plus "^1.0.0" 698 | 699 | debug@^2.2.0, debug@^2.3.3, debug@^2.6.8: 700 | version "2.6.9" 701 | resolved "https://registry.yarnpkg.com/debug/-/debug-2.6.9.tgz#5d128515df134ff327e90a4c93f4e077a536341f" 702 | dependencies: 703 | ms "2.0.0" 704 | 705 | debug@^3.1.0: 706 | version "3.1.0" 707 | resolved "https://registry.yarnpkg.com/debug/-/debug-3.1.0.tgz#5bb5a0672628b64149566ba16819e61518c67261" 708 | dependencies: 709 | ms "2.0.0" 710 | 711 | decamelize@^1.0.0, decamelize@^1.1.1: 712 | version "1.2.0" 713 | resolved "https://registry.yarnpkg.com/decamelize/-/decamelize-1.2.0.tgz#f6534d15148269b20352e7bee26f501f9a191290" 714 | 715 | decode-uri-component@^0.2.0: 716 | version "0.2.0" 717 | resolved "https://registry.yarnpkg.com/decode-uri-component/-/decode-uri-component-0.2.0.tgz#eb3913333458775cb84cd1a1fae062106bb87545" 718 | 719 | deep-extend@~0.4.0: 720 | version "0.4.2" 721 | resolved "https://registry.yarnpkg.com/deep-extend/-/deep-extend-0.4.2.tgz#48b699c27e334bf89f10892be432f6e4c7d34a7f" 722 | 723 | deep-is@~0.1.3: 724 | version "0.1.3" 725 | resolved "https://registry.yarnpkg.com/deep-is/-/deep-is-0.1.3.tgz#b369d6fb5dbc13eecf524f91b070feedc357cf34" 726 | 727 | default-require-extensions@^1.0.0: 728 | version "1.0.0" 729 | resolved "https://registry.yarnpkg.com/default-require-extensions/-/default-require-extensions-1.0.0.tgz#f37ea15d3e13ffd9b437d33e1a75b5fb97874cb8" 730 | dependencies: 731 | strip-bom "^2.0.0" 732 | 733 | define-properties@^1.1.2: 734 | version "1.1.2" 735 | resolved "https://registry.yarnpkg.com/define-properties/-/define-properties-1.1.2.tgz#83a73f2fea569898fb737193c8f873caf6d45c94" 736 | dependencies: 737 | foreach "^2.0.5" 738 | object-keys "^1.0.8" 739 | 740 | define-property@^0.2.5: 741 | version "0.2.5" 742 | resolved "https://registry.yarnpkg.com/define-property/-/define-property-0.2.5.tgz#c35b1ef918ec3c990f9a5bc57be04aacec5c8116" 743 | dependencies: 744 | is-descriptor "^0.1.0" 745 | 746 | define-property@^1.0.0: 747 | version "1.0.0" 748 | resolved "https://registry.yarnpkg.com/define-property/-/define-property-1.0.0.tgz#769ebaaf3f4a63aad3af9e8d304c9bbe79bfb0e6" 749 | dependencies: 750 | is-descriptor "^1.0.0" 751 | 752 | define-property@^2.0.2: 753 | version "2.0.2" 754 | resolved "https://registry.yarnpkg.com/define-property/-/define-property-2.0.2.tgz#d459689e8d654ba77e02a817f8710d702cb16e9d" 755 | dependencies: 756 | is-descriptor "^1.0.2" 757 | isobject "^3.0.1" 758 | 759 | del@^2.0.2: 760 | version "2.2.2" 761 | resolved "https://registry.yarnpkg.com/del/-/del-2.2.2.tgz#c12c981d067846c84bcaf862cff930d907ffd1a8" 762 | dependencies: 763 | globby "^5.0.0" 764 | is-path-cwd "^1.0.0" 765 | is-path-in-cwd "^1.0.0" 766 | object-assign "^4.0.1" 767 | pify "^2.0.0" 768 | pinkie-promise "^2.0.0" 769 | rimraf "^2.2.8" 770 | 771 | delayed-stream@~1.0.0: 772 | version "1.0.0" 773 | resolved "https://registry.yarnpkg.com/delayed-stream/-/delayed-stream-1.0.0.tgz#df3ae199acadfb7d440aaae0b29e2272b24ec619" 774 | 775 | delegates@^1.0.0: 776 | version "1.0.0" 777 | resolved "https://registry.yarnpkg.com/delegates/-/delegates-1.0.0.tgz#84c6e159b81904fdca59a0ef44cd870d31250f9a" 778 | 779 | detect-indent@^4.0.0: 780 | version "4.0.0" 781 | resolved "https://registry.yarnpkg.com/detect-indent/-/detect-indent-4.0.0.tgz#f76d064352cdf43a1cb6ce619c4ee3a9475de208" 782 | dependencies: 783 | repeating "^2.0.0" 784 | 785 | detect-libc@^1.0.2: 786 | version "1.0.3" 787 | resolved "https://registry.yarnpkg.com/detect-libc/-/detect-libc-1.0.3.tgz#fa137c4bd698edf55cd5cd02ac559f91a4c4ba9b" 788 | 789 | detect-newline@^2.1.0: 790 | version "2.1.0" 791 | resolved "https://registry.yarnpkg.com/detect-newline/-/detect-newline-2.1.0.tgz#f41f1c10be4b00e87b5f13da680759f2c5bfd3e2" 792 | 793 | diff@^3.2.0: 794 | version "3.5.0" 795 | resolved "https://registry.yarnpkg.com/diff/-/diff-3.5.0.tgz#800c0dd1e0a8bfbc95835c202ad220fe317e5a12" 796 | 797 | doctrine@^2.1.0: 798 | version "2.1.0" 799 | resolved "https://registry.yarnpkg.com/doctrine/-/doctrine-2.1.0.tgz#5cd01fc101621b42c4cd7f5d1a66243716d3f39d" 800 | dependencies: 801 | esutils "^2.0.2" 802 | 803 | domexception@^1.0.0: 804 | version "1.0.1" 805 | resolved "https://registry.yarnpkg.com/domexception/-/domexception-1.0.1.tgz#937442644ca6a31261ef36e3ec677fe805582c90" 806 | dependencies: 807 | webidl-conversions "^4.0.2" 808 | 809 | ecc-jsbn@~0.1.1: 810 | version "0.1.1" 811 | resolved "https://registry.yarnpkg.com/ecc-jsbn/-/ecc-jsbn-0.1.1.tgz#0fc73a9ed5f0d53c38193398523ef7e543777505" 812 | dependencies: 813 | jsbn "~0.1.0" 814 | 815 | error-ex@^1.2.0: 816 | version "1.3.1" 817 | resolved "https://registry.yarnpkg.com/error-ex/-/error-ex-1.3.1.tgz#f855a86ce61adc4e8621c3cda21e7a7612c3a8dc" 818 | dependencies: 819 | is-arrayish "^0.2.1" 820 | 821 | es-abstract@^1.5.1: 822 | version "1.11.0" 823 | resolved "https://registry.yarnpkg.com/es-abstract/-/es-abstract-1.11.0.tgz#cce87d518f0496893b1a30cd8461835535480681" 824 | dependencies: 825 | es-to-primitive "^1.1.1" 826 | function-bind "^1.1.1" 827 | has "^1.0.1" 828 | is-callable "^1.1.3" 829 | is-regex "^1.0.4" 830 | 831 | es-to-primitive@^1.1.1: 832 | version "1.1.1" 833 | resolved "https://registry.yarnpkg.com/es-to-primitive/-/es-to-primitive-1.1.1.tgz#45355248a88979034b6792e19bb81f2b7975dd0d" 834 | dependencies: 835 | is-callable "^1.1.1" 836 | is-date-object "^1.0.1" 837 | is-symbol "^1.0.1" 838 | 839 | escape-string-regexp@^1.0.2, escape-string-regexp@^1.0.5: 840 | version "1.0.5" 841 | resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4" 842 | 843 | escodegen@^1.9.0: 844 | version "1.9.1" 845 | resolved "https://registry.yarnpkg.com/escodegen/-/escodegen-1.9.1.tgz#dbae17ef96c8e4bedb1356f4504fa4cc2f7cb7e2" 846 | dependencies: 847 | esprima "^3.1.3" 848 | estraverse "^4.2.0" 849 | esutils "^2.0.2" 850 | optionator "^0.8.1" 851 | optionalDependencies: 852 | source-map "~0.6.1" 853 | 854 | eslint-scope@^3.7.1: 855 | version "3.7.1" 856 | resolved "https://registry.yarnpkg.com/eslint-scope/-/eslint-scope-3.7.1.tgz#3d63c3edfda02e06e01a452ad88caacc7cdcb6e8" 857 | dependencies: 858 | esrecurse "^4.1.0" 859 | estraverse "^4.1.1" 860 | 861 | eslint-visitor-keys@^1.0.0: 862 | version "1.0.0" 863 | resolved "https://registry.yarnpkg.com/eslint-visitor-keys/-/eslint-visitor-keys-1.0.0.tgz#3f3180fb2e291017716acb4c9d6d5b5c34a6a81d" 864 | 865 | eslint@^4.17.0: 866 | version "4.19.1" 867 | resolved "https://registry.yarnpkg.com/eslint/-/eslint-4.19.1.tgz#32d1d653e1d90408854bfb296f076ec7e186a300" 868 | dependencies: 869 | ajv "^5.3.0" 870 | babel-code-frame "^6.22.0" 871 | chalk "^2.1.0" 872 | concat-stream "^1.6.0" 873 | cross-spawn "^5.1.0" 874 | debug "^3.1.0" 875 | doctrine "^2.1.0" 876 | eslint-scope "^3.7.1" 877 | eslint-visitor-keys "^1.0.0" 878 | espree "^3.5.4" 879 | esquery "^1.0.0" 880 | esutils "^2.0.2" 881 | file-entry-cache "^2.0.0" 882 | functional-red-black-tree "^1.0.1" 883 | glob "^7.1.2" 884 | globals "^11.0.1" 885 | ignore "^3.3.3" 886 | imurmurhash "^0.1.4" 887 | inquirer "^3.0.6" 888 | is-resolvable "^1.0.0" 889 | js-yaml "^3.9.1" 890 | json-stable-stringify-without-jsonify "^1.0.1" 891 | levn "^0.3.0" 892 | lodash "^4.17.4" 893 | minimatch "^3.0.2" 894 | mkdirp "^0.5.1" 895 | natural-compare "^1.4.0" 896 | optionator "^0.8.2" 897 | path-is-inside "^1.0.2" 898 | pluralize "^7.0.0" 899 | progress "^2.0.0" 900 | regexpp "^1.0.1" 901 | require-uncached "^1.0.3" 902 | semver "^5.3.0" 903 | strip-ansi "^4.0.0" 904 | strip-json-comments "~2.0.1" 905 | table "4.0.2" 906 | text-table "~0.2.0" 907 | 908 | espree@^3.5.4: 909 | version "3.5.4" 910 | resolved "https://registry.yarnpkg.com/espree/-/espree-3.5.4.tgz#b0f447187c8a8bed944b815a660bddf5deb5d1a7" 911 | dependencies: 912 | acorn "^5.5.0" 913 | acorn-jsx "^3.0.0" 914 | 915 | esprima@^3.1.3: 916 | version "3.1.3" 917 | resolved "https://registry.yarnpkg.com/esprima/-/esprima-3.1.3.tgz#fdca51cee6133895e3c88d535ce49dbff62a4633" 918 | 919 | esprima@^4.0.0: 920 | version "4.0.0" 921 | resolved "https://registry.yarnpkg.com/esprima/-/esprima-4.0.0.tgz#4499eddcd1110e0b218bacf2fa7f7f59f55ca804" 922 | 923 | esquery@^1.0.0: 924 | version "1.0.0" 925 | resolved "https://registry.yarnpkg.com/esquery/-/esquery-1.0.0.tgz#cfba8b57d7fba93f17298a8a006a04cda13d80fa" 926 | dependencies: 927 | estraverse "^4.0.0" 928 | 929 | esrecurse@^4.1.0: 930 | version "4.2.1" 931 | resolved "https://registry.yarnpkg.com/esrecurse/-/esrecurse-4.2.1.tgz#007a3b9fdbc2b3bb87e4879ea19c92fdbd3942cf" 932 | dependencies: 933 | estraverse "^4.1.0" 934 | 935 | estraverse@^4.0.0, estraverse@^4.1.0, estraverse@^4.1.1, estraverse@^4.2.0: 936 | version "4.2.0" 937 | resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-4.2.0.tgz#0dee3fed31fcd469618ce7342099fc1afa0bdb13" 938 | 939 | esutils@^2.0.2: 940 | version "2.0.2" 941 | resolved "https://registry.yarnpkg.com/esutils/-/esutils-2.0.2.tgz#0abf4f1caa5bcb1f7a9d8acc6dea4faaa04bac9b" 942 | 943 | exec-sh@^0.2.0: 944 | version "0.2.1" 945 | resolved "https://registry.yarnpkg.com/exec-sh/-/exec-sh-0.2.1.tgz#163b98a6e89e6b65b47c2a28d215bc1f63989c38" 946 | dependencies: 947 | merge "^1.1.3" 948 | 949 | execa@^0.7.0: 950 | version "0.7.0" 951 | resolved "https://registry.yarnpkg.com/execa/-/execa-0.7.0.tgz#944becd34cc41ee32a63a9faf27ad5a65fc59777" 952 | dependencies: 953 | cross-spawn "^5.0.1" 954 | get-stream "^3.0.0" 955 | is-stream "^1.1.0" 956 | npm-run-path "^2.0.0" 957 | p-finally "^1.0.0" 958 | signal-exit "^3.0.0" 959 | strip-eof "^1.0.0" 960 | 961 | exit@^0.1.2: 962 | version "0.1.2" 963 | resolved "https://registry.yarnpkg.com/exit/-/exit-0.1.2.tgz#0632638f8d877cc82107d30a0fff1a17cba1cd0c" 964 | 965 | expand-brackets@^0.1.4: 966 | version "0.1.5" 967 | resolved "https://registry.yarnpkg.com/expand-brackets/-/expand-brackets-0.1.5.tgz#df07284e342a807cd733ac5af72411e581d1177b" 968 | dependencies: 969 | is-posix-bracket "^0.1.0" 970 | 971 | expand-brackets@^2.1.4: 972 | version "2.1.4" 973 | resolved "https://registry.yarnpkg.com/expand-brackets/-/expand-brackets-2.1.4.tgz#b77735e315ce30f6b6eff0f83b04151a22449622" 974 | dependencies: 975 | debug "^2.3.3" 976 | define-property "^0.2.5" 977 | extend-shallow "^2.0.1" 978 | posix-character-classes "^0.1.0" 979 | regex-not "^1.0.0" 980 | snapdragon "^0.8.1" 981 | to-regex "^3.0.1" 982 | 983 | expand-range@^1.8.1: 984 | version "1.8.2" 985 | resolved "https://registry.yarnpkg.com/expand-range/-/expand-range-1.8.2.tgz#a299effd335fe2721ebae8e257ec79644fc85337" 986 | dependencies: 987 | fill-range "^2.1.0" 988 | 989 | expect@^22.4.3: 990 | version "22.4.3" 991 | resolved "https://registry.yarnpkg.com/expect/-/expect-22.4.3.tgz#d5a29d0a0e1fb2153557caef2674d4547e914674" 992 | dependencies: 993 | ansi-styles "^3.2.0" 994 | jest-diff "^22.4.3" 995 | jest-get-type "^22.4.3" 996 | jest-matcher-utils "^22.4.3" 997 | jest-message-util "^22.4.3" 998 | jest-regex-util "^22.4.3" 999 | 1000 | extend-shallow@^2.0.1: 1001 | version "2.0.1" 1002 | resolved "https://registry.yarnpkg.com/extend-shallow/-/extend-shallow-2.0.1.tgz#51af7d614ad9a9f610ea1bafbb989d6b1c56890f" 1003 | dependencies: 1004 | is-extendable "^0.1.0" 1005 | 1006 | extend-shallow@^3.0.0, extend-shallow@^3.0.2: 1007 | version "3.0.2" 1008 | resolved "https://registry.yarnpkg.com/extend-shallow/-/extend-shallow-3.0.2.tgz#26a71aaf073b39fb2127172746131c2704028db8" 1009 | dependencies: 1010 | assign-symbols "^1.0.0" 1011 | is-extendable "^1.0.1" 1012 | 1013 | extend@~3.0.0, extend@~3.0.1: 1014 | version "3.0.1" 1015 | resolved "https://registry.yarnpkg.com/extend/-/extend-3.0.1.tgz#a755ea7bc1adfcc5a31ce7e762dbaadc5e636444" 1016 | 1017 | external-editor@^2.0.4: 1018 | version "2.1.0" 1019 | resolved "https://registry.yarnpkg.com/external-editor/-/external-editor-2.1.0.tgz#3d026a21b7f95b5726387d4200ac160d372c3b48" 1020 | dependencies: 1021 | chardet "^0.4.0" 1022 | iconv-lite "^0.4.17" 1023 | tmp "^0.0.33" 1024 | 1025 | extglob@^0.3.1: 1026 | version "0.3.2" 1027 | resolved "https://registry.yarnpkg.com/extglob/-/extglob-0.3.2.tgz#2e18ff3d2f49ab2765cec9023f011daa8d8349a1" 1028 | dependencies: 1029 | is-extglob "^1.0.0" 1030 | 1031 | extglob@^2.0.4: 1032 | version "2.0.4" 1033 | resolved "https://registry.yarnpkg.com/extglob/-/extglob-2.0.4.tgz#ad00fe4dc612a9232e8718711dc5cb5ab0285543" 1034 | dependencies: 1035 | array-unique "^0.3.2" 1036 | define-property "^1.0.0" 1037 | expand-brackets "^2.1.4" 1038 | extend-shallow "^2.0.1" 1039 | fragment-cache "^0.2.1" 1040 | regex-not "^1.0.0" 1041 | snapdragon "^0.8.1" 1042 | to-regex "^3.0.1" 1043 | 1044 | extsprintf@1.3.0: 1045 | version "1.3.0" 1046 | resolved "https://registry.yarnpkg.com/extsprintf/-/extsprintf-1.3.0.tgz#96918440e3041a7a414f8c52e3c574eb3c3e1e05" 1047 | 1048 | extsprintf@^1.2.0: 1049 | version "1.4.0" 1050 | resolved "https://registry.yarnpkg.com/extsprintf/-/extsprintf-1.4.0.tgz#e2689f8f356fad62cca65a3a91c5df5f9551692f" 1051 | 1052 | fast-deep-equal@^1.0.0: 1053 | version "1.1.0" 1054 | resolved "https://registry.yarnpkg.com/fast-deep-equal/-/fast-deep-equal-1.1.0.tgz#c053477817c86b51daa853c81e059b733d023614" 1055 | 1056 | fast-json-stable-stringify@^2.0.0: 1057 | version "2.0.0" 1058 | resolved "https://registry.yarnpkg.com/fast-json-stable-stringify/-/fast-json-stable-stringify-2.0.0.tgz#d5142c0caee6b1189f87d3a76111064f86c8bbf2" 1059 | 1060 | fast-levenshtein@~2.0.4: 1061 | version "2.0.6" 1062 | resolved "https://registry.yarnpkg.com/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz#3d8a5c66883a16a30ca8643e851f19baa7797917" 1063 | 1064 | fb-watchman@^2.0.0: 1065 | version "2.0.0" 1066 | resolved "https://registry.yarnpkg.com/fb-watchman/-/fb-watchman-2.0.0.tgz#54e9abf7dfa2f26cd9b1636c588c1afc05de5d58" 1067 | dependencies: 1068 | bser "^2.0.0" 1069 | 1070 | fengari@^0.1.0: 1071 | version "0.1.0" 1072 | resolved "https://registry.yarnpkg.com/fengari/-/fengari-0.1.0.tgz#fbc7566a43e3c6e2b37d6c4246f87de9b0b31866" 1073 | dependencies: 1074 | readline-sync "^1.4.9" 1075 | sprintf-js "^1.1.1" 1076 | strftime "^0.10.0" 1077 | tmp "^0.0.33" 1078 | 1079 | figures@^2.0.0: 1080 | version "2.0.0" 1081 | resolved "https://registry.yarnpkg.com/figures/-/figures-2.0.0.tgz#3ab1a2d2a62c8bfb431a0c94cb797a2fce27c962" 1082 | dependencies: 1083 | escape-string-regexp "^1.0.5" 1084 | 1085 | file-entry-cache@^2.0.0: 1086 | version "2.0.0" 1087 | resolved "https://registry.yarnpkg.com/file-entry-cache/-/file-entry-cache-2.0.0.tgz#c392990c3e684783d838b8c84a45d8a048458361" 1088 | dependencies: 1089 | flat-cache "^1.2.1" 1090 | object-assign "^4.0.1" 1091 | 1092 | filename-regex@^2.0.0: 1093 | version "2.0.1" 1094 | resolved "https://registry.yarnpkg.com/filename-regex/-/filename-regex-2.0.1.tgz#c1c4b9bee3e09725ddb106b75c1e301fe2f18b26" 1095 | 1096 | fileset@^2.0.2: 1097 | version "2.0.3" 1098 | resolved "https://registry.yarnpkg.com/fileset/-/fileset-2.0.3.tgz#8e7548a96d3cc2327ee5e674168723a333bba2a0" 1099 | dependencies: 1100 | glob "^7.0.3" 1101 | minimatch "^3.0.3" 1102 | 1103 | fill-range@^2.1.0: 1104 | version "2.2.3" 1105 | resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-2.2.3.tgz#50b77dfd7e469bc7492470963699fe7a8485a723" 1106 | dependencies: 1107 | is-number "^2.1.0" 1108 | isobject "^2.0.0" 1109 | randomatic "^1.1.3" 1110 | repeat-element "^1.1.2" 1111 | repeat-string "^1.5.2" 1112 | 1113 | fill-range@^4.0.0: 1114 | version "4.0.0" 1115 | resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-4.0.0.tgz#d544811d428f98eb06a63dc402d2403c328c38f7" 1116 | dependencies: 1117 | extend-shallow "^2.0.1" 1118 | is-number "^3.0.0" 1119 | repeat-string "^1.6.1" 1120 | to-regex-range "^2.1.0" 1121 | 1122 | find-up@^1.0.0: 1123 | version "1.1.2" 1124 | resolved "https://registry.yarnpkg.com/find-up/-/find-up-1.1.2.tgz#6b2e9822b1a2ce0a60ab64d610eccad53cb24d0f" 1125 | dependencies: 1126 | path-exists "^2.0.0" 1127 | pinkie-promise "^2.0.0" 1128 | 1129 | find-up@^2.1.0: 1130 | version "2.1.0" 1131 | resolved "https://registry.yarnpkg.com/find-up/-/find-up-2.1.0.tgz#45d1b7e506c717ddd482775a2b77920a3c0c57a7" 1132 | dependencies: 1133 | locate-path "^2.0.0" 1134 | 1135 | flat-cache@^1.2.1: 1136 | version "1.3.0" 1137 | resolved "https://registry.yarnpkg.com/flat-cache/-/flat-cache-1.3.0.tgz#d3030b32b38154f4e3b7e9c709f490f7ef97c481" 1138 | dependencies: 1139 | circular-json "^0.3.1" 1140 | del "^2.0.2" 1141 | graceful-fs "^4.1.2" 1142 | write "^0.2.1" 1143 | 1144 | for-in@^1.0.1, for-in@^1.0.2: 1145 | version "1.0.2" 1146 | resolved "https://registry.yarnpkg.com/for-in/-/for-in-1.0.2.tgz#81068d295a8142ec0ac726c6e2200c30fb6d5e80" 1147 | 1148 | for-own@^0.1.4: 1149 | version "0.1.5" 1150 | resolved "https://registry.yarnpkg.com/for-own/-/for-own-0.1.5.tgz#5265c681a4f294dabbf17c9509b6763aa84510ce" 1151 | dependencies: 1152 | for-in "^1.0.1" 1153 | 1154 | foreach@^2.0.5: 1155 | version "2.0.5" 1156 | resolved "https://registry.yarnpkg.com/foreach/-/foreach-2.0.5.tgz#0bee005018aeb260d0a3af3ae658dd0136ec1b99" 1157 | 1158 | forever-agent@~0.6.1: 1159 | version "0.6.1" 1160 | resolved "https://registry.yarnpkg.com/forever-agent/-/forever-agent-0.6.1.tgz#fbc71f0c41adeb37f96c577ad1ed42d8fdacca91" 1161 | 1162 | form-data@~2.1.1: 1163 | version "2.1.4" 1164 | resolved "https://registry.yarnpkg.com/form-data/-/form-data-2.1.4.tgz#33c183acf193276ecaa98143a69e94bfee1750d1" 1165 | dependencies: 1166 | asynckit "^0.4.0" 1167 | combined-stream "^1.0.5" 1168 | mime-types "^2.1.12" 1169 | 1170 | form-data@~2.3.1: 1171 | version "2.3.2" 1172 | resolved "https://registry.yarnpkg.com/form-data/-/form-data-2.3.2.tgz#4970498be604c20c005d4f5c23aecd21d6b49099" 1173 | dependencies: 1174 | asynckit "^0.4.0" 1175 | combined-stream "1.0.6" 1176 | mime-types "^2.1.12" 1177 | 1178 | fragment-cache@^0.2.1: 1179 | version "0.2.1" 1180 | resolved "https://registry.yarnpkg.com/fragment-cache/-/fragment-cache-0.2.1.tgz#4290fad27f13e89be7f33799c6bc5a0abfff0d19" 1181 | dependencies: 1182 | map-cache "^0.2.2" 1183 | 1184 | fs.realpath@^1.0.0: 1185 | version "1.0.0" 1186 | resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f" 1187 | 1188 | fsevents@^1.1.1: 1189 | version "1.1.3" 1190 | resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-1.1.3.tgz#11f82318f5fe7bb2cd22965a108e9306208216d8" 1191 | dependencies: 1192 | nan "^2.3.0" 1193 | node-pre-gyp "^0.6.39" 1194 | 1195 | fstream-ignore@^1.0.5: 1196 | version "1.0.5" 1197 | resolved "https://registry.yarnpkg.com/fstream-ignore/-/fstream-ignore-1.0.5.tgz#9c31dae34767018fe1d249b24dada67d092da105" 1198 | dependencies: 1199 | fstream "^1.0.0" 1200 | inherits "2" 1201 | minimatch "^3.0.0" 1202 | 1203 | fstream@^1.0.0, fstream@^1.0.10, fstream@^1.0.2: 1204 | version "1.0.11" 1205 | resolved "https://registry.yarnpkg.com/fstream/-/fstream-1.0.11.tgz#5c1fb1f117477114f0632a0eb4b71b3cb0fd3171" 1206 | dependencies: 1207 | graceful-fs "^4.1.2" 1208 | inherits "~2.0.0" 1209 | mkdirp ">=0.5 0" 1210 | rimraf "2" 1211 | 1212 | function-bind@^1.0.2, function-bind@^1.1.1: 1213 | version "1.1.1" 1214 | resolved "https://registry.yarnpkg.com/function-bind/-/function-bind-1.1.1.tgz#a56899d3ea3c9bab874bb9773b7c5ede92f4895d" 1215 | 1216 | functional-red-black-tree@^1.0.1: 1217 | version "1.0.1" 1218 | resolved "https://registry.yarnpkg.com/functional-red-black-tree/-/functional-red-black-tree-1.0.1.tgz#1b0ab3bd553b2a0d6399d29c0e3ea0b252078327" 1219 | 1220 | gauge@~2.7.3: 1221 | version "2.7.4" 1222 | resolved "https://registry.yarnpkg.com/gauge/-/gauge-2.7.4.tgz#2c03405c7538c39d7eb37b317022e325fb018bf7" 1223 | dependencies: 1224 | aproba "^1.0.3" 1225 | console-control-strings "^1.0.0" 1226 | has-unicode "^2.0.0" 1227 | object-assign "^4.1.0" 1228 | signal-exit "^3.0.0" 1229 | string-width "^1.0.1" 1230 | strip-ansi "^3.0.1" 1231 | wide-align "^1.1.0" 1232 | 1233 | get-caller-file@^1.0.1: 1234 | version "1.0.2" 1235 | resolved "https://registry.yarnpkg.com/get-caller-file/-/get-caller-file-1.0.2.tgz#f702e63127e7e231c160a80c1554acb70d5047e5" 1236 | 1237 | get-stream@^3.0.0: 1238 | version "3.0.0" 1239 | resolved "https://registry.yarnpkg.com/get-stream/-/get-stream-3.0.0.tgz#8e943d1358dc37555054ecbe2edb05aa174ede14" 1240 | 1241 | get-value@^2.0.3, get-value@^2.0.6: 1242 | version "2.0.6" 1243 | resolved "https://registry.yarnpkg.com/get-value/-/get-value-2.0.6.tgz#dc15ca1c672387ca76bd37ac0a395ba2042a2c28" 1244 | 1245 | getpass@^0.1.1: 1246 | version "0.1.7" 1247 | resolved "https://registry.yarnpkg.com/getpass/-/getpass-0.1.7.tgz#5eff8e3e684d569ae4cb2b1282604e8ba62149fa" 1248 | dependencies: 1249 | assert-plus "^1.0.0" 1250 | 1251 | glob-base@^0.3.0: 1252 | version "0.3.0" 1253 | resolved "https://registry.yarnpkg.com/glob-base/-/glob-base-0.3.0.tgz#dbb164f6221b1c0b1ccf82aea328b497df0ea3c4" 1254 | dependencies: 1255 | glob-parent "^2.0.0" 1256 | is-glob "^2.0.0" 1257 | 1258 | glob-parent@^2.0.0: 1259 | version "2.0.0" 1260 | resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-2.0.0.tgz#81383d72db054fcccf5336daa902f182f6edbb28" 1261 | dependencies: 1262 | is-glob "^2.0.0" 1263 | 1264 | glob@^7.0.3, glob@^7.0.5, glob@^7.1.1, glob@^7.1.2: 1265 | version "7.1.2" 1266 | resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.2.tgz#c19c9df9a028702d678612384a6552404c636d15" 1267 | dependencies: 1268 | fs.realpath "^1.0.0" 1269 | inflight "^1.0.4" 1270 | inherits "2" 1271 | minimatch "^3.0.4" 1272 | once "^1.3.0" 1273 | path-is-absolute "^1.0.0" 1274 | 1275 | globals@^11.0.1: 1276 | version "11.4.0" 1277 | resolved "https://registry.yarnpkg.com/globals/-/globals-11.4.0.tgz#b85c793349561c16076a3c13549238a27945f1bc" 1278 | 1279 | globals@^9.18.0: 1280 | version "9.18.0" 1281 | resolved "https://registry.yarnpkg.com/globals/-/globals-9.18.0.tgz#aa3896b3e69b487f17e31ed2143d69a8e30c2d8a" 1282 | 1283 | globby@^5.0.0: 1284 | version "5.0.0" 1285 | resolved "https://registry.yarnpkg.com/globby/-/globby-5.0.0.tgz#ebd84667ca0dbb330b99bcfc68eac2bc54370e0d" 1286 | dependencies: 1287 | array-union "^1.0.1" 1288 | arrify "^1.0.0" 1289 | glob "^7.0.3" 1290 | object-assign "^4.0.1" 1291 | pify "^2.0.0" 1292 | pinkie-promise "^2.0.0" 1293 | 1294 | graceful-fs@^4.1.11, graceful-fs@^4.1.2: 1295 | version "4.1.11" 1296 | resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.1.11.tgz#0e8bdfe4d1ddb8854d64e04ea7c00e2a026e5658" 1297 | 1298 | growly@^1.3.0: 1299 | version "1.3.0" 1300 | resolved "https://registry.yarnpkg.com/growly/-/growly-1.3.0.tgz#f10748cbe76af964b7c96c93c6bcc28af120c081" 1301 | 1302 | handlebars@^4.0.3: 1303 | version "4.0.11" 1304 | resolved "https://registry.yarnpkg.com/handlebars/-/handlebars-4.0.11.tgz#630a35dfe0294bc281edae6ffc5d329fc7982dcc" 1305 | dependencies: 1306 | async "^1.4.0" 1307 | optimist "^0.6.1" 1308 | source-map "^0.4.4" 1309 | optionalDependencies: 1310 | uglify-js "^2.6" 1311 | 1312 | har-schema@^1.0.5: 1313 | version "1.0.5" 1314 | resolved "https://registry.yarnpkg.com/har-schema/-/har-schema-1.0.5.tgz#d263135f43307c02c602afc8fe95970c0151369e" 1315 | 1316 | har-schema@^2.0.0: 1317 | version "2.0.0" 1318 | resolved "https://registry.yarnpkg.com/har-schema/-/har-schema-2.0.0.tgz#a94c2224ebcac04782a0d9035521f24735b7ec92" 1319 | 1320 | har-validator@~4.2.1: 1321 | version "4.2.1" 1322 | resolved "https://registry.yarnpkg.com/har-validator/-/har-validator-4.2.1.tgz#33481d0f1bbff600dd203d75812a6a5fba002e2a" 1323 | dependencies: 1324 | ajv "^4.9.1" 1325 | har-schema "^1.0.5" 1326 | 1327 | har-validator@~5.0.3: 1328 | version "5.0.3" 1329 | resolved "https://registry.yarnpkg.com/har-validator/-/har-validator-5.0.3.tgz#ba402c266194f15956ef15e0fcf242993f6a7dfd" 1330 | dependencies: 1331 | ajv "^5.1.0" 1332 | har-schema "^2.0.0" 1333 | 1334 | has-ansi@^2.0.0: 1335 | version "2.0.0" 1336 | resolved "https://registry.yarnpkg.com/has-ansi/-/has-ansi-2.0.0.tgz#34f5049ce1ecdf2b0649af3ef24e45ed35416d91" 1337 | dependencies: 1338 | ansi-regex "^2.0.0" 1339 | 1340 | has-flag@^1.0.0: 1341 | version "1.0.0" 1342 | resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-1.0.0.tgz#9d9e793165ce017a00f00418c43f942a7b1d11fa" 1343 | 1344 | has-flag@^3.0.0: 1345 | version "3.0.0" 1346 | resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-3.0.0.tgz#b5d454dc2199ae225699f3467e5a07f3b955bafd" 1347 | 1348 | has-unicode@^2.0.0: 1349 | version "2.0.1" 1350 | resolved "https://registry.yarnpkg.com/has-unicode/-/has-unicode-2.0.1.tgz#e0e6fe6a28cf51138855e086d1691e771de2a8b9" 1351 | 1352 | has-value@^0.3.1: 1353 | version "0.3.1" 1354 | resolved "https://registry.yarnpkg.com/has-value/-/has-value-0.3.1.tgz#7b1f58bada62ca827ec0a2078025654845995e1f" 1355 | dependencies: 1356 | get-value "^2.0.3" 1357 | has-values "^0.1.4" 1358 | isobject "^2.0.0" 1359 | 1360 | has-value@^1.0.0: 1361 | version "1.0.0" 1362 | resolved "https://registry.yarnpkg.com/has-value/-/has-value-1.0.0.tgz#18b281da585b1c5c51def24c930ed29a0be6b177" 1363 | dependencies: 1364 | get-value "^2.0.6" 1365 | has-values "^1.0.0" 1366 | isobject "^3.0.0" 1367 | 1368 | has-values@^0.1.4: 1369 | version "0.1.4" 1370 | resolved "https://registry.yarnpkg.com/has-values/-/has-values-0.1.4.tgz#6d61de95d91dfca9b9a02089ad384bff8f62b771" 1371 | 1372 | has-values@^1.0.0: 1373 | version "1.0.0" 1374 | resolved "https://registry.yarnpkg.com/has-values/-/has-values-1.0.0.tgz#95b0b63fec2146619a6fe57fe75628d5a39efe4f" 1375 | dependencies: 1376 | is-number "^3.0.0" 1377 | kind-of "^4.0.0" 1378 | 1379 | has@^1.0.1: 1380 | version "1.0.1" 1381 | resolved "https://registry.yarnpkg.com/has/-/has-1.0.1.tgz#8461733f538b0837c9361e39a9ab9e9704dc2f28" 1382 | dependencies: 1383 | function-bind "^1.0.2" 1384 | 1385 | hawk@3.1.3, hawk@~3.1.3: 1386 | version "3.1.3" 1387 | resolved "https://registry.yarnpkg.com/hawk/-/hawk-3.1.3.tgz#078444bd7c1640b0fe540d2c9b73d59678e8e1c4" 1388 | dependencies: 1389 | boom "2.x.x" 1390 | cryptiles "2.x.x" 1391 | hoek "2.x.x" 1392 | sntp "1.x.x" 1393 | 1394 | hawk@~6.0.2: 1395 | version "6.0.2" 1396 | resolved "https://registry.yarnpkg.com/hawk/-/hawk-6.0.2.tgz#af4d914eb065f9b5ce4d9d11c1cb2126eecc3038" 1397 | dependencies: 1398 | boom "4.x.x" 1399 | cryptiles "3.x.x" 1400 | hoek "4.x.x" 1401 | sntp "2.x.x" 1402 | 1403 | hoek@2.x.x: 1404 | version "2.16.3" 1405 | resolved "https://registry.yarnpkg.com/hoek/-/hoek-2.16.3.tgz#20bb7403d3cea398e91dc4710a8ff1b8274a25ed" 1406 | 1407 | hoek@4.x.x: 1408 | version "4.2.1" 1409 | resolved "https://registry.yarnpkg.com/hoek/-/hoek-4.2.1.tgz#9634502aa12c445dd5a7c5734b572bb8738aacbb" 1410 | 1411 | home-or-tmp@^2.0.0: 1412 | version "2.0.0" 1413 | resolved "https://registry.yarnpkg.com/home-or-tmp/-/home-or-tmp-2.0.0.tgz#e36c3f2d2cae7d746a857e38d18d5f32a7882db8" 1414 | dependencies: 1415 | os-homedir "^1.0.0" 1416 | os-tmpdir "^1.0.1" 1417 | 1418 | hosted-git-info@^2.1.4: 1419 | version "2.6.0" 1420 | resolved "https://registry.yarnpkg.com/hosted-git-info/-/hosted-git-info-2.6.0.tgz#23235b29ab230c576aab0d4f13fc046b0b038222" 1421 | 1422 | html-encoding-sniffer@^1.0.2: 1423 | version "1.0.2" 1424 | resolved "https://registry.yarnpkg.com/html-encoding-sniffer/-/html-encoding-sniffer-1.0.2.tgz#e70d84b94da53aa375e11fe3a351be6642ca46f8" 1425 | dependencies: 1426 | whatwg-encoding "^1.0.1" 1427 | 1428 | http-signature@~1.1.0: 1429 | version "1.1.1" 1430 | resolved "https://registry.yarnpkg.com/http-signature/-/http-signature-1.1.1.tgz#df72e267066cd0ac67fb76adf8e134a8fbcf91bf" 1431 | dependencies: 1432 | assert-plus "^0.2.0" 1433 | jsprim "^1.2.2" 1434 | sshpk "^1.7.0" 1435 | 1436 | http-signature@~1.2.0: 1437 | version "1.2.0" 1438 | resolved "https://registry.yarnpkg.com/http-signature/-/http-signature-1.2.0.tgz#9aecd925114772f3d95b65a60abb8f7c18fbace1" 1439 | dependencies: 1440 | assert-plus "^1.0.0" 1441 | jsprim "^1.2.2" 1442 | sshpk "^1.7.0" 1443 | 1444 | iconv-lite@0.4.19, iconv-lite@^0.4.17: 1445 | version "0.4.19" 1446 | resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.4.19.tgz#f7468f60135f5e5dad3399c0a81be9a1603a082b" 1447 | 1448 | ignore@^3.3.3: 1449 | version "3.3.7" 1450 | resolved "https://registry.yarnpkg.com/ignore/-/ignore-3.3.7.tgz#612289bfb3c220e186a58118618d5be8c1bab021" 1451 | 1452 | import-local@^1.0.0: 1453 | version "1.0.0" 1454 | resolved "https://registry.yarnpkg.com/import-local/-/import-local-1.0.0.tgz#5e4ffdc03f4fe6c009c6729beb29631c2f8227bc" 1455 | dependencies: 1456 | pkg-dir "^2.0.0" 1457 | resolve-cwd "^2.0.0" 1458 | 1459 | imurmurhash@^0.1.4: 1460 | version "0.1.4" 1461 | resolved "https://registry.yarnpkg.com/imurmurhash/-/imurmurhash-0.1.4.tgz#9218b9b2b928a238b13dc4fb6b6d576f231453ea" 1462 | 1463 | inflight@^1.0.4: 1464 | version "1.0.6" 1465 | resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9" 1466 | dependencies: 1467 | once "^1.3.0" 1468 | wrappy "1" 1469 | 1470 | inherits@2, inherits@^2.0.3, inherits@~2.0.0, inherits@~2.0.3: 1471 | version "2.0.3" 1472 | resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.3.tgz#633c2c83e3da42a502f52466022480f4208261de" 1473 | 1474 | ini@~1.3.0: 1475 | version "1.3.5" 1476 | resolved "https://registry.yarnpkg.com/ini/-/ini-1.3.5.tgz#eee25f56db1c9ec6085e0c22778083f596abf927" 1477 | 1478 | inquirer@^3.0.6: 1479 | version "3.3.0" 1480 | resolved "https://registry.yarnpkg.com/inquirer/-/inquirer-3.3.0.tgz#9dd2f2ad765dcab1ff0443b491442a20ba227dc9" 1481 | dependencies: 1482 | ansi-escapes "^3.0.0" 1483 | chalk "^2.0.0" 1484 | cli-cursor "^2.1.0" 1485 | cli-width "^2.0.0" 1486 | external-editor "^2.0.4" 1487 | figures "^2.0.0" 1488 | lodash "^4.3.0" 1489 | mute-stream "0.0.7" 1490 | run-async "^2.2.0" 1491 | rx-lite "^4.0.8" 1492 | rx-lite-aggregates "^4.0.8" 1493 | string-width "^2.1.0" 1494 | strip-ansi "^4.0.0" 1495 | through "^2.3.6" 1496 | 1497 | invariant@^2.2.2: 1498 | version "2.2.4" 1499 | resolved "https://registry.yarnpkg.com/invariant/-/invariant-2.2.4.tgz#610f3c92c9359ce1db616e538008d23ff35158e6" 1500 | dependencies: 1501 | loose-envify "^1.0.0" 1502 | 1503 | invert-kv@^1.0.0: 1504 | version "1.0.0" 1505 | resolved "https://registry.yarnpkg.com/invert-kv/-/invert-kv-1.0.0.tgz#104a8e4aaca6d3d8cd157a8ef8bfab2d7a3ffdb6" 1506 | 1507 | is-accessor-descriptor@^0.1.6: 1508 | version "0.1.6" 1509 | resolved "https://registry.yarnpkg.com/is-accessor-descriptor/-/is-accessor-descriptor-0.1.6.tgz#a9e12cb3ae8d876727eeef3843f8a0897b5c98d6" 1510 | dependencies: 1511 | kind-of "^3.0.2" 1512 | 1513 | is-accessor-descriptor@^1.0.0: 1514 | version "1.0.0" 1515 | resolved "https://registry.yarnpkg.com/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz#169c2f6d3df1f992618072365c9b0ea1f6878656" 1516 | dependencies: 1517 | kind-of "^6.0.0" 1518 | 1519 | is-arrayish@^0.2.1: 1520 | version "0.2.1" 1521 | resolved "https://registry.yarnpkg.com/is-arrayish/-/is-arrayish-0.2.1.tgz#77c99840527aa8ecb1a8ba697b80645a7a926a9d" 1522 | 1523 | is-buffer@^1.1.5: 1524 | version "1.1.6" 1525 | resolved "https://registry.yarnpkg.com/is-buffer/-/is-buffer-1.1.6.tgz#efaa2ea9daa0d7ab2ea13a97b2b8ad51fefbe8be" 1526 | 1527 | is-builtin-module@^1.0.0: 1528 | version "1.0.0" 1529 | resolved "https://registry.yarnpkg.com/is-builtin-module/-/is-builtin-module-1.0.0.tgz#540572d34f7ac3119f8f76c30cbc1b1e037affbe" 1530 | dependencies: 1531 | builtin-modules "^1.0.0" 1532 | 1533 | is-callable@^1.1.1, is-callable@^1.1.3: 1534 | version "1.1.3" 1535 | resolved "https://registry.yarnpkg.com/is-callable/-/is-callable-1.1.3.tgz#86eb75392805ddc33af71c92a0eedf74ee7604b2" 1536 | 1537 | is-ci@^1.0.10: 1538 | version "1.1.0" 1539 | resolved "https://registry.yarnpkg.com/is-ci/-/is-ci-1.1.0.tgz#247e4162e7860cebbdaf30b774d6b0ac7dcfe7a5" 1540 | dependencies: 1541 | ci-info "^1.0.0" 1542 | 1543 | is-data-descriptor@^0.1.4: 1544 | version "0.1.4" 1545 | resolved "https://registry.yarnpkg.com/is-data-descriptor/-/is-data-descriptor-0.1.4.tgz#0b5ee648388e2c860282e793f1856fec3f301b56" 1546 | dependencies: 1547 | kind-of "^3.0.2" 1548 | 1549 | is-data-descriptor@^1.0.0: 1550 | version "1.0.0" 1551 | resolved "https://registry.yarnpkg.com/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz#d84876321d0e7add03990406abbbbd36ba9268c7" 1552 | dependencies: 1553 | kind-of "^6.0.0" 1554 | 1555 | is-date-object@^1.0.1: 1556 | version "1.0.1" 1557 | resolved "https://registry.yarnpkg.com/is-date-object/-/is-date-object-1.0.1.tgz#9aa20eb6aeebbff77fbd33e74ca01b33581d3a16" 1558 | 1559 | is-descriptor@^0.1.0: 1560 | version "0.1.6" 1561 | resolved "https://registry.yarnpkg.com/is-descriptor/-/is-descriptor-0.1.6.tgz#366d8240dde487ca51823b1ab9f07a10a78251ca" 1562 | dependencies: 1563 | is-accessor-descriptor "^0.1.6" 1564 | is-data-descriptor "^0.1.4" 1565 | kind-of "^5.0.0" 1566 | 1567 | is-descriptor@^1.0.0, is-descriptor@^1.0.2: 1568 | version "1.0.2" 1569 | resolved "https://registry.yarnpkg.com/is-descriptor/-/is-descriptor-1.0.2.tgz#3b159746a66604b04f8c81524ba365c5f14d86ec" 1570 | dependencies: 1571 | is-accessor-descriptor "^1.0.0" 1572 | is-data-descriptor "^1.0.0" 1573 | kind-of "^6.0.2" 1574 | 1575 | is-dotfile@^1.0.0: 1576 | version "1.0.3" 1577 | resolved "https://registry.yarnpkg.com/is-dotfile/-/is-dotfile-1.0.3.tgz#a6a2f32ffd2dfb04f5ca25ecd0f6b83cf798a1e1" 1578 | 1579 | is-equal-shallow@^0.1.3: 1580 | version "0.1.3" 1581 | resolved "https://registry.yarnpkg.com/is-equal-shallow/-/is-equal-shallow-0.1.3.tgz#2238098fc221de0bcfa5d9eac4c45d638aa1c534" 1582 | dependencies: 1583 | is-primitive "^2.0.0" 1584 | 1585 | is-extendable@^0.1.0, is-extendable@^0.1.1: 1586 | version "0.1.1" 1587 | resolved "https://registry.yarnpkg.com/is-extendable/-/is-extendable-0.1.1.tgz#62b110e289a471418e3ec36a617d472e301dfc89" 1588 | 1589 | is-extendable@^1.0.1: 1590 | version "1.0.1" 1591 | resolved "https://registry.yarnpkg.com/is-extendable/-/is-extendable-1.0.1.tgz#a7470f9e426733d81bd81e1155264e3a3507cab4" 1592 | dependencies: 1593 | is-plain-object "^2.0.4" 1594 | 1595 | is-extglob@^1.0.0: 1596 | version "1.0.0" 1597 | resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-1.0.0.tgz#ac468177c4943405a092fc8f29760c6ffc6206c0" 1598 | 1599 | is-finite@^1.0.0: 1600 | version "1.0.2" 1601 | resolved "https://registry.yarnpkg.com/is-finite/-/is-finite-1.0.2.tgz#cc6677695602be550ef11e8b4aa6305342b6d0aa" 1602 | dependencies: 1603 | number-is-nan "^1.0.0" 1604 | 1605 | is-fullwidth-code-point@^1.0.0: 1606 | version "1.0.0" 1607 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz#ef9e31386f031a7f0d643af82fde50c457ef00cb" 1608 | dependencies: 1609 | number-is-nan "^1.0.0" 1610 | 1611 | is-fullwidth-code-point@^2.0.0: 1612 | version "2.0.0" 1613 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz#a3b30a5c4f199183167aaab93beefae3ddfb654f" 1614 | 1615 | is-generator-fn@^1.0.0: 1616 | version "1.0.0" 1617 | resolved "https://registry.yarnpkg.com/is-generator-fn/-/is-generator-fn-1.0.0.tgz#969d49e1bb3329f6bb7f09089be26578b2ddd46a" 1618 | 1619 | is-glob@^2.0.0, is-glob@^2.0.1: 1620 | version "2.0.1" 1621 | resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-2.0.1.tgz#d096f926a3ded5600f3fdfd91198cb0888c2d863" 1622 | dependencies: 1623 | is-extglob "^1.0.0" 1624 | 1625 | is-number@^2.1.0: 1626 | version "2.1.0" 1627 | resolved "https://registry.yarnpkg.com/is-number/-/is-number-2.1.0.tgz#01fcbbb393463a548f2f466cce16dece49db908f" 1628 | dependencies: 1629 | kind-of "^3.0.2" 1630 | 1631 | is-number@^3.0.0: 1632 | version "3.0.0" 1633 | resolved "https://registry.yarnpkg.com/is-number/-/is-number-3.0.0.tgz#24fd6201a4782cf50561c810276afc7d12d71195" 1634 | dependencies: 1635 | kind-of "^3.0.2" 1636 | 1637 | is-number@^4.0.0: 1638 | version "4.0.0" 1639 | resolved "https://registry.yarnpkg.com/is-number/-/is-number-4.0.0.tgz#0026e37f5454d73e356dfe6564699867c6a7f0ff" 1640 | 1641 | is-odd@^2.0.0: 1642 | version "2.0.0" 1643 | resolved "https://registry.yarnpkg.com/is-odd/-/is-odd-2.0.0.tgz#7646624671fd7ea558ccd9a2795182f2958f1b24" 1644 | dependencies: 1645 | is-number "^4.0.0" 1646 | 1647 | is-path-cwd@^1.0.0: 1648 | version "1.0.0" 1649 | resolved "https://registry.yarnpkg.com/is-path-cwd/-/is-path-cwd-1.0.0.tgz#d225ec23132e89edd38fda767472e62e65f1106d" 1650 | 1651 | is-path-in-cwd@^1.0.0: 1652 | version "1.0.1" 1653 | resolved "https://registry.yarnpkg.com/is-path-in-cwd/-/is-path-in-cwd-1.0.1.tgz#5ac48b345ef675339bd6c7a48a912110b241cf52" 1654 | dependencies: 1655 | is-path-inside "^1.0.0" 1656 | 1657 | is-path-inside@^1.0.0: 1658 | version "1.0.1" 1659 | resolved "https://registry.yarnpkg.com/is-path-inside/-/is-path-inside-1.0.1.tgz#8ef5b7de50437a3fdca6b4e865ef7aa55cb48036" 1660 | dependencies: 1661 | path-is-inside "^1.0.1" 1662 | 1663 | is-plain-object@^2.0.1, is-plain-object@^2.0.3, is-plain-object@^2.0.4: 1664 | version "2.0.4" 1665 | resolved "https://registry.yarnpkg.com/is-plain-object/-/is-plain-object-2.0.4.tgz#2c163b3fafb1b606d9d17928f05c2a1c38e07677" 1666 | dependencies: 1667 | isobject "^3.0.1" 1668 | 1669 | is-posix-bracket@^0.1.0: 1670 | version "0.1.1" 1671 | resolved "https://registry.yarnpkg.com/is-posix-bracket/-/is-posix-bracket-0.1.1.tgz#3334dc79774368e92f016e6fbc0a88f5cd6e6bc4" 1672 | 1673 | is-primitive@^2.0.0: 1674 | version "2.0.0" 1675 | resolved "https://registry.yarnpkg.com/is-primitive/-/is-primitive-2.0.0.tgz#207bab91638499c07b2adf240a41a87210034575" 1676 | 1677 | is-promise@^2.1.0: 1678 | version "2.1.0" 1679 | resolved "https://registry.yarnpkg.com/is-promise/-/is-promise-2.1.0.tgz#79a2a9ece7f096e80f36d2b2f3bc16c1ff4bf3fa" 1680 | 1681 | is-regex@^1.0.4: 1682 | version "1.0.4" 1683 | resolved "https://registry.yarnpkg.com/is-regex/-/is-regex-1.0.4.tgz#5517489b547091b0930e095654ced25ee97e9491" 1684 | dependencies: 1685 | has "^1.0.1" 1686 | 1687 | is-resolvable@^1.0.0: 1688 | version "1.1.0" 1689 | resolved "https://registry.yarnpkg.com/is-resolvable/-/is-resolvable-1.1.0.tgz#fb18f87ce1feb925169c9a407c19318a3206ed88" 1690 | 1691 | is-stream@^1.1.0: 1692 | version "1.1.0" 1693 | resolved "https://registry.yarnpkg.com/is-stream/-/is-stream-1.1.0.tgz#12d4a3dd4e68e0b79ceb8dbc84173ae80d91ca44" 1694 | 1695 | is-symbol@^1.0.1: 1696 | version "1.0.1" 1697 | resolved "https://registry.yarnpkg.com/is-symbol/-/is-symbol-1.0.1.tgz#3cc59f00025194b6ab2e38dbae6689256b660572" 1698 | 1699 | is-typedarray@~1.0.0: 1700 | version "1.0.0" 1701 | resolved "https://registry.yarnpkg.com/is-typedarray/-/is-typedarray-1.0.0.tgz#e479c80858df0c1b11ddda6940f96011fcda4a9a" 1702 | 1703 | is-utf8@^0.2.0: 1704 | version "0.2.1" 1705 | resolved "https://registry.yarnpkg.com/is-utf8/-/is-utf8-0.2.1.tgz#4b0da1442104d1b336340e80797e865cf39f7d72" 1706 | 1707 | is-windows@^1.0.2: 1708 | version "1.0.2" 1709 | resolved "https://registry.yarnpkg.com/is-windows/-/is-windows-1.0.2.tgz#d1850eb9791ecd18e6182ce12a30f396634bb19d" 1710 | 1711 | isarray@1.0.0, isarray@~1.0.0: 1712 | version "1.0.0" 1713 | resolved "https://registry.yarnpkg.com/isarray/-/isarray-1.0.0.tgz#bb935d48582cba168c06834957a54a3e07124f11" 1714 | 1715 | isexe@^2.0.0: 1716 | version "2.0.0" 1717 | resolved "https://registry.yarnpkg.com/isexe/-/isexe-2.0.0.tgz#e8fbf374dc556ff8947a10dcb0572d633f2cfa10" 1718 | 1719 | isobject@^2.0.0: 1720 | version "2.1.0" 1721 | resolved "https://registry.yarnpkg.com/isobject/-/isobject-2.1.0.tgz#f065561096a3f1da2ef46272f815c840d87e0c89" 1722 | dependencies: 1723 | isarray "1.0.0" 1724 | 1725 | isobject@^3.0.0, isobject@^3.0.1: 1726 | version "3.0.1" 1727 | resolved "https://registry.yarnpkg.com/isobject/-/isobject-3.0.1.tgz#4e431e92b11a9731636aa1f9c8d1ccbcfdab78df" 1728 | 1729 | isstream@~0.1.2: 1730 | version "0.1.2" 1731 | resolved "https://registry.yarnpkg.com/isstream/-/isstream-0.1.2.tgz#47e63f7af55afa6f92e1500e690eb8b8529c099a" 1732 | 1733 | istanbul-api@^1.1.14: 1734 | version "1.3.1" 1735 | resolved "https://registry.yarnpkg.com/istanbul-api/-/istanbul-api-1.3.1.tgz#4c3b05d18c0016d1022e079b98dc82c40f488954" 1736 | dependencies: 1737 | async "^2.1.4" 1738 | compare-versions "^3.1.0" 1739 | fileset "^2.0.2" 1740 | istanbul-lib-coverage "^1.2.0" 1741 | istanbul-lib-hook "^1.2.0" 1742 | istanbul-lib-instrument "^1.10.1" 1743 | istanbul-lib-report "^1.1.4" 1744 | istanbul-lib-source-maps "^1.2.4" 1745 | istanbul-reports "^1.3.0" 1746 | js-yaml "^3.7.0" 1747 | mkdirp "^0.5.1" 1748 | once "^1.4.0" 1749 | 1750 | istanbul-lib-coverage@^1.1.1, istanbul-lib-coverage@^1.1.2, istanbul-lib-coverage@^1.2.0: 1751 | version "1.2.0" 1752 | resolved "https://registry.yarnpkg.com/istanbul-lib-coverage/-/istanbul-lib-coverage-1.2.0.tgz#f7d8f2e42b97e37fe796114cb0f9d68b5e3a4341" 1753 | 1754 | istanbul-lib-hook@^1.2.0: 1755 | version "1.2.0" 1756 | resolved "https://registry.yarnpkg.com/istanbul-lib-hook/-/istanbul-lib-hook-1.2.0.tgz#ae556fd5a41a6e8efa0b1002b1e416dfeaf9816c" 1757 | dependencies: 1758 | append-transform "^0.4.0" 1759 | 1760 | istanbul-lib-instrument@^1.10.1, istanbul-lib-instrument@^1.7.5, istanbul-lib-instrument@^1.8.0: 1761 | version "1.10.1" 1762 | resolved "https://registry.yarnpkg.com/istanbul-lib-instrument/-/istanbul-lib-instrument-1.10.1.tgz#724b4b6caceba8692d3f1f9d0727e279c401af7b" 1763 | dependencies: 1764 | babel-generator "^6.18.0" 1765 | babel-template "^6.16.0" 1766 | babel-traverse "^6.18.0" 1767 | babel-types "^6.18.0" 1768 | babylon "^6.18.0" 1769 | istanbul-lib-coverage "^1.2.0" 1770 | semver "^5.3.0" 1771 | 1772 | istanbul-lib-report@^1.1.4: 1773 | version "1.1.4" 1774 | resolved "https://registry.yarnpkg.com/istanbul-lib-report/-/istanbul-lib-report-1.1.4.tgz#e886cdf505c4ebbd8e099e4396a90d0a28e2acb5" 1775 | dependencies: 1776 | istanbul-lib-coverage "^1.2.0" 1777 | mkdirp "^0.5.1" 1778 | path-parse "^1.0.5" 1779 | supports-color "^3.1.2" 1780 | 1781 | istanbul-lib-source-maps@^1.2.1: 1782 | version "1.2.3" 1783 | resolved "https://registry.yarnpkg.com/istanbul-lib-source-maps/-/istanbul-lib-source-maps-1.2.3.tgz#20fb54b14e14b3fb6edb6aca3571fd2143db44e6" 1784 | dependencies: 1785 | debug "^3.1.0" 1786 | istanbul-lib-coverage "^1.1.2" 1787 | mkdirp "^0.5.1" 1788 | rimraf "^2.6.1" 1789 | source-map "^0.5.3" 1790 | 1791 | istanbul-lib-source-maps@^1.2.4: 1792 | version "1.2.4" 1793 | resolved "https://registry.yarnpkg.com/istanbul-lib-source-maps/-/istanbul-lib-source-maps-1.2.4.tgz#cc7ccad61629f4efff8e2f78adb8c522c9976ec7" 1794 | dependencies: 1795 | debug "^3.1.0" 1796 | istanbul-lib-coverage "^1.2.0" 1797 | mkdirp "^0.5.1" 1798 | rimraf "^2.6.1" 1799 | source-map "^0.5.3" 1800 | 1801 | istanbul-reports@^1.3.0: 1802 | version "1.3.0" 1803 | resolved "https://registry.yarnpkg.com/istanbul-reports/-/istanbul-reports-1.3.0.tgz#2f322e81e1d9520767597dca3c20a0cce89a3554" 1804 | dependencies: 1805 | handlebars "^4.0.3" 1806 | 1807 | jest-changed-files@^22.4.3: 1808 | version "22.4.3" 1809 | resolved "https://registry.yarnpkg.com/jest-changed-files/-/jest-changed-files-22.4.3.tgz#8882181e022c38bd46a2e4d18d44d19d90a90fb2" 1810 | dependencies: 1811 | throat "^4.0.0" 1812 | 1813 | jest-cli@^22.4.3: 1814 | version "22.4.3" 1815 | resolved "https://registry.yarnpkg.com/jest-cli/-/jest-cli-22.4.3.tgz#bf16c4a5fb7edc3fa5b9bb7819e34139e88a72c7" 1816 | dependencies: 1817 | ansi-escapes "^3.0.0" 1818 | chalk "^2.0.1" 1819 | exit "^0.1.2" 1820 | glob "^7.1.2" 1821 | graceful-fs "^4.1.11" 1822 | import-local "^1.0.0" 1823 | is-ci "^1.0.10" 1824 | istanbul-api "^1.1.14" 1825 | istanbul-lib-coverage "^1.1.1" 1826 | istanbul-lib-instrument "^1.8.0" 1827 | istanbul-lib-source-maps "^1.2.1" 1828 | jest-changed-files "^22.4.3" 1829 | jest-config "^22.4.3" 1830 | jest-environment-jsdom "^22.4.3" 1831 | jest-get-type "^22.4.3" 1832 | jest-haste-map "^22.4.3" 1833 | jest-message-util "^22.4.3" 1834 | jest-regex-util "^22.4.3" 1835 | jest-resolve-dependencies "^22.4.3" 1836 | jest-runner "^22.4.3" 1837 | jest-runtime "^22.4.3" 1838 | jest-snapshot "^22.4.3" 1839 | jest-util "^22.4.3" 1840 | jest-validate "^22.4.3" 1841 | jest-worker "^22.4.3" 1842 | micromatch "^2.3.11" 1843 | node-notifier "^5.2.1" 1844 | realpath-native "^1.0.0" 1845 | rimraf "^2.5.4" 1846 | slash "^1.0.0" 1847 | string-length "^2.0.0" 1848 | strip-ansi "^4.0.0" 1849 | which "^1.2.12" 1850 | yargs "^10.0.3" 1851 | 1852 | jest-config@^22.4.3: 1853 | version "22.4.3" 1854 | resolved "https://registry.yarnpkg.com/jest-config/-/jest-config-22.4.3.tgz#0e9d57db267839ea31309119b41dc2fa31b76403" 1855 | dependencies: 1856 | chalk "^2.0.1" 1857 | glob "^7.1.1" 1858 | jest-environment-jsdom "^22.4.3" 1859 | jest-environment-node "^22.4.3" 1860 | jest-get-type "^22.4.3" 1861 | jest-jasmine2 "^22.4.3" 1862 | jest-regex-util "^22.4.3" 1863 | jest-resolve "^22.4.3" 1864 | jest-util "^22.4.3" 1865 | jest-validate "^22.4.3" 1866 | pretty-format "^22.4.3" 1867 | 1868 | jest-diff@^22.4.3: 1869 | version "22.4.3" 1870 | resolved "https://registry.yarnpkg.com/jest-diff/-/jest-diff-22.4.3.tgz#e18cc3feff0aeef159d02310f2686d4065378030" 1871 | dependencies: 1872 | chalk "^2.0.1" 1873 | diff "^3.2.0" 1874 | jest-get-type "^22.4.3" 1875 | pretty-format "^22.4.3" 1876 | 1877 | jest-docblock@^22.4.3: 1878 | version "22.4.3" 1879 | resolved "https://registry.yarnpkg.com/jest-docblock/-/jest-docblock-22.4.3.tgz#50886f132b42b280c903c592373bb6e93bb68b19" 1880 | dependencies: 1881 | detect-newline "^2.1.0" 1882 | 1883 | jest-environment-jsdom@^22.4.3: 1884 | version "22.4.3" 1885 | resolved "https://registry.yarnpkg.com/jest-environment-jsdom/-/jest-environment-jsdom-22.4.3.tgz#d67daa4155e33516aecdd35afd82d4abf0fa8a1e" 1886 | dependencies: 1887 | jest-mock "^22.4.3" 1888 | jest-util "^22.4.3" 1889 | jsdom "^11.5.1" 1890 | 1891 | jest-environment-node@^22.4.3: 1892 | version "22.4.3" 1893 | resolved "https://registry.yarnpkg.com/jest-environment-node/-/jest-environment-node-22.4.3.tgz#54c4eaa374c83dd52a9da8759be14ebe1d0b9129" 1894 | dependencies: 1895 | jest-mock "^22.4.3" 1896 | jest-util "^22.4.3" 1897 | 1898 | jest-get-type@^22.4.3: 1899 | version "22.4.3" 1900 | resolved "https://registry.yarnpkg.com/jest-get-type/-/jest-get-type-22.4.3.tgz#e3a8504d8479342dd4420236b322869f18900ce4" 1901 | 1902 | jest-haste-map@^22.4.3: 1903 | version "22.4.3" 1904 | resolved "https://registry.yarnpkg.com/jest-haste-map/-/jest-haste-map-22.4.3.tgz#25842fa2ba350200767ac27f658d58b9d5c2e20b" 1905 | dependencies: 1906 | fb-watchman "^2.0.0" 1907 | graceful-fs "^4.1.11" 1908 | jest-docblock "^22.4.3" 1909 | jest-serializer "^22.4.3" 1910 | jest-worker "^22.4.3" 1911 | micromatch "^2.3.11" 1912 | sane "^2.0.0" 1913 | 1914 | jest-jasmine2@^22.4.3: 1915 | version "22.4.3" 1916 | resolved "https://registry.yarnpkg.com/jest-jasmine2/-/jest-jasmine2-22.4.3.tgz#4daf64cd14c793da9db34a7c7b8dcfe52a745965" 1917 | dependencies: 1918 | chalk "^2.0.1" 1919 | co "^4.6.0" 1920 | expect "^22.4.3" 1921 | graceful-fs "^4.1.11" 1922 | is-generator-fn "^1.0.0" 1923 | jest-diff "^22.4.3" 1924 | jest-matcher-utils "^22.4.3" 1925 | jest-message-util "^22.4.3" 1926 | jest-snapshot "^22.4.3" 1927 | jest-util "^22.4.3" 1928 | source-map-support "^0.5.0" 1929 | 1930 | jest-leak-detector@^22.4.3: 1931 | version "22.4.3" 1932 | resolved "https://registry.yarnpkg.com/jest-leak-detector/-/jest-leak-detector-22.4.3.tgz#2b7b263103afae8c52b6b91241a2de40117e5b35" 1933 | dependencies: 1934 | pretty-format "^22.4.3" 1935 | 1936 | jest-matcher-utils@^22.4.3: 1937 | version "22.4.3" 1938 | resolved "https://registry.yarnpkg.com/jest-matcher-utils/-/jest-matcher-utils-22.4.3.tgz#4632fe428ebc73ebc194d3c7b65d37b161f710ff" 1939 | dependencies: 1940 | chalk "^2.0.1" 1941 | jest-get-type "^22.4.3" 1942 | pretty-format "^22.4.3" 1943 | 1944 | jest-message-util@^22.4.3: 1945 | version "22.4.3" 1946 | resolved "https://registry.yarnpkg.com/jest-message-util/-/jest-message-util-22.4.3.tgz#cf3d38aafe4befddbfc455e57d65d5239e399eb7" 1947 | dependencies: 1948 | "@babel/code-frame" "^7.0.0-beta.35" 1949 | chalk "^2.0.1" 1950 | micromatch "^2.3.11" 1951 | slash "^1.0.0" 1952 | stack-utils "^1.0.1" 1953 | 1954 | jest-mock@^22.4.3: 1955 | version "22.4.3" 1956 | resolved "https://registry.yarnpkg.com/jest-mock/-/jest-mock-22.4.3.tgz#f63ba2f07a1511772cdc7979733397df770aabc7" 1957 | 1958 | jest-regex-util@^22.4.3: 1959 | version "22.4.3" 1960 | resolved "https://registry.yarnpkg.com/jest-regex-util/-/jest-regex-util-22.4.3.tgz#a826eb191cdf22502198c5401a1fc04de9cef5af" 1961 | 1962 | jest-resolve-dependencies@^22.4.3: 1963 | version "22.4.3" 1964 | resolved "https://registry.yarnpkg.com/jest-resolve-dependencies/-/jest-resolve-dependencies-22.4.3.tgz#e2256a5a846732dc3969cb72f3c9ad7725a8195e" 1965 | dependencies: 1966 | jest-regex-util "^22.4.3" 1967 | 1968 | jest-resolve@^22.4.3: 1969 | version "22.4.3" 1970 | resolved "https://registry.yarnpkg.com/jest-resolve/-/jest-resolve-22.4.3.tgz#0ce9d438c8438229aa9b916968ec6b05c1abb4ea" 1971 | dependencies: 1972 | browser-resolve "^1.11.2" 1973 | chalk "^2.0.1" 1974 | 1975 | jest-runner@^22.4.3: 1976 | version "22.4.3" 1977 | resolved "https://registry.yarnpkg.com/jest-runner/-/jest-runner-22.4.3.tgz#298ddd6a22b992c64401b4667702b325e50610c3" 1978 | dependencies: 1979 | exit "^0.1.2" 1980 | jest-config "^22.4.3" 1981 | jest-docblock "^22.4.3" 1982 | jest-haste-map "^22.4.3" 1983 | jest-jasmine2 "^22.4.3" 1984 | jest-leak-detector "^22.4.3" 1985 | jest-message-util "^22.4.3" 1986 | jest-runtime "^22.4.3" 1987 | jest-util "^22.4.3" 1988 | jest-worker "^22.4.3" 1989 | throat "^4.0.0" 1990 | 1991 | jest-runtime@^22.4.3: 1992 | version "22.4.3" 1993 | resolved "https://registry.yarnpkg.com/jest-runtime/-/jest-runtime-22.4.3.tgz#b69926c34b851b920f666c93e86ba2912087e3d0" 1994 | dependencies: 1995 | babel-core "^6.0.0" 1996 | babel-jest "^22.4.3" 1997 | babel-plugin-istanbul "^4.1.5" 1998 | chalk "^2.0.1" 1999 | convert-source-map "^1.4.0" 2000 | exit "^0.1.2" 2001 | graceful-fs "^4.1.11" 2002 | jest-config "^22.4.3" 2003 | jest-haste-map "^22.4.3" 2004 | jest-regex-util "^22.4.3" 2005 | jest-resolve "^22.4.3" 2006 | jest-util "^22.4.3" 2007 | jest-validate "^22.4.3" 2008 | json-stable-stringify "^1.0.1" 2009 | micromatch "^2.3.11" 2010 | realpath-native "^1.0.0" 2011 | slash "^1.0.0" 2012 | strip-bom "3.0.0" 2013 | write-file-atomic "^2.1.0" 2014 | yargs "^10.0.3" 2015 | 2016 | jest-serializer@^22.4.3: 2017 | version "22.4.3" 2018 | resolved "https://registry.yarnpkg.com/jest-serializer/-/jest-serializer-22.4.3.tgz#a679b81a7f111e4766235f4f0c46d230ee0f7436" 2019 | 2020 | jest-snapshot@^22.4.3: 2021 | version "22.4.3" 2022 | resolved "https://registry.yarnpkg.com/jest-snapshot/-/jest-snapshot-22.4.3.tgz#b5c9b42846ffb9faccb76b841315ba67887362d2" 2023 | dependencies: 2024 | chalk "^2.0.1" 2025 | jest-diff "^22.4.3" 2026 | jest-matcher-utils "^22.4.3" 2027 | mkdirp "^0.5.1" 2028 | natural-compare "^1.4.0" 2029 | pretty-format "^22.4.3" 2030 | 2031 | jest-util@^22.4.3: 2032 | version "22.4.3" 2033 | resolved "https://registry.yarnpkg.com/jest-util/-/jest-util-22.4.3.tgz#c70fec8eec487c37b10b0809dc064a7ecf6aafac" 2034 | dependencies: 2035 | callsites "^2.0.0" 2036 | chalk "^2.0.1" 2037 | graceful-fs "^4.1.11" 2038 | is-ci "^1.0.10" 2039 | jest-message-util "^22.4.3" 2040 | mkdirp "^0.5.1" 2041 | source-map "^0.6.0" 2042 | 2043 | jest-validate@^22.4.3: 2044 | version "22.4.3" 2045 | resolved "https://registry.yarnpkg.com/jest-validate/-/jest-validate-22.4.3.tgz#0780954a5a7daaeec8d3c10834b9280865976b30" 2046 | dependencies: 2047 | chalk "^2.0.1" 2048 | jest-config "^22.4.3" 2049 | jest-get-type "^22.4.3" 2050 | leven "^2.1.0" 2051 | pretty-format "^22.4.3" 2052 | 2053 | jest-worker@^22.4.3: 2054 | version "22.4.3" 2055 | resolved "https://registry.yarnpkg.com/jest-worker/-/jest-worker-22.4.3.tgz#5c421417cba1c0abf64bf56bd5fb7968d79dd40b" 2056 | dependencies: 2057 | merge-stream "^1.0.1" 2058 | 2059 | jest@^22.4.3: 2060 | version "22.4.3" 2061 | resolved "https://registry.yarnpkg.com/jest/-/jest-22.4.3.tgz#2261f4b117dc46d9a4a1a673d2150958dee92f16" 2062 | dependencies: 2063 | import-local "^1.0.0" 2064 | jest-cli "^22.4.3" 2065 | 2066 | js-tokens@^3.0.0, js-tokens@^3.0.2: 2067 | version "3.0.2" 2068 | resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-3.0.2.tgz#9866df395102130e38f7f996bceb65443209c25b" 2069 | 2070 | js-yaml@^3.7.0, js-yaml@^3.9.1: 2071 | version "3.11.0" 2072 | resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-3.11.0.tgz#597c1a8bd57152f26d622ce4117851a51f5ebaef" 2073 | dependencies: 2074 | argparse "^1.0.7" 2075 | esprima "^4.0.0" 2076 | 2077 | jsbn@~0.1.0: 2078 | version "0.1.1" 2079 | resolved "https://registry.yarnpkg.com/jsbn/-/jsbn-0.1.1.tgz#a5e654c2e5a2deb5f201d96cefbca80c0ef2f513" 2080 | 2081 | jsdom@^11.5.1: 2082 | version "11.6.2" 2083 | resolved "https://registry.yarnpkg.com/jsdom/-/jsdom-11.6.2.tgz#25d1ef332d48adf77fc5221fe2619967923f16bb" 2084 | dependencies: 2085 | abab "^1.0.4" 2086 | acorn "^5.3.0" 2087 | acorn-globals "^4.1.0" 2088 | array-equal "^1.0.0" 2089 | browser-process-hrtime "^0.1.2" 2090 | content-type-parser "^1.0.2" 2091 | cssom ">= 0.3.2 < 0.4.0" 2092 | cssstyle ">= 0.2.37 < 0.3.0" 2093 | domexception "^1.0.0" 2094 | escodegen "^1.9.0" 2095 | html-encoding-sniffer "^1.0.2" 2096 | left-pad "^1.2.0" 2097 | nwmatcher "^1.4.3" 2098 | parse5 "4.0.0" 2099 | pn "^1.1.0" 2100 | request "^2.83.0" 2101 | request-promise-native "^1.0.5" 2102 | sax "^1.2.4" 2103 | symbol-tree "^3.2.2" 2104 | tough-cookie "^2.3.3" 2105 | w3c-hr-time "^1.0.1" 2106 | webidl-conversions "^4.0.2" 2107 | whatwg-encoding "^1.0.3" 2108 | whatwg-url "^6.4.0" 2109 | ws "^4.0.0" 2110 | xml-name-validator "^3.0.0" 2111 | 2112 | jsesc@^1.3.0: 2113 | version "1.3.0" 2114 | resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-1.3.0.tgz#46c3fec8c1892b12b0833db9bc7622176dbab34b" 2115 | 2116 | json-schema-traverse@^0.3.0: 2117 | version "0.3.1" 2118 | resolved "https://registry.yarnpkg.com/json-schema-traverse/-/json-schema-traverse-0.3.1.tgz#349a6d44c53a51de89b40805c5d5e59b417d3340" 2119 | 2120 | json-schema@0.2.3: 2121 | version "0.2.3" 2122 | resolved "https://registry.yarnpkg.com/json-schema/-/json-schema-0.2.3.tgz#b480c892e59a2f05954ce727bd3f2a4e882f9e13" 2123 | 2124 | json-stable-stringify-without-jsonify@^1.0.1: 2125 | version "1.0.1" 2126 | resolved "https://registry.yarnpkg.com/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz#9db7b59496ad3f3cfef30a75142d2d930ad72651" 2127 | 2128 | json-stable-stringify@^1.0.1: 2129 | version "1.0.1" 2130 | resolved "https://registry.yarnpkg.com/json-stable-stringify/-/json-stable-stringify-1.0.1.tgz#9a759d39c5f2ff503fd5300646ed445f88c4f9af" 2131 | dependencies: 2132 | jsonify "~0.0.0" 2133 | 2134 | json-stringify-safe@~5.0.1: 2135 | version "5.0.1" 2136 | resolved "https://registry.yarnpkg.com/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz#1296a2d58fd45f19a0f6ce01d65701e2c735b6eb" 2137 | 2138 | json5@^0.5.1: 2139 | version "0.5.1" 2140 | resolved "https://registry.yarnpkg.com/json5/-/json5-0.5.1.tgz#1eade7acc012034ad84e2396767ead9fa5495821" 2141 | 2142 | jsonify@~0.0.0: 2143 | version "0.0.0" 2144 | resolved "https://registry.yarnpkg.com/jsonify/-/jsonify-0.0.0.tgz#2c74b6ee41d93ca51b7b5aaee8f503631d252a73" 2145 | 2146 | jsprim@^1.2.2: 2147 | version "1.4.1" 2148 | resolved "https://registry.yarnpkg.com/jsprim/-/jsprim-1.4.1.tgz#313e66bc1e5cc06e438bc1b7499c2e5c56acb6a2" 2149 | dependencies: 2150 | assert-plus "1.0.0" 2151 | extsprintf "1.3.0" 2152 | json-schema "0.2.3" 2153 | verror "1.10.0" 2154 | 2155 | kind-of@^3.0.2, kind-of@^3.0.3, kind-of@^3.2.0: 2156 | version "3.2.2" 2157 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-3.2.2.tgz#31ea21a734bab9bbb0f32466d893aea51e4a3c64" 2158 | dependencies: 2159 | is-buffer "^1.1.5" 2160 | 2161 | kind-of@^4.0.0: 2162 | version "4.0.0" 2163 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-4.0.0.tgz#20813df3d712928b207378691a45066fae72dd57" 2164 | dependencies: 2165 | is-buffer "^1.1.5" 2166 | 2167 | kind-of@^5.0.0: 2168 | version "5.1.0" 2169 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-5.1.0.tgz#729c91e2d857b7a419a1f9aa65685c4c33f5845d" 2170 | 2171 | kind-of@^6.0.0, kind-of@^6.0.2: 2172 | version "6.0.2" 2173 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-6.0.2.tgz#01146b36a6218e64e58f3a8d66de5d7fc6f6d051" 2174 | 2175 | lazy-cache@^1.0.3: 2176 | version "1.0.4" 2177 | resolved "https://registry.yarnpkg.com/lazy-cache/-/lazy-cache-1.0.4.tgz#a1d78fc3a50474cb80845d3b3b6e1da49a446e8e" 2178 | 2179 | lcid@^1.0.0: 2180 | version "1.0.0" 2181 | resolved "https://registry.yarnpkg.com/lcid/-/lcid-1.0.0.tgz#308accafa0bc483a3867b4b6f2b9506251d1b835" 2182 | dependencies: 2183 | invert-kv "^1.0.0" 2184 | 2185 | left-pad@^1.2.0: 2186 | version "1.2.0" 2187 | resolved "https://registry.yarnpkg.com/left-pad/-/left-pad-1.2.0.tgz#d30a73c6b8201d8f7d8e7956ba9616087a68e0ee" 2188 | 2189 | leven@^2.1.0: 2190 | version "2.1.0" 2191 | resolved "https://registry.yarnpkg.com/leven/-/leven-2.1.0.tgz#c2e7a9f772094dee9d34202ae8acce4687875580" 2192 | 2193 | levn@^0.3.0, levn@~0.3.0: 2194 | version "0.3.0" 2195 | resolved "https://registry.yarnpkg.com/levn/-/levn-0.3.0.tgz#3b09924edf9f083c0490fdd4c0bc4421e04764ee" 2196 | dependencies: 2197 | prelude-ls "~1.1.2" 2198 | type-check "~0.3.2" 2199 | 2200 | load-json-file@^1.0.0: 2201 | version "1.1.0" 2202 | resolved "https://registry.yarnpkg.com/load-json-file/-/load-json-file-1.1.0.tgz#956905708d58b4bab4c2261b04f59f31c99374c0" 2203 | dependencies: 2204 | graceful-fs "^4.1.2" 2205 | parse-json "^2.2.0" 2206 | pify "^2.0.0" 2207 | pinkie-promise "^2.0.0" 2208 | strip-bom "^2.0.0" 2209 | 2210 | locate-path@^2.0.0: 2211 | version "2.0.0" 2212 | resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-2.0.0.tgz#2b568b265eec944c6d9c0de9c3dbbbca0354cd8e" 2213 | dependencies: 2214 | p-locate "^2.0.0" 2215 | path-exists "^3.0.0" 2216 | 2217 | lodash.sortby@^4.7.0: 2218 | version "4.7.0" 2219 | resolved "https://registry.yarnpkg.com/lodash.sortby/-/lodash.sortby-4.7.0.tgz#edd14c824e2cc9c1e0b0a1b42bb5210516a42438" 2220 | 2221 | lodash@^4.13.1, lodash@^4.14.0, lodash@^4.17.4, lodash@^4.3.0: 2222 | version "4.17.5" 2223 | resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.5.tgz#99a92d65c0272debe8c96b6057bc8fbfa3bed511" 2224 | 2225 | longest@^1.0.1: 2226 | version "1.0.1" 2227 | resolved "https://registry.yarnpkg.com/longest/-/longest-1.0.1.tgz#30a0b2da38f73770e8294a0d22e6625ed77d0097" 2228 | 2229 | loose-envify@^1.0.0: 2230 | version "1.3.1" 2231 | resolved "https://registry.yarnpkg.com/loose-envify/-/loose-envify-1.3.1.tgz#d1a8ad33fa9ce0e713d65fdd0ac8b748d478c848" 2232 | dependencies: 2233 | js-tokens "^3.0.0" 2234 | 2235 | lru-cache@^4.0.1: 2236 | version "4.1.2" 2237 | resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-4.1.2.tgz#45234b2e6e2f2b33da125624c4664929a0224c3f" 2238 | dependencies: 2239 | pseudomap "^1.0.2" 2240 | yallist "^2.1.2" 2241 | 2242 | makeerror@1.0.x: 2243 | version "1.0.11" 2244 | resolved "https://registry.yarnpkg.com/makeerror/-/makeerror-1.0.11.tgz#e01a5c9109f2af79660e4e8b9587790184f5a96c" 2245 | dependencies: 2246 | tmpl "1.0.x" 2247 | 2248 | map-cache@^0.2.2: 2249 | version "0.2.2" 2250 | resolved "https://registry.yarnpkg.com/map-cache/-/map-cache-0.2.2.tgz#c32abd0bd6525d9b051645bb4f26ac5dc98a0dbf" 2251 | 2252 | map-visit@^1.0.0: 2253 | version "1.0.0" 2254 | resolved "https://registry.yarnpkg.com/map-visit/-/map-visit-1.0.0.tgz#ecdca8f13144e660f1b5bd41f12f3479d98dfb8f" 2255 | dependencies: 2256 | object-visit "^1.0.0" 2257 | 2258 | mem@^1.1.0: 2259 | version "1.1.0" 2260 | resolved "https://registry.yarnpkg.com/mem/-/mem-1.1.0.tgz#5edd52b485ca1d900fe64895505399a0dfa45f76" 2261 | dependencies: 2262 | mimic-fn "^1.0.0" 2263 | 2264 | merge-stream@^1.0.1: 2265 | version "1.0.1" 2266 | resolved "https://registry.yarnpkg.com/merge-stream/-/merge-stream-1.0.1.tgz#4041202d508a342ba00174008df0c251b8c135e1" 2267 | dependencies: 2268 | readable-stream "^2.0.1" 2269 | 2270 | merge@^1.1.3: 2271 | version "1.2.0" 2272 | resolved "https://registry.yarnpkg.com/merge/-/merge-1.2.0.tgz#7531e39d4949c281a66b8c5a6e0265e8b05894da" 2273 | 2274 | micromatch@^2.3.11: 2275 | version "2.3.11" 2276 | resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-2.3.11.tgz#86677c97d1720b363431d04d0d15293bd38c1565" 2277 | dependencies: 2278 | arr-diff "^2.0.0" 2279 | array-unique "^0.2.1" 2280 | braces "^1.8.2" 2281 | expand-brackets "^0.1.4" 2282 | extglob "^0.3.1" 2283 | filename-regex "^2.0.0" 2284 | is-extglob "^1.0.0" 2285 | is-glob "^2.0.1" 2286 | kind-of "^3.0.2" 2287 | normalize-path "^2.0.1" 2288 | object.omit "^2.0.0" 2289 | parse-glob "^3.0.4" 2290 | regex-cache "^0.4.2" 2291 | 2292 | micromatch@^3.1.4, micromatch@^3.1.8: 2293 | version "3.1.10" 2294 | resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-3.1.10.tgz#70859bc95c9840952f359a068a3fc49f9ecfac23" 2295 | dependencies: 2296 | arr-diff "^4.0.0" 2297 | array-unique "^0.3.2" 2298 | braces "^2.3.1" 2299 | define-property "^2.0.2" 2300 | extend-shallow "^3.0.2" 2301 | extglob "^2.0.4" 2302 | fragment-cache "^0.2.1" 2303 | kind-of "^6.0.2" 2304 | nanomatch "^1.2.9" 2305 | object.pick "^1.3.0" 2306 | regex-not "^1.0.0" 2307 | snapdragon "^0.8.1" 2308 | to-regex "^3.0.2" 2309 | 2310 | mime-db@~1.33.0: 2311 | version "1.33.0" 2312 | resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.33.0.tgz#a3492050a5cb9b63450541e39d9788d2272783db" 2313 | 2314 | mime-types@^2.1.12, mime-types@~2.1.17, mime-types@~2.1.7: 2315 | version "2.1.18" 2316 | resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.18.tgz#6f323f60a83d11146f831ff11fd66e2fe5503bb8" 2317 | dependencies: 2318 | mime-db "~1.33.0" 2319 | 2320 | mimic-fn@^1.0.0: 2321 | version "1.2.0" 2322 | resolved "https://registry.yarnpkg.com/mimic-fn/-/mimic-fn-1.2.0.tgz#820c86a39334640e99516928bd03fca88057d022" 2323 | 2324 | minimatch@^3.0.0, minimatch@^3.0.2, minimatch@^3.0.3, minimatch@^3.0.4: 2325 | version "3.0.4" 2326 | resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.0.4.tgz#5166e286457f03306064be5497e8dbb0c3d32083" 2327 | dependencies: 2328 | brace-expansion "^1.1.7" 2329 | 2330 | minimist@0.0.8: 2331 | version "0.0.8" 2332 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-0.0.8.tgz#857fcabfc3397d2625b8228262e86aa7a011b05d" 2333 | 2334 | minimist@^1.1.1, minimist@^1.2.0: 2335 | version "1.2.0" 2336 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.0.tgz#a35008b20f41383eec1fb914f4cd5df79a264284" 2337 | 2338 | minimist@~0.0.1: 2339 | version "0.0.10" 2340 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-0.0.10.tgz#de3f98543dbf96082be48ad1a0c7cda836301dcf" 2341 | 2342 | mixin-deep@^1.2.0: 2343 | version "1.3.1" 2344 | resolved "https://registry.yarnpkg.com/mixin-deep/-/mixin-deep-1.3.1.tgz#a49e7268dce1a0d9698e45326c5626df3543d0fe" 2345 | dependencies: 2346 | for-in "^1.0.2" 2347 | is-extendable "^1.0.1" 2348 | 2349 | "mkdirp@>=0.5 0", mkdirp@^0.5.1: 2350 | version "0.5.1" 2351 | resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.5.1.tgz#30057438eac6cf7f8c4767f38648d6697d75c903" 2352 | dependencies: 2353 | minimist "0.0.8" 2354 | 2355 | ms@2.0.0: 2356 | version "2.0.0" 2357 | resolved "https://registry.yarnpkg.com/ms/-/ms-2.0.0.tgz#5608aeadfc00be6c2901df5f9861788de0d597c8" 2358 | 2359 | mute-stream@0.0.7: 2360 | version "0.0.7" 2361 | resolved "https://registry.yarnpkg.com/mute-stream/-/mute-stream-0.0.7.tgz#3075ce93bc21b8fab43e1bc4da7e8115ed1e7bab" 2362 | 2363 | nan@^2.3.0: 2364 | version "2.10.0" 2365 | resolved "https://registry.yarnpkg.com/nan/-/nan-2.10.0.tgz#96d0cd610ebd58d4b4de9cc0c6828cda99c7548f" 2366 | 2367 | nanomatch@^1.2.9: 2368 | version "1.2.9" 2369 | resolved "https://registry.yarnpkg.com/nanomatch/-/nanomatch-1.2.9.tgz#879f7150cb2dab7a471259066c104eee6e0fa7c2" 2370 | dependencies: 2371 | arr-diff "^4.0.0" 2372 | array-unique "^0.3.2" 2373 | define-property "^2.0.2" 2374 | extend-shallow "^3.0.2" 2375 | fragment-cache "^0.2.1" 2376 | is-odd "^2.0.0" 2377 | is-windows "^1.0.2" 2378 | kind-of "^6.0.2" 2379 | object.pick "^1.3.0" 2380 | regex-not "^1.0.0" 2381 | snapdragon "^0.8.1" 2382 | to-regex "^3.0.1" 2383 | 2384 | natural-compare@^1.4.0: 2385 | version "1.4.0" 2386 | resolved "https://registry.yarnpkg.com/natural-compare/-/natural-compare-1.4.0.tgz#4abebfeed7541f2c27acfb29bdbbd15c8d5ba4f7" 2387 | 2388 | node-int64@^0.4.0: 2389 | version "0.4.0" 2390 | resolved "https://registry.yarnpkg.com/node-int64/-/node-int64-0.4.0.tgz#87a9065cdb355d3182d8f94ce11188b825c68a3b" 2391 | 2392 | node-notifier@^5.2.1: 2393 | version "5.2.1" 2394 | resolved "https://registry.yarnpkg.com/node-notifier/-/node-notifier-5.2.1.tgz#fa313dd08f5517db0e2502e5758d664ac69f9dea" 2395 | dependencies: 2396 | growly "^1.3.0" 2397 | semver "^5.4.1" 2398 | shellwords "^0.1.1" 2399 | which "^1.3.0" 2400 | 2401 | node-pre-gyp@^0.6.39: 2402 | version "0.6.39" 2403 | resolved "https://registry.yarnpkg.com/node-pre-gyp/-/node-pre-gyp-0.6.39.tgz#c00e96860b23c0e1420ac7befc5044e1d78d8649" 2404 | dependencies: 2405 | detect-libc "^1.0.2" 2406 | hawk "3.1.3" 2407 | mkdirp "^0.5.1" 2408 | nopt "^4.0.1" 2409 | npmlog "^4.0.2" 2410 | rc "^1.1.7" 2411 | request "2.81.0" 2412 | rimraf "^2.6.1" 2413 | semver "^5.3.0" 2414 | tar "^2.2.1" 2415 | tar-pack "^3.4.0" 2416 | 2417 | nopt@^4.0.1: 2418 | version "4.0.1" 2419 | resolved "https://registry.yarnpkg.com/nopt/-/nopt-4.0.1.tgz#d0d4685afd5415193c8c7505602d0d17cd64474d" 2420 | dependencies: 2421 | abbrev "1" 2422 | osenv "^0.1.4" 2423 | 2424 | normalize-package-data@^2.3.2: 2425 | version "2.4.0" 2426 | resolved "https://registry.yarnpkg.com/normalize-package-data/-/normalize-package-data-2.4.0.tgz#12f95a307d58352075a04907b84ac8be98ac012f" 2427 | dependencies: 2428 | hosted-git-info "^2.1.4" 2429 | is-builtin-module "^1.0.0" 2430 | semver "2 || 3 || 4 || 5" 2431 | validate-npm-package-license "^3.0.1" 2432 | 2433 | normalize-path@^2.0.1, normalize-path@^2.1.1: 2434 | version "2.1.1" 2435 | resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-2.1.1.tgz#1ab28b556e198363a8c1a6f7e6fa20137fe6aed9" 2436 | dependencies: 2437 | remove-trailing-separator "^1.0.1" 2438 | 2439 | npm-run-path@^2.0.0: 2440 | version "2.0.2" 2441 | resolved "https://registry.yarnpkg.com/npm-run-path/-/npm-run-path-2.0.2.tgz#35a9232dfa35d7067b4cb2ddf2357b1871536c5f" 2442 | dependencies: 2443 | path-key "^2.0.0" 2444 | 2445 | npmlog@^4.0.2: 2446 | version "4.1.2" 2447 | resolved "https://registry.yarnpkg.com/npmlog/-/npmlog-4.1.2.tgz#08a7f2a8bf734604779a9efa4ad5cc717abb954b" 2448 | dependencies: 2449 | are-we-there-yet "~1.1.2" 2450 | console-control-strings "~1.1.0" 2451 | gauge "~2.7.3" 2452 | set-blocking "~2.0.0" 2453 | 2454 | number-is-nan@^1.0.0: 2455 | version "1.0.1" 2456 | resolved "https://registry.yarnpkg.com/number-is-nan/-/number-is-nan-1.0.1.tgz#097b602b53422a522c1afb8790318336941a011d" 2457 | 2458 | nwmatcher@^1.4.3: 2459 | version "1.4.4" 2460 | resolved "https://registry.yarnpkg.com/nwmatcher/-/nwmatcher-1.4.4.tgz#2285631f34a95f0d0395cd900c96ed39b58f346e" 2461 | 2462 | oauth-sign@~0.8.1, oauth-sign@~0.8.2: 2463 | version "0.8.2" 2464 | resolved "https://registry.yarnpkg.com/oauth-sign/-/oauth-sign-0.8.2.tgz#46a6ab7f0aead8deae9ec0565780b7d4efeb9d43" 2465 | 2466 | object-assign@^4.0.1, object-assign@^4.1.0: 2467 | version "4.1.1" 2468 | resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863" 2469 | 2470 | object-copy@^0.1.0: 2471 | version "0.1.0" 2472 | resolved "https://registry.yarnpkg.com/object-copy/-/object-copy-0.1.0.tgz#7e7d858b781bd7c991a41ba975ed3812754e998c" 2473 | dependencies: 2474 | copy-descriptor "^0.1.0" 2475 | define-property "^0.2.5" 2476 | kind-of "^3.0.3" 2477 | 2478 | object-keys@^1.0.8: 2479 | version "1.0.11" 2480 | resolved "https://registry.yarnpkg.com/object-keys/-/object-keys-1.0.11.tgz#c54601778ad560f1142ce0e01bcca8b56d13426d" 2481 | 2482 | object-visit@^1.0.0: 2483 | version "1.0.1" 2484 | resolved "https://registry.yarnpkg.com/object-visit/-/object-visit-1.0.1.tgz#f79c4493af0c5377b59fe39d395e41042dd045bb" 2485 | dependencies: 2486 | isobject "^3.0.0" 2487 | 2488 | object.getownpropertydescriptors@^2.0.3: 2489 | version "2.0.3" 2490 | resolved "https://registry.yarnpkg.com/object.getownpropertydescriptors/-/object.getownpropertydescriptors-2.0.3.tgz#8758c846f5b407adab0f236e0986f14b051caa16" 2491 | dependencies: 2492 | define-properties "^1.1.2" 2493 | es-abstract "^1.5.1" 2494 | 2495 | object.omit@^2.0.0: 2496 | version "2.0.1" 2497 | resolved "https://registry.yarnpkg.com/object.omit/-/object.omit-2.0.1.tgz#1a9c744829f39dbb858c76ca3579ae2a54ebd1fa" 2498 | dependencies: 2499 | for-own "^0.1.4" 2500 | is-extendable "^0.1.1" 2501 | 2502 | object.pick@^1.3.0: 2503 | version "1.3.0" 2504 | resolved "https://registry.yarnpkg.com/object.pick/-/object.pick-1.3.0.tgz#87a10ac4c1694bd2e1cbf53591a66141fb5dd747" 2505 | dependencies: 2506 | isobject "^3.0.1" 2507 | 2508 | once@^1.3.0, once@^1.3.3, once@^1.4.0: 2509 | version "1.4.0" 2510 | resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1" 2511 | dependencies: 2512 | wrappy "1" 2513 | 2514 | onetime@^2.0.0: 2515 | version "2.0.1" 2516 | resolved "https://registry.yarnpkg.com/onetime/-/onetime-2.0.1.tgz#067428230fd67443b2794b22bba528b6867962d4" 2517 | dependencies: 2518 | mimic-fn "^1.0.0" 2519 | 2520 | optimist@^0.6.1: 2521 | version "0.6.1" 2522 | resolved "https://registry.yarnpkg.com/optimist/-/optimist-0.6.1.tgz#da3ea74686fa21a19a111c326e90eb15a0196686" 2523 | dependencies: 2524 | minimist "~0.0.1" 2525 | wordwrap "~0.0.2" 2526 | 2527 | optionator@^0.8.1, optionator@^0.8.2: 2528 | version "0.8.2" 2529 | resolved "https://registry.yarnpkg.com/optionator/-/optionator-0.8.2.tgz#364c5e409d3f4d6301d6c0b4c05bba50180aeb64" 2530 | dependencies: 2531 | deep-is "~0.1.3" 2532 | fast-levenshtein "~2.0.4" 2533 | levn "~0.3.0" 2534 | prelude-ls "~1.1.2" 2535 | type-check "~0.3.2" 2536 | wordwrap "~1.0.0" 2537 | 2538 | os-homedir@^1.0.0: 2539 | version "1.0.2" 2540 | resolved "https://registry.yarnpkg.com/os-homedir/-/os-homedir-1.0.2.tgz#ffbc4988336e0e833de0c168c7ef152121aa7fb3" 2541 | 2542 | os-locale@^2.0.0: 2543 | version "2.1.0" 2544 | resolved "https://registry.yarnpkg.com/os-locale/-/os-locale-2.1.0.tgz#42bc2900a6b5b8bd17376c8e882b65afccf24bf2" 2545 | dependencies: 2546 | execa "^0.7.0" 2547 | lcid "^1.0.0" 2548 | mem "^1.1.0" 2549 | 2550 | os-tmpdir@^1.0.0, os-tmpdir@^1.0.1, os-tmpdir@~1.0.2: 2551 | version "1.0.2" 2552 | resolved "https://registry.yarnpkg.com/os-tmpdir/-/os-tmpdir-1.0.2.tgz#bbe67406c79aa85c5cfec766fe5734555dfa1274" 2553 | 2554 | osenv@^0.1.4: 2555 | version "0.1.5" 2556 | resolved "https://registry.yarnpkg.com/osenv/-/osenv-0.1.5.tgz#85cdfafaeb28e8677f416e287592b5f3f49ea410" 2557 | dependencies: 2558 | os-homedir "^1.0.0" 2559 | os-tmpdir "^1.0.0" 2560 | 2561 | p-finally@^1.0.0: 2562 | version "1.0.0" 2563 | resolved "https://registry.yarnpkg.com/p-finally/-/p-finally-1.0.0.tgz#3fbcfb15b899a44123b34b6dcc18b724336a2cae" 2564 | 2565 | p-limit@^1.1.0: 2566 | version "1.2.0" 2567 | resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-1.2.0.tgz#0e92b6bedcb59f022c13d0f1949dc82d15909f1c" 2568 | dependencies: 2569 | p-try "^1.0.0" 2570 | 2571 | p-locate@^2.0.0: 2572 | version "2.0.0" 2573 | resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-2.0.0.tgz#20a0103b222a70c8fd39cc2e580680f3dde5ec43" 2574 | dependencies: 2575 | p-limit "^1.1.0" 2576 | 2577 | p-try@^1.0.0: 2578 | version "1.0.0" 2579 | resolved "https://registry.yarnpkg.com/p-try/-/p-try-1.0.0.tgz#cbc79cdbaf8fd4228e13f621f2b1a237c1b207b3" 2580 | 2581 | parse-glob@^3.0.4: 2582 | version "3.0.4" 2583 | resolved "https://registry.yarnpkg.com/parse-glob/-/parse-glob-3.0.4.tgz#b2c376cfb11f35513badd173ef0bb6e3a388391c" 2584 | dependencies: 2585 | glob-base "^0.3.0" 2586 | is-dotfile "^1.0.0" 2587 | is-extglob "^1.0.0" 2588 | is-glob "^2.0.0" 2589 | 2590 | parse-json@^2.2.0: 2591 | version "2.2.0" 2592 | resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-2.2.0.tgz#f480f40434ef80741f8469099f8dea18f55a4dc9" 2593 | dependencies: 2594 | error-ex "^1.2.0" 2595 | 2596 | parse5@4.0.0: 2597 | version "4.0.0" 2598 | resolved "https://registry.yarnpkg.com/parse5/-/parse5-4.0.0.tgz#6d78656e3da8d78b4ec0b906f7c08ef1dfe3f608" 2599 | 2600 | pascalcase@^0.1.1: 2601 | version "0.1.1" 2602 | resolved "https://registry.yarnpkg.com/pascalcase/-/pascalcase-0.1.1.tgz#b363e55e8006ca6fe21784d2db22bd15d7917f14" 2603 | 2604 | path-exists@^2.0.0: 2605 | version "2.1.0" 2606 | resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-2.1.0.tgz#0feb6c64f0fc518d9a754dd5efb62c7022761f4b" 2607 | dependencies: 2608 | pinkie-promise "^2.0.0" 2609 | 2610 | path-exists@^3.0.0: 2611 | version "3.0.0" 2612 | resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-3.0.0.tgz#ce0ebeaa5f78cb18925ea7d810d7b59b010fd515" 2613 | 2614 | path-is-absolute@^1.0.0, path-is-absolute@^1.0.1: 2615 | version "1.0.1" 2616 | resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f" 2617 | 2618 | path-is-inside@^1.0.1, path-is-inside@^1.0.2: 2619 | version "1.0.2" 2620 | resolved "https://registry.yarnpkg.com/path-is-inside/-/path-is-inside-1.0.2.tgz#365417dede44430d1c11af61027facf074bdfc53" 2621 | 2622 | path-key@^2.0.0: 2623 | version "2.0.1" 2624 | resolved "https://registry.yarnpkg.com/path-key/-/path-key-2.0.1.tgz#411cadb574c5a140d3a4b1910d40d80cc9f40b40" 2625 | 2626 | path-parse@^1.0.5: 2627 | version "1.0.5" 2628 | resolved "https://registry.yarnpkg.com/path-parse/-/path-parse-1.0.5.tgz#3c1adf871ea9cd6c9431b6ea2bd74a0ff055c4c1" 2629 | 2630 | path-type@^1.0.0: 2631 | version "1.1.0" 2632 | resolved "https://registry.yarnpkg.com/path-type/-/path-type-1.1.0.tgz#59c44f7ee491da704da415da5a4070ba4f8fe441" 2633 | dependencies: 2634 | graceful-fs "^4.1.2" 2635 | pify "^2.0.0" 2636 | pinkie-promise "^2.0.0" 2637 | 2638 | performance-now@^0.2.0: 2639 | version "0.2.0" 2640 | resolved "https://registry.yarnpkg.com/performance-now/-/performance-now-0.2.0.tgz#33ef30c5c77d4ea21c5a53869d91b56d8f2555e5" 2641 | 2642 | performance-now@^2.1.0: 2643 | version "2.1.0" 2644 | resolved "https://registry.yarnpkg.com/performance-now/-/performance-now-2.1.0.tgz#6309f4e0e5fa913ec1c69307ae364b4b377c9e7b" 2645 | 2646 | pify@^2.0.0: 2647 | version "2.3.0" 2648 | resolved "https://registry.yarnpkg.com/pify/-/pify-2.3.0.tgz#ed141a6ac043a849ea588498e7dca8b15330e90c" 2649 | 2650 | pinkie-promise@^2.0.0: 2651 | version "2.0.1" 2652 | resolved "https://registry.yarnpkg.com/pinkie-promise/-/pinkie-promise-2.0.1.tgz#2135d6dfa7a358c069ac9b178776288228450ffa" 2653 | dependencies: 2654 | pinkie "^2.0.0" 2655 | 2656 | pinkie@^2.0.0: 2657 | version "2.0.4" 2658 | resolved "https://registry.yarnpkg.com/pinkie/-/pinkie-2.0.4.tgz#72556b80cfa0d48a974e80e77248e80ed4f7f870" 2659 | 2660 | pkg-dir@^2.0.0: 2661 | version "2.0.0" 2662 | resolved "https://registry.yarnpkg.com/pkg-dir/-/pkg-dir-2.0.0.tgz#f6d5d1109e19d63edf428e0bd57e12777615334b" 2663 | dependencies: 2664 | find-up "^2.1.0" 2665 | 2666 | pluralize@^7.0.0: 2667 | version "7.0.0" 2668 | resolved "https://registry.yarnpkg.com/pluralize/-/pluralize-7.0.0.tgz#298b89df8b93b0221dbf421ad2b1b1ea23fc6777" 2669 | 2670 | pn@^1.1.0: 2671 | version "1.1.0" 2672 | resolved "https://registry.yarnpkg.com/pn/-/pn-1.1.0.tgz#e2f4cef0e219f463c179ab37463e4e1ecdccbafb" 2673 | 2674 | posix-character-classes@^0.1.0: 2675 | version "0.1.1" 2676 | resolved "https://registry.yarnpkg.com/posix-character-classes/-/posix-character-classes-0.1.1.tgz#01eac0fe3b5af71a2a6c02feabb8c1fef7e00eab" 2677 | 2678 | prelude-ls@~1.1.2: 2679 | version "1.1.2" 2680 | resolved "https://registry.yarnpkg.com/prelude-ls/-/prelude-ls-1.1.2.tgz#21932a549f5e52ffd9a827f570e04be62a97da54" 2681 | 2682 | preserve@^0.2.0: 2683 | version "0.2.0" 2684 | resolved "https://registry.yarnpkg.com/preserve/-/preserve-0.2.0.tgz#815ed1f6ebc65926f865b310c0713bcb3315ce4b" 2685 | 2686 | pretty-format@^22.4.3: 2687 | version "22.4.3" 2688 | resolved "https://registry.yarnpkg.com/pretty-format/-/pretty-format-22.4.3.tgz#f873d780839a9c02e9664c8a082e9ee79eaac16f" 2689 | dependencies: 2690 | ansi-regex "^3.0.0" 2691 | ansi-styles "^3.2.0" 2692 | 2693 | private@^0.1.7: 2694 | version "0.1.8" 2695 | resolved "https://registry.yarnpkg.com/private/-/private-0.1.8.tgz#2381edb3689f7a53d653190060fcf822d2f368ff" 2696 | 2697 | process-nextick-args@~2.0.0: 2698 | version "2.0.0" 2699 | resolved "https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-2.0.0.tgz#a37d732f4271b4ab1ad070d35508e8290788ffaa" 2700 | 2701 | progress@^2.0.0: 2702 | version "2.0.0" 2703 | resolved "https://registry.yarnpkg.com/progress/-/progress-2.0.0.tgz#8a1be366bf8fc23db2bd23f10c6fe920b4389d1f" 2704 | 2705 | pseudomap@^1.0.2: 2706 | version "1.0.2" 2707 | resolved "https://registry.yarnpkg.com/pseudomap/-/pseudomap-1.0.2.tgz#f052a28da70e618917ef0a8ac34c1ae5a68286b3" 2708 | 2709 | punycode@^1.4.1: 2710 | version "1.4.1" 2711 | resolved "https://registry.yarnpkg.com/punycode/-/punycode-1.4.1.tgz#c0d5a63b2718800ad8e1eb0fa5269c84dd41845e" 2712 | 2713 | punycode@^2.1.0: 2714 | version "2.1.0" 2715 | resolved "https://registry.yarnpkg.com/punycode/-/punycode-2.1.0.tgz#5f863edc89b96db09074bad7947bf09056ca4e7d" 2716 | 2717 | qs@~6.4.0: 2718 | version "6.4.0" 2719 | resolved "https://registry.yarnpkg.com/qs/-/qs-6.4.0.tgz#13e26d28ad6b0ffaa91312cd3bf708ed351e7233" 2720 | 2721 | qs@~6.5.1: 2722 | version "6.5.1" 2723 | resolved "https://registry.yarnpkg.com/qs/-/qs-6.5.1.tgz#349cdf6eef89ec45c12d7d5eb3fc0c870343a6d8" 2724 | 2725 | randomatic@^1.1.3: 2726 | version "1.1.7" 2727 | resolved "https://registry.yarnpkg.com/randomatic/-/randomatic-1.1.7.tgz#c7abe9cc8b87c0baa876b19fde83fd464797e38c" 2728 | dependencies: 2729 | is-number "^3.0.0" 2730 | kind-of "^4.0.0" 2731 | 2732 | rc@^1.1.7: 2733 | version "1.2.6" 2734 | resolved "https://registry.yarnpkg.com/rc/-/rc-1.2.6.tgz#eb18989c6d4f4f162c399f79ddd29f3835568092" 2735 | dependencies: 2736 | deep-extend "~0.4.0" 2737 | ini "~1.3.0" 2738 | minimist "^1.2.0" 2739 | strip-json-comments "~2.0.1" 2740 | 2741 | read-pkg-up@^1.0.1: 2742 | version "1.0.1" 2743 | resolved "https://registry.yarnpkg.com/read-pkg-up/-/read-pkg-up-1.0.1.tgz#9d63c13276c065918d57f002a57f40a1b643fb02" 2744 | dependencies: 2745 | find-up "^1.0.0" 2746 | read-pkg "^1.0.0" 2747 | 2748 | read-pkg@^1.0.0: 2749 | version "1.1.0" 2750 | resolved "https://registry.yarnpkg.com/read-pkg/-/read-pkg-1.1.0.tgz#f5ffaa5ecd29cb31c0474bca7d756b6bb29e3f28" 2751 | dependencies: 2752 | load-json-file "^1.0.0" 2753 | normalize-package-data "^2.3.2" 2754 | path-type "^1.0.0" 2755 | 2756 | readable-stream@^2.0.1, readable-stream@^2.0.6, readable-stream@^2.1.4, readable-stream@^2.2.2: 2757 | version "2.3.5" 2758 | resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.3.5.tgz#b4f85003a938cbb6ecbce2a124fb1012bd1a838d" 2759 | dependencies: 2760 | core-util-is "~1.0.0" 2761 | inherits "~2.0.3" 2762 | isarray "~1.0.0" 2763 | process-nextick-args "~2.0.0" 2764 | safe-buffer "~5.1.1" 2765 | string_decoder "~1.0.3" 2766 | util-deprecate "~1.0.1" 2767 | 2768 | readline-sync@^1.4.7, readline-sync@^1.4.9: 2769 | version "1.4.9" 2770 | resolved "https://registry.yarnpkg.com/readline-sync/-/readline-sync-1.4.9.tgz#3eda8e65f23cd2a17e61301b1f0003396af5ecda" 2771 | 2772 | realpath-native@^1.0.0: 2773 | version "1.0.0" 2774 | resolved "https://registry.yarnpkg.com/realpath-native/-/realpath-native-1.0.0.tgz#7885721a83b43bd5327609f0ddecb2482305fdf0" 2775 | dependencies: 2776 | util.promisify "^1.0.0" 2777 | 2778 | regenerator-runtime@^0.11.0: 2779 | version "0.11.1" 2780 | resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.11.1.tgz#be05ad7f9bf7d22e056f9726cee5017fbf19e2e9" 2781 | 2782 | regex-cache@^0.4.2: 2783 | version "0.4.4" 2784 | resolved "https://registry.yarnpkg.com/regex-cache/-/regex-cache-0.4.4.tgz#75bdc58a2a1496cec48a12835bc54c8d562336dd" 2785 | dependencies: 2786 | is-equal-shallow "^0.1.3" 2787 | 2788 | regex-not@^1.0.0, regex-not@^1.0.2: 2789 | version "1.0.2" 2790 | resolved "https://registry.yarnpkg.com/regex-not/-/regex-not-1.0.2.tgz#1f4ece27e00b0b65e0247a6810e6a85d83a5752c" 2791 | dependencies: 2792 | extend-shallow "^3.0.2" 2793 | safe-regex "^1.1.0" 2794 | 2795 | regexpp@^1.0.1: 2796 | version "1.1.0" 2797 | resolved "https://registry.yarnpkg.com/regexpp/-/regexpp-1.1.0.tgz#0e3516dd0b7904f413d2d4193dce4618c3a689ab" 2798 | 2799 | remove-trailing-separator@^1.0.1: 2800 | version "1.1.0" 2801 | resolved "https://registry.yarnpkg.com/remove-trailing-separator/-/remove-trailing-separator-1.1.0.tgz#c24bce2a283adad5bc3f58e0d48249b92379d8ef" 2802 | 2803 | repeat-element@^1.1.2: 2804 | version "1.1.2" 2805 | resolved "https://registry.yarnpkg.com/repeat-element/-/repeat-element-1.1.2.tgz#ef089a178d1483baae4d93eb98b4f9e4e11d990a" 2806 | 2807 | repeat-string@^1.5.2, repeat-string@^1.6.1: 2808 | version "1.6.1" 2809 | resolved "https://registry.yarnpkg.com/repeat-string/-/repeat-string-1.6.1.tgz#8dcae470e1c88abc2d600fff4a776286da75e637" 2810 | 2811 | repeating@^2.0.0: 2812 | version "2.0.1" 2813 | resolved "https://registry.yarnpkg.com/repeating/-/repeating-2.0.1.tgz#5214c53a926d3552707527fbab415dbc08d06dda" 2814 | dependencies: 2815 | is-finite "^1.0.0" 2816 | 2817 | request-promise-core@1.1.1: 2818 | version "1.1.1" 2819 | resolved "https://registry.yarnpkg.com/request-promise-core/-/request-promise-core-1.1.1.tgz#3eee00b2c5aa83239cfb04c5700da36f81cd08b6" 2820 | dependencies: 2821 | lodash "^4.13.1" 2822 | 2823 | request-promise-native@^1.0.5: 2824 | version "1.0.5" 2825 | resolved "https://registry.yarnpkg.com/request-promise-native/-/request-promise-native-1.0.5.tgz#5281770f68e0c9719e5163fd3fab482215f4fda5" 2826 | dependencies: 2827 | request-promise-core "1.1.1" 2828 | stealthy-require "^1.1.0" 2829 | tough-cookie ">=2.3.3" 2830 | 2831 | request@2.81.0: 2832 | version "2.81.0" 2833 | resolved "https://registry.yarnpkg.com/request/-/request-2.81.0.tgz#c6928946a0e06c5f8d6f8a9333469ffda46298a0" 2834 | dependencies: 2835 | aws-sign2 "~0.6.0" 2836 | aws4 "^1.2.1" 2837 | caseless "~0.12.0" 2838 | combined-stream "~1.0.5" 2839 | extend "~3.0.0" 2840 | forever-agent "~0.6.1" 2841 | form-data "~2.1.1" 2842 | har-validator "~4.2.1" 2843 | hawk "~3.1.3" 2844 | http-signature "~1.1.0" 2845 | is-typedarray "~1.0.0" 2846 | isstream "~0.1.2" 2847 | json-stringify-safe "~5.0.1" 2848 | mime-types "~2.1.7" 2849 | oauth-sign "~0.8.1" 2850 | performance-now "^0.2.0" 2851 | qs "~6.4.0" 2852 | safe-buffer "^5.0.1" 2853 | stringstream "~0.0.4" 2854 | tough-cookie "~2.3.0" 2855 | tunnel-agent "^0.6.0" 2856 | uuid "^3.0.0" 2857 | 2858 | request@^2.83.0: 2859 | version "2.85.0" 2860 | resolved "https://registry.yarnpkg.com/request/-/request-2.85.0.tgz#5a03615a47c61420b3eb99b7dba204f83603e1fa" 2861 | dependencies: 2862 | aws-sign2 "~0.7.0" 2863 | aws4 "^1.6.0" 2864 | caseless "~0.12.0" 2865 | combined-stream "~1.0.5" 2866 | extend "~3.0.1" 2867 | forever-agent "~0.6.1" 2868 | form-data "~2.3.1" 2869 | har-validator "~5.0.3" 2870 | hawk "~6.0.2" 2871 | http-signature "~1.2.0" 2872 | is-typedarray "~1.0.0" 2873 | isstream "~0.1.2" 2874 | json-stringify-safe "~5.0.1" 2875 | mime-types "~2.1.17" 2876 | oauth-sign "~0.8.2" 2877 | performance-now "^2.1.0" 2878 | qs "~6.5.1" 2879 | safe-buffer "^5.1.1" 2880 | stringstream "~0.0.5" 2881 | tough-cookie "~2.3.3" 2882 | tunnel-agent "^0.6.0" 2883 | uuid "^3.1.0" 2884 | 2885 | require-directory@^2.1.1: 2886 | version "2.1.1" 2887 | resolved "https://registry.yarnpkg.com/require-directory/-/require-directory-2.1.1.tgz#8c64ad5fd30dab1c976e2344ffe7f792a6a6df42" 2888 | 2889 | require-main-filename@^1.0.1: 2890 | version "1.0.1" 2891 | resolved "https://registry.yarnpkg.com/require-main-filename/-/require-main-filename-1.0.1.tgz#97f717b69d48784f5f526a6c5aa8ffdda055a4d1" 2892 | 2893 | require-uncached@^1.0.3: 2894 | version "1.0.3" 2895 | resolved "https://registry.yarnpkg.com/require-uncached/-/require-uncached-1.0.3.tgz#4e0d56d6c9662fd31e43011c4b95aa49955421d3" 2896 | dependencies: 2897 | caller-path "^0.1.0" 2898 | resolve-from "^1.0.0" 2899 | 2900 | resolve-cwd@^2.0.0: 2901 | version "2.0.0" 2902 | resolved "https://registry.yarnpkg.com/resolve-cwd/-/resolve-cwd-2.0.0.tgz#00a9f7387556e27038eae232caa372a6a59b665a" 2903 | dependencies: 2904 | resolve-from "^3.0.0" 2905 | 2906 | resolve-from@^1.0.0: 2907 | version "1.0.1" 2908 | resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-1.0.1.tgz#26cbfe935d1aeeeabb29bc3fe5aeb01e93d44226" 2909 | 2910 | resolve-from@^3.0.0: 2911 | version "3.0.0" 2912 | resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-3.0.0.tgz#b22c7af7d9d6881bc8b6e653335eebcb0a188748" 2913 | 2914 | resolve-url@^0.2.1: 2915 | version "0.2.1" 2916 | resolved "https://registry.yarnpkg.com/resolve-url/-/resolve-url-0.2.1.tgz#2c637fe77c893afd2a663fe21aa9080068e2052a" 2917 | 2918 | resolve@1.1.7: 2919 | version "1.1.7" 2920 | resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.1.7.tgz#203114d82ad2c5ed9e8e0411b3932875e889e97b" 2921 | 2922 | restore-cursor@^2.0.0: 2923 | version "2.0.0" 2924 | resolved "https://registry.yarnpkg.com/restore-cursor/-/restore-cursor-2.0.0.tgz#9f7ee287f82fd326d4fd162923d62129eee0dfaf" 2925 | dependencies: 2926 | onetime "^2.0.0" 2927 | signal-exit "^3.0.2" 2928 | 2929 | ret@~0.1.10: 2930 | version "0.1.15" 2931 | resolved "https://registry.yarnpkg.com/ret/-/ret-0.1.15.tgz#b8a4825d5bdb1fc3f6f53c2bc33f81388681c7bc" 2932 | 2933 | right-align@^0.1.1: 2934 | version "0.1.3" 2935 | resolved "https://registry.yarnpkg.com/right-align/-/right-align-0.1.3.tgz#61339b722fe6a3515689210d24e14c96148613ef" 2936 | dependencies: 2937 | align-text "^0.1.1" 2938 | 2939 | rimraf@2, rimraf@^2.2.8, rimraf@^2.5.1, rimraf@^2.5.4, rimraf@^2.6.1: 2940 | version "2.6.2" 2941 | resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.6.2.tgz#2ed8150d24a16ea8651e6d6ef0f47c4158ce7a36" 2942 | dependencies: 2943 | glob "^7.0.5" 2944 | 2945 | run-async@^2.2.0: 2946 | version "2.3.0" 2947 | resolved "https://registry.yarnpkg.com/run-async/-/run-async-2.3.0.tgz#0371ab4ae0bdd720d4166d7dfda64ff7a445a6c0" 2948 | dependencies: 2949 | is-promise "^2.1.0" 2950 | 2951 | rx-lite-aggregates@^4.0.8: 2952 | version "4.0.8" 2953 | resolved "https://registry.yarnpkg.com/rx-lite-aggregates/-/rx-lite-aggregates-4.0.8.tgz#753b87a89a11c95467c4ac1626c4efc4e05c67be" 2954 | dependencies: 2955 | rx-lite "*" 2956 | 2957 | rx-lite@*, rx-lite@^4.0.8: 2958 | version "4.0.8" 2959 | resolved "https://registry.yarnpkg.com/rx-lite/-/rx-lite-4.0.8.tgz#0b1e11af8bc44836f04a6407e92da42467b79444" 2960 | 2961 | safe-buffer@^5.0.1, safe-buffer@^5.1.1, safe-buffer@~5.1.0, safe-buffer@~5.1.1: 2962 | version "5.1.1" 2963 | resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.1.1.tgz#893312af69b2123def71f57889001671eeb2c853" 2964 | 2965 | safe-regex@^1.1.0: 2966 | version "1.1.0" 2967 | resolved "https://registry.yarnpkg.com/safe-regex/-/safe-regex-1.1.0.tgz#40a3669f3b077d1e943d44629e157dd48023bf2e" 2968 | dependencies: 2969 | ret "~0.1.10" 2970 | 2971 | sane@^2.0.0: 2972 | version "2.5.0" 2973 | resolved "https://registry.yarnpkg.com/sane/-/sane-2.5.0.tgz#6359cd676f5efd9988b264d8ce3b827dd6b27bec" 2974 | dependencies: 2975 | anymatch "^2.0.0" 2976 | exec-sh "^0.2.0" 2977 | fb-watchman "^2.0.0" 2978 | micromatch "^3.1.4" 2979 | minimist "^1.1.1" 2980 | walker "~1.0.5" 2981 | watch "~0.18.0" 2982 | optionalDependencies: 2983 | fsevents "^1.1.1" 2984 | 2985 | sax@^1.2.4: 2986 | version "1.2.4" 2987 | resolved "https://registry.yarnpkg.com/sax/-/sax-1.2.4.tgz#2816234e2378bddc4e5354fab5caa895df7100d9" 2988 | 2989 | "semver@2 || 3 || 4 || 5", semver@^5.3.0, semver@^5.4.1: 2990 | version "5.5.0" 2991 | resolved "https://registry.yarnpkg.com/semver/-/semver-5.5.0.tgz#dc4bbc7a6ca9d916dee5d43516f0092b58f7b8ab" 2992 | 2993 | set-blocking@^2.0.0, set-blocking@~2.0.0: 2994 | version "2.0.0" 2995 | resolved "https://registry.yarnpkg.com/set-blocking/-/set-blocking-2.0.0.tgz#045f9782d011ae9a6803ddd382b24392b3d890f7" 2996 | 2997 | set-value@^0.4.3: 2998 | version "0.4.3" 2999 | resolved "https://registry.yarnpkg.com/set-value/-/set-value-0.4.3.tgz#7db08f9d3d22dc7f78e53af3c3bf4666ecdfccf1" 3000 | dependencies: 3001 | extend-shallow "^2.0.1" 3002 | is-extendable "^0.1.1" 3003 | is-plain-object "^2.0.1" 3004 | to-object-path "^0.3.0" 3005 | 3006 | set-value@^2.0.0: 3007 | version "2.0.0" 3008 | resolved "https://registry.yarnpkg.com/set-value/-/set-value-2.0.0.tgz#71ae4a88f0feefbbf52d1ea604f3fb315ebb6274" 3009 | dependencies: 3010 | extend-shallow "^2.0.1" 3011 | is-extendable "^0.1.1" 3012 | is-plain-object "^2.0.3" 3013 | split-string "^3.0.1" 3014 | 3015 | shebang-command@^1.2.0: 3016 | version "1.2.0" 3017 | resolved "https://registry.yarnpkg.com/shebang-command/-/shebang-command-1.2.0.tgz#44aac65b695b03398968c39f363fee5deafdf1ea" 3018 | dependencies: 3019 | shebang-regex "^1.0.0" 3020 | 3021 | shebang-regex@^1.0.0: 3022 | version "1.0.0" 3023 | resolved "https://registry.yarnpkg.com/shebang-regex/-/shebang-regex-1.0.0.tgz#da42f49740c0b42db2ca9728571cb190c98efea3" 3024 | 3025 | shellwords@^0.1.1: 3026 | version "0.1.1" 3027 | resolved "https://registry.yarnpkg.com/shellwords/-/shellwords-0.1.1.tgz#d6b9181c1a48d397324c84871efbcfc73fc0654b" 3028 | 3029 | signal-exit@^3.0.0, signal-exit@^3.0.2: 3030 | version "3.0.2" 3031 | resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.2.tgz#b5fdc08f1287ea1178628e415e25132b73646c6d" 3032 | 3033 | slash@^1.0.0: 3034 | version "1.0.0" 3035 | resolved "https://registry.yarnpkg.com/slash/-/slash-1.0.0.tgz#c41f2f6c39fc16d1cd17ad4b5d896114ae470d55" 3036 | 3037 | slice-ansi@1.0.0: 3038 | version "1.0.0" 3039 | resolved "https://registry.yarnpkg.com/slice-ansi/-/slice-ansi-1.0.0.tgz#044f1a49d8842ff307aad6b505ed178bd950134d" 3040 | dependencies: 3041 | is-fullwidth-code-point "^2.0.0" 3042 | 3043 | snapdragon-node@^2.0.1: 3044 | version "2.1.1" 3045 | resolved "https://registry.yarnpkg.com/snapdragon-node/-/snapdragon-node-2.1.1.tgz#6c175f86ff14bdb0724563e8f3c1b021a286853b" 3046 | dependencies: 3047 | define-property "^1.0.0" 3048 | isobject "^3.0.0" 3049 | snapdragon-util "^3.0.1" 3050 | 3051 | snapdragon-util@^3.0.1: 3052 | version "3.0.1" 3053 | resolved "https://registry.yarnpkg.com/snapdragon-util/-/snapdragon-util-3.0.1.tgz#f956479486f2acd79700693f6f7b805e45ab56e2" 3054 | dependencies: 3055 | kind-of "^3.2.0" 3056 | 3057 | snapdragon@^0.8.1: 3058 | version "0.8.2" 3059 | resolved "https://registry.yarnpkg.com/snapdragon/-/snapdragon-0.8.2.tgz#64922e7c565b0e14204ba1aa7d6964278d25182d" 3060 | dependencies: 3061 | base "^0.11.1" 3062 | debug "^2.2.0" 3063 | define-property "^0.2.5" 3064 | extend-shallow "^2.0.1" 3065 | map-cache "^0.2.2" 3066 | source-map "^0.5.6" 3067 | source-map-resolve "^0.5.0" 3068 | use "^3.1.0" 3069 | 3070 | sntp@1.x.x: 3071 | version "1.0.9" 3072 | resolved "https://registry.yarnpkg.com/sntp/-/sntp-1.0.9.tgz#6541184cc90aeea6c6e7b35e2659082443c66198" 3073 | dependencies: 3074 | hoek "2.x.x" 3075 | 3076 | sntp@2.x.x: 3077 | version "2.1.0" 3078 | resolved "https://registry.yarnpkg.com/sntp/-/sntp-2.1.0.tgz#2c6cec14fedc2222739caf9b5c3d85d1cc5a2cc8" 3079 | dependencies: 3080 | hoek "4.x.x" 3081 | 3082 | source-map-resolve@^0.5.0: 3083 | version "0.5.1" 3084 | resolved "https://registry.yarnpkg.com/source-map-resolve/-/source-map-resolve-0.5.1.tgz#7ad0f593f2281598e854df80f19aae4b92d7a11a" 3085 | dependencies: 3086 | atob "^2.0.0" 3087 | decode-uri-component "^0.2.0" 3088 | resolve-url "^0.2.1" 3089 | source-map-url "^0.4.0" 3090 | urix "^0.1.0" 3091 | 3092 | source-map-support@^0.4.15: 3093 | version "0.4.18" 3094 | resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.4.18.tgz#0286a6de8be42641338594e97ccea75f0a2c585f" 3095 | dependencies: 3096 | source-map "^0.5.6" 3097 | 3098 | source-map-support@^0.5.0: 3099 | version "0.5.4" 3100 | resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.5.4.tgz#54456efa89caa9270af7cd624cc2f123e51fbae8" 3101 | dependencies: 3102 | source-map "^0.6.0" 3103 | 3104 | source-map-url@^0.4.0: 3105 | version "0.4.0" 3106 | resolved "https://registry.yarnpkg.com/source-map-url/-/source-map-url-0.4.0.tgz#3e935d7ddd73631b97659956d55128e87b5084a3" 3107 | 3108 | source-map@^0.4.4: 3109 | version "0.4.4" 3110 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.4.4.tgz#eba4f5da9c0dc999de68032d8b4f76173652036b" 3111 | dependencies: 3112 | amdefine ">=0.0.4" 3113 | 3114 | source-map@^0.5.3, source-map@^0.5.6, source-map@^0.5.7, source-map@~0.5.1: 3115 | version "0.5.7" 3116 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.5.7.tgz#8a039d2d1021d22d1ea14c80d8ea468ba2ef3fcc" 3117 | 3118 | source-map@^0.6.0, source-map@~0.6.1: 3119 | version "0.6.1" 3120 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.6.1.tgz#74722af32e9614e9c287a8d0bbde48b5e2f1a263" 3121 | 3122 | spdx-correct@^3.0.0: 3123 | version "3.0.0" 3124 | resolved "https://registry.yarnpkg.com/spdx-correct/-/spdx-correct-3.0.0.tgz#05a5b4d7153a195bc92c3c425b69f3b2a9524c82" 3125 | dependencies: 3126 | spdx-expression-parse "^3.0.0" 3127 | spdx-license-ids "^3.0.0" 3128 | 3129 | spdx-exceptions@^2.1.0: 3130 | version "2.1.0" 3131 | resolved "https://registry.yarnpkg.com/spdx-exceptions/-/spdx-exceptions-2.1.0.tgz#2c7ae61056c714a5b9b9b2b2af7d311ef5c78fe9" 3132 | 3133 | spdx-expression-parse@^3.0.0: 3134 | version "3.0.0" 3135 | resolved "https://registry.yarnpkg.com/spdx-expression-parse/-/spdx-expression-parse-3.0.0.tgz#99e119b7a5da00e05491c9fa338b7904823b41d0" 3136 | dependencies: 3137 | spdx-exceptions "^2.1.0" 3138 | spdx-license-ids "^3.0.0" 3139 | 3140 | spdx-license-ids@^3.0.0: 3141 | version "3.0.0" 3142 | resolved "https://registry.yarnpkg.com/spdx-license-ids/-/spdx-license-ids-3.0.0.tgz#7a7cd28470cc6d3a1cfe6d66886f6bc430d3ac87" 3143 | 3144 | split-string@^3.0.1, split-string@^3.0.2: 3145 | version "3.1.0" 3146 | resolved "https://registry.yarnpkg.com/split-string/-/split-string-3.1.0.tgz#7cb09dda3a86585705c64b39a6466038682e8fe2" 3147 | dependencies: 3148 | extend-shallow "^3.0.0" 3149 | 3150 | sprintf-js@^1.1.1: 3151 | version "1.1.1" 3152 | resolved "https://registry.yarnpkg.com/sprintf-js/-/sprintf-js-1.1.1.tgz#36be78320afe5801f6cea3ee78b6e5aab940ea0c" 3153 | 3154 | sprintf-js@~1.0.2: 3155 | version "1.0.3" 3156 | resolved "https://registry.yarnpkg.com/sprintf-js/-/sprintf-js-1.0.3.tgz#04e6926f662895354f3dd015203633b857297e2c" 3157 | 3158 | sshpk@^1.7.0: 3159 | version "1.14.1" 3160 | resolved "https://registry.yarnpkg.com/sshpk/-/sshpk-1.14.1.tgz#130f5975eddad963f1d56f92b9ac6c51fa9f83eb" 3161 | dependencies: 3162 | asn1 "~0.2.3" 3163 | assert-plus "^1.0.0" 3164 | dashdash "^1.12.0" 3165 | getpass "^0.1.1" 3166 | optionalDependencies: 3167 | bcrypt-pbkdf "^1.0.0" 3168 | ecc-jsbn "~0.1.1" 3169 | jsbn "~0.1.0" 3170 | tweetnacl "~0.14.0" 3171 | 3172 | stack-utils@^1.0.1: 3173 | version "1.0.1" 3174 | resolved "https://registry.yarnpkg.com/stack-utils/-/stack-utils-1.0.1.tgz#d4f33ab54e8e38778b0ca5cfd3b3afb12db68620" 3175 | 3176 | static-extend@^0.1.1: 3177 | version "0.1.2" 3178 | resolved "https://registry.yarnpkg.com/static-extend/-/static-extend-0.1.2.tgz#60809c39cbff55337226fd5e0b520f341f1fb5c6" 3179 | dependencies: 3180 | define-property "^0.2.5" 3181 | object-copy "^0.1.0" 3182 | 3183 | stealthy-require@^1.1.0: 3184 | version "1.1.1" 3185 | resolved "https://registry.yarnpkg.com/stealthy-require/-/stealthy-require-1.1.1.tgz#35b09875b4ff49f26a777e509b3090a3226bf24b" 3186 | 3187 | strftime@^0.10.0: 3188 | version "0.10.0" 3189 | resolved "https://registry.yarnpkg.com/strftime/-/strftime-0.10.0.tgz#b3f0fa419295202a5a289f6d6be9f4909a617193" 3190 | 3191 | string-length@^2.0.0: 3192 | version "2.0.0" 3193 | resolved "https://registry.yarnpkg.com/string-length/-/string-length-2.0.0.tgz#d40dbb686a3ace960c1cffca562bf2c45f8363ed" 3194 | dependencies: 3195 | astral-regex "^1.0.0" 3196 | strip-ansi "^4.0.0" 3197 | 3198 | string-width@^1.0.1, string-width@^1.0.2: 3199 | version "1.0.2" 3200 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-1.0.2.tgz#118bdf5b8cdc51a2a7e70d211e07e2b0b9b107d3" 3201 | dependencies: 3202 | code-point-at "^1.0.0" 3203 | is-fullwidth-code-point "^1.0.0" 3204 | strip-ansi "^3.0.0" 3205 | 3206 | string-width@^2.0.0, string-width@^2.1.0, string-width@^2.1.1: 3207 | version "2.1.1" 3208 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-2.1.1.tgz#ab93f27a8dc13d28cac815c462143a6d9012ae9e" 3209 | dependencies: 3210 | is-fullwidth-code-point "^2.0.0" 3211 | strip-ansi "^4.0.0" 3212 | 3213 | string_decoder@~1.0.3: 3214 | version "1.0.3" 3215 | resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.0.3.tgz#0fc67d7c141825de94282dd536bec6b9bce860ab" 3216 | dependencies: 3217 | safe-buffer "~5.1.0" 3218 | 3219 | stringstream@~0.0.4, stringstream@~0.0.5: 3220 | version "0.0.5" 3221 | resolved "https://registry.yarnpkg.com/stringstream/-/stringstream-0.0.5.tgz#4e484cd4de5a0bbbee18e46307710a8a81621878" 3222 | 3223 | strip-ansi@^3.0.0, strip-ansi@^3.0.1: 3224 | version "3.0.1" 3225 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-3.0.1.tgz#6a385fb8853d952d5ff05d0e8aaf94278dc63dcf" 3226 | dependencies: 3227 | ansi-regex "^2.0.0" 3228 | 3229 | strip-ansi@^4.0.0: 3230 | version "4.0.0" 3231 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-4.0.0.tgz#a8479022eb1ac368a871389b635262c505ee368f" 3232 | dependencies: 3233 | ansi-regex "^3.0.0" 3234 | 3235 | strip-bom@3.0.0: 3236 | version "3.0.0" 3237 | resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-3.0.0.tgz#2334c18e9c759f7bdd56fdef7e9ae3d588e68ed3" 3238 | 3239 | strip-bom@^2.0.0: 3240 | version "2.0.0" 3241 | resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-2.0.0.tgz#6219a85616520491f35788bdbf1447a99c7e6b0e" 3242 | dependencies: 3243 | is-utf8 "^0.2.0" 3244 | 3245 | strip-eof@^1.0.0: 3246 | version "1.0.0" 3247 | resolved "https://registry.yarnpkg.com/strip-eof/-/strip-eof-1.0.0.tgz#bb43ff5598a6eb05d89b59fcd129c983313606bf" 3248 | 3249 | strip-json-comments@~2.0.1: 3250 | version "2.0.1" 3251 | resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-2.0.1.tgz#3c531942e908c2697c0ec344858c286c7ca0a60a" 3252 | 3253 | supports-color@^2.0.0: 3254 | version "2.0.0" 3255 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-2.0.0.tgz#535d045ce6b6363fa40117084629995e9df324c7" 3256 | 3257 | supports-color@^3.1.2: 3258 | version "3.2.3" 3259 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-3.2.3.tgz#65ac0504b3954171d8a64946b2ae3cbb8a5f54f6" 3260 | dependencies: 3261 | has-flag "^1.0.0" 3262 | 3263 | supports-color@^5.3.0: 3264 | version "5.3.0" 3265 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-5.3.0.tgz#5b24ac15db80fa927cf5227a4a33fd3c4c7676c0" 3266 | dependencies: 3267 | has-flag "^3.0.0" 3268 | 3269 | symbol-tree@^3.2.2: 3270 | version "3.2.2" 3271 | resolved "https://registry.yarnpkg.com/symbol-tree/-/symbol-tree-3.2.2.tgz#ae27db38f660a7ae2e1c3b7d1bc290819b8519e6" 3272 | 3273 | table@4.0.2: 3274 | version "4.0.2" 3275 | resolved "https://registry.yarnpkg.com/table/-/table-4.0.2.tgz#a33447375391e766ad34d3486e6e2aedc84d2e36" 3276 | dependencies: 3277 | ajv "^5.2.3" 3278 | ajv-keywords "^2.1.0" 3279 | chalk "^2.1.0" 3280 | lodash "^4.17.4" 3281 | slice-ansi "1.0.0" 3282 | string-width "^2.1.1" 3283 | 3284 | tar-pack@^3.4.0: 3285 | version "3.4.1" 3286 | resolved "https://registry.yarnpkg.com/tar-pack/-/tar-pack-3.4.1.tgz#e1dbc03a9b9d3ba07e896ad027317eb679a10a1f" 3287 | dependencies: 3288 | debug "^2.2.0" 3289 | fstream "^1.0.10" 3290 | fstream-ignore "^1.0.5" 3291 | once "^1.3.3" 3292 | readable-stream "^2.1.4" 3293 | rimraf "^2.5.1" 3294 | tar "^2.2.1" 3295 | uid-number "^0.0.6" 3296 | 3297 | tar@^2.2.1: 3298 | version "2.2.1" 3299 | resolved "https://registry.yarnpkg.com/tar/-/tar-2.2.1.tgz#8e4d2a256c0e2185c6b18ad694aec968b83cb1d1" 3300 | dependencies: 3301 | block-stream "*" 3302 | fstream "^1.0.2" 3303 | inherits "2" 3304 | 3305 | test-exclude@^4.1.1: 3306 | version "4.2.1" 3307 | resolved "https://registry.yarnpkg.com/test-exclude/-/test-exclude-4.2.1.tgz#dfa222f03480bca69207ca728b37d74b45f724fa" 3308 | dependencies: 3309 | arrify "^1.0.1" 3310 | micromatch "^3.1.8" 3311 | object-assign "^4.1.0" 3312 | read-pkg-up "^1.0.1" 3313 | require-main-filename "^1.0.1" 3314 | 3315 | text-table@~0.2.0: 3316 | version "0.2.0" 3317 | resolved "https://registry.yarnpkg.com/text-table/-/text-table-0.2.0.tgz#7f5ee823ae805207c00af2df4a84ec3fcfa570b4" 3318 | 3319 | throat@^4.0.0: 3320 | version "4.1.0" 3321 | resolved "https://registry.yarnpkg.com/throat/-/throat-4.1.0.tgz#89037cbc92c56ab18926e6ba4cbb200e15672a6a" 3322 | 3323 | through@^2.3.6: 3324 | version "2.3.8" 3325 | resolved "https://registry.yarnpkg.com/through/-/through-2.3.8.tgz#0dd4c9ffaabc357960b1b724115d7e0e86a2e1f5" 3326 | 3327 | tmp@^0.0.33: 3328 | version "0.0.33" 3329 | resolved "https://registry.yarnpkg.com/tmp/-/tmp-0.0.33.tgz#6d34335889768d21b2bcda0aa277ced3b1bfadf9" 3330 | dependencies: 3331 | os-tmpdir "~1.0.2" 3332 | 3333 | tmpl@1.0.x: 3334 | version "1.0.4" 3335 | resolved "https://registry.yarnpkg.com/tmpl/-/tmpl-1.0.4.tgz#23640dd7b42d00433911140820e5cf440e521dd1" 3336 | 3337 | to-fast-properties@^1.0.3: 3338 | version "1.0.3" 3339 | resolved "https://registry.yarnpkg.com/to-fast-properties/-/to-fast-properties-1.0.3.tgz#b83571fa4d8c25b82e231b06e3a3055de4ca1a47" 3340 | 3341 | to-object-path@^0.3.0: 3342 | version "0.3.0" 3343 | resolved "https://registry.yarnpkg.com/to-object-path/-/to-object-path-0.3.0.tgz#297588b7b0e7e0ac08e04e672f85c1f4999e17af" 3344 | dependencies: 3345 | kind-of "^3.0.2" 3346 | 3347 | to-regex-range@^2.1.0: 3348 | version "2.1.1" 3349 | resolved "https://registry.yarnpkg.com/to-regex-range/-/to-regex-range-2.1.1.tgz#7c80c17b9dfebe599e27367e0d4dd5590141db38" 3350 | dependencies: 3351 | is-number "^3.0.0" 3352 | repeat-string "^1.6.1" 3353 | 3354 | to-regex@^3.0.1, to-regex@^3.0.2: 3355 | version "3.0.2" 3356 | resolved "https://registry.yarnpkg.com/to-regex/-/to-regex-3.0.2.tgz#13cfdd9b336552f30b51f33a8ae1b42a7a7599ce" 3357 | dependencies: 3358 | define-property "^2.0.2" 3359 | extend-shallow "^3.0.2" 3360 | regex-not "^1.0.2" 3361 | safe-regex "^1.1.0" 3362 | 3363 | tough-cookie@>=2.3.3, tough-cookie@^2.3.3, tough-cookie@~2.3.0, tough-cookie@~2.3.3: 3364 | version "2.3.4" 3365 | resolved "https://registry.yarnpkg.com/tough-cookie/-/tough-cookie-2.3.4.tgz#ec60cee38ac675063ffc97a5c18970578ee83655" 3366 | dependencies: 3367 | punycode "^1.4.1" 3368 | 3369 | tr46@^1.0.0: 3370 | version "1.0.1" 3371 | resolved "https://registry.yarnpkg.com/tr46/-/tr46-1.0.1.tgz#a8b13fd6bfd2489519674ccde55ba3693b706d09" 3372 | dependencies: 3373 | punycode "^2.1.0" 3374 | 3375 | trim-right@^1.0.1: 3376 | version "1.0.1" 3377 | resolved "https://registry.yarnpkg.com/trim-right/-/trim-right-1.0.1.tgz#cb2e1203067e0c8de1f614094b9fe45704ea6003" 3378 | 3379 | tunnel-agent@^0.6.0: 3380 | version "0.6.0" 3381 | resolved "https://registry.yarnpkg.com/tunnel-agent/-/tunnel-agent-0.6.0.tgz#27a5dea06b36b04a0a9966774b290868f0fc40fd" 3382 | dependencies: 3383 | safe-buffer "^5.0.1" 3384 | 3385 | tweetnacl@^0.14.3, tweetnacl@~0.14.0: 3386 | version "0.14.5" 3387 | resolved "https://registry.yarnpkg.com/tweetnacl/-/tweetnacl-0.14.5.tgz#5ae68177f192d4456269d108afa93ff8743f4f64" 3388 | 3389 | type-check@~0.3.2: 3390 | version "0.3.2" 3391 | resolved "https://registry.yarnpkg.com/type-check/-/type-check-0.3.2.tgz#5884cab512cf1d355e3fb784f30804b2b520db72" 3392 | dependencies: 3393 | prelude-ls "~1.1.2" 3394 | 3395 | typedarray@^0.0.6: 3396 | version "0.0.6" 3397 | resolved "https://registry.yarnpkg.com/typedarray/-/typedarray-0.0.6.tgz#867ac74e3864187b1d3d47d996a78ec5c8830777" 3398 | 3399 | uglify-js@^2.6: 3400 | version "2.8.29" 3401 | resolved "https://registry.yarnpkg.com/uglify-js/-/uglify-js-2.8.29.tgz#29c5733148057bb4e1f75df35b7a9cb72e6a59dd" 3402 | dependencies: 3403 | source-map "~0.5.1" 3404 | yargs "~3.10.0" 3405 | optionalDependencies: 3406 | uglify-to-browserify "~1.0.0" 3407 | 3408 | uglify-to-browserify@~1.0.0: 3409 | version "1.0.2" 3410 | resolved "https://registry.yarnpkg.com/uglify-to-browserify/-/uglify-to-browserify-1.0.2.tgz#6e0924d6bda6b5afe349e39a6d632850a0f882b7" 3411 | 3412 | uid-number@^0.0.6: 3413 | version "0.0.6" 3414 | resolved "https://registry.yarnpkg.com/uid-number/-/uid-number-0.0.6.tgz#0ea10e8035e8eb5b8e4449f06da1c730663baa81" 3415 | 3416 | union-value@^1.0.0: 3417 | version "1.0.0" 3418 | resolved "https://registry.yarnpkg.com/union-value/-/union-value-1.0.0.tgz#5c71c34cb5bad5dcebe3ea0cd08207ba5aa1aea4" 3419 | dependencies: 3420 | arr-union "^3.1.0" 3421 | get-value "^2.0.6" 3422 | is-extendable "^0.1.1" 3423 | set-value "^0.4.3" 3424 | 3425 | unset-value@^1.0.0: 3426 | version "1.0.0" 3427 | resolved "https://registry.yarnpkg.com/unset-value/-/unset-value-1.0.0.tgz#8376873f7d2335179ffb1e6fc3a8ed0dfc8ab559" 3428 | dependencies: 3429 | has-value "^0.3.1" 3430 | isobject "^3.0.0" 3431 | 3432 | urix@^0.1.0: 3433 | version "0.1.0" 3434 | resolved "https://registry.yarnpkg.com/urix/-/urix-0.1.0.tgz#da937f7a62e21fec1fd18d49b35c2935067a6c72" 3435 | 3436 | use@^3.1.0: 3437 | version "3.1.0" 3438 | resolved "https://registry.yarnpkg.com/use/-/use-3.1.0.tgz#14716bf03fdfefd03040aef58d8b4b85f3a7c544" 3439 | dependencies: 3440 | kind-of "^6.0.2" 3441 | 3442 | util-deprecate@~1.0.1: 3443 | version "1.0.2" 3444 | resolved "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf" 3445 | 3446 | util.promisify@^1.0.0: 3447 | version "1.0.0" 3448 | resolved "https://registry.yarnpkg.com/util.promisify/-/util.promisify-1.0.0.tgz#440f7165a459c9a16dc145eb8e72f35687097030" 3449 | dependencies: 3450 | define-properties "^1.1.2" 3451 | object.getownpropertydescriptors "^2.0.3" 3452 | 3453 | uuid@^3.0.0, uuid@^3.1.0: 3454 | version "3.2.1" 3455 | resolved "https://registry.yarnpkg.com/uuid/-/uuid-3.2.1.tgz#12c528bb9d58d0b9265d9a2f6f0fe8be17ff1f14" 3456 | 3457 | validate-npm-package-license@^3.0.1: 3458 | version "3.0.3" 3459 | resolved "https://registry.yarnpkg.com/validate-npm-package-license/-/validate-npm-package-license-3.0.3.tgz#81643bcbef1bdfecd4623793dc4648948ba98338" 3460 | dependencies: 3461 | spdx-correct "^3.0.0" 3462 | spdx-expression-parse "^3.0.0" 3463 | 3464 | verror@1.10.0: 3465 | version "1.10.0" 3466 | resolved "https://registry.yarnpkg.com/verror/-/verror-1.10.0.tgz#3a105ca17053af55d6e270c1f8288682e18da400" 3467 | dependencies: 3468 | assert-plus "^1.0.0" 3469 | core-util-is "1.0.2" 3470 | extsprintf "^1.2.0" 3471 | 3472 | w3c-hr-time@^1.0.1: 3473 | version "1.0.1" 3474 | resolved "https://registry.yarnpkg.com/w3c-hr-time/-/w3c-hr-time-1.0.1.tgz#82ac2bff63d950ea9e3189a58a65625fedf19045" 3475 | dependencies: 3476 | browser-process-hrtime "^0.1.2" 3477 | 3478 | walker@~1.0.5: 3479 | version "1.0.7" 3480 | resolved "https://registry.yarnpkg.com/walker/-/walker-1.0.7.tgz#2f7f9b8fd10d677262b18a884e28d19618e028fb" 3481 | dependencies: 3482 | makeerror "1.0.x" 3483 | 3484 | watch@~0.18.0: 3485 | version "0.18.0" 3486 | resolved "https://registry.yarnpkg.com/watch/-/watch-0.18.0.tgz#28095476c6df7c90c963138990c0a5423eb4b986" 3487 | dependencies: 3488 | exec-sh "^0.2.0" 3489 | minimist "^1.2.0" 3490 | 3491 | webidl-conversions@^4.0.1, webidl-conversions@^4.0.2: 3492 | version "4.0.2" 3493 | resolved "https://registry.yarnpkg.com/webidl-conversions/-/webidl-conversions-4.0.2.tgz#a855980b1f0b6b359ba1d5d9fb39ae941faa63ad" 3494 | 3495 | whatwg-encoding@^1.0.1, whatwg-encoding@^1.0.3: 3496 | version "1.0.3" 3497 | resolved "https://registry.yarnpkg.com/whatwg-encoding/-/whatwg-encoding-1.0.3.tgz#57c235bc8657e914d24e1a397d3c82daee0a6ba3" 3498 | dependencies: 3499 | iconv-lite "0.4.19" 3500 | 3501 | whatwg-url@^6.4.0: 3502 | version "6.4.0" 3503 | resolved "https://registry.yarnpkg.com/whatwg-url/-/whatwg-url-6.4.0.tgz#08fdf2b9e872783a7a1f6216260a1d66cc722e08" 3504 | dependencies: 3505 | lodash.sortby "^4.7.0" 3506 | tr46 "^1.0.0" 3507 | webidl-conversions "^4.0.1" 3508 | 3509 | which-module@^2.0.0: 3510 | version "2.0.0" 3511 | resolved "https://registry.yarnpkg.com/which-module/-/which-module-2.0.0.tgz#d9ef07dce77b9902b8a3a8fa4b31c3e3f7e6e87a" 3512 | 3513 | which@^1.2.12, which@^1.2.9, which@^1.3.0: 3514 | version "1.3.0" 3515 | resolved "https://registry.yarnpkg.com/which/-/which-1.3.0.tgz#ff04bdfc010ee547d780bec38e1ac1c2777d253a" 3516 | dependencies: 3517 | isexe "^2.0.0" 3518 | 3519 | wide-align@^1.1.0: 3520 | version "1.1.2" 3521 | resolved "https://registry.yarnpkg.com/wide-align/-/wide-align-1.1.2.tgz#571e0f1b0604636ebc0dfc21b0339bbe31341710" 3522 | dependencies: 3523 | string-width "^1.0.2" 3524 | 3525 | window-size@0.1.0: 3526 | version "0.1.0" 3527 | resolved "https://registry.yarnpkg.com/window-size/-/window-size-0.1.0.tgz#5438cd2ea93b202efa3a19fe8887aee7c94f9c9d" 3528 | 3529 | wordwrap@0.0.2: 3530 | version "0.0.2" 3531 | resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-0.0.2.tgz#b79669bb42ecb409f83d583cad52ca17eaa1643f" 3532 | 3533 | wordwrap@~0.0.2: 3534 | version "0.0.3" 3535 | resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-0.0.3.tgz#a3d5da6cd5c0bc0008d37234bbaf1bed63059107" 3536 | 3537 | wordwrap@~1.0.0: 3538 | version "1.0.0" 3539 | resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-1.0.0.tgz#27584810891456a4171c8d0226441ade90cbcaeb" 3540 | 3541 | wrap-ansi@^2.0.0: 3542 | version "2.1.0" 3543 | resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-2.1.0.tgz#d8fc3d284dd05794fe84973caecdd1cf824fdd85" 3544 | dependencies: 3545 | string-width "^1.0.1" 3546 | strip-ansi "^3.0.1" 3547 | 3548 | wrappy@1: 3549 | version "1.0.2" 3550 | resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f" 3551 | 3552 | write-file-atomic@^2.1.0: 3553 | version "2.3.0" 3554 | resolved "https://registry.yarnpkg.com/write-file-atomic/-/write-file-atomic-2.3.0.tgz#1ff61575c2e2a4e8e510d6fa4e243cce183999ab" 3555 | dependencies: 3556 | graceful-fs "^4.1.11" 3557 | imurmurhash "^0.1.4" 3558 | signal-exit "^3.0.2" 3559 | 3560 | write@^0.2.1: 3561 | version "0.2.1" 3562 | resolved "https://registry.yarnpkg.com/write/-/write-0.2.1.tgz#5fc03828e264cea3fe91455476f7a3c566cb0757" 3563 | dependencies: 3564 | mkdirp "^0.5.1" 3565 | 3566 | ws@^4.0.0: 3567 | version "4.1.0" 3568 | resolved "https://registry.yarnpkg.com/ws/-/ws-4.1.0.tgz#a979b5d7d4da68bf54efe0408967c324869a7289" 3569 | dependencies: 3570 | async-limiter "~1.0.0" 3571 | safe-buffer "~5.1.0" 3572 | 3573 | xml-name-validator@^3.0.0: 3574 | version "3.0.0" 3575 | resolved "https://registry.yarnpkg.com/xml-name-validator/-/xml-name-validator-3.0.0.tgz#6ae73e06de4d8c6e47f9fb181f78d648ad457c6a" 3576 | 3577 | y18n@^3.2.1: 3578 | version "3.2.1" 3579 | resolved "https://registry.yarnpkg.com/y18n/-/y18n-3.2.1.tgz#6d15fba884c08679c0d77e88e7759e811e07fa41" 3580 | 3581 | yallist@^2.1.2: 3582 | version "2.1.2" 3583 | resolved "https://registry.yarnpkg.com/yallist/-/yallist-2.1.2.tgz#1c11f9218f076089a47dd512f93c6699a6a81d52" 3584 | 3585 | yargs-parser@^8.1.0: 3586 | version "8.1.0" 3587 | resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-8.1.0.tgz#f1376a33b6629a5d063782944da732631e966950" 3588 | dependencies: 3589 | camelcase "^4.1.0" 3590 | 3591 | yargs@^10.0.3: 3592 | version "10.1.2" 3593 | resolved "https://registry.yarnpkg.com/yargs/-/yargs-10.1.2.tgz#454d074c2b16a51a43e2fb7807e4f9de69ccb5c5" 3594 | dependencies: 3595 | cliui "^4.0.0" 3596 | decamelize "^1.1.1" 3597 | find-up "^2.1.0" 3598 | get-caller-file "^1.0.1" 3599 | os-locale "^2.0.0" 3600 | require-directory "^2.1.1" 3601 | require-main-filename "^1.0.1" 3602 | set-blocking "^2.0.0" 3603 | string-width "^2.0.0" 3604 | which-module "^2.0.0" 3605 | y18n "^3.2.1" 3606 | yargs-parser "^8.1.0" 3607 | 3608 | yargs@~3.10.0: 3609 | version "3.10.0" 3610 | resolved "https://registry.yarnpkg.com/yargs/-/yargs-3.10.0.tgz#f7ee7bd857dd7c1d2d38c0e74efbd681d1431fd1" 3611 | dependencies: 3612 | camelcase "^1.0.2" 3613 | cliui "^2.1.0" 3614 | decamelize "^1.0.0" 3615 | window-size "0.1.0" 3616 | --------------------------------------------------------------------------------