├── .gitignore ├── .npmignore ├── client.js ├── index.test.js ├── benchmark.js ├── package.json ├── server.js ├── app.js ├── README.md ├── index.js └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | bundle.js 3 | -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | *.test.js 2 | benchmark.js 3 | -------------------------------------------------------------------------------- /client.js: -------------------------------------------------------------------------------- 1 | 'use strict' 2 | 3 | const nanomorph = require('nanomorph') 4 | 5 | const createApp = require('./app') 6 | 7 | const app = createApp() 8 | 9 | const root = document.getElementById('root') 10 | const tree = root.firstElementChild 11 | nanomorph(tree, app.render()) 12 | app.onChange(() => { 13 | nanomorph(tree, app.render()) 14 | }) 15 | -------------------------------------------------------------------------------- /index.test.js: -------------------------------------------------------------------------------- 1 | 'use strict' 2 | 3 | const createApp = require('./app') 4 | const pelo = require('.') 5 | const test = require('tape') 6 | const minify = require('html-minifier').minify 7 | const minifyConfig = { 8 | collapseWhitespace: true 9 | } 10 | 11 | test('The app renders as expected', t => { 12 | t.plan(1) 13 | const expected = minify(createApp().render().toString(), minifyConfig) 14 | pelo.replace('bel') 15 | const actual = minify(createApp().render().toString(), minifyConfig) 16 | t.is(actual, expected) 17 | }) 18 | -------------------------------------------------------------------------------- /benchmark.js: -------------------------------------------------------------------------------- 1 | 'use strict' 2 | 3 | const pelo = require('.') 4 | const createApp = require('./app') 5 | 6 | const warmup = 100 7 | const iteration = 10000 8 | 9 | console.log(`# benchmark ${iteration} iterations`) 10 | 11 | const belApp = createApp() 12 | for (let i = 0; i < warmup; i++) { 13 | belApp.render().toString() 14 | } 15 | console.time('bel') 16 | for (let i = 0; i < iteration; i++) { 17 | belApp.render().toString() 18 | } 19 | console.timeEnd('bel') 20 | 21 | pelo.replace('bel') 22 | const peloApp = createApp() 23 | for (let i = 0; i < warmup; i++) { 24 | peloApp.render().toString() 25 | } 26 | console.time('pelo') 27 | for (let i = 0; i < iteration; i++) { 28 | peloApp.render().toString() 29 | } 30 | console.timeEnd('pelo') 31 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "pelo", 3 | "version": "0.1.0", 4 | "description": "Lightning fast server-side rendering with tagged template literals", 5 | "main": "index.js", 6 | "scripts": { 7 | "start": "npm run build && node server.js", 8 | "test": "tape '**/*.test.js' && node benchmark.js", 9 | "build": "browserify client.js > bundle.js", 10 | "compare": "node compare.js" 11 | }, 12 | "dependencies": {}, 13 | "devDependencies": { 14 | "bel": "^4.6.0", 15 | "browserify": "^14.3.0", 16 | "html-minifier": "^3.5.6", 17 | "nanomorph": "^5.1.3", 18 | "standard": "^10.0.2", 19 | "tape": "^4.8.0" 20 | }, 21 | "homepage": "https://github.com/shuhei/pelo", 22 | "bugs": { 23 | "url": "https://github.com/shuhei/pelo/issues" 24 | }, 25 | "repository": "shuhei/pelo", 26 | "author": "Shuhei Kagawa ", 27 | "license": "ISC" 28 | } 29 | -------------------------------------------------------------------------------- /server.js: -------------------------------------------------------------------------------- 1 | 'use strict' 2 | 3 | const http = require('http') 4 | const fs = require('fs') 5 | 6 | const pelo = require('.') 7 | pelo.replace('bel') 8 | const createApp = require('./app') 9 | 10 | const app = createApp() 11 | 12 | function layout (content) { 13 | return ` 14 | 15 | 16 | 17 | 18 | Hello 19 | 25 | 26 | 27 |
28 | ${content} 29 |
30 | 31 | 32 | 33 | ` 34 | } 35 | 36 | const server = http.createServer((req, res) => { 37 | if (req.url === '/bundle.js') { 38 | res.writeHead(200, { 39 | 'Content-Type': 'text/javascript' 40 | }) 41 | fs.createReadStream('./bundle.js').pipe(res) 42 | return 43 | } 44 | 45 | const content = app.render() 46 | const body = layout(content) 47 | res.writeHead(200, { 48 | 'Content-Type': 'text/html' 49 | }) 50 | res.end(body) 51 | }) 52 | server.on('listening', () => { 53 | console.log('Listening on', server.address()); 54 | }); 55 | server.listen(8080) 56 | -------------------------------------------------------------------------------- /app.js: -------------------------------------------------------------------------------- 1 | 'use strict' 2 | 3 | module.exports = function () { 4 | // Allow `bel` to be swapped in benchmarking 5 | const html = require('bel') 6 | 7 | const greeting = 'Hello' 8 | const name = 'special characters, <, >, &' 9 | const drinks = [ 10 | { name: 'Cafe Latte', price: 3.0, sold: false }, 11 | { name: 'Cappucino', price: 2.9, sold: true }, 12 | { name: 'Club Mate', price: 2.2, sold: true }, 13 | { name: 'Berliner Weiße', price: 3.5, sold: false } 14 | ] 15 | 16 | const listeners = [] 17 | function onChange (listener) { 18 | listeners.push(listener) 19 | } 20 | function notifyChange () { 21 | listeners.forEach((listener) => listener()) 22 | } 23 | 24 | function deleteDrink (drink) { 25 | const index = drinks.indexOf(drink) 26 | if (index >= 0) { 27 | drinks.splice(index, 1) 28 | } 29 | notifyChange() 30 | } 31 | 32 | function drinkView (drink, deleteDrink) { 33 | return html` 34 |
  • 35 | ${drink.name} is € ${drink.price} 36 | 37 |
  • 38 | ` 39 | } 40 | 41 | function mainView (greeting, name, drinks, deleteDrink) { 42 | return html` 43 |
    44 |

    ${greeting}, ${name}!

    45 | ${drinks.length > 0 ? html` 46 | 49 | ` : html` 50 |

    All drinks are gone!

    51 | `} 52 |

    53 | attributes: ' }} /> 54 |

    55 |
    56 | ` 57 | } 58 | 59 | function render () { 60 | return mainView(greeting, name, drinks, deleteDrink) 61 | } 62 | 63 | return { 64 | render: render, 65 | onChange: onChange 66 | } 67 | } 68 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # pelo 2 | 3 | Lightning fast server-side rendering with tagged template literals 4 | 5 | A tiny library that enables lightning fast server-side rendering with [hyperx](https://github.com/substack/hyperx)-like libraries such as `bel`, `yo-yo` and `choo/html`. It replaces the tag function of those libraries and just renders string without creating intermediate objects. 6 | 7 | ## Installing 8 | 9 | ```sh 10 | npm install pelo 11 | ``` 12 | 13 | ## Usage 14 | 15 | `ssr.js`: Call `pelo.replace(moduleId)` before you require any view module, `bel` in this case. 16 | 17 | ```js 18 | const pelo = require('pelo') 19 | pelo.replace('bel') 20 | const view = require('./view') 21 | 22 | const renderedString = view('pelo').toString() 23 | ``` 24 | 25 | `view.js`: You don't need to change your view files at all. You can use them for client-side rendering and server-side rendering. 26 | 27 | ```js 28 | const html = require('bel') 29 | 30 | module.exports = function helloView(name) { 31 | return html`

    Hello, ${name}

    ` 32 | } 33 | ``` 34 | 35 | ## Benchmark 36 | 37 | Rendering a simple view 10,000 times: 38 | 39 | ```js 40 | node benchmark.js 41 | ``` 42 | 43 | | tag | time (ms) | 44 | | ---- | --------- | 45 | | pelo | 219.093 | 46 | | bel | 1982.610 | 47 | 48 | ## Motivation 49 | 50 | Server-side rendering with modern JavaScript frameworks is slow. In general, they focus on the client-side, and generate virtual/real DOMs for efficient DOM updates from templates. However, this approach is a bit overkill when we focus on server-side rendering. Because the templates already look like HTML, it should be faster if they directly render HTML strings without creating intermediate object representations. 51 | 52 | With [`bel`](https://github.com/shama/bel), we can write HTML with tagged template literals and use them to create declarative views on browser. If we can use the same template also for directly generating HTML string on server-side, it will be a huge win. 53 | 54 | ## Thanks 55 | 56 | Thanks [@yoshuawuyts](https://github.com/yoshuawuyts) for lots of advice! 57 | -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- 1 | 'use strict' 2 | 3 | const Module = require('module') 4 | 5 | var BOOL_PROPS = [ 6 | 'autofocus', 'checked', 'defaultchecked', 'disabled', 'formnovalidate', 7 | 'indeterminate', 'readonly', 'required', 'selected', 'willvalidate' 8 | ] 9 | 10 | var BOOL_PROP_PATTERN = new RegExp(' (' + BOOL_PROPS.join('|') + '|onclick)=(""|\'\')', 'ig') 11 | var DISABLED_PATTERN = new RegExp('disabled=("true"|\'true\')', 'ig') 12 | 13 | const replaceMap = { 14 | '&': '&', 15 | '<': '<', 16 | '>': '>', 17 | '"': '"', 18 | '\'': ''' 19 | } 20 | const replaceMapRE = new RegExp(Object.keys(replaceMap).join('|'), 'g') 21 | 22 | function replaceMapper (matched){ 23 | return replaceMap[matched] 24 | } 25 | 26 | function escape (value) { 27 | return value.toString().replace(replaceMapRE, replaceMapper) 28 | } 29 | 30 | function handleValue (value) { 31 | if (value === null || value === undefined || value === false) { 32 | return '' 33 | } 34 | 35 | if (Array.isArray(value)) { 36 | // Suppose that each item is a result of html``. 37 | return value.join('') 38 | } 39 | // Ignore event handlers. 40 | // onclick=${(e) => doSomething(e)} 41 | // will become 42 | // onclick="" 43 | const valueType = typeof value 44 | if (valueType === 'function') { 45 | return '' 46 | } 47 | 48 | if (valueType === 'object' && value.constructor.name !== 'String') { 49 | return objToString(value) 50 | } 51 | 52 | if (value.__encoded) { 53 | return value 54 | } 55 | 56 | return escape(value) 57 | } 58 | 59 | function stringify () { 60 | var pieces = arguments[0] 61 | var output = '' 62 | for (var i = 0; i < pieces.length - 1; i++) { 63 | var piece = pieces[i] 64 | var value = handleValue(arguments[i + 1]) 65 | if (piece[piece.length - 1] === '=') { 66 | output += piece + '"' + value + '"' 67 | } else { 68 | output += piece + value 69 | } 70 | } 71 | output += pieces[i] 72 | output = output 73 | .replace(DISABLED_PATTERN, 'disabled="disabled"') 74 | .replace(BOOL_PROP_PATTERN, '') 75 | 76 | // HACK: Avoid double encoding by marking encoded string 77 | // You cannot add properties to string literals 78 | // eslint-disable-next-line no-new-wrappers 79 | const wrapper = new String(output) 80 | wrapper.__encoded = true 81 | return wrapper 82 | } 83 | 84 | function objToString (obj) { 85 | var values = '' 86 | const keys = Object.keys(obj) 87 | for (var i = 0; i < keys.length - 1; i++) { 88 | values += keys[i] + '="' + escape(obj[keys[i]] || '') + '" ' 89 | } 90 | return values + keys[i] + '="' + escape(obj[keys[i]] || '') + '"' 91 | } 92 | 93 | function replace (moduleId) { 94 | const originalRequire = Module.prototype.require 95 | Module.prototype.require = function (id) { 96 | if (id === moduleId) { 97 | return stringify 98 | } else { 99 | return originalRequire.apply(this, arguments) 100 | } 101 | } 102 | } 103 | 104 | stringify.replace = replace 105 | 106 | module.exports = stringify 107 | -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- 1 | # THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY. 2 | # yarn lockfile v1 3 | 4 | 5 | JSONStream@^1.0.3: 6 | version "1.3.1" 7 | resolved "https://registry.yarnpkg.com/JSONStream/-/JSONStream-1.3.1.tgz#707f761e01dae9e16f1bcf93703b78c70966579a" 8 | dependencies: 9 | jsonparse "^1.2.0" 10 | through ">=2.2.7 <3" 11 | 12 | acorn-jsx@^3.0.0: 13 | version "3.0.1" 14 | resolved "https://registry.yarnpkg.com/acorn-jsx/-/acorn-jsx-3.0.1.tgz#afdf9488fb1ecefc8348f6fb22f464e32a58b36b" 15 | dependencies: 16 | acorn "^3.0.4" 17 | 18 | acorn@^3.0.4: 19 | version "3.3.0" 20 | resolved "https://registry.yarnpkg.com/acorn/-/acorn-3.3.0.tgz#45e37fb39e8da3f25baee3ff5369e2bb5f22017a" 21 | 22 | acorn@^4.0.3: 23 | version "4.0.11" 24 | resolved "https://registry.yarnpkg.com/acorn/-/acorn-4.0.11.tgz#edcda3bd937e7556410d42ed5860f67399c794c0" 25 | 26 | acorn@^5.0.1: 27 | version "5.0.3" 28 | resolved "https://registry.yarnpkg.com/acorn/-/acorn-5.0.3.tgz#c460df08491463f028ccb82eab3730bf01087b3d" 29 | 30 | ajv-keywords@^1.0.0: 31 | version "1.5.1" 32 | resolved "https://registry.yarnpkg.com/ajv-keywords/-/ajv-keywords-1.5.1.tgz#314dd0a4b3368fad3dfcdc54ede6171b886daf3c" 33 | 34 | ajv@^4.7.0: 35 | version "4.11.7" 36 | resolved "https://registry.yarnpkg.com/ajv/-/ajv-4.11.7.tgz#8655a5d86d0824985cc471a1d913fb6729a0ec48" 37 | dependencies: 38 | co "^4.6.0" 39 | json-stable-stringify "^1.0.1" 40 | 41 | ansi-escapes@^1.1.0: 42 | version "1.4.0" 43 | resolved "https://registry.yarnpkg.com/ansi-escapes/-/ansi-escapes-1.4.0.tgz#d3a8a83b319aa67793662b13e761c7911422306e" 44 | 45 | ansi-regex@^2.0.0: 46 | version "2.1.1" 47 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-2.1.1.tgz#c3b33ab5ee360d86e0e628f0468ae7ef27d654df" 48 | 49 | ansi-styles@^2.2.1: 50 | version "2.2.1" 51 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-2.2.1.tgz#b432dd3358b634cf75e1e4664368240533c1ddbe" 52 | 53 | argparse@^1.0.7: 54 | version "1.0.9" 55 | resolved "https://registry.yarnpkg.com/argparse/-/argparse-1.0.9.tgz#73d83bc263f86e97f8cc4f6bae1b0e90a7d22c86" 56 | dependencies: 57 | sprintf-js "~1.0.2" 58 | 59 | array-filter@~0.0.0: 60 | version "0.0.1" 61 | resolved "https://registry.yarnpkg.com/array-filter/-/array-filter-0.0.1.tgz#7da8cf2e26628ed732803581fd21f67cacd2eeec" 62 | 63 | array-map@~0.0.0: 64 | version "0.0.0" 65 | resolved "https://registry.yarnpkg.com/array-map/-/array-map-0.0.0.tgz#88a2bab73d1cf7bcd5c1b118a003f66f665fa662" 66 | 67 | array-reduce@~0.0.0: 68 | version "0.0.0" 69 | resolved "https://registry.yarnpkg.com/array-reduce/-/array-reduce-0.0.0.tgz#173899d3ffd1c7d9383e4479525dbe278cab5f2b" 70 | 71 | array-union@^1.0.1: 72 | version "1.0.2" 73 | resolved "https://registry.yarnpkg.com/array-union/-/array-union-1.0.2.tgz#9a34410e4f4e3da23dea375be5be70f24778ec39" 74 | dependencies: 75 | array-uniq "^1.0.1" 76 | 77 | array-uniq@^1.0.1: 78 | version "1.0.3" 79 | resolved "https://registry.yarnpkg.com/array-uniq/-/array-uniq-1.0.3.tgz#af6ac877a25cc7f74e058894753858dfdb24fdb6" 80 | 81 | array.prototype.find@^2.0.1: 82 | version "2.0.4" 83 | resolved "https://registry.yarnpkg.com/array.prototype.find/-/array.prototype.find-2.0.4.tgz#556a5c5362c08648323ddaeb9de9d14bc1864c90" 84 | dependencies: 85 | define-properties "^1.1.2" 86 | es-abstract "^1.7.0" 87 | 88 | arrify@^1.0.0: 89 | version "1.0.1" 90 | resolved "https://registry.yarnpkg.com/arrify/-/arrify-1.0.1.tgz#898508da2226f380df904728456849c1501a4b0d" 91 | 92 | asn1.js@^4.0.0: 93 | version "4.9.1" 94 | resolved "https://registry.yarnpkg.com/asn1.js/-/asn1.js-4.9.1.tgz#48ba240b45a9280e94748990ba597d216617fd40" 95 | dependencies: 96 | bn.js "^4.0.0" 97 | inherits "^2.0.1" 98 | minimalistic-assert "^1.0.0" 99 | 100 | assert@^1.4.0: 101 | version "1.4.1" 102 | resolved "https://registry.yarnpkg.com/assert/-/assert-1.4.1.tgz#99912d591836b5a6f5b345c0f07eefc08fc65d91" 103 | dependencies: 104 | util "0.10.3" 105 | 106 | astw@^2.0.0: 107 | version "2.2.0" 108 | resolved "https://registry.yarnpkg.com/astw/-/astw-2.2.0.tgz#7bd41784d32493987aeb239b6b4e1c57a873b917" 109 | dependencies: 110 | acorn "^4.0.3" 111 | 112 | babel-code-frame@^6.16.0: 113 | version "6.22.0" 114 | resolved "https://registry.yarnpkg.com/babel-code-frame/-/babel-code-frame-6.22.0.tgz#027620bee567a88c32561574e7fd0801d33118e4" 115 | dependencies: 116 | chalk "^1.1.0" 117 | esutils "^2.0.2" 118 | js-tokens "^3.0.0" 119 | 120 | balanced-match@^0.4.1: 121 | version "0.4.2" 122 | resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-0.4.2.tgz#cb3f3e3c732dc0f01ee70b403f302e61d7709838" 123 | 124 | balanced-match@^1.0.0: 125 | version "1.0.0" 126 | resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.0.tgz#89b4d199ab2bee49de164ea02b89ce462d71b767" 127 | 128 | base64-js@^1.0.2: 129 | version "1.2.0" 130 | resolved "https://registry.yarnpkg.com/base64-js/-/base64-js-1.2.0.tgz#a39992d723584811982be5e290bb6a53d86700f1" 131 | 132 | bel@^4.6.0: 133 | version "4.6.0" 134 | resolved "https://registry.yarnpkg.com/bel/-/bel-4.6.0.tgz#3ade16e236ab2204d8d1c66eac4bd573793ac999" 135 | dependencies: 136 | global "^4.3.0" 137 | hyperx "^2.3.0" 138 | on-load "^3.2.0" 139 | 140 | bn.js@^4.0.0, bn.js@^4.1.0, bn.js@^4.1.1, bn.js@^4.4.0: 141 | version "4.11.6" 142 | resolved "https://registry.yarnpkg.com/bn.js/-/bn.js-4.11.6.tgz#53344adb14617a13f6e8dd2ce28905d1c0ba3215" 143 | 144 | brace-expansion@^1.0.0: 145 | version "1.1.7" 146 | resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.7.tgz#3effc3c50e000531fb720eaff80f0ae8ef23cf59" 147 | dependencies: 148 | balanced-match "^0.4.1" 149 | concat-map "0.0.1" 150 | 151 | brace-expansion@^1.1.7: 152 | version "1.1.8" 153 | resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.8.tgz#c07b211c7c952ec1f8efd51a77ef0d1d3990a292" 154 | dependencies: 155 | balanced-match "^1.0.0" 156 | concat-map "0.0.1" 157 | 158 | brorand@^1.0.1: 159 | version "1.1.0" 160 | resolved "https://registry.yarnpkg.com/brorand/-/brorand-1.1.0.tgz#12c25efe40a45e3c323eb8675a0a0ce57b22371f" 161 | 162 | browser-pack@^6.0.1: 163 | version "6.0.2" 164 | resolved "https://registry.yarnpkg.com/browser-pack/-/browser-pack-6.0.2.tgz#f86cd6cef4f5300c8e63e07a4d512f65fbff4531" 165 | dependencies: 166 | JSONStream "^1.0.3" 167 | combine-source-map "~0.7.1" 168 | defined "^1.0.0" 169 | through2 "^2.0.0" 170 | umd "^3.0.0" 171 | 172 | browser-resolve@^1.11.0, browser-resolve@^1.7.0: 173 | version "1.11.2" 174 | resolved "https://registry.yarnpkg.com/browser-resolve/-/browser-resolve-1.11.2.tgz#8ff09b0a2c421718a1051c260b32e48f442938ce" 175 | dependencies: 176 | resolve "1.1.7" 177 | 178 | browserify-aes@^1.0.0, browserify-aes@^1.0.4: 179 | version "1.0.6" 180 | resolved "https://registry.yarnpkg.com/browserify-aes/-/browserify-aes-1.0.6.tgz#5e7725dbdef1fd5930d4ebab48567ce451c48a0a" 181 | dependencies: 182 | buffer-xor "^1.0.2" 183 | cipher-base "^1.0.0" 184 | create-hash "^1.1.0" 185 | evp_bytestokey "^1.0.0" 186 | inherits "^2.0.1" 187 | 188 | browserify-cipher@^1.0.0: 189 | version "1.0.0" 190 | resolved "https://registry.yarnpkg.com/browserify-cipher/-/browserify-cipher-1.0.0.tgz#9988244874bf5ed4e28da95666dcd66ac8fc363a" 191 | dependencies: 192 | browserify-aes "^1.0.4" 193 | browserify-des "^1.0.0" 194 | evp_bytestokey "^1.0.0" 195 | 196 | browserify-des@^1.0.0: 197 | version "1.0.0" 198 | resolved "https://registry.yarnpkg.com/browserify-des/-/browserify-des-1.0.0.tgz#daa277717470922ed2fe18594118a175439721dd" 199 | dependencies: 200 | cipher-base "^1.0.1" 201 | des.js "^1.0.0" 202 | inherits "^2.0.1" 203 | 204 | browserify-rsa@^4.0.0: 205 | version "4.0.1" 206 | resolved "https://registry.yarnpkg.com/browserify-rsa/-/browserify-rsa-4.0.1.tgz#21e0abfaf6f2029cf2fafb133567a701d4135524" 207 | dependencies: 208 | bn.js "^4.1.0" 209 | randombytes "^2.0.1" 210 | 211 | browserify-sign@^4.0.0: 212 | version "4.0.4" 213 | resolved "https://registry.yarnpkg.com/browserify-sign/-/browserify-sign-4.0.4.tgz#aa4eb68e5d7b658baa6bf6a57e630cbd7a93d298" 214 | dependencies: 215 | bn.js "^4.1.1" 216 | browserify-rsa "^4.0.0" 217 | create-hash "^1.1.0" 218 | create-hmac "^1.1.2" 219 | elliptic "^6.0.0" 220 | inherits "^2.0.1" 221 | parse-asn1 "^5.0.0" 222 | 223 | browserify-zlib@~0.2.0: 224 | version "0.2.0" 225 | resolved "https://registry.yarnpkg.com/browserify-zlib/-/browserify-zlib-0.2.0.tgz#2869459d9aa3be245fe8fe2ca1f46e2e7f54d73f" 226 | dependencies: 227 | pako "~1.0.5" 228 | 229 | browserify@^14.3.0: 230 | version "14.5.0" 231 | resolved "https://registry.yarnpkg.com/browserify/-/browserify-14.5.0.tgz#0bbbce521acd6e4d1d54d8e9365008efb85a9cc5" 232 | dependencies: 233 | JSONStream "^1.0.3" 234 | assert "^1.4.0" 235 | browser-pack "^6.0.1" 236 | browser-resolve "^1.11.0" 237 | browserify-zlib "~0.2.0" 238 | buffer "^5.0.2" 239 | cached-path-relative "^1.0.0" 240 | concat-stream "~1.5.1" 241 | console-browserify "^1.1.0" 242 | constants-browserify "~1.0.0" 243 | crypto-browserify "^3.0.0" 244 | defined "^1.0.0" 245 | deps-sort "^2.0.0" 246 | domain-browser "~1.1.0" 247 | duplexer2 "~0.1.2" 248 | events "~1.1.0" 249 | glob "^7.1.0" 250 | has "^1.0.0" 251 | htmlescape "^1.1.0" 252 | https-browserify "^1.0.0" 253 | inherits "~2.0.1" 254 | insert-module-globals "^7.0.0" 255 | labeled-stream-splicer "^2.0.0" 256 | module-deps "^4.0.8" 257 | os-browserify "~0.3.0" 258 | parents "^1.0.1" 259 | path-browserify "~0.0.0" 260 | process "~0.11.0" 261 | punycode "^1.3.2" 262 | querystring-es3 "~0.2.0" 263 | read-only-stream "^2.0.0" 264 | readable-stream "^2.0.2" 265 | resolve "^1.1.4" 266 | shasum "^1.0.0" 267 | shell-quote "^1.6.1" 268 | stream-browserify "^2.0.0" 269 | stream-http "^2.0.0" 270 | string_decoder "~1.0.0" 271 | subarg "^1.0.0" 272 | syntax-error "^1.1.1" 273 | through2 "^2.0.0" 274 | timers-browserify "^1.0.1" 275 | tty-browserify "~0.0.0" 276 | url "~0.11.0" 277 | util "~0.10.1" 278 | vm-browserify "~0.0.1" 279 | xtend "^4.0.0" 280 | 281 | buffer-shims@~1.0.0: 282 | version "1.0.0" 283 | resolved "https://registry.yarnpkg.com/buffer-shims/-/buffer-shims-1.0.0.tgz#9978ce317388c649ad8793028c3477ef044a8b51" 284 | 285 | buffer-xor@^1.0.2: 286 | version "1.0.3" 287 | resolved "https://registry.yarnpkg.com/buffer-xor/-/buffer-xor-1.0.3.tgz#26e61ed1422fb70dd42e6e36729ed51d855fe8d9" 288 | 289 | buffer@^5.0.2: 290 | version "5.0.6" 291 | resolved "https://registry.yarnpkg.com/buffer/-/buffer-5.0.6.tgz#2ea669f7eec0b6eda05b08f8b5ff661b28573588" 292 | dependencies: 293 | base64-js "^1.0.2" 294 | ieee754 "^1.1.4" 295 | 296 | builtin-modules@^1.1.1: 297 | version "1.1.1" 298 | resolved "https://registry.yarnpkg.com/builtin-modules/-/builtin-modules-1.1.1.tgz#270f076c5a72c02f5b65a47df94c5fe3a278892f" 299 | 300 | builtin-status-codes@^3.0.0: 301 | version "3.0.0" 302 | resolved "https://registry.yarnpkg.com/builtin-status-codes/-/builtin-status-codes-3.0.0.tgz#85982878e21b98e1c66425e03d0174788f569ee8" 303 | 304 | cached-path-relative@^1.0.0: 305 | version "1.0.1" 306 | resolved "https://registry.yarnpkg.com/cached-path-relative/-/cached-path-relative-1.0.1.tgz#d09c4b52800aa4c078e2dd81a869aac90d2e54e7" 307 | 308 | caller-path@^0.1.0: 309 | version "0.1.0" 310 | resolved "https://registry.yarnpkg.com/caller-path/-/caller-path-0.1.0.tgz#94085ef63581ecd3daa92444a8fe94e82577751f" 311 | dependencies: 312 | callsites "^0.2.0" 313 | 314 | callsites@^0.2.0: 315 | version "0.2.0" 316 | resolved "https://registry.yarnpkg.com/callsites/-/callsites-0.2.0.tgz#afab96262910a7f33c19a5775825c69f34e350ca" 317 | 318 | camel-case@3.0.x: 319 | version "3.0.0" 320 | resolved "https://registry.yarnpkg.com/camel-case/-/camel-case-3.0.0.tgz#ca3c3688a4e9cf3a4cda777dc4dcbc713249cf73" 321 | dependencies: 322 | no-case "^2.2.0" 323 | upper-case "^1.1.1" 324 | 325 | chalk@^1.0.0, chalk@^1.1.0, chalk@^1.1.1, chalk@^1.1.3: 326 | version "1.1.3" 327 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-1.1.3.tgz#a8115c55e4a702fe4d150abd3872822a7e09fc98" 328 | dependencies: 329 | ansi-styles "^2.2.1" 330 | escape-string-regexp "^1.0.2" 331 | has-ansi "^2.0.0" 332 | strip-ansi "^3.0.0" 333 | supports-color "^2.0.0" 334 | 335 | cipher-base@^1.0.0, cipher-base@^1.0.1: 336 | version "1.0.3" 337 | resolved "https://registry.yarnpkg.com/cipher-base/-/cipher-base-1.0.3.tgz#eeabf194419ce900da3018c207d212f2a6df0a07" 338 | dependencies: 339 | inherits "^2.0.1" 340 | 341 | circular-json@^0.3.1: 342 | version "0.3.1" 343 | resolved "https://registry.yarnpkg.com/circular-json/-/circular-json-0.3.1.tgz#be8b36aefccde8b3ca7aa2d6afc07a37242c0d2d" 344 | 345 | clean-css@4.1.x: 346 | version "4.1.9" 347 | resolved "https://registry.yarnpkg.com/clean-css/-/clean-css-4.1.9.tgz#35cee8ae7687a49b98034f70de00c4edd3826301" 348 | dependencies: 349 | source-map "0.5.x" 350 | 351 | cli-cursor@^1.0.1: 352 | version "1.0.2" 353 | resolved "https://registry.yarnpkg.com/cli-cursor/-/cli-cursor-1.0.2.tgz#64da3f7d56a54412e59794bd62dc35295e8f2987" 354 | dependencies: 355 | restore-cursor "^1.0.1" 356 | 357 | cli-width@^2.0.0: 358 | version "2.1.0" 359 | resolved "https://registry.yarnpkg.com/cli-width/-/cli-width-2.1.0.tgz#b234ca209b29ef66fc518d9b98d5847b00edf00a" 360 | 361 | co@^4.6.0: 362 | version "4.6.0" 363 | resolved "https://registry.yarnpkg.com/co/-/co-4.6.0.tgz#6ea6bdf3d853ae54ccb8e47bfa0bf3f9031fb184" 364 | 365 | code-point-at@^1.0.0: 366 | version "1.1.0" 367 | resolved "https://registry.yarnpkg.com/code-point-at/-/code-point-at-1.1.0.tgz#0d070b4d043a5bea33a2f1a40e2edb3d9a4ccf77" 368 | 369 | combine-source-map@~0.7.1: 370 | version "0.7.2" 371 | resolved "https://registry.yarnpkg.com/combine-source-map/-/combine-source-map-0.7.2.tgz#0870312856b307a87cc4ac486f3a9a62aeccc09e" 372 | dependencies: 373 | convert-source-map "~1.1.0" 374 | inline-source-map "~0.6.0" 375 | lodash.memoize "~3.0.3" 376 | source-map "~0.5.3" 377 | 378 | commander@2.11.x, commander@~2.11.0: 379 | version "2.11.0" 380 | resolved "https://registry.yarnpkg.com/commander/-/commander-2.11.0.tgz#157152fd1e7a6c8d98a5b715cf376df928004563" 381 | 382 | concat-map@0.0.1: 383 | version "0.0.1" 384 | resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b" 385 | 386 | concat-stream@^1.5.2, concat-stream@~1.5.0, concat-stream@~1.5.1: 387 | version "1.5.2" 388 | resolved "https://registry.yarnpkg.com/concat-stream/-/concat-stream-1.5.2.tgz#708978624d856af41a5a741defdd261da752c266" 389 | dependencies: 390 | inherits "~2.0.1" 391 | readable-stream "~2.0.0" 392 | typedarray "~0.0.5" 393 | 394 | console-browserify@^1.1.0: 395 | version "1.1.0" 396 | resolved "https://registry.yarnpkg.com/console-browserify/-/console-browserify-1.1.0.tgz#f0241c45730a9fc6323b206dbf38edc741d0bb10" 397 | dependencies: 398 | date-now "^0.1.4" 399 | 400 | constants-browserify@~1.0.0: 401 | version "1.0.0" 402 | resolved "https://registry.yarnpkg.com/constants-browserify/-/constants-browserify-1.0.0.tgz#c20b96d8c617748aaf1c16021760cd27fcb8cb75" 403 | 404 | contains-path@^0.1.0: 405 | version "0.1.0" 406 | resolved "https://registry.yarnpkg.com/contains-path/-/contains-path-0.1.0.tgz#fe8cf184ff6670b6baef01a9d4861a5cbec4120a" 407 | 408 | convert-source-map@~1.1.0: 409 | version "1.1.3" 410 | resolved "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-1.1.3.tgz#4829c877e9fe49b3161f3bf3673888e204699860" 411 | 412 | core-util-is@~1.0.0: 413 | version "1.0.2" 414 | resolved "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.2.tgz#b5fd54220aa2bc5ab57aab7140c940754503c1a7" 415 | 416 | create-ecdh@^4.0.0: 417 | version "4.0.0" 418 | resolved "https://registry.yarnpkg.com/create-ecdh/-/create-ecdh-4.0.0.tgz#888c723596cdf7612f6498233eebd7a35301737d" 419 | dependencies: 420 | bn.js "^4.1.0" 421 | elliptic "^6.0.0" 422 | 423 | create-hash@^1.1.0, create-hash@^1.1.1: 424 | version "1.1.2" 425 | resolved "https://registry.yarnpkg.com/create-hash/-/create-hash-1.1.2.tgz#51210062d7bb7479f6c65bb41a92208b1d61abad" 426 | dependencies: 427 | cipher-base "^1.0.1" 428 | inherits "^2.0.1" 429 | ripemd160 "^1.0.0" 430 | sha.js "^2.3.6" 431 | 432 | create-hmac@^1.1.0, create-hmac@^1.1.2: 433 | version "1.1.4" 434 | resolved "https://registry.yarnpkg.com/create-hmac/-/create-hmac-1.1.4.tgz#d3fb4ba253eb8b3f56e39ea2fbcb8af747bd3170" 435 | dependencies: 436 | create-hash "^1.1.0" 437 | inherits "^2.0.1" 438 | 439 | crypto-browserify@^3.0.0: 440 | version "3.11.0" 441 | resolved "https://registry.yarnpkg.com/crypto-browserify/-/crypto-browserify-3.11.0.tgz#3652a0906ab9b2a7e0c3ce66a408e957a2485522" 442 | dependencies: 443 | browserify-cipher "^1.0.0" 444 | browserify-sign "^4.0.0" 445 | create-ecdh "^4.0.0" 446 | create-hash "^1.1.0" 447 | create-hmac "^1.1.0" 448 | diffie-hellman "^5.0.0" 449 | inherits "^2.0.1" 450 | pbkdf2 "^3.0.3" 451 | public-encrypt "^4.0.0" 452 | randombytes "^2.0.0" 453 | 454 | d@1: 455 | version "1.0.0" 456 | resolved "https://registry.yarnpkg.com/d/-/d-1.0.0.tgz#754bb5bfe55451da69a58b94d45f4c5b0462d58f" 457 | dependencies: 458 | es5-ext "^0.10.9" 459 | 460 | date-now@^0.1.4: 461 | version "0.1.4" 462 | resolved "https://registry.yarnpkg.com/date-now/-/date-now-0.1.4.tgz#eaf439fd4d4848ad74e5cc7dbef200672b9e345b" 463 | 464 | debug-log@^1.0.0: 465 | version "1.0.1" 466 | resolved "https://registry.yarnpkg.com/debug-log/-/debug-log-1.0.1.tgz#2307632d4c04382b8df8a32f70b895046d52745f" 467 | 468 | debug@2.2.0: 469 | version "2.2.0" 470 | resolved "https://registry.yarnpkg.com/debug/-/debug-2.2.0.tgz#f87057e995b1a1f6ae6a4960664137bc56f039da" 471 | dependencies: 472 | ms "0.7.1" 473 | 474 | debug@^2.1.1, debug@^2.2.0: 475 | version "2.6.4" 476 | resolved "https://registry.yarnpkg.com/debug/-/debug-2.6.4.tgz#7586a9b3c39741c0282ae33445c4e8ac74734fe0" 477 | dependencies: 478 | ms "0.7.3" 479 | 480 | deep-equal@~1.0.1: 481 | version "1.0.1" 482 | resolved "https://registry.yarnpkg.com/deep-equal/-/deep-equal-1.0.1.tgz#f5d260292b660e084eff4cdbc9f08ad3247448b5" 483 | 484 | deep-is@~0.1.3: 485 | version "0.1.3" 486 | resolved "https://registry.yarnpkg.com/deep-is/-/deep-is-0.1.3.tgz#b369d6fb5dbc13eecf524f91b070feedc357cf34" 487 | 488 | define-properties@^1.1.2: 489 | version "1.1.2" 490 | resolved "https://registry.yarnpkg.com/define-properties/-/define-properties-1.1.2.tgz#83a73f2fea569898fb737193c8f873caf6d45c94" 491 | dependencies: 492 | foreach "^2.0.5" 493 | object-keys "^1.0.8" 494 | 495 | defined@^1.0.0, defined@~1.0.0: 496 | version "1.0.0" 497 | resolved "https://registry.yarnpkg.com/defined/-/defined-1.0.0.tgz#c98d9bcef75674188e110969151199e39b1fa693" 498 | 499 | deglob@^2.1.0: 500 | version "2.1.0" 501 | resolved "https://registry.yarnpkg.com/deglob/-/deglob-2.1.0.tgz#4d44abe16ef32c779b4972bd141a80325029a14a" 502 | dependencies: 503 | find-root "^1.0.0" 504 | glob "^7.0.5" 505 | ignore "^3.0.9" 506 | pkg-config "^1.1.0" 507 | run-parallel "^1.1.2" 508 | uniq "^1.0.1" 509 | 510 | del@^2.0.2: 511 | version "2.2.2" 512 | resolved "https://registry.yarnpkg.com/del/-/del-2.2.2.tgz#c12c981d067846c84bcaf862cff930d907ffd1a8" 513 | dependencies: 514 | globby "^5.0.0" 515 | is-path-cwd "^1.0.0" 516 | is-path-in-cwd "^1.0.0" 517 | object-assign "^4.0.1" 518 | pify "^2.0.0" 519 | pinkie-promise "^2.0.0" 520 | rimraf "^2.2.8" 521 | 522 | deps-sort@^2.0.0: 523 | version "2.0.0" 524 | resolved "https://registry.yarnpkg.com/deps-sort/-/deps-sort-2.0.0.tgz#091724902e84658260eb910748cccd1af6e21fb5" 525 | dependencies: 526 | JSONStream "^1.0.3" 527 | shasum "^1.0.0" 528 | subarg "^1.0.0" 529 | through2 "^2.0.0" 530 | 531 | des.js@^1.0.0: 532 | version "1.0.0" 533 | resolved "https://registry.yarnpkg.com/des.js/-/des.js-1.0.0.tgz#c074d2e2aa6a8a9a07dbd61f9a15c2cd83ec8ecc" 534 | dependencies: 535 | inherits "^2.0.1" 536 | minimalistic-assert "^1.0.0" 537 | 538 | detective@^4.0.0: 539 | version "4.5.0" 540 | resolved "https://registry.yarnpkg.com/detective/-/detective-4.5.0.tgz#6e5a8c6b26e6c7a254b1c6b6d7490d98ec91edd1" 541 | dependencies: 542 | acorn "^4.0.3" 543 | defined "^1.0.0" 544 | 545 | diffie-hellman@^5.0.0: 546 | version "5.0.2" 547 | resolved "https://registry.yarnpkg.com/diffie-hellman/-/diffie-hellman-5.0.2.tgz#b5835739270cfe26acf632099fded2a07f209e5e" 548 | dependencies: 549 | bn.js "^4.1.0" 550 | miller-rabin "^4.0.0" 551 | randombytes "^2.0.0" 552 | 553 | doctrine@1.5.0, doctrine@^1.2.2: 554 | version "1.5.0" 555 | resolved "https://registry.yarnpkg.com/doctrine/-/doctrine-1.5.0.tgz#379dce730f6166f76cefa4e6707a159b02c5a6fa" 556 | dependencies: 557 | esutils "^2.0.2" 558 | isarray "^1.0.0" 559 | 560 | doctrine@^2.0.0: 561 | version "2.0.0" 562 | resolved "https://registry.yarnpkg.com/doctrine/-/doctrine-2.0.0.tgz#c73d8d2909d22291e1a007a395804da8b665fe63" 563 | dependencies: 564 | esutils "^2.0.2" 565 | isarray "^1.0.0" 566 | 567 | dom-walk@^0.1.0: 568 | version "0.1.1" 569 | resolved "https://registry.yarnpkg.com/dom-walk/-/dom-walk-0.1.1.tgz#672226dc74c8f799ad35307df936aba11acd6018" 570 | 571 | domain-browser@~1.1.0: 572 | version "1.1.7" 573 | resolved "https://registry.yarnpkg.com/domain-browser/-/domain-browser-1.1.7.tgz#867aa4b093faa05f1de08c06f4d7b21fdf8698bc" 574 | 575 | duplexer2@^0.1.2, duplexer2@~0.1.0, duplexer2@~0.1.2: 576 | version "0.1.4" 577 | resolved "https://registry.yarnpkg.com/duplexer2/-/duplexer2-0.1.4.tgz#8b12dab878c0d69e3e7891051662a32fc6bddcc1" 578 | dependencies: 579 | readable-stream "^2.0.2" 580 | 581 | elliptic@^6.0.0: 582 | version "6.4.0" 583 | resolved "https://registry.yarnpkg.com/elliptic/-/elliptic-6.4.0.tgz#cac9af8762c85836187003c8dfe193e5e2eae5df" 584 | dependencies: 585 | bn.js "^4.4.0" 586 | brorand "^1.0.1" 587 | hash.js "^1.0.0" 588 | hmac-drbg "^1.0.0" 589 | inherits "^2.0.1" 590 | minimalistic-assert "^1.0.0" 591 | minimalistic-crypto-utils "^1.0.0" 592 | 593 | error-ex@^1.2.0: 594 | version "1.3.1" 595 | resolved "https://registry.yarnpkg.com/error-ex/-/error-ex-1.3.1.tgz#f855a86ce61adc4e8621c3cda21e7a7612c3a8dc" 596 | dependencies: 597 | is-arrayish "^0.2.1" 598 | 599 | es-abstract@^1.5.0: 600 | version "1.9.0" 601 | resolved "https://registry.yarnpkg.com/es-abstract/-/es-abstract-1.9.0.tgz#690829a07cae36b222e7fd9b75c0d0573eb25227" 602 | dependencies: 603 | es-to-primitive "^1.1.1" 604 | function-bind "^1.1.1" 605 | has "^1.0.1" 606 | is-callable "^1.1.3" 607 | is-regex "^1.0.4" 608 | 609 | es-abstract@^1.7.0: 610 | version "1.7.0" 611 | resolved "https://registry.yarnpkg.com/es-abstract/-/es-abstract-1.7.0.tgz#dfade774e01bfcd97f96180298c449c8623fb94c" 612 | dependencies: 613 | es-to-primitive "^1.1.1" 614 | function-bind "^1.1.0" 615 | is-callable "^1.1.3" 616 | is-regex "^1.0.3" 617 | 618 | es-to-primitive@^1.1.1: 619 | version "1.1.1" 620 | resolved "https://registry.yarnpkg.com/es-to-primitive/-/es-to-primitive-1.1.1.tgz#45355248a88979034b6792e19bb81f2b7975dd0d" 621 | dependencies: 622 | is-callable "^1.1.1" 623 | is-date-object "^1.0.1" 624 | is-symbol "^1.0.1" 625 | 626 | es5-ext@^0.10.14, es5-ext@^0.10.9, es5-ext@~0.10.14: 627 | version "0.10.15" 628 | resolved "https://registry.yarnpkg.com/es5-ext/-/es5-ext-0.10.15.tgz#c330a5934c1ee21284a7c081a86e5fd937c91ea6" 629 | dependencies: 630 | es6-iterator "2" 631 | es6-symbol "~3.1" 632 | 633 | es6-iterator@2, es6-iterator@^2.0.1, es6-iterator@~2.0.1: 634 | version "2.0.1" 635 | resolved "https://registry.yarnpkg.com/es6-iterator/-/es6-iterator-2.0.1.tgz#8e319c9f0453bf575d374940a655920e59ca5512" 636 | dependencies: 637 | d "1" 638 | es5-ext "^0.10.14" 639 | es6-symbol "^3.1" 640 | 641 | es6-map@^0.1.3: 642 | version "0.1.5" 643 | resolved "https://registry.yarnpkg.com/es6-map/-/es6-map-0.1.5.tgz#9136e0503dcc06a301690f0bb14ff4e364e949f0" 644 | dependencies: 645 | d "1" 646 | es5-ext "~0.10.14" 647 | es6-iterator "~2.0.1" 648 | es6-set "~0.1.5" 649 | es6-symbol "~3.1.1" 650 | event-emitter "~0.3.5" 651 | 652 | es6-set@~0.1.5: 653 | version "0.1.5" 654 | resolved "https://registry.yarnpkg.com/es6-set/-/es6-set-0.1.5.tgz#d2b3ec5d4d800ced818db538d28974db0a73ccb1" 655 | dependencies: 656 | d "1" 657 | es5-ext "~0.10.14" 658 | es6-iterator "~2.0.1" 659 | es6-symbol "3.1.1" 660 | event-emitter "~0.3.5" 661 | 662 | es6-symbol@3.1.1, es6-symbol@^3.1, es6-symbol@^3.1.1, es6-symbol@~3.1, es6-symbol@~3.1.1: 663 | version "3.1.1" 664 | resolved "https://registry.yarnpkg.com/es6-symbol/-/es6-symbol-3.1.1.tgz#bf00ef4fdab6ba1b46ecb7b629b4c7ed5715cc77" 665 | dependencies: 666 | d "1" 667 | es5-ext "~0.10.14" 668 | 669 | es6-weak-map@^2.0.1: 670 | version "2.0.2" 671 | resolved "https://registry.yarnpkg.com/es6-weak-map/-/es6-weak-map-2.0.2.tgz#5e3ab32251ffd1538a1f8e5ffa1357772f92d96f" 672 | dependencies: 673 | d "1" 674 | es5-ext "^0.10.14" 675 | es6-iterator "^2.0.1" 676 | es6-symbol "^3.1.1" 677 | 678 | escape-string-regexp@^1.0.2, escape-string-regexp@^1.0.5: 679 | version "1.0.5" 680 | resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4" 681 | 682 | escope@^3.6.0: 683 | version "3.6.0" 684 | resolved "https://registry.yarnpkg.com/escope/-/escope-3.6.0.tgz#e01975e812781a163a6dadfdd80398dc64c889c3" 685 | dependencies: 686 | es6-map "^0.1.3" 687 | es6-weak-map "^2.0.1" 688 | esrecurse "^4.1.0" 689 | estraverse "^4.1.1" 690 | 691 | eslint-config-standard-jsx@4.0.2: 692 | version "4.0.2" 693 | resolved "https://registry.yarnpkg.com/eslint-config-standard-jsx/-/eslint-config-standard-jsx-4.0.2.tgz#009e53c4ddb1e9ee70b4650ffe63a7f39f8836e1" 694 | 695 | eslint-config-standard@10.2.1: 696 | version "10.2.1" 697 | resolved "https://registry.yarnpkg.com/eslint-config-standard/-/eslint-config-standard-10.2.1.tgz#c061e4d066f379dc17cd562c64e819b4dd454591" 698 | 699 | eslint-import-resolver-node@^0.2.0: 700 | version "0.2.3" 701 | resolved "https://registry.yarnpkg.com/eslint-import-resolver-node/-/eslint-import-resolver-node-0.2.3.tgz#5add8106e8c928db2cba232bcd9efa846e3da16c" 702 | dependencies: 703 | debug "^2.2.0" 704 | object-assign "^4.0.1" 705 | resolve "^1.1.6" 706 | 707 | eslint-module-utils@^2.0.0: 708 | version "2.0.0" 709 | resolved "https://registry.yarnpkg.com/eslint-module-utils/-/eslint-module-utils-2.0.0.tgz#a6f8c21d901358759cdc35dbac1982ae1ee58bce" 710 | dependencies: 711 | debug "2.2.0" 712 | pkg-dir "^1.0.0" 713 | 714 | eslint-plugin-import@~2.2.0: 715 | version "2.2.0" 716 | resolved "https://registry.yarnpkg.com/eslint-plugin-import/-/eslint-plugin-import-2.2.0.tgz#72ba306fad305d67c4816348a4699a4229ac8b4e" 717 | dependencies: 718 | builtin-modules "^1.1.1" 719 | contains-path "^0.1.0" 720 | debug "^2.2.0" 721 | doctrine "1.5.0" 722 | eslint-import-resolver-node "^0.2.0" 723 | eslint-module-utils "^2.0.0" 724 | has "^1.0.1" 725 | lodash.cond "^4.3.0" 726 | minimatch "^3.0.3" 727 | pkg-up "^1.0.0" 728 | 729 | eslint-plugin-node@~4.2.2: 730 | version "4.2.2" 731 | resolved "https://registry.yarnpkg.com/eslint-plugin-node/-/eslint-plugin-node-4.2.2.tgz#82959ca9aed79fcbd28bb1b188d05cac04fb3363" 732 | dependencies: 733 | ignore "^3.0.11" 734 | minimatch "^3.0.2" 735 | object-assign "^4.0.1" 736 | resolve "^1.1.7" 737 | semver "5.3.0" 738 | 739 | eslint-plugin-promise@~3.5.0: 740 | version "3.5.0" 741 | resolved "https://registry.yarnpkg.com/eslint-plugin-promise/-/eslint-plugin-promise-3.5.0.tgz#78fbb6ffe047201627569e85a6c5373af2a68fca" 742 | 743 | eslint-plugin-react@~6.10.0: 744 | version "6.10.3" 745 | resolved "https://registry.yarnpkg.com/eslint-plugin-react/-/eslint-plugin-react-6.10.3.tgz#c5435beb06774e12c7db2f6abaddcbf900cd3f78" 746 | dependencies: 747 | array.prototype.find "^2.0.1" 748 | doctrine "^1.2.2" 749 | has "^1.0.1" 750 | jsx-ast-utils "^1.3.4" 751 | object.assign "^4.0.4" 752 | 753 | eslint-plugin-standard@~3.0.1: 754 | version "3.0.1" 755 | resolved "https://registry.yarnpkg.com/eslint-plugin-standard/-/eslint-plugin-standard-3.0.1.tgz#34d0c915b45edc6f010393c7eef3823b08565cf2" 756 | 757 | eslint@~3.19.0: 758 | version "3.19.0" 759 | resolved "https://registry.yarnpkg.com/eslint/-/eslint-3.19.0.tgz#c8fc6201c7f40dd08941b87c085767386a679acc" 760 | dependencies: 761 | babel-code-frame "^6.16.0" 762 | chalk "^1.1.3" 763 | concat-stream "^1.5.2" 764 | debug "^2.1.1" 765 | doctrine "^2.0.0" 766 | escope "^3.6.0" 767 | espree "^3.4.0" 768 | esquery "^1.0.0" 769 | estraverse "^4.2.0" 770 | esutils "^2.0.2" 771 | file-entry-cache "^2.0.0" 772 | glob "^7.0.3" 773 | globals "^9.14.0" 774 | ignore "^3.2.0" 775 | imurmurhash "^0.1.4" 776 | inquirer "^0.12.0" 777 | is-my-json-valid "^2.10.0" 778 | is-resolvable "^1.0.0" 779 | js-yaml "^3.5.1" 780 | json-stable-stringify "^1.0.0" 781 | levn "^0.3.0" 782 | lodash "^4.0.0" 783 | mkdirp "^0.5.0" 784 | natural-compare "^1.4.0" 785 | optionator "^0.8.2" 786 | path-is-inside "^1.0.1" 787 | pluralize "^1.2.1" 788 | progress "^1.1.8" 789 | require-uncached "^1.0.2" 790 | shelljs "^0.7.5" 791 | strip-bom "^3.0.0" 792 | strip-json-comments "~2.0.1" 793 | table "^3.7.8" 794 | text-table "~0.2.0" 795 | user-home "^2.0.0" 796 | 797 | espree@^3.4.0: 798 | version "3.4.2" 799 | resolved "https://registry.yarnpkg.com/espree/-/espree-3.4.2.tgz#38dbdedbedc95b8961a1fbf04734a8f6a9c8c592" 800 | dependencies: 801 | acorn "^5.0.1" 802 | acorn-jsx "^3.0.0" 803 | 804 | esprima@^3.1.1: 805 | version "3.1.3" 806 | resolved "https://registry.yarnpkg.com/esprima/-/esprima-3.1.3.tgz#fdca51cee6133895e3c88d535ce49dbff62a4633" 807 | 808 | esquery@^1.0.0: 809 | version "1.0.0" 810 | resolved "https://registry.yarnpkg.com/esquery/-/esquery-1.0.0.tgz#cfba8b57d7fba93f17298a8a006a04cda13d80fa" 811 | dependencies: 812 | estraverse "^4.0.0" 813 | 814 | esrecurse@^4.1.0: 815 | version "4.1.0" 816 | resolved "https://registry.yarnpkg.com/esrecurse/-/esrecurse-4.1.0.tgz#4713b6536adf7f2ac4f327d559e7756bff648220" 817 | dependencies: 818 | estraverse "~4.1.0" 819 | object-assign "^4.0.1" 820 | 821 | estraverse@^4.0.0, estraverse@^4.1.1, estraverse@^4.2.0: 822 | version "4.2.0" 823 | resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-4.2.0.tgz#0dee3fed31fcd469618ce7342099fc1afa0bdb13" 824 | 825 | estraverse@~4.1.0: 826 | version "4.1.1" 827 | resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-4.1.1.tgz#f6caca728933a850ef90661d0e17982ba47111a2" 828 | 829 | esutils@^2.0.2: 830 | version "2.0.2" 831 | resolved "https://registry.yarnpkg.com/esutils/-/esutils-2.0.2.tgz#0abf4f1caa5bcb1f7a9d8acc6dea4faaa04bac9b" 832 | 833 | event-emitter@~0.3.5: 834 | version "0.3.5" 835 | resolved "https://registry.yarnpkg.com/event-emitter/-/event-emitter-0.3.5.tgz#df8c69eef1647923c7157b9ce83840610b02cc39" 836 | dependencies: 837 | d "1" 838 | es5-ext "~0.10.14" 839 | 840 | events@~1.1.0: 841 | version "1.1.1" 842 | resolved "https://registry.yarnpkg.com/events/-/events-1.1.1.tgz#9ebdb7635ad099c70dcc4c2a1f5004288e8bd924" 843 | 844 | evp_bytestokey@^1.0.0: 845 | version "1.0.0" 846 | resolved "https://registry.yarnpkg.com/evp_bytestokey/-/evp_bytestokey-1.0.0.tgz#497b66ad9fef65cd7c08a6180824ba1476b66e53" 847 | dependencies: 848 | create-hash "^1.1.1" 849 | 850 | exit-hook@^1.0.0: 851 | version "1.1.1" 852 | resolved "https://registry.yarnpkg.com/exit-hook/-/exit-hook-1.1.1.tgz#f05ca233b48c05d54fff07765df8507e95c02ff8" 853 | 854 | fast-levenshtein@~2.0.4: 855 | version "2.0.6" 856 | resolved "https://registry.yarnpkg.com/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz#3d8a5c66883a16a30ca8643e851f19baa7797917" 857 | 858 | figures@^1.3.5: 859 | version "1.7.0" 860 | resolved "https://registry.yarnpkg.com/figures/-/figures-1.7.0.tgz#cbe1e3affcf1cd44b80cadfed28dc793a9701d2e" 861 | dependencies: 862 | escape-string-regexp "^1.0.5" 863 | object-assign "^4.1.0" 864 | 865 | file-entry-cache@^2.0.0: 866 | version "2.0.0" 867 | resolved "https://registry.yarnpkg.com/file-entry-cache/-/file-entry-cache-2.0.0.tgz#c392990c3e684783d838b8c84a45d8a048458361" 868 | dependencies: 869 | flat-cache "^1.2.1" 870 | object-assign "^4.0.1" 871 | 872 | find-root@^1.0.0: 873 | version "1.0.0" 874 | resolved "https://registry.yarnpkg.com/find-root/-/find-root-1.0.0.tgz#962ff211aab25c6520feeeb8d6287f8f6e95807a" 875 | 876 | find-up@^1.0.0: 877 | version "1.1.2" 878 | resolved "https://registry.yarnpkg.com/find-up/-/find-up-1.1.2.tgz#6b2e9822b1a2ce0a60ab64d610eccad53cb24d0f" 879 | dependencies: 880 | path-exists "^2.0.0" 881 | pinkie-promise "^2.0.0" 882 | 883 | find-up@^2.0.0: 884 | version "2.1.0" 885 | resolved "https://registry.yarnpkg.com/find-up/-/find-up-2.1.0.tgz#45d1b7e506c717ddd482775a2b77920a3c0c57a7" 886 | dependencies: 887 | locate-path "^2.0.0" 888 | 889 | flat-cache@^1.2.1: 890 | version "1.2.2" 891 | resolved "https://registry.yarnpkg.com/flat-cache/-/flat-cache-1.2.2.tgz#fa86714e72c21db88601761ecf2f555d1abc6b96" 892 | dependencies: 893 | circular-json "^0.3.1" 894 | del "^2.0.2" 895 | graceful-fs "^4.1.2" 896 | write "^0.2.1" 897 | 898 | for-each@~0.3.2: 899 | version "0.3.2" 900 | resolved "https://registry.yarnpkg.com/for-each/-/for-each-0.3.2.tgz#2c40450b9348e97f281322593ba96704b9abd4d4" 901 | dependencies: 902 | is-function "~1.0.0" 903 | 904 | foreach@^2.0.5: 905 | version "2.0.5" 906 | resolved "https://registry.yarnpkg.com/foreach/-/foreach-2.0.5.tgz#0bee005018aeb260d0a3af3ae658dd0136ec1b99" 907 | 908 | fs.realpath@^1.0.0: 909 | version "1.0.0" 910 | resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f" 911 | 912 | function-bind@^1.0.2, function-bind@^1.1.0: 913 | version "1.1.0" 914 | resolved "https://registry.yarnpkg.com/function-bind/-/function-bind-1.1.0.tgz#16176714c801798e4e8f2cf7f7529467bb4a5771" 915 | 916 | function-bind@^1.1.1, function-bind@~1.1.0: 917 | version "1.1.1" 918 | resolved "https://registry.yarnpkg.com/function-bind/-/function-bind-1.1.1.tgz#a56899d3ea3c9bab874bb9773b7c5ede92f4895d" 919 | 920 | generate-function@^2.0.0: 921 | version "2.0.0" 922 | resolved "https://registry.yarnpkg.com/generate-function/-/generate-function-2.0.0.tgz#6858fe7c0969b7d4e9093337647ac79f60dfbe74" 923 | 924 | generate-object-property@^1.1.0: 925 | version "1.2.0" 926 | resolved "https://registry.yarnpkg.com/generate-object-property/-/generate-object-property-1.2.0.tgz#9c0e1c40308ce804f4783618b937fa88f99d50d0" 927 | dependencies: 928 | is-property "^1.0.0" 929 | 930 | get-stdin@^5.0.1: 931 | version "5.0.1" 932 | resolved "https://registry.yarnpkg.com/get-stdin/-/get-stdin-5.0.1.tgz#122e161591e21ff4c52530305693f20e6393a398" 933 | 934 | glob@^7.0.0, glob@^7.0.3, glob@^7.0.5, glob@^7.1.0: 935 | version "7.1.1" 936 | resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.1.tgz#805211df04faaf1c63a3600306cdf5ade50b2ec8" 937 | dependencies: 938 | fs.realpath "^1.0.0" 939 | inflight "^1.0.4" 940 | inherits "2" 941 | minimatch "^3.0.2" 942 | once "^1.3.0" 943 | path-is-absolute "^1.0.0" 944 | 945 | glob@~7.1.2: 946 | version "7.1.2" 947 | resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.2.tgz#c19c9df9a028702d678612384a6552404c636d15" 948 | dependencies: 949 | fs.realpath "^1.0.0" 950 | inflight "^1.0.4" 951 | inherits "2" 952 | minimatch "^3.0.4" 953 | once "^1.3.0" 954 | path-is-absolute "^1.0.0" 955 | 956 | global@^4.3.0: 957 | version "4.3.2" 958 | resolved "https://registry.yarnpkg.com/global/-/global-4.3.2.tgz#e76989268a6c74c38908b1305b10fc0e394e9d0f" 959 | dependencies: 960 | min-document "^2.19.0" 961 | process "~0.5.1" 962 | 963 | globals@^9.14.0: 964 | version "9.17.0" 965 | resolved "https://registry.yarnpkg.com/globals/-/globals-9.17.0.tgz#0c0ca696d9b9bb694d2e5470bd37777caad50286" 966 | 967 | globby@^5.0.0: 968 | version "5.0.0" 969 | resolved "https://registry.yarnpkg.com/globby/-/globby-5.0.0.tgz#ebd84667ca0dbb330b99bcfc68eac2bc54370e0d" 970 | dependencies: 971 | array-union "^1.0.1" 972 | arrify "^1.0.0" 973 | glob "^7.0.3" 974 | object-assign "^4.0.1" 975 | pify "^2.0.0" 976 | pinkie-promise "^2.0.0" 977 | 978 | graceful-fs@^4.1.2: 979 | version "4.1.11" 980 | resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.1.11.tgz#0e8bdfe4d1ddb8854d64e04ea7c00e2a026e5658" 981 | 982 | has-ansi@^2.0.0: 983 | version "2.0.0" 984 | resolved "https://registry.yarnpkg.com/has-ansi/-/has-ansi-2.0.0.tgz#34f5049ce1ecdf2b0649af3ef24e45ed35416d91" 985 | dependencies: 986 | ansi-regex "^2.0.0" 987 | 988 | has@^1.0.0, has@^1.0.1, has@~1.0.1: 989 | version "1.0.1" 990 | resolved "https://registry.yarnpkg.com/has/-/has-1.0.1.tgz#8461733f538b0837c9361e39a9ab9e9704dc2f28" 991 | dependencies: 992 | function-bind "^1.0.2" 993 | 994 | hash.js@^1.0.0, hash.js@^1.0.3: 995 | version "1.0.3" 996 | resolved "https://registry.yarnpkg.com/hash.js/-/hash.js-1.0.3.tgz#1332ff00156c0a0ffdd8236013d07b77a0451573" 997 | dependencies: 998 | inherits "^2.0.1" 999 | 1000 | he@1.1.x: 1001 | version "1.1.1" 1002 | resolved "https://registry.yarnpkg.com/he/-/he-1.1.1.tgz#93410fd21b009735151f8868c2f271f3427e23fd" 1003 | 1004 | hmac-drbg@^1.0.0: 1005 | version "1.0.1" 1006 | resolved "https://registry.yarnpkg.com/hmac-drbg/-/hmac-drbg-1.0.1.tgz#d2745701025a6c775a6c545793ed502fc0c649a1" 1007 | dependencies: 1008 | hash.js "^1.0.3" 1009 | minimalistic-assert "^1.0.0" 1010 | minimalistic-crypto-utils "^1.0.1" 1011 | 1012 | html-minifier@^3.5.6: 1013 | version "3.5.6" 1014 | resolved "https://registry.yarnpkg.com/html-minifier/-/html-minifier-3.5.6.tgz#7e4e661a09999599c7d8e8a2b8d7fb7430bb5c3e" 1015 | dependencies: 1016 | camel-case "3.0.x" 1017 | clean-css "4.1.x" 1018 | commander "2.11.x" 1019 | he "1.1.x" 1020 | ncname "1.0.x" 1021 | param-case "2.1.x" 1022 | relateurl "0.2.x" 1023 | uglify-js "3.1.x" 1024 | 1025 | htmlescape@^1.1.0: 1026 | version "1.1.1" 1027 | resolved "https://registry.yarnpkg.com/htmlescape/-/htmlescape-1.1.1.tgz#3a03edc2214bca3b66424a3e7959349509cb0351" 1028 | 1029 | https-browserify@^1.0.0: 1030 | version "1.0.0" 1031 | resolved "https://registry.yarnpkg.com/https-browserify/-/https-browserify-1.0.0.tgz#ec06c10e0a34c0f2faf199f7fd7fc78fffd03c73" 1032 | 1033 | hyperscript-attribute-to-property@^1.0.0: 1034 | version "1.0.0" 1035 | resolved "https://registry.yarnpkg.com/hyperscript-attribute-to-property/-/hyperscript-attribute-to-property-1.0.0.tgz#825308d49bb8e2957923f731981bcc811cad7aff" 1036 | 1037 | hyperx@^2.3.0: 1038 | version "2.3.0" 1039 | resolved "https://registry.yarnpkg.com/hyperx/-/hyperx-2.3.0.tgz#70f473d66d4ad550ddd1c83e4be2651276bbf1e2" 1040 | dependencies: 1041 | hyperscript-attribute-to-property "^1.0.0" 1042 | 1043 | ieee754@^1.1.4: 1044 | version "1.1.8" 1045 | resolved "https://registry.yarnpkg.com/ieee754/-/ieee754-1.1.8.tgz#be33d40ac10ef1926701f6f08a2d86fbfd1ad3e4" 1046 | 1047 | ignore@^3.0.11, ignore@^3.0.9, ignore@^3.2.0: 1048 | version "3.2.7" 1049 | resolved "https://registry.yarnpkg.com/ignore/-/ignore-3.2.7.tgz#4810ca5f1d8eca5595213a34b94f2eb4ed926bbd" 1050 | 1051 | imurmurhash@^0.1.4: 1052 | version "0.1.4" 1053 | resolved "https://registry.yarnpkg.com/imurmurhash/-/imurmurhash-0.1.4.tgz#9218b9b2b928a238b13dc4fb6b6d576f231453ea" 1054 | 1055 | indexof@0.0.1: 1056 | version "0.0.1" 1057 | resolved "https://registry.yarnpkg.com/indexof/-/indexof-0.0.1.tgz#82dc336d232b9062179d05ab3293a66059fd435d" 1058 | 1059 | inflight@^1.0.4: 1060 | version "1.0.6" 1061 | resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9" 1062 | dependencies: 1063 | once "^1.3.0" 1064 | wrappy "1" 1065 | 1066 | inherits@2, inherits@^2.0.1, inherits@~2.0.1, inherits@~2.0.3: 1067 | version "2.0.3" 1068 | resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.3.tgz#633c2c83e3da42a502f52466022480f4208261de" 1069 | 1070 | inherits@2.0.1: 1071 | version "2.0.1" 1072 | resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.1.tgz#b17d08d326b4423e568eff719f91b0b1cbdf69f1" 1073 | 1074 | inline-source-map@~0.6.0: 1075 | version "0.6.2" 1076 | resolved "https://registry.yarnpkg.com/inline-source-map/-/inline-source-map-0.6.2.tgz#f9393471c18a79d1724f863fa38b586370ade2a5" 1077 | dependencies: 1078 | source-map "~0.5.3" 1079 | 1080 | inquirer@^0.12.0: 1081 | version "0.12.0" 1082 | resolved "https://registry.yarnpkg.com/inquirer/-/inquirer-0.12.0.tgz#1ef2bfd63504df0bc75785fff8c2c41df12f077e" 1083 | dependencies: 1084 | ansi-escapes "^1.1.0" 1085 | ansi-regex "^2.0.0" 1086 | chalk "^1.0.0" 1087 | cli-cursor "^1.0.1" 1088 | cli-width "^2.0.0" 1089 | figures "^1.3.5" 1090 | lodash "^4.3.0" 1091 | readline2 "^1.0.1" 1092 | run-async "^0.1.0" 1093 | rx-lite "^3.1.2" 1094 | string-width "^1.0.1" 1095 | strip-ansi "^3.0.0" 1096 | through "^2.3.6" 1097 | 1098 | insert-module-globals@^7.0.0: 1099 | version "7.0.1" 1100 | resolved "https://registry.yarnpkg.com/insert-module-globals/-/insert-module-globals-7.0.1.tgz#c03bf4e01cb086d5b5e5ace8ad0afe7889d638c3" 1101 | dependencies: 1102 | JSONStream "^1.0.3" 1103 | combine-source-map "~0.7.1" 1104 | concat-stream "~1.5.1" 1105 | is-buffer "^1.1.0" 1106 | lexical-scope "^1.2.0" 1107 | process "~0.11.0" 1108 | through2 "^2.0.0" 1109 | xtend "^4.0.0" 1110 | 1111 | interpret@^1.0.0: 1112 | version "1.0.3" 1113 | resolved "https://registry.yarnpkg.com/interpret/-/interpret-1.0.3.tgz#cbc35c62eeee73f19ab7b10a801511401afc0f90" 1114 | 1115 | is-arrayish@^0.2.1: 1116 | version "0.2.1" 1117 | resolved "https://registry.yarnpkg.com/is-arrayish/-/is-arrayish-0.2.1.tgz#77c99840527aa8ecb1a8ba697b80645a7a926a9d" 1118 | 1119 | is-buffer@^1.1.0: 1120 | version "1.1.5" 1121 | resolved "https://registry.yarnpkg.com/is-buffer/-/is-buffer-1.1.5.tgz#1f3b26ef613b214b88cbca23cc6c01d87961eecc" 1122 | 1123 | is-callable@^1.1.1, is-callable@^1.1.3: 1124 | version "1.1.3" 1125 | resolved "https://registry.yarnpkg.com/is-callable/-/is-callable-1.1.3.tgz#86eb75392805ddc33af71c92a0eedf74ee7604b2" 1126 | 1127 | is-date-object@^1.0.1: 1128 | version "1.0.1" 1129 | resolved "https://registry.yarnpkg.com/is-date-object/-/is-date-object-1.0.1.tgz#9aa20eb6aeebbff77fbd33e74ca01b33581d3a16" 1130 | 1131 | is-fullwidth-code-point@^1.0.0: 1132 | version "1.0.0" 1133 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz#ef9e31386f031a7f0d643af82fde50c457ef00cb" 1134 | dependencies: 1135 | number-is-nan "^1.0.0" 1136 | 1137 | is-fullwidth-code-point@^2.0.0: 1138 | version "2.0.0" 1139 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz#a3b30a5c4f199183167aaab93beefae3ddfb654f" 1140 | 1141 | is-function@~1.0.0: 1142 | version "1.0.1" 1143 | resolved "https://registry.yarnpkg.com/is-function/-/is-function-1.0.1.tgz#12cfb98b65b57dd3d193a3121f5f6e2f437602b5" 1144 | 1145 | is-my-json-valid@^2.10.0: 1146 | version "2.16.0" 1147 | resolved "https://registry.yarnpkg.com/is-my-json-valid/-/is-my-json-valid-2.16.0.tgz#f079dd9bfdae65ee2038aae8acbc86ab109e3693" 1148 | dependencies: 1149 | generate-function "^2.0.0" 1150 | generate-object-property "^1.1.0" 1151 | jsonpointer "^4.0.0" 1152 | xtend "^4.0.0" 1153 | 1154 | is-path-cwd@^1.0.0: 1155 | version "1.0.0" 1156 | resolved "https://registry.yarnpkg.com/is-path-cwd/-/is-path-cwd-1.0.0.tgz#d225ec23132e89edd38fda767472e62e65f1106d" 1157 | 1158 | is-path-in-cwd@^1.0.0: 1159 | version "1.0.0" 1160 | resolved "https://registry.yarnpkg.com/is-path-in-cwd/-/is-path-in-cwd-1.0.0.tgz#6477582b8214d602346094567003be8a9eac04dc" 1161 | dependencies: 1162 | is-path-inside "^1.0.0" 1163 | 1164 | is-path-inside@^1.0.0: 1165 | version "1.0.0" 1166 | resolved "https://registry.yarnpkg.com/is-path-inside/-/is-path-inside-1.0.0.tgz#fc06e5a1683fbda13de667aff717bbc10a48f37f" 1167 | dependencies: 1168 | path-is-inside "^1.0.1" 1169 | 1170 | is-property@^1.0.0: 1171 | version "1.0.2" 1172 | resolved "https://registry.yarnpkg.com/is-property/-/is-property-1.0.2.tgz#57fe1c4e48474edd65b09911f26b1cd4095dda84" 1173 | 1174 | is-regex@^1.0.3, is-regex@^1.0.4: 1175 | version "1.0.4" 1176 | resolved "https://registry.yarnpkg.com/is-regex/-/is-regex-1.0.4.tgz#5517489b547091b0930e095654ced25ee97e9491" 1177 | dependencies: 1178 | has "^1.0.1" 1179 | 1180 | is-resolvable@^1.0.0: 1181 | version "1.0.0" 1182 | resolved "https://registry.yarnpkg.com/is-resolvable/-/is-resolvable-1.0.0.tgz#8df57c61ea2e3c501408d100fb013cf8d6e0cc62" 1183 | dependencies: 1184 | tryit "^1.0.1" 1185 | 1186 | is-symbol@^1.0.1: 1187 | version "1.0.1" 1188 | resolved "https://registry.yarnpkg.com/is-symbol/-/is-symbol-1.0.1.tgz#3cc59f00025194b6ab2e38dbae6689256b660572" 1189 | 1190 | isarray@^1.0.0, isarray@~1.0.0: 1191 | version "1.0.0" 1192 | resolved "https://registry.yarnpkg.com/isarray/-/isarray-1.0.0.tgz#bb935d48582cba168c06834957a54a3e07124f11" 1193 | 1194 | isarray@~0.0.1: 1195 | version "0.0.1" 1196 | resolved "https://registry.yarnpkg.com/isarray/-/isarray-0.0.1.tgz#8a18acfca9a8f4177e09abfc6038939b05d1eedf" 1197 | 1198 | js-tokens@^3.0.0: 1199 | version "3.0.1" 1200 | resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-3.0.1.tgz#08e9f132484a2c45a30907e9dc4d5567b7f114d7" 1201 | 1202 | js-yaml@^3.5.1: 1203 | version "3.8.3" 1204 | resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-3.8.3.tgz#33a05ec481c850c8875929166fe1beb61c728766" 1205 | dependencies: 1206 | argparse "^1.0.7" 1207 | esprima "^3.1.1" 1208 | 1209 | json-stable-stringify@^1.0.0, json-stable-stringify@^1.0.1: 1210 | version "1.0.1" 1211 | resolved "https://registry.yarnpkg.com/json-stable-stringify/-/json-stable-stringify-1.0.1.tgz#9a759d39c5f2ff503fd5300646ed445f88c4f9af" 1212 | dependencies: 1213 | jsonify "~0.0.0" 1214 | 1215 | json-stable-stringify@~0.0.0: 1216 | version "0.0.1" 1217 | resolved "https://registry.yarnpkg.com/json-stable-stringify/-/json-stable-stringify-0.0.1.tgz#611c23e814db375527df851193db59dd2af27f45" 1218 | dependencies: 1219 | jsonify "~0.0.0" 1220 | 1221 | jsonify@~0.0.0: 1222 | version "0.0.0" 1223 | resolved "https://registry.yarnpkg.com/jsonify/-/jsonify-0.0.0.tgz#2c74b6ee41d93ca51b7b5aaee8f503631d252a73" 1224 | 1225 | jsonparse@^1.2.0: 1226 | version "1.3.0" 1227 | resolved "https://registry.yarnpkg.com/jsonparse/-/jsonparse-1.3.0.tgz#85fc245b1d9259acc6941960b905adf64e7de0e8" 1228 | 1229 | jsonpointer@^4.0.0: 1230 | version "4.0.1" 1231 | resolved "https://registry.yarnpkg.com/jsonpointer/-/jsonpointer-4.0.1.tgz#4fd92cb34e0e9db3c89c8622ecf51f9b978c6cb9" 1232 | 1233 | jsx-ast-utils@^1.3.4: 1234 | version "1.4.1" 1235 | resolved "https://registry.yarnpkg.com/jsx-ast-utils/-/jsx-ast-utils-1.4.1.tgz#3867213e8dd79bf1e8f2300c0cfc1efb182c0df1" 1236 | 1237 | labeled-stream-splicer@^2.0.0: 1238 | version "2.0.0" 1239 | resolved "https://registry.yarnpkg.com/labeled-stream-splicer/-/labeled-stream-splicer-2.0.0.tgz#a52e1d138024c00b86b1c0c91f677918b8ae0a59" 1240 | dependencies: 1241 | inherits "^2.0.1" 1242 | isarray "~0.0.1" 1243 | stream-splicer "^2.0.0" 1244 | 1245 | levn@^0.3.0, levn@~0.3.0: 1246 | version "0.3.0" 1247 | resolved "https://registry.yarnpkg.com/levn/-/levn-0.3.0.tgz#3b09924edf9f083c0490fdd4c0bc4421e04764ee" 1248 | dependencies: 1249 | prelude-ls "~1.1.2" 1250 | type-check "~0.3.2" 1251 | 1252 | lexical-scope@^1.2.0: 1253 | version "1.2.0" 1254 | resolved "https://registry.yarnpkg.com/lexical-scope/-/lexical-scope-1.2.0.tgz#fcea5edc704a4b3a8796cdca419c3a0afaf22df4" 1255 | dependencies: 1256 | astw "^2.0.0" 1257 | 1258 | load-json-file@^2.0.0: 1259 | version "2.0.0" 1260 | resolved "https://registry.yarnpkg.com/load-json-file/-/load-json-file-2.0.0.tgz#7947e42149af80d696cbf797bcaabcfe1fe29ca8" 1261 | dependencies: 1262 | graceful-fs "^4.1.2" 1263 | parse-json "^2.2.0" 1264 | pify "^2.0.0" 1265 | strip-bom "^3.0.0" 1266 | 1267 | locate-path@^2.0.0: 1268 | version "2.0.0" 1269 | resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-2.0.0.tgz#2b568b265eec944c6d9c0de9c3dbbbca0354cd8e" 1270 | dependencies: 1271 | p-locate "^2.0.0" 1272 | path-exists "^3.0.0" 1273 | 1274 | lodash.cond@^4.3.0: 1275 | version "4.5.2" 1276 | resolved "https://registry.yarnpkg.com/lodash.cond/-/lodash.cond-4.5.2.tgz#f471a1da486be60f6ab955d17115523dd1d255d5" 1277 | 1278 | lodash.memoize@~3.0.3: 1279 | version "3.0.4" 1280 | resolved "https://registry.yarnpkg.com/lodash.memoize/-/lodash.memoize-3.0.4.tgz#2dcbd2c287cbc0a55cc42328bd0c736150d53e3f" 1281 | 1282 | lodash@^4.0.0, lodash@^4.3.0: 1283 | version "4.17.4" 1284 | resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.4.tgz#78203a4d1c328ae1d86dca6460e369b57f4055ae" 1285 | 1286 | lower-case@^1.1.1: 1287 | version "1.1.4" 1288 | resolved "https://registry.yarnpkg.com/lower-case/-/lower-case-1.1.4.tgz#9a2cabd1b9e8e0ae993a4bf7d5875c39c42e8eac" 1289 | 1290 | miller-rabin@^4.0.0: 1291 | version "4.0.0" 1292 | resolved "https://registry.yarnpkg.com/miller-rabin/-/miller-rabin-4.0.0.tgz#4a62fb1d42933c05583982f4c716f6fb9e6c6d3d" 1293 | dependencies: 1294 | bn.js "^4.0.0" 1295 | brorand "^1.0.1" 1296 | 1297 | min-document@^2.19.0: 1298 | version "2.19.0" 1299 | resolved "https://registry.yarnpkg.com/min-document/-/min-document-2.19.0.tgz#7bd282e3f5842ed295bb748cdd9f1ffa2c824685" 1300 | dependencies: 1301 | dom-walk "^0.1.0" 1302 | 1303 | minimalistic-assert@^1.0.0: 1304 | version "1.0.0" 1305 | resolved "https://registry.yarnpkg.com/minimalistic-assert/-/minimalistic-assert-1.0.0.tgz#702be2dda6b37f4836bcb3f5db56641b64a1d3d3" 1306 | 1307 | minimalistic-crypto-utils@^1.0.0, minimalistic-crypto-utils@^1.0.1: 1308 | version "1.0.1" 1309 | resolved "https://registry.yarnpkg.com/minimalistic-crypto-utils/-/minimalistic-crypto-utils-1.0.1.tgz#f6c00c1c0b082246e5c4d99dfb8c7c083b2b582a" 1310 | 1311 | minimatch@^3.0.2, minimatch@^3.0.3: 1312 | version "3.0.3" 1313 | resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.0.3.tgz#2a4e4090b96b2db06a9d7df01055a62a77c9b774" 1314 | dependencies: 1315 | brace-expansion "^1.0.0" 1316 | 1317 | minimatch@^3.0.4: 1318 | version "3.0.4" 1319 | resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.0.4.tgz#5166e286457f03306064be5497e8dbb0c3d32083" 1320 | dependencies: 1321 | brace-expansion "^1.1.7" 1322 | 1323 | minimist@0.0.8: 1324 | version "0.0.8" 1325 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-0.0.8.tgz#857fcabfc3397d2625b8228262e86aa7a011b05d" 1326 | 1327 | minimist@^1.1.0, minimist@~1.2.0: 1328 | version "1.2.0" 1329 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.0.tgz#a35008b20f41383eec1fb914f4cd5df79a264284" 1330 | 1331 | mkdirp@^0.5.0, mkdirp@^0.5.1: 1332 | version "0.5.1" 1333 | resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.5.1.tgz#30057438eac6cf7f8c4767f38648d6697d75c903" 1334 | dependencies: 1335 | minimist "0.0.8" 1336 | 1337 | module-deps@^4.0.8: 1338 | version "4.1.1" 1339 | resolved "https://registry.yarnpkg.com/module-deps/-/module-deps-4.1.1.tgz#23215833f1da13fd606ccb8087b44852dcb821fd" 1340 | dependencies: 1341 | JSONStream "^1.0.3" 1342 | browser-resolve "^1.7.0" 1343 | cached-path-relative "^1.0.0" 1344 | concat-stream "~1.5.0" 1345 | defined "^1.0.0" 1346 | detective "^4.0.0" 1347 | duplexer2 "^0.1.2" 1348 | inherits "^2.0.1" 1349 | parents "^1.0.0" 1350 | readable-stream "^2.0.2" 1351 | resolve "^1.1.3" 1352 | stream-combiner2 "^1.1.1" 1353 | subarg "^1.0.0" 1354 | through2 "^2.0.0" 1355 | xtend "^4.0.0" 1356 | 1357 | ms@0.7.1: 1358 | version "0.7.1" 1359 | resolved "https://registry.yarnpkg.com/ms/-/ms-0.7.1.tgz#9cd13c03adbff25b65effde7ce864ee952017098" 1360 | 1361 | ms@0.7.3: 1362 | version "0.7.3" 1363 | resolved "https://registry.yarnpkg.com/ms/-/ms-0.7.3.tgz#708155a5e44e33f5fd0fc53e81d0d40a91be1fff" 1364 | 1365 | mute-stream@0.0.5: 1366 | version "0.0.5" 1367 | resolved "https://registry.yarnpkg.com/mute-stream/-/mute-stream-0.0.5.tgz#8fbfabb0a98a253d3184331f9e8deb7372fac6c0" 1368 | 1369 | nanoassert@^1.1.0: 1370 | version "1.1.0" 1371 | resolved "https://registry.yarnpkg.com/nanoassert/-/nanoassert-1.1.0.tgz#4f3152e09540fde28c76f44b19bbcd1d5a42478d" 1372 | 1373 | nanomorph@^5.1.3: 1374 | version "5.1.3" 1375 | resolved "https://registry.yarnpkg.com/nanomorph/-/nanomorph-5.1.3.tgz#65b81912bb32278aaa7aacc9ccd99b4508f6a21d" 1376 | dependencies: 1377 | nanoassert "^1.1.0" 1378 | 1379 | natural-compare@^1.4.0: 1380 | version "1.4.0" 1381 | resolved "https://registry.yarnpkg.com/natural-compare/-/natural-compare-1.4.0.tgz#4abebfeed7541f2c27acfb29bdbbd15c8d5ba4f7" 1382 | 1383 | ncname@1.0.x: 1384 | version "1.0.0" 1385 | resolved "https://registry.yarnpkg.com/ncname/-/ncname-1.0.0.tgz#5b57ad18b1ca092864ef62b0b1ed8194f383b71c" 1386 | dependencies: 1387 | xml-char-classes "^1.0.0" 1388 | 1389 | no-case@^2.2.0: 1390 | version "2.3.2" 1391 | resolved "https://registry.yarnpkg.com/no-case/-/no-case-2.3.2.tgz#60b813396be39b3f1288a4c1ed5d1e7d28b464ac" 1392 | dependencies: 1393 | lower-case "^1.1.1" 1394 | 1395 | number-is-nan@^1.0.0: 1396 | version "1.0.1" 1397 | resolved "https://registry.yarnpkg.com/number-is-nan/-/number-is-nan-1.0.1.tgz#097b602b53422a522c1afb8790318336941a011d" 1398 | 1399 | object-assign@^4.0.1, object-assign@^4.1.0: 1400 | version "4.1.1" 1401 | resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863" 1402 | 1403 | object-inspect@~1.3.0: 1404 | version "1.3.0" 1405 | resolved "https://registry.yarnpkg.com/object-inspect/-/object-inspect-1.3.0.tgz#5b1eb8e6742e2ee83342a637034d844928ba2f6d" 1406 | 1407 | object-keys@^1.0.10, object-keys@^1.0.8: 1408 | version "1.0.11" 1409 | resolved "https://registry.yarnpkg.com/object-keys/-/object-keys-1.0.11.tgz#c54601778ad560f1142ce0e01bcca8b56d13426d" 1410 | 1411 | object.assign@^4.0.4: 1412 | version "4.0.4" 1413 | resolved "https://registry.yarnpkg.com/object.assign/-/object.assign-4.0.4.tgz#b1c9cc044ef1b9fe63606fc141abbb32e14730cc" 1414 | dependencies: 1415 | define-properties "^1.1.2" 1416 | function-bind "^1.1.0" 1417 | object-keys "^1.0.10" 1418 | 1419 | on-load@^3.2.0: 1420 | version "3.2.0" 1421 | resolved "https://registry.yarnpkg.com/on-load/-/on-load-3.2.0.tgz#dd3145d3a5c2faa5666920d1df674b69f0c2f66f" 1422 | dependencies: 1423 | global "^4.3.0" 1424 | 1425 | once@^1.3.0: 1426 | version "1.3.3" 1427 | resolved "https://registry.yarnpkg.com/once/-/once-1.3.3.tgz#b2e261557ce4c314ec8304f3fa82663e4297ca20" 1428 | dependencies: 1429 | wrappy "1" 1430 | 1431 | onetime@^1.0.0: 1432 | version "1.1.0" 1433 | resolved "https://registry.yarnpkg.com/onetime/-/onetime-1.1.0.tgz#a1f7838f8314c516f05ecefcbc4ccfe04b4ed789" 1434 | 1435 | optionator@^0.8.2: 1436 | version "0.8.2" 1437 | resolved "https://registry.yarnpkg.com/optionator/-/optionator-0.8.2.tgz#364c5e409d3f4d6301d6c0b4c05bba50180aeb64" 1438 | dependencies: 1439 | deep-is "~0.1.3" 1440 | fast-levenshtein "~2.0.4" 1441 | levn "~0.3.0" 1442 | prelude-ls "~1.1.2" 1443 | type-check "~0.3.2" 1444 | wordwrap "~1.0.0" 1445 | 1446 | os-browserify@~0.3.0: 1447 | version "0.3.0" 1448 | resolved "https://registry.yarnpkg.com/os-browserify/-/os-browserify-0.3.0.tgz#854373c7f5c2315914fc9bfc6bd8238fdda1ec27" 1449 | 1450 | os-homedir@^1.0.0: 1451 | version "1.0.2" 1452 | resolved "https://registry.yarnpkg.com/os-homedir/-/os-homedir-1.0.2.tgz#ffbc4988336e0e833de0c168c7ef152121aa7fb3" 1453 | 1454 | p-limit@^1.1.0: 1455 | version "1.1.0" 1456 | resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-1.1.0.tgz#b07ff2d9a5d88bec806035895a2bab66a27988bc" 1457 | 1458 | p-locate@^2.0.0: 1459 | version "2.0.0" 1460 | resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-2.0.0.tgz#20a0103b222a70c8fd39cc2e580680f3dde5ec43" 1461 | dependencies: 1462 | p-limit "^1.1.0" 1463 | 1464 | pako@~1.0.5: 1465 | version "1.0.6" 1466 | resolved "https://registry.yarnpkg.com/pako/-/pako-1.0.6.tgz#0101211baa70c4bca4a0f63f2206e97b7dfaf258" 1467 | 1468 | param-case@2.1.x: 1469 | version "2.1.1" 1470 | resolved "https://registry.yarnpkg.com/param-case/-/param-case-2.1.1.tgz#df94fd8cf6531ecf75e6bef9a0858fbc72be2247" 1471 | dependencies: 1472 | no-case "^2.2.0" 1473 | 1474 | parents@^1.0.0, parents@^1.0.1: 1475 | version "1.0.1" 1476 | resolved "https://registry.yarnpkg.com/parents/-/parents-1.0.1.tgz#fedd4d2bf193a77745fe71e371d73c3307d9c751" 1477 | dependencies: 1478 | path-platform "~0.11.15" 1479 | 1480 | parse-asn1@^5.0.0: 1481 | version "5.1.0" 1482 | resolved "https://registry.yarnpkg.com/parse-asn1/-/parse-asn1-5.1.0.tgz#37c4f9b7ed3ab65c74817b5f2480937fbf97c712" 1483 | dependencies: 1484 | asn1.js "^4.0.0" 1485 | browserify-aes "^1.0.0" 1486 | create-hash "^1.1.0" 1487 | evp_bytestokey "^1.0.0" 1488 | pbkdf2 "^3.0.3" 1489 | 1490 | parse-json@^2.2.0: 1491 | version "2.2.0" 1492 | resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-2.2.0.tgz#f480f40434ef80741f8469099f8dea18f55a4dc9" 1493 | dependencies: 1494 | error-ex "^1.2.0" 1495 | 1496 | path-browserify@~0.0.0: 1497 | version "0.0.0" 1498 | resolved "https://registry.yarnpkg.com/path-browserify/-/path-browserify-0.0.0.tgz#a0b870729aae214005b7d5032ec2cbbb0fb4451a" 1499 | 1500 | path-exists@^2.0.0: 1501 | version "2.1.0" 1502 | resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-2.1.0.tgz#0feb6c64f0fc518d9a754dd5efb62c7022761f4b" 1503 | dependencies: 1504 | pinkie-promise "^2.0.0" 1505 | 1506 | path-exists@^3.0.0: 1507 | version "3.0.0" 1508 | resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-3.0.0.tgz#ce0ebeaa5f78cb18925ea7d810d7b59b010fd515" 1509 | 1510 | path-is-absolute@^1.0.0: 1511 | version "1.0.1" 1512 | resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f" 1513 | 1514 | path-is-inside@^1.0.1: 1515 | version "1.0.2" 1516 | resolved "https://registry.yarnpkg.com/path-is-inside/-/path-is-inside-1.0.2.tgz#365417dede44430d1c11af61027facf074bdfc53" 1517 | 1518 | path-parse@^1.0.5: 1519 | version "1.0.5" 1520 | resolved "https://registry.yarnpkg.com/path-parse/-/path-parse-1.0.5.tgz#3c1adf871ea9cd6c9431b6ea2bd74a0ff055c4c1" 1521 | 1522 | path-platform@~0.11.15: 1523 | version "0.11.15" 1524 | resolved "https://registry.yarnpkg.com/path-platform/-/path-platform-0.11.15.tgz#e864217f74c36850f0852b78dc7bf7d4a5721bf2" 1525 | 1526 | pbkdf2@^3.0.3: 1527 | version "3.0.9" 1528 | resolved "https://registry.yarnpkg.com/pbkdf2/-/pbkdf2-3.0.9.tgz#f2c4b25a600058b3c3773c086c37dbbee1ffe693" 1529 | dependencies: 1530 | create-hmac "^1.1.2" 1531 | 1532 | pify@^2.0.0: 1533 | version "2.3.0" 1534 | resolved "https://registry.yarnpkg.com/pify/-/pify-2.3.0.tgz#ed141a6ac043a849ea588498e7dca8b15330e90c" 1535 | 1536 | pinkie-promise@^2.0.0: 1537 | version "2.0.1" 1538 | resolved "https://registry.yarnpkg.com/pinkie-promise/-/pinkie-promise-2.0.1.tgz#2135d6dfa7a358c069ac9b178776288228450ffa" 1539 | dependencies: 1540 | pinkie "^2.0.0" 1541 | 1542 | pinkie@^2.0.0: 1543 | version "2.0.4" 1544 | resolved "https://registry.yarnpkg.com/pinkie/-/pinkie-2.0.4.tgz#72556b80cfa0d48a974e80e77248e80ed4f7f870" 1545 | 1546 | pkg-conf@^2.0.0: 1547 | version "2.0.0" 1548 | resolved "https://registry.yarnpkg.com/pkg-conf/-/pkg-conf-2.0.0.tgz#071c87650403bccfb9c627f58751bfe47c067279" 1549 | dependencies: 1550 | find-up "^2.0.0" 1551 | load-json-file "^2.0.0" 1552 | 1553 | pkg-config@^1.1.0: 1554 | version "1.1.1" 1555 | resolved "https://registry.yarnpkg.com/pkg-config/-/pkg-config-1.1.1.tgz#557ef22d73da3c8837107766c52eadabde298fe4" 1556 | dependencies: 1557 | debug-log "^1.0.0" 1558 | find-root "^1.0.0" 1559 | xtend "^4.0.1" 1560 | 1561 | pkg-dir@^1.0.0: 1562 | version "1.0.0" 1563 | resolved "https://registry.yarnpkg.com/pkg-dir/-/pkg-dir-1.0.0.tgz#7a4b508a8d5bb2d629d447056ff4e9c9314cf3d4" 1564 | dependencies: 1565 | find-up "^1.0.0" 1566 | 1567 | pkg-up@^1.0.0: 1568 | version "1.0.0" 1569 | resolved "https://registry.yarnpkg.com/pkg-up/-/pkg-up-1.0.0.tgz#3e08fb461525c4421624a33b9f7e6d0af5b05a26" 1570 | dependencies: 1571 | find-up "^1.0.0" 1572 | 1573 | pluralize@^1.2.1: 1574 | version "1.2.1" 1575 | resolved "https://registry.yarnpkg.com/pluralize/-/pluralize-1.2.1.tgz#d1a21483fd22bb41e58a12fa3421823140897c45" 1576 | 1577 | prelude-ls@~1.1.2: 1578 | version "1.1.2" 1579 | resolved "https://registry.yarnpkg.com/prelude-ls/-/prelude-ls-1.1.2.tgz#21932a549f5e52ffd9a827f570e04be62a97da54" 1580 | 1581 | process-nextick-args@~1.0.6: 1582 | version "1.0.7" 1583 | resolved "https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-1.0.7.tgz#150e20b756590ad3f91093f25a4f2ad8bff30ba3" 1584 | 1585 | process@~0.11.0: 1586 | version "0.11.9" 1587 | resolved "https://registry.yarnpkg.com/process/-/process-0.11.9.tgz#7bd5ad21aa6253e7da8682264f1e11d11c0318c1" 1588 | 1589 | process@~0.5.1: 1590 | version "0.5.2" 1591 | resolved "https://registry.yarnpkg.com/process/-/process-0.5.2.tgz#1638d8a8e34c2f440a91db95ab9aeb677fc185cf" 1592 | 1593 | progress@^1.1.8: 1594 | version "1.1.8" 1595 | resolved "https://registry.yarnpkg.com/progress/-/progress-1.1.8.tgz#e260c78f6161cdd9b0e56cc3e0a85de17c7a57be" 1596 | 1597 | public-encrypt@^4.0.0: 1598 | version "4.0.0" 1599 | resolved "https://registry.yarnpkg.com/public-encrypt/-/public-encrypt-4.0.0.tgz#39f699f3a46560dd5ebacbca693caf7c65c18cc6" 1600 | dependencies: 1601 | bn.js "^4.1.0" 1602 | browserify-rsa "^4.0.0" 1603 | create-hash "^1.1.0" 1604 | parse-asn1 "^5.0.0" 1605 | randombytes "^2.0.1" 1606 | 1607 | punycode@1.3.2: 1608 | version "1.3.2" 1609 | resolved "https://registry.yarnpkg.com/punycode/-/punycode-1.3.2.tgz#9653a036fb7c1ee42342f2325cceefea3926c48d" 1610 | 1611 | punycode@^1.3.2: 1612 | version "1.4.1" 1613 | resolved "https://registry.yarnpkg.com/punycode/-/punycode-1.4.1.tgz#c0d5a63b2718800ad8e1eb0fa5269c84dd41845e" 1614 | 1615 | querystring-es3@~0.2.0: 1616 | version "0.2.1" 1617 | resolved "https://registry.yarnpkg.com/querystring-es3/-/querystring-es3-0.2.1.tgz#9ec61f79049875707d69414596fd907a4d711e73" 1618 | 1619 | querystring@0.2.0: 1620 | version "0.2.0" 1621 | resolved "https://registry.yarnpkg.com/querystring/-/querystring-0.2.0.tgz#b209849203bb25df820da756e747005878521620" 1622 | 1623 | randombytes@^2.0.0, randombytes@^2.0.1: 1624 | version "2.0.3" 1625 | resolved "https://registry.yarnpkg.com/randombytes/-/randombytes-2.0.3.tgz#674c99760901c3c4112771a31e521dc349cc09ec" 1626 | 1627 | read-only-stream@^2.0.0: 1628 | version "2.0.0" 1629 | resolved "https://registry.yarnpkg.com/read-only-stream/-/read-only-stream-2.0.0.tgz#2724fd6a8113d73764ac288d4386270c1dbf17f0" 1630 | dependencies: 1631 | readable-stream "^2.0.2" 1632 | 1633 | readable-stream@^2.0.2, readable-stream@^2.1.5, readable-stream@^2.2.6: 1634 | version "2.2.9" 1635 | resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.2.9.tgz#cf78ec6f4a6d1eb43d26488cac97f042e74b7fc8" 1636 | dependencies: 1637 | buffer-shims "~1.0.0" 1638 | core-util-is "~1.0.0" 1639 | inherits "~2.0.1" 1640 | isarray "~1.0.0" 1641 | process-nextick-args "~1.0.6" 1642 | string_decoder "~1.0.0" 1643 | util-deprecate "~1.0.1" 1644 | 1645 | readable-stream@~2.0.0: 1646 | version "2.0.6" 1647 | resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.0.6.tgz#8f90341e68a53ccc928788dacfcd11b36eb9b78e" 1648 | dependencies: 1649 | core-util-is "~1.0.0" 1650 | inherits "~2.0.1" 1651 | isarray "~1.0.0" 1652 | process-nextick-args "~1.0.6" 1653 | string_decoder "~0.10.x" 1654 | util-deprecate "~1.0.1" 1655 | 1656 | readline2@^1.0.1: 1657 | version "1.0.1" 1658 | resolved "https://registry.yarnpkg.com/readline2/-/readline2-1.0.1.tgz#41059608ffc154757b715d9989d199ffbf372e35" 1659 | dependencies: 1660 | code-point-at "^1.0.0" 1661 | is-fullwidth-code-point "^1.0.0" 1662 | mute-stream "0.0.5" 1663 | 1664 | rechoir@^0.6.2: 1665 | version "0.6.2" 1666 | resolved "https://registry.yarnpkg.com/rechoir/-/rechoir-0.6.2.tgz#85204b54dba82d5742e28c96756ef43af50e3384" 1667 | dependencies: 1668 | resolve "^1.1.6" 1669 | 1670 | relateurl@0.2.x: 1671 | version "0.2.7" 1672 | resolved "https://registry.yarnpkg.com/relateurl/-/relateurl-0.2.7.tgz#54dbf377e51440aca90a4cd274600d3ff2d888a9" 1673 | 1674 | require-uncached@^1.0.2: 1675 | version "1.0.3" 1676 | resolved "https://registry.yarnpkg.com/require-uncached/-/require-uncached-1.0.3.tgz#4e0d56d6c9662fd31e43011c4b95aa49955421d3" 1677 | dependencies: 1678 | caller-path "^0.1.0" 1679 | resolve-from "^1.0.0" 1680 | 1681 | resolve-from@^1.0.0: 1682 | version "1.0.1" 1683 | resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-1.0.1.tgz#26cbfe935d1aeeeabb29bc3fe5aeb01e93d44226" 1684 | 1685 | resolve@1.1.7: 1686 | version "1.1.7" 1687 | resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.1.7.tgz#203114d82ad2c5ed9e8e0411b3932875e889e97b" 1688 | 1689 | resolve@^1.1.3, resolve@^1.1.4, resolve@^1.1.6, resolve@^1.1.7: 1690 | version "1.3.3" 1691 | resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.3.3.tgz#655907c3469a8680dc2de3a275a8fdd69691f0e5" 1692 | dependencies: 1693 | path-parse "^1.0.5" 1694 | 1695 | resolve@~1.4.0: 1696 | version "1.4.0" 1697 | resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.4.0.tgz#a75be01c53da25d934a98ebd0e4c4a7312f92a86" 1698 | dependencies: 1699 | path-parse "^1.0.5" 1700 | 1701 | restore-cursor@^1.0.1: 1702 | version "1.0.1" 1703 | resolved "https://registry.yarnpkg.com/restore-cursor/-/restore-cursor-1.0.1.tgz#34661f46886327fed2991479152252df92daa541" 1704 | dependencies: 1705 | exit-hook "^1.0.0" 1706 | onetime "^1.0.0" 1707 | 1708 | resumer@~0.0.0: 1709 | version "0.0.0" 1710 | resolved "https://registry.yarnpkg.com/resumer/-/resumer-0.0.0.tgz#f1e8f461e4064ba39e82af3cdc2a8c893d076759" 1711 | dependencies: 1712 | through "~2.3.4" 1713 | 1714 | rimraf@^2.2.8: 1715 | version "2.6.1" 1716 | resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.6.1.tgz#c2338ec643df7a1b7fe5c54fa86f57428a55f33d" 1717 | dependencies: 1718 | glob "^7.0.5" 1719 | 1720 | ripemd160@^1.0.0: 1721 | version "1.0.1" 1722 | resolved "https://registry.yarnpkg.com/ripemd160/-/ripemd160-1.0.1.tgz#93a4bbd4942bc574b69a8fa57c71de10ecca7d6e" 1723 | 1724 | run-async@^0.1.0: 1725 | version "0.1.0" 1726 | resolved "https://registry.yarnpkg.com/run-async/-/run-async-0.1.0.tgz#c8ad4a5e110661e402a7d21b530e009f25f8e389" 1727 | dependencies: 1728 | once "^1.3.0" 1729 | 1730 | run-parallel@^1.1.2: 1731 | version "1.1.6" 1732 | resolved "https://registry.yarnpkg.com/run-parallel/-/run-parallel-1.1.6.tgz#29003c9a2163e01e2d2dfc90575f2c6c1d61a039" 1733 | 1734 | rx-lite@^3.1.2: 1735 | version "3.1.2" 1736 | resolved "https://registry.yarnpkg.com/rx-lite/-/rx-lite-3.1.2.tgz#19ce502ca572665f3b647b10939f97fd1615f102" 1737 | 1738 | semver@5.3.0: 1739 | version "5.3.0" 1740 | resolved "https://registry.yarnpkg.com/semver/-/semver-5.3.0.tgz#9b2ce5d3de02d17c6012ad326aa6b4d0cf54f94f" 1741 | 1742 | sha.js@^2.3.6, sha.js@~2.4.4: 1743 | version "2.4.8" 1744 | resolved "https://registry.yarnpkg.com/sha.js/-/sha.js-2.4.8.tgz#37068c2c476b6baf402d14a49c67f597921f634f" 1745 | dependencies: 1746 | inherits "^2.0.1" 1747 | 1748 | shasum@^1.0.0: 1749 | version "1.0.2" 1750 | resolved "https://registry.yarnpkg.com/shasum/-/shasum-1.0.2.tgz#e7012310d8f417f4deb5712150e5678b87ae565f" 1751 | dependencies: 1752 | json-stable-stringify "~0.0.0" 1753 | sha.js "~2.4.4" 1754 | 1755 | shell-quote@^1.6.1: 1756 | version "1.6.1" 1757 | resolved "https://registry.yarnpkg.com/shell-quote/-/shell-quote-1.6.1.tgz#f4781949cce402697127430ea3b3c5476f481767" 1758 | dependencies: 1759 | array-filter "~0.0.0" 1760 | array-map "~0.0.0" 1761 | array-reduce "~0.0.0" 1762 | jsonify "~0.0.0" 1763 | 1764 | shelljs@^0.7.5: 1765 | version "0.7.7" 1766 | resolved "https://registry.yarnpkg.com/shelljs/-/shelljs-0.7.7.tgz#b2f5c77ef97148f4b4f6e22682e10bba8667cff1" 1767 | dependencies: 1768 | glob "^7.0.0" 1769 | interpret "^1.0.0" 1770 | rechoir "^0.6.2" 1771 | 1772 | slice-ansi@0.0.4: 1773 | version "0.0.4" 1774 | resolved "https://registry.yarnpkg.com/slice-ansi/-/slice-ansi-0.0.4.tgz#edbf8903f66f7ce2f8eafd6ceed65e264c831b35" 1775 | 1776 | source-map@0.5.x: 1777 | version "0.5.7" 1778 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.5.7.tgz#8a039d2d1021d22d1ea14c80d8ea468ba2ef3fcc" 1779 | 1780 | source-map@~0.5.3: 1781 | version "0.5.6" 1782 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.5.6.tgz#75ce38f52bf0733c5a7f0c118d81334a2bb5f412" 1783 | 1784 | source-map@~0.6.1: 1785 | version "0.6.1" 1786 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.6.1.tgz#74722af32e9614e9c287a8d0bbde48b5e2f1a263" 1787 | 1788 | sprintf-js@~1.0.2: 1789 | version "1.0.3" 1790 | resolved "https://registry.yarnpkg.com/sprintf-js/-/sprintf-js-1.0.3.tgz#04e6926f662895354f3dd015203633b857297e2c" 1791 | 1792 | standard-engine@~7.0.0: 1793 | version "7.0.0" 1794 | resolved "https://registry.yarnpkg.com/standard-engine/-/standard-engine-7.0.0.tgz#ebb77b9c8fc2c8165ffa353bd91ba0dff41af690" 1795 | dependencies: 1796 | deglob "^2.1.0" 1797 | get-stdin "^5.0.1" 1798 | minimist "^1.1.0" 1799 | pkg-conf "^2.0.0" 1800 | 1801 | standard@^10.0.2: 1802 | version "10.0.3" 1803 | resolved "https://registry.yarnpkg.com/standard/-/standard-10.0.3.tgz#7869bcbf422bdeeaab689a1ffb1fea9677dd50ea" 1804 | dependencies: 1805 | eslint "~3.19.0" 1806 | eslint-config-standard "10.2.1" 1807 | eslint-config-standard-jsx "4.0.2" 1808 | eslint-plugin-import "~2.2.0" 1809 | eslint-plugin-node "~4.2.2" 1810 | eslint-plugin-promise "~3.5.0" 1811 | eslint-plugin-react "~6.10.0" 1812 | eslint-plugin-standard "~3.0.1" 1813 | standard-engine "~7.0.0" 1814 | 1815 | stream-browserify@^2.0.0: 1816 | version "2.0.1" 1817 | resolved "https://registry.yarnpkg.com/stream-browserify/-/stream-browserify-2.0.1.tgz#66266ee5f9bdb9940a4e4514cafb43bb71e5c9db" 1818 | dependencies: 1819 | inherits "~2.0.1" 1820 | readable-stream "^2.0.2" 1821 | 1822 | stream-combiner2@^1.1.1: 1823 | version "1.1.1" 1824 | resolved "https://registry.yarnpkg.com/stream-combiner2/-/stream-combiner2-1.1.1.tgz#fb4d8a1420ea362764e21ad4780397bebcb41cbe" 1825 | dependencies: 1826 | duplexer2 "~0.1.0" 1827 | readable-stream "^2.0.2" 1828 | 1829 | stream-http@^2.0.0: 1830 | version "2.7.0" 1831 | resolved "https://registry.yarnpkg.com/stream-http/-/stream-http-2.7.0.tgz#cec1f4e3b494bc4a81b451808970f8b20b4ed5f6" 1832 | dependencies: 1833 | builtin-status-codes "^3.0.0" 1834 | inherits "^2.0.1" 1835 | readable-stream "^2.2.6" 1836 | to-arraybuffer "^1.0.0" 1837 | xtend "^4.0.0" 1838 | 1839 | stream-splicer@^2.0.0: 1840 | version "2.0.0" 1841 | resolved "https://registry.yarnpkg.com/stream-splicer/-/stream-splicer-2.0.0.tgz#1b63be438a133e4b671cc1935197600175910d83" 1842 | dependencies: 1843 | inherits "^2.0.1" 1844 | readable-stream "^2.0.2" 1845 | 1846 | string-width@^1.0.1: 1847 | version "1.0.2" 1848 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-1.0.2.tgz#118bdf5b8cdc51a2a7e70d211e07e2b0b9b107d3" 1849 | dependencies: 1850 | code-point-at "^1.0.0" 1851 | is-fullwidth-code-point "^1.0.0" 1852 | strip-ansi "^3.0.0" 1853 | 1854 | string-width@^2.0.0: 1855 | version "2.0.0" 1856 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-2.0.0.tgz#635c5436cc72a6e0c387ceca278d4e2eec52687e" 1857 | dependencies: 1858 | is-fullwidth-code-point "^2.0.0" 1859 | strip-ansi "^3.0.0" 1860 | 1861 | string.prototype.trim@~1.1.2: 1862 | version "1.1.2" 1863 | resolved "https://registry.yarnpkg.com/string.prototype.trim/-/string.prototype.trim-1.1.2.tgz#d04de2c89e137f4d7d206f086b5ed2fae6be8cea" 1864 | dependencies: 1865 | define-properties "^1.1.2" 1866 | es-abstract "^1.5.0" 1867 | function-bind "^1.0.2" 1868 | 1869 | string_decoder@~0.10.x: 1870 | version "0.10.31" 1871 | resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-0.10.31.tgz#62e203bc41766c6c28c9fc84301dab1c5310fa94" 1872 | 1873 | string_decoder@~1.0.0: 1874 | version "1.0.0" 1875 | resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.0.0.tgz#f06f41157b664d86069f84bdbdc9b0d8ab281667" 1876 | dependencies: 1877 | buffer-shims "~1.0.0" 1878 | 1879 | strip-ansi@^3.0.0: 1880 | version "3.0.1" 1881 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-3.0.1.tgz#6a385fb8853d952d5ff05d0e8aaf94278dc63dcf" 1882 | dependencies: 1883 | ansi-regex "^2.0.0" 1884 | 1885 | strip-bom@^3.0.0: 1886 | version "3.0.0" 1887 | resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-3.0.0.tgz#2334c18e9c759f7bdd56fdef7e9ae3d588e68ed3" 1888 | 1889 | strip-json-comments@~2.0.1: 1890 | version "2.0.1" 1891 | resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-2.0.1.tgz#3c531942e908c2697c0ec344858c286c7ca0a60a" 1892 | 1893 | subarg@^1.0.0: 1894 | version "1.0.0" 1895 | resolved "https://registry.yarnpkg.com/subarg/-/subarg-1.0.0.tgz#f62cf17581e996b48fc965699f54c06ae268b8d2" 1896 | dependencies: 1897 | minimist "^1.1.0" 1898 | 1899 | supports-color@^2.0.0: 1900 | version "2.0.0" 1901 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-2.0.0.tgz#535d045ce6b6363fa40117084629995e9df324c7" 1902 | 1903 | syntax-error@^1.1.1: 1904 | version "1.3.0" 1905 | resolved "https://registry.yarnpkg.com/syntax-error/-/syntax-error-1.3.0.tgz#1ed9266c4d40be75dc55bf9bb1cb77062bb96ca1" 1906 | dependencies: 1907 | acorn "^4.0.3" 1908 | 1909 | table@^3.7.8: 1910 | version "3.8.3" 1911 | resolved "https://registry.yarnpkg.com/table/-/table-3.8.3.tgz#2bbc542f0fda9861a755d3947fefd8b3f513855f" 1912 | dependencies: 1913 | ajv "^4.7.0" 1914 | ajv-keywords "^1.0.0" 1915 | chalk "^1.1.1" 1916 | lodash "^4.0.0" 1917 | slice-ansi "0.0.4" 1918 | string-width "^2.0.0" 1919 | 1920 | tape@^4.8.0: 1921 | version "4.8.0" 1922 | resolved "https://registry.yarnpkg.com/tape/-/tape-4.8.0.tgz#f6a9fec41cc50a1de50fa33603ab580991f6068e" 1923 | dependencies: 1924 | deep-equal "~1.0.1" 1925 | defined "~1.0.0" 1926 | for-each "~0.3.2" 1927 | function-bind "~1.1.0" 1928 | glob "~7.1.2" 1929 | has "~1.0.1" 1930 | inherits "~2.0.3" 1931 | minimist "~1.2.0" 1932 | object-inspect "~1.3.0" 1933 | resolve "~1.4.0" 1934 | resumer "~0.0.0" 1935 | string.prototype.trim "~1.1.2" 1936 | through "~2.3.8" 1937 | 1938 | text-table@~0.2.0: 1939 | version "0.2.0" 1940 | resolved "https://registry.yarnpkg.com/text-table/-/text-table-0.2.0.tgz#7f5ee823ae805207c00af2df4a84ec3fcfa570b4" 1941 | 1942 | through2@^2.0.0: 1943 | version "2.0.3" 1944 | resolved "https://registry.yarnpkg.com/through2/-/through2-2.0.3.tgz#0004569b37c7c74ba39c43f3ced78d1ad94140be" 1945 | dependencies: 1946 | readable-stream "^2.1.5" 1947 | xtend "~4.0.1" 1948 | 1949 | "through@>=2.2.7 <3", through@^2.3.6, through@~2.3.4, through@~2.3.8: 1950 | version "2.3.8" 1951 | resolved "https://registry.yarnpkg.com/through/-/through-2.3.8.tgz#0dd4c9ffaabc357960b1b724115d7e0e86a2e1f5" 1952 | 1953 | timers-browserify@^1.0.1: 1954 | version "1.4.2" 1955 | resolved "https://registry.yarnpkg.com/timers-browserify/-/timers-browserify-1.4.2.tgz#c9c58b575be8407375cb5e2462dacee74359f41d" 1956 | dependencies: 1957 | process "~0.11.0" 1958 | 1959 | to-arraybuffer@^1.0.0: 1960 | version "1.0.1" 1961 | resolved "https://registry.yarnpkg.com/to-arraybuffer/-/to-arraybuffer-1.0.1.tgz#7d229b1fcc637e466ca081180836a7aabff83f43" 1962 | 1963 | tryit@^1.0.1: 1964 | version "1.0.3" 1965 | resolved "https://registry.yarnpkg.com/tryit/-/tryit-1.0.3.tgz#393be730a9446fd1ead6da59a014308f36c289cb" 1966 | 1967 | tty-browserify@~0.0.0: 1968 | version "0.0.0" 1969 | resolved "https://registry.yarnpkg.com/tty-browserify/-/tty-browserify-0.0.0.tgz#a157ba402da24e9bf957f9aa69d524eed42901a6" 1970 | 1971 | type-check@~0.3.2: 1972 | version "0.3.2" 1973 | resolved "https://registry.yarnpkg.com/type-check/-/type-check-0.3.2.tgz#5884cab512cf1d355e3fb784f30804b2b520db72" 1974 | dependencies: 1975 | prelude-ls "~1.1.2" 1976 | 1977 | typedarray@~0.0.5: 1978 | version "0.0.6" 1979 | resolved "https://registry.yarnpkg.com/typedarray/-/typedarray-0.0.6.tgz#867ac74e3864187b1d3d47d996a78ec5c8830777" 1980 | 1981 | uglify-js@3.1.x: 1982 | version "3.1.6" 1983 | resolved "https://registry.yarnpkg.com/uglify-js/-/uglify-js-3.1.6.tgz#918832602036e95d2318e11f27ee8461a8592c5d" 1984 | dependencies: 1985 | commander "~2.11.0" 1986 | source-map "~0.6.1" 1987 | 1988 | umd@^3.0.0: 1989 | version "3.0.1" 1990 | resolved "https://registry.yarnpkg.com/umd/-/umd-3.0.1.tgz#8ae556e11011f63c2596708a8837259f01b3d60e" 1991 | 1992 | uniq@^1.0.1: 1993 | version "1.0.1" 1994 | resolved "https://registry.yarnpkg.com/uniq/-/uniq-1.0.1.tgz#b31c5ae8254844a3a8281541ce2b04b865a734ff" 1995 | 1996 | upper-case@^1.1.1: 1997 | version "1.1.3" 1998 | resolved "https://registry.yarnpkg.com/upper-case/-/upper-case-1.1.3.tgz#f6b4501c2ec4cdd26ba78be7222961de77621598" 1999 | 2000 | url@~0.11.0: 2001 | version "0.11.0" 2002 | resolved "https://registry.yarnpkg.com/url/-/url-0.11.0.tgz#3838e97cfc60521eb73c525a8e55bfdd9e2e28f1" 2003 | dependencies: 2004 | punycode "1.3.2" 2005 | querystring "0.2.0" 2006 | 2007 | user-home@^2.0.0: 2008 | version "2.0.0" 2009 | resolved "https://registry.yarnpkg.com/user-home/-/user-home-2.0.0.tgz#9c70bfd8169bc1dcbf48604e0f04b8b49cde9e9f" 2010 | dependencies: 2011 | os-homedir "^1.0.0" 2012 | 2013 | util-deprecate@~1.0.1: 2014 | version "1.0.2" 2015 | resolved "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf" 2016 | 2017 | util@0.10.3, util@~0.10.1: 2018 | version "0.10.3" 2019 | resolved "https://registry.yarnpkg.com/util/-/util-0.10.3.tgz#7afb1afe50805246489e3db7fe0ed379336ac0f9" 2020 | dependencies: 2021 | inherits "2.0.1" 2022 | 2023 | vm-browserify@~0.0.1: 2024 | version "0.0.4" 2025 | resolved "https://registry.yarnpkg.com/vm-browserify/-/vm-browserify-0.0.4.tgz#5d7ea45bbef9e4a6ff65f95438e0a87c357d5a73" 2026 | dependencies: 2027 | indexof "0.0.1" 2028 | 2029 | wordwrap@~1.0.0: 2030 | version "1.0.0" 2031 | resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-1.0.0.tgz#27584810891456a4171c8d0226441ade90cbcaeb" 2032 | 2033 | wrappy@1: 2034 | version "1.0.2" 2035 | resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f" 2036 | 2037 | write@^0.2.1: 2038 | version "0.2.1" 2039 | resolved "https://registry.yarnpkg.com/write/-/write-0.2.1.tgz#5fc03828e264cea3fe91455476f7a3c566cb0757" 2040 | dependencies: 2041 | mkdirp "^0.5.1" 2042 | 2043 | xml-char-classes@^1.0.0: 2044 | version "1.0.0" 2045 | resolved "https://registry.yarnpkg.com/xml-char-classes/-/xml-char-classes-1.0.0.tgz#64657848a20ffc5df583a42ad8a277b4512bbc4d" 2046 | 2047 | xtend@^4.0.0, xtend@^4.0.1, xtend@~4.0.1: 2048 | version "4.0.1" 2049 | resolved "https://registry.yarnpkg.com/xtend/-/xtend-4.0.1.tgz#a5c6d532be656e23db820efb943a1f04998d63af" 2050 | --------------------------------------------------------------------------------